.nocopy * {
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none;   /* Chrome/Safari/Opera */
	-khtml-user-select: none;    /* Konqueror */
	-moz-user-select: none;      /* Firefox */
	-ms-user-select: none;       /* Internet Explorer/Edge */
	user-select: none;           /* Non-prefixed version, currently not supported by any browser */
}
input:focus, select:focus, textarea:focus, button:focus {
	outline: none;
}
input[type='number'] {
	-moz-appearance:textfield;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}
input {
	-webkit-appearance: none;
	border-radius: 0px;
}
@font-face {
	font-family: 'ukplate';
	src: url('../fonts/uknumberplate-webfont.woff2') format('woff2'),
		 url('../fonts/uknumberplate-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}
body  {
	margin: 0px;
	padding: 0px;
	font-family: 'Roboto', sans-serif;
}

.header {
	background-color: #152028;
	position: inherit;
}
.header .logo {
	width: 200px;
	padding: 30px;
}
.header h1 {
	color: white;
	font-weight: bold;
	font-size: 20px;
	position: absolute;
	right: 30px;
	top: 35px;
}

@media screen and (max-width: 600px) {
	.header .logo {
		margin: 0px auto;
		display: block;	
		padding-bottom: 0px;
	}
	.header h1 {
		position: relative;
		right: auto;
		top: auto;
		display: block;
		text-align: center;
		padding: 20px 0px 20px;
		margin: 0px;
	}
}

.notification {
	background-color: #d9534f;
	color: white;
	margin: 0px 0px 25px;
	padding: 10px;
	text-align: center;
	font-weight: bold;
}
.notification.red {
	background-color: #d9534f;
}
.notification.green {
	background-color: #15c03e;
}

.default h1 {
	font-size: 30px;
	padding: 5px;
	font-weight: bold;
	margin: 30px 0px 10px;
}
.default table {
	width: 100%;
}
.default p {
	text-align: center;
	padding: 30px 20px;
}
.default p.left {
	text-align: left;
	padding: 15px 10px;
}
.default table {
	box-sizing: border-box;
}
.default label {
	font-size: 14px;
	font-weight: bold;
	display: block;
	margin-bottom: 5px;
}
.default table th {
	text-align: left;
	background: #152028;
	color: white;
}
.default table th[onclick]:hover {
	cursor: pointer;
	background: #2c404e;
}
.default input {
	font-size: 25px;
	padding: 6px;
	border-radius: 5px;
	border: 3px solid black;
	text-align: center;
	width: 100%;
	box-sizing: border-box;
}
.default .veh_reg {
	background-color: #eedb05;
	text-transform: uppercase;
	font-family: 'ukplate';
	border-radius: 4px;
	border: 2px solid black;
	padding: 2px 5px;
	font-weight: normal;
	white-space: nowrap;
}
.default .submit, .logout {
	background-color: #4d86c4;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 15px;
	border: 0px;
	width: 100%;
	color: white;
	cursor: pointer;
	max-width: none;
	padding: 15px 0px;
}
.default .submit:hover {
	background-color: #15c03e;
}

.logout {
	display: block;
	padding: 15px 30px;
	border-radius: 5px;
	text-decoration: none;
	width: auto;
	position: fixed;
	bottom: 20px;
	right: 20px;
}
.logout:hover {
	opacity: 0.7;
}

.default .footer {
	margin-top:100px;
	font-size: 10px;
	color: grey;
	text-align: justify;
}

.maxwidth {
	width: 100%;
	max-width: 800px;
	margin: 0px auto;
	box-sizing: border-box;
	padding: 0px 20px;
}

.dataTable tr:hover td {
	cursor: pointer;
	background-color: #cdcdcd;
}
.dataTable tr:nth-child(odd) {
	background-color: #ebebeb;
}
.dataTable .veh_reg {
	font-size: 20px;
}
.badge {
	background: grey;
	color: white;
	padding: 5px 10px;
	border-radius: 4px;
	font-size: 12px;
}
.badge.active {
	background-color: #15c03e;
}
.badge.expired {
	background-color: #d9534f;
}
.badge.warning {
	background-color: #d9c94e;
	color: black;
}

input.field, select.field {
	width: 100%;
	font-size: 15px;
	padding: 5px;
	border-radius: 3px;
	border: 1px solid #989898;
	background: white;
	color: black;
	box-sizing: border-box;
	text-align: left;
}
select.field {
	height: 30px;
}

.welcome strong {
	background: #152028;
	color: white;
	display: inline-block;
	padding: 5px 10px;
	margin-bottom: 10px;
	border-radius: 3px;
}

.action {
	display: block;
	margin-bottom: 5px;
	border-radius: 5px;
	background-color: #4d86c4;
	font-size: 15px;
	border: 0px;
	width: 100%;
	color: white;
	cursor: pointer;
	max-width: none;
	padding: 15px;
	text-decoration: none;
	box-sizing: border-box;
	background-image: url('../images/right.png');
	background-repeat: no-repeat;
	background-position: 97% center;
	background-size: 25px;
}
.action:hover {
	opacity: 0.8;
}
.action.grey {
	background-image: none;
	background-color: #adadad;
	box-sizing: border-box;
}
.action.green {
	background-color: #15c03e;
}
.action.blue {
	background-color: #4d86c4;
}
.action.red {
	background-color: #d9534f;
}

small.note {
	color: grey;
	display: inline-block;
	padding-bottom: 3px;
}







.field.notfilled {
	border: 1px solid #d9534f;
	background-color: #f8dddc;
}

.notice {
	padding: 10px;
	color: white;
	background-color: #c02a18;
	background-color: #d9534f;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	margin-top: 0px;
}
.notice.success {
	background-color: #15c03e;
}

.transferField {
	display: none;
}

.email_sent {
	width: 188px;
	margin: 0px auto;
	display: block;
}