@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';
    color: #4A4949;
    font-size: 16px;
    line-height: 1.5;
}
.index-template{
    background: url(../images/bg1.png) 50% 0 no-repeat;
    background-size: 100% auto;
}

h1,
.title-h1 {
    font-weight: 300;
    font-size: 46px;
    line-height: 114.7%;
    margin-bottom: 30px;
}

h2,
.title-h2 {
    font-weight: 300;
    font-size: 36px;
    line-height: 114.7%;
    margin-bottom: 25px;
}

h3,
.title-h3 {
    font-weight: 300;
    font-size: 30px;
    line-height: 114.7%;
    margin-bottom: 20px;
}

h4,
.title-h4 {
    font-size: 24px;
    line-height: 114.7%;
    margin-bottom: 20px;
}

h5,
.title-h5 {
    font-size: 20px;
    line-height: 114.7%;
    margin-bottom: 20px;
}
h6,
.title-h6 {
    font-size: 18px;
    line-height: 114.7%;
    margin-bottom: 15px;
}

@media(max-width: 991px) {
    h1,
    .title-h1 {
        font-size: 42px;
        margin-bottom: 25px;
    }

    h2,
    .title-h2 {
        font-size: 32px;
    }

    h3,
    .title-h3 {
        font-size: 28px;
    }

    h4,
    .title-h4 {
        font-size: 22px;
    }

    h5,
    .title-h5 {
        font-size: 18px;
    }
    h6,
    .title-h6 {
        font-size: 16px;
    }
}

@media(max-width: 767px) {
    h1,
    .title-h1 {
        font-size: 32px;
    }

    h2,
    .title-h2 {
        font-size: 28px;
    }

    h3,
    .title-h3 {
        font-size: 24px;
    }

    h4,
    .title-h4 {
        font-size: 20px;
    }
}

a {
    color: #EF7D00;
}

a:hover {
    color: #333;
}

a.invert {
    color: #333;
}

a.invert:hover {
    color: #EF7D00;
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}
.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

.btn{
    display: inline-flex;
    height: 26px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    padding: 0 12px;
    border: none;
    border-radius: 12px;
    font-size: 12px;
    color: #FFFFFF;
    background: #000000;
    text-align: center;
    transition: all 300ms ease-out;
}
.btn:hover{
    background: #FF7000;
    color: #000;
}
.btn-invert{
    background: #EF7D00;
    color: #000;
}
.btn-invert:hover{
    background: #000;
    color: #fff;
}
.btn-min{
    height: 20px;
    padding: 0 17px;
}

/* Header */
.header-inner{
    min-height: 196px;
    padding: 12px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.header-inner .col{
    width: 33.3333%;
}
.header-address{
    font-size: 13px;
    margin-bottom: 41px;
}
.header-slogan{
    padding-left: 20px;
}
.header-slogan-title{
    font-weight: 600;
    font-size: 26px;
    line-height: 1.1;
}
.header-slogan-subtitle{
    font-size: 18px;
    line-height: 1.2;
    margin-top: 5px;
}

.header-contacts-wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.header-callback{
    width: 120px;
}
.header-contacts{
    padding-left: 20px;
}
.header-contacts-row{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.hc-col1{
    width: 170px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.hc-col2{
    width: 74px;
}
.header-contacts-item-icon{
    width: 20px;
}
.header-contacts-item-body{
    width: calc(100% - 20px);
    padding-left: 5px;
}
.header-mail a{
    font-size: 12px;
    color: #000;
    text-decoration: underline;
}
.header-mail a:hover{
    text-decoration: none;
}
.header-phone a{
    color: #000;
    font-size: 18px;
    font-weight: 500;
}
.header-phone a:hover{
    color: #EF7D00;
}
.header-messengers{
    padding-left: 5px;
    display: flex;
    justify-content: flex-end;
}
.header-messengers a:not(:first-of-type){
    margin-left: 8px;
}

.header-inner .col3{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.header-shop-panel-wrapper{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header-shop-panel{
    position: relative;
    min-width: 210px;
    padding: 3px 24px 0;
    height: 42px;
    background: url(../images/pattern1.png) #404040;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.header-favorites{
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 20px;
    color: #fff;
}
.header-favorites svg{
    width: 18px;
    position: relative;
    top: -1px;
}
.header-favorites svg path{
    transition: all ease-out 300ms;
}
.favorites_count {
    top: -5px;
    right: -11px;
    background: #EF7D00;
    color: #fff;
    position: absolute;
    font-size: 10px;
    font-weight: 300;
    line-height: 11px;
    text-align: center;
    padding: 2px 4px;
    border-radius: 10px;
    min-width: 15px;
}
.header-cart{
    display: flex;
    height: 18px;
    position: relative;
}
.header-cart svg{
    height: 18px;
}
.header-cart-inner{
    display: flex;
    font-size: 12px;
    font-weight: 300;
    color: #fff;
    position: relative;
    height: 15px;
}
.header-cart .ms2_total_count {
    top: -3px;
    right: -11px;
    background: #EF7D00;
    color: #fff;
    position: absolute;
    font-size: 10px;
    font-weight: 300;
    line-height: 11px;
    text-align: center;
    padding: 2px 4px;
    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-title{
    color: #fff;
    white-space: nowrap;
    font-size: 12px;
    line-height: 1;
    margin-left: 20px;
    padding-top: 2px;
}
.header-cart-title a{
    color: #fff;
}


/* top-nav-section */
.top-nav{
    background: url(../images/pattern1.png) #404040;
    border-radius: 12px;
}
.top-nav > ul{
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.top-nav li{
    position: relative;
}
.top-nav > ul > li{
    margin: 0 30px;
}
.top-nav a{
    color: #fff;
    text-decoration: underline;
    font-size: 15px;
    font-weight: 500;
}
.top-nav a:hover{
    text-decoration: none;
}
.top-nav .active > a{
    color: #EF7D00;
}
.top-nav ul ul{
    display: none;
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    padding: 10px 0 0;
    width: 250px;
    background: #404040;
    z-index: 200;
}
.top-nav ul ul:before{
    content:"";
    position: absolute;
    left: 0;
    right: 0;
    top: -15px;
    height: 15px;
}
.top-nav li:hover > ul{
    display: block;
}
.top-nav ul ul li{
    margin-bottom: 10px;
}
.top-nav ul ul li a{
    padding: 5px 50px 5px 20px;
    display: block;
}
.top-nav ul ul li:hover > a{
    background: #5A5A5A;
}
.top-nav ul ul ul{
    top: 0;
    left: calc(100% - 30px);
    background: #5A5A5A;
}
/* /. top-nav-section */
.header-logo {
    text-align: center;
}
@media(max-width: 1199px){
    
    .header-slogan-title{
        font-size: 22px;
    }
    .header-callback{
        width: 100%;
        justify-content: flex-end;
        display: flex;
        margin-bottom: 10px;
    }
    .header-contacts{
        padding-left: 0;
    }
    .hc-col1{
        order: 2;
        width: 160px;
    }
    .header-contacts-item-body {
        padding-left: 0;
        text-align: right;
    }
    .header-messengers {
        padding-left: 0;
        padding-right: 10px;
    }
    .top-nav > ul > li {
        margin: 0 20px;
    }
}
@media(max-width: 1099px){
    .top-nav > ul > li {
        margin: 0 18px;
    }
    .top-nav a{
        font-size: 14px;
    }
}
@media(max-width: 991px){
    .top-nav-section{
        display: none;
    }
    .header-shop-panel-wrapper{
        position: fixed;
        z-index: 500;
        top: 0;
        left: 0;
        right: 0;
        padding: 0 15px;
        height: 42px;
        background: url(../images/pattern1.png) #404040;
        display: flex;
        align-items: center;
    }
    .header-push{
        height: 42px;
    }
    .header-shop-panel {
        min-width: 1px;
        padding: 0;
        height: 100%;
        background: transparent;
        border-radius: 0;
        justify-content: flex-end;
    }
    .header-slogan-title {
        font-size: 17px;
    }
    .header-address {
        font-size: 11px;
        margin-bottom: 35px;
    }
}
@media(max-width: 767px){
    .header-inner .col{
        width: 100%;
        text-align: center;
    }
    .header-address{
        margin-bottom: 10px;
        font-size: 12px;
    }
    
    .header-logo{
        margin-bottom: 20px;
    }
    .header-inner .col3{
        justify-content: center;
    }
    .header-contacts-wrapper{
        justify-content: center;
    }
    .header-callback{
        justify-content: center;
    }
    .hc-col2{
        padding: 0;
        width: 100%;
        justify-content: center;
    }
    .hc-col1{
        margin: auto;
    }
    .header-messengers{
        margin-bottom: 10px;
    }
}
/** /. Header **/

.main-content{
    padding-top: 12px;
}
.footer-push{
    height: 70px;
}

/* first-section */
.first-section{
    margin-bottom: 12px;
}
.first-section-inner{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.first-section-inner .col1{
    width: 66%;
    padding-right: 40px;
}
.first-section-inner .col2{
    width: 34%;
    padding-left: 40px;
}
.first-section-inner .col1.fullwidth{
    width: 100%;
    padding-right: 0;
}
.first-section-content{
    background: url(../images/bg2.png) #F8CF67;
    padding: 50px;
    border-radius: 12px;
}
.fsc-title{
    font-size: 29px;
    line-height: 1.2;
    margin-bottom: 20px;
}
.fsc-text{
    font-size: 22px;
    font-weight: 300;
    line-height: 1.3;
}
.fsc-bottom-title{
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    margin-top: 20px;
}

.top-slider-wrapper{
    padding-bottom: 40px;
    width: 100%;
    overflow: hidden;
}
.top-slider{
    margin-left: -15px;
    margin-right: -15px;
}
.top-slider .item{
    padding-left: 15px;
    padding-right: 15px;
}
.top-slider .item-inner{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}
.top-slider .item-left{
    width: calc(100% - 380px);
    padding-right: 15px;
}
.top-slider .item-right{
    width: 380px;
    display: flex;
    justify-content: flex-end;
    position: relative;
    padding-bottom: 40px;
    padding-left: 15px;
}
.top-slider .item-stickers{
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}
.top-slider .item-sticker:not(:last-child){
    margin-bottom: 6px;
}
.top-slider .item-sticker span{
    display: inline-flex;
    height: 26px;
    width: 114px;
    background: #F8CF67;
    border-radius: 12px;
    color: #000;
    font-size: 12px;
    line-height: 1.1;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}
.top-slider .item-sale{
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
}
.top-slider .item-sale-text{
    font-size: 40px;
    font-weight: 700;
}
.top-slider .itemsale-num{
    width: 114px;
    height: 114px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #EF7D00;
    color: #fff;
    line-height: 1;
    font-size: 50px;
    font-weight: 700;
    margin-left: 10px;
}
.top-slider .item-title{
    font-size: 44px;
    line-height: 1.1;
    margin-bottom: 20px;
}
.top-slider .item-text{
    font-weight: 300;
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 20px;
}
.top-slider > div:not(:first-of-type){
    display: none;
}
.top-slider .slick-prev{
    top: auto;
    bottom: -40px;
    left: calc(50% - 50px);
}
.top-slider .slick-next{
    top: auto;
    left: auto;
    bottom: -40px;
    right: calc(50% - 50px);
}
@media(max-width: 1459px){
    .first-section-content {
        padding: 2vw;
    }
    .fsc-title{
        font-size: 2vw;
    }
    .fsc-text{
        font-size: 1.5vw;
    }
    .fsc-bottom-title{
        font-size: 3vw;
    }
    .first-section-inner .col2{
        width: 30%;
        padding-left: 30px;
    }
    .first-section-inner .col1{
        width: 70%;
        padding-right: 30px;
    }
    .top-slider .item-title{
        font-size: 2.8vw;
        margin-bottom: 1.5vw;
    }
    .top-slider .item-text{
        font-size: 1.5vw;
    }
    .top-slider .item-sale-text{
        font-size: 30px;
    }
    .top-slider .itemsale-num {
        width: 90px;
        height: 90px;
        font-size: 36px;
        margin-left: 5px;
    }
}
@media(max-width: 1099px){
    .first-section-inner .col1{
        width: 100%;
        padding-right: 0;
    }
    .first-section-inner .col2{
        width: 100%;
        padding-left: 0;
        margin-top: 40px;
    }
    .top-slider-wrapper{
        padding-bottom: 30px;
    }
    .top-slider .slick-prev,
    .top-slider .slick-next{
        bottom: -30px;
    }
    .top-slider .item-title{
        font-size: 3.8vw;
        margin-bottom: 2.5vw;
    }
    .top-slider .item-text {
        font-size: 2.2vw;
        margin-bottom: 2vw;
    }
    .first-section-content {
        padding: 40px;
    }
    .fsc-title {
        font-size: 30px;
    }
    .fsc-text{
        font-size: 24px;
    }
    .fsc-bottom-title {
        font-size: 40px;
    }
}
@media(max-width: 767px){
    .top-slider .item-left{
        width: 100%;
        text-align: center;
        order:2;
        padding-right: 0;
        margin: 30px 0;
    }
    .top-slider .item-right{
        padding: 0;
        max-width: 100%;
        margin: auto;
    }
    .top-slider .item-stickers{
        align-items: flex-start;
        padding-top: 20px;
    }
    .top-slider .item-sale{
        width: 100%;
        background: rgba(0,0,0,.2);
        padding: 10px;
        border-radius: 12px;
        justify-content: center;
    }
    .top-slider .item-sale-text {
        font-size: 24px;
        color: #fff;
    }
    .top-slider .itemsale-num {
        width: 60px;
        height: 60px;
        font-size: 22px;
        margin-left: 5px;
    }
    .top-slider .slick-prev {
        left: calc(50% - 35px);
    }
    .top-slider .slick-next {
        right: calc(50% - 35px);
    }
    .top-slider .item-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    .top-slider .item-text {
        font-size: 13px;
        margin-bottom: 20px;
    }
    .top-slider .item-left{
        margin-bottom: 10px;
    }
    .first-section-inner .col2{
        margin-top: 30px;
    }
    .first-section-content{
        padding: 20px;
    }
    .fsc-title{
        font-size: 18px;
    }
    .fsc-text{
        font-size: 14px;
    }
    .fsc-bottom-title{
        font-size: 26px;
    }
}
/* /. first-section */

/* features-section */
.features-section-text{
    background: #404040;
    color: #fff;
    border-radius: 12px;
    margin-bottom: 30px;
    padding: 40px;
    font-size: 20px;
    text-align: center;
}
.features-section-text p {
    margin: 0;
}
.features{
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    padding-top: 10px;
}
.features .col{
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
    text-align: center;
}
.features .item-title{
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 10px;
    padding-bottom: 25px;
    background: url(../images/bg3.svg) 50% bottom no-repeat;
    min-height: 80px;
}
@media(max-width: 1099px){
    .features .item-title br{
        display: none;
    }
    .features .item-title{
        font-size: 18px;
        min-height: 70px;
    }
    .features .item-text{
        font-size: 14px;
    }
}
@media(max-width: 991px){
    .features-section-text{
        padding: 30px;
        font-size: 18px;
    }
    .features .item-text{
        font-size: 12px;
    }
    .features{
        margin-left: -10px;
        margin-right: -10px;
    }
    .features .col{
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 20px;
    }
}
@media(max-width: 767px){
    .features-section-text{
        padding: 20px;
        font-size: 14px;
    }
    .features .col{
        width: 50%;
    }
}
@media(max-width: 399px){
    .features .col{
        width: 100%;
    }
}
/* /. features-section */


/* categories-section */
.categories-section{
    background: url(../images/bg4.png) 50% 0 / cover no-repeat;
    min-height: 1005px;
    color: #fff;
    padding: 90px 0;
}
.categories-section-title{
    font-size: 36px;
    line-height: 1.2;
    position: relative;
    margin-bottom: 70px;
}
.categories-section-title:before{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    height: 1px;
    background: #fff;
    width: calc(50% - 300px);
}
.categories-section-title:after{
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    height: 1px;
    background: #fff;
    width: calc(50% - 300px);
}
.catalog-categories{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: -5px;
    margin-right: -5px;
}
.catalog-categories .col{
    width: 33.3333%;
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 10px;
}
.catalog-categories .item{
    position: relative;
    border-radius: 12px;
    background: rgba(0,0,0,0.4);
    text-align: center;
    height: 100%;
    border: 1px solid rgba(255,255,255,.2);
    transition: all ease-out 300ms;
}
.catalog-categories .item:hover{
    background: #474646C9;
}
.catalog-categories .item-body{
    height: 100%;
    padding: 25px;
}
.catalog-categories .item-img{
    height: 204px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.catalog-categories .item-body .item-title{
    color: #7E7A7A;
    font-size: 26px;
    line-height: 1.2;
    padding-top: 15px;
}
.catalog-categories .item-hidden{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #474646C9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    transition: all ease-out 300ms;
    opacity: 0;
    visibility: hidden;
}
.catalog-categories .item:hover .item-hidden{
    opacity: 1;
    visibility: visible;
}
.catalog-categories .item-hidden ul{
    overflow: auto;
    width: 100%;
    height: 100%;
}
.catalog-categories .item-hidden li{
    margin: 10px 0;
}
.catalog-categories .item-hidden a{
    color: #fff;
    font-weight: 500;
    font-size: 26px;
}
.catalog-categories .item-hidden a:hover{
    color: #EF7D00;
}
.categories-section-description{
    padding-top: 50px;
    text-align: center;
    line-height: 1.3;
    font-size: 20px;
}

@media(max-width: 991px){
    .categories-section{
        padding: 70px 0;
    }
    .categories-section-title{
        font-size: 26px;
        margin-bottom: 50px;
    }
    .categories-section-title:before,
    .categories-section-title:after{
        width: calc(50% - 214px);
    }
    .catalog-categories .col{
        width: 50%;
    }
    .categories-section-description{
        padding-top: 40px;
        font-size: 18px;
    }
}
@media(max-width: 767px){
    .categories-section{
        padding: 50px 0;
    }
    .categories-section-title{
        margin-bottom: 30px;
    }
    .categories-section-title:before,
    .categories-section-title:after{
        display: none;
    }
    .categories-section-description{
        padding-top: 30px;
        font-size: 16px;
    }
}
@media(max-width: 699px){
    .catalog-categories .col{
        width: 100%;
    }
}
/* /. categories-section */


/* catalog */
.catalog-carousel-section{
    padding: 70px 0;
}
.base-template .catalog-carousel-section{
    padding-bottom: 0;
}
.section-title{
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 30px;
}
.catalog{
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.catalog .col{
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}
.catalog .item{
    height: 100%;
    border: 1px solid #E1E1E1;
    border-radius: 5px;
    background: #fff;
    position: relative;
    padding: 10px 10px 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: all ease-out 300ms;
}
.catalog .item:hover{
    border-color: #EF7D00;
}
.catalog .item-header{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
}
.catalog .item-article{
    font-size: 10px;
}
.catalog .item .item-favorites{
    line-height: 1;
    margin-left: 10px;
    height: 12px;
}
.catalog .item .msfavorites{
    position: relative;
    z-index: 30;
    text-decoration: none;
    color: #bdbdbd;
    display: inline-block;
}
.catalog .item .msfavorites svg{
    width: 16px;
    height: 16px;
    transition: all 200ms ease-out;
}
.catalog .item .msfavorites:hover{
    color: #D75D56;
}
.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-img{
    padding: 10px 0;
    height: 234px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.catalog .item-title{
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 10px;
    transition: all ease-out 300ms;
}
.catalog .item:hover .item-title{
    color: #EF7D00;
}
.catalog .item-chars{
    font-size: 12px;
}
.catalog .item-chars span{
    font-weight: 600;
}
.catalog .item-bottom{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px;
}
.catalog .item .item-prices{
    margin-bottom: 7px;
}
.catalog .item .item-old-price{
    text-decoration: line-through;
    font-weight: 300;
    font-size: 16px;
    margin-right: 15px;
    color: #AFAFAF;
}
.catalog .item .item-price{
    font-size: 20px;
    font-weight: 700;
    color: #000;
}
.catalog .item .btn{
    color: #fff;
    height: 20px;
    position: relative;
    z-index: 10;
}
.catalog-carousel{
    display: block;
}
.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 .item{
    height: 100%;
}
@media(max-width: 1459px){
    .main-column .catalog .col{
        width: 33.3333%;
    }
}
@media(max-width:1199px){
    .catalog .item-title{
        font-size: 17px;
    }
    .catalog {
        margin-left: -10px;
        margin-right: -10px;
    }
    .catalog .col{
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 20px;
    }
}
@media(max-width:991px){
    .catalog .col{
        width: 33.3333%;
    }
    .catalog-carousel-section {
        padding: 60px 0;
    }
    .main-column .catalog .col{
        width: 50%;
    }
}
@media(max-width:767px){
    .catalog-carousel-section {
        padding: 50px 0;
    }
    .catalog .col{
        width: 50%;
    }
}
@media(max-width:499px){
    .catalog .col,
    .main-column .catalog .col{
        width: 100%;
    }
}
/* /. catalog */

/* helpful-information-section */
.helpful-information-section{
    background: url(../images/ellipse.png) 50% 0 no-repeat, url(../images/bg6.jpg) 50% 0;
    background-attachment: fixed;
    padding-top: 100px;
    padding-bottom: 80px;
}
.about-constructor{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 1120px;
    max-width: 100%;
    margin: auto;
    justify-content: space-between;
}
.about-constructor .col1{
    width: calc(45% - 30px);
}
.about-constructor .col2{
    width: calc(55% - 30px);
}
.ac-content-item{
    background: rgba(0,0,0,0.3);
    padding: 30px;
    border-radius: 12px;
    color: #fff;
}
.ac-content-item .item-title{
    font-size: 50px;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 20px;
}
.ac-content-item .item-text{
    font-size: 22px;
    font-weight: 200;
    margin-bottom: 20px;
}
.ac-content-item .btn{
    color: #fff;
}
.faq-section{
    color: #fff;
    padding: 50px 0;
}
.faq-section-title,
.steps-section-title{
    font-size: 36px;
    line-height: 1.2;
    position: relative;
    margin-bottom: 30px;
    text-align: center;
}
.faq-section-title:before,
.steps-section-title:before{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    height: 1px;
    background: rgba(255,255,255,.5);
    width: calc(50% - 220px);
}
.faq-section-title:after,
.steps-section-title:after{
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    height: 1px;
    background: rgba(255,255,255,.5);
    width: calc(50% - 220px);
}
.accordeon{
    width: 1020px;
    margin: auto;
    max-width: 100%;
}
.accordeon .item{
    margin-bottom: 5px;
}
.accordeon .item-body {
    display: none;
    padding: 15px 30px;
    font-weight: 300;
}
.accordeon .item-head{
    min-height: 60px;
    padding: 15px 25px;
    background: rgba(0,0,0,0.4);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border-radius: 12px;
}
.accordeon .item-title{
    font-size: 20px;
    line-height: 1.35;
    width: calc(100% - 60px);
}
.accordeon .item-icon{
    width: 30px;
    height: 30px;
    position: relative;
}
.accordeon .item-icon:after,
.accordeon .item-icon:before{
    content: "";
    position: absolute;
    width: 16px;
    height: 2px;
    background: #fff;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease 0s;
}
.accordeon .item-icon:after{
    transform: translateY(-50%) rotate(90deg);
}

.accordeon .item-head:hover .item-icon:before,
.accordeon .item-head:hover .item-icon:after{
    background: #ef7d00;
}
.accordeon .item-head:hover .item-title,
.accordeon .item.active .item-title{
    color: #ef7d00;
}
.accordeon .item.active .item-icon:before{
    transform: translateY(-50%) rotate(45deg);
    background: #ef7d00;
}
.accordeon .item.active .item-icon:after{
    transform: translateY(-50%) rotate(-45deg);
    background: #ef7d00;
}
@media(max-width: 1099px){
    .ac-content-item {
        padding: 2.5vw;
    }
    .ac-content-item .item-title {
        font-size: 4vw;
        margin-bottom: 1.5vw;
    }
    .ac-content-item .item-text {
        font-size: 2vw;
        margin-bottom: 2vw;
    }
    .helpful-information-section {
        padding-top: 80px;
    }
}
@media(max-width: 991px){
    .helpful-information-section {
        padding-top: 70px;
    }
    .faq-section-title,
    .steps-section-title{
        font-size: 26px;
    }
    .faq-section-title:before,
    .faq-section-title:after,
    .steps-section-title:before,
    .steps-section-title:after{
        width: calc(50% - 160px);
    }
}
@media(max-width: 767px){
    .helpful-information-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .about-constructor .col1{
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }
    .about-constructor .col2{
        width: 100%;
        text-align: center;
    }
    .ac-content-item .item-title{
        font-size: 6vw;
        margin-bottom: 4vw;
    }
    .ac-content-item .item-text {
        font-size: 4vw;
        margin-bottom: 3vw;
    }
    .accordeon .item-body{
        padding: 15px;
    }
    .accordeon .item-head{
        padding: 10px 15px;
    }
    .accordeon .item-title{
        font-size: 16px;
    }
    .accordeon .item-body{
        font-size: 13px;
    }
    .faq-section-title:before,
    .faq-section-title:after,
    .steps-section-title:before,
    .steps-section-title:after{
        display: none;
    }
}
/* /. helpful-information-section */

/* steps-section */
.steps-section{
    color: #fff;
    width: 100%;
    overflow: hidden;
}
.steps{
    height: 280px;
    width: 1170px;
    max-width: 100%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.steps .col{
    width: 25%;
    min-height: 150px;
    position: relative;
}
.steps .item{
    display: flex;
    flex-wrap: wrap;
    width: 340px;
}
.steps .item-num{
    color: #FF7000;
    font-size: 100px;
    line-height: 0.5;
    font-weight: 200;
    width: 105px;
}
.steps .item-body{
    width: calc(100% - 105px);
    position: relative;
}
.steps .col1 .item-body{
    left: -20px;
}
.steps .item-title{
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 10px;
}
.steps .item-text{
    font-size: 14px;
    line-height: 1.3;
}
.steps .col1,
.steps .col4{
    align-self: flex-end;
}
.steps .col2{
    top: -40px;
    left: -60px;
}
.steps .col3{
    top: -70px;
}
.steps .col4{
    right: -30px;
    bottom: -30px;
}
.steps .col1:after{
    content: "";
    background: url(../images/steps-arrow.svg);
    width: 54px;
    height: 52px;
    position: absolute;
    left: 50%;
    top: -70px;
}
.steps .col2:after{
    content: "";
    background: url(../images/steps-arrow.svg);
    width: 54px;
    height: 52px;
    position: absolute;
    right: -30px;
    top: -60px;
    transform: rotate(25deg);
}
.steps .col3:after{
    content: "";
    background: url(../images/steps-arrow.svg);
    width: 54px;
    height: 52px;
    position: absolute;
    right: -130px;
    bottom: 40px;
    transform: rotate(75deg);
}
.index-feedback{
    width: 700px;
    margin: auto;
    max-width: 100%;
    margin-top: -100px;
}
.index-feedback-title{
    font-weight: 700;
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 15px;
}
.index-feedback-title span{
    padding-left: 100px;
}
.index-feedback form{
    background: #FCFCFC;
    border-radius: 12px;
    padding: 30px 20px 20px;
}
.index-feedback .form-row{
    display: flex;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
}
.index-feedback .form-row .col{
    width: 33.3333%;
    padding-left: 5px;
    padding-right: 5px;
}
.index-feedback .agreement-wrapper{
    padding-top: 10px;
}

@media(max-width:991px){
    .steps{
        width: 700px;
        max-width: 100%;
        margin: auto;
        height: auto;
    }
    .steps .col:after{
        display: none;
    }
    .steps .col{
        align-self: flex-start;
        position: static;
        width: 50%;
        margin-bottom: 40px;
    }
    .steps .item{
        width: 100%;
    }
    .index-feedback{
        margin-top: 0;
    }
    .steps .item-body{
        position: static;
        width: calc(100% - 140px);
    }
    .steps .item-num{
        width: 120px;
    }
}
@media(max-width:767px){
    .steps .col{
        width: 100%;
        margin-bottom: 20px;
        min-height: 100px;
    }
    .steps .item-num{
        font-size: 70px;
        width: 70px;
    }
    .steps .item-body{
        width: calc(100% - 70px);
        padding-left: 20px;
    }
    .index-feedback{
        margin-top: -50px;
    }
    .index-feedback .form-row .col{
        width: 100%;
    }
}
@media(max-width:499px){
    .steps .item-num{
        font-size: 50px;
        width: 50px;
    }
    .steps .item-body{
        width: calc(100% - 50px);
        padding-left: 15px;
    }
}
/* /. steps-section */

/* materials-section */
.materials-section{
    background: url(../images/bg1.png) 50% 0 no-repeat;
    background-size: 100% auto;
    padding: 70px 0;
}
.materials-section-title{
    font-size: 36px;
    line-height: 1.2;
    position: relative;
    margin-bottom: 40px;
    color: #000;
}
.materials-section-title:before{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    height: 1px;
    background: #000;
    width: calc(50% - 430px);
}
.materials-section-title:after{
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    height: 1px;
    background: #000;
    width: calc(50% - 430px);
}
.materials .item{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.materials .item-img{
    width: 400px;
}
.materials .item-body{
    width: calc(100% - 400px);
    padding-left: 25px;
    padding-bottom: 55px;
    position: relative;
}
.materials .item-title{
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000;
}
.materials .item-text{
    font-size: 20px;
}
.materials .item .item-btn{
    position: absolute;
    left: 25px;
    bottom: 10px;
}
@media(max-width: 1099px){
    .materials-section-title:after,
    .materials-section-title:before{
        display: none;
    }
    .materials .item-img{
        width: 300px;
    }
    .materials .item-body {
        width: calc(100% - 300px);
    }
    .materials .item-title {
        font-size: 32px;
        margin-bottom: 10px;
    }
    .materials .item-text {
        font-size: 16px;
    }
}
@media(max-width: 991px){
    .materials-section-title{
        font-size: 26px;
    }
    .materials .item-img{
        width: 200px;
    }
    .materials .item-body {
        width: calc(100% - 200px);
    }
    .materials .item-title {
        font-size: 26px;
    }
    .materials .item-text {
        font-size: 15px;
    }
}
@media(max-width: 767px){
    .materials-section{
        padding-top: 50px;
        padding-bottom: 0;
    }
}
@media(max-width: 599px){
    .materials .item-img{
        width: 100%;
        margin-bottom: 25px;
    }
    .materials .item-body {
        width: 100%;
        padding-left: 0;
        padding-bottom: 0;
    }
    .materials .item .item-btn {
        position: static;
        padding: 20px 0 30px;
    }
}
/* /. materials-section */

.index-template .footer{
    background: url(../images/bg8.jpg) 50% bottom / 100% auto no-repeat #01030F;
}
.base-template .footer{
    background: url(../images/bg6.jpg) 50% -92px;
}
.footer{
    position: relative;
    padding-top: 40px;
    color: #fff;
}
.footer:after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(1deg, rgba(5,13,27, 0.5) 20%, rgba(5,13,27, 0) 100%);
}
.footer .container{
    position: relative;
    z-index: 10;
}
.copyright a{
    margin-left: 10px;
    color: #fff;
    text-decoration: underline;
}
.copyright a:hover{
    text-decoration: none;
}
@media(max-width:1930px){
    .footer:before{
        content:"";
        height: 92px;
        position: absolute;
        left: 0;
        right: 0;
        top: -52px;
    }
    .index-template .footer:before{
        background: url(../images/bg9.png) 50% 0 / 100% auto no-repeat;
    }
    .base-template .footer:before{
        background: url(../images/bg11.png) 50% 0 / 100% auto no-repeat;
    }
}
@media(min-width:1931px){
    .footer{
        padding-top: 70px;
    }
}
.portfolio-title{
    font-size: 36px;
    line-height: 1.2;
    position: relative;
    margin-bottom: 30px;
}
.portfolio-title:before{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    height: 1px;
    background: rgba(255,255,255,.5);
    width: calc(50% - 150px);
}
.portfolio-title:after{
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    height: 1px;
    background: rgba(255,255,255,.5);
    width: calc(50% - 150px);
}
.portfolio-section-wrapper .portfolio-title:before,
.portfolio-section-wrapper .portfolio-title:after{
    background: #4A4949;
}
.portfolio{
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.portfolio .col{
    width: 33.33333%;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}
.portfolio .item{
    position: relative;
    display: block;
    overflow: hidden;
}
.portfolio .item img{
    width: 100%;
}
.portfolio .item-title{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    color: #fff;
    font-size: 14px;
    line-height: 1.3;
}
.portfolio .item:before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(51,51,51,0.5);
    opacity: 0.5;
    transition: ease-out all 300ms;
}
.portfolio .item:after{
    content: "";
    width: 50px;
    height: 50px;
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    background: url(../images/plus.svg) 0 0 no-repeat;
    background-size: contain;
    opacity: 0;
    transition: ease-out all 300ms;
    transform: scale(0);
}
.portfolio .item:hover:before{
    opacity: 1;
}
.portfolio .item:hover:after{
    opacity: 1;
    transform: scale(1);
}
@media(max-width: 991px){
    .portfolio{
        margin-left: -10px;
        margin-right: -10px;
    }
    .portfolio .col{
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 20px;
    }
    .portfolio .item-title{
        padding: 10px;
        font-size: 12px;
    }
    .portfolio-title{
        font-size: 26px;
    }
    .portfolio-title:after,
    .portfolio-title:before{
        display: none;
    }
}
@media(max-width: 767px){
    .portfolio .col{
        width: 50%;
    }
    .portfolio .item-title{
        font-size: 2.5vw;
    }
    .footer:before{
        display: none;
    }
}
@media(max-width: 499px){
    .portfolio .col{
        width: 100%;
    }
    .portfolio .item-title{
        font-size: 4.5vw;
    }
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 11px;
}
.footer-top .left-part {
    width: 430px;
}
.footer-top .right-part {
    width: calc(100% - 430px);
    padding-left: 70px;
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(3, 1fr);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 25px 0;
    font-size: 11px;
}

.development a{
    display: flex;
    align-items: center;
    font-weight: 300;
    font-size: 10px;
    line-height: 140.62%;
    letter-spacing: 0.01em;
    color: #fff;
}
.development-icon{
    margin-left: 8px;
    display: inline-block;
    position: relative;
    bottom: -2px;
}
.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-logo{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.footer-logo-icon{
    width: 54px;
}
.footer-logo-text{
    width: 260px;
    margin-left: 10px;
    position: relative;
    bottom: -3px;
}
.footer-requisites{
    margin-top: 7px;
}
.footer-address,
.footer-schedule{
    display: flex;
    flex-wrap: wrap;
    margin-top: 7px;
}
.footer-address-icon,
.footer-schedule-icon{
    width: 20px;
}
.footer-address span,
.footer-schedule span{
    width: calc(100% - 20px);
    padding-left: 7px;
}
.footer-text{
    padding-left: 27px;
    margin-top: 10px;
}
.footer-top-item-title {
    font-size: 12px;
    border-bottom: 1px solid #EF7D00;
    color: #EF7D00;
    padding-bottom: 3px;
    margin-bottom: 10px;
}
.footer-nav li{
    margin-top: 7px;
}
.footer-nav a{
    color: #fff;
    text-decoration: underline;
}
.footer-nav a:hover{
    text-decoration: none;
}
.footer-tel {
    display: flex;
    align-items: center;
    line-height: 175.78%;
    margin-top: 10px;
}
.footer-tel .icon {
    width: 14px;
    margin-right: 6px;
    position: relative;
    top: -1px;
}
.footer-tel a {
    font-weight: 700;
    font-size: 18px;
    color: #fff;
}
.footer-mail {
    display: flex;
    align-items: center;
    line-height: 175.78%;
    margin-top: 10px;
}
.footer-mail .icon {
    width: 14px;
    margin-right: 6px;
}
.footer-mail a{
    color: #fff;
    text-decoration: underline;
}
.footer-mail a:hover{
    text-decoration: none;
}
.footer-social-links{
    margin-top: 15px;
}
@media(max-width: 1099px){
    .footer-top .left-part{
        width: 390px;
    }
    .footer-top .right-part {
        width: calc(100% - 390px);
        padding-left: 25px;
        grid-gap: 25px;
    }
}
@media(max-width: 991px){
    .footer-top .left-part{
        width: 280px;
    }
    .footer-top .right-part {
        width: calc(100% - 280px);
        padding-left: 20px;
        grid-gap: 20px;
    }
    .footer-tel a{
        font-size: 14px;
    }
    .footer-logo-text{
        width: 215px;
    }
}
@media(max-width: 767px){
    .footer-top .left-part{
        width: 100%;
        margin-bottom: 20px;
    }
    .footer-top .right-part{
        width: 100%;
        padding-left: 0;
    }
}
@media(max-width: 599px){
    .footer-top .right-part{
        grid-template-columns: 1fr;
    }
    .footer-top-item-title{
        border: none;
        text-transform: uppercase;
        font-weight: 600;
    }
    .footer-bottom{
        display: block;
    }
    .development{
        margin-top: 20px;
    }
    .footer-text{
        padding-left: 0;
        margin-top: 20px;
    }
}
.base-template{
    background: url(../images/bg10.svg) 50% 0;
}
/* Breadcrumbs */
.breadcrumbs-section{
    margin: 10px 0 30px;
    font-size: 12px;
}
.breadcrumb > li {
    display: inline;
    margin-right: 10px;
}
.breadcrumb > li > a{
    text-decoration: none;
    color: #000;
}
.breadcrumb > li > a:hover span{
    text-decoration: underline;
}
.breadcrumb > li > a:after{
    content: '/';
    margin-left: 10px;
    color: #000;
}
@media(max-width: 767px){
    .breadcrumbs-section{
        margin: 20px 0;
    }
    .breadcrumbs-section + section{
        padding-top: 10px;
    }
}
/* /. Breadcrumbs */

.main-columns{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.aside{
    width: 314px;
}
.main-column{
    width: calc(100% - 314px);
    padding-left: 40px;
}

/* Aside menu */

.aside-menu {
    margin-bottom: 30px;
    background: url(../images/pattern1.png) #404040;
    border-radius: 12px;
    padding: 12px 6px 12px 27px;
}
.aside-menu a {
    display: block;
    text-decoration: none !important;
    color: #fff;
    padding: 15px 36px 15px 0;
    line-height: 1.3;
    font-size: 18px;
    position: relative;
}
.aside-menu>ul>li>a:before{
    content:"";
    width: 4px;
    height: 4px;
    border-radius:50%;
    background: #fff;
    position: absolute;
    top: 25px;
    left: -15px;
    transition: all ease-out 300ms;
}

.aside-menu li:hover>a,
.aside-menu .active>a {
    color: #FF7000 !important;
}
.aside-menu>ul>li:hover>a:before,
.aside-menu>ul>li.active>a:before{
    background: #FF7000;
}
.aside-menu .lvl1>a{
    font-weight: 600;
}

.aside-menu>ul ul {
    display: none;
    margin-bottom: 25px;
    padding-left: 15px;
}

.aside-menu .active>ul {
    display: block;
}

.aside-menu>ul li {
    position: relative;
}

.aside-menu>ul .dropdown-button {
    height: 50px;
    width: 36px;
    display: block;
    z-index: 20;
    top: 0;
    right: 0;
    position: absolute;
    cursor: pointer;
}
.aside-menu>ul .dropdown-button:after {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 13px;
    top: 50%;
    right: 17px;
    background: #b3b5b7;
    margin-top: -5px;
}

.aside-menu>ul .dropdown-button.active:after {
    display: none;
}

.aside-menu>ul .dropdown-button:before {
    content: "";
    display: block;
    position: absolute;
    width: 13px;
    height: 1px;
    top: 50%;
    right: 17px;
    background: #b3b5b7;
    margin-right: -6px;
    margin-top: 1px;
}

.aside-menu>ul ul .dropdown-button {
    height: 37px;
}

.aside-menu ul ul a {
    padding: 10px 0 8px 0;
    font-size: 15px;
    position: relative;
}
/* /. Aside menu */

@media(max-width: 1199px){
    .aside {
        width: 250px;
    }
    .main-column{
        width: calc(100% - 250px);
        padding-left: 20px;
    }
}
@media(max-width: 767px){
    .aside {
        width: 100%;
    }
    .aside-menu{
        display: none;
    }
    .main-column{
        width: 100%;
        padding-left: 0;
    }
}

/* c_categories */
.c_categories{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-left: -20px;
    margin-right: -20px;
}
.c_categories .col{
    width: 33.3333%;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 40px;
}
.c_categories .item{
    display: block;
    border-radius: 12px;
    background: rgba(0,0,0,0.5);
    text-align: center;
    height: 100%;
    padding: 30px;
}
.c_categories .item-img{
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.c_categories .item-img img{
    max-height: 100%;
}
.c_categories .item-title{
    font-size: 26px;
    line-height: 1.2;
    font-weight: 500;
    color: #fff;
}
.c_categories .item:hover{
    background: rgba(0,0,0,0.6);
}
@media(max-width:1199px){
    .c_categories {
        margin-left: -10px;
        margin-right: -10px;
    }
    .c_categories .col{
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 20px;
    }
    .c_categories .item{
        padding: 20px;
    }
    .c_categories .item-title{
        font-size: 18px;
    }
    .c_categories .item-img{
        height: 140px;
    }
}
@media(max-width:991px){
    .c_categories .col{
        width: 50%;
    }
}
@media(max-width:499px){
    .c_categories {
        margin-left: -5px;
        margin-right: -5px;
    }
    .c_categories .col{
        padding-left: 5px;
        padding-right: 5px;
        margin-bottom: 10px;
    }
    .c_categories .item{
        padding: 10px;
    }
    .c_categories .item-title{
        font-size: 13px;
    }
    .c_categories .item-img{
        height: 25vw;
        margin-bottom: 10px;
    }
}
/* /. c_categories */

/* content-items */
.content-items .item:not(:last-child){
    margin-bottom: 50px;
}
.content-items .content + .gallery{
    margin-top: 30px;
}
/* /. content-items */

/* gallery */
.gallery{
    margin-left: -10px;
    margin-right: -10px;
    display: flex;
    flex-wrap: wrap;
}
.gallery .col{
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
    width: 25%;
}
.gallery .item{
    display: block;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}
.gallery .item img{
    width: 100%;
}
.gallery .item:before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(51,51,51,0.5);
    opacity: 0.5;
    transition: ease-out all 300ms;
}
.gallery .item:after{
    content: "";
    width: 50px;
    height: 50px;
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    background: url(../images/plus.svg) 0 0 no-repeat;
    background-size: contain;
    opacity: 0;
    transition: ease-out all 300ms;
    transform: scale(0);
}
.gallery .item:hover:before{
    opacity: 1;
}
.gallery .item:hover:after{
    opacity: 1;
    transform: scale(1);
}
@media(max-width: 767px){
    .gallery .col{
        width: 50%;
    }
}
/* /. gallery */


/* page-nav */
.page-nav{
    margin-bottom: 10px;
}
.page-nav li{
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 15px;
}
.page-nav a{
    display: flex;
    height: 38px;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 12px;
    color: #404040;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.1;
    background: #C7C7C7;
}
.page-nav .active > a,
.page-nav a:hover{
    color: #fff;
    background: #FF7000;
}
@media(max-width: 991px){
    .page-nav a{
        height: 32px;
        padding: 0 10px;
        font-size: 15px;
    }
}
@media(max-width: 991px){
    .page-nav li{
        margin-right: 5px;
        margin-bottom: 10px;
    }
    .page-nav a{
        height: 24px;
        padding: 0 6px;
        font-size: 12px;
        border-radius: 6px;
    }
}
/* ./ page-nav */

/* contacts section */
.contacts-section-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.contacts-section-inner .left-part {
    width: calc(100% - 380px);
}
.contacts-section-inner .right-part {
    width: 340px;
}
.feedback-form {
    margin: auto;
    background: #ECECEC;
    border-radius: 13px;
    padding: 10px 30px 20px;
    font-weight: normal;
    align-self: flex-start;
}
.contacts-information{
    margin-bottom: 30px;
}
.contacts-information .item{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.3;
}
.contacts-information .item .col1{
    width: 130px;
}
.contacts-information .item .col2{
    width: calc(100% - 150px);
}
.contacts-information a{
    color: #000;
}
.contacts-information a:hover{
    color: #FF7000;
}
.contacts-information .item-mail a{
    text-decoration: underline;
}
.contacts-information .item-mail a:hover{
    text-decoration: none;
}
@media(max-width: 1299px){
    .contacts-information .item{
        margin-bottom: 12px;
        font-size: 14px;
    }
    .contacts-information .item .col1{
        width: 110px;
    }
    .contacts-information .item .col2{
        width: calc(100% - 130px);
    }
}
@media(max-width: 1199px){
    .contacts-section-inner .left-part {
        width: calc(100% - 320px);
    }
    .contacts-section-inner .right-part {
        width: 300px;
    }
    .feedback-form {
        padding: 10px 20px 20px;
    }
}
@media(max-width: 991px){
    .contacts-section-inner .left-part {
        width: 100%;
    }
    .contacts-section-inner .right-part {
        width: 100%;
    }
}
@media(max-width: 499px){
    .contacts-information .item{
        font-size: 13px;
    }
    .contacts-information .item .col1{
        width: 100px;
    }
    .contacts-information .item .col2{
        width: calc(100% - 110px);
    }
}
/* /. contacts section */


/* 404 page */
.page404-row{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.page404-row .col1{
    width: 60%;
    padding-right: 30px;
}
.page404-row .col2{
    width: 40%;
}
.page404 {
    position: relative;
}
.page404 .t404 {
    text-align: center;
}
.page404 .i404 {
    font-size: 300px;
    text-align: center;
    line-height: 365px;
}
@media(max-width:991px){
    .page404-row .col2{
        width: 100%;
    }
}
/* . 404 page*/

.pt0{
    padding-top: 0;
}
.pb0{
    padding-bottom: 0;
}
.pt20{
    padding-top: 20px;
}
.pt50{
    padding-top: 50px;
}


/** product-page-first-section **/
.product-page-first-section{
    padding-bottom: 0;
}
.product-page-first-section form,
.product-page-first-section.photosection{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.product-page-first-section.photosection form{
    display: block;
}
.product-page-first-section .left-part{
    width: 450px;
    margin-bottom: 30px;
}
.product-page-first-section .right-part{
    width: calc(100% - 450px);
    padding-left: 45px;
    margin-bottom: 30px;
}
.product-gallery{
    width: 100%;
    overflow: hidden;
}
.product-carousel-wrapper{
    height: 430px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #D0D0D0;
    border-radius: 17px;
    background: #fff;
}
.product-carousel-inner{
    width: 100%;
}
.product-carousel > div:not(:first-of-type){
    display: none;
}
.product-thumb-carousel:not(.slick-slider) > div{
    display: none;
}
.product-carousel .item{
    text-align: center;
}
.product-thumb-carousel .item{
    cursor: pointer;
    transition: all ease-out 300ms;
}
.product-thumb-carousel .item:hover{
    opacity: 0.8;
}
.product-thumb-carousel-wrapper{
    display: flex;
    align-items: center;
}
.product-thumb-carousel-inner{
    width: 100%;
}
.product-thumb-carousel{
    margin-left: -5px;
    margin-right: -5px;
}
.product-thumb-carousel .item{
    padding: 10px 5px 0;
}
.product-thumb-carousel .item .element{
    border: 1px solid #D0D0D0;
    padding: 10px;
    border-radius: 12px;
    text-align: center;
    background: #fff;
}
.product-thumb-carousel .slick-current .element{
    border-color: #FF7000;
}
.product-thumb-carousel .item img{
    max-height: 100%;
}

.product-fs-rp-header{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}
.product-fs-rp-header h1{
    width: calc(100% - 50px);
    margin-bottom: 0;
    font-size: 25px;
    font-weight: 700;
}
.rating-favorites-block{
    width: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.rating-favorites-block .favorites-btn-wrapper{
    width: 24px;
    height: 24px;
    cursor: pointer;
}
.rating-favorites-block a{
    color: #A8A8A8;
}
.rating-favorites-block a:hover{
    color: #D75D56;
}
.rating-favorites-block .msfavorites .msfavorites-active{
    display: none;
}
.rating-favorites-block .msfavorites.voted .msfavorites-active{
    display: block;
}
.rating-favorites-block .msfavorites.voted .msfavorites-noneactive{
    display: none;
}
.rating-favorites-block .msfavorites.voted svg {
    color: #cf2929;
}
.product-page-first-section .product-article{
    font-weight: 300;
    font-size: 11px;
    line-height: 132.2%;
    margin-bottom: 15px;
    color: #2E2E2E;
}
.product-stickers .item-sticker {
    border-radius: 6px;
    font-weight: 300;
    font-size: 10px;
    line-height: 132.2%;
    padding: 2px 6px;
    text-align: center;
    margin-bottom: 4px;
    display: inline-block;
    min-width: 56px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.product-stickers .item-sticker-avl {
    background: #68A82E;
    color: #fff;
}
.product-stickers .item-sticker-not-avl {
    background: #E6E6E6;
    color: #000000;
}
.product-introtext {
    margin-bottom: 20px;
    font-size: 13px;
}
.product-chars-block{
    background: #ECECEC;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 10px;
}
.product-chars-block-title{
    font-weight: 700;
    font-size: 13px;
    line-height: 103.7%;
    color: #000000;
    margin-bottom: 10px;
}
.chars-row{
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
    position: relative;
    font-size: 13px;
}
.chars-row > div:nth-of-type(1) {
    display: block;
    background: #ECECEC;
    position: relative;
    z-index: 5;
    padding: 0 3px 0 0;
    color: #828181;
}
.chars-row  > div:nth-of-type(2) {
    display: block;
    background: #ECECEC;
    position: relative;
    z-index: 5;
    padding: 0 0 0 3px;
}
.chars-row:after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    border-bottom: 1px dotted #9F9F9F;
}
.cart-section .product-chars-block{
    padding: 0;
    background-color: transparent;
    width: 300px;
    max-width: 100%;
}
.cart-section .chars-row > div:nth-of-type(1),
.cart-section .chars-row > div:nth-of-type(2){
    background: #fff;
}

/* photo-carousel */
.photo-carousel-wrapper{
    width: 100%;
    overflow: hidden;
}
.photo-carousel{
    margin-left: -5px;
    margin-right: -5px;
}
.photo-carousel:not(.slick-slider) > div{
    display: none;
}
.photo-carousel .item img{
    width: 100%;
    border-radius: 6px;
}
.photo-carousel .item{
    padding: 0 5px;
    transition: all ease-out 300ms;
}
.photo-carousel .item:hover{
    opacity: 0.8;
}
/* /.photo-carousel */

.catalog .item-stickers-left{
    position: absolute;
    left: 7px;
    top: 0;
}
.catalog .item-stickers-left .item-sticker {
    border-radius: 6px;
    font-weight: 500;
    font-size: 10px;
    line-height: 132.2%;
    padding: 2px 6px;
    text-align: center;
    margin-bottom: 4px;
}
.catalog .item-stickers {
    position: absolute;
    left: 7px;
    top: 0;
}
.product-gallery .item-stickers{
    position: absolute;
    left: 15px;
    top: 15px;
    z-index: 10;
}
.item-stickers span {
    display: inline-block;
    border-radius: 3px;
    font-size: 12px;
    line-height: 122.2%;
    color: #fff;
    padding: 5px 10px;
    margin-bottom: 7px;
    font-weight: 300;
}
.item-sticker-sale span{
    background: #ff7000;
}
.item-sticker-new span{
    background: #000;
}
.item-sticker-popular span{
    background: #000;
}

.product-chars-block-first{
    margin-bottom: 20px;
}
.product-chars-block-first .item{
    display: flex;
    font-size: 12px;
    margin-bottom: 5px;
}
.product-chars-block-first .col1{
    font-weight: 600;
    margin-right: 5px;
}

.product-chars-block-first.monument {
	display: flex;
}
.product-chars-block-first.monument .image {
	width: 20%;
}
.product-chars-block-first.monument .image img {
	width: 100%;
	height: auto;
}
.product-parameters-wrap{
    margin-bottom: 20px;
}
.product-parameters-row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.product-parameters-row .col{
    width: calc(50% - 10px);
}
.product-parameters-row label{
    font-size: 13px;
    font-weight: 500;
}
.product-parameters-row.view2{
    width: 300px;
    max-width: 100%;
}
.product-parameters-row.view2 .col{
    width: 100%;
    margin-bottom: 10px;
}

.product-fs-rp-footer{
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.product-fs-rp-footer .col1{
    width: 170px;
}
.product-fs-rp-footer .col2{
    width: calc(100% - 170px);
    padding-left: 10px;
}
.to-constructor-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    width: 100%;
    padding: 0 20px;
    border-radius: 12px;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    background: url(../images/pattern2.png) #FF7000;
}
.to-constructor-btn:hover{
    background: #404040;
    color: #fff;
}
.product-fs-rp-footer .product-price-wrapper{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    height: 38px;
    width: 100%;
    padding: 0 20px;
    border-radius: 12px;
    font-size: 14px;
    color: #fff;
    background: url(../images/pattern1.png) #404040;
}
.product-fs-rp-footer .to-cart-item{
    width: 96px;
}
.product-fs-rp-footer .prices-item{
    width: calc(100% - 96px);
    padding-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-fs-rp-footer .product-price{
    font-size: 20px;
    font-weight: 700;
}
.product-fs-rp-footer .product-old-price{
    margin-right: 15px;
    font-size: 16px;
    font-weight: 300;
    text-decoration: line-through;
}
.product-fs-rp-footer .monument-price {
	margin-left: 5px;
	font-size: 18px;
}
.product-fs-rp-footer .cart-btn,
.product-fs-rp-footer .application-btn{
    color: #fff;
}

@media(max-width: 1459px){
    .product-page-first-section .left-part{
        width: 430px;
    }
    .product-page-first-section .right-part{
        width: calc(100% - 430px);
        padding-left: 20px;
    }
}
@media(max-width: 1359px){
    .product-page-first-section .left-part {
        width: 380px;
    }
    .product-page-first-section .right-part {
        width: calc(100% - 380px);
    }
    .product-carousel-wrapper{
        height: 374px;
    }
    .product-thumb-carousel .element{
        height: 100px;
    }
    .product-fs-rp-footer .col1{
        width: 130px;
    }
    .product-fs-rp-footer .col2 {
        width: calc(100% - 130px);
    }
    .product-fs-rp-footer .product-price-wrapper,
    .to-constructor-btn{
        padding: 0 15px;
    }
    .product-fs-rp-footer .product-price{
        font-size: 16px;
        font-weight: 600;
    }
    .product-fs-rp-footer .product-old-price {
        margin-right: 10px;
        font-size: 14px;
    }
}
@media(max-width: 1229px){
    .product-fs-rp-footer .col1{
        width: 100%;
        margin-bottom: 15px;
    }
    .product-fs-rp-footer .col2{
        width: 100%;
        padding-left: 0;
    }
    .to-constructor-btn{
        display: inline-flex;
        width: auto;
    }
    .chars-row{
        font-size: 12px;
    }
}
@media(max-width: 1199px){
    .product-page-first-section .left-part {
        width: 300px;
    }
    .product-page-first-section .right-part {
        width: calc(100% - 300px);
        padding-left: 20px;
    }
    .product-carousel-wrapper {
        height: 300px;
    }
    .product-chars-block{
        padding: 10px;
    }
}
@media(max-width: 991px){
    .product-page-first-section .left-part{
        width: 100%;
        margin-bottom: 20px;
    }
    .product-page-first-section .right-part{
        width: 100%;
        padding-left: 0;
        margin-bottom: 20px;
    }
    .product-carousel-wrapper{
        height: auto;
        padding: 20px;
    }
    .chars-row{
        font-size: 10px;
    }
}

@media (max-width: 499px){
    .product-fs-rp-footer .product-price {
        font-size: 15px;
    }
    .product-fs-rp-footer .product-old-price{
        font-size: 12px;
    }
    .product-fs-rp-header h1{
        font-size: 20px;
    }
}

/** /. product-page-first-section **/


/****** 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-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap:wrap;
}

.cart-section .remove{
    position: absolute;
    right: 0;
    top: calc(50% - 10px);
}
.cart-section .remove button{
    cursor: pointer;
    color: red;
    padding: 0;
    border: 0;
    background: transparent;
}
.cart-section .remove svg{
    width: 20px;
    height: 20px;
    transition: all 200ms ease-out;
}
.cart-section .remove:hover svg{
    transform: rotate(180deg);
}
.cart-section .left-part{
    width: 210px;
    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: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.cart-section .center-part{
    width: calc(100% - 510px);
    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;
}

.cart-section .item-counter-inner{
    width: 110px;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0 20px;
}
.cart-section .item-counter-inner .input-number{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 26px;
    width: 50px;
    padding: 0 5px;
    text-align: center;
    font-size: 16px;
    line-height: 16px;
    background: #F5F5F5;
    border: none;
    margin: 0;
    font-weight: bold;
    color: #242424;
    border-radius: 13px;
}
.cart-section .item-counter-inner 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;
}
.cart-section .item-counter-inner button svg{
    width: 12px;
    height: 12px;
}
.cart-section .item-counter-inner button svg path{
    stroke: #000;
}
.cart-section .count-input-wrapper{
    position: relative;
    display: inline-block;
}
.cart-section .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,
.cart-section .item-old-price{
    font-size: 18px;
    font-weight: 600;
    width: 100%;
}
.cart-section .old_price{
    color: #A7A7A7 !important;
    font-size: 15px;
}

.cart-section .item-product-information-title a{
    color: #000;
    font-size: 25px;
    text-decoration: none;
    font-weight: 700;
}
.cart-section .item-product-information-title a:hover{
    text-decoration: underline;
}
.cart-section h4{
    font-size: 14px;
}
.cart-section .cart-total {
    background: #008943;
    padding: 5px 40px;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.ms2_total_count_wrapper{
    margin: 0 70px;
}
.ms2_total_cost_wrapper{
    font-size: 22px;
}

.cart-page-empty-block{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 40px;
}
.cart-page-empty-block .item-icon{
    width: 90px;
    height: 90px;
    background: url(../images/scorp2.png) 0 -18px no-repeat;
}
.cart-page-empty-block .item-body{
    width: calc(100% - 90px);
    padding-left: 30px;
}
.cart-page-empty-block .item-title{
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
}
.cart-page-empty-block .item-text{
    margin-bottom: 20px;
}
.cart-page-empty-block .btn{
    margin-bottom: 0;
    border: none;
}
.to-catalog-link a{
    display: inline-flex;
    align-items: center;
    font-size: 18px;
    color: #050505;
}
.to-catalog-link a span{
    text-decoration: underline;
}
.to-catalog-link a:hover span{
    text-decoration: none;
}
.to-catalog-link a img{
    margin-right: 5px;
}
@media(max-width:991px){
    .cart-section .left-part{
        width: 105px;
    }
    .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: 38px;
        margin: 0 10px;
    }
    .cart-section .right-part{
        width: 320px;
        text-align: center;
    }
}
@media(max-width:767px){
    .cart-section .remove{
        top: 20px;
    }
    .cart-section .cart-item{
        padding: 20px 0;
    }
    .cart-section .right-part{
        width: 320px;
        margin-top: 20px;
        max-width:100%;
        justify-content: flex-start;
        text-align: left;
    }
    .cart-section .center-part{
        padding: 15px 0 0;
        width: 100%;
    }
    .cart-section .item-product-information-title a {
        font-size: 12px;
        line-height: 1.6;
        display: inline-block;
    }
    .cart-section .cart-total {
        padding: 5px 20px;
        font-size: 14px;
        justify-content: flex-start;
    }
    .ms2_total_count_wrapper {
        margin: 0 18px;
    }
    .ms2_total_cost_wrapper {
        font-size: 16px;
    }
}
/****** /. cart page*/

/* order-section */
.order-section form{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 20px;
}
.order-section form > .col{
    width: calc(50% - 15px);
}
.order-section form > .col1{
    display: flex;
    align-items: center;
}
.deliveries-and-payment{
    display: none;
    background: #F6F6F6;
    padding: 20px;
    border-radius: 6px;
}
.deliveries-and-payment-content{
    text-align: center;
}
.order-section h3{
    font-weight: 700;
    font-size: 22px;
}
.order-section .checkbox{
    margin-bottom: 15px;
}
.order-section .checkbox p{
    font-weight: 300;
    font-size: 12px;
    line-height: 132.2%;
    margin-bottom: 0;
    padding-left: 30px;
}
.order-section .checkbox label{
    padding-left: 25px;
    position: relative;
    height: 22px;
    line-height: 22px;
    cursor: pointer;
    margin-bottom: 0;
    display: inline-block;
    font-size: 14px;
}
.order-section .form-container {
    font-weight: normal;
    height: 100%;
}
.order-section .form-container-inner{
    width: 750px;
    max-width: 100%;
    margin: auto;
}
.order-section #msOrder {
    margin-top:0;
}
.order-section .input-group-1{
    display: grid;
    grid-column-gap: 12px;
    grid-template-columns: 1fr 1fr;
}
.input-group-1 > div:nth-of-type(3),
.input-group-1 > div:nth-of-type(4){
    grid-column-start: 1;
    grid-column-end: 3;
}

.order-section .btn.disabled, .order-section .btn.disabled:hover {
    background: #dadada !important;
    border-color: #dadada !important;
    color: #1c1c1b !important;
    cursor: default;
}
.order-section .form-control {
    display: block;
    width: 100%;
    background: #fff;
    color: #000;
    text-shadow: none;
    font-size: 13px;
    line-height: 1.42857143;
    height: 34px;
    padding: 0 15px;
    border: 1px solid rgba(41, 41, 41, 0.2);
    border-radius: 10px;
    margin-bottom: 15px;
    font-weight: normal;
}
.order-section textarea.form-control{
    padding-top: 15px;
}

.order-section .checkbox label input{
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
}
.order-section .checkbox label > div{
    position: absolute;
    left: 5px;
    top: 4px;
    width: 14px;
    height: 14px;
    display: block;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.25);
    transition: 300ms all;
    border-radius: 2px;
}
.order-section .checkbox label:hover > div{
    border-color: #282F40;
}
.order-section .checkbox label > div.radio{
    border-radius: 100%;
}
.order-section .checkbox label > div.radio:before{
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    height: 100%;
    content: '';
    display: block;
    background-color: white;
    border-radius: 100px;
    opacity: 0;
    transform: scale(0);
    transition: 300ms all;
}
.order-section .checkbox input:checked + .radio{
    border-color: #282F40;
    background-color: #282F40;
}
.order-section #msOrder .radio{
    min-height: 1px;
}
.order-section .checkbox input:checked + .radio:before{
    opacity: 1;
    transform: scale(0.7);
}
@media(max-width: 767px){
    .deliveries-and-payment .col{
        width: 100%;
    }
    .order-section form > .col{
        width: 100%;
    }
    .order-section form > .col1{
        margin-bottom: 20px;
    }
    
    #payments{
        background: #F6F6F6;
        border-radius: 6px;
    }
    #deliveries,
    #payments{
        padding: 20px;
    }
    .order-section .checkbox{
        display: block;
    }
    .order-section .checkbox label{
        width: 100%;
    }
    .order-section .checkbox p{
        width: 100%;
        text-align: left;
        font-size: 14px;
        padding-left: 38px;
        margin: 5px 0;
    }
    .order-section .input-group-1 {
        grid-template-columns: 1fr;
    }
    .input-group-1 > div:nth-of-type(4) {
        grid-column-start: inherit;
        grid-column-end: inherit;
    }
    .order-section .input-group-1{
        display: block;
    }
    .deliveries-and-payment-content{
        text-align: left;
    }
}
/* /. order-section */


/* 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 */

/* Form styler */
.select-styler{
    height: 32px;
    border-radius: 10px;
    width: 100%;
    display: block !important;
}
.jq-selectbox__search input::-moz-placeholder{
    opacity: 0;
}
.jq-selectbox__search input:-ms-input-placeholder{
    opacity: 0;
}
.jq-selectbox__search input::-webkit-input-placeholder{
    opacity: 0;
}
.jq-selectbox__select {
    box-shadow: none;
    height: 32px;
    padding: 5px 24px 5px 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background: #fff !important;
    color: #727376;
    text-shadow: none;
    font-size: 12px;
    font-weight: normal;
    display: flex;
    align-items: center;
}
.jq-selectbox__trigger{
    border-left: none;
}
.jq-selectbox__trigger-arrow {
    opacity: 1;
    border: none;
    top: 13px;
    background: url(../images/down-arrow.svg) 0 0 no-repeat;
    width: 10px;
    height: 6px;
    right: 6px;
    transition: all 200ms ease-out;
}
/*.jq-selectbox.opened .jq-selectbox__trigger-arrow{
    transform: rotate(180deg);
    top: 7px;
}*/
.jq-selectbox__dropdown {
    top: 33px !important;
    bottom: inherit !important;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #ccc !important;
    width: 194px !important;
    min-width: 100%;
}
.jq-selectbox__select:hover{
    background: #fff;
}
.jq-selectbox__select:active{
    box-shadow: none;
}
.jq-selectbox ul{
    max-height: 300px;
}
.jq-selectbox li {
    padding: 5px 10px;
    color: #444444;
    white-space: normal !important;
    font-size: 12px;
    border-top: 1px solid #efefef;
    min-height: 1px !important;
}
.jq-selectbox li:nth-of-type(2){
    border-top: none !important;
}
.jq-selectbox li:hover {
    background-color: #ef7d00;
    color: #fff;
    border-color: #173758;
}
.jq-selectbox li:hover + li{
    border-color: #ef7d00;
}
.jq-selectbox li.selected {
    background-color: #ef7d00;
    color: #fff;
    border-color: #173758;
}
.jq-selectbox li.selected:not(:first-of-type) + li{
    border-color: #ef7d00;
}
.jq-selectbox li:first-of-type{
    border-top: none;
}
.jq-selectbox__select-text{
    font-size: 12px;
    font-weight: normal;
}
.form-group.error .jq-selectbox__select{
    border-color: #F6392F;
}
/* /. Form styler */

/* catalog-filter */
.sort-block #mse2_sort{
    display: block !important;
}
.sort-block{
    margin-bottom: 15px;
    font-size: 11px;
    line-height: 108.2%;
}
.sort-block a{
    color: #000;
    margin: 0 5px;
    position: relative;
    top: -1px;
}
.sort-block a.active{
    font-weight: 600;
}

.top-filters-row-wrapper {
    background: url(../images/pattern3.png) #ECECEC;
    padding: 20px 15px;
    border-radius: 12px;
}
.top-filters-row{
    display: flex;
    flex-wrap: wrap;
}
.top-filters-row > .col{
    width: 20%;
    padding: 5px;
}
.filter-item{
    position: relative;
}
.label-title{
    display: inline-block;
}
.label-title:first-letter{
    text-transform: uppercase;
}
.filter-item-title {
    height: 24px;
    background: #ffffff;
    padding: 5px 20px 5px 10px;
    font-size: 12px;
    line-height: 1;
    position: relative;
    cursor: pointer;
    z-index: 20;
    transition: all 200ms ease-out;
    border: 1px solid #EBEBEB;
    border-radius: 9px;
}
.filter-item-title:hover,
.filter-item.active .filter-item-title{
    border-color: #A3A3A3;
}

.filter-item-title:before{
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    margin-top: -4px;
    width: 6px;
    height: 6px;
    border-bottom: 1px solid #747474;
    border-right: 1px solid #747474;
    transform: rotate(45deg);
}
.filter-item.active .filter-item-title:before{
    transform: rotate(225deg);
    margin-top: -1px;
}
.filter-item .item-dropdown {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #ECECEC;
    padding: 15px 15px 5px;
    border-radius: 2px 2px 6px 6px;
}
.filter-item.active .item-dropdown{
    display: block;
    z-index: 200;
}
.filter-customcheck {
    position: relative;
    margin-bottom: 10px;
}
.filter-customcheck input[type=checkbox]{
    position: fixed;  
    top: -100000px;
}
.filter-customcheck input[type=checkbox] + label{
    position: relative;
    padding-left: 20px;
    -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: inline-block;
    font-size: 13px;
}
.filter-customcheck input[type=checkbox] + label:before{
    background: url(../images/check-empty.svg) 0 0 no-repeat;
    content: "";
    display: block;
    position: absolute;
    width: 14px;
    height: 14px;
    top: 2px;
    left: 0px;
}
.filter-customcheck input[type=checkbox]:checked + label:before{
	background: url(../images/checked.svg) 0 0 no-repeat;
}
.filter-item fieldset{
    border: none;
    margin: 0;
    padding: 0;
}

/* ui slider*/
.top-filters-section .ui-slider{
    border: none !important;
    height: 6px;
    background: #a1a1a1;
    margin-bottom: 20px;
    margin-top: 10px;
    width: 100%;
    margin: 10px auto 20px;
    padding: 0;
    right: -4px;
}
.top-filters-section .ui-slider-range{
    background: #c1c1c1;
    border-radius: 0 !important;
}
.top-filters-section .ui-slider-handle{
    width: 14px !important;
    height: 14px !important;
    margin-top: 0px !important;
    background: #fff !important;
    cursor: pointer !important;
    border: 1px solid #2e2e2e !important;
}
.top-filters-section .ui-slider-horizontal .ui-slider-handle {
    margin-left: -.7em;
}
.top-filters-section .ui-corner-all, 
.top-filters-section.ui-corner-top, 
.top-filters-section .ui-corner-right, 
.top-filters-section .ui-corner-tr{
    border-radius: 0 !important;
}
.top-filters-section .ui-slider-handle.ui-state-default.ui-corner-all {
    border-radius: 2px !important;
    background: #595959 !important;
    border-color: #595959 !important;
    top: -4px;
    opacity: 1 !important;
}
.number_slider_wrapper{
    padding: 0 11px 0 3px;
    background: #a1a1a1;
}
.mse2_number_inputs .form-control{
    height: 32px;
    padding-left: 35px;
    background: transparent;
}
.mse2_number_inputs label{
    font-size: 14px;
    position: absolute;
    top: 6px;
    left: 7px;
    color: #757575;
}
/*./ ui slider*/

.top-filters-section .item-dropdown-inner{
    max-height: 380px !important;
    overflow-y: auto;
}
.filters-form-title-xs{
    position: relative;
    height: 56px;
    background: #F3F3F3;
    padding: 18px 40px 18px 20px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: bold;
}
.reset-filters-btn{
    border: none;
    padding: 0;
    background: transparent;
    color: #000;
}
.reset-filters-btn.hidden{
    display: none;
}
.reset-filters-btn:hover{
    color: #D12C1C;
}
.reset-filters-btn img{
    margin-top: -2px;
}

.filters-form-title-xs:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -3px;
    width: 6px;
    height: 6px;
    border-bottom: 2px solid #222222;
    border-right: 2px solid #222222;
    transform: rotate(45deg);
}
.statuses-filters-wrapper{
    padding: 20px 0 0;
}
.statuses-filters > div{
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 10px;
}
.statuses-filters > div > div:last-of-type {
    display: none !important;
}


@media(max-width: 991px){
    .top-filters-row > .col{
        width: 50%;
        margin-bottom: 10px;
    }
    .top-filters-row-wrapper{
        padding: 10px 5px 0;
    }
    .filter-item .item-dropdown {
        box-shadow: 0 1px 4px rgb(0 0 0 / 20%);
    }
}
@media(max-width: 499px){
    .top-filters-row > .col{
        width: 100%;
    }
}
/* /. catalog-filter */
.application-inputs{
    margin-bottom: 20px;
}
.application-inputs .form-group{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 10px;
}
.application-inputs .form-group label{
    font-weight: 600;
    font-size: 13px;
    line-height: 1;
}
.application-inputs .form-control{
    width: auto;
    height: auto;
    margin: 0 0 0 5px;
    padding: 0;
    background: transparent;
    border: none;
    color: #000;
    line-height: 1;
    font-size: 13px;
    cursor: default;
}



/* file input */
.js .inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.inputfile + label {
    max-width: 80%;
    font-size: 1.25rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    padding: 0.825rem 1.65rem;
    border-radius: 12px;
}
.no-js .inputfile + label {
    display: none;
}

.inputfile + label svg {
    width: 1em;
    height: 1em;
    vertical-align: middle;
    fill: currentColor;
    margin-top: -0.25em;
    margin-right: 0.25em;
}

/* style 2 */
.inputfile-2 + label {
    color: #777777;
    border: 1px solid #777777;
}
.inputfile-2:focus + label,
.inputfile-2.has-focus + label,
.inputfile-2 + label:hover {
    color: #EF7D00;
    border-color: #EF7D00;
}
@media (max-width: 767px) {
    .inputfile + label{
        width: 100%;
        max-width: inherit;
        text-align: center;
    }
}
/* /. file input */




/* Tinkoff */

.tinkoff-btn {
    margin-top: 10px;
    background: #FFDD2D;
    color: #000;
    width: 350px;
    display: flex;
    border-radius: 5px;
}

.tinkoff-btn .flex {
    align-items: center;
    padding: 15px 10px;
}
.tinkoff-btn span {
    font-size: 24px;
    font-weight: 700;
    margin-left: 10px;
}

.tinkoff-btn:hover {
    background: #333;
    color: #fff;
}

.tinkoff-card {
    display: flex;
    flex-wrap: wrap;
    width: 33%;
    text-align: center;
    justify-content: space-between;
    flex-direction: column;
}

.tinkoff-card img {
    margin: 10px auto;
}
.tinkoff-card span {
    margin: auto;
}

@media(max-width: 768px) {
    .desc-br {
        display: none;
    }
    .tinkoff-card {
        width: 100%;
        flex-direction: row;
    }
}


.bank h2:first-child,
.bank h3:first-child,
.bank h4:first-child,
.bank h5:first-child,
.bank h6:first-child,
.bank p:first-child,
.bank ul:first-child,
.bank ol:first-child,
.bank a:first-child,
.bank div:first-child,
.bank figure:first-child {
  margin-top: 0; }

.bank h2:last-child,
.bank h3:last-child,
.bank h4:last-child,
.bank h5:last-child,
.bank h6:last-child,
.bank p:last-child,
.bank ul:last-child,
.bank ol:last-child,
.bank a:last-child,
.bank div:last-child,
.bank figure:last-child {
  margin-bottom: 0; }
.bank .title__text {
    font-size: 50px;
    font-weight: 700;
}
.bank h2 {
    text-align: center;
  margin: 0;
  margin-bottom: 40px;
  font-size: 36px;
  font-weight: 700;
  line-height: 40px; }
  @media (max-width: 767px) {
    .bank h2 {
      margin-bottom: 25px;
      font-size: 26px;
      line-height: 28px; } }

.bank__banner {
  margin-top: 50px;
  margin-right: 0;
  margin-bottom: 50px;
  margin-left: 0; }
  @media (max-width: 767px) {
    .bank__banner {
      margin-top: 30px;
      margin-bottom: 30px; } }
  .bank__banner img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px; }

.bank__post-title {
  margin: 0;
  margin-top: -20px;
  margin-bottom: 40px;
  padding: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 25px; }
  @media (max-width: 767px) {
    .bank__post-title {
      margin-top: -10px;
      margin-bottom: 25px;
      font-size: 13px;
      line-height: 20px; } }

.bank__how {
  margin-top: 80px;
  margin-bottom: 80px; }
  @media (max-width: 991px) {
    .bank__how {
      margin-top: 50px;
      margin-bottom: 50px; } }
  @media (max-width: 767px) {
    .bank__how {
      margin-top: 30px;
      margin-bottom: 30px; } }

.bank__how-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
  

.bank__how-item {
    width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px; }
  
@media (max-width: 767px) {
    .bank__how-item {
        width: 100%;   
    }
    }

.bank__how-icon {
  width: 64px;
  height: 64px;
  padding: 16px;
  border-radius: 20px;
  background: #fafafa; }
  .bank__how-icon img {
    display: block;
    width: 32px;
    height: 32px; }

.bank__how-text {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 25px;
  text-align: center; }

.bank__layout {
  margin-top: 80px;
  margin-bottom: 80px; }
  @media (max-width: 991px) {
    .bank__layout {
      margin-top: 50px;
      margin-bottom: 50px; } }
  @media (max-width: 767px) {
    .bank__layout {
      margin-top: 30px;
      margin-bottom: 30px; } }
  .bank__layout ul {
    margin-top: 15px;
    margin-right: 0;
    margin-bottom: 15px;
    margin-left: 0;
    padding: 0;
    list-style: none; }
    .bank__layout ul li {
      position: relative;
      margin: 0;
      margin-bottom: 5px;
      padding: 0;
      padding-left: 30px;
      font-size: 16px;
      font-weight: 300;
      line-height: 25px; }
      @media (max-width: 767px) {
        .bank__layout ul li {
          padding-left: 20px;
          font-size: 14px;
          line-height: 20px; } }
      .bank__layout ul li:last-of-type {
        margin-bottom: 0; }
      .bank__layout ul li:before {
        position: absolute;
        left: 0;
        content: '—'; }

.bank__block {
  margin-top: 40px;
  margin-bottom: 40px; }
  @media (max-width: 767px) {
    .bank__block {
      margin-top: 30px;
      margin-bottom: 30px; } }
  .bank__block figure {
    display: block;
    margin: 0;
    padding: 0;
    border-radius: 8px;
    overflow: hidden; }
    .bank__block figure img {
      display: block;
      width: 100%;
      height: auto; }
  .bank__block--column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 40px; }
    @media (max-width: 767px) {
      .bank__block--column {
        grid-template-columns: 1fr;
        grid-column-gap: 0;
        grid-row-gap: 15px; } }
    .bank__block--column figure {
      margin: 0; }
    .bank__block--column img {
      display: block;
      width: 100%;
      height: auto;
      margin: 0; }
      @media (max-width: 767px) {
        .bank__block--column img {
          width: 100%; } }

.bank__promo {
  display: grid;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
  border-radius: 8px;
  grid-template-columns: repeat(2, 1fr);
  background: #fafafa;
  overflow: hidden;
  grid-column-gap: 40px; }
  @media (max-width: 767px) {
    .bank__promo {
      margin-right: -15px;
      margin-left: -15px;
      grid-template-columns: 1fr;
      grid-gap: 0; } }
  .bank__promo figure {
    display: block;
    margin: 0;
    padding: 0; }
    .bank__promo figure img {
      display: block;
      width: 100%;
      height: auto; }

.bank__promo-main {
  padding-top: 32px;
  padding-right: 0;
  padding-bottom: 32px;
  padding-left: 32px; }
  @media (max-width: 767px) {
    .bank__promo-main {
      padding-top: 32px;
      padding-right: 15px;
      padding-bottom: 8px;
      padding-left: 15px; } }




.header-search {
    height: 25px;
    border: 1px solid #D6D6D6;
    background: #fff;
    border-radius: 3px;
    overflow: hidden;
    margin-right: 10px;
    
}
@media (max-width: 991px) {
    .header-search {
        width: 100%; 
        margin-right: 90px;
    } 
}
.header-search form{
    display: flex;
    align-items: center;
}
.header-search input[type="text"] {
    border: none;
    padding: 0 10px;
    font-size: 10px;
    color: #363636;
    height: 25px;
    display: inline-flex;
    align-items: center;
    width: 380px;
    font-style: italic;
    background: transparent;
}
.header-search input[type="text"]::-moz-placeholder {
    color: #A9A9A9;
    opacity: 1;
}
.header-search input[type="text"]:-ms-input-placeholder {
    color: #A9A9A9;
}
.header-search input[type="text"]::-webkit-input-placeholder {
    color: #A9A9A9;
}
.header-search input[type="submit"] {
    height: 25px;
    width: 25px;
    border: none;
    padding: 0;
    background: url(../images/search-icon.svg) 50% no-repeat #fff;
    text-indent: -999px;
}
.search-xs{
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15px;
    right: -15px;
    padding: 0 15px;
    background: #173758;
    z-index: 10;
}

.content table td {
    font-weight: 400;
}

#monumentConstructor .options-block .radio-list .radio-img-block input[type=radio] {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    opacity: 0;
     z-index: 11; 
    cursor: pointer;
    -webkit-user-select: auto !important;
    -khtml-user-select: auto !important;
    -moz-user-select: auto !important;
    -ms-user-select: auto !important;
    -o-user-select: auto !important;
    user-select: auto !important; 
}


.label-calc > input{ /* HIDE RADIO */
  visibility: hidden; /* Makes input not-clickable */
  position: absolute; /* Remove input from document flow */
}
.label-calc > input + div{ /* IMAGE STYLES */
  cursor:pointer;
  border:2px solid transparent;
}
.label-calc > input:checked + div{ /* (RADIO CHECKED) IMAGE STYLES */
  border:2px solid #f00;
}  

/* *Месседжеры */

.whatsapp-button {
    position: fixed;
    right: 20px;
    bottom: 100px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    z-index: 9999;
    background-color: #25D366;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg role='img' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='%23FFF' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z'/%3e%3c/svg%3e");    
    background-size: 50%; 
    background-repeat: no-repeat;
    background-position: 50% 50%;
}
.whatsapp-button:before,
.whatsapp-button:after {
    content: " ";
    display: block;
    position: absolute;
    border: 50%;
    border: 1px solid #25D366;
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: border-animate 1.5s linear infinite;
    opacity: 0;
}
.whatsapp-button:after{
    animation-delay: .5s;
}
@keyframes border-animate
{
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}


.telegram-button {
    position: fixed;
    right: 20px;
    bottom: 10px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 40px;
    height: 60px;
    z-index: 9999;
    background-color: #2CA5E0;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath fill='%23FFF' d='M23.91 3.79L20.3 20.84c-.25 1.21-.98 1.5-2 .94l-5.5-4.07-2.66 2.57c-.3.3-.55.56-1.1.56-.72 0-.6-.27-.84-.95L6.3 13.7l-5.45-1.7c-1.18-.35-1.19-1.16.26-1.75l21.26-8.2c.97-.43 1.9.24 1.53 1.73z'/%3e%3c/svg%3e");
    background-size: 50%; 
    background-repeat: no-repeat;
    background-position: 50% 50%;
}
.telegram-button:before,
.telegram-button:after {
    content: " ";
    display: block;
    position: absolute;
    border: 50%;
    border: 1px solid #2CA5E0;
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: border-animate 1.5s linear infinite;
    opacity: 0;
}
.telegram-button:after{
    animation-delay: .5s;
}
@keyframes border-animate
{
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.max-button {
    position: fixed;
    right: 20px;
    bottom: 100px; 
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    z-index: 9999;
    background: #fff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_1267_2724' x1='18.1897' y1='1.82146' x2='2.92169' y2='13.3682' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23405DFE'/%3E%3Cstop offset='0.380911' stop-color='%237E41E7'/%3E%3Cstop offset='0.772107' stop-color='%237377E4'/%3E%3Cstop offset='0.995192' stop-color='%233CB7FB'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.35301 0.0244858C1.36327 0.482407 -2.00061 7.32868 1.28837 12.3674C4.77595 17.7104 12.8154 17.0298 15.3375 11.1781C17.719 5.65233 13.3614 -0.434828 7.35301 0.0244858ZM8.94961 3.11977C12.7846 3.86416 14.3067 8.48303 11.689 11.4324C10.5972 12.6625 8.66794 13.3141 7.09177 12.9852L6.81277 12.9269L6.59342 13.0457C6.0671 13.3307 4.68796 14.0296 4.65179 14.0296C4.62342 14.0296 4.6121 13.7077 4.6121 12.9023V11.7749L4.38923 11.5383C1.47283 8.44261 3.34356 3.46516 7.58439 3.03696C7.86503 3.00863 8.60977 3.05379 8.94961 3.11977ZM7.38861 4.45782C4.46989 5.01049 3.37385 8.5613 5.48905 10.6118C7.97061 13.0174 12.0902 10.8622 11.5564 7.43769C11.2547 5.50238 9.2902 4.09778 7.38861 4.45782Z' fill='url(%23paint0_linear_1267_2724)'/%3E%3C/svg%3E");

}

.max-button:before,
.max-button:after {
    content: " ";
    display: block;
    position: absolute;
    border: 1px solid #7377E4;
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: border-animate 1.5s linear infinite;
    opacity: 0;
}

.max-button:after {
    animation-delay: .5s;
}

@keyframes border-animate {
    0% { transform: scale(0.5); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: scale(1.2); opacity: 0; }
}

.max-button {
    width: 40px;
    height: 40px;
}

.telegram-button,.whatsapp-button {
    width: 40px;
    height: 40px
}

 @media (max-width: 767px) {
    .top-slider-wrapper .item-inner .item-right img {
        width: 100%;
    }
 }
 
 .product-carousel-wrapper {
    position: relative;
 }
  .guarantee {
    position: absolute;
    top: 0;
    right: 0;
 }
 
 .guarantee {
     width: 100px;
 }
 
 .copyright {
    display: flex;
    flex-wrap: wrap;
 }
 .copyright-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
 }
 
 
 
/* 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: #FF7000;
    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: #FF7000;
    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 {
    background: #000;
    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;
}





.company-slider img {
    height: 400px;
    object-fit: cover;
}
p.slick-slide {
    text-align: center;
}

/* Новостной блок на главной */

.castom-news-slider-container {
        max-width: 1430px;
        margin: 40px auto;
        padding: 0 20px;
        position: relative;
    }

    .castom-section-title {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 8px;
        color: #333;
        text-align: center;
    }

    .castom-section-subtitle {
        font-size: 16px;
        color: #666;
        margin-bottom: 24px;
        border-bottom: 2px solid #FFA500;
        padding-bottom: 10px;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .castom-news-slider {
        display: flex;
        overflow-x: hidden;
        scroll-behavior: smooth;
        gap: 24px;
        padding: 10px 0 30px;
    }

    .castom-news-item {
        flex: 0 0 calc((100% - 72px) / 4); /* 4 карточки + 3 gaps */
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .castom-news-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    }

    .castom-news-image {
        width: 100%;
        height: 180px;
        object-fit: cover;
        display: block;
    }

    .castom-news-content {
        padding: 16px;
    }

    .castom-news-date {
        font-size: 12px;
        color: #888;
        margin-bottom: 8px;
    }

    .castom-news-title {
        font-size: 18px;
        font-weight: 600;
        color: #222;
        line-height: 1.4;
        margin: 0 0 10px 0;
    }

    .castom-news-annotation {
        font-size: 14px;
        color: #555;
        line-height: 1.5;
        margin: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    /* Навигация — стрелки по краям контейнера */
    .castom-slider-navigation {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
        pointer-events: none;
        z-index: 10;
        padding: 0 20px; /* совпадает с padding контейнера */
    }

    .castom-nav-button {
        background-color: white;
        border: 2px solid #ddd;
        border-radius: 50%;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: auto;
        box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    }

    .castom-nav-button:hover {
        background-color: #f9f9f9;
        border-color: #aaa;
    }

    .castom-news-slider-container:hover .castom-nav-button {
        opacity: 1;
    }

    .castom-nav-button::before {
        content: '';
        display: block;
        width: 0;
        height: 0;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
    }

    .castom-prev-button::before {
        border-right: 9px solid #333;
    }

    .castom-next-button::before {
        border-left: 9px solid #333;
    }

    /* Адаптив: 3 карточки */
    @media (max-width: 1429px) {
        .castom-news-item {
            flex: 0 0 calc((100% - 48px) / 3);
        }
    }

    /* Адаптив: 2 карточки */
    @media (max-width: 1023px) {
        .castom-news-item {
            flex: 0 0 calc((100% - 24px) / 2);
        }
        .castom-news-image {
            height: 160px;
        }
    }

    /* Адаптив: 1 карточка — мобильные */
    @media (max-width: 767px) {
        .castom-news-slider-container {
            padding: 0 15px;
            margin: 30px auto;
        }

        .castom-section-title {
            font-size: 22px;
        }

        .castom-section-subtitle {
            font-size: 14px;
            margin-bottom: 20px;
        }

        .castom-news-slider {
            gap: 16px;
            padding-bottom: 20px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scroll-snap-type: x mandatory;
            /* Скрываем полосу прокрутки */
            scrollbar-width: none; /* Firefox */
        }

        .castom-news-slider::-webkit-scrollbar {
            display: none; /* Chrome, Safari */
        }

        .castom-news-item {
            flex: 0 0 100%;
            scroll-snap-align: start;
        }

        .castom-news-image {
            height: 160px;
        }

        .castom-news-title {
            font-size: 16px;
        }

        .castom-news-annotation {
            font-size: 13px;
            -webkit-line-clamp: 2;
        }

        /* Скрываем стрелки на мобильных (наведение не работает) */
        .castom-slider-navigation {
            display: none;
        }
    }
    
    
/* Страница новостей   */  
        /* Контейнер страницы */
        .castom-news-page {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .castom-news-page-title {
            font-size: 32px;
            font-weight: 700;
            color: #333;
            text-align: center;
            margin-bottom: 40px;
        }

        /* Сетка новостей — 4 в ряд */
        .castom-news-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            justify-content: flex-start;
        }
        
        
/* Статья   */      

        .castom-article-container {
            max-width: 1400px;
            margin: 40px auto;
            padding: 0 20px;
            color: #333;
            line-height: 1.7;
        }

        /* Превью-изображение */
        .castom-article-image {
            width: 50%;
           /*  height: 320px; */
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 24px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }

        /* Заголовок статьи */
        .castom-article-title {
            font-size: 32px;
            font-weight: 700;
            color: #222;
            margin-bottom: 16px;
            line-height: 1.3;
        }

        /* Мета: дата и автор */
        .castom-article-meta {
            display: flex;
            gap: 20px;
            font-size: 14px;
            color: #777;
            margin-bottom: 32px;
            border-bottom: 1px solid #eee;
            padding-bottom: 16px;
        }

        .castom-article-date,
        .castom-article-author {
            display: flex;
            align-items: center;
        }

        .castom-article-date::before,
        .castom-article-author::before {
            content: "";
            display: inline-block;
            width: 16px;
            height: 16px;
            margin-right: 6px;
            background-size: contain;
            opacity: 0.7;
        }

        .castom-article-date::before {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23777'%3E%3Cpath d='M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11z'/%3E%3C/svg%3E");
        }

        .castom-article-author::before {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23777'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
        }

/* Параграфы */
.castom-article-content p {
    margin-bottom: 24px;
}

/* Заголовки */
.castom-article-content h1 {
    font-size: 32px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: #222;
    line-height: 1.3;
}

.castom-article-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: #222;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.castom-article-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 32px 0 18px;
    color: #333;
}

.castom-article-content h4,
.castom-article-content h5,
.castom-article-content h6 {
    font-size: 20px;
    font-weight: 600;
    margin: 28px 0 16px;
    color: #444;
}

/* Списки — стандартные маркеры */
.castom-article-content ul {
    list-style-type: disc; /* Точка: • */
    margin: 24px 0;
    padding-left: 32px;
}

.castom-article-content ol {
    list-style-type: decimal; /* Цифры: 1., 2., 3. */
    margin: 24px 0;
    padding-left: 32px;
}

/* Элементы списка */
.castom-article-content ul li,
.castom-article-content ol li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Жирный и курсив */
.castom-article-content strong {
    font-weight: 700;
    color: #222;
}

.castom-article-content em {
    font-style: italic;
    color: #555;
}

/* Цитаты */
.castom-article-content blockquote {
    margin: 28px 0;
    padding: 16px 24px;
    background-color: #f9f9f9;
    border-left: 4px solid #FFA500;
    font-style: italic;
    color: #555;
    border-radius: 0 6px 6px 0;
    position: relative;
}

.castom-article-content blockquote::before {
    content: "“";
    font-size: 32px;
    color: #ddd;
    position: absolute;
    top: -10px;
    left: 10px;
    opacity: 0.5;
}

.castom-article-content blockquote::after {
    content: "”";
    font-size: 32px;
    color: #ddd;
    position: absolute;
    bottom: -10px;
    right: 10px;
    opacity: 0.5;
}

/* Ссылки */
.castom-article-content a {
    color: #E67E22;
    text-decoration: none;
    border-bottom: 1px dotted #E67E22;
    transition: all 0.2s ease;
}

.castom-article-content a:hover {
    color: #D35400;
    border-bottom-style: solid;
}

/* Код и предварительно отформатированный текст */
.castom-article-content code {
    font-family: Consolas, Monaco, 'Andale Mono', monospace;
    background-color: #f5f5f5;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 90%;
    color: #c7254e;
}

.castom-article-content pre {
    margin: 24px 0;
    padding: 16px;
    background-color: #f5f5f5;
    border-radius: 6px;
    overflow-x: auto;
    font-size: 15px;
    line-height: 1.5;
}

/* Вложенные списки */
.castom-article-content ul ul,
.castom-article-content ol ol,
.castom-article-content ul ol,
.castom-article-content ol ul {
    margin-top: 12px;
    margin-bottom: 12px;
    padding-left: 24px;
}

/* Отступы между блочными элементами */
.castom-article-content > * + * {
    margin-top: 24px;
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
    .castom-article-content {
        font-size: 16px;
        line-height: 1.6;
        padding: 16px 0;
    }

    .castom-article-content h1 {
        font-size: 26px;
    }

    .castom-article-content h2 {
        font-size: 24px;
    }

    .castom-article-content h3 {
        font-size: 20px;
    }

    .castom-article-content ul,
    .castom-article-content ol {
        padding-left: 24px;
    }

    .castom-article-content blockquote {
        padding: 12px 16px;
        font-size: 15px;
    }
}

   /* МЕНЮ */
     .top-nav-section.fixed {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: #ffffff;
    }