@charset "utf-8";
/* CSS Document */

#quiz { 
	min-height:400px; 	
	font-family: wuerthbook;
}

.question {
	height: 300px;
    font-size: 28px;
    line-height: 160%;	
}

.numero { 
	font-size: 24px; 
	margin-bottom: 20px; 
}

#results-test {
	line-height:160%;
	font-size:16px;
}

@media(max-width:767px) {

	#quiz { 
		min-height:350px; 	
		font-family: wuerthbook;
	}
	
	.question {
		height: 300px!important;
		font-size: 28px!important;
	}

	.numero { 
		font-size: 18px!important; 
	}	
	
}

.slide{
	position: absolute;
	width: 100%;
	z-index: 1;
	opacity: 0;
	transition: opacity 0.5s;
}

.active-slide{
	opacity: 1;
	z-index: 2;
}


.quiz-container{
  margin-top: 40px;
}

.radio-toolbar input[type="radio"] {
    display:none; 
}

.radio-toolbar label {
    display:inline-block;
    background-color:#dedede;
	width:100px;
	text-align:center;
    font-size: 24px;
	padding:10px 0;
	color:#000;
}

.radio-toolbar label:hover {
	background-color: #0093dd;
	color:#fff;	
}

.radio-toolbar input[type="radio"]:checked + label { 
    background-color:#0093dd;
	color:#fff;	
}
