.aside-filter ul {
	padding-left: 0;
	list-style: none;
	margin: 0px;
}
aside.aside-item {
	//padding-top: 15px;
	margin-bottom: 10px;
}
aside.aside-item .title-head {
	padding: 11px 0 11px 15px;
	background: #f7f7f7;
	border: solid 1px #eee;
	border-radius: 4px 4px 0 0;
	margin-bottom: 0;
	font-size: 15px;
	font-weight: bold;
	text-transform: unset;
}
aside.aside-item .title-head span:hover {
	text-decoration: underline;
}
aside.aside-item .title-head:after {
	content: "\f107";
	font-family: "Font Awesome 5 Free";
	font-size: 16px;
	margin-left: 5px;
}
aside.aside-item ul {
	padding: 10px 0;
	border: solid 1px #eee;
	border-top: none;
	background: #fff;
	min-height: 70px;
	display: flex;
	flex-wrap: wrap;
	max-height: 300px;
	overflow-y: auto;
}

aside.aside-item ul::-webkit-scrollbar {
  width: 4px;
	background: #eee;
}
aside.aside-item ul::-webkit-scrollbar-thumb {
  background-color: #ccc; 
}

aside.aside-item ul li {
	width: 47%;
	margin: 10px 0 5px 0;
	margin-left: 3%;
	overflow: hidden;
}
aside.aside-item ul li label {
	font-size: 13px;
	margin-bottom: 0;
}
@media (max-width: 991px) {
	.aside-content {
		overflow: auto;
	}
	.aside-content::-webkit-scrollbar {
		width: 3px;
	}
	.aside-content::-webkit-scrollbar-thumb {
		background-color: var(--primary-color);
		outline: 1px solid var(--primary-color);
	}
}
.aside-content .filter-item {
	position: relative;
	clear: left;
	font-size: 14px;
	padding: 0;
}
.aside-content .filter-item:last-child {
	border-bottom: none;
}
.aside-content .filter-item a {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.7;
	padding: 5px 20px 2px 0px;
}
.aside-content .filter-item .fa {
	cursor: pointer;
	display: inline;
}
.aside-content .filter-item .fa.fa-caret-right {
	right: auto;
	left: 0;
	top: 16px;
	text-align: left;
}
.aside-content .filter-item .dropdown-menu {
	width: 100%;
	border: 0;
	padding-left: 0px;
	box-shadow: none;
	margin-top: 0px;
	padding: 0px;
	position: static;
	background: none;
}
.aside-content .filter-item.active > .dropdown-menu {
	display: block;
}
.aside-content .filter-item:hover > a {
	color: #333;
	background-color: transparent;
}
.aside-content .filter-item ul > li:before {
	top: 17px;
	left: 15px;
}
.filter-container__selected-filter-item {
	padding: 3px 10px;
	margin-right: 7px;
	margin-bottom: 7px;
	color: #333;
	border: 1px solid #666;
	border-radius: 4px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 10px;
}
.filter-container__selected-filter-item a {
	color: #333;
	z-index: 1;
	position: relative;
	font-weight: 400;
}
.filter-container__selected-filter-item a:hover {
	text-decoration: none;
}
.filter-container__selected-filter-item a .fa {
	margin-left: 5px;
}
aside.aside-item ul li.filter-item-toggle {
    width: 100%;
}
/*
.filter-container__selected-filter-item:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 0;
	background: var(--primary-color);
	opacity: 0.1;
}
*/
@media (max-width: 1024px) {
	.sidebar {
		position: fixed;
		visibility: hidden;
		opacity: 0;
		z-index: -1;
		background: #fff;
		.open-filters {
			margin-bottom: 15px;
		}
	}
}

.custom-checkbox img {
	max-height: 15px;
}