@charset "UTF-8";
.popup {
    position: fixed;
    left:0;
    right: 0;
    top: 0;
    bottom: 0;
    display: none;
    background: rgba(255,255,255, 0.7);
    text-align: center;
    overflow: hidden;
    z-index: 1000;
}
.popup.show {
    display: block;
}
.popup.calc {
    background: transparent;
    display: block;
    opacity: 0.01;
}
.popup .wnd-popup {
    position: relative;
    display: inline-block;
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 15px rgba(0,0,0, 0.3);
    padding: 10px 20px 80px 20px;
    background: white;
    overflow: hidden;
}
.popup .wnd-popup-title {
    position: relative;
    margin: 0 50px 0 0;
    font-size: 26px;
    line-height: 26px;
    text-align: left;
    padding-bottom: 10px;
    min-height: 26px;
    font-weight: bold;
}
.popup .wnd-popup-close {
    position: absolute;
    right: 15px;
    top: 15px;
    height: 20px;
    width: 20px;
    background: url("/img/icons/close.svg") no-repeat center center;
    background-size: 100%;
    cursor: pointer;
}
.popup .wnd-popup-content {
    display: block;
    max-width: 100%;
    text-align: left;
    overflow: auto;
}
.popup .wnd-popup-content p{
    margin-bottom: 10px;
}
.popup .wnd-popup-content img{
    max-width: 99%;
    height: auto;
}
.popup .wnd-popup-content iframe{
    max-width: 99%;
}
.popup .wnd-popup-buttons {
    position: absolute;
    text-align: right;
    left: 5px;
    bottom: 10px;
    right: 5px;
    height: 59px;
    overflow: hidden;
    vertical-align: bottom;
}
.popup .wnd-popup-buttons > * {
    margin-top: 10px;
    margin-right: 10px;
}

.popup .wnd-popup-buttons-left {
    text-align: left;
    left: 50px;
}

/* for product description */
.popup.product .wnd-popup-title {
    padding-right: 50px;
}
.popup.product .wnd-popup-title .product-rating {
    display: inline-block;
    background: #F9FF60;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    padding: 3px 3px 3px 1px;
    position: absolute;
    top: 2px;
    right: 0;
    line-height: normal;
}
.popup.product .wnd-popup-title .product-rating:before {
    content: '';
    width: 0;
    height: 0;
    border-right: 10px solid #F9FF60;
    border-top: 11px solid transparent;
    border-bottom: 12px solid transparent;
    position: absolute;
    top: 0;
    right: 100%;
}
.popup.product .wnd-popup-content h2 {
    font-size: 24px;
    font-weight: normal;
}

/* ask-specialists */
.popup.ask-specialists .label.error {
    display: block;
    font-size: small;
    color: red;
    white-space: pre;
}
.popup.ask-specialists label {
    display: block;
    font-weight: bold;
}
.popup.ask-specialists .wrap-form-item textarea {
    max-width: 100%;
    min-width: 100%;
    width:auto;
}

/* repeat order */
.popup.repeate-order .wrap-form-item {
    padding-top: 10px;
}
.popup.repeate-order .wrap-form-item label{
    width: 200px;
    display: inline-block;
    vertical-align: top;
}

.popup.shipping-order .wrap-order-form {
    padding-top: 20px;
    min-height: 150px;
}

@media screen and (max-width: 768px) {
    .popup .wnd-popup-content.mCustomScrollbar_desktop {
        overflow-y: scroll;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        /*max-height: 60vh;*/
    }
    body.popup-open {
        overflow: hidden;
        position: fixed;
    }

    .popup .wnd-popup-buttons-left {
        left: 38px;
    }
}

body.popup-open {
    overflow: hidden;
    position: fixed;
}
