* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    /* color: #000; */
    font-size: 14px;
    line-height: 1.4;
    color: #464857;
}

button,
input,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: 'Open Sans', sans-serif;
}

button:focus,
input:focus,
textarea:focus {
 outline: none;
}

:focus {
    outline: none;
}

h1,
.h1-like 
{
    padding: 0;
    margin: 0 0 30px 0;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    /* color: #2c2c38; */
    color: #000;
}

.h1_index {
    font-size: 28px;
    margin-bottom: 20px;
}

h2,
.h2-like 
{
    padding: 0;
    margin: 0 0 15px 0;
    font-size: 26px;
    line-height: 1.1;
    font-weight: 700;
    color: #000;
}

h3,
.h3-like 
{
    padding: 0;
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.wrapper {
    width:100%;
    max-width: 1200px;
    margin: 0px auto;
    padding: 0 10px 0 10px;
}

/*---HEADER-----*/

.header {
    display: inline-block;
    width: 100%;
    padding: 0 0 10px 0;
    /* border-bottom: 1px solid #D1D8DE; */
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.15);
    background: #fff;
    font-size: 14px;
}

.header-top {
    width: 100%;
    height: 44px;
    /* background: #eff2f6; */
    background: #2A272F;
    color: #fff;
    
}

.header-top__wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    /* align-content: space-between; */
}

/*------nav main---*/
.nav-main {
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0;
    float: left;
    flex-grow: 0;
}

.nav-main > li {
   float: left;
   margin-right: 30px;
   position: relative;
}

.nav-main > li.is-have-sub {
    padding-right: 12px;
}

.nav-main > li.is-have-sub::after {
    content: '';
    border: solid #fff;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 2px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    position: absolute;
    z-index: 1;
    right: 0;
    top: 50%;
    margin-top: -4px;
}

.nav-main a { 
    display: inline-block;
    height: 44px;
    padding-top: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    position: relative;
    white-space: nowrap;
}

.nav-main a:hover { 
    color: #E0336A;
}

.nav-main a.is-active::after { 
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 2px;
    left: 0;
    background: #E0336A;
}


.nav-main > li > ul {
    display: none;
    position: absolute;
    left: 0;
    border-radius: 6px;
    top: 100%;
    list-style: none;
    background: #fff;
    box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.1);
    padding: 10px 15px 15px 20px;
    margin: 0 0 0 -15px;
    z-index: 100;
}

/* .nav-main > li > ul > li {
    margin-bottom: 8px;
} */

.nav-main > li > ul > li > a {
    font-weight: 400;
    height: auto;
    color: #000;
}

.nav-main > li > ul > li.is-active {
    color: #E0336A;
}

@media (min-width: 769px) {
    .nav-main > li:hover > ul {
        display: inline-block;
    }
}
/*------end nav main---*/

/*------pitomnik btn---*/


.header-ilink {
    display: inline-block;
    margin: 10px 20px 0 20px;
    color: #fff;
    font-size: 13px;
    float: left;
    font-weight: 600;
    text-decoration: none;
    vertical-align: middle;
    
    line-height: 20px;
    
}


.header-ilink__icon  {
    vertical-align: middle;
    width: 20px;
    height: 20px;
    margin-top: -2px;
    fill: #fff;
    margin-right: 2px;
}


.header-ilink:hover {
    color: #E0336A;
}

/*-----end pitomnik btn---*/




/*------header base line---*/
.header-base {
    display: inline-block;
    background: #fff;
    width: 100%;
    padding: 10px 0 10px 0;
    margin: 15px 0 15px 0;
    position: relative;
    z-index: 1050;
}

.header-base__wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
}

@media (min-width: 769px) {

    .header-base.fixed {
        position: fixed;
        top: 0;
        margin: 0;
        z-index: 1000;
        padding: 8px 0 8px 0;
        box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.15);
    }

}

.header-logo,
.header-nav
{
    flex-grow: 0;
    margin-right: 3%;
}

.header-search {
    flex-grow: 1;
    margin: 0 3% 0 10px;
}

@media (min-width: 769px) {
    .header-nav.is-index {
        display: none;
    }

    .fixed .header-nav.is-index {
        display: block;
    }
}
/*------end header base line---*/



/*------header logo---*/
.header-logo{
    width: 220px;
    display: inline-block;
    text-decoration: none;
    /* white-space: nowrap; */
}

.header-base.fixed .header-logo {
    width: 180px;
}

.header-logo__icon {
    display: inline-block;
    float: left;
    width:55px;
    height: 44px;
    margin: 0 10px 0 0;
    background: url("../images/logo.svg") no-repeat;
}

.header-base.fixed .header-logo__icon {
    width: 55px;
    height: 44px;
    margin: 0 8px 0 0;
}

.header-logo__text {
    display: inline-block;
    float: left;
    width: 150px;
    margin: 4px 0 0 0;
}

.header-base.fixed .header-logo__text {
    width: 100px;
}

.header-base.fixed .header-logo__text {
    margin: 12px 0 0 0;
}

.header-logo__name {
    display: block;
    font-weight: 800;
    font-size: 18px;
    line-height: 1;
    /* text-transform: uppercase; */
    color: #000;
}

/* .header-base.fixed .header-logo__name {
    font-size: 20px;
} */

.header-logo__desc {
    display: block;
    font-weight: 400;
    font-size: 12px;
    margin-top: 4px;
    line-height: 1.1;
    /* text-transform: uppercase; */
    color: #858C9F;
}

.header-base.fixed .header-logo__desc {
    display: none;
}

/*------end header logo---*/


/*------nav cat btn------*/
.nav-cat-btn {
    display: inline-block;
    height: 44px;
    background: #fff;
    color: #000;
    border: 2px solid #E0336A;
    border-radius: 22px;
    text-align: center;
    padding: 0 20px ;
    cursor: pointer;
    text-decoration: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    white-space: nowrap;
    /* -webkit-transition: background 0.1s;
    transition: background 0.1s; */
    /* -webkit-transition: background 0s 0.1s;
    transition: background 0s 0.1s; */
}



/*-----btn sidebar hamburger---*/

.nav-cat-btn:hover {
    /* background: #8abd00; */
    background: #E0336A;
    color: #fff;

}


.nav-cat-btn:focus {
    outline: none;
}

.nav-cat-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin: -3px 5px 0 0;

    vertical-align: top;
    /* float: left; */
    position: relative;
}

.nav-cat-icon span {
    display: block;
    position: absolute;
    top: 9px;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 1px;
    background-color: #E0336A;
}

.nav-cat-icon span::before, 
.nav-cat-icon span::after 
{
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 1px;
    background-color: #E0336A;
    content: "";
}

.nav-cat-btn:hover .nav-cat-icon span,
.nav-cat-btn:hover .nav-cat-icon span::before,
.nav-cat-btn:hover .nav-cat-icon span::after
{
    background-color: #fff;
}

.nav-cat-icon span::before {
    top: -6px;
    width: 13px;
}

.nav-cat-icon span::after {
    bottom: -6px;
    width: 8px;
}

.nav-cat-icon.animx span {
    /* -webkit-transition: background 0s 0.1s;
    transition: background 0s 0.1s; */
}
.nav-cat-icon.animx span::before, 
.nav-cat-icon.animx span::after 
{
    -webkit-transition-duration: 0.1s, 0.1s;
            transition-duration: 0.1s, 0.1s;
    -webkit-transition-delay: 0.1s, 0s;
            transition-delay: 0.1s, 0s;
}
.nav-cat-icon.animx span::before {
    -webkit-transition-property: top, transform;
    transition-property: top, transform;
}

.nav-cat-icon.animx span::after {
    -webkit-transition-property: bottom, transform;
    transition-property: bottom, transform;
}

/* when menu open: */
.nav-cat-icon.animx.is-active span {
    background: none;
    
}

.nav-cat-icon.animx.is-active span::before, 
.nav-cat-icon.animx.is-active span::after 
{
    /* background-color: #FFBF34; */
    width: 100%;
    -webkit-transition-delay: 0s, 0.1s;
            transition-delay: 0s, 0.1s;
}

.nav-cat-icon.animx.is-active span::before {
    top: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}

.nav-cat-icon.animx.is-active span::after {
    bottom: 0;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
}
/*-----end nav cat btn---*/

/*---nav-cat-slide---*/
.nav-cat-slide {
    position: absolute;
    top: 50px;
    min-width: 300px;
    display: none;
    background: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    color: #000;

    list-style: none;
    
    
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.15);
}



.header-nav {
    position: relative;
}

.nav-cat-slide > li {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.nav-cat-slide > li:not(:last-child) {
    margin-bottom: 10px;
}

.nav-cat-slide > li > div:first-child {
    margin-right: 5px;
}

.nav-cat-slide > li > div:last-child > a{
    color: #000;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.nav-cat-slide > li > div:last-child > a:hover{
    color: #E0336A;
}
.nav-cat-slide__sub {
    display: inline-block;
    line-height: 1.1;
    margin: 4px 10px 0 0;
    color: #464857;
    text-decoration: none;
}

.nav-cat-slide__sub:hover {
    color: #E0336A;
}
/*---end nav-cat-slide---*/



/*---------search-------*/
.search-form {
    display: inline-block;
    position: relative;
    width: 100%;
    float: left;
    height: 44px;

}


.search-form__string{
    width: 100%;
    height: 44px;
    background: #EEECEF;
    font-size: 14px;
    border: none;
    padding: 0 30px 0 20px;
    border-radius: 22px;
    border: 1px solid #EEECEF;
    -webkit-transition: border-color .2s ease-in-out,background-color .2s ease-in-out;
    transition: border-color .2s ease-in-out,background-color .2s ease-in-out;
}

.search-form__string:focus{
    border-color: #E0336A;
}

.search-form__btn {
    display: inline-block;
    position: absolute;
    width: 34px;
    height: 34px;
    right: 10px;
    top: 5px;
    border-radius: 18px;
    background: none;
    cursor: pointer;
    padding: 0;
    border:none;
}

.search-form__icon{
    display: inline-block;
    float: left;
    margin: 0 0 0 8px;
    width: 18px; 
    height: 18px;
    fill:#000;
}

.search-form__btn:hover .search-form__icon {
    fill: #E0336A;
}

.search-autocomplete {
    display: none;
    position: absolute;
    left: 0;
    top: 50px;
    background: #fff;
    width: 100%;
    color: #000;
    min-width: 300px;
    /* max-width: 400px; */
    z-index: 1000;
    /* border: 1px solid #ebebeb; */
    font-size: 13px;
    border-radius: 12px;


    box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
}

.search-autocomplete__container {
    display: inline-block;
    width: 100%;
}

.search-autocomplete__container a{
    color: #000;
    text-decoration: none;
}

.search-autocomplete__product{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #E6E7E8;
    padding: 7px 10px;
    width: 100%;
    
}

.search-autocomplete__product:first-child{
    border-radius: 12px 12px 0 0;
}

.search-autocomplete__product:last-child{
    border-bottom: none;
    border-radius: 0 0 12px 12px;
}

.search-autocomplete__product:hover {
    background: #EEECEF;
}

.search-autocomplete__product:hover .sr-title{
    color: #E0336A;
    text-decoration: underline;
}

.search-autocomplete__product-img{
    display: inline-block;
    float: left;
    overflow: hidden;
    width: 50px;
    height: 50px;
    padding: 5px;
    background: #fff;
    border-radius: 6px;
    text-align: center;

}

.search-autocomplete__product-img img{
    max-width: 100%;
    max-height: 100%;
}

.search-autocomplete__product-desc{
    display: inline-block;
    float: left;
    width: calc(100% - 70px);
    padding-left: 10px;
    
}

.search-autocomplete__product-price {
    padding-top: 5px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

/*---------end search------*/


/*----header---shop---*/
.header-cart {
    display: inline-block;
    width: 30px;
    height:22px;
    position: relative;
    margin: 5px 10px 0 30px;
    float: left;
}

.header-cart__icon{
    width: 26px;
    height: 22px;
    fill: #000;
}

.header-cart__count,
.header-bookmark__count,
.header-compare__count
{
    position: absolute;
    display: inline-block;
    top: -8px;
    right: -10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    background: #EEECEF;
    color: #827984;
    font-size: 11px;
    line-height: 20px;
    font-weight: 600;
    
}


.header-cart__count.is-active,
.header-bookmark__count.is-active,
.header-compare__count.is-active
{
    display: inline-block;
    background: #E0336A;
    color: #fff;
}

.header-cart:hover  .header-cart__icon{
    fill: #E0336A;
}


.header-bookmark {
    display: inline-block;
    width: 30px;
    height: 27px;
    position: relative;
    float: left;
    margin: 5px 3% 0 0;
}

.header-bookmark__icon{
    width: 24px;
    height: 22px;
    fill: #000;
}

.header-bookmark:hover  .header-bookmark__icon{
    fill: #E0336A;
}

.header-compare {
    display: inline-block;
    width: 30px;
    height:40px;
    position: relative;
    float: left;
    margin-right: 20px;
}

.header-compare__icon{
    width: 33px;
    height: 25px;
    fill: #000;
}

.header-compare:hover  .header-compare__icon{
    fill: #E0336A;
}

/*----end header---shop---*/

/*---header---contacts---*/
.header-contacts {
    text-align: right;
}

.header-contacts__time {
    /* font-size: 12px; */
    color: #858C9F;
}

.header-contacts__phone {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
}

a.header-contacts__phone:hover {
    /* color: #423F48; */
    color: #E0336A;
    
}

/*----nav cat main---*/

.nav-cat-container {
    display: inline-block;
    width: 100%;
    float: left;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid #E6E7E8;
    
}

.nav-cat {
    list-style: none;
    margin: 0;
    padding: 0;

    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-around;
    flex-wrap: nowrap;
}

.nav-cat > li {
    display: inline-block;
    width: 100%;
    word-wrap: break-word;
}

.nav-cat > li:not(:last-child) {
    border-right: 1px solid #D9DEE3;
}

.nav-cat > li > a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    /* max-width: 140px; */
    line-height: 1.1;
}

.nav-cat > li:hover > a {
    color: #E0336A;
}

.nav-cat > li > a > span {
    max-width: 100px;   
}

.nav-cat > li {
    padding: 0; 
    float: left;
}

.nav-cat__icon {
    width: 34px;
    height: 34px;
    fill: #000;
    margin-right: 8px;
}

/*----end nav service---*/



/*---- nav catalog---*/

.nav-cat-sub {
    position: absolute;
    z-index: 1000;
    left: 0;
    opacity: 0;
    visibility: hidden;

    right: 0;
    margin-top: 15px;
    /* background: #F6F5F6; */
    background: #fff;
    border: 2px solid #E0336A;
    min-height: 300px;
    box-shadow: 0px 10px 14px 0px rgba(0,0,0,0.2);
    padding: 30px 30px;
    /* display: inline-block; */
    overflow-y: auto;
    max-height: calc(100vh - 80px);

    transition: opacity 200ms, visibility 200ms, transform 200ms;
    border-radius: 9px;    
    /* overflow-y: auto; */
}

.nav-cat-sub__wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    /* align-content: space-between; */
}

.nav-cat-sub a {
    display: block;
    color: #000;
    text-decoration: none;
    margin-bottom: 6px;
    line-height: 1.3;
    font-size: 13px;
}

.nav-cat-sub a:hover {
    color: #E0336A;
}

.nav-cat-sub__header {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 6px;
    /* text-transform: uppercase; */
}

.nav-cat-sub__group { 
    /* max-width: 20%; */
    flex-grow: 1;
    /* min-width: 200px; */
    padding-right: 30px;
    margin-bottom: 30px;
}

.nav-cat > li:hover .nav-cat-sub {
    /* display: block; */
    opacity: 1;
    visibility: visible;
}

/*---- end nav catalog---*/

.page {
    display: inline-block;
    width: 100%;
    padding: 20px 0 30px 0;
    position: relative;
    min-height: 700px;
}

.page.is-nav-open::before{
    content: '';
    position: absolute;
    top:0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    opacity: 0.3;
    z-index: 110;
}

.catalog-container {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
}

.filter-col {
    min-width: 260px;
    max-width: 260px;
    margin-right: 30px;
}

.catalog-list {
    width: 100%;
    flex-grow: 1;
}


/*----INDEX-BANNER-------*/

.index-banner-row {
    display: flex;
    
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    margin-bottom: 20px;
}

.index-banner-container {
    max-width: 885px;
    /* width: 885px; */
    width: 75%;
}

.index-banner-container img {
    width: 100%;
}

.index-banner-s {
    width: 24%;
    margin-left: 20px;
    max-height: 350px;
} 

.index-banner-s img{
    max-width: 100%;
    min-height: 100%;
    max-height: 350px;
}

.index-banner__item {
    display: inline-block;
    width: 100%;
    float: left;
}

.index-banner__item img{
    width: 100%;
    float: left;
    border-radius: 12px;
}

.index-banner .slick-list {
    border-radius: 12px;
}

.index-banner .slick-dots{
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: center;
    position: absolute;
    top:100%;
    margin-top: -30px;
}

.index-banner .slick-dots li{
    display: inline-block;
    margin: 0 5px 0 5px;
}

.index-banner .slick-dots li button{
    background: none;
    font-size: 0;
    line-height: 0;
    border: 0;
    padding: 0;
    margin: 0 5px;
    cursor: pointer;
    color: transparent;
    outline: none;
    background: transparent;

}

.index-banner .slick-dots li button:before
{
    content: '';
    width: 40px;
    height: 5px;
    background: #fff;
    display: inline-block;
}

.index-banner .slick-dots li.slick-active button:before
{
    background: #E0336A;
    opacity: 1;
}

.slide-arrow-default {
    display: inline-block;
    position: absolute;
    top: 50%;
    margin-top: -20px;
    width: 20px;
    height: 40px;
    border: none;
    cursor: pointer;
    z-index: 50;   
    background: #fff;
    padding: 0;
}

.slide-arrow-default.slide-next {
    right: -25px;
}

.slide-arrow-default.slide-prev {
    left: -25px;
}

.slide-arrow-default.slide-prev:after,
.slide-arrow-default.slide-next:after 
{
    top:10px;
    left: 4px;
}


.slide-arrow-default.slide-prev:after {
    background-position: 0 -16px;
}

.slide-arrow-default.slide-prev.slick-disabled:after {
    background-position: 0 -16px;
}

.slide-arrow-default.slide-next:after {
    background-position: -12px -16px;
}

.slide-arrow-default.slide-next.slick-disabled:after {
    background-position: -12px -16px;
}

.slide-arrow-round {
    display: inline-block;
    position: absolute;
    top: 50%;
    margin-top: -20px;
   
    border: none;
    cursor: pointer;
    z-index: 50;   
     
    background: #fff;
    border-radius: 50%;
    padding: 0;
    box-shadow: 0px 4px 4px 0px rgba(0,0,0, 0.1);
}

.slide-arrow-round_small {
    width: 40px;
    height:40px;
}

.slide-arrow-round_big {
    width: 60px;
    height:60px;
}

.slide-arrow-round:active {
    box-shadow: 0px 4px 4px 0px rgba(0,0,0, 0.1) inset;
}


.slide-arrow-round {
    text-align: center;
}


.slide-arrow-round_small.slide-next {
    right: -15px;
}

.slide-arrow-round_small.slide-prev {
    left: -15px;
}

.slide-arrow-round_big.slide-next {
    right: -30px;
}

.slide-arrow-round_big.slide-prev {
    left: -30px;
}

.slide-prev:after,
.slide-next:after
{
    content: '';
    /* position: absolute; */
    display: inline-block;
    width: 10px;
    height: 16px;
    background: url("../images/i-arrow-16.png") no-repeat;
}

.slide-arrow-round.slide-prev:after,
.slide-arrow-round.slide-next:after 
{
    margin-top:4px;
    
}

.slide-arrow-round.slide-prev:after {
    background-position: 0 -16px;
}

.slide-arrow-round.slide-prev.slick-disabled:after {
    background-position: 0 -32px;
}

.slide-arrow-round.slide-next:after {
    background-position: -10px -16px;
}

.slide-arrow-round.slide-next.slick-disabled:after {
    background-position: -10px -32px;
}

/*----END-INDEX-BANNER-------*/

/*----INDEX CATEGORY---*/

.index-cat {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-between;
    margin: 15px -10px 30px -10px;
    /* justify-content: flex-start; */
    /* justify-content: space-around; */
    /* align-items: flex-start; */
}

.index-cat-item {
    min-width: 140px;
    min-height: 90px;
    float: left;
    width: calc(16.66% - 20px);
    background: #fff;
    padding: 0 15px 0 10px;
    margin: 0 10px 20px 10px;
    border-radius: 6px;
    /* background: #f3f4f6; */
    background: #EEECEF;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    /* font-weight: 500; */
    text-align: center;

    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    text-align: left;
}

.index-cat-item__img {
    height: 100%;
    margin-right: 10px;
    min-width: 60px;
    position: relative;
    /* display: flex; */
}

.index-cat-item__img img {
    position: absolute;
    bottom: 0;
}

.index-cat-item:hover {
    background: #e3e0e4;
}

.index-cat-item__title {
    width: 100%;
}
/*----END INDEX CATEGORY---*/

/*---BRAND LINE---*/
.brand-pop {
    display: inline-block;
    width: 100%;
    margin: 20px 0 20px 0;
}

.brand-list {
    width: 100%;
    display: inline-block;
    margin-bottom: 40px;
}

.brand-item {
    display: inline-block;
    float: left;
    border-radius: 12px;
    border: 2px solid #EFEEF0;
    transition: box-shadow 0.4s;
    position: relative;
    overflow: hidden;
    text-align: center;
    width: 15%;
    height: 110px;
    min-width: 150px;
    box-sizing: border-box;
}

.brand-list_roll {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-left: -10px;
    margin-right: -10px;
    width: calc(100% + 20px);
    
}

.brand-list_roll .brand-item{
    max-width: 15%;
    margin: 0px 10px 20px 10px;
    flex-basis: 15%;
}


.brand-item img {
    max-width: 90%;
    max-height: 90px;
    position: absolute;
    top: -9999px;
    bottom: -9999px;
    left: -9999px;
    right: -9999px;
    margin:auto
}

.brand-item:hover {
    box-shadow: 1px 0px 12px 0px rgba(0,0,0,0.12);
}

.brand-slider{
    height: 120px;
    /* width: 100%;
    overflow: hidden; */
}

.brand-slider .brand-item{
    margin: 10px 5px 10px 5px;
    float: left;
    /* width: auto; */
    height: 110px;
}

/*---END BRAND LINE---*/

/*---BRAND ROLL---*/

/*---END BRAND ROLL---*/
.brands-roll {
    padding-left: 0;
    list-style:none;
    margin-top: 20px;
}

.brands-roll__title {
    padding-top: 0;
    margin-bottom:27px;
}

.brands-roll__country {
    font-weight: 600;
    line-height: 1;
    font-size: 18px;
    color:#000;
}

.brands-roll__name {
    line-height: 1.2;
}

.brands-roll__link {
    color: inherit;
    text-decoration: none;
}

.brands-roll__link:hover {
    text-decoration:underline;
    color: #E0336A;
}



@media (min-width: 576px) {
    .brands-roll__all, .brands-roll__close {
        display:none;
    }

    .brands-roll {
        margin-bottom: 104px;
    }

    .brands-roll__item {
        margin-bottom: 9px;
    }

    .brands-roll__gap {
        margin-bottom: 29px;
    }

   
}

@media (min-width: 1280px) {
    .brands-roll {
        -webkit-column-count: 4;
        -moz-column-count: 4;
        column-count:4;
    }
}

@media (max-width: 575px) {
    .brands-roll__all {
        width: 100%;
        margin-bottom:80px;
    }

    .brands-roll, .brands-roll__title {
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        -webkit-transition: -webkit-transform .2s ease-in-out;
        transition: -webkit-transform .2s ease-in-out;
        transition: transform .2s ease-in-out;
        transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
        will-change: transform;
        -webkit-transform: translateX(-100%);
        transform:translateX(-100%);
    }

    .brands-roll__title {
        height: 60px;
        font-size: 18px;
        background-color: #f5f5f7;
        -webkit-box-shadow: 0 10px 15px rgba(61, 61, 78, .1);
        box-shadow: 0 10px 15px rgba(61, 61, 78, .1);
        z-index: 25;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content:center;
    }

    .brands-roll {
        height: 100%;
        padding-top: 90px;
        overflow-y: auto;
        background-color: #fff;
        z-index:24;
    }

    .brands-roll__item:not(.brands-roll__gap) {
        margin-bottom:18px;
    }

    .brands-roll__country {
        padding-left:16px;
    }

    .brands-roll__name {
        padding-left:24px;
    }

    .brands-roll__gap {
        padding-bottom: 27px;
        margin-bottom: 30px;
        border-bottom:1px solid #dfdfe6;
    }

    
}

@media (min-width: 576px) and(max-width: 1279px) {
    .brands-roll {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count:3;
    }
}
/*--- LOGO ROW---*/

.index-about {
    display: flex;
    width: 100%;
    margin-bottom: 40px;
}

.index-about__img {
    width: 50%;
    float: left;
    /* border-radius: 12px; */
    /* overflow: hidden; */
}

.index-about__img img {
    max-width: 100%;
    border-radius: 12px;
}

.index-about__desc {
    width: 45%;
    margin-left: 5%;
    float: left;
    font-size: 16px;
}

.index-content-block {
    /* display: inline-block; */
    position: relative;
    margin-bottom: 40px;
}
/*--- END LOGO ROW---*/

/*---article--list---*/

.article-list {
    width: 100%;
    /* margin-bottom: 60px; */
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    text-align: left;
    flex-wrap:wrap
}

.article-item {
    display: inline-block;
    width: 31%;
    background: #fff;
    margin-bottom: 40px;
    border-radius: 12px;
    font-size: 16px;
    border: 2px solid #EFEEF0;
    transition: box-shadow 0.4s;
}

.article-item:hover {
    box-shadow: 1px 0px 12px 0px rgba(0,0,0,0.12);
}

.article-item__img {
    display: inline-block;
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    border-radius: 6px 6px 0 0
}

.article-item__img img {
    /* max-height: 120%; */
    width: 100%;
    position: absolute;
    top: -9999px;
    bottom: -9999px;
    left: -9999px;
    right: -9999px;
    margin:auto
}

.article-item__body {
    color: #595B6F;
    padding: 20px 20px 30px 20px;
}

.article-item__date {
    margin-bottom: 10px;
}

.article-item__title {
    font-weight: 600;
    font-size: 16px;
    color: #000;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
    -webkit-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out;
}

.article-item__title:hover,
.article-item-short__title:hover {
    color:#E0336A;
    text-decoration: none;
}

.article-item-short {
    margin-bottom: 20px;
    font-size: 16px;
}

.article-item-short__date {
    color: #858C9F;
    margin-bottom: 5px;
}

.article-item-short__title {
    font-weight: 600;
    color: #000;
    text-decoration: none;
    -webkit-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out;
}

.article-item-short__desc {
    margin-top: 5px;
}
/*---article--list---*/

/*--POST--PAGE---*/

.post-page {
    width: 100%;
}

.post-page__date {
    color: #595B6F;
    margin-bottom: 20px;
}

.content-description {
    /* max-width: 900px; */
    font-size: 16px;
    line-height: 1.7;
    /* margin: 0 auto; */
}

.content-description a {
    color: #000;
    text-decoration: underline;
}

.content-description a:hover {
    color: #E0336A;
}

.post-page-img {
    max-width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}

.col-page {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
}

.col-page__left {
    width: 100%;
    max-width: 800px;
}

.col-page__right {
    width: 300px;
    margin-left: 40px;
    font-size: 14px;
}

.border-container {
    border: 2px solid #EFEEF0;
    width: 100%;
    padding: 30px;
    border-radius: 12px;
}

/*--END--POST--PAGE---*/

/*---CATALOG---*/

.description-brand {
    margin-bottom: 30px;
}

/*--OPTIONBAR----*/

.catalog-optionbar {
    display: none;
    flex-direction: row;
    margin-bottom: 20px;
}



.catalog-optionbar__category {
    background: #f3f4f6;
    margin-right: 5px;
    border-radius: 3px;
    padding: 10px;
    white-space: nowrap;
    vertical-align: baseline;
    cursor: pointer;
}

.catalog-optionbar__filter {
    background: #E0336A;
    /* margin-left: 5px; */
    flex-grow: 1;
    padding: 10px 10px;
    white-space: nowrap;
    vertical-align: baseline;
    cursor: pointer;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.catalog-optionbar__icon {
    fill: #fff;
    width: 20px;
    height: 20px;
    margin-right: 4px;
    vertical-align: top;
}
/*--END OPTIONBAR----*/

/*------PRODUCT LIST------*/
.product-list {
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    /* align-items: stretch; */
    /* justify-content: space-between; */
    /* margin: 0px -1% 20px -1%; */
    margin-bottom: 20px;

    /* align-items: stretch;
    justify-content: flex-start; */

}



.product {
    display: flex !important;
    flex-direction: column !important;
    position: relative;
    width: 22%;
    /* margin: 0 0 20px 0; */
    height: 500px;
    padding: 0 0 15px 0;
    position: relative;
    min-width: 160px;
    background: #fff;
    border-radius: 12px;
    border: 2px solid #EFEEF0;
    transition: box-shadow 0.4s;
    font-size: 14px;
    
    /* box-shadow: 1px 0px 10px 0px rgba(0,0,0,0.08); */
}

.product:hover {
    box-shadow: 1px 0px 12px 0px rgba(0,0,0,0.12);
}

@supports (display:grid) {
    .product-list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(230px,1fr));
        /* grid-gap: 20px; */
        row-gap: 30px;
        column-gap: 30px;
        grid-auto-flow: dense;
        /* margin: 0 0 20px; */
    }

    .product {
        width: auto;
    }
}


.product__img {
    width: 100%;
    height: 280px;
    margin-bottom: 5px;
    padding: 5px;
    margin-top: 10px;
    /* border-bottom: 1px solid #E9E9E9; */
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.product__img.nophoto {
    background: #fff url('../images/nophoto.jpg');
    background-size: contain;
    ;
}


.product__img_cover {
    overflow: hidden;
}

.product__img_fix { 
    display: table;
}

.product__img_fix .product__img-inner{
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    width: 100%;
    height: 280px;
    /* float: left; */
}

.product__img_fix img{
    max-width: 100%;
    max-height: 100%;
    display: inline-block !important;
    /* background: #eee; */
}

.product__img_cover img{
    min-height: 280px;
    max-height: 400px;
    max-width: 400px;
    position: absolute;
    top: -9999px;
    bottom: -9999px;
    left: -9999px;
    right: -9999px;
    margin: auto;
}

.product__row {
    padding: 5px 10px 5px 10px;
}


.product__body {
    
    width: 100%;
    padding: 5px 20px 0 20px;
    
    margin-bottom: 30px;
    flex: 1;
    display: flex !important;
    flex-direction: column !important;
    text-align: center;
    
    
    max-height: 200px;
    overflow: hidden;
    /* position: relative;
    
    text-align: center; */
}

.product__body:before {
    content: '';
    display: inline-block;
    position: absolute;
    bottom:0;
    left: 0;
    width: 100%;
    height: 20px;
    z-index: 10;
    border-radius: 0 0 12px 12px;

    background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
}

.product__desc-short{
    display: inline-block;
    width: 100%;
    height: 70px;
    padding: 5px 10px 10px 10px;
}

.product__title-row {
    height: 100%;
    flex-grow: 1;
}
.product__title {
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
    display: inline-block;
    -webkit-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out;
    
}

.product__title:hover {
    color: #E0336A;
    text-decoration: none;
}

.product__vendor{
    /* margin-top: auto; */
    /* color: #858C9F; */
    margin-bottom: 10px;
    /* font-size: 16px; */
    /* margin: 5px 0 10px 0; */
}

.product__property__item {
    display: inline-block;
    /* color: #858C9F; */
    /* font-size: 16px; */
    margin-right: 10px;
}

.product__kod{
    margin: 5px 0 0 0;
}

.product__footer {
    position: absolute;
    padding: 0 15px 0 20px;
    left: 0;
    bottom: 15px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    height: 40px;
}

.product__sale{
    position: absolute;
    margin-top: -22px;
}

.product__row_btn {
    position: relative;
}

.product__bookmark{
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    z-index: 10;
    padding: 12px 3px;
    cursor: pointer;
}

.product__bookmark.is-active {
    display: inline-block;
}

.product__bookmark-icon {
    width: 22px;
    height: 18px;
    fill: #000;
}

.product__bookmark:hover .product__bookmark-icon,
.product__bookmark.is-active .product__bookmark-icon
{
    fill: #E0336A;
}

.product:hover .product__bookmark{
    display: inline-block;
}

.product__price {
    line-height: 1;
    width: 100%;
}

.product__price-value {
    font-size: 20px;
    font-weight: 700;
}

.product__btn-buy {
    display: inline-block;    
    cursor: pointer;
    height: 40px;
    width: 40px;
    background: #E0336A;
    border-radius: 50%;
    padding: 10px;
}

.product__btn-buy svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}


.product__btn-buy:hover {
    background: #E0336A;
}


.product__sticker {
    position: absolute;
    left: 15px;
    top: 10px;
    z-index: 5;
    text-align: left;
}

.product__sticker_p-card {
    top: 0;
    left: 0;
}

.sticker {
    display: block;
    padding: 0 0;
    font-size: 11px;
    color: #000;
    font-weight: 700;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 20px;
    float: left;
    margin: 0 10px 10px 0;
    text-align: center;
    text-transform: uppercase;
    
}

.sticker_sale {
    background: #E0336A;
}

.sticker_sale::before {
    content: '\002D';
    display: inline-block;
    margin-right: 1px;
}

.sticker_sale::after {
    content: '\0025';
    display: inline-block;
    margin-left: 2px;
}

.sticker_hit {
    background: #FFD858;
    /* background: #C948FC; */
    
}

.sticker_novelty {
    
    background: #90E3FF;
}

.sticker_archive {
    color: #000;
    background: #F1F1F3;
}
/*---END PRODUCT LIST------*/

/*----PRODUCT---SLIDE----*/
.product-slider {
    height: auto;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: space-between;
    /* width: 100%;
    overflow: hidden; */
}

.product-slider .product{
    margin: 10px 10px;
    float: left;
    width: auto;
    height: 500px ;
}

.product-slider .product__desc,
.product-slider .product__footer
{
    padding-right: 15px;
    padding-left: 15px;
}

.product-slider .slick-list{
    margin: 0 -10px;
}
/*---------END PRODUCT SLIDE-------*/

/*---PRODUCT SMALL---*/
.product-small {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    min-width: 220px;
    height: 100px;
    padding: 15px;
    border: 2px solid #EFEEF0;
    border-radius: 12px;
    color: #000;
    text-decoration: none;
    transition: box-shadow 0.4s;
}

.product-small:hover {
    box-shadow: 1px 0px 12px 0px rgba(0,0,0,0.12);
}


.product-small_viewed {
    width: 24%;
    margin-right: 1%;
}

.product-small_long {
    width: 100%;
    float: left;
    margin-bottom: 10px;
}

.product-small__img {
    width: 70px;
    height: 80px;
    text-align: center;
    float: left;
}

.product-small__img img {
    display: inline-block !important;
    max-width: 100%;
    max-height: 100%;
}

.product-small__desc {
    float: left;
    width: 100%;
    padding-left: 10px;
    font-size: 13px;
    line-height: 1.2;
    
}

.product-small__title {
    font-weight: 600;
}

a.product-small:hover .product-small__title{
    color: #E0336A;
}

.product-small__price {
    font-size: 14px;
    font-weight: 700;
}

.product-small-slider{
    height: 120px;
    /* width: 100%;
    overflow: hidden; */
}

.product-small-slider .product-small{
    margin: 10px 5px 10px 5px;
    float: left;
    width: auto;
    height: 100px;
}
/*---END PRODUCT SMALL---*/


/*---PROPERTY-LIST---*/
.property-list_small {
    font-size: 12px;
}

.property-list {
    padding: 0;
    list-style: none;
    width: 100%;
    display: inline-block;
}

.property-list__row{
    margin-bottom: 10px;
    width: 100%;
    display: flex;
}

.property-list_small > .property-list__row {
    white-space: nowrap;
}

.property-list_small > div {
    white-space: nowrap;
    margin-bottom: 5px;
    width: 100%;
    float: left;
    display: inline-block;
}

.property-list_small .property-list__name {
    color: #858C9F;
    display: inline-block;
    margin-right: 5px;
}

.property-list__row .property-list__name{
    display: inline-block;
    flex-grow: 0;
    padding-right: 4px;
    color: #858C9F;
    max-width: 50%;
}

.property-list__dot{
    display: inline-block;
    background: url('../images/dot.svg') 0 14px repeat-x;
    flex-grow: 1;
    margin-bottom: 4px;
}

.property-list__row .property-list__value{
    display: inline-block;
    padding-left: 5px;
    flex-grow: 0;
    font-weight: 400;
    text-align: left;
    width: 50%;
    color: #000;
    
}

.property-list__row .property-list__value a{
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #dbd9de;
}

.property-list__row .property-list__value a:hover {
    color: #E0336A;
}



.property-list_p-card .property-list__name{
    margin-top: auto;
}

.property-list_product-list {
    margin-top: 10px;
    font-size: 15px;
}

.property-list_product-list .property-list__row{
    margin-bottom: 4px;
}
/*---END PROPERTY-LIST---*/

/*---TAG-ROW-----*/
.tag-row {
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;    
}

.tag-item {
    display: inline-block;
    float: left;
    height: 32px;
    line-height: 30px;
    padding: 0 15px 0 15px;
    text-decoration: none;
    /* border: 1px solid #E5E7EA; */
    margin: 0 10px 10px 0;
    background: #EEECEF;
    
    color: #464857;
    border-radius: 16px;
}

.tag-item_small {
    font-size: 13px;
    height: 26px;
    line-height: 24px;
    padding: 0 10px 0 10px;
}

.tag-item.is-active {
    /* background: #D2F4FF; */
    background: #E0336A;
    color: #fff;
}

.tag-item:hover {
    /* background: #D2F4FF; */
    background: #E0336A;
    color: #fff;
}

.tag-item i {
    margin-right: 6px;
}

/*---END-TAG-ROW-----*/



/*---PAGINATION---*/

.pagination-container {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    margin-top: 20px;
    
}

.pagination-pn {
    display: inline-block;
    width: 150px;
    height: 40px;
    float: left;
}

.pagination {
    display: inline-block;
    text-align: center;
    float: left;
    width: calc(100% - 300px);
}

.pagination__item{
    display:inline-block;
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    margin: 0 5px 10px 5px;
    color: #000;
    text-decoration: none;
    background: #fff;
    border: 2px solid #E9E9E9;
    border-radius: 20px;
    font-weight: 600;

}

.pagination__eclipse {
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    /* float: left; */

}

a.pagination__item:hover,
.pagination__prev:hover,
.pagination__next:hover
 {
    /* color: #E0336A; */
    text-decoration: none;
    border-color: #E0336A;
    /* box-shadow: 0 0 10px 0 rgba(0,0,0,0.1); */
    /* box-shadow: 0 0 10px 0 rgba(0,0,0,0.1); */
}

.pagination__item.is-active{
    color:#fff;
    background: #E0336A;
    text-decoration:none;
    border-color: #fff;
    /*border: 2px solid #5fb768;*/
}


.pagination__prev {
    float: left;
}

.pagination__next {
    float: right;
}

.pagination__prev,
.pagination__next
{
    display: inline-block;
    border-radius: 20px;
    padding: 0 20px;
    height: 40px;
    line-height: 38px;
    background: #fff;
    color: #000;
    font-weight: 600;
    border: 2px solid #E9E9E9;
    text-decoration: none;
   
}

.arrow-prev::before,
.arrow-next::after
{
    display: inline-block;
    font-size: 16px;
    color: #E0336A;
}

.arrow-prev::before {
    content: '\2190';
    
}

.pagination__prev.arrow-prev::before {
    margin: 0 7px 0 0;
    float: left;
}

.arrow-next::after {
    content: '\2192';
}

.pagination__next.arrow-next::after {
    margin: 0 0 0 7px;
    float: right;
}


/*---END PAGINATION---*/


/*----CATALOG FILTER----------*/

.filter {
    display: inline-block;
    width: 100%;
    float: left;
    /* margin-bottom: 20px; */
    padding: 0 0 5px 0;
    position: relative;
    border-bottom: 1px solid #EFEEF0;
   
}
.filter:last-child {
    border-bottom: none;
}

.filter-header {
    width: 100%;
    padding: 10px 0 10px 0;
    position: relative;
    font-size: 24px;
    font-weight: 800;
    color: #000;
}

.filter-close {
    position: absolute;
    right: 10px;
    top: 15px;

    display: inline-block;
   
    cursor: pointer;
}

.filter-close::before {
    content: '\00D7';
    color: #000;
    display: inline-block;
    height: 20px;
    line-height: 20px;
    font-size: 40px;
    font-weight: 400;
}



.filter__h {
    position: relative;
    display: inline-block;
    float: left;
    font-weight: 600;
    color: #000;
    font-size: 18px;
    width: 100%;
    padding: 15px 25px 5px 0;
    cursor: pointer;
}

.filter__h:hover {
    color: #444;
}

.filter__h:not(.is-active) {
    padding-bottom:10px;
}

.filter__row {
    display: inline-block;
    width: 100%;
    float: left;
    /* padding: 0 15px 0 15px; */
    margin: 5px 0 10px 0;
}

.filter-search-field {
    display: inline-block;
    width: 100%;
    height: 34px;
    /* border: 1px solid #EFEEF0; */
    border: none;
    background: #EEECEF;
    padding: 0 15px 0 15px;
    font-size: 14px;
    margin: 5px 0 0 0;
    vertical-align: baseline;
    border-radius: 15px;
}

.filter-container{
    display: inline-block;
    position: relative;
    width: 100%;
    float: left;
    padding: 0 15px 0 15px;
    border: 2px solid #EFEEF0;
    border-radius: 12px;
    margin-bottom: 20px;
}

.filter__content {
    display: inline-block;
    float: left;
    width: 100%;
    padding: 0 0 10px 0;
    max-height: 250px;
    overflow-y: auto;
    /* color: #4C5963; */
}

.filter__param-list {
    padding: 5px 0 5px 0;
}

.filter__content.is-hide {
    display: none;
}

.filter__content_padding {
    padding: 10px 15px 10px 15px;
}

.filter__param {
    display: inline-block;
    width: 100%;
    padding: 5px 0 5px 0;
    /* font-size: 14px; */
    color: 000;
    text-decoration: none;
    position: relative;
}
.filter__flag-cnt {
    position: absolute;
    right: 10px;
    display: inline-block;
}
.filter__icon-flag{
    margin-right: 0;
    float: left;

}

a.filter__param:hover,
.filter__param.is-active
{
    background: #F4EFE6;
}

label.filter__param {
    cursor: pointer;
}

.filter__param.is-hide {
    display: none;
}

.filter__param-close {
    /* float: right;
    margin-top:3px;
    vertical-align: top; */
    position: absolute;
    right: 10px;
    top: 8px;
}

.filter__btn-show {
    display: inline-block;
    width: 100%;
    padding: 7px 15px 7px 15px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    border-top: 1px solid #ebebeb;
    text-align: center;
    cursor: pointer;
}


.i-slide_after:after,
.i-slide_before:before
{
    content: '';
    display: inline-block;
    border: solid #858C9F;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 4px;

    position: absolute;
    right: 10px;
    vertical-align: baseline;
    
    
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.i-slide_after:after{
    margin-left: 5px;
}

.i-slide_before:before{
    margin-right: 5px;
}

.filter__h.i-slide_after:after,
.filter__h.i-slide_after:before 
{
    margin-top:5px;
}

.filter__btn-show:hover {
    color: #E0336A;
}


.i-slide_after.is-active:after,
.i-slide_before.is-active:before
{
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

.filter__h.i-slide_after.is-active:after,
.filter__h.i-slide_after.is-active:before 
{
    margin-top:10px;
}

.i-slide_after:hover:after,
.i-slide_before:hover:before
{
    border-color: #E0336A;
}

.i-tooltip {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #f0f0f0;
    border-radius: 50%;
    border: 1px dashed #C8C8C8;
    text-align: center;
    line-height: 18px;
    cursor: pointer;
}

.i-tooltip_dark {
    background: #33363B;
    color: #fff;
}

.filter .i-tooltip {
    position: absolute;
    right: 15px;
    z-index: 10;
    top:10px;
}

.i-tooltip:hover {
    background: #E0336A;
    color: #fff;
    font-weight: 400;
    border-color: #E0336A;
}

.filter__tooltip {
    position: absolute;
    top:-1px;
    left: 100%;
    width: 250px;
    font-size: 12px;
    font-weight: 400;
    background: #F1F1DB;
    border: 1px solid #ebebeb;
    z-index: 1000;
    padding: 10px 20px 10px 30px;
    transition: transform 0.7s;
}

.filter__tooltip.is-hide {
    display: none;
}

.filter__tooltip p{
    margin: 0 0 10px 0;
}

.filter__tooltip:before {
    content: '';
    position: absolute;
    left: -1px;
    top:7px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 14px;
    border-color: transparent transparent transparent #ffffff;


}

.btn-filter-clean {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: none;
    
    text-transform: uppercase;
    font-size: 14px;
    /* font-weight: 700; */
    color: #000;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    margin-bottom:20px;
    border-radius: 3px;
    text-decoration: none;
    border:1px dashed #BABABA;
}

.btn-filter-clean:hover {
    
    color: #E0336A;
    border-color: #E0336A;
}

.btn-filter-go {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: #fff;
    border: 2px solid #E0336A;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    height: 40px;
    line-height: 36px;
    cursor: pointer;
    border-radius: 12px;
}


.btn-filter-go:hover {
    background: #E0336A;
    color: #fff;
}

.btn-filter-go:hover .btn-filter-go__count-result {
    color: #fff;
}

.filter-changed-panel {
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
}

.filter-changed-tag {
    display: inline-block;
    float: left;
    height: 32px;
    line-height: 32px;
    padding: 0 8px 0 15px;
    text-decoration: none;
    margin: 0 10px 10px 0;
    background: #EEECEF;
    /* color: #000; */
    border-radius: 16px;
    white-space: nowrap;
    font-size: 13px;
}

.filter-changed-tag > i {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    vertical-align: top;
    margin-left: 8px;
    padding: 2px;
    margin-top: 6px;
    cursor: pointer;
}

.filter-changed-tag > i::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    /* margin: 2px; */
    float: left;
    background: url('../images/i-16.png') no-repeat -32px -112px;
}

.filter-changed-tag > i:hover {
    background: #E0336A;
}

.filter-changed-tag > i:hover::after {
    background-position: 0px -112px;
}

.filter-count {
    color: #999;
}

.filter-clean-tag {
    display: inline-block;
    float: left;
    height: 32px;
    line-height: 32px;
    padding: 0 15px 0 15px;
    text-decoration: none;
    margin: 0 10px 10px 0;
    background: #EEECEF;
    color: #000;
    border-radius: 16px;
    white-space: nowrap;
    font-size: 13px;
}

.filter-clean-tag:hover {
    background: #E0336A;
    color: #fff;
}

/*-----filter result--count---*/
.filter-res-count {
    display: inline-block;
    position: absolute;
    left: 100%;
    margin-top:-43px;
    margin-left: 8px;
    z-index: 100;
    width:150px;
    height: 86px;
    background: #fff;
    -webkit-box-shadow: 0px 1px 15px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 1px 15px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 1px 15px 0px rgba(0,0,0,0.2);
    border-radius: 12px;
    padding: 5px 10px;
    
}

.filter-res-count::before {
    content: "";
    display: inline-block;
    position: absolute;
    right: 100%;
    top: 50%;
    margin: -16px 0 0 0;
    border-style: solid;
    border-width: 16px 16px 16px 0;
    border-color: transparent #eee transparent transparent;  
}

.filter-res-count::after {
    content: "";
    display: inline-block;
    position: absolute;
    right: 100%;
    top: 50%;
    margin: -14px 0 0 0;
    border-style: solid;
    border-width: 14px 14px 14px 0;
    border-color: transparent #fff transparent transparent;  
}

.filter-res-count__title {
    display: inline-block;
    width:100%;
    background: #fff;
    padding: 8px 0 8px 0;
    color: #858C9F;
} 

.filter-res-count__title span{
    color: #000;
    font-weight: 600;
}

.filter-res-count__btn {
    display: inline-block;
    padding: 8px 0;
    text-align: center;
    height: 36px;
    width:100%;
    border-radius: 9px;
    background: #E0336A;
    color: #fff;
    cursor: pointer;
}

.filter-res-count__btn:hover {
    background: #b62553;
}

/*-----end filter result--count---*/

/*--------SLIDER------------*/

.filter__val-input {
    display: inline-block;
    width: 74px; height: 30px;
    border: 1px solid #E5E7EA;
    padding: 0 5px 0 5px;
    margin: 0 5px 0 5px;
    font-size: 14px;
    vertical-align: baseline;
    border-radius: 3px;

}

input.filter__val-input:focus{
    outline: none;
    border-color: #E0336A;
    /* background: #F3F8FC; */
}

.filter__slider-container{
    padding: 0 10px;
}

.filter__val-slider {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin: 20px 0 10px 0;
}

.ui-slider {
    position: relative;
}

.ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    margin-top: -5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    -webkit-box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.3);
    box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.3);
}

.ui-slider .ui-slider-handle:focus {
    outline: none;
}

.ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    font-size: .7em;
    display: block;
    border: 0;
    overflow: hidden;
}

.ui-slider-horizontal {
    height: 2px;
}

.ui-slider-horizontal .ui-slider-handle {
    top: -3px;
    margin-left: -8px;
}
.ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
    left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
    right: 0;
}

.ui-widget-content {

    background: #ccc;
}

.ui-widget-header {
    background: #E0336A;
}

.ui-corner-all {
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}
/*------END-SLIDER-------------*/

/*----END-CATALOG-FILTER----------*/

/*------FILTER CHECK-----*/
.filter-check {
    display: inline-block;
    cursor: pointer;
    /*white-space: nowrap;*/
}

.filter-check:hover {
    color: #E0336A;
}

.filter-check__inp {
    display: none;
}

.filter-check__label {
    
    display: inline-block;
    vertical-align: top;
    line-height: 18px;
}

.filter__param .filter-check__label  {
    width: calc(100% - 30px);
}

.filter-check__checkbox {
    display: inline-block;
    position: relative;
    width: 18px;
    height: 18px;
    background: #fff;
    margin-right: 10px;
    border: 1px solid #E5E7EA;
    border-radius: 3px;
    vertical-align: top;
}

.filter-check__inp:checked + .filter-check__checkbox {
    background: #E0336A;
    border-color: #E0336A;
}

.filter-check__inp:checked + .filter-check__checkbox::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 1px;
    width: 16px;
    height: 16px;
    background: url("../images/i-16.png") no-repeat 0 -64px;
}

.filter-check__inp:disabled + .filter-check__checkbox + .filter-check__label {
    color: #999;
}

.filter-color {
    display: inline-block;
    width: 18px;
    height: 18px;
    vertical-align: baseline;
    margin-right: 4px;
    border-radius: 50%;
    border: 1px solid #e7e7e7;
}

.filter__param:hover .filter-check__inp:not(:checked) + .filter-check__checkbox {
    background: #F7EFF2;
}
/*-----END FILTER CHECK------*/


/*-----PRODUCT-PAGE-----*/
.p-card {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    margin: 30px 0 30px 0;
    background: #fff;
    padding: 0 0 30px 0;
    font-size: 16px;
}

.p-card__img-col {
    display: inline-block;
    width: 37%;
    text-align: center;
    
}

.p-card__main-group {
    width: 67%;
    margin-left: 50px;
}


.p-card-img{
    display: inline-block;
    width: 100%;
    /* height: 435px; */
    position: relative;
    /*background: #ccc;*/
}

.p-card-img__slider {
    width: 100%;
    /* height: 435px; */
}

.p-card-img__slider .p-card-img__item {
    display: table-cell;
    width: 100%;
    height: 433px;
    vertical-align: middle;
    text-align: center;    
}


.p-card-img__slider .p-card-img__item > img{
    display: inline-block;
    max-width: 100%;
    max-height: 435px;
}

.slider-default-cnt {
    display: inline-block;
    width: 100%;
    height: 80px;
    padding: 0 20px 0 20px;
    margin-top: 10px;
}

.p-card-img-small {
    height: 80px;
}


.p-card-img-small > .slick-list {
    margin-left: -5px;
}

.p-card-img-small .p-card-img-small__item {
    height: 80px;
    position: relative;
    overflow: hidden;
    margin: 0 5px 0 5px;
    float: left;
    width: auto;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border-radius: 12px;
    border: 2px solid #EFEEF0;
}




.p-card-img-small .p-card-img-small__item > img {
    height: 100%;
    position: absolute;
    top: -9999px;
    bottom: -9999px;
    left: -9999px;
    right: -9999px;
    margin: auto;
}

.p-card-img-small .p-card-img-small__item.slick-current {
    border-color: #E0336A;
    
}

.p-card__alt-name {
    font-size: 18px;
    font-weight: 700;
    color: #788092;
    margin-bottom: 20px;
}

.p-card__bookmark {
    display:inline-block;
    margin-right: 20px;
    line-height: 18px;
    cursor: pointer;
    margin-bottom: 20px;
    font-size: 14px;
    color: #000;
    text-decoration: none;
}

.p-card__bookmark:hover {
    color: #E0336A;
}

.p-card__bookmark svg{
    margin-right: 2px;
    vertical-align: middle;
}

.p-card__bookmark.is-active svg{
    fill: #E0336A;
}

.p-card-desc {
    display: inline-block;
    width: 100%;
    border-radius: 12px;
    border: 2px solid #EFEEF0;
    padding: 40px 15%;
    margin: 0 0 40px 0;
    font-size: 16px;
    line-height: 1.6;
}

.p-card-desc img {
    max-width: 100%;
    height: auto;
}

.degustation-cnt {
    margin-top: 40px;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.degustation {
    width: 45%;
    margin-bottom: 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.degustation__icon {
    margin-right: 20px;
}

.degustation__icon svg {
    fill: #000;
    width: 30px;
    height: 30px;
}

.degustation__desc {
    width: 100%;
}

/*-----END PRODUCT CARD-----*/



/*---END CATALOG----*/

/*---FOOTER---*/
.footer {
    width: 100%;
    display: inline-block;
    padding: 30px 0;
    background: #2A272F;
    color: #fff;
}

.footer__wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer-info-row {
    margin-bottom: 10px;
}

.footer-phone {
    margin-bottom: 10px;
}

.footer-phone__item {
    
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
}

.footer-phone__item:hover {
    color: #E0336A;
}

.footer__email {
    color: #fff;
    display: inline-block;
    text-decoration: none;
}

.footer__email:hover {
    text-decoration: none;
    color: #E0336A;
}

.footer__h {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 18px;
}

.footer__nav-link {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    text-decoration: none;
}

.footer__nav-link:hover {
    color: #E0336A;
}

.footer__soc-icon {
    width: 32px;
    height: 32px;
    fill: #c2c8d0;
}

a:hover .footer__soc-icon {
    fill: #E0336A;
}

.footer-under {
    display: inline-block;
    width: 100%;
    margin-top: 40px;
    color: #A6AEB4;
    font-size: 12px;
    
}

.footer-under .wrapper {
    border-top: 1px solid #4A4552;
    padding: 40px 0 20px 0;
}

.footer-under a{
    text-decoration: underline;
    color: #A6AEB4;
}

.madein-container {
    margin: 20px 0 0 0;
}

a.belbel-copyright {
    display:inline-block;
    height:20px;
    line-geight:20px;
    color:#A6AEB4;
    text-decoration: none;
}

a.belbel-copyright:hover {
    color:#fff;
    text-decoration: none;
}


.belbel-copyright__icon {
    fill: #1A171D;
    width: 58px;
    height: 20px;
}

a.belbel-copyright:hover .belbel-copyright__icon {
    fill: #E0336A;
}

.belbel-copyright__text {
    font-size: 13px;
    float: left;
    line-height: 20px;
    margin-right: 5px;
    
}



/*---END FOOTER---*/

/*---SORT PANEL---*/
.sort-panel {
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
    color: #000;
}

.sort-panel__count,
.sort-panel__sort
{
    display: inline-block;
    float: left;
    margin-right: 20px;
    margin-bottom: 5px;
}

.cat-sort{
    display: inline-block;
}

.cat-sort__label {
    display: inline-block;
    float: left;
    margin-right: 10px;
    color: #858C9F;
}

.cat-sort .bc-custom-select{
    margin-left: 10px;
    float: left;
}
/*---END SORT PANEL---*/

/*---SELECT LIST---*/

.select-list {
    display: inline-block;
    position: relative;
}

.select-list__link {
    position: relative;
    cursor: pointer;
}

.select-list__link-default {
    border-bottom: 1px dashed #000;
}

.select-list__link::after {
    content: '';
    position: absolute;
    top: 6px;
    right: -10px;
    border-style: solid;
    border-width: 0 1px 1px 0;

    display: inline-block;
    padding: 2px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.select-list__link-default::after {
    border-color: #000;
} 

.select-list__link:hover {
    color: #E0336A;
    border-color: #E0336A;
}

.select-list ul {
    padding: 0;
    display: none;
    left: -15px;
    margin:10px 0 0 0;
    list-style: none;
    min-width: 150px;
    position: absolute;
    display: none;
    z-index: 1000;
    background: #fff;
    /* padding: 10px 0 0 0; */
    border-radius: 6px;
    /* -webkit-box-shadow: 0px 0px 3px 0px rgba(50, 50, 50, 0.15);
    -moz-box-shadow: 0px 0px 3px 0px rgba(50, 50, 50, 0.15);
    box-shadow: 0px 0px 3px 0px rgba(50, 50, 50, 0.15); */

    box-shadow: 1px 0px 8px 0px rgba(0,0,0,0.2);
}

.select-list ul li a,
.select-list ul li span{
    color: #000;
    display: inline-block;
    width: 100%;
    padding: 7px 15px 7px 15px;
    text-decoration: none;
    white-space: nowrap;
    /* font-size: 13px; */
    cursor: pointer;
    /* line-height: 30px; */
}

.select-list ul li:first-child a,
.select-list ul li:first-child span{
    border-radius: 6px 6px 0 0;
    
}

.select-list ul li:last-child a,
.select-list ul li:last-child span{
    border-radius: 0 0 6px 6px;
}

/* .select-list ul li:not(:last-child) a,
.select-list ul li:not(:last-child) span {
    border-bottom: 1px solid #E9E9E9;
} */

.select-list ul li:hover a,
.select-list ul li:hover span{
    background: #f3f4f6;
}

/*---END SELECT LIST---*/

/*--BREADCUMBS--*/

.breadcrumbs {
    margin: 10px 0 20px 0;
    padding: 0;
    list-style: none;
    width: 100%;
    color: #858C9F;
    display: inline-block;

}

.breadcrumbs  li {
    float: left;
    padding-bottom: 5px;
}

.breadcrumbs  li a{
    display: inline-block;
    color: #444;
    text-decoration: none;
}

.breadcrumbs  li a:hover{
    text-decoration: underline;
    color: #E0336A;
}


.breadcrumbs  li:before {
    content: '';
    border: solid #A6AEB4;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    margin: 6px 10px 0 10px;
    transform: rotate(-45deg);
    /* color: #A6AEB4; */
    /* -webkit-transform: rotate(45deg); */
    float: left;
}

.breadcrumbs  li:first-child:before {
    display: none;
}
/*--END BREADCUMBS--*/


/*---THE MODAL---*/
.themodal-lock{
    overflow:hidden;
}


.themodal-overlay{
    position:fixed;
    bottom:0;
    left:0;
    top:0;
    right:0;
    z-index:1100;
    display:inline-block;
    text-align:center;
    overflow:auto;
    -webkit-overflow-scrolling:touch;
}

.themodal-overlay:after {
    content:'';
    display:inline-block;
    height:100%;
    vertical-align:middle;
}

.themodal-overlay > *{
    -webkit-transform:translateZ(0px);
}

.themodal-overlay{
    background:rgba(0, 0, 0, 0.5);
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr = #7F000000, endColorstr = #7F000000);
    zoom:1;
}
/*---END THE MODAL---*/

/*-----OVERLAY WIN-------*/

.popup {
    max-width: 90%;
    text-align: left;
    min-width: 280px;
    background: #fff;
    display: inline-block;
    vertical-align: middle;
    margin: 20px auto;
    position: relative;
    border: none;
    z-index: 1200;
    border-radius: 12px;
}

.popup_short{
    max-width: 400px;
}

.popup_mid{
    max-width: 600px;
}

.popup:not(.popup_short,.popup_mid) {
    width: 600px;
}


.popup__header {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 15px 60px 15px 20px;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.1;
    border-radius: 4px 4px 0 0;
    /* text-transform: uppercase; */
    
    /* border-bottom: 1px solid #E9E9E9; */
}

.popup.warn .popup__header {
    display: none;
}

.popup__footer {
    display: inline-block;
    width: 100%;
    float: left;
    margin: 10px 0 20px 0;
}

.popup.warn .popup__footer {
    text-align: center;
}

.popup__content {
    display: inline-block;
    width: 100%;
    padding: 20px;
}

.popup__content-full{
    display: inline-block;
    width: 100%;
}

.popup__close{
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -15px;
    display: inline-block;
    width: 20px;
    height: 20px;
    cursor: pointer;
    
}

.popup__close::after {
    content: '\00D7';
    color: #000;
    display: inline-block;
    height: 20px;
    line-height: 20px;
    font-size: 40px;
    font-weight: 400;
}

.popup__close:hover::after {
    color: #b62553;
}

.popup.warn .popup__close {
    display: none;
}

.popup-btn-half-col {
    display: inline-block;
    float: left;
    width: 50%;
}

.popup-btn-half-col:nth-of-type(1) {
    padding-right: 10px;
}

.popup-btn-half-col:nth-of-type(2) {
    padding-left: 10px;
}
/*-----END OVERLAY WIN-------*/

/*----BTN---*/
.btn {
    display: inline-block;
    height: 40px;
    background: #E0336A;
    color: #fff;
    border-radius: 9px;
    text-align: center;
    padding: 12px 20px ;
    cursor: pointer;
    text-decoration: none;
    box-shadow: none;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    white-space: nowrap;
    /* box-shadow: 0 2px 4px rgba(45, 47, 51, 0.3); */
}

.btn:hover {
    background: #b62553;
}

.btn:focus {
    box-shadow: none;
}
/*---END BTN---*/


/*---GLOBAL---*/

.mt-20 {
    margin-top: 20px;
}

.mb-10 {
    margin-bottom: 10px;
}

.m {
    font-weight: 500;
}

.b {
    font-weight: 600;
    color: #000;
}

b, .bb {
    font-weight: 700;
    color: #000;
}

.bbb {
    font-weight: 800;
    color: #000;
}

/* strong {
    color: #000;
} */

.link-more {
    color: #E0336A;
    position: relative;
    text-decoration: none;
}

.link-more:hover {
    text-decoration: underline;
    color: #E0336A;
}

.link-more::after {   
    content: '\2192';
    position: absolute;
    z-index: 10;
    color: #E0336A;
    right: -20px;
    margin-top: -1px;    
    font-size: 16px;
}

.more-btn {
    display: inline-block;
    padding: 0 15px;
    color: #000;
    height: 38px;
    line-height: 32px;
    border-radius: 18px;
    border: 2px solid #EFEEF0;
    text-decoration: none;
}

.more-btn::after {   
    content: '\2192';
    display: inline-block;
    color: #E0336A;
    font-size: 16px;
    margin-left: 5px;
    font-weight: 700;
}

.more-btn:hover {
    border-color: #E0336A;
    /* color: #E0336A; */
}

/*------show-hide-link---*/

.sh-link {
    display: inline-block;
    position: relative;
    color: #E0336A;
    cursor: pointer;
    border-bottom: 1px dotted #E0336A;
}

.sh-link:hover {
    color: #000;
    border-color: #000;
}

.sh-link:hover::after {
    color: #000;
}

.sh-link::after {
    content: '';
    border: solid #000;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 2px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    position: absolute;
    z-index: 1;
    right: -10px;
    top: 50%;
    margin-top: -3px;
}

.sh-link.is-active::after {
    margin-top: 0;
    transform: rotate(-135deg);
}

/*------end show-hide-link---*/

.h-row {
    display: flex;
    
    width: 100%;
    margin-bottom: 25px;
    flex-direction: row;
    align-items: flex-end;
}

.h-row h1,
.h-row .h1-like,
.h-row h2,
.h-row .h2-like
{
    margin: 0;
}

.h-row__lcol {
    width: 100%;
}
.h-row__rcol {
    padding-left: 30px;
    flex-grow: 1;
    white-space: nowrap;
}


.is-hide {
    display: none;
}


/*---ADAPTIVE---*/

/*------sidebar line---*/
.sidebar-line {
    display: none;
    float: left;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 0 0 10px;
    height: 64px;
    background: #fff;
    border-bottom: 1px solid #f3f4ef;
    margin-bottom: 0;
    z-index: 1100;

    box-shadow: 0px 3px 10px 0px rgba(0,0,0,0.15);
}

.btn-sidebar {
    background-color: #fff;
    float: right;
    color: #ccc;
    display: block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin: 0;
    padding: 0;
    width: 64px;
    height: 63px;
    font-size: 0;
    text-indent: -9999px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
    border: none;
    border-radius: none;
    cursor: pointer;
    -webkit-transition: background .1s;
    transition:background .1s
}

.btn-sidebar:focus {
    outline:0
}

.btn-sidebar span {
    display: block;
    position: absolute;
    top: 31px;
    left: 16px;
    right: 16px;
    height: 3px;
    background:#000
}

.btn-sidebar span::after, .btn-sidebar span::before {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #000;
    content: ""
}

.btn-sidebar span::before {
    top:-12px
}

.btn-sidebar span::after {
    bottom:-12px
}

.btn-sidebar.btn-sidebar__animx span {
    -webkit-transition: background 0s .1s;
    transition:background 0s .1s
}

.btn-sidebar.btn-sidebar__animx span::after, .btn-sidebar.btn-sidebar__animx span::before {
    -webkit-transition-duration: .1s, .1s;
    transition-duration: .1s, .1s;
    -webkit-transition-delay: .1s, 0s;
    transition-delay:.1s, 0s
}

.btn-sidebar.btn-sidebar__animx span::before {
    -webkit-transition-property: top, transform;
    transition-property:top, transform
}

.btn-sidebar.btn-sidebar__animx span::after {
    -webkit-transition-property: bottom, transform;
    transition-property:bottom, transform
}

.btn-sidebar.btn-sidebar__animx.is-active span {
    background:0 0
}

.btn-sidebar.btn-sidebar__animx.is-active span::after, .btn-sidebar.btn-sidebar__animx.is-active span::before {
    background-color: #E0336A;
    -webkit-transition-delay: 0s, .1s;
    transition-delay:0s, .1s
}

.btn-sidebar.btn-sidebar__animx.is-active span::before {
    top: 0;
    -webkit-transform: rotate(45deg);
    transform:rotate(45deg)
}

.btn-sidebar.btn-sidebar__animx.is-active span::after {
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    transform:rotate(-45deg)
}

.sidebar-logo__icon{
    display: inline-block;
    float: left;
    width: 45px;
    height: 36px;
    margin: 12px 10px 0 0;
    background: url("../images/logo.svg") no-repeat;
}

.sidebar-logo__text {
    display: inline-block;
    float: left;
    margin: 12px 0 0 0;
}

.sidebar-logo__name {
    display: block;
    font-weight: 800;
    font-size: 18px;
    line-height: 1.1;
    max-width: 80px;
    /* text-transform: uppercase; */
    color: #000;

}

.btn-phone-mob {
    display: inline-block;
    width: 30px;
    height: 64px;
    float: right;
    text-align:center;
    margin: 0 0 0 5px;
}

.phone-mob__icon {
    width: 26px;
    height: 26px;
    fill:#000;
    margin: 21px 0 0 0;
}

.btn-phone-mob:hover .phone-mob__icon{
    fill: #E0336A;
}


.sidebar-line .header-cart
{
    float: right;
    position: relative;
    margin: 18px 10px 0 15px;
}

.sidebar-line .header-bookmark 
{
    float: right;
    position: relative;
    margin: 18px 10px 0 15px;
}

.sidebar-line .header-cart__icon{
    width: 28px;
    height: 27px;
    fill: #000;
}

.sidebar-line .header-bookmark__icon{
    width: 29px;
    height: 26px;
    margin-top: 3px;
}

.header-cart__count,
.header-bookmark__count
{
    top: -6px;
    right: -8px;
    width: 20px;
    height: 20px;
    font-size: 11px;
    line-height: 18px;
}

.btn-search-mob {
    width: 30px;
    height: 64px;
    float: right;
    margin: 21px 10px 0 0;
    text-align: center;
    cursor: pointer;
}

.search-mob__icon {
    width: 26px;
    height: 26px;
    fill: #000;
    
}

.btn-search-mob.is-active .search-mob__icon {
    fill:#E0336A;
}

/*------end sidebar line---*/



.is-hide {
    display: none;
}

.mob-is-show {
    display: none;
}

@media (max-width: 768px) {
    h1,
    .h1-like 
    {
        font-size: 26px;
    }

    h2,
    .h2-like 
    {
        font-size: 22px;
    }

    h3,
    .h3-like 
    {
        font-size: 18px;
    }

    .page {
        padding-top: 80px;
    }

    .mob-is-hide {
        display: none;
    }

    .mob-is-show {
        display: inline-block;
    }

    .sidebar {
        display: none;
    }

    .sidebar.is-active {
        display: inline-block;
    }

    .header-container.is-active {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .sidebar-line {
        display: block;
        position: sticky;
    }

    header.header {
        display: block;
        top: 0;
        position: fixed;
        z-index: 1000;
        margin: 0;
        padding: 0;
        box-shadow: none;
    }

    .header-glob-modal {
        left: 0;
        right: 0;
        bottom: 0;
        
        background: #fff;
        position: fixed;
        -webkit-overflow-scrolling:touch;
        overflow:auto;
    }

    .header-search {
        display: inline-block;
        position: absolute;
        top: 64px;
        left: -10px;
        right: 0;
        width: 100%;
        background: #fff;
        width: 100%;
        padding: 10px;
        box-shadow: 0px 8px 8px 0px rgba(0,0,0,0.2);
    }

    .header-search:not(.is-show) {
        display: none;
    }

    .header-container {
        padding-top: 20px;
    }

    .header-top {
        height: auto;
        background: none;
        display: inline-block;
    }

    .header-top__wrapper {
        display: inline-block;
    }

    .nav-main {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        /* margin-left: -1%; */
    }

    .nav-main > li {
        width: 48%;
        display: flex;
        margin: 0 1% 15px 1%;
        text-align: center;
        
    }
     
    .nav-main > li > a { 
        width: 100%;
        height: auto;
        color: #000;
        border: 2px solid #EFEEF0;
        padding: 15px 5px;
        border-radius: 12px;
    }

    /* .nav-main > li > a:hover { 
        background: #dbdfe4;
        text-decoration: none;
        color: #000;
    } */

    

    .header-contacts {
        width: 100%;
        text-align: center;
        margin: 20px 0 20px 0;
    }

    .header-contacts__phone {
        margin-top: 5px;
        display: inline-block;
        font-size: 20px;
    }

    .header-base__wrapper {
        position:static;
        flex-direction: column-reverse;
    }

    .header-base {
        margin: 0;
        padding: 0;
        position: static;
    }

    .header-nav {
        position: static;
        width: 100%;
        text-align: center;
        margin: 0 10px 0 10px;
    }

    .nav-cat-btn {
        display: none;
    }

    .nav-cat-slide {
        position: static;
        display: inline-block;
        width: 100%;
        box-shadow: none;
        margin: 0 auto;
        padding: 10px 0;
    }

    .nav-cat-slide > li {
        padding: 10px 20px;
        border: 2px solid #EFEEF0;
        border-radius: 12px;
        justify-content: center;
    }

    /*---index---*/

    .index-cat {
        margin: 15px -5px 30px -5px;
    }

    .index-cat-item {
        width: calc(50% - 10px);
        margin-bottom: 20px;
        justify-content: center;
        margin: 0 5px 10px 5px;
        flex-direction: column;
        padding: 10px 10px;
        align-items: center;
        text-align: center;
    }

    .index-cat-item__img {
        height: 60px;
        width: 100%;
        margin-right: 0;
    }

    .index-cat-item__img img {
        max-height: 100%;
        position: static;
        
    }

    /* .index-cat-item__title {
        word-break: break-all;
    } */

    

    .index-about {
        flex-direction: row;
        flex-wrap: wrap;
        border: 2px solid #EFEEF0;
        border-radius: 12px;
        padding: 30px 30px;
    }

    .index-about__img {
        display: none;
    }

    .index-about__desc
    {
        width: 100%;
        padding: 0;
        margin: 0;
        font-size: 14px;
    }

    .col-page__right {
        display: none;
    }

    .article-item {
        width: 48%;
    }

    .h-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .h-row__rcol {
        padding: 15px 0 0 0;
    }

    /*---catalog---*/
   

    .catalog-optionbar {
        display: flex;
    }

    .page-right-col {
        padding-left: 0;
        width: 100%;
    }

    .mob-filter {
        position: fixed;
        top:0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #fff;
        z-index: 1000;
        display: none;
        padding: 0 10px 10px 10px;
        -webkit-overflow-scrolling:touch;
        overflow:auto;
    }

    .filter__content{
        overflow-y: hidden;
        max-height: none;
    }

    .filter-col { 
        max-width: 100%;
    }

    .product__bookmark {
        display: block;
    }

    .product__desc {
        padding: 10px;
    }

    .product__footer {
        padding: 0 15px 0 10px;
    }
    

    @supports (display:grid) {
        .product-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(170px,1fr));
            grid-gap: 16px;
            grid-auto-flow: dense;
            margin: 0 0 20px;
        }
    
        .product {
            width: auto;
            margin: 0 -1% 0 -1%;
        }
    }

    .pagination-pn {
        width: 100%;
        text-align: center;
        float: none;
        height: auto;
    }

    .pagination__next,
    .pagination__prev
    {
        float: none;
        margin-bottom: 10px;
    }

    .pagination {
        width: 100%;
    }

    .p-card {
        padding: 0;
        margin: 0;
        flex-wrap: wrap;
        font-size: 14px;
    }

    .p-card__img-col {
        width: 100%;
    }
    
    .p-card__main-group {
        width: 100%;
        padding: 20px 0 20px 0;
        margin-left: 0;
    }

    .p-card-desc {
        padding: 20px 15px;
        font-size: 14px;
    }

    .degustation-cnt {
        flex-direction: column;
    }

    .degustation {
        width: 100%;
    }

    .btn-filter-go {
        position: sticky;
        bottom: 0;
    }

    .p-card__desc-start {
        display: none;
    }
    

    /*---end catalog---*/

    /*---footer---*/
    .footer__wrapper {
        flex-wrap: wrap;
    }

    .footer__block {
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }

    .footer-under {
        text-align: center;
    }
    /*---end footer---*/
}


@media (max-width: 500px) {
    .article-item {
        width: 100%;
    }
}

/*---END ADAPTIVE---*/