html, body {
	height: 100vh;
	box-sizing: border-box;
	background: #ddd;
}

*, *:before, *:after {
	box-sizing: inherit;
}

.banner {
	background-color: #fff;
	width: 100%;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.wrapper {
	max-width: 680px;
	margin: 30px auto 8px auto;
	background: #fff;
	border-radius: 5px;
	box-shadow: 1px 1px 10px -3px #000;
}

.banner__left-logo, .banner__right-logo {
	margin: 10px 5px;
}

.banner__left-logo {
	float: left;
	margin-right: 10px;
}

.banner__right-logo {
	float: right;
}

.header-area {
    width: 100%;
    border-color: #fff;
    border-width: 5px;
    text-align: center;
    color: #fff;
    padding: 3px 0;
    background-color: #003476;
    position: relative;
}

.localeChangeButton {
	display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0 8px 8px 0;
}

.header-area .subtitle {
	color: #FB9101;
	font-size: 17px;
}

h1 {
	font-size: 24px;
	margin: 0;
	padding: 4px 0;
}

hr {
	margin-bottom: 0;
}

h2 {
	font-size: 23px;
}

h3 {
	font-size: 21px;
	margin-top: 10px;
}

.submit-button {
	margin-top: 5px;
	margin-bottom: 30px;
	width: 100%;
	background-color: #046ec5;
}

.submit-button:hover {
	background-color: #003476;
}

.form-horizontal {
	margin: 30px 0 0 10px;
}

.form-group {
	padding-bottom: 16px;
}

.form-horizontal .form-group {
	width: 270px;
	margin: 0 auto;
}

.error-area {
	text-align: center;
	color: red;
	margin-right: 15px;
	margin-left: 15px;
}

.error {
	font-style: italic;
	margin-bottom: 0;
}

.form-header-group {
	margin-left: 10px;
	margin-bottom: 15px;
	text-align: center;
}

.form-footer {
	text-align: center;
	padding: 10px 0;
	margin: 0;
	color: #0054a6;
}

.noselect {
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Old versions of Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.localeButtonContainer {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	padding: 0 16px 8px 0;
}

/**************************************************
    ACCESS CONFIRMATION PAGE
***************************************************/
.confirm-area, .radio-buttons {
	padding: 5px 10px;
}

/* Count down timer styling */
.base-timer {
	position: relative;
	width: 100%;
	height: 100%;
}

.base-timer__svg {
	transform: scaleX(-1);
}

.base-timer__circle {
	fill: none;
	stroke: none;
}

.base-timer__path-elapsed {
	stroke-width: 7px;
	stroke: #888;
}

.base-timer__path-remaining {
	stroke-width: 7px;
	stroke-linecap: round;
	transform: rotate(90deg);
	transform-origin: center;
	transition: 1s linear all;
	fill-rule: nonzero;
	stroke: currentColor;
}

.base-timer__path-remaining.green {
	color: rgb(65, 184, 131);
}

.base-timer__path-remaining.orange {
	color: orange;
}

.base-timer__path-remaining.red {
	color: red;
}

.base-timer__label {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3em;
}

@media screen and (max-width: 565px) {
	.banner__left-logo img {
		height: 58px !important;
	}
	.banner__right-logo img {
		height: 50px !important;
	}
}