.popup-container {
    display: none;
    position: fixed;
    top: 0%;
    left: 0%;
    transition: all 0.3s ease-in-out;
    transform: scale(1.3);
    background-color: rgba(21, 17, 17, 0.61);
    border: 1px solid #000;
    height: 100vh;
    z-index: 1000;
    align-items: center;
}

.popup-container.show {
    display: block;
}

.close {
    color: var(--bs-primary);
    float: right;
    font-weight: 700;
    background: none;
    text-decoration: none;
    cursor: pointer;
    width: 25px;
    height: 25px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
    padding: 0;
    border: 0;
    margin: auto;
    font-size: x-large;
}

.popup-container a.close:hover {
    color: var(--bs-dark);
}

.popup-container p {
    font-size: 0.8rem;
    line-height: 20px;
    margin-bottom: 0rem;
}

.shortcode-content {
    width: 100%;
}

.popup-container span:hover,
.popup-container span:focus {
    color: var(--bs-black);
    text-decoration: none;
    cursor: pointer;
}

.popup-container:target {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.popup-container h3 {
    margin: 10px;
}