@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

:root {
    --font-family: "Open Sans", sans-serif;
    --second-family: "Inter", sans-serif;
    --third-family: "Open Sans Hebrew", sans-serif;
}

.wrap-product-body{
    display: grid;
    grid-template-columns: 540px minmax(350px, 1fr) 304px;
}

.wrap_gallery{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.gallery__big_photo{
    max-width: 420px;
    outline: 1px solid black;
}

.wrap-product-desc{
    padding: 0 36px;
}
.product-brand-title{
    font-weight: 600;
    font-size: 16px;
    color: #000;
    margin-bottom: 6px;
}
h1.product-name{
    font-family: var(--font-family), serif;
    font-weight: 600;
    font-size: 14px;
    color: #000;
    text-transform: none;
    margin-bottom: 20px;
}
h1.product-name::first-letter{
    text-transform: uppercase;
}
.block-colors-products{
    padding-top: 20px;
    border-top: 1px solid #e6e6e6;
}
.product-colors{
    font-weight: 400;
    font-size: 14px;
    color: #6d6e71;
    margin-bottom: 20px;
}

.wrap-colors-sizes{
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    padding: 0 0 23px 0;
}

.manufacturers_links{
    padding: 20px 0 0 0;
    border-bottom: 1px solid #e6e6e6;
}
.manufacturers_links > p{
    margin: 0;
    display: flex;
    align-items: center;
    padding-bottom: 17px;
}
.manufacturers_links > p > a{
    font-weight: 400;
    font-size: 14px;
    color: #666;
}
.manufacturers_links > p > svg{
    margin-left: 10px;
}

.product-price-wrap{
    box-shadow: 0 0 23px 0 rgba(0, 0, 0, 0.25);
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
}

.price-online{
    font-weight: 700;
    font-size: 27px;
    color: #9f0057;
    margin: 0 0 16px 0;
    font-family: var(--second-family), serif;
}
.price-online span{
    font-weight: 400;
    font-size: 13px;
    color: #9f0057;
    margin-left: 5px;
}
.original-price{
    padding: 0;
    margin: 0 0 12px 0;
}
.original-price > span.w-price{
    margin-right: 13px;
    font-weight: 600;
    font-size: 19px;
    color: #231f20;
    font-family: var(--second-family), serif;
}
.price-discount{
    display: inline-block;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    padding: 1px 9px;
    border-radius: 8px;
    background-color: #ED1C24;
}
p.original-price > span.catalog-item-old-price{
    font-weight: 400;
    font-size: 15px;
    text-decoration: line-through;
    color: #6d6e71;
    margin-right: 13px;
    font-family: var(--second-family), serif;
    margin-left: 0;
}
.wrap-button-cart{
    margin-top: 11px;
    margin-bottom: 20px;
}

.wrap-icons-cart{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}
.wrap-icons-cart > a > span{
    font-weight: 400;
    font-size: 14px;
    color: #666;
}

.wrap-icons-cart > a{
    display: flex;
    align-items: flex-end;
    gap: 5px;
}

.days_for_return{
    color: #666;
    font-weight: 400;
    font-size: 14px;
    margin-top: 10px;
}

.open_params{
    height: auto;
}

.gray-line{
    border: 1px solid #e6e6e6;
    width: 85%;
    margin: 50px auto 37px auto;
}
.title-recommends{
    font-weight: 400;
    font-size: 18px;
    color: #9f0057;
    font-family: "Open Sans", sans-serif;
    text-align: center;
    margin: 33px 0;
}

.price-online-carusel{
    font-weight: 700;
    font-size: 18px;
    color: #9f0057;
    margin: 14px 0 6px 0;
}
.price-online-carusel > p{
    margin: 0;
    font-weight: 400;
    font-size: 12px;
    color: #9f0057;
    text-transform: lowercase;
}
.original-price-carusel{
    font-weight: 400;
    font-size: 14px;
    text-decoration: line-through;
    color: #6d6e71;
    margin-bottom: 7px;
}
.manufacturers-title-carusel{
    margin: 0 0 7px 0;
    font-weight: 400;
    font-size: 14px;
    color: #6d6e71;
}
.title-carusel{
    margin-bottom: 15px;
}
.title-carusel > a {
    font-weight: 400;
    font-size: 14px;
    color: #231f20;
    white-space: nowrap;
}

.gallery-hidden{
    overflow: hidden;
    /*overscroll-behavior: none;*/
}
.wrap-modal-gallery{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 20000;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-overflow-scrolling: touch;
}
.d-modal__frame{
    background-color: transparent;
}
.d-modal__frame{
    position: relative;
    display: flex;
    flex-direction: column;
    align-self: center;
    background: #fff;
    box-shadow: 0 2px 48px rgba(0, 0, 0, .24);
    height: 100%;
}
.d-modal__close-button{
    cursor: pointer;
    position: absolute;
    top: 42px;
    right: 50px;
    z-index: 111;
}
.d-modal__content{
    padding: 0;
    height: 100%;
    margin: auto 0;
    overflow: auto;
}
.d-modal__content-wrap{
    position: relative;
    background: #fff;
    height: 100%;
}
.d-modal__foto-wrap{
    height: 100%;
    overflow: auto;

}
.d-modal__foto-wrap > img{
    display: block;
    margin: 0 auto 6px;
    max-width: 448px;
    box-sizing: border-box;
    cursor: zoom-in;
}
.d-modal__foto-thumbnail{
    position: fixed;
    left: 23px;
    top: 23px;
    bottom: 23px;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.d-modal__foto-thumbnail > img{
    display: block;
    cursor: pointer;
    margin-bottom: 20px;
    width:80px;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
    border: 2px solid transparent;
}

.d-modal__foto-thumbnail > img:hover{
    border: 2px solid #9f0057;
}

.d-modal__foto-thumbnail > img.active{
    border: 2px solid #9f0057;
}
.d-modal__foto-wrap > img.gallery-show-full{
    max-width: 100%;
    cursor: zoom-out;
}
.product-desc__price-block{
    display: none;
}

.mobile-gallery{
    margin: 0 -15px 25px -15px;
    position: relative;
}
.my-slider-container {
    position: relative;
    overflow: hidden;
}
.my-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.my-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-gallery__arrow{
    position: absolute;
    left: 16px;
    top: 23px;
    z-index: 100;
    border: none;
    background: transparent;
}
.mobile-gallery__icons{
    position: absolute;
    top: 21px;
    right: 15px;
    z-index: 100;
}
.mobile-gallery__icons > a:first-child{
    margin-right: 10px;
}
.mobile-gallery__count{
    position: absolute;
    left: 17px;
    bottom: 17px;
    z-index: 100;
    padding: 2px 8px;
    background: #fff;
    border-radius: 10px;
    opacity: 0.8;
    font-weight: 400;
    font-size: 12px;
    color: #231f20;
}
.mobile-gallery__video > a{
    position: absolute;
    right: 16px;
    bottom: 17px;
    z-index: 100;
    padding: 5.53px 10.39px 7.24px 11.52px;
    background: #fff;
    border-radius: 15px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 400;
    font-size: 12px;
    color: #231f20;
}
.mobile-gallery__video > a > svg{
    margin-right: 7px;
}
.h-mobile-active{
    fill: #9f0057;
}
.h-mobile-s-active{
    stroke: #9f0057;
}

.bottom-panel{
    display: none;
}
.bottom-panel__icons{
    display: none;
}
.content-buy-now .slick-prev,.content-buy-now .slick-next{
    box-shadow: none;
    background: #efeded;
    color: #000;
}
.content-buy-now .slick-prev:hover,.content-buy-now .slick-next:hover{
    background: #9f0057;
}
.content-buy-now .slick-prev:focus,.content-buy-now .slick-next:focus{
    background: #9f0057;
}
.content-buy-now .item-icon-arrow-left,.content-buy-now .item-icon-arrow-right{
    stroke: #000;
}

.content-buy-now .slick-next{
    right: -11px
}
.content-buy-now .slick-prev{
    left: -25px
}

.fancybox-overlay{
    background: rgba(0, 0, 0, 0.5);
}
.fancybox-close{
    background-image: url("/img/newstyle/close_button.svg");
    background-repeat: no-repeat;
    background-position: center center;
}

span.span-title{
    font-weight: 400;
    font-size: 18px;
    color: #9f0057;
    text-transform: uppercase;
}
.popup-wrap > p{
    font-weight: 400;
    font-size: 14px;
    color: #666;
}
.modal-header-auth{
    padding-top: 15px;
}
.b-modal-content{
    background: #efeded;
    border-radius: 15px;
}
.btn-orange{
    background: #9f0057;
    border-radius: 10px;
}
.callback-control{
    border-radius: 5px;
}
.callback-content  textarea.my-form-control{
    border-radius: 5px;
}

#auth-modal div.modal-content{
    background: #efeded;
    border-radius: 15px;
}
.socsety{
    width: 162px;
    margin: 0 auto;
}
.popup-submit-form .my-form-control{
    border-radius: 5px;
}
.cart-view-modal{
    background: #efeded;
    border-radius: 15px;
}

.wrap-product-desc .tabs__caption li:first-child{
    padding-right: 29px;
}

.wrap-product-desc .tabs__caption li.active{
    border-bottom: none;
}

.wrap-product-desc .tabs__caption li.active > h2{
    border-bottom: 3px solid #9f0057;
    padding-bottom: 5px;
}

.wrap-product-desc .tabs__caption li > h2{
    list-style-type: none;
    display: inline-block;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
    margin: 0;
}

.wrap-product-desc .tabs__caption li.active > h2{
    color:#9f0057;
}

.fancybox-inner{
    overflow: hidden;
}
.label-good-new{
    position: absolute;
    top: 7px;
    left: 7px;
}

.catalog-item-sizes-label-mini{
    padding: 0 0 10px 0;
}

.catalog-item-sizes-label-mini span{
    font-size: 13px;
    color: #231F20;
}

.mini-show3{
    display: none;
}

.share-buttons-wrap{
    padding: 10px 0;
    display: flex;
    align-items: center;
}
.share-buttons-wrap > a{
    display: block;
}
.share-buttons-wrap > a > svg{
    margin-right: 10px;
    width: 34px;
    height: 34px;
}
.copy-link-block{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #e6e6e6;
    border-radius: 10px;
    padding: 8px 16px;
    cursor: pointer;
}
.copy-link-block > svg{
    width: 20px;
    fill: #ccc;
}
.size-modal-block{
    /*min-width: 360px;*/
    /*max-width: 600px;*/
    width: 360px;
    margin: 200px auto;
    box-sizing: border-box;
}
.cart-view-modal-size{
    padding: 0;
    border: 1px solid #b3b3b3;
    border-radius: 15px;
}

.wrap-icons-cart > a > svg:hover .icon-soc-stroke{
    stroke: #9f0057;
}
.wrap-icons-cart > a > svg:hover .icon-soc-fill{
    fill: #9f0057;
}

.color-items2{
    display: flex;
}
.color-items2 > .color-item2{
    margin-right: 15px;
}
.color-items2 > .color-item2:last-child{
    margin-right: 0;
}
.color-item2{
    display: flex;
    align-items: center;
}
.color-item2 > label{
    margin-left: 2px;
}

.block-colors-products .slick-slide{
    margin-right: 12px;
    width: 64px;
    box-sizing: border-box;
}


@media screen and (max-width: 1204px) {

    .online-pay {
        margin-bottom: 3px;
    }
    .catalog-item-title {
        margin: 8px 0 2px 0;
    }
    .catalog-item-sizes-label-mini {
        padding: 0 0 13px 0;
    }
    .btn-beauti-primary {
        padding: 4px 0;
    }
    .filters-panel-mini{
        padding: 15px;
    }
    .mini-show3{
        display: block;
    }
    .catalog-items > div:hover div.catalog-item-article{
        display: none;
    }
    .catalog-items > div:hover div.catalog-item-sizes-label{
        display: none;
    }
    .catalog-items > div:hover div.catalog-item-container{
        position: static;
        padding: 0;
        top:0;
        left:0;
        background: #fff;
        box-shadow: none;
        z-index: 1;
        border-radius: 10px;
    }
    .catalog-items > div a.fav-icon-heart{
        display: block;
    }

    .wrap-breadcrumbs {
        padding: 7.98px 0 28px 0;
        text-align: center;
    }

    .content-buy-now{
        margin: 0 15px;
    }
    .wrap-product-desc .wrap-tabs-account{
        text-align: left;
    }
    /*.d-modal__foto-wrap > img{*/
    /*    max-width: 50%;*/
    /*}*/

    .wrap-product-body{
        display: grid;
        grid-template-columns: 480px minmax(350px, 1fr);
    }
    .wrap-product-desc{
        padding: 0 10px;
        box-sizing: border-box;
    }
    .sp-op img {
        max-width: 100%;
    }
    .section-price{
        display: none;
    }
    .product-desc__price-block{
        display: block;
        border-bottom: 1px solid #e6e6e6;
        margin-bottom: 18px;
    }
    .logo-line{
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        padding: 2px 16px 7px 16px;
    }
    .wrap-logo{
        margin: 0 0 5px 0;
        height: auto;
        width: 140px;
    }
    .category-line{
        margin: 0;
    }
    .bottom-panel{
        display: block;
        position: fixed;
        background: #fff;
        width: 100%;
        bottom: 99px;
        left: 0;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
        z-index: 100;
    }
    .bottom-panel__button{
        margin: 17px auto;
        width: 208px;
    }

    .goToUp{
        bottom: 145px;
    }

    .bottom-panel__icons{
        display: block;
        position: fixed;
        background: #fff;
        width: 100%;
        bottom: 40px;
        left: 0;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
        z-index: 100;
    }
    .bottom-panel__icons-wrap{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }
    .bottom-panel__icons-wrap > div{
        padding: 19px 0  17px 0;
    }
    .bottom-panel__icon{
        display: block;
        position: relative;
        margin: 0 auto;
        width: 27px;
        line-height: 0;
    }
    .coda{
        padding-bottom: 160px;
    }
}

@media screen and (max-width: 1024px) {
    .bottom-panel__icons{
        bottom:0;
    }
    .bottom-panel{
        bottom: 59px;
    }
    .footer-bottom-line{
        padding-bottom: 150px;
    }
}

@media screen and (max-width: 860px) {
    .wrap-product-body{
        display: grid;
        grid-template-columns: 400px minmax(300px, 1fr);
    }
}

@media screen and (max-width: 768px) {

    .wrap-product-body{
        display: grid;
        grid-template-columns: 400px minmax(250px, 1fr);
    }

    .d-modal__foto-wrap > img{
        max-width: 70%;
    }
    .d-modal__foto-thumbnail > img{
        width: 60px;
        height: auto;
    }
    .d-modal__close-button{
        top: 22px;
        right: 22px;
    }
    .d-modal__foto-thumbnail{
        left: 10px;
        top: 10px;
    }
}

@media screen and (max-width: 675px) {
    .wrap-product-body{
        display: grid;
        grid-template-columns: minmax(320px, 1fr);
    }
    .good-answer{
        display: none;
    }
}

@media screen and (max-width: 640px) {
    .category-line{
/*        display: none;*/
    }
    .product-breadcrums{
        display: none;
    }
}

@media screen and (max-width: 600px) {

    .content-buy-now {
        margin: 0 0 0 15px;
    }
    .block-carusel{
        border-bottom: 1px solid #e6e6e6;
        padding-bottom: 25px;
    }

    .block-colors-products{
        margin-right: -15px;
    }

    .block-colors-products .slider__items{
        margin-right: -15px;
    }

    .block-colors-products .slick-slide{
        margin-right: 12px;
        width: 64px;
    }

    .d-modal__foto-thumbnail > img{
        margin-bottom: 10px;
        width: 50px;
    }

    .d-modal__foto-wrap > img{
        max-width: 100%;
    }

    .wrap-product-desc{
        padding: 0;
    }
    .prod_sizes_label{
        margin-right: 1px;
    }
    .wrap-sizes-product{
        padding: 0 55px 0 35px;
    }
    .gray-line{
        margin: 24px auto 6px auto;
    }
    .title-recommends{
        padding: 15px 0;
        margin: 0;
    }
    .item-buy-now{
        max-width: 138px;
        margin-right: 16px;
    }
    .tabs__content{
        padding-top: 0;
        padding-bottom: 0;
    }
    .wrap-button-reviews{
        padding: 19px 0;
        margin-right: -20px;
        margin-left: -20px;
        margin-bottom: 27px;
    }


    .sub-text input{
        padding: 6px 14px;
        border-radius: 10px;
        box-sizing: border-box;
        font-weight: 400;
        font-size: 14px;
        color: #770041;
    }
    .sub-button button.button-orange{
        border-radius: 10px;
        padding: 6px 12.5px;
        font-weight: 700;
        font-size: 14px;
        text-align: center;
        color: #fff;
    }
    .wrap-check-sub{
        padding-top: 20px;
        padding-bottom: 14px;
        display: flex;
        align-items: flex-start;
    }
    .wrap-check-sub > input{
        margin-right: 11.5px;
        margin-top: 3px;
    }
    .acc-head{
        font-weight: 700;
        font-size: 14px;
        color: #000;
    }
    .acc-body ul li{
        padding-top:18px;
    }
    .acc-body ul li:first-child{
        padding-top: 0;
    }
    .acc-body ul li a{
        font-weight: 700;
        font-size: 14px;
        color: #231f20;
    }
    .modal{
        /*z-index: 10000;*/
    }
    .size-modal-block{
        margin: 0 auto;
        position: absolute;
        left: 0;
        bottom: 0;
        border-radius: 15px 15px 0 0;
        width:100%;
    }
    .cart-view-modal-size{
        padding: 0;
        border-radius: 15px 15px 0 0;
    }

    .text-reviews{
        margin-bottom: 18px;
    }

}