.custom-popup-box {
    border-radius: 0px;
    background: #000;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    margin: 15px;
    box-shadow: 0px 0px 5px goldenrod;
    border: 1px solid;
    color: #fff;
    text-align: center;
    position: relative;
    overflow-y: auto;
    z-index: 1;
}

.custom-popup__image {
    width: 40%;
    position: relative;
    min-width: 180px;
}

.custom-popup__image img {
    position: absolute;
    top: -9999px;
    right: -9999px;
    bottom: -9999px;
    left: -9999px;
    width: 100%;
    object-fit: contain;
    margin: auto;
    height: 100%;
}

.custom-popup__content {
    display: flex;
    margin-left: 30px;
    margin-right: 50px;
    flex-direction: column;
}

.custom-popup__content p {
    font-size: 22px;
    line-height: 32px;
    font-family: "LatoR", sans-serif;
    margin-top: 10px;
    margin-bottom: 10px;
}

.custom-popup__content h2:first-of-type {
    font-size: 30px;
    line-height: 40px;
    margin-top: 15px;
}

.custom-popup-box .closePopup {
    top: 10px;
    right: 10px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "LatoR", sans-serif;
}

.custom-popup-box .promo {
    margin-bottom: 0px;
}

@media screen and (max-width: 768px) {
    .custom-popup__image {
        width: 100%;
        position: absolute;
        left: 0px;
        right: 0px;
        margin: auto;
        z-index: -1;
        opacity: 0.4;
        width: 230px;
        height: 100%;
    }

    .custom-popup__content {
        margin-left: 0px;
        margin-right: 0px;
    }

    .custom-popup__content h2:first-of-type {
        font-size: 25px;
        line-height: 35px;
        margin-top: 15px;
    }

    .custom-popup__content p {
        font-size: 19px;
        line-height: 27px;
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .custom-popup__content .promo {
        font-size: 22px;
        line-height: 28px;
    }

    .custom-popup__content h2 {
        text-align: center;
    }
}
