<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* filters styling */

/* button */

.filtersContainer {

	width: 100%;
	display: none;
	
}

.filters {
	
	background: white;
	cursor: pointer;
	border: 1px solid #AD9C6F;
	padding: 5px;
	display: flex;
	display: -webkit-flex;
	width: 50%;
	margin: auto;
	justify-content: center;
	-webkit-justify-content: center;
	align-items: center;
	-flexkit-align-items: center;
	font-size: 15pt;
	-webkit-user-select: none; /* Safari */        
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* IE10+/Edge */
	user-select: none; /* Standard */
	border-radius: 4px;
	z-index: 20;

}

.filters i {

	margin-right: 10px;
	
}

.filtersBox {
	
	margin-top: 15px;
	display: flex;
	display: -webkit-flex;
	border: 1px solid #AD9C6F;
	
}

.filtersBox1, .filtersBox2 {
	
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	width: 50%;
	padding: 0 20px 20px 20px;

}

.filterItem {
	
	width: 50%;
	padding: 10px;

	
}

.filtersBox1 {
	
	border-right: 3px solid #ccc;

}

.filtersBox2 {
	
	

}

.filterTitle {
	
	width: 100%;
	font-size: 16pt;
	text-align: center;
	border-bottom: 1px solid #ccc;
	margin-bottom: 15px;
	margin-top: 5px;
	height: 40px;
	
}

.close {
	
	display: flex;
	justify-content: center;
	align-items: center;
	background: #ccc;
	text-align: center;
	cursor: pointer;
	border: 1px solid black;
	margin-top: 12px;
	width: 50%;
	padding: 5px;
	font-size: 14pt;
	color: white;
	background: #336854;
	
}





@media only screen and (max-width: 850px) {
	
	.filters {
	
		width: 80%;
		
	}
	
	.filterItem {
	
		width: 80%;
		padding: 0px;
		margin: 10px auto;
		display: flex;
		display: -webkit-flex;
		align-items: center;
		-webkit-align-items: center;
		
	}
	
	.close {
		
		width: 80%;
		margin: auto;
		padding: 14px;
		text-align: center;
		margin-top: 22px;
		
	}
	

		
}




@media only screen and (max-width: 700px) {
	
	.sortBy1 {
		
		order: 1;
		
	}
	
	.sortBy2 {
		
		order: 3;
		width: 80%;
		margin-top: 10px;
		
	}
	
	.sortBy3 {
		
		order: 2;
		width: 80%;
		margin-top: 10px;
		
	}
	
	.filters {
		
		width: 100%;
		
	}
	
	.filtersBox1, .filtersBox2 {

		padding: 10px;
	
	}
	
	.filterItem {
	
		width: 100%;
		padding: 8px;
		
		
	}
	
	.close {
		
		width: 100%;
			
	}
	
	.filterTitle {
		
		font-size: 14pt;
		
	}
	
}

@media only screen and (max-width: 700px) {

	.filters {
		
		border-radius: 20px;
		width: 50%;
		font-size: 12pt;
		padding: 4px;
		
	}
	


}


@media only screen and (max-width: 400px) {
	
	.filtersBox {
		
		border: none;
		margin: 0;
		
	}
	
	.filtersBox {
		
		flex-direction: column;
		-webkit-flex-direction: column;
		position: fixed;
		top: 0;
		left: 0;
		background: white;
		z-index: 2500;
		height: 90%;
		width: 100%;
		overflow: auto;

	}
	
	.close {
		
		display: flex;
		display: -webkit-flex;
		align-items: center;
		-webkit-align-items: center;
		-webkit-justify-content: center;
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		margin: 0;
		height: 10%;
		
		padding: 10px;
		
		
	}
		
	
	.filtersBox1, .filtersBox2 {
		
		width: 100%;

	}
	
	.filtersBox1 {
	
		border: none;
		
	}
	
	.filterTitle {
	
		padding-bottom: 15px;
		
	}
	
	.filtersBox2 {
	
		padding-top: 0;
	}
	
}
</pre></body></html>