/* CSS Document */
.searchContainer {
	position: relative;
	width: 1000px;
	max-height: calc(100% - 230px);
	text-align: center;
	margin: 0 auto;
	}

.searchWrapper {
	position: relative;
	width: 500px;
	background: rgba(0,0,0,0.6);
	margin: 0 auto;
	padding: 20px;
	text-align: center;
	font-size: 12pt;
	overflow-y: auto;
	border:6px solid rgba(255,255,255,0.3);
	-moz-border-radius: 25px;
	-webkit-border-radius: 25px;
	border-radius: 25px;
	}

.locationContainer {
	position: relative;
	width: 80%;
	margin: 0 auto;
}

.locationDetail {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto 10px auto;
	padding-bottom: 10px;
	border-bottom: 1px solid #fff;
	overflow: hidden;
}

.locationName {
	font-family: 'takeawaybold';
	font-weight: normal;
	line-height: normal;
	font-size: 16pt;
	color: #f9bb43;
}

h3.postcodesearchHeading {
	font-family: 'takeawaybold';
	font-weight: normal;
	line-height: normal;
	font-size: 24pt;
	color: #fff;
	}

#postcodesearchWrapper {
	text-align: left;
	position: relative;
	z-index: 100;
	margin: 20px 0;
	}

#locationform {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	}

input.indexpostcode {
	font-family: 'takeawaybold';
	font-weight: normal;
	font-size: 36px;
	width: 200px;
	height: 50px;
	color: #000000;
	text-align: center;
	text-transform: uppercase;
	border: 0;
	padding: 0;
	-moz-border-radius: 5px;
	-webkit-border-radius:5px;
	border-radius: 5px;
	}

input.indexpostcode::placeholder {
	font-family: 'takeawaybold', Arial, Helvetica, sans-serif;
	color: #888;
	font-size: 24px;
	}

.button, a.locationLink {
	font-family: 'takeawaybold';
	font-weight: normal;
	font-size: 24px;
	line-height: 30px;
	padding: 0 20px;
	border: 1px solid #fff;
	background: #e84f2c;
	height: 50px;
	color : #FFFFFF;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 25px;
	text-align: center;
	float: right;
	cursor: pointer;
	}
	
a.locationLink {
	display: block;
	text-decoration: none;
	height: auto;
	}

.button:hover, a.locationLink:hover {
	background-color: #000;
	text-decoration: none;
	}
	



.postcodeResultContainer {
	position: fixed;
 	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.5);
	z-index: 20000;
	}
	
#pcmessageWrapper {
	position: relative;
  	left: 50%;
  	top: 30%;
	transform: translate(-50%, -50%);
	z-index: 10000;
	width: 400px;
	}

.pcmessage {
	font-family: 'takeawaybold', Arial, Helvetica, sans-serif;
	font-weight: normal;
	color: #000000;
	font-size: 14pt;
	line-height: 17pt;
	width: 100%;
	float:left;
	text-align: center;
	background: #FFFFFF;
	padding: 10px 0;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	border-radius: 15px;
	}

.clearResult {
	position: absolute;
	top: 0;
	right: 0;
	}
 
.pcsubhead {
	color: #cc0000;
	font-size: 16pt;
	line-height: 18pt;
	margin-bottom: 10px;
	}
	
.good {
	font-size: 24pt;
	color: #00CC00;
}

.bad {
	color: #cc0000;
}

		
