@charset "UTF-8";

@import url("https://fonts.googleapis.com/css?family=PT+Sans&subset=latin-ext");

body.price-active {
    overflow: hidden;
}
body.price-active .price-popup {
    top: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}



body.thank-active {
    overflow: hidden;
}
body.thank-active .thank-popup {
    top: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.error-input {
    border-bottom: 1px solid red !important;
}

.success-input {
    border-bottom: 1px solid green !important;
}
label.error-input {
    display: none !important;
}



.main-popup {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 102;
}

.main-popup .overlay {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(56, 60, 74, 0.3);
}

.main-popup .cart-popup-body {
    background: white;
    max-width: calc(100% - 50px);
    max-height: calc(100% - 50px);
    position: relative;
}

.main-popup .cart-popup-body .cart-col,
.main-popup .cart-popup-body .checkout-col {
    padding: 70px 100px;
}

.main-popup .cart-popup-body .cart-col {
    flex-grow: 1;
    width: 1000px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
}

.main-popup .cart-popup-body .checkout-col {
    background: #FAF6EE;
    text-align: center;
    display: none;
    flex-grow: 1;
}

.main-popup .cart-popup-body .checkout-col .buttons {
    margin-top: 0;
    display: flex;
}

.main-popup .cart-popup-body .checkout-col .button.checkout {
    font-size: 28px;
    width: 100%;
    height: 80px;
}

.main-popup .cart-popup-body.is-cart .cart-col .buttons {
    display: flex;
}

.main-popup .cart-popup-body.is-checkout .checkout-col {
    display: block;
}

.main-popup .checkout-form {
    margin-top: 100px;
}

.main-popup .checkout-form input {
    text-align: center;
    background: transparent;
    border: solid rgba(142, 141, 139, 0.5);
    border-width: 0 0 1px 0;
    margin-bottom: 100px;
    font-size: 18px;
    width: 100%;
    color: #8E8D8B;
    outline: none;
}

.main-popup .close {
    top: 25px;
    right: 25px;
    width: 30px;
    height: 30px;
}

.main-popup .title {
    font-weight: 600;
    font-size: 36px;
    color: #383C4A;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.main-popup .cart-item {
    display: flex;
    margin: 15px 0;
    flex-wrap: wrap;
}

.main-popup .cart-item .image {
    background: #FFFFFF;
    box-shadow: 0 40px 40px #0000001D;
    border: 1px solid #BD9156;
    width: 125px;
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.main-popup .cart-item .image img {
    max-width: 80%;
    max-height: 80%;
}

.main-popup .cart-item .data {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 30px;
    flex-grow: 1;
}

.main-popup .cart-item .type {
    font-size: 16px;
    padding: 10px 0;
    color: #BD9156;
}

.main-popup .cart-item .name {
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    color: #383C4A;
    padding: 10px 0;
}

.main-popup .cart-item .price {
    font-size: 32px;
    font-weight: 700;
    color: #383C4A;
    display: flex;
    align-items: center;
    width: 230px;
    justify-content: center;
    padding: 0 10px;
}

.main-popup .cart-item .price.no-price {
    color: #BD9156;
}

.main-popup .cart-item .remove-item {
    background: #FFFFFF;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
    border-radius: 100%;
    align-self: center;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: .3s;
}

.main-popup .cart-item .remove-item .close {
    width: 16px;
    height: 16px;
    position: relative;
    left: 0;
    top: 0;
    opacity: 0.3;
}

.main-popup .cart-item .remove-item:hover {
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(0, 0, 0, 0.5);
}

.main-popup .cart-item .remove-item:hover .close {
    opacity: 0.75;
}

.main-popup .total-price {
    font-size: 26px;
    font-weight: 800;
    color: #383C4A;
    text-align: right;
    margin-top: auto;
}

.main-popup .total-price .price {
    margin-left: 50px;
    font-size: 36px;
}

.main-popup .total-price .price.no-price {
    color: #BD9156;
    font-weight: 600;
}

.main-popup .buttons {
    display: none;
    justify-content: space-between;
    margin-top: 50px;
}

.main-popup .buttons .button {
    height: 60px;
    border: 1px solid #BD9156;
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #BD9156;
    text-transform: uppercase;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    text-align: center;
}

.main-popup .buttons .button.transparent:hover {
    background: rgba(189, 145, 86, 0.15);
}

.main-popup .buttons .button.checkout {
    color: white;
    background: #BD9156;
}

.main-popup .buttons .button.checkout:hover {
    background: #c79b5a;
}

.main-popup .cart-scroll {
    display: flex;
    flex-wrap: wrap;
    overflow: auto;
}

.main-popup .close {
    width: 26px;
    height: 26px;
    right: 3px;
    top: 3px;
}

.main-popup .cart-popup-body {
    overflow: auto;
}

.main-popup .cart-popup-body .cart-col {
    padding: 20px 15px;
}

.main-popup .cart-item {
    position: relative;
}

.main-popup .cart-item .data {
    justify-content: flex-start;
    padding-left: 15px;
}

.main-popup .cart-item .image {
    width: 120px;
    height: 120px;
}

.main-popup .cart-item .type {
    padding: 0;
}

.main-popup .cart-item .name {
    padding: 15px 0;
}

.main-popup .cart-item .count-input,
.main-popup .cart-item .remove-item {
    width: 50%;
    margin-top: 10px;
}

.main-popup .cart-item .count-input .count {
    padding: 0 10px;
}

.main-popup .cart-item .count-input .decrease {
    margin-left: -20px;
}

.main-popup .cart-item .count-input .increase,
.main-popup .cart-item .count-input .decrease {
    padding: 15px 0;
    width: 60px;
    text-align: center;
}

.main-popup .cart-item .price {
    position: absolute;
    right: 0;
    top: 120px;
    transform: translateY(-100%);
    width: calc(100% - 120px);
    justify-content: flex-end;
    padding: 0;
    line-height: 1;
    font-size: 28px;
}

.main-popup .cart-item .remove-item {
    box-shadow: none;
}

.main-popup .cart-item .remove-item::before {
    content: "Удалить";
    display: block;
    text-align: right;
    width: 100%;
    font-size: 16px;
    color: #8E8D8B;
    opacity: 0.5;
}

.main-popup .cart-item .remove-item .close {
    display: none;
}

.main-popup .title {
    text-align: center;
}

.main-popup .total-price {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.main-popup .total-price .price {
    margin: 0;
    font-size: 32px;
}

.main-popup .buttons {
    margin-top: 0;
    flex-wrap: wrap;
    flex-direction: column-reverse;
}

.main-popup .buttons .button {
    margin-top: 20px;
    width: 100%;
}

.main-popup .cart-popup-body .checkout-col {
    padding: 20px 15px;
}

.main-popup .cart-popup-body .checkout-col .title {
    font-size: 22px;
    margin-top: 15px;
}

.main-popup .cart-popup-body .checkout-col .checkout-form {
    margin-top: 40px;
}

.main-popup .cart-popup-body .checkout-col .checkout-form input {
    margin-bottom: 40px;
}

.main-popup .cart-popup-body .checkout-col .checkout-form .button.checkout {
    font-size: 18px;
    height: 60px;
}

.cart-items-list {
    padding: 0px 30px 20px 30px;
}

.display-none {
    display: none;
}

.color-checkbox.checked {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.75), 0 0 0 2px rgba(0, 0, 0, 0.25), 0 5px 10px rgba(0, 0, 0, 0.4);
    transform: scale(1.15);
}

.form-search .mobile-search {
    width: 100%;
    height: 45px;
    border-radius: 45px;
    border: 1px solid #8e8d8b;
    background: white;
    opacity: 0.7;
    padding: 0 45px 0 15px;
    outline: none;
}

.form-search .search-btn {
    position: absolute;
    right: 25px;
    top: 67%;
    transform: translate(0, -50%);
    height: 60%;
    font-size: 0;
    opacity: 0.7;
    border: none;
    background-color: transparent;
}
.form-search {
    padding-top: 25px;
    margin-left: -20px;
    margin-bottom: 20px;
}

.section-title-search {
    margin: 70px 0 0px 0;
}

.header {
    z-index: 6 !important;
}

#large-image .image {
    cursor: pointer;
}
.text-block__form__personal {
    padding-top: 20px;
}

.text-block__form__personal span {
    color: #8E8D8B;
}
.text-block__form__personal .link {
    border-bottom: 1px dashed #BD9156;
    color: #BD9156;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

.cart-popup .cart-popup-body {
    overflow: auto;
}

.header .menu .menu-item.open-cart {
    opacity: 1;
    position: relative;
}

.header .menu .menu-item.open-cart img {
    opacity: 0.6;
    transition: 0.2s;
}

.header .menu .menu-item.open-cart .items-count {
    position: absolute;
    right: 0;
    top: calc(50% - 30px);
    width: 20px;
    height: 20px;
    background: #E23B3B;
    color: white;
    font-size: 12px;
    line-height: 22px;
    border-radius: 100%;
}

.header .menu .menu-item.menu-item-active,
.header .menu .menu-item:hover {
    opacity: 1;
}

.header .menu .menu-item.menu-item-active img,
.header .menu .menu-item:hover img {
    opacity: 1;
}

.search-popup {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 102;
}

.search-popup .overlay {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(56, 60, 74, 0.3);
}

.search-popup .search-input {
    width: 90%;
    max-width: 1200px;
    position: relative;
}

.search-popup .search-input input {
    width: 100%;
    border: 1px solid #707070;
    border-radius: 70px;
    background: #FFFFFF;
    outline: none;
    padding: 25px 90px 25px 40px;
    font-size: 18px;
    color: black;
    font-weight: 600;
}

.search-popup .search-input input::placeholder {
    opacity: 0.5;
}

.search-popup .search-input button {
    position: absolute;
    border: none;
    background: none;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    font-size: 0;
    width: 30px;
    height: 30px;
    padding: 0;
    margin-top: 3px;
    opacity: 0.5;
    cursor: pointer;
    transition: 0.3s;
    outline: none;
}

.search-popup .search-input button:hover {
    opacity: 1;
}

body.search-active .search-popup {
    top: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.close_mobile {
    top: 20px !important;
    right: auto !important;
    width: 40px !important;
    height: 40px !important;
    margin-left: 20px !important;
    z-index: 9999999999;
}

.fancybox-image {
    background-color: white !important;
}

.button-slider {
    left: 20.7% !important;
    bottom: 30% !important;

    border-color: #BD9156 !important;
    margin-left: auto !important;
    color: #BD9156 !important;
    width: 130px;
    text-align: center;
    font-size: 14px !important;
    padding: 12px 10px !important;
    font-weight: 300 !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    border: 1px solid #BD9156 !important;
}

.error_result {
    width: 100%;
    color: red;
    margin-left: 20px;
    margin-top: 20px;
}

@media (max-width:480px)  {
    .close_mobile {
        display: flex !important;
    }
}

.vs-f {
    display: block;
    padding-bottom: 10px;
}
.vs-f .main {
    font-size: 18px;
    line-height: 2;
    color: #383C4A;
}
.vs-f .desc {
    font-size: 16px;
    line-height: 2;
    color: #8E8D8B;
}

/*.product-data .price {
    display:none;
}*/
.product:hover .price{
    display:block;
}

.currency,
.is-ios .currency {
    font-family: "PT Sans", sans-serif;
    font-weight: bold;
    font-size: 0.85em;
}

.header .mobile-menu-btn {
    width: 30px;
    height: 21px;
}

@media (max-width: 991.98px) {
    .header .logo img {
        width: 135px;
    }

    .header .menu .menu-item img {
        width: 28px;
    }

    .header .menu .menu-item img {
        width: 28px;
    }

    .header .menu .menu-item.open-cart,
    .header .menu .menu-item.phone {
        padding: 0;
    }

    .header .menu .menu-item.phone {
        display: flex;
        opacity: 1;
        margin-right: 10px;
    }

    .header .menu .menu-item.phone img {
        opacity: 0.6;
    }
}