/* 
	=-=-= Defaults =-=-=
*/
body {
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
	font-size: 1em;
	color: #111;
	background: url('../images/bg.jpg') left top no-repeat;
	background-size: cover;
	/* margin-top: -20px; -- Remarketing only */ 
}
section {
	width: 100%;
	padding: 30px 0;
	float: left;
}
section:after {
	content: " ";
	clear: both;
	position: relative;
}
.margin-auto {
	float: none;
	margin: 0 auto; 
}
ul {
	padding-left: 0;
	margin: 0;
	list-style-type: none;
}
a { text-decoration: none !important }
.pb-30 { padding: 0 0 30px 0 }
.no-padding { padding: 0 !important }


/* Footer */
footer {
	width: 100%;
    padding: 10px 20px;
    float: left;
    color: #FFF;
}
footer .f-logo {
	float: left;
	max-width: 200px;
}
footer p {
	text-align: center;
}
footer p span {
	margin-right: 15px;
	color: #FFF;
}
footer a {
	color: #FFF
}

/* 
	=-=-= Header =-=-=
*/
header {
	width: 100%;
	padding-bottom: 21.1%;
	position: relative;
	background: url('../images/header-bg.png') center top no-repeat;
	background-size: contain;
	z-index: 9999;
}

/* 
	=-=-= Online Test =-=-=
*/

.online-test-wrap {
	width: 100%;
	margin-bottom: 50px;
}
.online-test-wrap .test-content {
	width: 100%;
	padding: 50px 40px 20px;
	border-radius: 15px;
	background: rgba(255,255,255,0.9);
	position: relative;
	top: -25px;
}
.online-test-wrap .test-content h4 {
	font-size: 150%;
	font-weight: bold;
	color: #ed2228;
	margin-bottom: 30px;
}
.online-test-wrap .test-content ul {
	list-style: disc;
	margin-bottom: 30px;
}

.online-test-wrap .test-btn {
	display: block;
	border-radius: 10px;
	padding: 10px 25px;
	background-color: #20409a;
	outline: 0;
	border: none;
	float: left; 
	box-shadow: 0px 4px 2px 0 rgba(0,0,0,0.3);
	cursor: pointer;
	transition: all .3s ease-in-out;
}
.online-test-wrap .test-btn span {
	display: block;
	color: #FFF;
	font-family: 'Open Sans', sans-serif;
	font-size: 100%;
	transition: all .3s ease-in-out;
}
.online-test-wrap .test-btn:focus span {
	transform: scale(2);
	opacity: 0;
}
.online-test-wrap .test-btn:hover ~ .form-arrow {
	animation: leftRight 1s ease-in-out infinite;
}
.online-test-wrap .test-btn:active ~ .form-arrow {
	animation: fadeOutFast 1s ease-out 1;
	box-shadow: none;
}
.online-test-wrap .form-arrow {
	width: 20px;
	height: 45px;
	background: url('../images/arrow-right.png') center center no-repeat;
	background-size: contain;
	float: left;
	margin-left: 5px;
	transition: all .2s ease-in-out;
}

@keyframes leftRight {
	from { transform: translateX(0); }
	to { transform: translateX(20%); }
}
@keyframes fadeOutFast {
	from { transform: translateX(0); opacity: 1; }
	to { transform: translateX(100%); opacity: 0; }
}
/* 
	=-=-= Form =-=-=
*/

.form-section {
	width: 100%;
}
.form-section h5 {
	font-family: "Open Sans", sans-serif;
	font-size: 16px;
	font-weight: 900;
	color: #ed2228;
	display: inline-block;
}
.form-section h4 {
	font-family: "Open Sans", sans-serif;
	font-size: 125%;
	font-weight: 900;
	color: #ed2228;
	display: inline-block;
}
.form-section h4 span {
	color: #ffd10c;
}
.form-section .radio-list .answer {
	width: 20px;
	height: 20px;
	background-color: #d4d4d4;
	line-height: 9px;
	font-size: 13px;
	text-align: center;
	color: #2b2b2b;
	border-radius: 50%;
	padding: 5px;
    display: block;
    float: left;
    margin-top: 2px;
    margin-right: 5px;
}
.form-section .numbers {
	width: 75px;
	height: 30px;
	padding: 3px 10px;
	text-align: center;
	background-color: #ed2228;
	border-radius: 30px;
	float: right;
	color: #FFF;
}
.form-section .reading-text h3 {
	font-size: 100% !important;
}

label p {
	margin-bottom: 0 !important
}
[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #20409a;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

@media only screen and (max-width: 579px) {
	header {
		background: url('../images/mobil-header-bg.png') left top no-repeat;
		background-size: contain;
		padding-bottom: 57.9%;
	}
	[type="radio"]:checked + label, [type="radio"]:not(:checked) + label {
		width: 90%;
	}
	.form-section audio {
		width: 100% !important;
		max-width: 100% !important;
	}
	.online-test-wrap .test-content {
		padding: 30px 20px 10px;
	}
	.online-test-wrap .test-btn {
		padding: 7px 15px;
		font-size: 80%;
	}
	.online-test-wrap .form-arrow {
		width: 15px;
		height: 37px;
		margin-right: 1em;
	}
	footer p {
		width: 100%; 
		float: left;
		text-align: left;
	}
	footer p span {
		display: block;
	}
}
@media only screen and (max-width: 375px) {
	.form-section .numbers {
		width: 60px;
	    height: 19px;
	    font-size: 80%;
	    margin-top: 3px;
	    padding: 0;
	    margin-right: -10px;
	}
	.form-section h5 {
		font-size: 15px;
	}
}
@media only screen and (max-width: 320px) {
	[type="radio"]:checked + label, [type="radio"]:not(:checked) + label {
		width: 85%;
	}
}