/** Shopify CDN: Minification failed

Line 75:0 Unexpected "{"
Line 75:1 Expected identifier but found "%"
Line 85:0 Unexpected "{"
Line 85:1 Expected identifier but found "%"

**/
.filters-drawer {
	position: fixed;
	top: 0;
	bottom: 0;
	right: -100%;
	width: 460px;
	z-index: 1000;
	background-color: #f4f4f4;
	transition: right 750ms ease-out;
}
.sidebar-block__tag-filter {
    padding: 0;
    margin: 0 0 25px;
}
.filters-drawer--open {
	right: 0;
}

.filters-drawer__inner {
	padding: 30px 30px;
}

.filters-drawer .filter-all-tags {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
	grid-gap: 3px;
}

.filters-drawer .tag-filter__item label {
	font-size: 14px;
	font-weight: 500;
    list-style:none;
    text-transform: capitalize;
    margin-bottom: 0;
      position: relative;
  padding: 15px 10px;
}
.filters-drawer .tag-filter__item {
  justify-content: center;  
  text-align: center;
  background: #fff;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
  list-style:none;
  border: 1px solid #ddd;  
}
.filters-drawer .tag-filter__item.is-active label,
.filters-drawer .tag-filter__item label:hover{
  background: #000;
  color:#fff;
}
/* .filters-drawer .tag-filter__item.is-active label:hover{
  background: red;
  color:#fff;
} */
input.tag-filter__checkbox--regular {
    opacity: 0;    
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
}

{% comment %}
STYLES FOR ACTIVE FILTERS

.filters-drawer .tag-filter__item.is-active {
	background-color: #222;
}

/* .filters-drawer .tag-filter__item.is-active .tag-filter__label span {
	color: #fff;
} */
{% endcomment %}

.filters-drawer .sidebar-block__heading {
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
  text-align: left;
}

.filters-drawer .close-img {
	display: flex;
	justify-content: flex-end;
    cursor: pointer;
}

.filters-drawer .collection-filter {
	padding: 20px 0 25px;
	margin: 0;
}

.filters-drawer .sort-heading {
	margin-bottom: 8px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: Montserrat,sans-serif;
    color: #000;
    font-size: 14px;    
}

.filters-drawer .collection-filter .sort-heading:after {
	display: none;
}

.filters-drawer .collection-filter .sort-list-wrapper {
	position: static;
	display: block !important;
	margin-top: 0px;
}

.filters-drawer .sort-list-wrapper .inner-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 3px;      
    height: auto;
}

.filters-drawer .collection-filter .sort-list-wrapper p {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px 10px;
	text-align: center;
	background: #fff;
	margin-bottom: 0;
	font-family: 'Nunito Sans';
	font-size: 14px;
	font-weight: 500;
	letter-spacing: normal;
	text-transform: capitalize;
	color: #1a1a1a;
    border: 1px solid #ddd;
    margin: 0;
    cursor: pointer;
}

.filters-drawer .collection-filter .sort-list-wrapper p.p-active,
.filters-drawer .collection-filter .sort-list-wrapper p:hover{
    background: #000;
    color:#fff;
}

.filters-drawer__inner {
	height: calc(100% - 100px);
	overflow-y: auto;
}

.filters-drawer__clear {
	padding: 20px 30px;
	border-top: 1px solid #ddd;
}

.filters-drawer__clear a {
	display: block;
	padding: 15px;
	border: 1px solid #000;
	font-size: 14px;
	text-align: center;
	text-transform: capitalize;
    background: #000;
    color: #fff;
}

@media screen and (max-width: 1023px) {
	.filters-drawer .collection-filter {
		width: 100%;
	}

	.filters-drawer .sort-list-wrapper .inner-wrapper {
		position: static;
	}
}

@media screen and (max-width: 768px) {
	.filters-drawer {
		width: 100%;
	}
}