@font-face{
	font-family: 'cabin-regular'; /*a name to be used later*/
    src: url('../fonts/Cabin-Regular.ttf'); /*URL to font*/
}

@font-face{
	font-family: 'cabin-italic'; /*a name to be used later*/
    src: url('../fonts/Cabin-Italic.ttf'); /*URL to font*/
}

@font-face{
	font-family: 'cabin-bold-italic'; /*a name to be used later*/
    src: url('../fonts/Cabin-BoldItalic.ttf'); /*URL to font*/
}

@font-face{
	font-family: 'big-noodle'; /*a name to be used later*/
    src: url('../fonts/big_noodle_titling.ttf'); /*URL to font*/
}

p{
	font-family:'cabin-regular';
}

*{
	margin:0;
	padding:0;
}

.ggb_contenidoInterno{
    background:none;
}

.tab{
    position:absolute;
    width:97%;
    height:83%;
    border-radius:15px;
    overflow:hidden;
    display:none;
}

#tab_1{
    background:url("../img/bg_5.png");
   	background-size:cover;
   	display:block;
}

#tab_2{
    background:url("../img/bg_6.png");
   	background-size:cover;
}

.questions{
	position:absolute;
	width:45.5%;
	height:45.5%;
	/* background:red; */
}

.questions:first-of-type{
	left:3.6%;
	top:43%;
}

.questions:last-of-type{
	left:50.9%;
	top:43%;
}

.questions > div{
	float:left;
	width:100%;
	height:20%;
	margin-bottom:3%;
	/* background:whitesmoke; */
}

.questions > div:first-of-type{
	margin-top:6.4%;
}

.questions > div > *{
	display:inline-block;
	float:left;
}

.checkbox{
	height:100%;
	width:10%;
	background:#FFFFFF;
	border-radius:10px;
	box-sizing:border-box;
	border:solid 2px #000000;
	margin:0 1%;
}

.checkbox:hover{
	cursor:pointer;
	opacity:0.85;
	transform:scale(1.05);
}

.checkbox:active{
	opacity:1;
	transform:scale(1);
}

.questions p{
	font-size:1.4em;
	position:absolute;
	padding-right:4%;
	padding-left:1%;
	text-align:justify;
	height: 20%;
	transform:translateY(6%)
}

.forward, .back{
	position:absolute;
	width:15%;
	bottom:1%;
}

.forward{
	right:3%;
}

.back{
	left:3%;
}

.forward:hover, .back:hover{
	opacity:0.85;
	cursor:pointer;
	transform:scale(1.05);
}

.forward:active, .back:active{
	transform:scale(1);
	opacity:1;
}

.correct{
	background:green !important;
	color:white !important;
}
.incorrect{
	background:red !important;
	color:white !important;
}

.checkbox i{
	font-size:2.5em;
	position:relative;
	top:50%;
	left:50%;
	transform:translateY(-50%) translateX(-50%);
}

