body {
	background-color: #0505a2;
}
.pregunta {
	height: 50px;
}
.respuesta {
	height: 40px;
}
.correcta {
	height: 40px;
	color: #ff8800;
	font-weight: 700;
	font-size: 30px;
}
label {
	font-weight: 400;
	font-size: 30px;
	color: white;
}
input[type="radio"] { display: none;} 
input[type="radio"] + label { font-weight: 400;
 font-size: 30px;
 color: white; } 
input[type="radio"] + label span { display: inline-block; width: 18px; height: 18px; margin: -2px 10px 0 0; vertical-align: middle; cursor: pointer; -moz-border-radius: 50%; border-radius: 50%; border: 3px solid #ffffff; } 
input[type="radio"] + label span { background-color: #fff; } 
input[type="radio"]:checked + label { color: #ff8800; font-weight: 700; } 
input[type="radio"]:checked + label span { background-color: #ff8800; border: 2px solid #ffffff; box-shadow: 2px 2px 2px rgba(0,0,0,.1); } 
input[type="radio"] + label span, input[type="radio"]:checked + label span { -webkit-transition: background-color 0.24s linear; -o-transition: background-color 0.24s linear; -moz-transition: background-color 0.24s linear; transition: background-color 0.24s linear; }