@charset "utf-8";
@font-face {
    font-family: 'Gilroy';
    src:url('../fonts/Gilroy-Thin.woff');
        font-weight: 100;
        font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src:url('../fonts/Gilroy-ThinItalic.woff');
        font-weight: 100;
        font-style: italic;
}
@font-face {
    font-family: 'Gilroy';
    src:url('../fonts/Gilroy-Light.woff');
        font-weight: 300;
        font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src:url('../fonts/Gilroy-LightItalic.woff');
        font-weight: 300;
        font-style: italic;
}
@font-face {
    font-family: 'Gilroy';
    src:url('../fonts/Gilroy-Regular.woff');
        font-weight: normal;
        font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src:url('../fonts/Gilroy-RegularItalic.woff');
        font-weight: normal;
        font-style: italic;
}
@font-face {
    font-family: 'Gilroy';
    src:url('../fonts/Gilroy-Medium.woff');
        font-weight: 500;
        font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src:url('../fonts/Gilroy-MediumItalic.woff');
        font-weight: 500;
        font-style: italic;
}
@font-face {
    font-family: 'Gilroy';
    src:url('../fonts/Gilroy-Semibold.woff');
        font-weight: 600;
        font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src:url('../fonts/Gilroy-SemiBoldItalic.woff');
        font-weight: 600;
        font-style: italic;
}
@font-face {
    font-family: 'Gilroy';
    src:url('../fonts/Gilroy-Bold.woff');
        font-weight: bold;
        font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src:url('../fonts/Gilroy-BoldItalic.woff');
        font-weight: bold;
        font-style: italic;
}
@font-face {
    font-family: 'Gilroy';
    src:url('../fonts/Gilroy-Extrabold.woff2');
        font-weight: 800;
        font-style: normal;
}
body{
    font-family: 'Gilroy', sans-serif;
    color: #000;
    font-size: 16px;
    line-height: 1.6;
}
h1,
.title-h1 {
    font-size: 26px;
    margin-bottom: 35px;
    line-height: 1.2;
    font-weight: 500;
}

h2,
.title-h2 {
    font-size: 26px;
    margin-bottom: 35px;
    line-height: 1.2;
    font-weight: 500;
}

h3,
.title-h3 {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 500;
}

h4,
.title-h4 {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 20px;
}
h5{
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 20px;
}
h6{
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 20px;
}

@media(min-width: 992px){
    h2.big{
        font-size: 36px;
    }
}


a {
    color: #2E731B;
}

a:hover {
    color: #333;
}

a.invert {
    color: #333;
}

a.invert:hover {
    color: #2E731B;
}

.text-decoration{
    text-decoration: underline;
}
.text-decoration:hover{
    text-decoration: none;
}
.flex{
        display: flex;
    flex-wrap: wrap;
}
.green-min-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 22px;
    text-decoration: none;
    cursor: pointer;
    padding: 0 20px;
    border: none;
    border-radius: 12px;
    font-weight: 400;
    font-size: 12px;
    color: #FFFFFF;
    background: #2E731B;
    transition: all 300ms ease-out;
}
.green-min-btn:hover {
    filter: brightness(115%);
    color: #fff;
}

.btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    background: #242624;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    border: none;
    text-align: center;
    padding: 0 25px;
    font-size: 18px;
    font-weight: 500;
    transition: all 300ms ease-out;
    border-radius: 2px;
}
.btn:hover{
    background: #2E731B;
    color: #fff;
}

/* Header */
.header{
    padding: 15px 0;
    background: url(../images/header-bg-gradient.png), url(../images/header-bg.png) 0 0 repeat-x;
}
.header-inner{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.header-logo{
    width: 208px;
}
.header-body{
    width: calc(100% - 208px);
    padding-left: 80px;
}
.header-top{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}
.header-top-nav ul{
    display: flex;
    align-items: center;
}
.header-top-nav li{
    margin-right: 20px;
}
.header-top-nav a{
    color: #414141;
    text-decoration: underline;
    font-weight: 500;
    font-size: 13px;
}
.header-top-nav a:hover{
    text-decoration: none;
}
.header-top-contacts{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}
.header-phone{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-right: 20px;
}
.header-phone svg{
    width: 11px;
    margin-right: 4px;
}
.header-phone a{
    color: #000;
    font-weight: 700;
    font-size: 18px;
}
.header-phone a:hover{
    color: #2E731B;
}
.header-mail{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-right: 20px;
}
.header-mail svg{
    width: 9px;
    margin-right: 4px;
}
.header-mail a{
    color: #000000;
    font-weight: 500;
    font-size: 14px;
}
.header-mail a:hover{
    color: #2E731B;
}

.header-middle{
    display: flex;
    justify-content: flex-end;
    padding-top: 18px;
}
.heaser-messengers{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: 20px;
}
.heaser-messengers a{
    margin-left: 20px;
}


.header-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 11px;
    padding-bottom: 5px;
}
.top-nav > ul{
    display: flex;
    align-items: center;
}
.top-nav > ul > li{
    margin-right: 0px;
}
.top-nav > ul > li > a{
    color: #414141;
    text-decoration: underline;
    display: inline-flex;
    height: 32px;
    align-items: center;
    padding: 0 10px;
    border-radius: 6px;
}
.top-nav > ul > li:hover > a{
    text-decoration: none;
}
.top-nav > ul > li.active > a{
    color: #fff;
    background: #2E731B;
    text-decoration: none;
}
.top-nav a[data-tag="action"]{
    color: #FF1010;
}








.top-nav li{
    position: relative;
}

.top-nav a{
    color: #000;
    font-size: 17px;
}
.top-nav > ul  li:hover > a,
.top-nav > ul  li.active > a{
    color: #2E731B;
}
.top-nav > ul > li.active > a {
    color: #fff !important;
}
.top-nav > ul > li > ul{
    position: absolute;
    top: calc(100% + 10px);
    left: 24px;
    width: 320px;
    background: rgba(255,255,255);
    border-radius: 0 0 12px 12px;
    padding: 12px 0;
    display: none;
    z-index: 500;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
}
.top-nav > ul > li > ul:before{
    content: "";
    height: 10px;
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
}
.top-nav ul li:hover > ul{
    display: block;
}
.top-nav ul ul a{
    padding: 6px 12px;
    display: block;
}
.top-nav ul ul .active > a,
.top-nav ul ul li:hover > a{
    background: rgba(255,255,255,.2);
}
.top-nav > ul > li.down > a:after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    transform: rotate(40deg) skew(-10deg);
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    transition: all 200ms ease-out;
    vertical-align: middle;
    margin: -5px 0 0 10px;
}
.top-nav > ul > li.down.active > a:after,
.top-nav > ul > li.down:hover > a:after{
    border-bottom-color: #2E731B;
    border-right-color: #2E731B;
}







.header-shop-panel {
    display: flex;
    align-items: center;
    background: #2E731B;
    height: 32px;
    border-radius: 10px;
    color: #fff;
    padding: 0 15px;
}
.header-favorites{
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 18px;
    color: #000000;
}
.header-favorites svg{
    width: 15px;
    position: relative;
}
.header-favorites path{
    transition: all ease-out 300ms;
    fill: #fff;
}
.header-favorites .favorites_count{
    top: -7px;
    right: -10px;
    background: #0E1F43;
    color: #fff;
    position: absolute;
    font-size: 9px;
    font-weight: 300;
    line-height: 11px;
    text-align: center;
    padding: 2px 5px;
    border-radius: 10px;
    min-width: 15px;
}
.header-cart{
    display: flex;
    height: 15px;
}
.header-cart svg{
    height: 15px;
}

.header-cart-inner{
    display: flex;
    font-size: 12px;
    font-weight: 300;
    color: #000;
    position: relative;
    height: 15px;
}
.header-cart .ms2_total_count{
    top: -7px;
    left: 10px;
    background: #0E1F43;
    color: #fff;
    position: absolute;
    font-size: 9px;
    line-height: 11px;
    text-align: center;
    padding: 2px 5px;
    border-radius: 10px;
    min-width: 15px;
}
.header-cart .empty{ 
    display: flex !important;
}
.header-cart .not_empty { 
    display: none !important; 
}
.header-shop-panel.full .header-cart .empty{ 
    display: none !important; 
}
.header-shop-panel.full .header-cart .not_empty{ 
    display: flex !important;
}
.header-cart > div{
    align-items: center;
}
.header-cart-summ{
    white-space: nowrap;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    margin-left: 20px;
}

@media(max-width: 1459px){
    .top-nav > ul > li{
        margin-right: 0px;
    }
    .header-body{
        padding-left: 50px;
    }
    .top-nav > ul > li{
        font-size: 15px;
    }
}
@media(max-width: 1299px){
    
    .top-nav > ul > li > a{
        padding: 0 8px;
    }
}
@media(max-width: 1199px){
    .header{
        padding: 62px 0 10px;
    }
    .header-bottom{
        padding: 10px 15px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 0 0 1px #eee;
        z-index: 500;
        height: 52px;
    }
    .top-nav,
    .header-top-nav{
        display: none;
    }
    .header-middle{
        padding-top: 10px;
    }
    .header-phone{
        margin-right: 0;
    }
    .header-mail{
        margin-right: 0;
        margin-left: 20px;
    }
    .header-callback{
        margin-left: 20px;
    }
}
@media(max-width: 499px){
    .header-logo{
        width: 104px;
    }
    .header-body {
        width: calc(100% - 104px);
        padding-left: 20px;
    }
}
@media(max-width: 399px){
    .header-mail{
        display: none;
    }
    .header-phone a{
        font-size: 16px;
    }
}
/* /. Header */

/* section */
.section{
    padding: 70px 0;
}
.section-title{
    font-weight: 500;
    font-size: 65px;
    line-height: 1.2;
    margin-bottom: 40px;
}
.base-template .content{
    font-weight: 500;
    font-size: 18px;
}
@media(max-width: 1499px){
    .section-title{
        font-size: 55px;
    }
}

@media(max-width: 1199px){
    .section-title{
        font-size: 45px;
    }
}

@media(max-width: 991px){
    .section{
        padding: 60px 0;
    }
    .section-title{
        font-size: 40px;
    }
    .base-template .content{
        font-size: 16px;
        font-weight: normal;
    }
}
@media(max-width: 767px){
    .section{
        padding: 50px 0;
    }
    .section-title{
        font-size: 35px;
    }
}
.pb0{
    padding-bottom: 0;
}
.pt0{
    padding-top: 0;
}
/* /. section */


/* Top slider */
.top-slider > div:not(:first-of-type){
    display: none;
}
/* /. Top slider */

/* features */
.features{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 1120px;
    max-width: 100%;
    margin: auto;
}
.features .col{
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
}
.features .item-icon{
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.features .item-title{
    line-height: 1.2;
}
.features-section2{
    background: url(../images/features-bg.svg) left 50% bottom -100px no-repeat;
}
.features2{
    width: 1036px;
    height: 452px;
    max-width: 100%;
    position: relative;
    margin: auto;
    background: url(../images/border.svg) 0 0 / 100% 100% no-repeat, url(../images/logo-gray.png) left 50% top 170px no-repeat;
    border-radius: 39px;
    margin-top: 100px;
    margin-bottom: 100px;
}
.features2 .item-arrow{
    position: absolute;
}
.features2 .arrow1{
    left: 160px;
    top: -18px;
}
.features2 .arrow2{
    right: 160px;
    top: -18px;
}
.features2 .arrow3{
    left: 160px;
    bottom: -25px;
}
.features2 .arrow4{
    right: 160px;
    bottom: -25px;
}
.features2-row{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}
.features2-row.row2{
    justify-content: space-between;
}
.features2 .item{
    width: 340px;
    max-width: 100%;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
}
.features2 .item-title{
    font-weight: 700;
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 20px;
    white-space: nowrap;
}
.features2 .item-text{
    background: #F9F5EC;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    flex: 1 0 auto;
}
.features2-row.row1 .item{
    top: -33px;
}
.features2-row.row3 .item{
    bottom: -75px;
}

.features2-row.row2 .item:first-child{
    transform: translateX(-50%);
}
.features2-row.row2 .item:last-child{
    transform: translateX(50%);
}

@media(max-width: 1499px){
    .features2{
        width: 900px;
        background: url(../images/logo-gray.png) left 50% top 170px no-repeat;
        border: 1px dashed #56A73F;
        margin-top: 70px;
        margin-bottom: 70px;
    }
    .features2 .arrow3,
    .features2 .arrow4{
        bottom: -27px;
    }
    .features2 .item-title{
        font-size: 18px;
        margin-bottom: 10px;
    }
    .features2 .item-text{
        font-size: 13px;
    }
    .features2-row.row1 .item {
        top: -24px;
    }
    .features2-row.row3 .item {
        bottom: -148px;
    }
}
@media(max-width: 1299px){
    .features2{
        width: 800px;
    }
}
@media(max-width: 1199px){
    .features{
        margin-left: -15px;
        margin-right: -15px;
    }
    .features2{
        height: 400px;
        margin-top: 50px;
        margin-bottom: 80px;
        width: 750px;
    }
    .features2 .item{
        width: 260px;
    }
    .features2 .item-title{
        font-size: 15px;
    }
    .features2-row.row1 .item {
        top: -21px;
    }
    .features2-row.row3 .item {
        bottom: -68px;
    }
}
@media(max-width: 1099px){
    .features2{
        width: 650px;
    }
    .features .item-title{
        font-size: 14px;
    }
}
@media(max-width: 991px){
    .features{
        margin-left: -10px;
        margin-right: -10px;
    }
    .features .col{
        padding-left: 10px;
        padding-right: 10px;
    }
    .features .item-title{
        font-size: 13px;
    }
    .features2{
        width: 100%;
        height: auto;
        background: transparent;
        border: none;
        margin-top: 0;
        margin-bottom: 0;
    }
    .features2 .item-arrow{
        display: none;
    }
    .features2-row.row2 .item:first-child,
    .features2-row.row2 .item:last-child{
        transform: none;
    }
    .features2-row.row1 .item{
        top: auto;
    }
    .features2-row.row3 .item{
        bottom: auto;
    }
    .features2 .item{
        width: 100%;
        margin-bottom: 50px;
    }
    .features2-row.row3 .item:last-child{
        margin-bottom: 0;
    }
}
@media(max-width: 767px){
    .features .col{
        width: 33.3333%;
        margin-bottom: 40px;
    }
    .features-section2{
        padding-top: 10px;
    }
}
@media(max-width: 499px){
    .features .col{
        width: 50%;
    }
}
/* /. features */


/* index-middle-section */
.index-middle-section{
    position: relative;
    background: url(../images/bg1.jpg) 0 0 / cover no-repeat;
    padding-top: 80px;
}
.index-middle-section:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: url(../images/features-bg.png) left 50% bottom 0 no-repeat;
}
/* /. index-middle-section */

/* catalog-categories-items */
.catalog-categories-items{
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.catalog-categories-items .col{
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
    width: 50%;
}
.catalog-categories-items .item{
    height: 100%;
    background: #fff;
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
}
.base-template .catalog-categories-items .item{
    background: #F1F5F5;
}
.catalog-categories-items .item-img{
    width: 235px;
    border-radius: 12px 0 0 12px;
    overflow: hidden;
}
.catalog-categories-items .item-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.catalog-categories-items .item-body{
    padding: 10px 15px;
    width: calc(100% - 235px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.catalog-categories-items .item-title{
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 5px;
}
.catalog-categories-items .item .item-body a{
    color: #333333;
        font-size: 16px;
    display: inline-block;
}
.catalog-categories-items .item a:hover{
    color: #2E731B;
    transform: scale(1.1);
    
}
.catalog-categories-items .item-list{
    padding-left: 30px;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.3;
}
.catalog-categories-items .item-list li + li{
    margin-top: 7px;
}
.catalog-categories-items .item-more{
    padding-top: 5px;
    font-size: 13px;
    line-height: 1;
}

@media(max-width: 1199px){
    .catalog-categories-items .item-list{
        padding-left: 10px;
    }
    .catalog-categories-items .item-list{
        font-size: 12px;
    }
    .catalog-categories-items .item-img{
        width: 210px;
    }
    .catalog-categories-items .item-body{
        width: calc(100% - 210px);
    }
}
@media(max-width: 991px){
    .catalog-categories-items{
        margin-left: 0;
        margin-right: 0;
    }
    .catalog-categories-items .col{
        width: 100%;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
        padding-right: 0;
    }
    .catalog-categories-title{
        text-align: center;
    }
}
@media(max-width: 599px){
    .catalog-categories-items .item-img{
        width: 150px;
    }
    .catalog-categories-items .item-body{
        width: calc(100% - 150px);
    }
    .catalog-categories-items .item-list{
        padding-left: 0;
    }
    .catalog-categories-items .item-more{
        text-align: left;
        margin-top: 10px;
        margin-bottom: 5px;
    }
}
@media(max-width: 399px){
    .catalog-categories-items .item-img{
        width: 100px;
    }
    .catalog-categories-items .item-body{
        width: calc(100% - 100px);
    }
}
/* /. catalog-categories-items */

/* call-to-action */
.call-to-action{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.call-to-action .col{
    width: calc(50% - 15px);
}
.call-to-action-content{
    color: #fff;
}
.call-to-action-title{
    font-size: 40px;
}
.call-to-action-phone a{
    font-size: 40px;
    font-weight: 700;
    color: #fff;
}
.call-to-action-phone a:hover{
    color: #2E731B;
}
.call-to-action-mail{
    line-height: 1.4;
    font-size: 20px;
}
.call-to-action-mail a{
    color: #fff;
    text-decoration: underline;
}
.call-to-action-mail a:hover{
    text-decoration: none;
}
.call-to-action-form{
    background: #fff;
    padding: 30px 60px;
    text-align: center;
    border-radius: 12px;
}
.call-to-action-form-title{
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 300;
}
.call-to-action-form .form-row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.call-to-action-form .form-row .form-group{
    width: calc(50% - 10px);
}

@media(max-width: 1299px){
    .call-to-action-form{
        padding: 30px;
    }
}
@media(max-width: 1199px){
    .call-to-action-form .form-row .form-group{
        width: calc(50% - 5px);
    }
    .call-to-action-form-title{
        font-size: 18px;
    }
    .call-to-action-title,
    .call-to-action-phone a{
        font-size: 36px;
    }
}
@media(max-width: 1099px){
    .call-to-action-form .form-row .form-group{
        width: 100%;
    }
    .call-to-action-form-title{
        font-size: 17px;
    }
}
@media(max-width: 991px){
    .call-to-action .col{
        width: 100%;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    .call-to-action .col1{
        margin-bottom: 30px;
    }
}
@media(max-width: 499px){
    .call-to-action-title, 
    .call-to-action-phone a{
        font-size: 7vw;
    }
    .call-to-action-mail{
        font-size: 4vw;
    }
    .call-to-action-form-title{
        font-size: 16px;
    }
    .call-to-action-form {
        padding: 25px 20px;
    }
}
/* /. call-to-action */

/* tabs */
.box{
    position: fixed;
    top: -9999px;
    left: -9999px;
    opacity: 0;
    width: 1430px;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}
.box.visible{
    position: static;
    top: auto;
    left: auto;
    opacity: 1;
    padding-left: 0;
    padding-right: 0;
}
.tabs-wrapper{
    margin-bottom: 40px;
}
.tabs {
    width: 100%;
    border-bottom: 1px solid #ECECEC;
}
.tabs li{
    display: inline-flex;
    align-items: center;
    height: 42px;
    cursor: pointer;
    text-align: center;
    border: 1px solid transparent;
    border-bottom: none;    
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    color: #333333;
    background: #fff;
    transition: all 200ms ease-out;
    position: relative;
    padding: 0 35px;
}
.tabs li.current,
.tabs li.current:hover{
    border-color: #ECECEC;
    background: #fff;
    color: #333333;
}
.tabs li:hover{
    background: #F6F6F6;
    border-color: #F6F6F6;        
}
.tabs li.current:after{
    content:"";
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: #fff;
}
.mobile-tab-header{
    display: none;
}

.catalog-section .tabs{
    border-bottom: none;
}
.catalog-section .tabs li.current:after{
    display: none;
}
.catalog-section .tabs li{
    background: #D4D4D4;
    color: #242624;
    border-color: #D4D4D4;
    height: 46px;
    font-size: 18px;
}
.catalog-section  .tabs li:hover{
    filter: brightness(110%);
}
.catalog-section  .tabs li.current, 
.catalog-section  .tabs li.current:hover{
    background: #242624;
    border-color: #242624;
    color: #ffffff;
}
@media (max-width: 767px){
    .mobile-tab-header{
        padding: 14px 40px 14px 14px;
        color: #ffffff;
        background: #414141;
        width: 100%;
        position: relative;
        display: block;
        font-weight: 500;
        border-radius: 5px;
    }
    .tabs-wrapper{
        margin-bottom: 30px;
    }
    .tabs {
        position: relative;
        display: none;
        border: none;
    }
    .mobile-tab-header:after{
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        margin-top: -10px;
        right: 24px;
        width: 12px;
        height: 12px;
        border-bottom: 2px solid #fff;
        border-right: 2px solid #fff;
        transform: rotate(45deg);
        transition: all 200ms ease-out;
    }
    .mobile-tab-header.active:after {
        transform: rotate(225deg);
        margin-top: -4px;
    }
    .catalog-section .tabs li{
        height: 52px;
    }
    .tabs li {
        padding: 15px;
        width: 100%;
        border: 1px solid #E9E9E9;
        border-top: none;
        display: block;
        height: auto;
        text-align: left;
        text-transform: none;
        font-size: 15px;
    }
    .tabs li.current{
        display: none;
    } 
    .mobile-tab-header.active + ul.tabs{
        display: block;
        width: auto;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
}
@media (min-width: 768px){
    .tabs.mobile{
        display: block !important;
    }
}
/* /. tabs */


/* catalog list */
.catalog-section{
    width: 100%;
    overflow: hidden;
}
.catalog{
    margin-left: -40px;
    margin-right: -40px;
    display: flex;
    flex-wrap: wrap;
}
.catalog .col{
    padding-left: 40px;
    padding-right: 40px;
    margin-bottom: 70px;
    width: 25%;
}

.catalog.span3 .col{
    width: 33.3333%;
}
.catalog.span4 .col{
    width: 25%;
}

.catalog .item{
    box-shadow: 6px 10px 20px 0px rgba(0,0,0,0.1);
    transition: all ease-out 300ms;
    height: 100%;
}
.catalog .item:hover{
    box-shadow: 6px 10px 20px 0px rgba(0,0,0,0.2);
}
.catalog .item form{
    height: 100%;
    display: flex;
    flex-direction: column;
}
.catalog .item .item-favorites{
    line-height: 1;
    position: absolute;
    right: 10px;
    top: 10px;
}
.catalog .item .msfavorites{
    text-decoration: none;
    color: #D0D0D0;
    display: inline-block;
}
.catalog .item .msfavorites svg{
    width: 18px;
    height: 18px;
    transition: all 200ms ease-out;
}
.catalog .item .msfavorites:hover,
.catalog .item .msfavorites.voted svg{
    color: #D75D56;
}
.catalog .item .msfavorites .msfavorites-active{
    display: none;
}
.catalog .item .msfavorites.voted .msfavorites-active{
    display: inline-block;
}
.catalog .item .msfavorites.voted .msfavorites-noneactive{
    display: none;
}

.catalog .item-stickers{
    position: absolute;
    left: 0;
    top: 10px;
    z-index: 4;
    width: 80px;
}
.catalog .item-sticker{
    font-size: 13px;
    line-height: 132.2%;
    padding: 3px 6px;
    text-align: center;
    margin-bottom: 4px;
    width: 100%;
    color: #fff;
    font-weight: 300;
    letter-spacing: 1px;
}
.catalog .item-sticker-sale,
.catalog .item-sticker-action{
    background: #D85454;
}
.catalog .item-sticker-new{
    background: #2E731B;
}
.catalog .item-sticker-popular{
    background: #F8CF67;
    color: #000;
}

.catalog .item-body{
    padding: 10px;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.catalog .item-title{
    line-height: 1.32;
    margin-bottom: 4px;
}
.catalog .item-title a{
    font-weight: 500;
    font-size: 15px;
    color: #000000;
}
.catalog .item-title a:hover{
    color: #2E731B;
}
.catalog .item-avl{
    color: #73BF5D;
    font-size: 10px;
}
.catalog .item-avl.false{
    color: #D85454;
}
.catalog .item-body-bottom{
    padding-top: 20px;
}
.catalog .item-prices{
    padding-right: 0;
    text-align: center;
}
.catalog .item-price{
    padding-right: 22px;
    font-size: 20px;
    font-weight: 600;
    color: #000;
}
.catalog .item-old-price{
    text-decoration: line-through;
    color: #AEAEAE;
    font-size: 15px;
}
.catalog .item-buttons{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 5px 0;
}
.catalog .item-order-link{
    margin-left: 15px;
    color: #2E731B;
    text-decoration: underline;
    font-size: 12px;
}
.catalog .item-order-link:hover{
    text-decoration: none;
}
.catalog .item-btn-more{
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #3E3E3E;
    text-decoration: none;
    font-size: 12px;
    text-align: center;
    background: #EFF0F3;
    border-radius: 12px;
    padding: 0 15px;
}
.catalog .item-btn-more:hover{
    background: #2E731B;
    color: #fff;
}
.catalog-carousel{
    display: block;
    position: relative;
}
.catalog-carousel > div:not(:first-of-type){
    display: none;
}
.catalog-carousel .slick-track{
    display: flex;
    flex-wrap: wrap;
}
.catalog-carousel .slick-slide {
    height: inherit;
}
.catalog-carousel .slick-slide > div{
    height: 100%;
}

@media(max-width: 1479px){
    .catalog{
        margin-left: -15px;
        margin-right: -15px;
    }
    .catalog .col{
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 30px;
    }
}
@media(max-width: 1199px){
    .catalog .item-prices{
        padding-right: 0;
    }
    .catalog .item-price {
        padding-right: 0;
        line-height: 1;
        margin-bottom: 5px;
    }
}
@media(max-width: 991px){
    .catalog .col{
        width: 33.3333%;
    }
}
@media(max-width: 767px){
    .catalog .col{
        width: 50%;
    }
}
@media(max-width: 499px){
    .catalog{
        margin-left: -7px;
        margin-right: -7px;
    }
    .catalog .col{
        padding-left: 7px;
        padding-right: 7px;
        margin-bottom: 14px;
    }
    .catalog .item{
        box-shadow: 4px 4px 4px 0px rgba(0,0,0,0.05);
    }
    .catalog .item:hover{
        box-shadow: 4px 4px 4px 0px rgba(0,0,0,0.1);
    }
    .catalog .item-buttons{
        display: block;
        text-align: center;
    }
    .catalog .item-btn-more{
        width: 100%;
        margin: 7px 0 0;
        height: 20px;
    }
    .catalog .item-order-link{
        margin-left: 0;
    }
    .catalog .item-title{
        margin-bottom: 0;
    }
    .catalog .item-title a{
        font-size: 12px;
    }
    .catalog .item-body{
        padding: 2px 7px 0;
    }
    .catalog .item-price{
        font-size: 15px;
        margin-bottom: 0;
    }
    .catalog .item-old-price{
        font-size: 12px;
    }
    .catalog .item-body-bottom{
        padding-top: 5px;
    }
    .catalog .item-sticker {
        font-size: 10px;
        padding: 0 3px;
        margin-bottom: 2px;
        letter-spacing: 0;
    }
    .catalog .item-stickers {
        top: 5px;
        width: 55px;
    }
    .catalog .item .item-favorites {
        right: 5px;
        top: 5px;
    }
}
/* /. catalog list */


/* about-section */
.about-section{
    background: url(../images/bg2.png) left 50% top 200px no-repeat;
}
.about-section-content-columns{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.about-section-content-columns .col1{
    width: calc(45% - 15px);
}
.about-section-content-columns .col2{
    width: calc(55% - 15px);
    text-align: right;
}
.about-section-content-columns .col1{
    font-size: 18px;
}
.about-section-content-columns .col1 ul{
    margin-left: 30px;
}
.about-section-content-columns .col1 li:not(:last-of-type){
    margin-bottom: 30px;
}

.about-section-gallery{
    padding-top: 40px;
}
.about-gallery{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: -5px;
    margin-right: -5px;
}
.about-gallery .col{
    padding-left: 5px;
    padding-right: 5px;
    display: flex;
    flex-direction: column;
}
.about-gallery .col1{
    width: 40%;
}
.about-gallery .col2{
    width: 60%;
}
.about-gallery .item{
    display: block;
    width: 100%;
    margin-bottom: 10px;
    overflow: hidden;
}
.about-gallery .item:last-child{
    flex: 1 0 auto;
}
.about-gallery .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all ease-out 300ms;
}
.about-gallery .item:hover{
    opacity: 0.9;
}
.about-gallery .item:hover img{
    transform: scale(1.1);
}
@media(max-width:1479px){
    .about-section{
        padding-top: 40px;
    }
}
@media(max-width:1199px){
    .about-section-content-columns .col1{
        font-size: 17px;
    }
}
@media(max-width:1099px){
    .about-section-content-columns .col1{
        font-size: 16px;
    }
    .about-section-content-columns .col1 ul{
        margin-left: 0;
    }
    .about-section-content-columns .col1 li:not(:last-of-type){
        margin-bottom: 20px;
    }
}
@media(max-width:991px){
    .about-section-content-columns .col1{
        font-size: 14px;
    }
    .about-section-content-columns .col1 li:not(:last-of-type){
        margin-bottom: 10px;
    }
    .about-section-content-columns .col{
        width: calc(50% - 10px);
    }
}
@media(max-width: 767px){
    .about-section-content-columns .col1{
        font-size: 17px;
    }
    .about-section-content-columns .col1 li:not(:last-of-type){
        margin-bottom: 20px;
    }
    .about-section-content-columns .col{
        width: 100%;
    }
    .about-section-content-columns .col2{
        order: 1;
        margin-bottom: 30px;
    }
    .about-section-content-columns .col1{
        order: 2;
    }
}
/* /. about-section */


/* footer */
.footer{
    background: url(../images/footer-bg-gradient.png), url(../images/footer-bg.png) 0 0 repeat-x #333;
    color: #fff;
}
.footer a:hover{
    color: #fff;
}
.footer-top{
    padding: 15px 0;
}
.footer-top-inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer-top-left{
    width: 450px;
}
.footer-top-right{
    max-width: calc(100% - 450px);
    padding-left: 30px;
    width: 700px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer-item-title{
    color: #2E731B;
    margin-bottom: 10px;
    border-bottom: 1px solid;
    display: inline-block;
    padding-right: 20px;
}
.footer-nav{
    width: 400px;
    max-width: 100%;
    padding-right: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 11px;
}
.footer-nav .col{
    width: calc(50% - 10px);
}
.footer-nav li + li{
    margin-top: 5px;
}
.footer-nav a{
    color: #fff;
    text-decoration: underline;
}
.footer-nav a:hover{
    text-decoration: none;
}
.footer-contacts{
    width: 200px;
    font-size: 11px;
}
.footer-phone,
.footer-mail{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.footer-phone-icon,
.footer-mail-icon{
    width: 14px;
}
.footer-phone-link,
.footer-mail-link{
    width: calc(100% - 14px);
    padding-left: 5px;
}
.footer-phone-link a{
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}
.footer-phone-link a:hover{
    color: #2E731B;
}
.footer-phone-row{
    display: flex;
    align-items: center;
}
.footer-messengers{
    margin-left: 10px;
}
.footer-mail{
    margin-top: 5px;
    margin-bottom: 15px;
}
.footer-mail a{
    color: #fff;
}
.footer-callback{
    margin-bottom: 20px;
}

.footer-bottom{
    padding: 0 0 15px;
}
.footer-bottom-inner{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.footer-bottom-left{
    width: calc(100% - 160px);
    padding-right: 30px;
}
.footer-bottom-right{
    width: 160px;
    text-align: right;
    display: flex;
    justify-content: flex-end;
}
.copyright{
    font-size: 10px;
}

.development-wrapper{
    display: flex;
    justify-content: flex-end;
}
.development{
    display: flex;
    justify-content: flex-end;
    width: 130px;
}
.development a{
    display: flex;
    align-items: center;
    font-weight: 300;
    font-size: 8px;
    line-height: 140.62%;
    letter-spacing: 0.01em;
}
.development-icon{
    margin-left: 8px;
    display: inline-block;
    position: relative;
}
.development-icon img{
    position: relative;
    z-index: 2;
}
.development-icon:before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: 4px;
    bottom: 4px;
    background: rgb(255 255 255 / 24%);
}

.footer-text1,
.footer-text2{
    margin-top: 15px;
    font-size: 10px;
}

@media(max-width: 1199px){
    .footer-nav{
        width: calc(100% - 200px);
        padding-right: 40px;
    }
    .footer-top-left{
        width: 350px;
    }
    .footer-top-right {
        max-width: calc(100% - 350px);
    }
}
@media(max-width: 991px){
    .footer-top-left{
        width: 100%;
    }
    .footer-top-right{
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-top: 30px;
    }
    .footer-nav{
        width: 400px;
        max-width: 100%;
    }
}
@media(max-width: 767px){
    .footer-nav{
        width: 100%;
        padding-right: 0;
        padding-bottom: 30px;
    }
    .footer-bottom-left {
        width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }
    .footer-bottom-right{
        justify-content: flex-start;
    }
    .development {
        justify-content: flex-start;
        width: auto;
    }
}

@media(max-width: 399px){
    .footer-nav .col{
        width: 100%;
    }
    .footer-nav .col + .col{
        margin-top: 20px;
    }
}
/* /. footer */

/* breadcrumb */
.breadcrumb {
    margin: 20px 0 30px;
    padding: 0 0;
    list-style: none;
    display: flex;
    overflow: auto;
}
.breadcrumb > li {
    display: inline-block;
    font-size: 12px;
    padding: 0 15px;
    position: relative;
    margin-right: 19px;
    background: #f1f5f5;
    height: 28px;
    line-height: 28px;
    color: #000;
    white-space: nowrap;
}
.breadcrumb svg {
    width: 16px;
    position: relative;
    bottom: -3px;
    fill: #2E731B;
}
.breadcrumb > li a {
    color: #2E731B;
    text-decoration: none;
}
.breadcrumb > li a:hover{
    color: #000;
}
.breadcrumb > li:after {
    position: absolute;
    content: '';
    display: block;
    top: 4px;
    right: -10px;
    width: 20px;
    height: 20px;
    transform: rotate(-45deg);
    background: #f1f5f5;
}
.breadcrumb > li:before{
    position: absolute;
    content: '';
    left: -15px;
    bottom: 0;
    border: 14px solid #f1f5f5;
    border-left: 14px solid transparent;
}
.breadcrumb>li+li:before {
    color: #ccc;
}
.breadcrumb > li:first-of-type:before{
    display: none;
}
/* /. breadcrumb */


/* about page */
.about-page-columns{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.about-page-columns .col{
    width: calc(50% - 15px);
}
.about-page-images .item:nth-child(2){
    text-align: right;
    position: relative;
    right: -120px;
    margin-top: -50px;
    z-index: 10;
}
.about-page-images .item:nth-child(3){
    position: relative;
    top: -60px;
    right: -60px;
}

.about-page-images .item img {
    object-fit: cover;
    width: 100%;
    height: 320px;
}

@media(max-width: 1699px){
    .about-page-columns .col1{
        padding-right: 30px;
    }
    .about-page-columns .col2{
        padding-right: 60px;
    }
    .about-page-images .item:nth-child(1){
        position: relative;
        left: -30px;
    }
    .about-page-images .item:nth-child(2){
        right: -60px;
    }
    .about-page-images .item:nth-child(3){
        right: -30px;
    }
}
@media(max-width: 1199px){
    .content{
        font-size: 16px;
    }
}
@media(max-width: 991px){
    .about-page-columns .col1{
        width: 100%;
        padding-right: 0;
        order: 2;
    }
    .about-page-columns .col2{
        width: 100%;
        padding-left: 30px;
        order: 1;
    }
}
@media(max-width: 499px){
    .about-page-images .item:nth-child(1){
        left: -15px;
    }
    .about-page-images .item:nth-child(2) {
        right: -30px;
    }
    .about-page-images .item:nth-child(3){
        right: -10px;
        top: -30px;
    }
    .about-page-columns .col2{
        padding-right: 30px;
        padding-left: 15px;
    }
}
/* /. about page */

/* production-page */
.gallery{
    margin: 30px -8px;
    display: flex;
    flex-wrap: wrap;
}
.gallery .col{
    width: 33.3333%;
    margin-bottom: 16px;
    padding-left: 8px;
    padding-right: 8px;
}
.gallery .item{
    display: block;
    overflow: hidden;
}
.gallery .item img{
    transition: all ease-out 300ms;
}
.gallery .item:hover img{
    opacity: 0.9;
    transform: scale(1.1);
}
.video-block{
    margin: 30px 0;
}
.video-block a{
    display: inline-block;
    position: relative;
}
.video-block a:after{
    content:"";
    width: 53px;
    height: 53px;
    background: url(../images/play.svg) 0 0 no-repeat;
    position: absolute;
    top: calc(50% - 26px);
    left: calc(50% - 26px);
    z-index: 10;
    transition: all ease-out 300ms;
}
.video-block a:hover:after{
    transform: scale(1.5);
}
@media(max-width: 767px){
    .gallery{
        margin: 20px -3px;
    }
    .gallery .col{
        margin-bottom: 6px;
        padding-left: 3px;
        padding-right: 3px;
    }
}
/* /. production-page */

/* partners */
.partners{
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
    flex-wrap: wrap;
}
.partners .col{
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
    width: 25%;
}
.partners .item{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media(max-width: 767px){
    .partners{
        margin-left: -10px;
        margin-right: -10px;
    }
    .partners .col{
        width: 33.3333%;
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 20px;
    }
}
@media(max-width: 499px){
    .partners{
        margin-left: -5px;
        margin-right: -5px;
    }
    .partners .col{
        width: 50%;
        padding-left: 5px;
        padding-right: 5px;
        margin-bottom: 10px;
    }
}
/* /. partners */

/* services */
.services{
    display: flex;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
}
.services .col{
    width: 33.3333%;
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 30px;
}
.services .item-img{
    overflow: hidden;
    border-radius: 12px;
}
.services .item-img img{
    width: 100%;
    transition: all ease-out 300ms;
}
.services .item-img:hover img{
    transform: scale(1.1);
}
.services .item-body{
    padding: 0 15px;
}
.services .item-title{
    margin-top: 15px;
    font-weight: 700;
    font-size: 20px;
}
.services .item-title a{
    color: #000;
}
.services .item-title a:hover{
    color: #2E731B;
}
.services .item-description{
    margin-top: 15px;
    font-size: 20px;
}
@media(max-width: 1199px){
    .services .item-title{
        font-size: 18px;
        line-height: 1.4;
    }
    .services .item-description{
        font-size: 16px;
        line-height: 1.4;
    }
}
@media(max-width: 991px){
    .services .col{
        width: 50%;
    }
}
@media(max-width: 599px){
    .services .col{
        width: 100%;
    }
}
/* /. services */


/* actions */
.actions{
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.actions .col{
    width: 33.3333%;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}
.actions .item-title{
    margin-top: 15px;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.4;
}
.actions .item-description{
    margin-top: 15px;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.4;
}
@media(max-width: 991px){
    .actions .col{
        width: 50%;
    }
    .actions .item-title{
        font-size: 18px;
    }
    .actions .item-description{
        font-size: 14px;
    }
}
@media(max-width: 599px){
    .actions .col{
        width: 100%;
    }
}
/* /. actions */



/* diliveries */
.diliveries{
    display: flex;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
    justify-content: center;
}
.diliveries .col{
    width: 33.3333%;
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 30px;
}
.diliveries .item-img{
    overflow: hidden;
    border-radius: 12px;
}
.diliveries .item-img img{
    width: 100%;
    transition: all ease-out 300ms;
}
.diliveries .item-body{
    padding: 0 15px;
}
.diliveries .item-title{
    margin-top: 15px;
    font-weight: 700;
    font-size: 20px;
}
.diliveries .item-description{
    margin-top: 15px;
    font-size: 20px;
}
@media(max-width: 1199px){
    .diliveries .item-title{
        font-size: 18px;
        line-height: 1.4;
    }
    .diliveries .item-description{
        font-size: 16px;
        line-height: 1.4;
    }
}
@media(max-width: 991px){
    .diliveries .col{
        width: 50%;
    }
}
@media(max-width: 599px){
    .diliveries .col{
        width: 100%;
    }
}
/* /. diliveries */


/* markets */
.markets{
    display: flex;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
}
.markets .col{
    width: 33.3333%;
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 30px;
}
.markets .item-body{
    padding: 0 15px;
}
.markets .item-title{
    margin-top: 15px;
    font-weight: 700;
    font-size: 20px;
}
.markets .item-title a{
    color: #000;
}
.markets .item-title a:hover{
    color: #2E731B;
}
.markets .item-description{
    margin-top: 15px;
    font-size: 18px;
}
@media(max-width: 1199px){
    .markets .item-title{
        font-size: 18px;
        line-height: 1.4;
    }
}
@media(max-width: 991px){
    .markets .col{
        width: 50%;
    }
}
@media(max-width: 599px){
    .markets .col{
        width: 100%;
    }
}
/* /. markets */

/* category page */
.catalog-category-container{
    display: flex;
    flex-wrap: wrap;
}
.catalog-category-container .aside{
 width: 341px;
}
.catalog-category-container .main-column{
    width: calc(100% - 341px);
    padding-left: 30px;
}
.catalog-category-container .main-column.sale{
    width: 100%;
    padding-left: 30px;
}

.aside-menu{
    margin-bottom: 30px;
}
.aside-menu-title{
    color: #fff;
    background: #2E731B;
    height: 60px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-weight: 500;
    font-size: 20px;
}
.aside-menu-title svg{
    width: 26px;
}
.aside-menu-title span{
    width: calc(100% - 26px);
    padding-left: 10px;
}
.aside-menu > ul{
    border-bottom: 1px solid #F0F0F0;
    border-left: 1px solid #F0F0F0;
    border-right: 1px solid #F0F0F0;
    
}
.aside-menu li{
    position: relative;
    padding: 0 10px;
}
.aside-menu a{
    display: block;
    color: #000;
    padding: 9px 35px 9px 5px;
    font-size: 16px;
    line-height: 1.3;
    transition: none;
}
.aside-menu > ul > li > a{
    font-size: 18px;
    font-weight: 700;
    padding: 15px 35px 15px 5px;
    border-bottom: 1px solid #F0F0F0;
}
.aside-menu > ul > li:last-of-type > a,
.aside-menu > ul > li.open > a{
    border-bottom: none;
}
.aside-menu > ul > li.open > ul{
    border-bottom: 1px solid #F0F0F0;
}
.aside-menu .open > ul > li:first-of-type > a{
    padding-top: 0;
}

.aside-menu ul ul{
    display: none;
    padding-left: 20px;
    padding-bottom: 8px;
}
.aside-menu .active > ul{
    display: block;
}
.aside-menu ul ul .active > a{
    color: #2E731B;
}

.aside-menu .dropdown-button{
    height: 53px;
    width: 35px;
    display: block;
    z-index: 20;
    top: 0;
    right: 0;
    position: absolute;
    cursor: pointer;
}
.aside-menu .dropdown-button:after{
    content: "";
    background: url(../images/aside-menu-dropdown-arrow-right.svg) 0 0 no-repeat;
    width: 6px;
    height: 12px;
    position: absolute;
    top: calc(50% - 6px);
    left: calc(50% - 3px);
}
.aside-menu .open > .dropdown-button:after{
    transform: rotate(90deg);
}

.sort-block{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}
.for-statuses-filters{
    display: flex;
    flex-wrap: wrap;
}
.for-statuses-filters .item{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 22px;
    padding: 0 15px;
    font-size: 12px;
    margin-right: 5px;
    margin-bottom: 10px;
    color: #535353;
    background: #EFEFEF;
    border-radius: 20px;
    cursor: pointer;
    transition: all ease-out 300ms;
}
.for-statuses-filters .item:hover{
    background: #DBDBDB;
}
.for-statuses-filters .item.active{
    background: #2E731B !important;
    color: #fff;
}
.for-statuses-filters .item:last-child{
    margin-right: 0;
}
.mse2_sort_wrap{
    width: 340px;
    max-width: 100%;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 10px;
}
.mse2_sort_header{
    font-size: 13px;
    line-height: 1;
    color: #000000;
    position: relative;
    text-align: left;
}
.mse2_sort_header > b{
    font-weight: bold;
    margin-right: 10px;
}
.mse2_sort_header_title{
    cursor: pointer;
}
.mse2_sort_header_title .element_arrow{
    width: 11px;
    height: 6px;
    position: relative;
    margin-left: 5px;
    top: -1px;
}
.mse2_sort_header_title .element_arrow svg{
    transition: all 200ms ease-out;
    position: relative;
}
.mse2_sort_header_title.hover .element_arrow svg{
    transform: rotate(180deg);
    top: -1px;
}
.mse2_sort_wrap #mse2_sort{
    display: none !important;
    width: 220px;
    text-align: left;
    position: absolute;
    right: 0;
    top: 22px;
    z-index: 200;
    background: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}
.mse2_sort_wrap #mse2_sort.hover{
    display: block !important;
}
.mse2_sort_wrap #mse2_sort:before{
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}
.mse2_sort_wrap #mse2_sort a{
    display: block;
    padding: 8px 20px 8px 10px;
    font-size: 13px;
    color: #000;
    border-top: 1px solid rgba(0,0,0,0.1);
    background: #fff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}
.mse2_sort_wrap #mse2_sort a:first-of-type{
    border-top: none;
}
.mse2_sort_wrap #mse2_sort a:hover{
    background: rgba(0,0,0,0.08);
    border-top-color: #fff;
}
.mse2_sort_wrap #mse2_sort a:hover + a{
    border-top-color: #fff;
}
.mse2_sort_wrap #mse2_sort a.active{
    color: #414141;
    cursor: pointer;
}
.mse2_sort_wrap #mse2_sort a:after{
    content: "↑";
    position: absolute;
    right: 10px;
    top: 6px;
    opacity: 0;
    font-size: 16px;
}
.mse2_sort_wrap #mse2_sort a.active:after{
    opacity: 1;
}
.mse2_sort_wrap #mse2_sort a.active[data-dir="desc"]:after{
    transform: rotate(180deg);
    top: 8px;
}

@media(max-width: 767px){
    .mse2_sort_wrap{
        width: 300px;
    }
    .mse2_sort_header{
        font-size: 11px;
    }
}


.filter-item{
    margin-bottom: 20px;
    border: 1px solid #ECECEC;
}
.filter-item-title{
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 35px 15px 15px;
}
.filter-item-title:after{
    content: "";
    background: url(../images/aside-menu-dropdown-arrow-right.svg) 0 0 no-repeat;
    width: 6px;
    height: 12px;
    position: absolute;
    top: calc(50% - 6px);
    right: 24px;
    transform: rotate(270deg);
}
.filter-item.active .filter-item-title:after{
    transform: rotate(90deg);
}
.filter-item .item-dropdown{
    padding: 0 36px 10px;
    display: none;
}
.filter-item.active .item-dropdown{
    display: block;
}
.statuses-filters{
    display: none;
}

.statuses-filters .filter-customcheck-wrap > div:last-of-type {
    display: none !important;
}

.filter-customcheck {
    position: relative;
    margin-bottom: 15px;
}
.filter-customcheck input[type=checkbox]{
    position: fixed;  
    top: -100000px;
}
.filter-customcheck input[type=checkbox] + label{
    position: relative;
    padding-left: 30px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    display: block;
    font-size: 16px;
    padding-right: 15px;
}
.filter-customcheck input[type=checkbox] + label:hover,
.filter-customcheck input[type=checkbox]:checked + label{
    color: #2E731B;
}
.filter-customcheck input[type=checkbox] + label:before{
    background: #F8F8F8;
    border: 1px solid #ECECEC;
    content: "";
    display: block;
    position: absolute;
    width: 18px;
    height: 18px;
    top: 3px;
    left: 0px;
}
.filter-customcheck input[type=checkbox]:checked + label:before{
    background: url(../images/filter-checked.svg) 50% no-repeat #2e731b;
    border-color: #2e731b;
}

.colors-filter-item input[value="Коричневый"] + label:before{
    background-color: #7A645C !important;
    border-color: #7A645C !important;
}
.colors-filter-item input[value="Серый"] + label:before{
    background-color: #9B9A9A !important;
    border-color: #9B9A9A !important;
}
.colors-filter-item input[value="Коньячного оттенка"] + label:before{
    background-color: #C4710C !important;
    border-color: #C4710C !important;
}

.reset-filters-btn{
    margin-top: 20px;
    border: none;
    padding: 0;
    background: transparent;
    color: #333333;
    display: flex;
    align-items: center;
    font-weight: 500;
    white-space: nowrap;
    padding-left: 36px;
    transition: all ease-out 300ms;
}
.reset-filters-btn svg{
    margin-right: 10px;
    position: relative;
    top: -1px;
}
.reset-filters-btn path{
    transition: all ease-out 300ms;
}
.reset-filters-btn:hover{
    color: #2E731B;
}
.reset-filters-btn:hover path{
    fill: #2E731B;
}
.reset-filters-btn.hidden {
    display: none;
}

.filters-open-btn{
    display: none;
}
.catalog-sidebar-close-btn{
    display: none;
}

@media(max-width: 1299px){
    .catalog-category-container .aside{
        width: 300px;
    }
    .catalog-category-container .main-column{
        width: calc(100% - 300px);
    }
}
@media(max-width: 1099px){
    .catalog-category-container .aside{
        width: 280px;
    }
    .catalog-category-container .main-column{
        width: calc(100% - 280px);
        padding-left: 15px;
    }
    .catalog.span3{
        margin-left: -8px;
        margin-right: -8px;
    }
    .catalog.span3 .col{
        padding-left: 8px;
        padding-right: 8px;
        margin-bottom: 16px;
    }
    .aside-menu-title{
        font-size: 18px;
        height: 50px;
    }
    .aside-menu a{
        font-size: 14px;
    }
    .aside-menu > ul > li > a{
        font-size: 16px;
    }
    .aside-menu ul ul{
        padding-left: 15px;
    }
    .filter-item-title{
        font-size: 16px;
    }
    .filter-item .item-dropdown{
        padding-left: 32px;
    }
    .filter-customcheck input[type=checkbox] + label{
        font-size: 14px;
        padding-left: 28px;
    }
    .filter-customcheck input[type=checkbox] + label:before{
        top: 2px;
    }
}
@media(max-width: 991px){
    .aside-menu{
        display: none;
    }
    .catalog-category-container .aside{
        width: 100%;
    }
    .catalog-category-container .main-column{
        width: 100%;
        padding-left: 0;
    }
    .catalog-sidebar-inner {
        position: fixed;
        top: 0;
        bottom: 0;
        right: -320px;
        width: 320px;
        max-width: 100%;
        background-color: #fff;
        z-index: 600;
        box-shadow: -1px 0 0 #eee;
    }
    .catalog-sidebar-filters {
        position: relative;
        height: 100%;
        overflow-y: auto;
        border: none;
    }
    .filters-form{
        padding: 40px 0;
    }
    .filters-open-btn{
        display: inline-flex;
        align-items: center;
        width: 293px;
        height: 50px;
        padding: 0 15px;
        margin-bottom: 30px;
        background: #2E731B;
        color: #fff;
        border-radius: 5px;
    }
    .filters-open-btn svg{
        margin-right: 5px;
    }
    .filters-open-btn svg path{
        stroke: #fff;
    }
    .overflow_hidden {
        height: 100%;
        overflow: hidden;
    }
    .catalog-sidebar-inner.active {
        transform: translateX(-320px);
        transition-property: transform;
        transition-duration: .2s;
    }
    .catalog-sidebar-inner-overlay {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        position: fixed;
        top: 0;
        bottom: -100px;
        left: 0;
        right: 0;
        z-index: -1;
        opacity: 0;
        transition: opacity ease-out 300ms;
    }
    .catalog-sidebar-inner.active + .catalog-sidebar-inner-overlay {
        z-index: 500;
        opacity: 1;
    }
    .filter-item{
        border: none;
        margin-bottom: 0;
    }
    .catalog-sidebar-close-btn{
        display: block;
        position: absolute;
        right: 15px;
        top: 15px;
        z-index: 5;
        background: #fff;
    }

    .catalog.span3{
        margin-left: -15px;
        margin-right: -15px;
    }
    .catalog.span3 .col{
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 30px;
    }
}

@media(max-width: 767px){
    .catalog.span3 .col,  .catalog.span4 .col{
        width: 50%;
    }
}

@media(max-width: 699px){
    .sort-block{
        display: block;
    }
    .mse2_sort_wrap{
        margin-top: 20px;
        justify-content: flex-start;
    }
}

@media(max-width: 499px){
    .catalog.span3{
        margin-left: -7px;
        margin-right: -7px;
    }
    .catalog.span3 .col {
        padding-left: 7px;
        padding-right: 7px;
        margin-bottom: 14px;
    }
}
/* /. category page */


/* product page */
.product-page-first-section form{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.product-page-first-section .left-part{
    width: calc(50% - 15px);
    overflow: hidden;
    margin-bottom: 50px;
}
.product-page-first-section .right-part{
    width: calc(50% - 15px);
    margin-bottom: 50px;
    padding-left: 20px;
}
.product-carousel,
.product-thumb-carousel{
    margin-left: -10px;
    margin-right: -10px;
}
.product-carousel .col{
    padding-left: 10px;
    padding-right: 10px;
}
.product-carousel .item{
    display: block;
}
.product-carousel .item img{
    width: 100%;
}
.product-carousel > div:not(:first-of-type),
.product-thumb-carousel > div:not(:first-of-type){
    display: none;
}
.product-thumb-carousel{
    margin-top: 20px;
}
.product-thumb-carousel .col{
    padding-left: 10px;
    padding-right: 10px;
    width: 20%;
}
.product-thumb-carousel .item{
    cursor: grab;
    transition: all ease 300ms;
    position: relative;
}
.product-thumb-carousel .item:hover{
    opacity: 0.8;
}
.product-thumb-carousel .item:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid #2E731B;
    opacity: 0;
}
.product-thumb-carousel .col.slick-current .item:after{
    opacity: 1;
}

.product-page-first-section-header{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
    justify-content: flex-end;
}
.product-page-first-section-header .introtext{
    width: calc(100% - 25px);
    padding-right: 50px;
    color: #626262;
    font-size: 13px;
}
.product-page-first-section-header .favorites-block{
    width: 25px;
}
.product-page-first-section-header .msfavorites{
    color: #D2D2D2;
    cursor: pointer;
}


.product-page-first-section-header .msfavorites:hover,
.product-page-first-section-header .msfavorites.voted{
    color: #cf2929;
}

.product-page-first-section-header .msfavorites .msfavorites-active{
    display: none;
}
.product-page-first-section-header .msfavorites.voted .msfavorites-active{
    display: block;
}
.product-page-first-section-header .msfavorites.voted .msfavorites-noneactive{
    display: none;
}

.product-page-first-section .size-information{
    margin-bottom: 20px;
}
.product-page-first-section .size-information .item-title{
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}
.product-getcolors{
    margin-bottom: 20px;
}
.product-getcolors-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
}

.color-block .item{
    display: inline-block;
    vertical-align: top;
    width: 32px;
    margin: 0 15px 15px 0;
    position: relative;
    text-align: center;
}
.color-block .item input[type=radio]{
    position: fixed;
    top: -1000px;
    opacity: 0;
    height: 0;
    width: 0;
    display: block;
}
.color-block .item input[type=radio]+label{
    display: block;
    cursor: pointer;
}
.color-block .item-color{
    height: 32px;
    background-color: #E5E5E7;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: cover;
    position: relative;
}
.color-block .item-title {
    font-size: 10px;
    text-transform: lowercase;
    line-height: 1;
    display: inline-block;
}
.color-block .item-color:after{
    content: "";
    position: absolute;
    top: -2px;
    bottom: -2px;
    left: -2px;
    right: -2px;
    box-shadow: 0 0 0 1px #CBD0BF;
    opacity: 0;
}
.color-block input[type=radio]:checked+label .item-color:after, 
.color-block .item-color:hover:after{
    opacity: 1;
}
.product-getcolors-desc{
    font-size: 12px;
    color: #CACACA;
    font-weight: 500;
}

.property-list{
    margin-bottom: 30px;
    background: #F9F5EC;
    border-radius: 2px;
    padding: 15px;
}
.property-list-row{
    margin-bottom: 10px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    line-height: 1.2;
    font-size: 14px;
}
@media(min-width:768px){
    .property-list-row{
        white-space: nowrap;
    }
}
@media(min-width:1100px){
    .property-list-row{
        font-size: 16px;
    }
}
.property-list-name{
    width: 100%;
    background: url(../images/dot.svg) 0 calc(100% - 6px) repeat-x;
    flex-grow: 0;
    padding-right: 4px;
}
.property-list-name span,
.property-list-value span{
    background-color: #F9F5EC;
    box-shadow: -5px 0 0 #F9F5EC, 5px 0 0 #F9F5EC;
}
.property-list-value{
    display: inline-block;
    padding-left: 5px;
    flex-grow: 0;
    font-weight: 600;
    text-align: right;
    background: url(../images/dot.svg) 0 calc(100% - 6px) repeat-x;

}

.product-page-middle-section .property-list{
    background: #fff;
    border-radius: 0;
    padding: 0;
    max-width: 700px;
}
.product-page-middle-section .property-list-name span,
.product-page-middle-section .property-list-value span{
    background-color: #fff;
    box-shadow: -5px 0 0 #fff, 5px 0 0 #fff;
}

.product-page-price-wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.product-page-price-wrapper .col1{
    width: 130px;
}
.product-page-price-wrapper .col2{
    width: calc(100% - 295px);
    padding: 0 25px;
    text-align: center;
}
.product-page-price-wrapper .col3{
    width: 165px;
}
.product-page-price-wrapper .col3 .btn{
    width: 100%;
    height: 46px;
    font-size: 18px;
    border-radius: 5px;
}
.product-page-price-wrapper .col2 .product-price{
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
}
.product-page-price-wrapper .col2 .product-old-price{
    text-decoration: line-through;
    font-size: 20px;
    font-weight: 500;
    color: #848484;
    line-height: 1;
}
.product-page-price-wrapper .col4{
    width: 100%;
    padding-top: 20px;
    font-size: 12px;
    color: #CACACA;
    font-weight: 500;
}


.item-counter-inner,
.item-counter{
    width: 160px;
    height: 54px;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0 20px;
    background: #FAFAFA;
    border: 1px solid #ECECEC;
    border-radius: 2px;
    padding: 0 15px;
}
.product-page-price-wrapper .item-counter{
    width: 130px;
    margin-left: 0;
    margin-right: 0;
    padding: 0 10px;
}
.item-counter-inner .input-number,
.item-counter .input-number{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 26px;
    width: 60px;
    padding: 0 5px;
    text-align: center;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    background: #fafafa;
    border: none;
    margin: 0;
    color: #6C6C6D;
        z-index: 10;
    position: relative;
}
.item-counter-inner button,
.item-counter button{
    width: 24px;
    height: 24px;
    padding: 0;
    border: none;
    background: transparent;
    transition: all 200ms ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    position: static;
}
.item-counter-inner button svg,
.item-counter button svg{
    width: 12px;
    height: 12px;
}
.item-counter-inner button path,
.item-counter button path{
    stroke: #000;
}
.count-input-wrapper{
    position: relative;
    display: inline-block;
}
.count-input-wrapper:before{
    content:"";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.product-page-price-description{
    margin-bottom: 15px;
}
.product-page-price-description .row1{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}
.product-page-price-description .row1 .item-icon{
    width: 17px;
    position: relative;
    bottom: -2px;
}
.product-page-price-description .row1 .item-value{
    width: calc(100% - 17px);
    padding-left: 7px;
    font-weight: 300;
    font-size: 12px;
}
.product-page-middle-section .box{
    padding: 0 15px;
}
.product-page-middle-section .content{
    font-weight: normal;
}

.product-page-related-products{
    padding-top: 30px;
}
.product-page-related-products .catalog .col{
    margin-bottom: 20px;
}

@media(max-width: 1299px){
    .product-page-price-wrapper .col2 .product-price{
        font-size: 30px;
    }
    .product-page-price-wrapper .col2 .product-old-price{
        font-size: 18px;
    }
}
@media(max-width: 1199px){
    .product-page-first-section .left-part {
        width: calc(45% - 15px);
    }
    .product-page-first-section .right-part {
        width: calc(55% - 15px);
        padding-left: 0;
    }
}
@media(max-width: 1099px){
    .product-page-price-wrapper .col2{
        width: calc(100% - 130px);
        padding-right: 0;
    }
    .product-page-price-wrapper .col3{
        width: 100%;
        padding-top: 20px;
    }
}
@media(max-width: 767px){
    .product-page-first-section .left-part{
        width: 100%;
    }
    .product-page-first-section .right-part{
        width: 100%;
    }
    
}
@media(max-width: 499px){
    .item-counter-inner button, 
    .item-counter button{
        width: 19px;
    }
    .product-page-price-wrapper .item-counter {
        width: 110px;
        padding: 0 5px;
    }
    .product-page-price-wrapper .col2{
        padding-left: 15px;
        text-align: right;
    }
    .product-page-price-wrapper .col2 .product-price{
        font-size: 22px;
    }
    .product-page-price-wrapper .col2 .product-old-price{
        font-size: 14px;
    }
    .product-thumb-carousel{
        margin-top: 10px;
    }
    .product-thumb-carousel .col{
        padding-left: 5px;
        padding-right: 5px;
    }
}
/* /. product page */


/* portfolio */
.portfolio-gallery{
    margin-left: -10px;
    margin-right: -10px;
    display: flex;
    flex-wrap: wrap;
}
.portfolio-gallery .col{
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
    width: 33.3333%;
}
.portfolio-gallery .item{
    display: block;
    overflow: hidden;
}
.portfolio-gallery .item img{
    width: 100%;
    transition: all ease-out 300ms;
}
.portfolio-gallery .item:hover img{
    transform: scale(1.1);
    opacity: .8;
}
/* /. portfolio */

/* reviews, rating */
.reviews .element {
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    margin-bottom: 40px;
    border-radius: 0;
}
.reviews .element .rev-element-body{
    background: #F8F8F8;
    padding: 32px 22px 30px;
}
.reviews .element .rev-element-body:after {
    content: "";
    position: absolute;
    left: 25px;
    bottom: -20px;
    border: 10px solid transparent;
    border-left: 10px solid #F8F8F8;
    border-top: 10px solid #F8F8F8;
}
.rev-element-footer{
    padding: 20px 0 0 40px;
}
.rev-element-footer .rev-name{
    font-size: 20px;
}
.rating {
	position: relative;
	height: 24px;
	width: 140px;
	color: #d5d5d5;
	white-space: nowrap;
	margin-bottom: 30px;
}

.rating .real {
	position: absolute;
	top: 0;
	left: 0;
	color: #F9AB28;
	width: 0;
	height: 24px;
	overflow: hidden;
	white-space: nowrap;
}

.rating svg {
	width: 24px;
	height: 21.328px;
}

.rating.rating1 .real {
	width: 20%;
}

.rating.rating2 .real {
	width: 40%;
}

.rating.rating3 .real {
	width: 60%;
}

.rating.rating4 .real {
	width: 80%;
}

.rating.rating5 .real {
	width: 100%;
}

.rev-form .ec-rating-stars span {
	background: transparent;
	width: auto;
	height: auto;
	margin-right: 7px;
}

.ec-rating-stars svg {
	cursor: pointer;
	color: #d5d5d5;
	width: 20px;
	height: 20px;
}

.ec-rating-stars .active svg,
.ec-rating-stars .active2 svg {
	color: #F9AB28;
}
.alert-success {
    background: #d4f5d4;
    padding: 15px;
    border: 1px solid #b3dbb3;
    font-size: 14px;
    margin-bottom: 20px;
}
.form-group.has-error input {
    border-color: #FF1A00;
}
.product-rating-wrapper {
    margin-bottom: 15px;
}
.product-rating {
    display: inline-block;
    margin-right: 10px;
}
.product-rating-wrapper .ec-stars {
    display: inline-block;
    margin: 0;
    font-size: 18px;
    width: 105px;
}
.product-rating-wrapper .ec-stars svg{
    width: 17px;
}
.product-rating-wrapper .ec-stars span {
    background: transparent!important;
    display: block;
    height: 20px;
    width: auto;
    color: #CFCFCF;
}
.product-rating-wrapper .ec-stars .real {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 20px;
    white-space: nowrap;
    overflow: hidden;
    color: #f9ab28;
}
.product-rating-wrapper .rating-counter {
    font-size: 15px;
}

.box .reviews,
.box .rev-form{
    width: 800px;
    max-width: 100%;
}
@media(min-width: 768px){
    .rev-form .form-row{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .rev-form .form-row .col{
        width: calc(50% - 10px);
    }
}
/* /. reviews, rating */


/* ui slider*/
.number_slider_wrapper{
    padding: 0 6px;
}
.catalog-sidebar-filters .ui-slider{
    border: none !important;
    height: 1px;
    background: #E9E9E9;
    margin-bottom: 20px;
    margin-top: 10px;
    width: 100%;
    margin: 5px auto 20px;
    padding: 0;
}
.catalog-sidebar-filters .ui-slider-range{
    background: #98A280;
    border-radius: 0 !important;
}
.catalog-sidebar-filters .ui-slider-handle{
    width: 12px !important;
    height: 12px !important;
    margin-top: 0px !important;
    cursor: pointer !important;
}

.catalog-sidebar-filters .ui-corner-all, 
.catalog-sidebar-filters.ui-corner-top, 
.catalog-sidebar-filters .ui-corner-right, 
.catalog-sidebar-filters .ui-corner-tr{
    border-radius: 0 !important;
}
.catalog-sidebar-filters .ui-slider-handle.ui-state-default.ui-corner-all {
    background: #2E731B !important;
    border: none;
    top: -6px;
    opacity: 1 !important;
}
/*./ ui slider*/
.mse2_number_inputs{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.mse2_number_inputs .col{
    width: calc(50% - 5px);
}
.mse2_number_inputs .form-group{
    position: relative;
}
.mse2_number_inputs .form-group span{
    position: absolute;
    left: 16px;
    top: 5px;
    font-size: 18px;
}
.mse2_number_inputs .form-control{
    height: 37px;
    border-radius: 0;
    font-size: 18px;
    color: #000000;
    padding-left: 40px;
}


/****** cart page*/

.cart-section .cart-body{
    margin-bottom: 20px;
}

.cart-section .cart-item{
    border-bottom: 1px solid #E5E5E5;
    padding: 30px 0;
}
.cart-section .cart-item:last-child{
    border-bottom: none;
}
.cart-section .cart-item-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap:wrap;
    padding-right: 30px;
    position: relative;
    padding-left: 65px;
}
.cart-section .cart-item-inner .item-num{
    position: absolute;
    top: 0;
    left: 0;
}

.cart-section .remove{
    position: absolute;
    right: 0;
    top: calc(50% - 10px);
}
.cart-section .remove button{
    cursor: pointer;
    color: #6C6C6D;
    padding: 0;
    border: 0;
    background: transparent;
    margin-top: -3px;
}
.cart-section .remove svg{
    width: 26px;
    height: 26px;
    transition: all 200ms ease-out;
}
.cart-section .remove:hover svg{
    transform: rotate(180deg);
}
.cart-section .left-part{
    width: 145px;
    align-self: flex-start;
}
.cart-section .left-part a{
    display: block;
}
.cart-section .left-part a:hover{
    opacity:0.8;
}
.cart-section .right-part{
    width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cart-section .center-part{
    width: calc(100% - 545px);
    padding: 0 30px;
}
.cart-section .item-article{
    font-size: 12px;
    font-weight: 300;
    color: #626262;
    margin-bottom: 10px;
}
.item-product-information-option span{
    font-weight: 600;
}

.item-counter-inner,
.item-counter{
    width: 160px;
    height: 54px;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0 20px;
    background: #FAFAFA;
    border: 1px solid #ECECEC;
    border-radius: 2px;
    padding: 0 15px;
}
.product-page-price-wrapper .item-counter{
    width: 130px;
    margin-left: 0;
    margin-right: 0;
    padding: 0 10px;
}
.item-counter-inner .input-number,
.item-counter .input-number{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 26px;
    width: 60px;
    padding: 0 5px;
    text-align: center;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    background: #fafafa;
    border: none;
    margin: 0;
    color: #6C6C6D;
}
.item-counter-inner button,
.item-counter button{
    width: 24px;
    height: 24px;
    padding: 0;
    border: none;
    background: transparent;
    transition: all 200ms ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    position: static;
}
.item-counter-inner button svg,
.item-counter button svg{
    width: 12px;
    height: 12px;
}
.item-counter-inner button path,
.item-counter button path{
    stroke: #000;
}
.count-input-wrapper{
    position: relative;
    display: inline-block;
}
.count-input-wrapper:before{
    content:"";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.cart-section .technikal-btn{
    opacity: 0;
    visibility: hidden;
    height: 0;
    width: 0;
    position: absolute;
}
.cart-section .item-price-title,
.cart-section .item-cost-title{
    font-weight: 500;
    color: #747474;
}
.cart-section .item-cost,
.cart-section .item-price{
    font-size: 22px;
    font-weight: 600;
}

.cart-section .item-product-information-title a{
    color: #000;
    font-size: 17px;
    font-weight: 700;
}
.cart-section .item-product-information-title a:hover{
    text-decoration: underline;
}
.cart-section .cart-total{
    display: flex;
    justify-content: space-between;
}
.cart-section .cart-total .col1 a{
    color: #000;
    text-decoration: underline;
    font-size: 16px;
}
.cart-section .cart-total .col1 a:hover{
    text-decoration: none;
}
.cart-section .cart-total .col2{
    text-align: right;
}
.cart-section .cart-total .item{
    font-size: 26px;
    line-height: 1.2;
    font-weight: 500;
}
.cart-section .cart-total .item-title{
    color: #AFAFAF;
}
.cart-section .cart-total .item-value{
    margin-left: 10px;
}

.catalog .item-counter .input-number {
    width: 40px;
}

.catalog .item-counter {
    width: 120px;
    height: 46px;
    padding: 0 5px;
    margin: 0;
}
.catalog .cart-add {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media(max-width:991px) {
    .cart-add {
        flex-wrap: wrap;
    }
    .catalog .item-counter {
        width: 100%;
        
        height: 40px;
    }
    .cart-add .btn {
        width: 100%;
        height: 40px;
    }
    .col-6 {
        margin-bottom: 15px;
    width: 100%;
    }
}

/* alerts */
.alert {
    padding: 15px;
    border: 1px solid transparent;
    border-radius: 4px;
}
.alert-success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #468847
}

.alert-success hr {
    border-top-color: #c9e2b3
}

.alert-success .alert-link {
    color: #356635
}

.alert-info {
    background-color: #d9edf7;
    border-color: #bce8f1;
    color: #3a87ad
}

.alert-info hr {
    border-top-color: #a6e1ec
}

.alert-info .alert-link {
    color: #2d6987
}

.alert-warning {
    background-color: #fcf8e3;
    border-color: #faebcc;
    color: #c09853
}

.alert-warning hr {
    border-top-color: #f7e1b5
}

.alert-warning .alert-link {
    color: #a47e3c
}

.alert-danger {
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #b94a48
}

.alert-danger hr {
    border-top-color: #e4b9c0
}

.alert-danger .alert-link {
    color: #953b39
}
/* /.alerts */
.cart-item .item-colors .item-title{
    font-size: 13px;
    color: #999999;
}
.cart-item.cart-item-header{
    padding-bottom: 10px;
}
.cart-item.cart-item-header *{
    color: #999999;
    font-size: 13px;
    font-weight: normal;
}
.cart-item.cart-item-header .item-price{
    width: calc(50% - 100px);
    text-align: right;
}
.cart-item.cart-item-header .item-cost{
    width: calc(50% - 100px);
    text-align: left;
}
.cart-item.cart-item-header .count{
    width: 160px;
    margin: 0 20px;
    text-align: center;
}

@media(max-width:991px){
    .cart-item.cart-item-header{
        display: none;
    }
    .cart-section .center-part{
        padding: 0 20px;
        width: calc(100% - 425px);
    }
    .item-product-information-title a{
        font-size: 13px;
    }
    .cart-section .cart-item {
        padding: 15px 30px 15px 15px;
    }
    .cart-section .item-counter-inner {
        height: 44px;
        margin: 0 15px;
        width: 100px;
        padding: 0 5px;
    }
    .cart-section .item-counter-inner button{
        width: 20px;
    }
    .cart-section .item-counter-inner .input-number{
        width: 40px;
        font-size: 14px;
        padding: 0;
    }
    .cart-section .item-cost, 
    .cart-section .item-price{
        font-size: 18px;
    }
    .cart-section .right-part{
        width: 320px;
        justify-content: flex-start;
    }
    .cart-section .cart-total{
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .cart-section .cart-total .col1{
        width: 100%;
        order: 2;
    }
    .cart-section .cart-total .col2{
        width: 100%;
        order: 1;
    }
    .cart-section .cart-item-inner{
        justify-content: flex-start;
    }
    .cart-section .left-part {
        width: 320px;
        max-width: 100%;
        margin-bottom: 15px;
    }
    .cart-section .cart-item-inner{
        padding-left: 35px;
    }
    .cart-section .remove{
        top: 3px;
        right: -5px;
    }
}
@media(max-width:767px){
    
    .cart-section .cart-item{
        padding: 20px 25px 20px 0;
    }
    .cart-section .right-part{
        width: 320px;
        margin-top: 20px;
        max-width:100%;
        justify-content: flex-start;
    }
    .cart-section .center-part{
        padding: 15px 0 0;
        width: 100%;
    }
    .cart-section .cart-total {
        padding: 5px 20px;
        font-size: 14px;
        justify-content: flex-start;
    }
    .ms2_total_count_wrapper {
        margin: 0 4px;
    }
    .ms2_total_cost_wrapper {
        font-size: 16px;
    }
    .cart-section .item-product-information-title a{
        display: inline-block;
        line-height: 1.3;
        margin-bottom: 5px;
    }
    .cart-section .item-article{
        font-size: 13px;
    }
    .cart-section .right-part{
        width: 100%;
    }
    .cart-section .cart-item-inner{
        padding-right: 10px;
    }
    .cart-section .item-cost, 
    .cart-section .item-price{
        font-size: 16px;
    }
}

@media(max-width:499px){
    .cart-section .cart-item-inner{
        padding-left: 0;
    }
    .cart-section .cart-item-inner .item-num{
        display: none;
    }
    .cart-section .cart-item-inner{
        position: static;
    }
    .cart-section .remove{
        top: 20px;
    }
}
/****** /. cart page*/


/* order page */
.order-section-body{
    background: #F6F6F6;
    padding: 40px;
    margin-bottom: 50px;
    border-radius: 13px;
    border: 1px dashed #BABABA;
}
.order-section-footer{
    text-align: center;
}
.order-section-title{
    font-size: 22px;
    margin-bottom: 30px;
    text-align: center;
}
.order-section-deliveries .form-group{
    display: flex;
    border-bottom: 1px solid #D9D9D9;
    position: relative;
    margin-bottom: 25px;
}
.order-section-deliveries .form-group input{
    width: 1px;
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    opacity: 0;
    z-index: -10;
}
.order-section-deliveries .form-group label{
    display: inline-flex;
    align-items: center;
    height: 42px;
    cursor: pointer;
    text-align: center;
    border: 1px solid transparent;
    border-bottom: none;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    color: #333333;
    transition: all 200ms ease-out;
    padding: 0 35px;
    position: relative;
    border-radius: 5px 5px 0 0;
}
.order-section-deliveries .form-group input:checked + label{
    border-color: #D9D9D9;
}

.order-section-deliveries .form-group input:checked + label:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: #F6F6F6;
}

.order-section-payments .form-group{
    display: flex;
    flex-wrap: wrap;
}
.order-section-payments .form-group .checkbox{
    position: relative;
}
.order-section-payments .form-group .checkbox input{
    width: 1px;
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    opacity: 0;
    z-index: -10;
}

.order-section-payments .checkbox label{
    position: relative;
    padding-left: 27px;
    margin-right: 40px;
    margin-bottom: 15px;
    display: block;
}
.order-section-payments .form-group .checkbox:last-child label{
    margin-right: 0;
}
.order-section-payments .checkbox .item-title{
    font-weight: 500;
    margin-bottom: 4px;
}
.order-section-payments .checkbox .item-description{
    font-size: 12px;
    margin-bottom: 6px;
    font-weight: 300;
}
.order-section-payments .checkbox .label-icon{
    width: 18px;
    height: 18px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.order-section-payments .checkbox .label-icon:after{
    content: "";
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
    display: block;
    opacity: 0;
    transform: scale(0);
    transition: all ease-out 300ms;
}

.order-section-payments .checkbox input:checked + .label-icon:after{
    opacity: 1;
    transform: scale(1);
}

.receiver-block{
    background: #E7E7E7;
    padding: 30px;
    border-radius: 12px;
}
.receiver-block .form-row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.receiver-block .form-row .form-group{
    width: calc(33.3333% - 10px);
}
.receiver-block .for-entity,
.receiver-block .for-individual{
    display: none;
}
.receiver-block .for-entity.active,
.receiver-block .for-individual.active{
    display: block;
}

.order-section .btn.disabled, .order-section .btn.disabled:hover {
    background: #dadada !important;
    border-color: #dadada !important;
    color: #959595 !important;
    cursor: default;
}
@media(max-width: 991px){
    .receiver-block .form-row .form-group{
        width: calc(50% - 8px);
    }
}
@media(max-width: 767px){
    .order-section-body{
        padding: 15px;
    }
    .receiver-block{
        padding: 15px;
    }
    .receiver-block .form-row .form-group{
        width: 100%;
    }
}
@media(max-width: 599px){
    .order-section-deliveries .form-group label{
        padding: 0 15px;
        font-size: 13px;
    }
}
@media(max-width: 399px){
    .order-section-deliveries .form-group{
        border-bottom: none;
        flex-wrap: wrap;
    }
    .order-section-deliveries .checkbox{
        width: 100%;
        margin-bottom: 15px;
    }
    .order-section-deliveries .form-group input:checked + label:after{
        display: none;
    }
    .order-section-deliveries .form-group label{
        border: 1px solid #ccc;
        width: 100%;
        border-radius: 5px;
        text-align: center;
        justify-content: center;
    }
    .order-section-deliveries .form-group input:checked + label{
        background: #2E731B;
        border-color: #2E731B;
        color: #fff;
    }
}
/* /. order page */

.aside-menu .active  {
    background: #f1f5f5;
}
.aside-menu .active a {
    color: #2E731B;
}


.get-options-container{
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-top: 20px;
}
.get-options-container .gopt-col{
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 20px;
    width: 50%;
}
.get-options-container .gopt-col label{
    font-weight: 500;
    display: inline-block;
    margin-bottom: 5px;
    color: #393939;
    font-size: 16px;
}
.get-options-container .gopt-col select{
    width: 100%;
    background: #F8F8F8;
    border: 1px solid #ECECEC;
    font-weight: 500;
    font-size: 20px;
    padding: 10px 5px;
    color: #848484;
}


.catalog .item-colors {
    position: relative;
    z-index: 20;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.catalog .item-colors-item {
    padding: 4px;
}
.catalog .item-colors-img {
    width: 18px;
    height: 18px;
    transition: all 0.2s;
}
.catalog .item-colors-item._active .item-colors-img {
    transform: scale(1.2);
}




/* news */
.news{
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(4, 1fr);
}
.news .item{
    padding-bottom: 10px;
    height: auto;
    margin-bottom: 30px;
    background: #F9F9F9;
    border-radius: 3px;
    overflow: hidden;
}
.news .btns {
    text-align: center;
}
.news .btn-item {
    font-size: 18px;
    font-weight: 400;
    background: #242624;
    color: #fff;
    padding: 10px 35px;
    
}
.news .item img{
    width: 100%;
}
.news .item-date{
    position: absolute;
    left: 7px;
    bottom: 7px;
    color: #fff;
    z-index: 2;
    line-height: 1.2;
    font-size: 12px;
}
.news .item-date-header{
    font-weight: 700;
    font-size: 18px;
}
.news .item-content{
    padding: 10px;
    color: #242424;
    font-size: 13px;
    line-height: 1.3;
}
.news .item-title{
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
}
.news-page-row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.news-page-row .col-left{
    width: calc(100% - 490px);
}
.news-page-row .col-right{
    width: 460px;
}
.page-date{
    font-weight: 600;
}
.page-date .inner{
    display: inline-block;
    background: #2E731B;
    color: #fff;
    padding: 7px 30px 5px 20px;
}
.article-img .page-date{
    position: absolute;
    top: 40px;
    left: 0;
    font-size: 14px;
}
.page-date .day{
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
}
.aside-news .item{
    margin-bottom: 20px;
    font-size: 14px;
}
.aside-news .item a{
    color: #989898;
    text-decoration: underline;
}
.aside-news .item a:hover{
    text-decoration: none;
}
.aside-news .item-text{
    margin-bottom: 15px;
}
.aside-news .item-title{
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 15px;
    line-height: 1.4;
}
.aside-news .item-date{
    color: #989898;
    margin-bottom: 10px;
}
@media(max-width:1299px){
    .news .item-content{
        font-size: 12px;
    }
    .news-page-row .col-left{
        width: calc(100% - 430px);
    }
    .news-page-row .col-right{
        width: 400px;
    }
}
@media(max-width:991px){
    .news{
        grid-template-columns: repeat(3, 1fr);
    }
    .index-template .news > div:nth-of-type(4){
        display: none;
    }
    .news-page-row .col-left{
        width: calc(100% - 330px);
    }
    .news-page-row .col-right{
        width: 300px;
    }
    .aside-news .item {
        margin-bottom: 25px;
        font-size: 12px;
    }
    .aside-news .item-text{
        margin-bottom: 10px;
    }
}
@media(max-width:767px){
    .news{
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }
    .index-template .news > div:nth-of-type(4){
        display: block;
    }
    .news-page-row .col-left{
        width: 100%;
        margin-bottom: 40px;
    }
    .news-page-row .col-right{
        width: 100%;
    }
    .article-img .page-date{
        top: 10px;
        font-size: 12px;
    }
    .page-date .day{
        font-size: 20px;
    }
    .page-date .inner {
        padding: 7px 10px 5px 7px;
    }
}
@media(max-width:499px){
    .news{
        grid-template-columns: 1fr;
        grid-gap: 30px;
    }
}
/* /. news */


/* search */

.header-search-inner{
    position: relative;
    width: 220px;
    max-width: 100%;
    margin-right: 15px;
}
.main-search-input{
    width: 100%;
    display: flex;
    height: 38px;
    background: #fff;
    border: 1px solid #c7c7c7;
    border-radius: 20px;
    font-size: 13px;
    padding: 0 30px 0 10px;
    align-items: center;
}
.header-search-inner .search-btn{
    width: 22px;
    background: none;
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    padding: 0;
    border: none;
    transition: all ease-out 300ms;
}
.header-search-inner .search-btn:hover{
    background: #000;
}

/* /. search */

.catalog .item-chars {
	margin-bottom: 7px;
}

.catalog .item-chars-row, .msoptionsprice-product .item-chars-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	font-size: 12px;
	color: #000;
	margin-bottom: 2px;
}
.msoptionsprice-product .item-chars-row {
    font-size: 13px;
    padding: 0 15px;
}

.catalog .item-chars-name {
	width: 40%;
	color: #999999;
}

.catalog .item-chars-value, .msoptionsprice-product .item-chars-value{
	
	padding-left: 10px;
}
.catalog .item-chars-value{
    width: 60%;
}

.catalog .avl-row .item-chars-name,
.catalog .avl-row .item-chars-value,
.msoptionsprice-product .avl-row .item-chars-value,
.msoptionsprice-product .avl-row .item-chars-name
{
	color: #38B26D;
}


/* reviews */
.reviews-section{
    width: 100%;
    overflow: hidden;
}
.reviews .item-rating{
    line-height: 1;
}
.reviews .item-rating svg{
    width: 18px;
    height: 18px;
}
.reviews .item-rating svg path{
    fill: #F5AF17;
    stroke: #F5AF17;
}
.reviews .item-rating.rating-4 svg:nth-last-of-type(1) path{
    fill: transparent;
    stroke: #ccc;
}
.reviews .item-rating.rating-3 svg:nth-last-of-type(1) path,
.reviews .item-rating.rating-3 svg:nth-last-of-type(2) path{
    fill: transparent;
    stroke: #ccc;
}
.reviews .item-rating.rating-2 svg:nth-last-of-type(1) path,
.reviews .item-rating.rating-2 svg:nth-last-of-type(2) path,
.reviews .item-rating.rating-2 svg:nth-last-of-type(3) path{
    fill: transparent;
    stroke: #ccc;
}
.reviews .item-rating.rating-1 svg:nth-last-of-type(1) path,
.reviews .item-rating.rating-1 svg:nth-last-of-type(2) path,
.reviews .item-rating.rating-1 svg:nth-last-of-type(3) path,
.reviews .item-rating.rating-1 svg:nth-last-of-type(4) path{
    fill: transparent;
    stroke: #ccc;
}

.reviews{
    display: flex;
    flex-wrap: wrap;
    margin-left: -2px;
    margin-right: -2px;
}
.reviews .col{
    width: 33.3333%;
    padding-left: 2px;
    padding-right: 2px;
    margin-bottom: 40px;
}
.reviews.reviews-page{
    margin-left: -15px;
    margin-right: -15px;
}
.reviews.reviews-page .col{
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}
.reviews .item{
    border: 1px solid #E8E8E8;
    height: 100%;
    border-radius: 5px;
    padding: 15px;
    width: 470px;
    max-width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.reviews .item-text{
    font-size: 14px;
    line-height: 1.4;
    color: #000;
    text-align: center;
    margin-bottom: 20px;
}
.reviews .item-name{
    color: #000;
    font-size: 14px;
    margin-top: 6px;
    line-height: 1.2;
}
.reviews .item-date{
    font-size: 14px;
    line-height: 1.2;
    color: #BBBBBB;
    margin-top: 3px;
}
.reviews .item-text{
    font-size: 14px;
}

.reviews.reviews-carousel{
    display: block;
    margin-left: 0;
    margin-right: 0;
}
.reviews-carousel > div:not(:first-of-type){
    display: none;
}
.reviews-carousel.slick-slider .item{
    width: 100%;
}
.reviews-carousel .col{
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 20px;
}
.reviews-carousel .slick-track{
    display: flex;
    flex-wrap: wrap;
}
.reviews-carousel .slick-slide {
    height: inherit;
}
.reviews-carousel .slick-slide > div{
    height: 100%;
}
.reviews-carousel .slick-slide .col{
    height: 100%;
}
@media(max-width: 1199px){
    .reviews.reviews-page .col{
        width: 33.3333%;
    }
}
@media(max-width: 991px){
    .reviews .col{
        width: 50%;
        margin-bottom: 30px;
    }
    .reviews.reviews-page .col{
        width: 50%;
    }
}
@media(max-width: 767px){
    .reviews .col{
        width: 100%;
    }
    .reviews.reviews-page .col{
        width: 100%;
    }
    .reviews .col{
        margin-bottom: 20px;
    }
}
@media(max-width: 399px){
    .reviews .item{
        padding: 12px;
    }
    .reviews .item-rating svg{
        width: 14px;
        height: 14px;
    }
    .reviews .item-name{
        font-size: 14px;
    }
}
/* /. reviews */

.searchBlock {
    padding: 15px 35px 15px 15px;
}




/* Cookie Dialog */
#gdpr-cookie-message {
    position: fixed;
    z-index: 9999;
    right: 30px;
    bottom: 30px;
    max-width: 400px;
    padding: 20px 15px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 4px 18.9px -3px rgba(0, 0, 0, 0.25);
    margin-left: 30px;
    font-family: system-ui;
}
#gdpr-cookie-message h4 {
    color: #606060;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 18px;
}
#gdpr-cookie-message h5 {
    color: #606060;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 18px;
}

#gdpr-cookie-message p, #gdpr-cookie-message ul {
    color: #909090;
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    margin-bottom: 13px;
}
#gdpr-cookie-message p:last-child {
    margin-bottom: 0;
    text-align: right;
}
#gdpr-cookie-message li {
    width: 49%;
    display: inline-block;
}
#gdpr-cookie-message a {
    color: #2E731B;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: none;
    transition: all 0.3s ease-in;
}

#gdpr-cookie-message button,
button#ihavecookiesBtn {
    border: none;
    background: #2E731B;
    color: white;
    font-size: 15px;
    font-weight: 400;
    padding: 7px 24px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease-in;
}
#gdpr-cookie-message button:hover {
    filter: brightness(115%);
    color: #fff;
    transition: all 0.3s ease-in;
}
button#gdpr-cookie-advanced {
    border: 1px solid #0ECCDD;
    display:none;
    background: white;
    color: #0ECCDD;
}
#gdpr-cookie-message button:disabled {
    opacity: 0.3;
}
#gdpr-cookie-message input[type="checkbox"] {
    float: none;
    margin-top: 0;
    margin-right: 5px;
}