
/* размещение блоков фильтров */
.filters_items_wrap{display:flex;flex-wrap: wrap;align-items: center;justify-content: center;background: #e1e1e1;padding: 1%;}
.filters_items_wrap>form{
    display: flex;
    justify-content: space-around;
    width: 100%;
    flex-wrap: wrap;
}
.filters_items_wrap>form>input{
    margin:1%;
}
.filters_items_wrap.mobile{display:block;position: relative;z-index: 999999;} /* для мобильной версии на всю ширину */

/* блок фильтра */
.filters_item,
.filters_item_Hidden{
    position: relative;
    padding: 10px 5px;
    width:20%;
    margin-top:5px;}
.filters_items_wrap.mobile .filters_item,
.filters_items_wrap.mobile .filters_item_Hidden
{width:100%;} /*при классе mobile сделаем на весь экран*/

/*заголовок блока*/
.filters_item__title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    background: #fff;
    /*text-transform: uppercase;*/
    border: 1px solid #cecece;
    padding: 9px 10px;}
.filters_item__title:hover{
    border-color: #A59896 !important;
    cursor: pointer;}

.filter_item__title_name{width:100%;}
.filter_item__title_name input {outline: none;}

/* указатель типа шеврона рядом с заголовком*/
.filter_item__icon{
    width: 15px;
    height: 15px;
    display: inline-block;
    float: right;
    overflow: hidden;
    margin-left:5px;}
.filter_item__icon span{
    display: block;
    margin-top: 2px;
    height: 1px;
    background-color: #fff;
    transition: all 100ms ease-out;}
        
.filter_item__icon span:first-child{
    background-color: #252525;
    transform: translateX(-6px) translateY(4px) rotate(45deg);}
.filter_item__icon span:last-child{
    background-color: #252525;
    transform: translateX(4px) translateY(1px) rotate(-45deg);}
/* при открытом блоке, развернем шеврончик */    
.filters_item__title.open .filter_item__icon span:first-child{
    background-color: #252525;
    transform: translateX(3px) translateY(1px) rotate(45deg);}
.filters_item__title.open .filter_item__icon span:last-child{
    background-color: #252525;
    transform: translateX(-2px) translateY(-3px) rotate(-45deg);}
/* когда фильтр используется, сделаем крестик*/
.filters_item__title.active .filter_item__icon span:first-child,
.filters_item__title.active .filter_item__icon span:last-child{background-color: #fff;}
.filters_item__title.active .filter_item__icon span:first-child{transform: translateX(-1px) translateY(1px) rotate(45deg);}
.filters_item__title.active .filter_item__icon span:last-child{transform: translateX(1px) translateY(-2px) rotate(-45deg);}

/*поле инпут, в которое записываем значение фильтра, и в итоге обрабатываем*/    
input.input_title{
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    border: none;
    cursor: pointer;}

/* когда фильтр активен, изменим цвет*/
.filters_item__title.active,
.filters_item__title.active input.input_title{
    background:#333;
    color:#fff;}

/* когда фильтр активен, допишем наименование фильтра чуть выше блока */
.filters_item__title.active::before{
    content: attr(data-title);
    position: absolute;
    bottom: calc(100% - 10px);
    left: 4px;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 10px;
    line-height: 12px;
    color: #8c7d7e;
    /*text-transform: capitalize;*/}

/* покажем блок фильтра при наличии класса */    
.filters_item .filters_item__title + .filters_item__body{display:none;}
.filters_item .filters_item__title.open + .filters_item__body{display:block;}

/* блок фильтра */       
.filters_item__body{
    max-height: 200px;
    overflow: hidden;
    overflow-y: auto;
    background: #fff;
    position: absolute;
    left: 0;
    right:0;
    top: 100%;
    z-index: 9;
    padding: 2px;
    border: 1px solid #949494;
    border-radius:2px;}   

/* чекбоксы в блоке фильтра */    
.checkbox label{margin-bottom:5px;display: block;}
.checkbox label:hover{
    background: #949494;
    color: #fff;
    cursor:pointer;}

.checkbox .inf{
    width: 20px;
    height: 20px;
    position: relative;
    display: inline-block;
    opacity: 0;
    transition: opacity .3s;
}

.checkbox input{display:none;}

.checkbox input:checked + .inf{opacity: 1;}
   

/*слайдеры*/
main .noUi-horizontal{height: 5px;} /*высота панели слайдера*/
main .noUi-connect{background: #949494;}     /*цвет выбранной области*/
/* ползугки */
main .noUi-handle{
    border: 1px solid #D9D9D9;
    border-radius: 50%;
    background: #949494;
    cursor: move;
    box-shadow:none;}
main .noUi-horizontal .noUi-handle {
    width: 15px;
    height: 15px;
    /*left: -17px;*/
    top: -6px;}
main .noUi-handle:after, main .noUi-handle:before{
    content: "";
    display: block;
    position: absolute;
    height: 7px;
    width: 1px;
    background: #fff;
    left: 6px;
    top: 3px;}
main:not([dir=rtl]) .noUi-horizontal .noUi-handle {right: -10px;}


/* блок для скрытия дополнительных фильтров */
.filters_item_Hidden{
    position: relative;
    padding: 10px 5px;
    width: 20%;
    margin-top: 5px;}
.filters_item_Hidden_body{
    background: #949494;
    border-radius: 30px;
    color: #FFFFFF;
    border-color: #C83947 !important;
    padding: 5px 12px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-size: calc(10px + 6 * ((100vw - 320px) / (1500 - 320)));
    cursor: pointer;}
.filters_item_Hidden_icon{
    width: 16px;
    height: 16px;
    background: url(/assets/template/images/settings_white.png) no-repeat center center;}

@media(max-width:800px){
    .filters_item_Hidden_body{justify-content:space-between}
}

.dopFiltrClose{display:none;}





/* === Каталог товаров === */
.razdels_filters__body{
    justify-content: space-evenly;
    display: flex;
    /*justify-content: space-between;*/
    align-items: center;
    height: 100%;
}
.razdels_filters__body>a{
    margin-bottom: 15px;
    width: 45%;
    padding: 20px 15px;
    min-width: 150px;
   
}
.razdels_filters__body>a:last-child{
}

.link_razdel, .link_filtr{/*display:none;*/}
.link_razdel.mobile{
    font-size: calc(13px + 6 * ((100vw - 320px) / (1500 - 320)));;
    font-weight: 400;
    border-width: 1px;
    border-color: #beb5b0;
    border-style: solid;
    box-shadow: 0px 5px 10px 0px rgba(46, 44, 48, 0.2);
    text-align: center;
    transition: all .2s;
    letter-spacing: 0.3px;
}
.link_razdel.mobile span{border-bottom: 1px solid;}
.link_filtr.mobile{
    font-size: calc(14px + 6 * ((100vw - 320px) / (1500 - 320)));;
    font-weight: 700;
    color: #ffffff;
    background-color: #211f2a;
    letter-spacing: 0.5px;
}
.link_filtr.mobile span{margin:0 13px;}
.link_filtr.mobile:after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 10px;
    height: 16px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/ico_arrow-white-mobile.png);
}



.razdel_items.mobile,
.filters_items.mobile{
    display: block;
    position: fixed;
    height: 100vh;
    width: 100%;
    top: 0px;
    margin-left: -15px;
    padding: 0 15px;
    overflow-x: scroll;
    background-color: #FAFAFA;
    z-index: 99999;
}
.hidde-title{display:none;}
.hidde-title.mobile {display:block;}
.hidde-title.mobile a {
    display: block;
    position: absolute;
    padding: 10px;
    right: 20px;
    top: 10px;
}

.hidde-title span {
    display: block;
    text-align: center;
    padding: 0px 40px;
    padding-top: 20px;
    font-weight: bold;
    font-size: 18px;
}


.razdel_items__wrap {
    padding: 10px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; /*space-evenly; start*/
    margin-bottom: 20px;
}
.razdel_items__wrap.mobile{justify-content: space-around;}


.razdel_items__item{
    width: 13.65%;
    margin-bottom: 20px;
    margin-right: calc(9% / 6);
    margin-left: calc(9% / 6);
}

.razdel_items__wrap.mobile .razdel_items__item{
    width: 20%;
    margin-bottom: 20px;
    margin-right: calc(9% / 4);
    margin-left: calc(9% / 4);
}

.razdel_items__item a {
    display: inline-block;
    font-size: 13px;
    text-decoration: none;
    padding: 0;
    width: 100%;
    text-align: center;
    color: #000;
}

.razdel_items__item_img{
    margin-bottom: 5px;
}
.entry_no_style {
    font-size: 1em;
    line-height: 1em;
    margin: 0;
    padding: 0;
    font-weight: 300;
}
.razdel_items__item_title{
    margin: auto;
    /*height: 27px;*/
    overflow: hidden;
    text-overflow: ellipsis;
}

.filters_items{
    padding:10px;
    margin:10px 0;
    background:rgba(148,148,148,.7);
}


.filtrCountClear{
    /*display: flex;*/
}
.filtrCountClear .allFiltrClear{
    background: url(../images/closebox.png) no-repeat left top;
    background-size: contain;
    padding-left:25px;
    /*margin-left:20px;*/
    line-height: 20px;
}

.setting_box_one_count{
    margin-top: calc(1.5% + 1 * ((100vw - 320px) / (1500 - 320)));
}

.setting_box_one_count .ajax-count{font-weight: 700;}

.setting_box_two, .out_type, .out_count{
    display: flex;
    justify-content: space-around;
    align-items: center;
    /*flex-wrap: wrap;*/
}
.out_count select{padding:5px; color:#fff;background:#949494;}
.setting_box_two button, .setting_box_two form{margin-top:10px;}


@media (max-width:768px){
    .setting_box_two{flex-wrap: wrap;}
    .out_count{margin-top:10px;}
}


.out_type>div{
    position:relative;
    float: left;
    width: 38px;}
.out_type input{
    position: absolute;
    opacity: 0;}




.out_type label{
    display: block;
    margin: 0 0 0 -1px;
    padding: 8px 10px;
    border: 1px solid #BBBBBB;
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%);
    box-shadow: 0 2px 5px rgba(0, 0, 0, .12);
    cursor: pointer;
}
.out_type input:checked + label {
    background: white;
    box-shadow: inset 0 3px 6px rgba(0, 0, 0, .2);
}
.out_type div:first-child label {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.out_type div:last-child label {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
.template_icon{
    height:16px;
    width:16px;
}


.product__items{
    display: flex;
    margin-top:calc(12px + 36 * ((100vw - 320px) / (1500 - 320)));
    flex-wrap: wrap;
    margin-right:0;
    margin-left:-21px;
    margin-bottom:calc(20px + 36 * ((100vw - 320px) / (1500 - 320)));
}

/* вывод товаров в каталоге*/
.list_products{
    padding:8px;
			box-shadow: 3px 3px 10px rgba(0,0,0,0.2);
	border: 1px solid transparent;
	border-radius: 0;
    transition:all .3s;}    
.list_products:hover{
	border: 1px solid #dc3545;
  			box-shadow: 3px 3px 10px rgba(220,53,69,0.5);}
.list_products_link, .list_products_link:hover{
    position:relative;
    text-decoration:none;
    color:#333;}
.list_products h2{
    font-family: 'Merriweather', serif;
    color: #252525;}

		
/* в линию */		
.list_product_tpl_string{
    width:100%;
    margin: calc(1.5% + 1 * ((100vw - 320px) / (1500 - 320)))  calc(5% + 6 * ((100vw - 320px) / (1500 - 320)));
    margin-left: calc(5% + 6 * ((100vw - 320px) / (1500 - 320)) + 21px);
    display:block;}
.list_product_tpl_string h2{
    font-size: calc(14px + 14 * ((100vw - 320px) / (1500 - 320))); }
.list_product_tpl_string .list_products__body{
    display:flex;
    justify-content: space-between;}
    
.tpl_string__body_price{
    display:flex;
    flex-direction: column;
    justify-content: space-between;}
.tpl_string__body_price .shk-price{text-align:center;font-weight: 700;}
.tpl_string__body_param>span{display:block;}
    

/* в таблицу */	
.list_product_tpl_table{
    width: calc(25% - 21px);
    margin-left: 21px;
    margin-top: 20px;}
@media (max-width: 1199px){ .list_product_tpl_table {width: calc(100% / 3 - 21px);} }
@media (max-width: 768px) { .list_product_tpl_table {width: calc(50% - 21px);} }
@media (max-width: 470px) { .list_product_tpl_table {width: calc(100% - 21px);} }

.list_product_tpl_table .list_products__body{
    display:flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.list_products__img{
    /*max-height: 230px;*/
    max-width: 250px;
    align-self: center;
}
.list_product_tpl_table .list_products_link h2{
    font-size: calc(10px + 4 * ((100vw - 320px) / (1500 - 320))); 
    line-height: 16px;
    text-align: center;
    display: block;
    /*color: #252525;*/
    margin-bottom: 12px;

}

.tpl_table__body_price{
    display:flex;
    justify-content: space-between;}
    


.list_product_tpl_table .country_vendor{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -5px;
    font-family: 'Merriweather', serif;
    font-style: normal;
    font-weight: bold;
    font-size: 10px;
    line-height: 20px;
    color: #252525;
}
.list_product_tpl_table .country_vendor span{margin-left: 5px;}

.list_product_tpl_table .country_vendor .vendor_country_flag{
    /*content: '';*/
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 14px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: relative;
    top: -1px;
}



.list_product_tpl_table .list_product_param_item {
    display: flex;
    align-items: center;
    margin-left: -10px;
    margin-top: 7px;
}
.list_product_tpl_table .list_product_param_item>div {
    flex: 1;
    margin-left: 10px;
}

.list_product_tpl_table .list_product_param_item .list_product_param__title{
    font-family: 'Merriweather', serif;
    font-style: normal;
    font-weight: normal;
    font-size: 10px;
    line-height: 11px;
    text-align: right;
    color: #A59896;
}

.list_product_tpl_table .list_product_param{
    margin-bottom: 15px;
    margin-top: -7px;
}

.list_product_tpl_table .list_product_param_item .list_product_param__value{
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 11px;
    line-height: 10px;
    text-align: left;
    color: #252525;
}

/*картинка акция на товаре в списке  и старая цена */
.metka_action img {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 70px;
    height: 70px;}

.tpl_table__body_price .shk-price{text-align:center;}
.tpl_table__body_price .tovar_price{
    font-weight: 700;
    font-size: calc(12px + 10 * ((100vw - 320px) / (1500 - 320)));
    color:#333;
}
.tpl_table__body_price .old_price{
    color: #000; 
    text-decoration: line-through;}



/* кнопка показать еще товары*/
.ajax-filter-count{width:100%;}
.ajax-filter-count a{
    width:50%;
    margin: 20px 20px 20px calc(25% + 10px);}











