#testData {
	height: 600px;
	overflow: scroll;
	/*margin-left: 10px;*/
	padding-left: 10px;
}

#testData label {
	font-size: 15px;
	display: block;
	margin-top: 18px;
	margin-bottom: 18px;
}

.waiting {
	width: 100px;
	margin: 30px auto;
}

#prev_button,
#next_button,
#restart_button {
	padding: 12px 20px;
	margin: 0 15px 0 0;
	border: none;
	border-radius: 15px;
	color: #FFF;
	cursor: pointer;
	font-size: 18px;
}

#next_button,
#restart_button {
	background-color: #399439;
}
#prev_button {
	background-color: #abaeb9;
}

/* Checkbox */
.checkbox {
	position: absolute;
	z-index: -1;
	opacity: 0;
	margin: 10px 0 0 20px;
}

.checkbox + label {
	position: relative;
	padding: 0 0 0 40px;
	cursor: pointer;
}

.checkbox + label:before {
	content: '';
	position: absolute;
	/*top: -4px;*/
	left: 0;
	width: 30px;
	height: 20px;
	border-radius: 13px;
	background: #abaeb9;
	box-shadow: inset 0 2px 3px rgba(0, 0, 0, .2);
	transition: .2s;
}

.checkbox + label:after {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	width: 16px;
	height: 16px;
	border-radius: 10px;
	background: #FFF;
	box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
	transition: .2s;
}

.checkbox:checked + label:before {
	background: #399439;
}

.checkbox:checked + label:after {
	left: 12px;
}

.checkbox:focus + label:before {
	box-shadow: inset 0 2px 3px rgba(0, 0, 0, .2), 0 0 0 3px rgba(255, 255, 0, .7);
}

/* Radio */
.radio {
	position: absolute;
	z-index: -1;
	opacity: 0;
	margin: 10px 0 0 7px;
}

.radio + label {
	position: relative;
	padding: 0 0 0 35px;
	cursor: pointer;
}

.radio + label:before {
	content: '';
	position: absolute;
	/*top: -3px;*/
	left: 0;
	width: 20px;
	height: 20px;
	border: 1px solid #abaeb9;
	border-radius: 50%;
	background: #FFF;
}

.radio + label:after {
	content: '';
	position: absolute;
	top: 4px;
	left: 4px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #399439;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .5);
	opacity: 0;
	transition: .2s;
}

.radio:checked + label:after {
	opacity: 1;
}

.radio:focus + label:before {
	box-shadow: 0 0 0 1px rgba(255, 255, 0, .7);
}