<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">form {
	
	margin: 0;
	padding: 0;
	
}

.availabilityBackground {
	
	width: 100%;
	background: #7AA65D;
	border: 1px solid #3a6120;
	color: white;

}

.availabilityContainer {
	
	display: flex;
	display: -webkit-flex; /* Safari */
	flex-direction: row;
	-webkit-flex-direction: row; /* Safari */
	justify-content: space-around;
	-webkit-justify-content: space-around;
	margin: auto;
	max-width: 1200px;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap; /* Safari */
	box-sizing: border-box;

}

select::-ms-expand {
	
    display: none;
    
}




/* style the select */

select.availBoxSelect {
	
	border-radius: 4px;
	/*display: block;*/
	padding: 10px 40px 10px 13px !important;
	width: 100%;
	height: auto !important;
	border: 0;
	border: 1px solid #1D4900;
	background: url('/images/down-arrow.png');
	background-repeat: no-repeat;
	background-position: calc(100% - 10px) 50%;
	background-color: white;
	color: black;
	font-size: 14px;
	line-height: 16px !important;
	appearance: none;
	/* this is must */ -webkit-appearance: none;
	-moz-appearance: none;
	outline: none;
	margin: 0;
	
	
} 




.regionBox {
	
	display: flex;
	display: -webkit-flex; /* Safari */
	flex-direction: column;
	-webkit-flex-direction: column; /* Safari */
	font-weight: bold;
	white-space: nowrap;
	display: flex;
	box-sizing: border-box;
	align-items: center;
	justify-content: flex-end;
	-webkit-justify-content: flex-end;
	min-width: 100px;
	width: 33%;
	padding: 20px;

}


.availText {
	
	margin-bottom: 5px;	
	
}

	

/* Media Queries */

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

	.availabilityBackground {
		
		margin: 10px;
		width: CALC(100% - 20px);

	}

	.availabilityContainer {
	
		justify-content: flex-start;
		-webkit-justify-content: flex-start;
		
	}
	
	.regionBox {
	
		justify-content: flex-start;
		-webkit-justify-content: flex-start;
		flex-direction: row;
		-webkit-flex-direction: row; /* Safari */
		min-width: 33%;
		padding: 10px;
		
	}

	.availText {
		
		width: 40%;
		margin-bottom: 0;	
		margin-right: 10px;
		
		
	}
	
	select.availBoxSelect {
		
		width: 60%;
		display: block;
		
	}
	
	select#county {
		width: 100%;
	}
	
	#selectedDate {
		
		border: 1px solid red;	
		display: none;
		
	}

	
	
}



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

	.availabilityBackground {
		
		margin: 0 -20px;
		width: CALC(100% + 40px);
		
		
	}
	
	.availText {
		
		width: 30%;

	}

	
}



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

	.availabilityBackground {
		
		width: 70%;
		margin: auto;
		
	}
	
	.regionBox {
		width: 100%;
	}
	

	

	
}



@media only screen and (max-width: 600px) {
	
	.availabilityBackground {
		
		width: 100%;
		
	}

	.searchSummary {
		
		display: block;
		
	}
	
	.availabilityContainer {
		
		
		
	}

	.regionBox {
	
		justify-content: flex-start;
		-webkit-justify-content: flex-start;
		flex-direction: row;
		-webkit-flex-direction: row; /* Safari */
		padding: 5px;
		
	}
	
	.availText {
		
		width: 100px;
		margin-right: 10px;
		
		
	}
	
	
	select.availBoxSelect {
		
		width: 100%;
		
	}
	

	
	
	
}




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

	.regionBox  {
		
		width: 100%;	
		margin: 0;
	}
		
}

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