*{
	outline: none;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}
#template-boutique *{
}
#template-boutique .wrapper{
	overflow: visible;
}

/* ================
   Products list
   ================ */
.products-grid .grid:not([id])::before {
    content: '';
    margin: 60px auto;
    font-size: 10px;
    position: relative;
    text-indent: -9999em;
    border-top: 1.1em solid #ddd;
    border-right: 1.1em solid #ddd;
    border-bottom: 1.1em solid #ddd;
    border-left: 1.1em solid #000;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    position: absolute;
    z-index: 9;
    left: 50%;
    top: 50%;
    margin-left: -26px;
    margin-top: -25px;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


.products-grid .top-wrapper{
  /*margin-bottom:20px;*/
  margin-bottom:0;
}
.products-grid .grid{
	font-size:0;
	padding-bottom: 100px;
	padding-left: 0;
	position: relative;
	min-height: 550px;
}
.products-grid .grid li{
	display:inline-block;
	vertical-align:top;
	padding: 20px;
	font-size: 18px;
	text-align:left;
	position:relative;
	width: 25%;
	opacity: 1;
}
.products-grid .grid li.loaded::before{
	/*content: '';
	position: absolute;
	left:0;
	top:0;
	width: 100%;
	height: 100%;
	background: #f5f5f5;
	border: 10px solid white;
	transition:opacity .3s;
	z-index: 9;*/
}
.products-grid .grid li.loaded.loaded-finish::before{
/*	animation: fadeout .3s;
	-moz-animation: fadeout .3s;
	-webkit-animation: fadeout .3s;
	-o-animation: fadeout .3s;
	animation-fill-mode: forwards;
	-webkit-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;*/
}
.products-grid .grid li:not(.loaded-finish){
    padding-bottom: 31%;
	border: 10px solid white;
	background: #f5f5f5;
}

.products-grid .grid li:not(.loaded-finish)::before {
   /* content: '';
    margin: 60px auto;
    font-size: 10px;
    position: relative;
    text-indent: -9999em;
    border-top: 1.1em solid #ddd;
    border-right: 1.1em solid #ddd;
    border-bottom: 1.1em solid #ddd;
    border-left: 1.1em solid #000;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    position: absolute;
    z-index: 9;
    left: 50%;
    top: 50%;
    margin-left: -26px;
    margin-top: -25px;*/
}
.products-grid .grid li.hidden{
  display: none;
}
.products-grid .grid li .swatch-wrapper>label{
  display:none;
}
.products-grid .grid li:hover{
	background:white;
	box-shadow: 0 0 20px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 0 0 20px 0px rgba(0,0,0,0.3);
	-webkit-box-shadow: 0 0 20px 0px rgba(0,0,0,0.3);
}
.products-grid .grid li .buttons-wrapper{
  position: absolute;
  background: white;
  width: 100%;
  left: 0;
  top: 100%;
  padding: 1em;
  box-shadow: 0 -15px 0px 0px white, 0px 0 20px 0px rgba(0,0,0,0.3);
  -webkit-box-shadow: 0 -15px 0px 0px white, 0px 0 20px 0px rgba(0,0,0,0.3);
  z-index: 1;
  opacity:0;
  transition: all .3s;
  -moz-transition: all .3s;
  -webkit-transition: all .3s;
  visibility:hidden;
}
.products-grid .grid li .buttons-wrapper .button{
  margin-right:1em; 
}
.products-grid .grid li .buttons-wrapper .shopify-buy__btn-and-quantity{
	display: none;
}
.products-grid .grid li:hover .buttons-wrapper{
  opacity:1;
  visibility:visible;
}
.products-grid .grid li .buttons-wrapper .shopify-component,
.products-grid .grid li .buttons-wrapper .shopify-component+a:last-child{
    display: inline-block;
    vertical-align: middle;
}
.products-grid .grid li .buttons-wrapper a.more-details-link{
	float: right;
	display: none;
}
.products-grid .grid li .buttons-wrapper a:last-child{
    /*float: right;*/
    /*line-height: 45px;
    display: block;
    text-align: center;*/
}

.products-grid .grid .product-photo-container{
  border: 1px solid #dcdbd8;
  background: white; 
  position:relative;
  background-size: cover;
  background-position: center center;
  padding-bottom:100%;
  height:0;
}  
.products-grid .grid .product-photo-container picture{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	/*display: none;*/
	opacity: 0;
	transition: opacity .3s;
	-moz-transition: opacity .3s;
	-webkit-transition: opacity .3s;
	padding-top: 20px;
}
.products-grid .grid .product-photo-container picture img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: contain;
}
.products-grid .grid .product-photo-container picture.show{
	opacity: 1;
	/*display: block;*/
}
.products-grid .grid .product-photo-container.compat-object-fit img{
	display:none;
}
.products-grid .grid .product-photo-container .hover{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(255,255,255,.7);
	text-align: center;
	padding: 1em;
	opacity: 0;
	transition:all .3s;
	-moz-transition:all .3s;
	-webkit-transition:all .3s;
}
.products-grid .grid .product-photo-container .hover span{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
}
.products-grid .grid .product-photo-container:hover .hover{
	opacity: 1;
}
.products-grid .grid .prod-caption{
  text-transform: uppercase;
  margin: 10px 0;
  font-size: 1.3em;
  line-height: normal;
  text-align:left;
  min-height: 3.1em;
}
.products-grid .grid .prod-caption .collection {
    font-size: 0.7em;
    color: #aaa;
}
.products-grid .grid .prod-caption .collection a{
	font-weight: normal;
}
.products-grid .grid .prod-caption .collection a:hover{
    text-decoration: underline;
}

.products-grid .grid .prod-caption.mobile{
	display: none;
}
.products-grid .grid .prod-caption a{
	text-transform: uppercase;
	margin: 10px 0;
	color: inherit;
	text-decoration:none;
	/*font-family: 'proxima_novasemibold'!important;*/
	font-weight: bold;
}
.products-grid .grid .prod-price{
	display:block;
	font-size: 1.1em;
	/*font-family: 'proxima_novasemibold';*/
	font-weight: bold;
}
.products-grid .grid .prod-price.mobile{
	display: none;
	margin-bottom: 10px;
	line-height: normal;
}
.products-grid .grid li .variants-select-wrapper{
  display:none;
}
.products-grid .cols-wrapper{
	/*overflow:hidden;*/
}
.products-grid .cols-wrapper .filters-wrapper{
  background: white;
  border: 1px solid #dcdbd8;
  padding: 20px;
}
.products-grid .cols-wrapper .filters-wrapper h2{
	font-size:1.2em!important; 
	margin-bottom: 0;
}
.products-grid .cols-wrapper .filter-col{
	width:20%;
	float:left;
	padding: 20px 0;
}
.products-grid .cols-wrapper .filter-col.sticky .filters-wrapper{
	/*position: fixed;*/
}
.products-grid .cols-wrapper .filter-col ul{
	padding-left: 0;
	list-style-type: none;
	margin: 0;
}
.products-grid .cols-wrapper .filter-col .categories-filter ul.children{
	padding-left: 20px;
	display: none;
}
.products-grid .cols-wrapper .filter-col .categories-filter input:checked + label + ul.children,
.products-grid .cols-wrapper .filter-col .categories-filter .show{
	display: block!important;
}
/*.products-grid .cols-wrapper .filter-col .categories-filter input[type="checkbox"]+label::before,
.products-grid .cols-wrapper .filter-col .categories-filter input[type="checkbox"]+label::after{
	display: none;
}*/
/*.products-grid .cols-wrapper .filter-col .categories-filter input.current-active + label,
.products-grid .cols-wrapper .filter-col .categories-filter li.current-active>label{
	font-weight: bold;
}*/
/*.products-grid .cols-wrapper .filter-col .categories-filter .dropdown ul li label{
	padding-left: 0;
}
.products-grid .cols-wrapper .filter-col .categories-filter input.empty-category+label{
	display: none!important;
}*/

.products-grid .cols-wrapper .filter-col .filter{
	background:white;
	border-bottom:1px solid #dcdbd8 ;
}
.products-grid .cols-wrapper .filter-col .variant-filter:last-child .filter{
	border-bottom: none;
}
.dropdown-wrapper>h3{
	margin:0;
	cursor:pointer;
	text-transform:none;
	font-size:1.2em;
	position: relative;
	padding: 20px 0;
}
.dropdown-wrapper>h3::before{
	content: '+';
	width:11px;
	display: inline-block;
	margin-right: 10px;
	margin-top:-7px;
	vertical-align: middle;
	font-family:sans-serif;
	font-weight:normal;
    color: #000;
}
.dropdown-wrapper.on-right h3::before{
	display:none;
}
.dropdown-wrapper.on-right h3::after{
	content: '+';
	width: 11px;
	display: inline-block;
	margin-left: 10px;
	margin-top: -3px;
	vertical-align: middle;
	font-family: sans-serif;
	font-weight: normal;
	float: right;
}
.dropdown-wrapper.show h3::before{
	content: '-';
}
.dropdown-wrapper.on-right.show h3::after{
	content: '-';
}
.dropdown-wrapper.show h3{
	padding-bottom: 0px;
}
.dropdown{
	max-height:0; 
	overflow:hidden;
	transition:all .3s;
	-moz-transition:all .3s;
	-webkit-transition:all .3s;
	padding-left: 25px;
}
.dropdown-wrapper.show .dropdown{
	max-height:2000px; 
	padding-bottom: 1em;
	overflow: visible;
}
.products-grid .cols-wrapper .filter-col .filter .dropdown ul li{
	margin-top:9px;
	position: relative;
}
.products-grid .cols-wrapper .filter-col .filter .dropdown ul li .color-hex{
	width: 21px;
	height: 21px;
}
.products-grid .cols-wrapper .filter-col .filter .dropdown>ul>li.page_item_has_children::before{
    /*content: '+';
    width: 11px;
    display: inline-block;
    margin-left: -18px;
    line-height: 1em;
    vertical-align: middle;
    font-family: sans-serif;
    font-weight: normal;
    color: #000;
    position: absolute;*/
}
.products-grid .cols-wrapper .filter-col .filter .dropdown>ul>li.page_item_has_children.show::before{
/*	content: '-';*/
}
.products-grid .cols-wrapper .filter-col .filter .dropdown ul li.page_item_has_children.empty-category::before{
	display: none;
}
.products-grid .cols-wrapper .filter-col .filter .dropdown ul li label{
	text-transform:none;
	display: inline-block;
}
.products-grid .cols-wrapper .filter-col .collection-filter .filter .dropdown ul li label{
	text-transform:uppercase;
}
.products-grid .cols-wrapper .filter-col .filter .dropdown ul li.all-categories label{
	cursor: pointer;
}
.products-grid .cols-wrapper .filter-col .current-filters{
	display:none;
	margin-bottom: 2em;
}
.products-grid .cols-wrapper .filter-col .current-filters.show{
	/*display:block;*/
}
.products-grid .cols-wrapper .filter-col .current-filters ul li{
  position:relative;
  padding-left:20px;
}
.products-grid .cols-wrapper .filter-col .current-filters ul li::before,
.products-grid .cols-wrapper .filter-col .current-filters ul li::after{
  position: absolute;
  left: 8px;
  top: 2px;
  content: ' ';
  height: 16px;
  width: 1px;
  background-color: #333;
}
.products-grid .cols-wrapper .filter-col .current-filters ul li::before {
  transform: rotate(45deg);
}
.products-grid .cols-wrapper .filter-col .current-filters ul li::after {
  transform: rotate(-45deg);
}
.products-grid .cols-wrapper .filter-col .current-filters ul li a{
  color:inherit; 
  cursor:pointer;
}
.products-grid .cols-wrapper .filter-col .current-filters ul li:hover a{
  color:$link-color; 
}
.products-grid .cols-wrapper .filter-col .current-filters ul li:hover::before,
.products-grid .cols-wrapper .filter-col .current-filters ul li:hover::after{
  background-color:$link-color; 
}
.products-grid .cols-wrapper .filter-col .apply-button-wrapper{
	display: none;
	text-align: center;
    margin-top: 2em;
}
.products-grid .cols-wrapper .filter-col .discontinued-filter{
	display: none;
}

.products-grid .cols-wrapper .products-col{
	width:80%;
	float:right;
	padding: 20px 0;
	padding-bottom:100px;
	padding-top:0;
	margin-right: -20px;
}
.products-grid .cols-wrapper .products-col .sort-wrapper{
    width: 200px;
    display: inline-block;
}
.products-grid .cols-wrapper .products-col .filterby-wrapper{
	display:none;
	width: 160px;
	position:relative;
	padding-left: 10px;
}
.products-grid .cols-wrapper .products-col .filterby-wrapper input{
	background:white!important;
	margin-bottom: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
}
.products-grid .cols-wrapper .products-col .filterby-wrapper::after{
	content: '+';
	position: absolute;
	top: 25px;
	height: 0;
	line-height: 0;
	right: 5px;
	font-size: 1.5em;
}
.products-grid .color-input-wrapper{
    margin-right: 10px;
    margin-bottom: 10px;
    position: relative;
}
.products-grid .color-filter .all-colors{
	display: block;
	cursor: pointer;
}
.products-grid .color-filter .all-colors label{
    position: relative;
    margin-bottom: 5px;
    cursor: pointer;
}
.products-grid .color-filter .all-colors.current-active{
    /*font-family: 'proxima_novasemibold';*/
	font-weight: bold;
}
.products-grid .color-filter .all-colors.current-active span::after {
    content: '';
    border: 1px solid black;
    display: block;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    position: absolute;
}
.products-grid .color-input-wrapper .color-image-wrapper img{
	width: 20px;
	height: 20px;
    border: 1px solid #ddd;
}
.products-grid .color-input-wrapper input:checked+label .color-image-wrapper::after {
    content: '';
    border: 1px solid black;
    width: 29px;
    height: 29px;
    display: block;
    top: -5px;
    left: -5px;
    position: absolute;
}
.products-grid .color-filter li label{
	padding: 0!important;
}
.products-grid .color-input-wrapper input[type="checkbox"].custom-checkbox:not(:checked) + label:before,
.products-grid .color-input-wrapper input[type="checkbox"].custom-checkbox:checked + label:before,
.products-grid .color-input-wrapper input[type="checkbox"].custom-checkbox:not(:checked) + label:after,
.products-grid .color-input-wrapper input[type="checkbox"].custom-checkbox:checked + label:after{
	display: none!important;
}
.products-grid .color-filter li{
	display: inline-block;
}
.products-grid .color-filter li.not-available {
	display: none;
}	
	
.products-grid .available-online-filter{
	padding: 20px 0;
}
.products-grid .reset-filters{
    position: relative;
    margin-bottom: 5px;
    cursor: pointer;
    margin-top: 20px;
    display: inline-block;
}
.products-grid .reset-filters.current-active span{
    font-family: proximanovasemibold;
}
.products-grid .reset-filters.current-active span::after {
    content: '';
    border: 1px solid black;
    display: block;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    position: absolute;
}

.products-grid .shipping-warranty-blocs-mobile {
	display: none;
}

/* ================
   Sorting
   ================ */
.products-grid .sorting-wrapper {
	overflow: hidden;
	margin-top: 20px;
	margin-right: 20px;
}
.products-grid .sorting-wrapper .sorting{
	float: right;
}
.products-grid .sorting-wrapper .sorting .custom-combobox select{
	height: 49px;
	padding: 12px;
	font-size: 1em;
	border: 1px solid #ccc;
	padding-right: 50px;
}
   
/* ================
   Pagination
   ================ */
.pagination .right{
	float: right;
}
.pagination span,
.pagination button,
.pagination .mixitup-page-list button{
  background: #efefef;
  display: inline-block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  outline: 1px solid #a7a7a7!important;
  color: #030303!important;
  margin: 0 2px;
  padding:0;
  border: none;
}
.pagination span.current,
.pagination button.mixitup-control-active {
  min-width: 40px;
  height: 40px;
  line-height: 42px;
  color:#000!important;
}
.pagination .prev,
.pagination button.mixitup-control-prev,
.pagination .next,
.pagination button.mixitup-control-next,{
  width:auto;
  padding:0 10px;
}
.pagination span a,
.pagination button{
  color: inherit;
  min-width: 40px;
  height: 40px;
  line-height: 42px;
  display: block;
}
.pagination span:hover,
.pagination button:hover{
  background: #e5e5e5!important;
}  

.pagination{
  text-align:center;
}
.pagination .mixitup-page-stats {
  display: inline-block;
  line-height: 40px;
}





#template-boutique.search .products-grid .cols-wrapper .products-col{
    width: 100%;
    float: none;
    margin-left: -20px;
}
#template-boutique.search .products-grid .cols-wrapper .products-col .grid{
	margin-right: -40px;
}


.shipping-warranty-blocs{
	display: inline-block;
	padding-left: 20px;
	margin-bottom: 20px;
}
.shipping-warranty-blocs p{
	margin: 0;
}
.shipping-warranty-blocs p .img-crochet{
	height: 11px!important;
}
.shipping-warranty-blocs p small{
	color: gray;
}
.shipping-warranty-blocs .bloc {
    display: inline-block;
    vertical-align: middle;
    padding:  0 10px;
    border: 1px solid #e7161b;
    color: #e7161b;
    margin-bottom: 10px;
    margin-right: 10px;
    height: 48px;
    line-height: 48px;
}
.free-shipping::before {
    content: '';
    display: inline-block;
    width: 45px;
    height: 20px;
    background: url("../../images/icon-free-shipping.png") center center no-repeat;
    background-size: contain;
    margin-right: 1em;
    vertical-align: middle;
}




@media screen and (max-width: 1920px){
	
	.products-grid .grid li{font-size:15px;}
	
	.products-grid .grid .prod-caption{font-size: 1.2em;}
}

@media screen and (max-width: 1600px){
	
	.products-grid .grid li{font-size:15px; width: 33.33%;}
	.products-grid .grid .prod-caption {font-size: 1.1em;}
}

@media screen and (max-width: 1366px){
	.products-grid .cols-wrapper .filter-col {width: 25%;}
	.products-grid .cols-wrapper .products-col {width: 75%;}
}
@media screen and (max-width: 1280px){
	.products-grid .cols-wrapper .filter-col .categories-filter ul.children{padding-left: 10px;}
}

@media screen and (max-width: 1100px){
	.products-grid .grid li .buttons-wrapper a { display: block; text-align: center; width: 100%;}
	.products-grid .grid li .buttons-wrapper a:not(.button) {padding-top: 20px;}
}
@media screen and (max-width: 1024px){
	#template-boutique .wrapper{overflow: hidden; width: 100%;}
	
	.products-grid .cols-wrapper .filter-col ul{padding-left: 5px;}
	.dropdown-wrapper h3{padding-left: 5px;}
	.dropdown-wrapper>h3::before { margin-left: -18px; margin-top: 0; position: absolute;}
	
	.products-grid .cols-wrapper .filter-col {width: 30%; padding-top: 10px;}
	.products-grid .cols-wrapper .products-col { width: 70%;}
	.products-grid .grid{min-height: 0;}
	.products-grid .grid li{width: 49%; padding: 10px;}
	.products-grid .grid li:hover{background:none; box-shadow: none; -moz-box-shadow: none; -webkit-box-shadow: none;}
	.products-grid .grid li .buttons-wrapper{visibility: visible; opacity: 1; position: relative; box-shadow: none; -moz-box-shadow: none; -webkit-box-shadow: none; padding-left:0; padding-right:0;}
	.products-grid .grid li .product-wrapper {background:white; padding:$gutter; }
	.products-grid .grid li .product-wrapper .product-variants{display:none;}
	.products-grid .grid .product-photo-container img{/*position: relative; height: auto; object-fit: initial;*/}
	.dropdown{padding-left: 0;}
	
	.products-grid .grid li .buttons-wrapper>a{display: inline-block;width: auto;padding-left: 10px;padding-right: 10px;font-size: 0.8em;}	
	
}
@media screen and (max-width: 767px){
	html.filter-show{overflow: hidden;}
	
	#template-boutique{padding-top: 1em;}
	
	.products-grid .grid{margin: 0 -18px 0 -10px;}
	.products-grid .cols-wrapper .products-col .filterby-wrapper{display:inline-block; padding-left: 0;}
	.products-grid .cols-wrapper .products-col{ width: 100%; margin: 0 auto; float: none; padding-left:0; padding-right:0; }	
	
	.products-grid .reset-filters{margin-left: 15px;}
	.products-grid .cols-wrapper .filter-col .apply-button-wrapper{display: block;}

	.dropdown-wrapper h3{padding: 13px 10px!important;}
	.dropdown-wrapper>h3::before{ right: 10px; margin: 0;}
	.filter-col .dropdown-wrapper.show .dropdown{ padding:1em 0; background: #f5f5f5; float: left; width: 100%;}
	.products-grid .cols-wrapper .filter-col .variant-filter{overflow: hidden;}
	
	.products-grid .cols-wrapper .filter-col{ width: 100%; position: fixed; top: 0; left: 0; padding: 0; z-index: 9999999999; bottom: 0; background: white; transform:translateX(-100%);-moz-transform:translateX(-100%);-webkit-transform:translateX(-100%); transition:all.3s;-moz-transition:all.3s;-webkit-transition:all.3s;}
	.products-grid .cols-wrapper .filter-col.show{transform:translateX(0);-moz-transform:translateX(0);-webkit-transform:translateX(0);}
	.products-grid .cols-wrapper .filters-wrapper{padding: 40px 0; border:none; overflow: auto; height: 100%;}
	.products-grid .cols-wrapper .filters-wrapper .close-button{font-size: 1.3em; position: fixed; right: 20px; top: 12px; z-index: 999;}
	.products-grid .cols-wrapper .filters-wrapper .close-button::before{    content: "\e829"; font-family: fontello; display: block; }
	.products-grid .cols-wrapper .filters-wrapper h2{margin:0; position: fixed;text-align: center;padding: 10px 0;border-bottom: 1px solid #ddd;position: fixed;width: 100%;top: 0px;left: 0;background: white; z-index: 99;}
	.products-grid .cols-wrapper .filter-col .filter .dropdown ul li label{display: block; padding: 4px 0;}
	.products-grid .cols-wrapper .filter-col .filter .dropdown ul li{margin-top: 0;}
	.products-grid .cols-wrapper .filter-col ul{padding-left: 10px; padding-right: 10px;}
	
	.categories-filter .dropdown>ul{ background: #f5f5f5; padding: 0!important;}
	.products-grid .cols-wrapper .filter-col .categories-filter ul.children{padding-left: 20px; padding-right: 0;}
	.categories-filter .dropdown-wrapper.show .dropdown{ padding-top:0;}
	.categories-filter .dropdown>ul>li{padding:0; margin: 0!important;}
	.categories-filter .dropdown>ul>li.show{padding-bottom: 10px;}
	.categories-filter .dropdown>ul>li.page_item_has_children::before{ right: 10px; font-size: 1.1em; top: 0; line-height: 44px!important;}
	.categories-filter .dropdown>ul>li:not(.show)>label { border-bottom: 1px solid #ddd; }
	.categories-filter .dropdown>ul>li.show+li { border-top: 1px solid #ddd; }
	.categories-filter .dropdown>ul>li>label { padding: 13px 10px!important;}
	.categories-filter .filter.show .dropdown{padding-bottom: 0;}
	.products-grid .cols-wrapper .filter-col .categories-filter .filter.show{border-bottom: none;}
	
	.products-grid .cols-wrapper .filter-col .categories-filter input[type="checkbox"]+label::before,
	.products-grid .cols-wrapper .filter-col .categories-filter input[type="checkbox"]+label::after{display: inline-block;left: auto;right: 10px;}
	/*.products-grid .cols-wrapper .filter-col .categories-filter input[type="checkbox"]+label::before{border-radius: 100%;}*/
	.products-grid .cols-wrapper .filter-col .categories-filter input[type="checkbox"]+label::after{content: '';    margin-top: -8px; background: #000; width: 15px;height: 15px;/*border-radius: 100%;*/}	
	.products-grid .cols-wrapper .filter-col .filter .dropdown ul li.all-categories::before{content: ''; position: absolute;  right: 10px; top: 50%; margin-top: -8px; width: 14px; height: 14px; border: 1px solid #ccc; background: #F8F8F8; border-radius: 100%;}
	.products-grid .cols-wrapper .filter-col .filter .dropdown ul li.all-categories.current-active::before{background: #000; border-color: #000; }
		
	.products-grid .color-filter .all-colors{margin-bottom: 1em;}
	.products-grid .color-filter .all-colors label{margin-left: 5px;}
	.products-grid .cols-wrapper .filter-col .color-filter .all-colors label{display: inline-block!important;}
	.products-grid .color-input-wrapper .color-image-wrapper img { width: 25px; height: 25px;}
	.products-grid .color-input-wrapper input:checked+label .color-image-wrapper::after {width: 33px; height: 33px;}
	
	.collection-filter .dropdown>ul{ background: #f5f5f5; padding: 0!important;}
	.products-grid .cols-wrapper .filter-col .collection-filter ul.children{padding-left: 20px; padding-right: 0;}
	.collection-filter .dropdown-wrapper.show .dropdown{ padding-top:0;}
	.collection-filter .dropdown>ul>li{padding:0; margin: 0!important;}
	.collection-filter .dropdown>ul>li>label { border-bottom: 1px solid #ddd; }
	.products-grid .cols-wrapper .filter-col .collection-filter .dropdown ul li label{padding: 10px;}
	.products-grid .cols-wrapper .filter-col .collection-filter .dropdown{padding-bottom: 0;}
	.products-grid .cols-wrapper .filter-col .collection-filter input[type="checkbox"]+label::before,
	.products-grid .cols-wrapper .filter-col .collection-filter input[type="checkbox"]+label::after{display: inline-block;left: auto;right: 10px;}
	.products-grid .cols-wrapper .filter-col .collection-filter input[type="checkbox"]+label::before{/*border-radius: 100%;*/}
	.products-grid .cols-wrapper .filter-col .collection-filter input[type="checkbox"]+label::after{content: '';    margin-top: -8px; background: #000; width: 15px;height: 15px;}	

	
	.products-grid .grid .prod-caption {font-size: 0.9em;}
	
	.pagination span a, .pagination button {min-width: 30px; height: 30px; line-height: 32px;}
	.pagination span.current, .pagination button.mixitup-control-active{    min-width: 30px;  height: 30px; line-height: 32px;}
	.pagination .right{float: none;}
	
	.products-grid .sorting-wrapper{display: inline-block; vertical-align: top; margin: 0; float: right; width: 150px;}
	.products-grid .sorting-wrapper .shipping-warranty-blocs{display: none;}
	.products-grid .shipping-warranty-blocs-mobile { display: block; }
}

@media screen and (max-width: 600px){
	.products-grid .grid .prod-caption{ min-height: 3.25em;}
}
@media screen and (max-width: 400px){
	.products-grid .sorting-wrapper {
		width: 47%;
	}
	.products-grid .sorting-wrapper .sorting .custom-combobox select {
    	padding-left: 5px;
	}
	.products-grid .cols-wrapper .products-col .filterby-wrapper {
		padding-bottom: 10px;
		width: 47%;
	}
	.products-grid .cols-wrapper .products-col .filterby-wrapper input {
    	padding-left: 5px;
	}
}
@media screen and (max-width: 320px){
	.products-grid .grid li{width: 100%;}
	.products-grid .grid{margin:0 -18px 0 -10px;}
	.products-grid .grid .prod-caption .collection {font-size: 0.9em;}
/*
	.products-grid .cols-wrapper .products-col .filterby-wrapper,
	.products-grid .sorting-wrapper {width: 119px;}
*/
	header.header-boutique .logo-wrapper{padding: 0;}
	header.header-boutique .header-mobile .search-button{text-align: right;width: 40px;}
	/*.products-grid .grid .prod-caption,
	.products-grid .grid .prod-price{display: none;}
	.products-grid .grid .prod-caption.mobile,
	.products-grid .grid .prod-price.mobile{display: block;}*/
}