.site-popup {
    align-items: center;
    background: rgba(0, 0, 0, 0.62);
    display: none;
    inset: 0;
    justify-content: center;
    padding: 24px;
    position: fixed;
    z-index: 99999;
}

.site-popup.is-open {
    display: flex;
}

.site-popup__overlay {
    inset: 0;
    position: absolute;
}

.site-popup__dialog {
    max-width: 720px;
    position: relative;
    width: auto;
    z-index: 1;
}

.site-popup__link {
    display: block;
}

.site-popup__link img {
    display: block;
    height: auto;
    max-height: calc(100vh - 120px);
    object-fit: contain;
    width: auto;
    max-width: 100%;
}

.site-popup__close {
    align-items: center;
    background: #1aa1d5;
    border: 0;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 34px;
    font-weight: 400;
    height: 42px;
    justify-content: center;
    line-height: 1;
    padding: 0;
    position: absolute;
    right: -21px;
    top: -21px;
    width: 42px;
    z-index: 2;
}

@media (max-width: 767px) {
    .site-popup {
        padding: 18px;
    }

    .site-popup__close {
        font-size: 24px;
        height: 36px;
        right: -18px;
        top: -18px;
        width: 36px;
    }
}
