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

.searchBoxContainer, .searchBoxContainerSmall {
	
	position: relative;
	border-radius: 30px;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	width: 50%;
	padding: 20px;
	background: #e2e2e2;
	margin: 20px;
	
}

.searchBoxLR {
	
	display: flex;
	display: -webkit-flex;
}

.searchBoxContainerSmall {
	
	border-radius: 20px;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	width: 100%;
	padding: 10px;
	
}

/* submit button */

.searchSubmit, .postcodeSubmit {

	display: flex;
	display: -webkit-flex;
	align-items: center;
	font-size: 25px;
	border: 4px solid white;
	border-radius: 0 20px 20px 0;
	color: white;
	padding: 20px;
	background: orange;
	padding-bottom: 10px;
	cursor: pointer;
	padding-bottom: 17px;

}

.postcodeSubmit {
	
	background: #00A5FD;
	
}

/* text input */

.searchTextInput {

	outline: none;
	border: 0;
	width: 100%;
	border-radius: 5px 0 0 5px;
	padding: 20px;
	font-size: 25px;
	
}

/* placeholder text style */


::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #b0b3b7;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #b0b3b7;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #b0b3b7;
}
:-moz-placeholder { /* Firefox 18- */
  color: #b0b3b7;
}


/* grow search form to fill space */

.searchForm {
	
	flex-grow: 1;
	-webkit-flex-grow: 1;
	
}

/* the drop down box */

.autocomplete-suggestions {
	
	overflow: auto;
	background: #FFF;
	cursor: default;
	display: block;
	padding: 0 20px 20px 20px;
	max-width: 60%;
	font-size: 20px;
	line-height: 40px;
	box-shadow: -8px 8px 10px  rgba(0,0,0,0.2);
	border-radius: 0 0 30px 30px;
	-moz-box-shadow: -8px 8px 10px  rgba(0,0,0,0.2);
	-webkit-box-shadow: -8px 8px 10px  rgba(0,0,0,0.2);

	
}

.autocomplete-suggestion {

	padding: 2px 5px;
	white-space: nowrap;
	overflow: hidden;
	
}

.autocomplete-selected {

	background: #F0F0F0;
	
}

.autocomplete-suggestions strong {

	font-weight: normal;
	color: #3399FF;
	
}


/*
##########################################

Media Queries

##########################################
*/


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

	.searchBoxContainer {
		
		box-shadow: none;
		-moz-box-shadow: none;
		-webkit-box-shadow: none;
		border-radius: 0;
		width: 100%;
		padding: 0;
		background: none;
		margin: 0;
		
		
	}
	
	.searchBoxContainer:nth-child(1) {
		margin-bottom: 20px;
	}
	


	.searchBoxLR {
		
		flex-direction: column;
		
	}

	/* submit button */
	
	.searchSubmit, .postcodeSubmit {
	

		font-size: 27px;
		border: 4px solid white;
		border-radius: 0;
		padding: 0 15px;
	
	}
	
	/* text input */
	
	.searchTextInput {
	
		outline: none;
		border: 0;
		width: 100%;
		border-radius: 0;
		padding: 22px;
		font-size: 18px;
		
	}
	
	/* placeholder text style */
	
	
	::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	  color: #b0b3b7;
	}
	::-moz-placeholder { /* Firefox 19+ */
	  color: #b0b3b7;
	}
	:-ms-input-placeholder { /* IE 10+ */
	  color: #b0b3b7;
	}
	:-moz-placeholder { /* Firefox 18- */
	  color: #b0b3b7;
	}
	
	
	/* grow search form to fill space */
	
	.searchForm {
		
		flex-grow: 1;
		
	}
	
	/* the drop down box */
	
	.autocomplete-suggestions {

		padding: 0 15px 15px 15px;
		max-width: 100%;
		right: 0;
		overflow: hidden;
		font-size: 17px;
		line-height: 40px;
		box-shadow: -4px 4px 4px  rgba(0,0,0,0.2);
		border-radius: 0 0 20px 20px;
		-moz-box-shadow: -4px 4px 4px  rgba(0,0,0,0.2);
		-webkit-box-shadow: -4px 4px 4px  rgba(0,0,0,0.2);
	
		
	}
	
	.autocomplete-suggestion {
	
		padding: 2px 5px;
		white-space: nowrap;
		overflow: hidden;
		
	}
	
	.autocomplete-selected {
	
		background: #F0F0F0;
		
	}
	
	.autocomplete-suggestions strong {
	
		font-weight: normal;
		color: #3399FF;
		
	}

}

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