/* L-Wine-Popup */
.l-wine-popup {
    cursor: default !important;
    position: relative;
    padding: 0;
    background-color: #F7F1ED;
}
.l-wine-popup::before {
    background: url(img/popup-head--beige.svg) no-repeat -10px top;
}
.l-wine-popup__title {
    position: absolute;
    top: 0;
    left: 30px;
    max-width: 305px;
}
.l-wine-popup__title-head {
    margin-bottom: 26px;
    display: block;
    text-align: left;
    font-weight: 600;
    font-size: 48px;
    line-height: 1;
    color: #B12535;
}
.l-wine-popup__title-text {
    display: block;
    text-align: left;
    color: #B12535;
    font-size: 20px;
    line-height: 1.5;
    padding: 18px 0;
    border-top: 2px solid #B12535;
    border-bottom: 2px solid #B12535;
}
.l-wine-popup__buttons {
    margin: 186px 0 0;
    padding: 0 30px 60px;
    height: 333px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background-image: url(img/l-wine-popup-svg.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
}
.l-wine-popup .popup-form__cont .btn-submit {
    margin: 0;
    padding: 0 20px;
    width: 100%;
    height: 80px;
    min-width: 1px;
    max-width: calc((100% / 2) - 10px);
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.l-wine-popup .fancybox-close-small {
    top: -60px;
    left: 30px;
}
@media (min-width: 600px) {
    .l-wine-popup::after {
        content: '';
        position: absolute;
        top: 0;
        right: 110px;
        width: 135px;
        height: 342px;
        background-image: url(img/l-wine-popup.svg);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 100%;
    }
}
@media (min-width: 421px) and (max-width: 599px) {
    .l-wine-popup__buttons {
        margin: 256px 0 0;
        height: 262px;
    }
}
@media (max-width: 420px) {
    .l-wine-popup::after {
        display: none;
    }
    .l-wine-popup__buttons {
        margin: 20px 0 0;
        padding: 0;
        height: auto;
        justify-content: flex-start;
        flex-wrap: wrap;
        background-image: none;
    }
    .l-wine-popup .popup-form__cont .btn-submit {
        margin-bottom: 20px;
        max-width: 100%;
    }
    .l-wine-popup__title {
        position: unset;
        padding-top: 30px;
    }
}
/* L-Wine-Popup */