@media only screen and (max-width: 800px) {
	.imagen-area {
		transform: rotate(90deg) !important;
		width: 5%; 
		align-self: center; 
		float: left;
	}

	.imagen-area-actual {		
		/* width: 5%; 
		align-self: center; 
		float: left; */
		display: none;
	}

	.form__instruction {
		display: inline !important;
	}
}

@media only screen and (max-width: 600px) {
	.imagen-area {
		transform: rotate(90deg) !important;
		width: 5%; 
		align-self: center; 
		float: left;
	}

	.imagen-area-actual {
		/* width: 5%; 
		align-self: center; 
		float: left; */
		display: none;
	}

	.form__instruction {
		display: inline !important;
	}
}

.imagen-area-actual {
	width: 20%; 
	align-self: center; 
	float: left;
}
.imagen-area {
	width: 5%; 
	align-self: center; 
	float: left;
}

.card-ancho-total {
    max-width: 70rem !important;
    width: 100% !important;
    margin: 0 !important;
}

.card-preguntas {
    padding: 10px !important;
}

.cards-1 .card-image {
    float: left;
}

.texto-info {
    text-align: left;
    margin-left: 15%;
}

/* Estilos de las preguntas y respuestas */

.form__title {
	font-size: 14px;
    /* margin: 10px 0; */
    color: #999;
	text-align: right;
}

.form__instruction {
    font-size: 20px;
	color: #00bfd8;
	display: none;
}

.form__options {
	border: none;
	padding: 0;
}

.form__question {
    font-size: 20px;
    line-height: 1.5em;
    font-weight: bold;
}

.form__answer {
	display: inline-block;
	box-sizing: border-box;
	width: 100%;
	margin: 10px 1% 10px 0;
	height: 40px;
	vertical-align: top;
	font-size: 22px;
	text-align: center; 
}

.etiqueta {
	border: 1px solid rgba(#6aeb1f,.15);
	box-sizing: border-box;
	display: inline;
	height: 100%;
	width: 100%;
	padding: 10px;
	cursor: pointer;
	opacity: .5;
	transition: all .5s ease-in-out;
}

/* Input style */

input[type="radio"] {
	opacity: 0;
	width: 0;
    height: 0;
}

input[type="radio"]:active ~ label {
    opacity: 1;
}

input[type="radio"]:checked ~ label {
    opacity: 1;
	border: 2px solid #6aeb1f;
}

