#site-overlay {
    position: fixed;
    inset: 0;
    background-color: #707070;
    mix-blend-mode: multiply;
    z-index: 9998;
}

#site-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    max-width: 684px;
    width: 90%;
}

#site-popup .popup-content {
    background: #fff;
    padding: 65px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
}

#site-popup .popup-content h2 {
    color: rgba(0, 0, 0, 0.85);
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.32px;
    margin-bottom:36px;
}

#site-popup .popup-content p {
    color: rgba(0, 0, 0, 0.85);
    text-align: center;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
}

#site-popup .popup-content p span {
    color: rgba(0, 0, 0, 0.85);
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 29px;
}

#site-popup .popup-content p:first-of-type {
    padding-left:24px;
    padding-right:24px;
    padding-bottom: 36px;
}

#site-popup .popup-content svg {
    margin:auto;
    margin-top: 54px;
}

@media (max-width: 768px) {
    #site-popup {
        width: calc(100% - 79px);
        max-width: none;
    }

    #site-popup .popup-content {
        padding: 50px 30px;
        border-radius: 6px;
    }

    #site-popup .popup-content h2 {
        color: #000;
        text-align: center;
        font-size: 28px;
        font-style: normal;
        font-weight: 600;
        line-height: 35px;
    }

    #site-popup .popup-content h2 span {
        display: block;
    }

    #site-popup .popup-content p {
        color: #000;
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 27px;
    }

    #site-popup .popup-content p:first-of-type {
        padding-left: 5px;
        padding-right: 5px;
        padding-bottom: 35px;
    }

    #site-popup .popup-content svg {
        margin-top: 35px;
        width: 185px;
        height: 22px;
    }
}


