.nav-collection .subnav-collection {
	display: block;
}
.subnav-collection .checkbox-ic {
	position: relative;
	height: 20px;
	width: 20px;
	display: inline-flex;
	border: 1px solid #bebebe;
	border-radius: 3px;
	flex-shrink: 0;
}
.subnav-collection>label {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}
.subnav-collection .active .checkbox-ic {
	background: #000;
}

.subnav-collection .checkbox-ic:after, .subnav-collection .checkbox-ic:before {
	background: #fff;
	width: 2px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	content: '';
	position: absolute;
}

.subnav-collection .checkbox-ic:after{
	top: calc(50% + 1px);
	left: calc(50% - 2px);
	height: 5px;
	transform: translate(-50%, -50%) rotate(-45deg);
} 

.subnav-collection .checkbox-ic:before {
	top: 50%;
	left: calc(50% + 2px);
	height: 10px;
	transform: translate(-50%, -50%) rotate(45deg);

}
.subnav-collection li>label {
	display: flex;
	gap: 10px;
	align-items: center;
	cursor: pointer;
	margin:0;
}
.filter_group .filter_group-subtitle {
	background: #f1f1f1;
	border-radius: 2rem;
	border: 0;
	padding-right: 40px;
	z-index: 22;
	min-width:186px;
}
.filter_group .filter_group-subtitle path {
	stroke: #1d1d1d;
}
.line-collection-content .filter_group_block {
	display: flex;
	align-items: center;
	gap: 10px;
}
.line-collection-content .filter_group {
	max-width: max-content;
	flex: auto;
}
.filter_group .filter_group-subtitle .icon-filter {
	right: 10px;
}
.filter_group-title>span {
	font-size:16px;
	font-weight:600;
}

.filter_group {
	display: flex;
	align-items: center;
	gap: 10px;
}
.filter_group .filter_group-content {
	top: 99%;
	padding: 0;
	padding-top: 8px;
	border-radius: 0 0 15px 15px;
	overflow: hidden;
	z-index: 997;
}

.checkbox-sortby li:before, .checkbox-sortby li:after {
	display: none;
}
.checkbox-list input[type='checkbox']:after, .checkbox-list input[type='radio']:after{
	display: none;
}
.checkbox-sortby li, .checkbox-list li {
	padding: 10px;
	cursor: pointer;
}
.checkbox-sortby li.active , .checkbox-list li.active {
	background: #d9d9d9;
}
.checkbox-sortby li:hover, .checkbox-list li:hover{
	background: #d9d9d9;
}

body.scroll-lock{
	overflow: hidden;
}

.close-filter-modal, .close-product-modal {
	position: relative;
	height: 24px;
	width: 24px;
	display: inline-block;
}

.close-filter-modal:after,
.close-filter-modal:before, 
.close-product-modal:after,
.close-product-modal:before{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	height: 20px;
	width: 2px;
	background: #000;
}
.close-filter-modal:after, .close-product-modal:after{ transform: translate(-50%, -50%) rotate(45deg) }
.close-filter-modal:before, .close-product-modal:before{ transform: translate(-50%, -50%) rotate(-45deg) }
.collection-filter-heading {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}
.collection-filter-title {
	font-size: 16px;
	font-weight: 600;
	margin: 0;
}
@media(max-width: 767px){
	.line-collection-content {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.sidebar-collection {
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		background: transparent;
		transition: all ease-in-out 250ms;
		z-index: 4399;
		opacity: 0;
		visibility: hidden;
	}
	.isshown .sidebar-collection {
		background: #000000ce;
		opacity: 1;
		visibility: visible;
	}
	.sidebar-collection_mbbox {
		max-width: 310px;
		width: 100%;
		right: 0;
		top: 0;
		bottom: 0;
		position: absolute;
		background: #fff;
		overflow-y: auto;
		padding: 20px;
		transform: translateX(100%);
		transition: all ease-in-out 250ms;
	}
	.isshown .sidebar-collection_mbbox {
		transform: translateX(0%);
	}
}
