body {
	color: #595959;
	font-family: 'Poppins', sans-serif;
	
	font-size: 12px;
}


.checkbox {
	overflow: hidden;
}

.checkbox label {
	padding-left: 25px;
}

.checkbox input {
	right: 100%;
}

.checkbox input + span {
	position: absolute;
	left: 0;
	top: 0;
	background-color: #FFFFFF;
	border: solid 1px #00239c;
	width: 20px;
	height: 20px;
	display: block;
}

.checkbox input + span:after {
	background-color: #00239c;
	width: 12px;
	height: 12px;
	content: "";
	display: block;
	top: 3px;
	left: 3px;
	position: absolute;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
}

.checkbox input + span,
.checkbox input + span:after {
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

.checkbox input:checked + span:after {
	background-color: #00239c;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.centre {
	text-align: center;
}

.spacer {
	font-size: 0px;
	height: 10px;
}