.dreamart-filters{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.dreamart-filters .dreamart-filter{
    position: relative;
    z-index: 1;
    min-width: 150px;
}

.dreamart-filter.open{
    z-index: 9;
}

.dreamart-filters .dreamart-filter .dreamart-filter-toggle{
    height: initial;
	color: black;
	line-height: 20px;
	display: flex;
	gap: 10px;
	border: 1px solid black;
	padding: 5px 10px;
	z-index: 99999;
	position: relative;
	background: white;
	padding-right: 30px;
    border-radius: 0;
    width: 100%;
}

.dreamart-filters .dreamart-filter.open{
    border-bottom: none;
}

.dreamart-filters .dreamart-filter.hide{
    display: none;
}

.dreamart-filters .dreamart-filter.show{
    display: block;
}

.dreamart-filters .dreamart-filter .dreamart-filter-toggle .svg{
	position: absolute;
	top: 8px;
	right: 5px;
}

.dreamart-filters .dreamart-filter .dreamart-filter-toggle .count{
	background: black;
	color: white;
	padding: 2px 5px;
	font-size: 12px;
    display: none;
	line-height: 15px;
}

.dreamart-filters .dreamart-filter .dreamart-filter-toggle .count.show{
    display: block;
}

.dreamart-filters .dreamart-filter .dreamart-filter-toggle .svg svg{
	width: 15px;
}

.dreamart-filters .dreamart-filter.open .dreamart-filter-body {
	max-height: 250px;
	z-index: 9999;
	background-color: white;
    display: block;
}

.dreamart-filters .dreamart-filter .dreamart-filter-body{
	padding: 0;
	position: absolute;
	left: 0;
	border: 1px solid black;
	max-height: 0;
	transition: max-height 0.4s ease-out;
	top: 30px;
	width: 100%;
	display: flex;
	flex-direction: column;    
    min-width: 250px;
    padding-bottom: 50px;
    display: none;
}

.dreamart-filters .dreamart-filter .dreamart-filter-body ul{
	margin: 0;
	list-style-type: none;
	margin: 0;
    overflow: auto;
    max-height: 200px;
}

.dreamart-filters .dreamart-filter .dreamart-filter-body li{
    font-size: 14px;
    position: relative;
    padding-left: 24px;
    cursor: pointer;
}

.dreamart-filters .dreamart-filter .dreamart-filter-body li input{
	margin-right: 5px;
	position: absolute;
	left: 3px;
	top: 5px;
}

.dreamart-filters .dreamart-filter .dreamart-filter-body ul li:hover{
    background-color: #efefef;
}

.dreamart-filters .dreamart-filter .dreamart-filter-body .dreamart-filter-actions{
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	width: 100%;
	border-top: 1px solid black;
}

.dreamart-filters .dreamart-filter .dreamart-filter-body .dreamart-filter-actions button{
	border-radius: 0;
	padding: 10px 10px;
	width: 50%;
    font-size: 14px;
}

.dreamart-filters .dreamart-filter .dreamart-filter-body .dreamart-filter-actions button:first-child{
    border-right: 1px solid black;
}

#dreamart-filters-toggle{
 	margin: 0;
	font-size: 14px;
	color: black;
	font-weight: 500;
	line-height: 14px;
	padding: 8px 0;
	cursor: pointer;   
}