<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.refineHeader, .postsHeader {
	
	background: white;
	border-radius: 20px 20px 0 0;
	padding: 10px 20px;
	box-sizing: border-box;
	margin-bottom: 4px;
	background: #597A2A;
	color: white;
	text-align: center;
	font-weight: bold;
	
}

.mobilePosts {
	display: none;
}


.refineHeaderMobile {
	
	display: none;
	font-weight: bold;
	background: #EEEEEE;
	padding: 10px;
	margin: 10px 0;
	
}

label.container span  {
	color: #a0a2a5;

	margin-left: 5px;
}

.refinePanel, .postsPanel {
	
	background: white;
	width: 100%;
	/*height: 100%;*/
	border-radius: 0 0 20px 20px;
	padding: 15px;
	box-sizing: border-box;
	/*border: 1px solid black;*/
	margin-bottom: 20px;
	border: 1px solid white;

}

.postsPanel ul {
	
	padding: 0;
	padding-left: 10px;
	font-size: 13pt;
	list-style: none;
	
}

.postsPanel li {
	
	margin-bottom: 20px;
	
}

.refinePanelFull {
	
	/*height: 100%;*/
	
}

.refineText {
	margin-left: 10px;
}

/* Checkbox styling */

/* The container */
label.container {
	
	
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
    white-space: nowrap;
}

/* Hide the browser's default checkbox */
.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {

    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
    background-color: #486A16;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
    left: 7px;
    top: 2px;
    width: 6px;
    height: 14px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.mobileFilters {
	
	display: none;
	background: white;
	width: CALC(100% - 20px);
	margin: auto;

}

.featuresButton {
	display: none;
}




/* MEDIA QUERIES */

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


	.refinePanelFull {
	
		display: none;

		
	}

	.refineHeader {
		display: none;
	}
	
	.refineHeaderMobile {
		
		display: block;	
	}
	
	
	.refinePanel {
	
		border-radius: 0;
		padding-bottom: 0;
		margin-bottom: 0;
		background: white;
		
	}
	
}

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


	
	.featuresButton {
	

		font-weight: bold;
		/*display: block;*/
		background: white;
		width: CALC(100% - 20px);
		padding: 5px;
		border-radius: 0 0 10px 10px;
		text-align: center;
		margin: auto;
		
	}
	

	
}


























</pre></body></html>