* {
	margin: 0px;
	padding: 0px;
}

body {
	background: #1E70B6;
	font-family: 'Roboto', sans-serif;
}

@font-face {
	font-family: 'uknumberplateregular';
	src: url('/assets/fonts/uknumberplate/uknumberplate-webfont.woff2') format('woff2'),
		 url('/assets/fonts/uknumberplate/uknumberplate-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;

}

.parking {
	color: #1E70B6;
	background: white;
	width: 100px;
	height: 100px;
	line-height: 100px;
	border-radius: 20px;
	font-weight: bold;
	text-align: center;
	font-size: 90px;
	margin: 25px 0px;
}

form {
	width: 100%;
	max-width: 350px;
	margin: 0px auto;
	padding-bottom: 10px;
}

input:focus {
	outline: 0;
	outline-width: 0;
}

form h1, form h2 {
	color: white;
	font-size: 30px;
	text-align: center;
	margin: 0px 0px 0px;
	font-weight: bold;
	letter-spacing: -1px;
}
form h2 {
	font-size: 13px;
}

form label {
	color: white;
	padding: 15px 0px 5px;
	display: block;
}

.input {
	background-color: white;
	border: 3px solid black;
	border-radius: 5px;
	color: black;
	font-size: 20px;
	padding: 10px;
	width: 100%;
	box-sizing: border-box;
	display: block;
	
	text-align: center;
}
.custom_select {
	xbackground-color: white;
	border-radius: 5px;
	color: black;
	font-size: 15px;
	padding-top: 0px;
	width: 100%;
	box-sizing: border-box;
	display: block;
}
.custom_select .option {
	background-color: white;
	border: 1px solid black;
	border-radius: 8px;
	padding: 10px;
	position: relative;
	margin-bottom: 5px;
}
.custom_select .option .fa-check-circle {
	display:none;
}
.custom_select .option:hover, .custom_select .option.selected {
	cursor: pointer;
	border: 2px solid black;
	background-color: #e6e6e6;
	padding: 9px;
}
.custom_select .option.selected {
	background-color: #1eb665;
	border-color: #33628a;
	color: white;
}
.custom_select .option.selected .name {
	color: white;
}
.custom_select .option:hover .fa-check-circle, .custom_select .option.selected .fa-check-circle {
	display: inline;
}
.custom_select .option:hover .fa-circle, .custom_select .option.selected .fa-circle {
	display: none;
}

.custom_select .option .expires {
	font-size: 12px;
	padding-top: 5px;
}
.custom_select .option .name {
	font-weight: bold;
	font-size: 20px;
	color: #1E70B6;
}
.custom_select .option .checkbox {
	float: left;
	height: 45px;
	margin: 0px 10px 0px 3px;
	font-size: 20px;
	line-height: 45px;
}
.custom_select .option .price {
	float: right;
	font-weight: bold;
}
.veh_reg {
	font-family: 'uknumberplateregular';
	background-color: #ffcd27;
	text-transform: uppercase;
	border: 3px solid black;
	border-radius: 5px;
	color: black;
	text-align: center;
	font-size: 30px;
	padding: 10px;
	width: 100%;
	box-sizing: border-box;
	
	display: block;
}

.submit, .button {
	width: 100%;
	font-weight: bold;
	background-color: #1eb665;
	background-color: #1d496e;
	color: white;
	border: 0px;
	font-size: 30px;
	border-radius: 5px;
	padding: 10px 0px;
	cursor: pointer;
	
	-webkit-appearance: none;
}

.button {
	background-color: #185A93;
	font-size: 16px;
	margin-top: 10px;
}
.purchase_permit {
	max-width: 350px;
	margin: 0px auto 25px;
	display: block;
}

.tariff_list, .location_name {
	display: none;
}

.footer {
	font-size: 10px;
	color: white;
	text-align: justify;
	margin: 20px 0px;
	padding: 0px;
}

.overlay, .popup {
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	background-color: rgba(0, 0, 0, 0.5);
	display: none;
}
.popup {
	background: none;
}
.popup .loading {
	display: none;
	margin-top: 97px;
}
.popup .loading.active {
	display: block;
}

.popup .confirm {
	background: white;
	border-radius: 5px;
	margin: 100px auto;
	margin-top: 175px;
	max-width: 300px;
	padding: 30px;
	text-align: center;
	
	display: none;
}

.popup .confirm p {
	margin: 0px;
	padding: 15px 0px;
}

.popup .confirm .choice {
	-webkit-appearance: none;
	width: 100%;
	padding: 10px;
	background: #EFEFEF;
	border: 1px #767676 solid;
	border-radius: 5px;
	margin-top: 10px;
	display: block;
	color: black;
	font-size: 15px;
	text-transform: uppercase;
	font-weight: bold;
	cursor: pointer;
}

.permit_list {
	display: none;
	padding-top: 20px;
}
.permit_list h1 {
	margin: 20px;
	color: white;
	font-size: 20px;
	text-transform: uppercase;
}
.permit {
	background: white;
	margin: 0px auto 25px;
	max-width: 350px;
	color: #363636;
	text-align: center;
	padding: 20px;
	box-sizing: border-box;
}
.permit .heading {
	text-align: left;
	margin: 0px;
}
.permit .parking {
	background-color: #363636;
	color: white;
	border-radius: 5px;
	margin: 0px;
	width: 60px;
	height: 60px;
	line-height: 60px;
	font-size: 50px;
}
.permit .dotted {
	border-top: 2px dashed #363636;
	box-sizing: border-box;
	margin: 20px 0px;
}
.permit h2 {
	margin: 0px 0px 5px;
}
.permit .detail {
	text-align: left;
	font-family: ccourier, Courier;
	margin: 10px auto;
	font-size: 14px;
}
.permit .detail td {
	padding: 5px 0px;
}
.permit .detail .pad {
	padding-left: 20px;
}
.permit .button {
	margin: 8px 0px;
	width: 90%;
	background-color: #1d496e;
	color: white;
	border: 0px;
	font-size: 15px;
	border-radius: 5px;
	padding: 10px 0px;
	cursor: pointer;
	
	-webkit-appearance: none;
}
.permit .ref {
	font-size: 11px;
	font-weight: bold;
}

.permit .paid_amount {
	background-color:#363636;
	color: white;
	padding:5px 15px;
	margin-bottom: 15px;
	display:inline-block;
}

[data-contact="website"] {
	cursor: pointer;
}
.contact-info {
	display: none;
}