/* [critical] */
.filterlistmenu {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.filterlistmenu:last-child {
	margin-bottom: -1px; /* Fix for double-border */
}

.filterlistmenu li {
	padding: 5px;
	border-bottom: solid 1px #dcdcdc;
	background-color: #fff;
	background-image: linear-gradient(to bottom, #fff, #f8f8f8);
}

.filterlistmenu li.filter-item-title {
	font-weight: bold;
	background-color: #eee;
	background-image: linear-gradient(to bottom, #eee, #ddd);
	border-bottom: solid 1px #bbb;
}

.product-filter {
	overflow: hidden;
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 0;
    border: 1px solid #e2e2e2;
    border-radius: 3px;
	
	background: #fff;
	box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.product-filter__btn {
	width: 100%;
	padding: 10px;
	
	background: #fff;
	font-weight: 700;
	text-align: left;
}

.product-filter__body {
	display: none;
	padding: 15px 0px 0 20px;
}

@media all and (max-width: 768px) {
	.product-filter {
		display: block;
	}
}
/* [/critical] */

.is-filter-open.product-filter {
	display: block;
}
.is-filter-open .product-filter__btn {
    background: #f9f9f9;
    border-bottom: 1px solid #e2e2e2;
}
.is-filter-open .product-filter__body {
	display: block;
}

.product-filter__options {
	display: inline-block;
	width: 20%;
	padding-right: 20px;
	margin-bottom: 15px;
	vertical-align: top;
}
.product-filter__title {
    font-weight: 700;
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 5px;
}
.product-filter-toggle-icon {
	float: right;
	margin-top: 2px;
	font-size: 16px;
}
@media all and (max-width: 960px) {
	.product-filter__options {
		width: 25%;
	}
}
@media all and (max-width: 768px) {
	.product-filter__options {
		width: 33.33%;
	}
}
@media all and (max-width: 600px) {
	.product-filter__options {
		width: 50%;
	}
}
@media all and (max-width: 340px) {
	.product-filter__options {
		width: 100%;
	}
}
