

/* Start:/bitrix/templates/sofisto/template_styles.css?169142412782702*/
:root {
  --color-grey: #D7D9D7; /* Серый цвет, полоска в шапке */
  --color-grey-type2: #D7D9D7; /* Серый цвет, полоска в шапке */
  --color-grey-type3: #A9A9A9;; /* Серый цвет, текста */
  --color-violet: #8D8BD9; /* Фиолетовый цвет, акценты */
  --color-text: #333; /* Черный цвет, текст по умоланию */
  --radius: 8px; /* Радиус кнопок и полей */
  --header-height: 85px; /* Размер шапки */
  --header-height-move: 50px;  /* Размер шапки при скроле */

  --scrollbar-hover-background: #0004;
  --scrollbar-color: #0004;
  --scrollbar-hover-color: #000;
}
html{
    overflow-x: hidden;
}
body{
    font-family: 'Montserrat', sans-serif;
    color: var(--color-text);
    font-weight: 400;
    font-size: 12px;
    overflow-x: hidden;
}
*:focus-visible {
    outline: none;
}
a{
    text-decoration: none;
    color: var(--color-violet);
}
a:hover,a:active,a:focus{
    color: var(--color-violet);
    text-decoration: underline;
}
ul{
    margin: 1em 0;
    padding-left: 20px;
    list-style: none;
}
ul li{
    position: relative;
}
ul li::before{
    content: '';
    position: absolute;
    width: 12px;
    height: 2px;
    left: -20px;
    top: 50%;
    background: var(--color-violet);
}
input,textarea{
    background: #F9F9F9;
    border: 2px solid var(--color-grey-type2);
    box-sizing: border-box;
    border-radius: var(--radius);
    height: 40px;
    padding: 0 16px;
    font-weight: 400;
    font-size: 12px;
}
textarea{
    height: 100px;
    padding: 10px 16px;
}
input:focus,input:hover,textarea:focus,textarea:hover{
    border: 2px solid var(--color-violet);
}
input:disabled,textarea:disabled,
input:disabled:focus,input:disabled:hover,
textarea:disabled:focus,textarea:disabled:hover{
    border: 2px solid var(--color-grey-type2);
    opacity: .5;
}
label.checkbox{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
label.checkbox input{
    display: none;
}
label.checkbox input + b{
    display: inline-block;
    border: 2px solid var(--color-violet);
    width: 20px;
    height: 20px;
    border-radius: 4px;
    cursor: pointer;
    background: #fff;
    position: relative;
    transition-duration: .4s;
    transition-property: background;
}
label.checkbox input[type=radio] + b{
    border-radius: 50%;
}
label.checkbox input + b:before{
    content: '';
    position: absolute;
    background-image: url(/media/check.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 13px;
    height: 13px;
}
label.checkbox input:checked + b{
    background: var(--color-violet);
}
label.checkbox input ~ font{
    font-size: 11px;
    line-height: 10px;
    font-weight: 500;
    text-align: left;
    margin-left: 8px;
    flex: 1 0;
}
label div.error{
    line-height: 12px;
    font-size: 12px;
    color: red;
    margin-top: 10px;
    display: none;
}
label div.error.i{
    display: block !important;
}
label span div.error.i{
    margin: 0;
    display: inline-block !important;
}
button{
    position: relative;
    background: transparent;
    border: none;
    box-sizing: border-box;
    border-radius: var(--radius);
    height: 40px;
    padding: 0 16px;
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    color: var(--color-violet);
    transition-duration: .4s;
    transition-property: color, box-shadow;
    z-index: 1;
}
button::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: var(--radius);
    background: linear-gradient(94.17deg, #A8A6F7 -6.33%, #54529E 115.23%);
    opacity: 0;
    transition-duration: .4s;
    transition-property: opacity;
}
button::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    border-radius: var(--radius);
    background: #fff;
    border: 2px solid #8D8BD9;
}
.input-group > button::before,
.input-group > button::after{
    margin-left: -2px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
button:hover{
    box-shadow: inset 0px 0px 0px 0px var(--color-violet);
    color: #fff;
}
button:hover::before{
    opacity: 1;
}
button.full{
    color: #fff;
}
button.full::after{
    border: none;
    background: linear-gradient(94.17deg, #A8A6F7 -6.33%, #54529E 115.23%);
}
button.full::before{
    background: #54529E;
}
button:disabled{
    color: #ccc;
}
button:disabled::after{
    border: 2px solid #ccc;
    background: #f5f5f5;
}
button:disabled::before{
    display: none;
}
button.noborder::before,
button.noborder::after{
    display: none;
}
button.noborder:hover{
    color: var(--color-violet);
    text-decoration: underline;
}
h1,.h1{
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    text-align: center;
    text-transform: uppercase;
    color: var(--color-text);
    margin-top: 45px;
    margin-bottom: 45px;
}
h2{
    font-weight: 600;
    font-size: 37px;
    line-height: 44px;
    text-transform: uppercase;
}
.h1{
    text-align: left;
    margin-top: 0;
    margin-bottom: 0.5rem;
}
h1 span, h2 span{
    color: var(--color-violet);
}
.unselectable {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Chrome/Safari/Opera */
  -khtml-user-select: none;    /* Konqueror */
  -moz-user-select: none;      /* Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
  user-select: none;           /* Non-prefixed version, currently
                                  not supported by any browser */
}
.alert-danger {
    color: red;
    background-color: #fee;
    border-color: red;
}

/*************************** Шапка ***************************/
header{
    border-bottom: 1px solid var(--color-grey);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 800;
    background: #FFF;
    width: 100%;
}
.headerMargin{
    height: var(--header-height);
}
header .container{
    display: flex;
    height: var(--header-height);
    align-items: center;
    transition-duration: .4s;
    transition-property: height;
}
header.move .container{
    height: var(--header-height-move);
}
header .mob-menu-but{
    display: none;
    height: 100%;
    align-items: center;
    padding-right: 15px;
    border-right: 1px solid var(--color-grey);
}
header .mob-menu-but img.but{
    width: 45px;
    height: 18px;
}
header .mob-menu-but img.close{
    display: none;
    width: 45px;
    height: 45px;
}
header.mob-menu-open .mob-menu-but img.but{ display: none; }
header.mob-menu-open img.close{ display: block; }
header .logo{
    display: flex;
    height: 100%;
    align-items: center;
    padding-right: 53px;
    border-right: 1px solid var(--color-grey);
}
header .logo img{
    width: 125px;
    height: 42px;
}
header .menu{
    width: 100%;
    display: flex;
    padding: 0 40px;
    justify-content: space-between;
    align-items: center;
}
header .menu nav{
    display: flex
}
header .menu nav a{
    color: var(--color-text);
    margin-right: 50px;
}
header .menu nav a:hover,
header .menu nav a.active{
    /* font-weight: bold; */
    color: var(--color-violet);
}
header .menu nav > div{
    position: relative;
}
header .menu nav > div .sub{
    position: absolute;
    display: flex;
    padding: 15px;
    background: #fff;
    box-shadow: 0px 10px 10px -10px rgb(0 0 0 / 30%);
    font-size: 10px;
    line-height: 12px;
    white-space: nowrap;
    margin-left: -15px;
    opacity: 0;
    visibility: hidden;
    transition-duration: .4s;
    z-index: 100;
}
header .menu nav > div:hover .sub{
    opacity: 1;
    visibility: visible;
}
header .menu nav > div .sub a{
    margin-right: 0;
}
header .menu nav > div .sub .title{
    display: flex;
    align-items: center;
    font-weight: bold;
}
/* header .menu nav > div .sub .title.active{
    color: var(--color-violet);
} */
header .menu nav > div .sub > div{
    margin-right: 40px;
}
header .menu nav > div .sub > div:last-child{
    margin-right: 0px;
}
header .menu nav > div .sub img{
    height: 18px;
    margin-right: 10px;
}
header .menu nav > div .sub ul{
    margin: 0;
    padding-left: 15px;
    margin-top: 9px;
    list-style: none;
}
header .menu nav > div .sub ul li{
    margin-bottom: 5px;
    position: relative;
}
header .menu nav > div .sub ul li:last-child{
    margin-bottom: 0px;
}
header .menu nav > div .sub ul li:before{
    content: '';
    position: absolute;
    width: 12px;
    height: 1px;
    background: var(--color-text);
    top: 50%;
    left: -16px;
}
header .menu nav > div .sub ul li.active a{
    color: var(--color-violet);
}
header .menu nav > div .sub ul li:hover:before,
header .menu nav > div .sub ul li.active:before{
    background: var(--color-violet);
}
header .menu .phone{
    text-align: right;
    line-height: 15px;
}
header .menu .phone a:first-child{
    color: var(--color-text);
    font-weight: 600;
}
header .menu .phone a:last-child{
    font-weight: 500;
}
header .icomMenu{
    display: flex;
    height: 100%;
    align-items: center;
    padding-left: 41px;
    border-left: 1px solid var(--color-grey);
}
header .icomMenu a{
    margin-right: 30px;
    position: relative;
    text-decoration: none;
}
header .icomMenu a:last-child{
    margin-right: 0px;
}
header .icomMenu a span{
    background: var(--color-violet);
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    font-size: 9px;
    line-height: 15px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    position: absolute;
    left: 9px;
    top: -5px;
}
header .icomMenu a span:empty{
    display: none;
}
header .icomMenu img{
    width: 16px;
    height: 16px;
}

/*************************** Моб меню ***************************/
.mob-menu{
    position: fixed;
    display: none;
    top: 86px;
    left: -100%;
    width: 100%;
    height: calc(100% - 86px);
    background: #fff;
    padding: 20px;
    overflow: auto;
    transition-duration: .4s;
    transition-property: height, left, top;
}
.mob-menu-open .mob-menu{
    left: 0%;
}
.move .mob-menu{
    top: 51px;
    height: calc(100% - 51px);
}
.mob-menu form{
    border-bottom: 1px solid var(--color-grey);
    margin: 0 -20px 20px -20px;
    padding: 0 20px 20px 20px;
    position: relative;
}
.mob-menu form input{
    width: 100%;
    padding-right: 40px;
}
.mob-menu form button{
    border: none;
    background: none;
    position: absolute;
    top: 0;
    right: 20px;
    width: 40px;
    padding: 0;
}
.mob-menu form button:after{
    background-image: url(/media/search.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: none;
    background-color: transparent;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.mob-menu form button:before{
    display: none;
}
.mob-menu nav{
    line-height: 45px;
    font-size: 18px;
    margin-bottom: 40px;
}
.mob-menu nav a{
    color: var(--color-text);
}
.mob-menu nav a:after{
    content: '';
    display: block;
}
.mob-menu nav .title{
    font-weight: bold;
}
.mob-menu nav img{
    width: 30px;
    height: 30px;
    margin-right: 5px;
}
.mob-menu nav ul{
    margin: 0;
    padding-left: 38px;
}
.mob-menu .phone{
    line-height: 30px;
    font-size: 20px;
}
.mob-menu .phone a:first-child{
    color: var(--color-text);
    font-weight: 600;
}
.mob-menu .phone a:last-child{
    font-weight: 500;
}

/*************************** Подвал ***************************/
footer{
    border-top: 1px solid var(--color-grey);
}
footer .container{
    display: flex;
}
footer b{
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    text-transform: uppercase;
}
footer .logo{
    padding-right: 53px;
    padding-top: 67px;
    border-right: 1px solid var(--color-grey);
}
footer .logo img{
    width: 125px;
    height: 42px;
}
footer .logo .company{
    margin-top: 47px;
    margin-bottom: 100px;
    font-weight: 300;
    font-size: 14px;
    line-height: 16px;
    white-space: nowrap;
    opacity: .6;
}
footer .menu{
    padding: 0 90px;
    padding-top: 67px;
    width: 100%;
}
footer .menu nav{
    display: flex;
    justify-content: space-between;
}
footer .menu nav > div{
    white-space: nowrap;
}
footer .menu nav b{
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
}
footer .menu nav a{
    color: var(--color-text);
}
footer .menu nav ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
footer .menu .copyright{
    margin-top: 60px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 300;
    opacity: .6;
    line-height: 21px;
}
footer .menu .copyright a{
    color: var(--color-text);
}
footer .social{
    padding-left: 31px;
    padding-top: 67px;
    border-left: 1px solid var(--color-grey);
}
footer .social .subscription input{
    width: 250px;
    display: block;
    margin-top: 20px
}
footer .social .subscription button{
    margin-top: 20px
}
footer .social .social-list{
    margin-top: 38px;
    margin-bottom: 50px;
}
footer .social-mob{
    display: none;
    text-align: right;
}
footer .social-mob .phone{
    font-weight: 600;
    font-size: 12px; line-height:
    15px; color: var(--color-text);
}
footer .social-mob .social-list {
    display: inline-flex;
    margin-top: 20px;
}
.social-list{
    display: flex;
}
.social-list a{
    margin-right: 8px;
    display: block;
}
.social-list a:last-child{
    margin-right: 0px;
}
.social-list svg{
    width: 19px;
    height: 19px;
}
.social-list svg rect{
    fill: var(--color-text);
}
.social-list a:hover svg rect{
    fill: var(--color-violet);
}

/*************************** 404 ***************************/
.page404{
    background: url(/media/bg-404.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    padding: 120px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}
.page404 h1{
    font-weight: 600;
    font-size: 144px;
    line-height: 110px;
}
.page404 p{
    font-weight: 500;
    font-size: 36px;
    line-height: 44px;
}

/*************************** Хлебные крошки ***************************/
.breadcrumb {
    margin: 35px 0;
}
.breadcrumb > div:before{
    content: '';
    background-image: url(/media/breadcrumb-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: inline-block;
    width: 10px;
    height: 6px;
    margin: 0px 10px;
}
.breadcrumb > div:first-child:before{
    display: none;
}
.breadcrumb a{
    color: var(--color-text);
}
.breadcrumb b{
    font-weight: 400;
    color: var(--color-violet);
}

/*************************** Контентная область ***************************/
.container.page{
    margin: 45px auto 160px auto;
}
.container.page img{
    max-width: 100%;
}

/*************************** Слайдер на главной ***************************/
.slider-index{
    position: relative;
    width: 100%;
    height: 33vw;
}
.slider-index > .container{
    width: 100%;
    max-width: 100%;
    height: 0;
}
.slider-index .arrow-left,
.slider-index .arrow-right{
    position: absolute;
    top: 0;
    height: 100%;
    width: 10%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: #0000;
    transition-duration: .4s;
}
.slider-index .arrow-left:hover,
.slider-index .arrow-right:hover{
    background: #0001;
}
.slider-index .arrow-left{
    left: 0;
}
.slider-index .arrow-right{
    right: 0;
}
.slider-index .arrow-left img,
.slider-index .arrow-right img{
    width: 24px;
    height: 13px;
}
.slider-index .list{
    height: 100%;
    overflow: hidden;
}
.slider-index .list .slide{
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    transition-duration: .2s;
    transition-delay: .2s;
    transition-property: opacity;
}
.slider-index .list .slide.active{
    z-index: 2;
    opacity: 1;
    transition-delay: 0s;
}
.slider-index .nav-dots{
    position: absolute;
    z-index: 10;
    display: flex;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}
.slider-index .nav-dots span{
    display: block;
    width: 12px;
    height: 12px;
    border: 1px solid var(--color-text);
    background: #0000;
    border-radius: 50%;
    margin: 0 4px;
    cursor: pointer;
}
.slider-index .nav-dots span.active{
    border-color: var(--color-violet);
    background: var(--color-violet);
}

/*************************** Подписка ***************************/
.subscription_page{
    max-width: 600px;
    margin: 0 auto;
}
.subscription_page input{
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}

/*************************** Окна ***************************/
#window{
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 30%);
    box-shadow: 0px 0px 0px 10000px rgb(0 0 0 / 30%);
    opacity: 0;
    visibility: hidden;
    transition-duration: .4s;
    transition-property: opacity, visibility;
    cursor: pointer;
}
#window.open{
    opacity: 1;
    visibility: visible;
}
#window .window{
    width: 370px;
    background: #FFFFFF;
    box-shadow: 0px 22px 85px rgb(141 139 217 / 25%);
    border-radius: 30px;
    padding: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    cursor: default;
}
#window .window .close{
    position: absolute;
    top: 16px;
    right: 16px;
}
#window .window .close img{
    width: 20px;
    height: 20px;
    cursor: pointer;
}
#window .window .body .title{
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    text-transform: uppercase;
    color: var(--color-violet);
    margin: 10px 0;
}
#window .window .body p{
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    color: var(--color-grey-type3);
}
#window .window .body label{
    width: 100%;
    text-align: center;
    margin: 10px 0;
}
#window .window .body label span{
    font-weight: 600;
    line-height: 16px;
    text-align: center;
    display: block;
}
#window .window .body label input{
    width: 220px;
    margin-top: 5px;
}
#window .window .body button{
    width: 220px;
    margin: 15px auto 0 auto;
    display: block;
}
#window .window .body label.checkbox{
    width: 220px;
    margin: 12px auto 0 auto;
}
#window .alert{
    text-align: center;
}

/*************************** Загрузка ***************************/
#loading{
    position: fixed;
    z-index: 900;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 30%);
    box-shadow: 0px 0px 0px 10000px rgb(0 0 0 / 30%);
    opacity: 0;
    visibility: hidden;
    transition-duration: .4s;
    transition-property: opacity, visibility;
    cursor: pointer;
}
#loading.open{
    opacity: 1;
    visibility: visible;
}
#loading img{
    width: 10%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

/*************************** Вступление ***************************/
.intro{
    margin-top: 110px;
    margin-bottom: 40px;
}
.intro h1, .intro .h1{
    text-transform: inherit;
    font-weight: normal;
    text-align: left;
    margin: 0;
    margin-bottom: 12px;
}
.intro .col:first-child{
    width: 440px;
    flex: inherit;
}
.intro .col:last-child{
    flex: 1 0;
}
.intro ul li{
    margin-bottom: 15px;
}
.intro p{
    font-size: 18px;
    line-height: 22px;
}

/*************************** Приимущества ***************************/
.advantage{
    margin-top: 40px;
    margin-bottom: 110px;
}
.advantage .title{
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    text-transform: uppercase;
}
.advantage .title span{
    font-weight: 500;
    font-size: 72px;
    line-height: 88px;
    color: var(--color-violet);
    margin-right: -20px;
}

/*************************** Наши партнеры ***************************/
.partners{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 110px 0;
}
.partners div:first-child{
    font-size: 36px;
    line-height: 44px;
}
.partners img{
    filter: grayscale(1);
    transition-duration: .4s;
    transition-property: filter;
}
.partners img:hover{
    filter: grayscale(0);
}

/*************************** Программа лояльности ***************************/
.affiliate{
    background-image: url(/media/affiliate-bg.jpg);
    background-size: cover;
    background-position: center;
    padding: 70px 0 30px 0;
}
.affiliate .container > div:nth-child(1){
    font-size: 24px;
    line-height: 29px;
}
.affiliate .title{
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    text-transform: uppercase;
}
.affiliate .title.violet{
    color: var(--color-violet);
    text-transform: inherit;
}
.affiliate ul li{
    margin-bottom: 15px;
}
.affiliate form{
    display: flex;
    flex-wrap: wrap;
}
.affiliate input{
    background: rgb(249 249 249 / 70%);
    flex: auto;
    margin-right: 10px;
}
.affiliate .checkbox{
    color: #fff;
    margin-top: 10px;
}
.affiliate .checkbox a{
    color: #fff;
}

/*************************** Блок контакры ***************************/
.contact_block{
    line-height: 24px;
    margin: 90px 0;
}
.contact_block h2{
    margin-top: 0;
}
.contact_block .col:first-child{
    width: 245px;
    flex: inherit;
}
.contact_block .col:first-child > div{
    display: flex;
    justify-content: space-between;
}
.contact_block .col:last-child{
    flex: 1 0;
}
.contact_block #map{
    width: 100%;
    height: 100%;
}
.contact_block .callback_form{
    margin-top: 10px;
}
.contact_block .callback_form .title{
    font-weight: 500;
    font-size: 21px;
    line-height: 29px;
    color: var(--color-violet);
    margin-bottom: 15px;
}
.contact_block .callback_form label{
    display: block;
    margin-bottom: 15px;
}
.contact_block .callback_form label.checkbox{
    display: flex;
    margin-bottom: 0px;
}
.contact_block .callback_form input{
    width: 220px;
}
.contact_block .callback_form button{
    margin-bottom: 15px;
    width: 220px;
}

/*************************** Страница поиска ***************************/
.search-page .border{
    border-bottom: 1px solid var(--color-grey);
    margin-bottom: 20px;
}
.search-page form{
    padding: 0 20px 20px 20px;
    position: relative;
    width: 500px;
    margin: 0 auto;
}
.search-page form input{
    width: 100%;
    padding-right: 40px;
}
.search-page form button{
    border: none;
    background: none;
    position: absolute;
    top: 0;
    right: 20px;
    width: 40px;
    padding: 0;
}
.search-page form button:after{
    background-image: url(/media/search.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: none;
    background-color: transparent;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.search-page form button:before{
    display: none;
}
.search-page .empty{
    text-align: center;
    font-size: 18px;
    margin: 50px;
    color: var(--color-violet);
}

/*************************** Карточка товара ***************************/
.product-item{
    display: inline-block;
    position: relative;
    width: 23%;
    height: 290px;
    margin: 0 1%;
    margin-bottom: 20px;
    z-index: 1;
}
.product-item:hover{
    z-index: 20;
}
.product-item .image{
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
}
.product-item .image img{
    max-width: 100%;
    max-height: 100%;
}
.product-item .panel{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFF;
    border: 1px solid #fff;
    padding: 10px;
    border-radius: 10px;
    transition-duration: .4s;
}
.product-item .panel:hover{
    height: auto;
    border: 1px solid var(--color-violet);
}
.product-item .panel .title{
    font-size: 14px;
    line-height: 17px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 8px;
}
.product-item .panel:hover{
    white-space: inherit;
}
.product-item .panel .receipt{
    font-size: 10px;
    line-height: 12px;
    color: var(--color-violet);
}
.product-item .panel .base_price{
    font-size: 12px;
    line-height: 15px;
    text-decoration-line: line-through;
    color: var(--color-grey-type3);
}
.product-item .panel .price{
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    margin-left: 10px;
    white-space: nowrap;
}
.product-item .panel:hover .price{
    width: 100%;
    margin-left: 0px;
}
.product-item .panel .price span{
    color: var(--color-violet);
}
.product-item .panel .basket .col{
    display: flex;
    flex-wrap: wrap;
    align-content: flex-end;
    align-items: flex-end;
    justify-content: flex-end;
}
.product-item .panel .basket button{
    font-weight: 600;
    font-size: 10px;
    line-height: 12px;
    padding: 10px;
    height: 30px;
    width: 100%;
    white-space: nowrap;
}
.product-item .panel .basket .col:last-child{
    display: none;
}
.product-item .panel:hover .basket .col{
    justify-content: space-between;
}
.product-item .panel:hover .basket .col:last-child{
    display: flex;
}
.product-item .panel .list{
    font-size: 10px;
    line-height: 12px;
    color: var(--color-grey-type3);
    justify-content: space-between;
    margin: 9px 0;
    display: none;
}
.product-item .panel:hover .list{
    display: flex;
}
.product-item .panel .list.color span{
    border-radius: 3px;
    display: inline-block;
    margin-right: 5px;
    cursor: pointer;
}
.product-item .panel .list.color span.active{
    box-shadow: 0px 0px 0px 2px var(--color-violet);
}
.product-item .panel .list.color span.none{
    position: relative;
}
.product-item .panel .list.color span.none > *{
    opacity: .5;
}
.product-item .panel .list.color span.none:before,
.product-item .panel .list.color span.none:after{
    content: '';
    display: block;
    position: absolute;
    width: 7px;
    height: 1px;
    background: #000;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(45deg);
}
.product-item .panel .list.color span.none.none:after{
    transform: translate(-50%,-50%) rotate(-45deg);
}
.product-item .panel .list.color img{
    display: block;
    width: 13px;
    height: 13px;
    border-radius: 3px;
}
.product-item .panel .list.material span{
    border-radius: 3px;
    display: inline-block;
    padding: 1px 4px;
    cursor: pointer;
}
.product-item .panel .list.material span.active{
    box-shadow: 0px 0px 0px 2px var(--color-violet);
}
.product-item .image .labels{
    color: var(--color-violet);
    font-weight: 600;
    font-size: 10px;
    line-height: 12px;
    flex-wrap: wrap;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
}
.product-item .image .labels span{
    display: inline-block;
    border: 1px solid var(--color-violet);
    padding: 4px 6px 3px 6px;
    border-radius: 5px;
    margin-right: 5px;
    margin-bottom: 5px;
    background: #fff;
}
.product-item .image .labels span.percent{
    background: var(--color-violet);
    color: #fff;
}
.product-item .image .labels span.percent:empty{
    display: none;
}

/*************************** Постраничная навигация ***************************/
.pagenavigation{
    display: flex;
    margin: 50px 0;
    justify-content: center;
    align-content: center;
}
.pagenavigation .button{
    display: inline-flex;
    padding: 12px 16px;
    height: 40px;
    background: #FFFFFF;
    box-sizing: border-box;
    border-radius: 8px;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.pagenavigation .button span{
    font-weight: 600;
    line-height: 12px;
    font-size: 12px;
    padding: 0;
    color: var(--color-violet);
}
.pagenavigation .button img{
    width: 7px;
    height: 14px;
    display: block;
}
.pagenavigation .button span:last-child{
    padding-left: 10px;
}
.pagenavigation .button span:first-child{
    padding-right: 10px;
}
.pagenavigation a,
.pagenavigation b,
.pagenavigation span{
    font-size: 14px;
    padding: 10px;
    color: var(--color-text);
    display: flex;
    align-content: center;
    justify-content: center;
}
.pagenavigation a.button,
.pagenavigation b{
    color: var(--color-violet);
}
.pagenavigation a.disabled{
    display: none;
}

/*************************** Сетка товаров ***************************/
.products .grid{
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    flex-direction: row;
    margin-bottom: 20px;
}

/*************************** Сетка товаров - слайдер ***************************/
.products.slider{
    position: relative;
}
.products.slider .left,
.products.slider .right{
    position: absolute;
    top: 0;
    width: 50px;
    height: 50px;
    cursor: pointer;
}
.products.slider .left{
    background-image: url(/media/product_sider_left.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    right: 60px;
}
.products.slider .right{
    background-image: url(/media/product_sider_right.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    right: 0px;
}
.products.slider .left:hover{
    background-image: url(/media/product_sider_left_active.svg);
}
.products.slider .right:hover{
    background-image: url(/media/product_sider_right_active.svg);
}
.products.slider .grid{
    position: relative;
    height: 290px;
}
.products.slider .grid > .product-item{
    position: absolute;
    top: 0;
    left: 100%;
    opacity: 0;
    visibility: hidden;
    transition-duration: .8s;
    transition-property: left, top, opacity, visibility;
    z-index: 1;
}
.products.slider .grid > .product-item:first-child{
    left: -25%;
}
.products.slider .grid > .product-item:nth-child(2),
.products.slider .grid > .product-item:nth-child(3),
.products.slider .grid > .product-item:nth-child(4),
.products.slider .grid > .product-item:nth-child(5){
    opacity: 1;
    z-index: 2;
    visibility: visible;
}
.products.slider .grid > .product-item:nth-child(2){
    left: 0;
}
.products.slider .grid > .product-item:nth-child(3){
    left: 25%;
}
.products.slider .grid > .product-item:nth-child(4){
    left: 50%;
}
.products.slider .grid > .product-item:nth-child(5){
    left: 75%;
}

/*************************** Каталог ***************************/
.catalog .catalog-block{
    display: flex;
    margin-bottom: 50px;
}
.catalog .catalog-block .filter{
    width: 300px;
}
.catalog .catalog-block .list-items{
    flex: 1 0;
}
.catalog .add2basket{
    width: 180px;
}

/*************************** О нас ***************************/
.about{
    font-size: 18px;
    line-height: 22px;
}
.about .intro{
    margin: 40px 0;
}
.about .intro ul:first-child{
    margin-top: 0;
}

/*************************** Доставка ***************************/
.delivery{
    font-size: 18px;
    line-height: 22px;
}
.delivery .intro{
    border-bottom: 1px solid var(--color-grey);
    margin-top: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
}
.delivery .intro:last-child{
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.delivery .intro span{
    color: var(--color-violet);
    font-weight: 600;
}

/*************************** Контакты ***************************/
.contacts{
    position: relative;
}
.contacts .container:before,
.contacts .container:after{
    content: '';
    display: table;
}
.contacts .contact_block h1{
    margin: 0px;
    margin-bottom: 15px;
}
.contacts .contact_block{
    width: 274px;
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 15px;
    box-shadow: 0px 22px 85px rgb(141 139 217 / 25%);
    border-radius: 15px;
}
.contacts .contact_block b{
    text-align: right;
}
.contacts #map{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.requisites {
    margin: 40px auto;
}

/*************************** Фильтры ***************************/
.bx-filter .bx-filter-parameters-box-title{
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    cursor: pointer;
}
.bx-filter .bx-filter-parameters-box-title span{
    display: flex;
    align-items: center;
}
.bx-filter .bx-filter-parameters-box-title span i{
    display: block;
    background-image: url(/media/filter.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 14px;
    height: 14px;
    margin-left: 10px;
    transform: rotate(0deg);
    transition-duration: .4s;
    transition-property: transform;
}
.bx-filter .bx-active .bx-filter-parameters-box-title span i{
    transform: rotate(180deg);
}
.bx-filter .filter-title{
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}
.bx-filter .filter-title img{
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.bx-filter .bx-filter-block{
    display: none;
}
.bx-filter .bx-active .bx-filter-block{
    display: block;
}
.bx-filter .bx-filter-parameters-box{
    margin-bottom: 20px;
}
.bx-filter .bx-ui-slider-track {
    position: relative;
    height: 6px;
    background: #EBEBEB;
    border-radius: 12px;
}
.bx-filter .bx-ui-slider-handle{
    position: absolute;
	border-bottom: none;
    top: -7px;
    width: 20px;
    height: 20px;
    background: #FFFFFF;
    border: 1px solid #D1D1D1;
    box-shadow: 0px 2px 4px rgb(0 0 0 / 15%);
    border-radius: 50%;
}
.bx-filter .bx-ui-slider-handle.left {
	left: 0;
	margin-left: -10px;
}
.bx-filter .bx-ui-slider-handle.right {
	right: 0;
	margin-right: -10px;
}
.bx-filter .bx-ui-slider-track-container {
	padding: 40px 24px 20px 24px;
}
.bx-filter .bx-ui-slider-track-input{
    display: flex;
}
.bx-filter .bx-ui-slider-track-input .bx-filter-parameters-box-container-block{
    width: 100%;
}
.bx-filter .bx-ui-slider-track-input input{
    width: 100%;
}
.bx-filter .bx-ui-slider-track-input span{
    display: block;
    height: 1px;
    width: 10px;
    background: #000;
    margin: 10px;
    margin-top: 37px;
}
.bx-filter .bx-ui-slider-part {
	position: absolute;
	top: -6px;
	width: 1px;
	height: 6px;
	background: var(--color-grey);
}
.bx-filter .bx-ui-slider-part.p1 { left: -1px; }
.bx-filter .bx-ui-slider-part.p2 { left: 25%; }
.bx-filter .bx-ui-slider-part.p3 { left: 50%; }
.bx-filter .bx-ui-slider-part.p4 { left: 75%; }
.bx-filter .bx-ui-slider-part.p5 { right: -1px; }
.bx-filter .bx-ui-slider-part span {
	font-size: 11px;
	position: absolute;
	top: -16px;
	left: 50%;
	display: block;
	width: 100px;
	margin-left: -50px;
	text-align: center;
	color: var(--color-text);
}
.bx-filter .bx-ui-slider-part.p2 span,
.bx-filter .bx-ui-slider-part.p3 span,
.bx-filter .bx-ui-slider-part.p4 span { color: var(--color-text); }
.bx-filter .bx-ui-slider-range,
.bx-filter .bx-ui-slider-pricebar,
.bx-filter .bx-ui-slider-pricebar-vd,
.bx-filter .bx-ui-slider-pricebar-vn,
.bx-filter .bx-ui-slider-pricebar-v {
	position: absolute;
	top: 0;
	bottom: 0;
}
.bx-filter .bx-ui-slider-range { z-index: 110; }
.bx-filter .bx-ui-slider-pricebar { z-index: 100; }
.bx-filter .bx-ui-slider-pricebar-vd { z-index: 60; }
.bx-filter .bx-ui-slider-pricebar-vn { z-index: 70; }
.bx-filter .bx-ui-slider-pricebar-v { z-index: 80; background: var(--color-violet); }
.bx-filter .bx-ui-slider-handle:hover {
	-webkit-cursor: grab;
	-ms-cursor: grab;
	-o-cursor: grab;
	cursor: grab;
}
.bx-filter .bx-ui-slider-handle:active {
	-webkit-cursor: grabbing;
	-ms-cursor: grabbing;
	-o-cursor: grabbing;
	cursor: grabbing;
}
.bx-filter .bx-filter-container-modef{
    position: relative;
    width: 100%;
    display: block;
}
.bx-filter .bx-filter-popup-result{
    display: inline-block;
    position: absolute;
    left: 100%;
    top: -15px;
    z-index: 200;
    background: #fff;
    border: 1px solid #8d8bd9;
    padding: 5px 10px;
    border-radius: 8px;
    white-space: nowrap;
}
.bx-filter .bx-filter-param-label{
    margin: 10px 0;
}
.bx-filter .bx-filter-param-btn-inline.color{
    margin-top: 10px;
}
.bx-filter .bx-filter-param-btn-inline.color .bx-filter-param-label{
    margin: 0;
}
.bx-filter .bx-filter-param-btn-inline.color .bx-filter-param-label .bx-filter-param-btn{
    display: block;
    padding: 2px;
    border: 1px solid var(--color-grey);
    border-radius: 8px;
}
.bx-filter .bx-filter-param-btn-inline.color .bx-filter-param-label.bx-active .bx-filter-param-btn{
    border-color: var(--color-violet);
    background: var(--color-violet);
}
.bx-filter .bx-filter-param-btn-inline.color .bx-filter-param-label .bx-filter-param-btn .bx-filter-btn-color-icon{
    background-position: center;
    background-size: cover;
    display: block;
    width: 25px;
    height: 25px;
    border-radius: 6px;
    cursor: pointer;
}

/*************************** Сортировка ***************************/
.sort-panel{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin: 0px 1%;
    border-bottom: 1px solid var(--color-grey);
    padding-bottom: 10px;
    margin-bottom: 20px;
    padding-top: 0px;
}
.sort-panel .section-list{
    font-size: 11px;
    line-height: 12px;
    flex: 100%;
}
.sort-panel .section-list a,
.sort-panel .section-list span{
    display: inline-block;
    margin-top: 5px;
    border: 1px solid var(--color-grey);
    padding: 3px 10px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--color-text);
}
.sort-panel .section-list a:hover,
.sort-panel .section-list span{
    border-color: var(--color-violet);
    color: var(--color-violet);
}
.sort-panel .section-list span{
    cursor: default;
}

.sort-panel .section-list .sep{
    margin: 0;
    padding: 0;
    border: none;
}

.sort-panel .section-list .sep:before {
    content: '';
    background-image: url(/media/breadcrumb-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: inline-block;
    width: 10px;
    height: 6px;
    margin: 0px 3px;
}

.sort-panel .sort{
    position: relative;
    flex: 1 0 170px;
}
.sort-panel .sort select{
    position: relative;
    border: none;
    -webkit-appearance: none;
    appearance: none;
    padding-right: 20px;
    z-index: 2;
    cursor: pointer;
    background: transparent;
    width: 100%;
}
.sort-panel .sort:after{
    content: '';
    position: absolute;
    top: 3px;
    right: 0;
    display: block;
    background-image: url(/media/filter.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 14px;
    height: 14px;
    margin-left: 10px;
    transform: rotate(0deg);
    transition-duration: .4s;
    transition-property: transform;
    z-index: 1;
}

.sort-panel .bx-filter{
    display: none;
}

/*************************** Деталка товара ***************************/
.element .top{
    display: flex;
}
.element .top .photos{
    width: 50%;
    padding-right: 20px;
    height: 400px;
}
.element .top .info{
    width: 50%;
}
.element .top .info h1,
.element .top .info .h1{
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    text-align: left;
    margin-top: 0;
    margin-bottom: 5px;
}
.element .bx-rating{
    text-align: left;
}
.element .bx-rating .bx-rating-icon-container{
    margin-right: 0px;
}
.element .bx-rating .bx-rating-icon{
    fill: var(--color-violet);
}
.element .top .info .info-list{
    margin: 20px 0;
    font-size: 10px;
    line-height: 12px;
    color: #aaa;
}
.element .top .info .info-list > div{
    display: flex;
    margin-bottom: 10px;
}
.element .top .info .info-list > div > div:first-child{
    width: 200px;
}
.element .top .info .info-list > div > div:last-child{

}
.element .top .info .info-list font,
.element .top .info .info-list b{
    color: var(--color-text);
}
.element .top .info .variants{
    display: flex;
    margin: 20px 0;
}
.element .top .info .variants:empty{
    display: none;
}
.element .top .info .variants .variant{
    width: 200px;
    padding-right: 20px;
}
.element .top .info .variants .variant .title{
    font-weight: 600;
    font-size: 10px;
    line-height: 12px;
    margin-bottom: 10px;
}
.element .top .info .variants .variant .list{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -5px;
}
.element .top .info .variants .variant label{
    margin-right: 5px;
    margin-bottom: 5px;
    cursor: pointer;
}
.element .top .info .variants .variant label.none{
    position: relative;
}
.element .top .info .variants .variant label.none > *{
    opacity: .5;
}
.element .top .info .variants .variant label.none:before,
.element .top .info .variants .variant label.none:after{
    content: '';
    display: block;
    position: absolute;
    width: 12px;
    height: 2px;
    background: #000;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(45deg);
}
.element .top .info .variants .variant label.none:after{
    transform: translate(-50%,-50%) rotate(-45deg);
}
.element .top .info .variants .variant .list span{
    display: flex;
    min-width: 25px;
    min-height: 25px;
    border: 1px solid var(--color-grey);
    border-radius: 8px;
    font-size: 10px;
    line-height: 12px;
    padding: 2px 7px;
    align-items: center;
    justify-content: center;
}
.element .top .info .variants .variant .list input{
    display: none;
}
.element .top .info .variants .variant .list input:checked + span{
    border-color: var(--color-violet);
    color: var(--color-violet);
}
.element .top .info .variants .variant.color .list span{
    border: 1px solid #fff;
}
.element .top .info .variants .variant.color .list input:checked + span{
    border-color: #fff;
    box-shadow: 0px 0px 0px 1px var(--color-violet)
}
.element .top .info .variants .variant.pholstery{
    width: 100%;
}
.element .top .info .variants .variant.pholstery img{
    display: block;
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 20px;
    cursor: pointer;
}
.element .top .info .variants .variant.pholstery .list > div:first-child{
    width: 200px;
}
.element .top .info .variants .variant.pholstery .list > div{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.element .top .info .variants .variant.pholstery .name{
    font-size: 16px;
}
.element .offer_pay{
    display: flex;
    align-items: center;
    margin: 20px 0;
    flex-wrap: wrap;
}
.element .offer_pay .price .base_price{
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    text-decoration-line: line-through;
    color: var(--color-grey-type3);
}
.element .offer_pay .price .base_price span{
    color: var(--color-grey-type3);
}
.element .offer_pay .price{
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    margin-left: 10px;
    white-space: nowrap;
    margin-left: 0px;
    margin-right: 10px;
    width: 170px;
}
.element .offer_pay .price span{
    color: var(--color-violet);
}
.element .offer_pay .quantity{
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    margin: 0 10px;
}
.element .offer_pay .quantity .minus,
.element .offer_pay .quantity .plus{
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.element .offer_pay .quantity .value{
    background: transparent;
    color: var(--color-text);
    border: none;
    width: 35px;
    padding: 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
}
.element .offer_pay .buttons{
    margin-left: 10px;
}
.element .offer_pay .buttons:first-child{
    margin-left: 0;
}
.element .top .photos .slider{
    display: flex;
    height: 100%;
}
.element .top .photos .slider .list{
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.element .top .photos .slider .list::-webkit-scrollbar {
    width: 5px;
}
.element .top .photos .slider .list::-webkit-scrollbar-thumb {
    background-color: #d7d9d7;
    border-radius: 5px;
}

.element .top .photos .slider .list img{
    width: 90px;
    height: 70px;
    object-fit: contain;
    padding: 10px;
    border-radius: 9px;
    border: 1px solid #fff;
    margin-bottom: 5px;
    cursor: pointer;
}
.element .top .photos .slider .list img.active{
    border-color: var(--color-violet);
}
.element .top .photos .slider .big{
    flex: 1 0;
    overflow: hidden;
    position: relative;
    margin-left: 10px;
}
.element .top .photos .slider .big img.img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.element .top .photos .slider .big img.zoom{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    opacity: 0;
    transition-duration: .4s;
    transition-property: opacity;
    max-width: initial;
    cursor: zoom-in;
}
.element .top .photos .slider .big:hover img.zoom{
    opacity: 1;
}
.element .top .photos .slider .big .labels{
    color: var(--color-violet);
    font-weight: 600;
    font-size: 10px;
    line-height: 12px;
    flex-wrap: wrap;
    align-items: center;
    width: 300px;
    position: relative;
    z-index: 2;
}
.element .top .photos .slider .big .labels span{
    display: inline-block;
    border: 1px solid var(--color-violet);
    padding: 4px 6px 3px 6px;
    border-radius: 5px;
    margin-right: 5px;
    margin-bottom: 5px;
    background: #fff;
}
.element .top .photos .slider .big .labels span.percent{
    background: var(--color-violet);
    color: #fff;
}
.element .top .photos .slider .big .affiliate-line{
    position: absolute;
    top: 3px;
    right: 3px;
    text-align: right;
    font-size: 10px;
    line-height: 12px;
    z-index: 20;
    color: var(--color-text);
    text-decoration: none;
}
.element .top .photos .slider .big .affiliate-line span{
    display: block;
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    color: var(--color-violet);
}
.element .tabs .tab-btn{
    display: flex;
    justify-content: center;
    margin: 35px 0;
}
.element .tabs .tab-btn a{
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: rgba(51, 51, 51, 0.56);
    padding: 10px 35px;
    border-bottom: 2px solid #D7D9D7;
    text-decoration: none;
}
.element .tabs .tab-btn a.active{
    color: var(--color-violet);
    border-color: var(--color-violet);
}
.element .tabs .tab-list > div{
    display: none;
}
.element .tabs .tab-list > div.active{
    display: block;
}
.element .tabs .tab-list .properties{
    font-size: 10px;
    line-height: 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
}
.element .tabs .tab-list .properties > div{
    width: 50%;
    padding: 3px 25px;
}
.element .tabs .tab-list .properties > div > div{
    border-bottom: 1px solid var(--color-grey);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 3px;
}
.element .tabs .tab-list .properties > div > div b{
    padding-right: 20px;
}
.element .products.slider{
    margin: 100px auto;
}
.element .detail_text{
    padding: 3px 25px;
}
/*************************** Выбор обивка ***************************/
.upholstery_select{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1000;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition-duration: .4s;
    transition-property: opacity, visibility;
}
.upholstery_select.open{
    opacity: 1;
    visibility: visible;
}
.upholstery_select .close{
    position: absolute;
    top: 22px;
    right: 55px;
}
.upholstery_select .close img{
    width: 35px;
    height: 35px;
    cursor: pointer;
}
.upholstery_select .body{
    display: flex;
    height: 100%;
}
.upholstery_select .body .selected{
    width: 500px;
    overflow: auto;
}
.upholstery_select .body .selected .title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px
}
.upholstery_select .body .selected .name{
    font-size: 23px;
    line-height: 16px;
}
.upholstery_select .body .selected .name span{
    font-size: 13px;
    font-weight: 300;
    color: rgba(51, 51, 51, 0.7);
    white-space: nowrap;
}
.upholstery_select .body .selected img{
    display: block;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
    cursor: zoom-in;
}
.upholstery_select .body .selected button{
    position: relative;
    top: inherit;
    right: inherit;
}
.upholstery_select .body .list{
    flex: 1 0;
    padding-left: 50px;
    overflow: auto;
}
.upholstery_select .body .list h2{
    text-align: center;
    color: var(--color-violet);
}
.upholstery_select .body .list .upholstery_items{
    margin-bottom: 50px;
}
.upholstery_select .body .list .upholstery_items .title{
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    border-bottom: 1px solid var(--color-grey);
    margin-bottom: 10px;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.upholstery_select .body .list .upholstery_items .title span{
    font-weight: 300;
    color: rgba(51, 51, 51, 0.7);
}
.upholstery_select .price .base_price{
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    text-decoration-line: line-through;
    color: var(--color-grey-type3);
}
.upholstery_select .price .base_price span{
    color: var(--color-grey-type3);
    margin-right: 10px;
}
.upholstery_select .price{
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    margin-left: 10px;
    white-space: nowrap;
    margin-left: 0px;
    margin-right: 10px;
    display: flex;
    align-items: center;
}
.upholstery_select .price span,
.upholstery_select .body .list .upholstery_items .title .price span{
    color: var(--color-violet);
}
.upholstery_select .body .list .upholstery_items .items{
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
}
.upholstery_select .body .list .upholstery_items .items span{
    font-size: 0px;
    width: 75px;
    height: 75px;
    border-radius: 8px;
    margin-right: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    border: 1px solid #fff;
}
.upholstery_select .body .list .upholstery_items .items span.selected{
    box-shadow: 0px 0px 0px 3px var(--color-violet);
}
.upholstery_select .body .list .upholstery_items .items font{
    display: flex;
    width: 30px;
    height: 30px;
    cursor: pointer;
    position: relative;
    align-items: center;
    align-content: center;
    justify-content: center;
    background: #fff;
    margin-left: -30px;
    top: 5px;
    right: 15px;
    border-radius: 4px;
    opacity: .4;
    transition-duration: .4s;
    transition-property: opacity;
}
.upholstery_select .body .list .upholstery_items .items font:hover{
    opacity: 1;
}
.upholstery_select .body .list .upholstery_items .items font:before{
    content: '';
    display: block;
    background-image: url(/media/search.svg);
    width: 12px;
    height: 12px;
}

/*************************** fancybox ***************************/
.fancybox__container button::after{
    display: none;
}
.fancybox__container .fancybox__thumb{
    background-size: contain;
    background-color: #fff;
}
.fancybox__container .fancybox__thumbs .carousel__slide .fancybox__thumb::after{
    border-color: var(--color-violet);
}

/*************************** Отзывы ***************************/
.bx-catalog-tab-list{
    display: none;
}

/*************************** Оформление заказа ***************************/
.order .basket{
    width: 50%;
}
.order h2{
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    text-transform: inherit;
    margin-bottom: 20px;
}
.order .basket .list .item{
    display: flex;
    border-bottom: 1px solid var(--color-grey);
    margin-bottom: 18px;
    padding-bottom: 18px;
    position: relative;
}
.order .basket .list .item .remove{
    position: absolute;
    top: 0;
    right: 15px;
    cursor: pointer;
}
.order .basket .list .item .remove img{
    width: 20px;
    height: 20px;
}
.order .basket .list .item > div{
    flex: 1 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.order .basket .list .item .img{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.order .basket .list .item .img img{
    width: 120px;
    height: 70px;
    object-fit: contain;
}
.order .basket .list .item .img .labels{
    color: var(--color-violet);
    font-weight: 600;
    font-size: 10px;
    line-height: 12px;
    flex-wrap: wrap;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
}
.order .basket .list .item .img .labels span{
    display: inline-block;
    border: 1px solid var(--color-violet);
    padding: 4px 6px 3px 6px;
    border-radius: 5px;
    margin-right: 5px;
    margin-bottom: 5px;
    background: #fff;
}
.order .basket .list .item .img .labels span.percent{
    background: var(--color-violet);
    color: #fff;
}
.order .basket .list .item .img .labels span.percent:empty{
    display: none;
}
.order .basket .list .item .name{
    display: inline-block;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    color: var(--color-text);
    margin-bottom: 10px;
}
.order .basket .list .item .info{
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
.order .basket .list .item .info .props{
    font-size: 12px;
    line-height: 15px;
    color: var(--color-grey-type3);
    width: 100%;
    padding-right: 20px;
}
.order .basket .list .item .info .props b{
    font-weight: 500;
    color: var(--color-text);
}
.order .basket .list .item .info .price .base_price{
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    text-decoration-line: line-through;
    color: var(--color-grey-type3);
}
.order .basket .list .item .info .price .base_price span{
    color: var(--color-grey-type3);
}
.order .basket .list .item .info .price{
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    white-space: nowrap;
    margin-left: 0px;
    margin-right: 10px;
    width: 210px;
    padding-right: 20px;
}
.order .basket .list .item .info .price span{
    color: var(--color-violet);
}
.order .basket .list .item .info .quantity{
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    margin: 0 10px;
}
.order .basket .list .item .info .quantity .minus,
.order .basket .list .item .info .quantity .plus{
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.order .basket .list .item .info .quantity .value{
    background: transparent;
    color: var(--color-text);
    border: none;
    width: 35px;
    padding: 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
}
.order .fields{
    width: 50%;
}
.order .fields p{
    color: var(--color-grey-type3);
}
.order .fields label{
    width: 100%;
    margin-bottom: 15px;
}
.order .fields .row label{
    width: 50%;
}
.order .fields label span{
    display: block;
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    margin-bottom: 5px;
}
.order .fields label span b{
    color: red;
}
.order .fields label input,
.order .fields label textarea{
    width: 100%;
}
.order .basket .coupon{
    margin-bottom: 20px;
    border-top: 1px solid var(--color-grey);
    margin-top: 20px;
    padding-top: 20px;
}
.order .basket .coupon .add{
    display: flex;
}
.order .basket .coupon .add label{
    display: flex;
    align-items: center;
    width: 100%;
}
.order .basket .coupon .add input{
    width: 100%;
    margin-right: 20px;
}
.order .basket .coupon .add button{
    margin: 0;
    min-width: 200px;
}
.order .basket .coupon .list{
    margin-top: 10px;
    color: red;
}
.order .basket .coupon .list .active{
    color: green;
}
.order .basket .line{
    font-size: 18px;
    line-height: 22px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.order .basket .line.summ{
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
}
.order .basket .line.total{
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
}
.order .basket .line span{
    color: var(--color-violet);
}
.order .basket .agreement{
    text-align: justify;
}
.order .basket button{
    display: block;
    min-width: 300px;
    margin: 20px auto;
}
.order_send .row > *{
    width: 50%;
}
.order_send .list{
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 50px;
}
.order_send .list > div{
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.order_send .list > div b{
    color: var(--color-violet);
}
.order_send .list > div b small{
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: var(--color-text);
}
.order_send .buttons{
    display: flex;
    justify-content: space-between;
}

/*************************** Окно добавления в корзину ***************************/
#window  .wBasket{
    width: 600px;
}
#window .window.wBasket .body .offer .title{
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    text-transform: inherit;
    color: var(--color-text);
    text-align: left;
}
.wBasket .buttons{
    display: flex;
    justify-content: space-between;
}
.wBasket .offer{
    display: flex;
    align-items: center;
    margin: 40px auto;
}
.wBasket .info{
    display: flex;
    align-items: center;
}
.wBasket img{
    width: 120px;
    height: 100px;
    object-fit: contain;
    margin-right: 10px;
}
.wBasket .info .props{
    font-size: 12px;
    line-height: 15px;
    color: var(--color-grey-type3);
    width: 100%;
    padding-right: 20px;
}
.wBasket .info .props b{
    font-weight: 500;
    color: var(--color-text);
}
.wBasket .info .price .base_price{
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    text-decoration-line: line-through;
    color: var(--color-grey-type3);
}
.wBasket .info .price .base_price span{
    color: var(--color-grey-type3);
}
.wBasket .info .price{
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    white-space: nowrap;
    margin-left: 0px;
    margin-right: 10px;
    width: 210px;
    padding-right: 20px;
}
.wBasket .info .price span{
    color: var(--color-violet);
}

/*************************** Авторизация ***************************/
.authform{
    width: 370px;
    margin: 0 auto;
}
.authform .title{
    text-align: center;
    margin-bottom: 25px;
}
.authform .title svg{
    width: 40px;
    height: 40px;
    display: block;
    margin: 0 auto 5px auto;
}
.authform .title h3{
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
}
.authform .authform-formgroup-container{
    margin-bottom: 25px;
}
.authform .authform-formgroup-container .authform-label-container{
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    margin-bottom: 5px;
}
.authform .authform-formgroup-container input{
    width: 100%;
}
.authform .authform-formgroup-container button{
    display: block;
    width: 260px;
    margin: 0 auto;
}
.authform .authform-formgroup-container p{
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    color: var(--color-grey-type3);
}
.authform .authform-formgroup-container p.authform-note-container{
    margin-top: 5px;
}
.authform .authform-formgroup-container .authform-link-container{
    display: flex;
    justify-content: space-between;
}
.authform .authform-formgroup-container .captcha img{
    max-width: 100%;
    margin: 10px auto;
    display: block;
}

/*************************** Личный кабинет ***************************/
.user h2{
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 30px;
}
.user .name{
    font-size: 10px;
    line-height: 12px;
    margin-bottom: 40px;
}
.user .name b{
    display: block;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
}
.user .content{
    display: flex;
}
.user .menu{
    width: 300px;
    margin-right: 20px;
}
.user .menu ul{
    margin: 0;
    padding: 0;
}
.user .menu ul li:before{
    display: none;
}
.user .menu ul li{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.user .menu ul li a{
    color: var(--color-text);
    text-decoration: none;
}
.user .menu svg{
    display: block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.user .menu ul li:hover svg.fill path,
.user .menu ul li.active svg.fill path{
    fill: var(--color-violet);
}
.user .menu ul li:hover svg.stroke path,
.user .menu ul li.active svg.stroke path{
    stroke: var(--color-violet);
}
.user .menu ul li:hover a,
.user .menu ul li.active a{
    color: var(--color-violet);
}
.user .page{
    flex: 1 0;
}
.user .list{
    font-size: 10px;
    line-height: 12px;
    margin-bottom: 30px;
}
.user .list div{
    display: flex;
    margin-bottom: 10px;
}
.user .list div span{
    width: 150px;
    margin-right: 10px;
}
.user .list div b{
    flex: 1 0;
}
.user .row > *{
    flex: 1 0;
}
.user form{
    width: 500px;
}
.user label{
    margin-bottom: 20px;
    width: 100%;
}
.user label span{
    display: block;
}
.user label span b{
    color: red;
}
.user label input,
.user label textarea{
    width: 100%;
}
.user .coupon_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}
.user .coupon_list > div{
    width: 310px;
}
.user .coupon_list .title{
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 5px;
}
.user .coupon_list .notes{
    display: flex;
    align-items: flex-end;
}
.user .coupon_list .notes p{
    font-size: 10px;
    line-height: 12px;
    margin-top: 5px;
    margin-bottom: 10px;
    margin-right: 20px;
}
.user .coupon_list .notes .value{
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    white-space: nowrap;
    margin-top: 5px;
    margin-bottom: 10px;
}
.user .coupon_list .coupon{
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}
.user .coupon_list .coupon input{
    width: 100%;
    cursor: copy;
}
.user .coupon_list .coupon img{
    position: absolute;
    right: 10px;
    top: 50%;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    cursor: copy;
}
.user .order_list > div{
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--color-grey);
}
.user .order_list > div:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.user .order_list .head .title{
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 10px;
}
.user .order_list .head .title small{
    font-weight: 400;
}
.user .order_list .head .title b{
    color: var(--color-violet);
}
.user .order_list .head .info{
    display: flex;
    flex-wrap: wrap;
}
.user .order_list .head .info > div{
    display: flex;
    justify-content: space-between;
    width: 220px;
    margin: 5px 0px;
    margin-right: 100px;
}
.user .order_list .basket_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.user .order_list details{
    margin-top: 20px;
}
.user .order_list .offer{
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
    text-decoration: none;
    color: var(--color-text);
}
.user .order_list .offer .title{
    font-size: 14px;
    font-weight: 600;
}
.user .order_list .offer .info{
    display: flex;
    align-items: center;
}
.user .order_list .offer img{
    width: 120px;
    height: 100px;
    object-fit: contain;
    margin-right: 10px;
}
.user .order_list .offer .props{
    font-size: 12px;
    line-height: 15px;
    color: var(--color-grey-type3);
    width: 100%;
    padding-right: 20px;
}
.user .order_list .offer .props b{
    font-weight: 500;
    color: var(--color-text);
}
.user .order_list .offer .price .base_price{
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    text-decoration-line: line-through;
    color: var(--color-grey-type3);
}
.user .order_list .offer .price .base_price span{
    color: var(--color-grey-type3);
}
.user .order_list .offer .price{
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    white-space: nowrap;
    margin-left: 0px;
    margin-right: 10px;
    width: 210px;
    text-align: right;
}
.user .order_list .offer .price span{
    color: var(--color-violet);
}
.section-list-collection{
    font-size: 11px;
    line-height: 12px;
}
.section-list-collection a{
    display: inline-block;
    margin-top: 5px;
    border: 1px solid var(--color-grey);
    padding: 3px 10px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--color-text);
}
.section-list-collection a.act,
.section-list-collection a:hover{
    border-color: var(--color-violet);
    color: var(--color-violet);
}
.section-list-collection span{
    cursor: default;
}
.section-list-collection-items{
    margin-top: 50px;
}
.section-list-collection-items .other{
    display: block;
    width: 265px;
    margin: 20px auto;
    border: 2px solid #8D8BD9;
    border-radius: 12px;
    font-style: normal;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    color: #8D8BD9;
    padding: 10px;
    text-decoration: none;
}
.section-list-collection-items .pagenavigation{ display: none; }

.tag-list{
    margin: 0px 1%;
    padding-bottom: 10px;
    margin-bottom: 20px;
    padding-top: 0px;
    margin-top: -15px;
}

.tag-list a{
    display: inline-block;
    margin-top: 5px;
    border: 1px solid var(--color-grey);
    padding: 3px 10px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--color-text);
    font-size: 11px;
    line-height: 12px;
}
.tag-list a:hover, .tag-list a.active{
    border-color: var(--color-violet);
    color: var(--color-violet);
}

.bx-filter-parameters-box-container > div{
    max-height: 214px;
    overflow: hidden;
    overflow-y: auto;
}

/* Скроллбар */
.bx-filter-parameters-box-container > div::-webkit-scrollbar{
    width: 10px;
    height: 10px;
}
.bx-filter-parameters-box-container > div::-webkit-scrollbar:hover{
    /* background: var(--scrollbar-hover-background); */
}
.bx-filter-parameters-box-container > div::-webkit-scrollbar-thumb{
    background: var(--scrollbar-color);
    border-radius: 10px;
    background-clip: padding-box;
    /* border: 0em solid rgba(0, 0, 0, 0); */
}
.bx-filter-parameters-box-container > div::-webkit-scrollbar-thumb:hover{
    background: var(--scrollbar-hover-color);
    background-clip: padding-box;
    /* border: 0.2em solid rgba(0, 0, 0, 0); */
}
.bx-filter-parameters-box-container > div::-webkit-scrollbar-corner{
    background: transparent;
}

/* Кнопка телефоно для моб */
.mob-phone-but{
    display: none;
    height: 100%;
    align-items: center;
    padding-right: 15px;
    padding-left: 15px;
    border-right: 1px solid var(--color-grey);
}
.mob-phone-but img{
    width: 16px;
    height: 16px;
}

.seotext{ margin: 0px 1%; }

@media (max-width: 1399px){
    .order .fields { width: 40%; }
    .order .basket { width: 60%; }
    .user .coupon_list > div { width: 380px; }
    .user .order_list .head .info > div { width: 240px; margin-right: 20px; }
    header .menu nav a{ margin-right: 30px; }
}
@media (max-width: 1199px){
    header .menu{ padding: 0 15px; }
    header .menu nav a { margin-right: 15px; }
    footer .menu{ padding: 0 45px; padding-top: 67px; }
    .intro .col:first-child{ width: 320px; }
    .advantage .title { font-size: 18px; }
    .advantage .title span { font-size: 52px; }

    .products .product-item { width: 31.3%; }
    .products.slider .grid > .product-item:nth-child(5){ opacity: 0; z-index: 1; visibility: hidden; }
    .products.slider .grid > .product-item:first-child{ left: -100%; }
    .products.slider .grid > .product-item:nth-child(2){ left: 0; }
    .products.slider .grid > .product-item:nth-child(3){ left: 33%; }
    .products.slider .grid > .product-item:nth-child(4){ left: 66%; }
    .products.slider .grid > .product-item:nth-child(5){ left: 100%; }

    .affiliate button{ margin-top: 10px; }
    .catalog-block .product-item{ width: 48%; }

    .element .offer_pay .buttons{ width: 100%; margin-top: 10px; margin-left: 0; }
    /* .element .top .info .info-list > div > div:first-child{ width: 120px; } */
    /* .element .top .info .variants .variant { width: 120px; } */
    .element .offer_pay { margin-top: 20px; }
    .element .top .photos { height: 350px; }

    .upholstery_select .body h2 { font-size: 22px; }
    .upholstery_select .body .selected { width: 300px; }
    .upholstery_select .body .selected .title { flex-wrap: wrap; }
    .upholstery_select .body .selected .name { font-size: 20px; width: 100%; margin-bottom: 10px; }

    .order .fields { width: 100%; }
    .order .basket { width: 100%; }
    .user .coupon_list > div { width: 295px; }
    .user .order_list .head .info > div { width: 280px; }
}

@media (max-width: 991px){
    header .menu nav { display: none; }
    header .menu { justify-content: center; }
    header .menu .phone { text-align: center; }

    header .logo{ padding: 0 20px; width: 100%; justify-content: center; }
    header .mob-menu-but{ display: flex; }

    footer b { font-weight: normal; font-size: 10px; line-height: 12px; }
    footer .container { flex-wrap: wrap; }
    footer .container > div{ width: 100%; border: none; padding: 0px; }
    footer .container > div.logo { display: flex; justify-content: space-around; padding-top: 50px; }

    footer .logo img { width: 70px; height: 22px; }
    footer .logo .company { margin-top: 20px; margin-bottom: 38px; }
    footer .social { text-align: center; }
    footer .social .subscription input { margin: 0 auto; margin-top: 20px; }
    footer .menu { order: 1; }
    footer .menu nav{ display: none; }
    footer .social .social-list{ display: none; }
    footer .menu .copyright { margin-top: 20px; }

    footer .social-mob{ display: block; }

    .slider-index .nav-dots { bottom: 10px; }

    .breadcrumb{ display: none; }

    .intro { display: block; }
    .intro .col:first-child { width: 100%; }

    .advantage { display: block; }
    .advantage > div { width: 100%; }

    .partners { flex-wrap: wrap; }
    .partners div:first-child{ width: 100%; margin-bottom: 20px; }

    .affiliate { background-image: url(/media/affiliate-bg-m.jpg); color: #FFF; }
    .affiliate .container .row{ display: block; }
    .affiliate .col-4{ width: 100%; }
    .affiliate form { display: block; }
    .affiliate input { width: 220px; margin-right: 0; }
    .affiliate button{ display: block; width: 220px; }
    .affiliate .checkbox { width: 220px; }

    .products .product-item { width: 48%; }
    .products.slider .grid { transition-duration: .4s; transition-property: height; }
    .products.slider .grid > .product-item:nth-child(4),
    .products.slider .grid > .product-item:nth-child(5){ opacity: 0; z-index: 1; visibility: hidden; }
    .products.slider .grid > .product-item:first-child{ left: -100%; }
    .products.slider .grid > .product-item:nth-child(2){ left: 0; }
    .products.slider .grid > .product-item:nth-child(3){ left: 50%; }
    .products.slider .grid > .product-item:nth-child(4),
    .products.slider .grid > .product-item:nth-child(5){ left: 100%; }
    .products.slider .grid{ height: 350px; }
    .product-item { height: auto; }
    .product-item .panel,
    .product-item .panel:hover{ position: relative; height: auto; border: none; }
    .product-item .panel .list { display: flex; }
    .product-item .panel .basket .col:last-child { display: flex; }
    .product-item .panel .basket .col { justify-content: space-between; }
    .product-item .panel .price { width: 100%; margin-left: 0px; }
    .product-item .panel .list { font-size: 14px; line-height: 20px; }
    .product-item .panel .list.color img { width: 20px; height: 20px; }

    .mob-menu{ display: block; }

    .pagenavigation .button{ border: 2px solid #8D8BD9; }
    .pagenavigation .button span{ display: none; }

    .element .top{ flex-wrap: wrap; }
    .element .top .photos { height: 400px; width: 100%; padding: 0; margin-bottom: 20px; }
    .element .top .photos .slider .big img.zoom,
    .element .top .photos .slider .big img.zoom:hover { opacity: 0; }
    .element .top .info { width: 100%; }
    .element .top .info .info-list > div > div:first-child{ width: 200px; }
    .element .top .info .variants .variant { width: 200px; }
    .element .tabs .tab-list .properties > div { width: 100%; }

    .upholstery_select .body .list { padding-left: 15px; }

    .order_send .row > *{ width: 100%; }

    .user .menu { width: 195px; }
    .user form { width: 480px; }
    .user .coupon_list > div { width: 100%; }
    .user .order_list .head .info > div { width: 100%; margin-right: 0px; }
    .user .order_list .offer { display: block; width: 100%;; }
    .user .order_list .offer img { display: block; width: 100%; height: 200px; margin-bottom: 40px; }
    .user .order_list .offer .info .props { margin-bottom: 10px; padding: 0; }
    .user .order_list .offer .price{ margin: 0; padding: 0; width: 100%; }

}

@media (max-width: 767px){

    h1, .h1 { font-size: 26px; line-height: 33px; }

    header .container { height: 53px; }
    header .menu { display: none; }
    header .logo { border-right: none; }
    header .logo img { width: 95px; height: 32px; }
    header .icomMenu a.search /*, header .icomMenu a.user*/
    { display: none; }
    header .icomMenu { padding: 0 15px 0 20px; }

    h2 { font-size: 24px; line-height: 29px; }

    .slider-index .nav-dots { bottom: 10px; }

    .headerMargin { height: 54px; }

    .container.page { margin: 40px auto; }

    .intro { margin-top: 40px; margin-bottom: 40px; }

    .advantage { margin-top: 40px; margin-bottom: 40px; }

    .partners { margin-top: 40px; margin-bottom: 40px; }
    .partners div:first-child { font-size: 30px; }
    .partners img { width: 90px; }

    .contact_block { margin-top: 40px; margin-bottom: 40px; }
    .contact_block { display: block; }
    .contact_block .col:first-child { margin: 0 auto; }
    .contact_block #map { height: 500px; margin-top: 50px; }

    .products .product-item { width: 100%; }
    .products.slider h2 { padding-right: 110px; }
    .products.slider .left, .products.slider .right { top: -9px; }
    .products.slider .grid > .product-item:nth-child(3),
    .products.slider .grid > .product-item:nth-child(4),
    .products.slider .grid > .product-item:nth-child(5){ opacity: 0; z-index: 1; visibility: hidden; }
    .products.slider .grid > .product-item:first-child{ left: -100%; }
    .products.slider .grid > .product-item:nth-child(2){ left: 0; }
    .products.slider .grid > .product-item:nth-child(3),
    .products.slider .grid > .product-item:nth-child(4),
    .products.slider .grid > .product-item:nth-child(5){ left: 100%; }

    .element .top .info .variants .variant.pholstery .upholsterySet {
        font-size: 9px;
    }
    .element .top .info .variants .variant.pholstery .name {
        font-size: 13px;
    }
    .element .top .info .variants .variant.pholstery .list > div:first-child{
        width: calc( 50% + 10px );
    }

    .mob-menu{ top: 54px; height: calc(100% - 54px); }

    #window .window{ top: 0; left: 0; transform: none; width: 100%; border-radius: 0; height: 100%; overflow: auto; }

    .search-page form{ width: 300px; }

    .pagenavigation a, .pagenavigation span { display: none; }
    .pagenavigation .button { display: block; margin: 0px 10px; }
    .pagenavigation .button img { display: block; }

    .delivery, .intro p{ font-size: 14px; line-height: 14px; }

    .contacts .contact_block{ width: 100%; box-shadow: none; }
    .contacts #map { position: relative; height: 400px; }

    .requisites .row{ display: block; }
    .requisites p{ margin: 5px 0; }

    .catalog .catalog-block { display: block; }
    .catalog .catalog-block .filter { width: 100%; }
    .bx-filter .bx-filter-popup-result { display: inline-block; left: inherit; right: 0; }


    .sort-panel{ padding-top: 20px; flex-wrap: wrap; }
    .sort-panel .sort { margin-top: 20px; flex: inherit; }
    .sort-panel .section-list { width: 100%; }
    .sort-panel .bx-filter{ display: block; }
    .sort-panel .bx-filter .filter-title{ margin-bottom: 0; }

    .catalog .catalog-block .filter .bx-filter .filter-title{ display: none; }
    .catalog .catalog-block .filter .bx-filter.open .filter-title{ display: block; }

    .bx-filter .filter-title{ cursor: pointer; margin-bottom: 15px; }
    .bx-filter form{ display: none; margin-bottom: 50px; }
    .bx-filter.open form{ display: block; }

    .element .top .photos .slider .list img { width: 60px; height: 50px;  padding: 5px; }
    .element .top .photos { height: 300px; }
    .element .top .info .info-list > div > div:first-child { flex: 1 0 0%; }
    .element .top .info .info-list > div > div:last-child { flex: 1 0 0%; }
    .element .top .info .variants { flex-wrap: wrap; }
    .element .top .info .variants .variant { width: 100%; margin-bottom: 20px; }
    .element .top .info .variants .variant:last-child { margin-bottom: 0px; }
    .element .top .info .variants .variant.color,
    .element .top .info .variants .variant.material{ width: 50%; }
    .element .offer_pay > * { flex: 1; }
    .element .offer_pay .quantity { justify-content: flex-start; margin: 0; margin-left: -25px; }
    .catalog .add2basket { width: calc( 50% - 20px ); }
    .element .tabs .tab-btn { flex-direction: column; justify-content: center; }
    .element .tabs .tab-list .properties { font-size: 12px; line-height: 16px; }
    .element .tabs .tab-list .properties > div > div{ display: block; }
    .element .tabs .tab-list .properties > div > div b { display: block; padding-right: 0; }

    .upholstery_select .close { top: 10px; right: 10px; }
    .upholstery_select .body { flex-wrap: wrap; overflow: auto; }
    .upholstery_select .body .selected { width: 100%; }
    .upholstery_select .body .list { padding: 0px 3px; margin-top: 30px; width: 100%; height: auto; flex: auto; overflow: initial; }

    .order .row { flex-wrap: wrap; }
    .order .fields .row label { width: 100%; }
    .order .basket .list .item { flex-wrap: wrap; }
    .order .basket .list .item .img { width: 100%; }
    .order .basket .list .item .img img { width: 100%; height: 200px; }
    .order .basket .list .item .info { align-items: center; flex-wrap: wrap; justify-content: space-between; }
    .order .basket .list .item .info .props { padding-right: 0; width: 100%; margin-bottom: 10px; }
    .order .basket .list .item .info .price { width: 160px; }
    .order .basket .coupon .add input { width: 100%; margin-right: 0; margin-bottom: 10px; }
    .order .basket .coupon .add button { width: 100%; }
    .order .basket .line { font-size: 14px; line-height: 14px; }
    .order .basket .line.summ { font-size: 16px; line-height: 16px; }
    .order .basket .line.total { font-size: 18px; line-height: 18px; }
    .order .basket .coupon .list { font-size: 11px; }
    .order .basket .coupon .add label { display: block; }

    .order_send .list > div,
    .order_send .buttons { flex-wrap: wrap; }
    .order_send .list > div span { display: block; width: 100%; }
    .order_send .buttons button { width: 100%; margin-bottom: 10px; }
    .order_send .list { margin-bottom: 20px; text-align: center; }
    .order_send .list > div { margin-bottom: 20px; }
    .order_send .list > div b { display: block; width: 100%; }
    .order_send p { text-align: justify; }

    .wBasket .offer { display: block; width: 220px; }
    .wBasket img { display: block; width: 100%; height: 200px; margin-bottom: 40px; }
    .wBasket .info { display: block; }
    .wBasket .info .props { margin-bottom: 10px; }
    .wBasket .buttons { display: block; }

    .authform { width: 300px; }

    .user h2 { font-size: 16px; }
    .user form { width: 100%; }
    .user button { width: 100%; }
    .user .name { margin-bottom: 20px; }
    .user .content { display: block; }
    .user .menu { margin-bottom: 40px; }
    .user .menu, .user .page { width: 100%; }
    .user .row { display: block; }
    .user .list div { display: block; }
    .user .list div span { display: block; width: 100%; margin-right: 0; }

    .mob-phone-but{ display: flex; }
    .seotext { margin: 0px 3%; }

    .sort-panel .section-list{ white-space: nowrap; overflow: auto; }
    .sort-panel .section-list a, .sort-panel .section-list span{ margin-top: 5px; }
    .sort-panel .section-list::-webkit-scrollbar { width: 13px; height: 13px; }
    .sort-panel .section-list::-webkit-scrollbar-track { background: white; }
    .sort-panel .section-list::-webkit-scrollbar-thumb { background-color: #8d8bd9; border: 5px solid white; border-radius: 20px; }

    .tag-list{ white-space: nowrap; overflow: auto; padding-bottom: 0; }
    .tag-list a{ margin-top: 0px; }
    .tag-list::-webkit-scrollbar { width: 13px; height: 13px; }
    .tag-list::-webkit-scrollbar-track { background: white; }
    .tag-list::-webkit-scrollbar-thumb { background-color: #8d8bd9; border: 5px solid white; border-radius: 20px; }
}

@media (max-width: 374px){
    .mob-phone-but{ display: none; }
}

/* End */
/* /bitrix/templates/sofisto/template_styles.css?169142412782702 */
