@charset "utf-8";
/* Diseño móvil: 480 px e inferior. */

.acordeon {
	width: 100%;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 30px;
	margin-left: auto;
}
.acordeon label {
	font-weight: normal;
	display: block;
	cursor: pointer;
	color: #FFF;
	font-size: 1.3rem;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	-ms-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	font-family: "Comic Sans MS", "Times New Roman", Verdana;
	border-top-width: medium;
	border-bottom-width: medium;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #FFF;
	border-bottom-color: #FFF;
	border-radius: 25px;
	padding-top: 11px;
	padding-right: 22px;
	padding-bottom: 11px;
	padding-left: 22px;
	text-align: left;
}
.acordeon label:hover{
	color: #F00;
	padding-left: 44px;
	border-top-color: #F00;
	border-bottom-color: #F00;
}
.acordeon input[type="radio"]:checked + label,
.acordeon input[type="radio"]:checked + label:hover{
	background: rgba(255,255,255,0.9);
	color: #4E5869;
	border-top-width: medium;
	border-bottom-width: medium;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #4E5869;
	border-bottom-color: #4E5869;
}
.acordeon input{
	display: none;
}
.acordeon .texto{
	margin-top: -1px;
	overflow: hidden;
	height: 0px;
	background-color: rgba(255,255,255,0.8);
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	-ms-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	border-radius: 25px;
}
.acordeon .texto p{
	color: black;
	font-size: 1rem;
	padding: 20px;
}
.acordeon input[type="radio"]:checked ~ .texto{
	height: 100%;
	padding-right: 11px;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
}

/* Diseño tableta: de 481 px a 768 px. Hereda estilos de: Diseño móvil. */

@media only screen and (min-width: 481px) {

.acordeon{
}
.acordeon label{
	font-size: 1.4rem;
}
.acordeon label:hover{
}
.acordeon input[type="radio"]:checked + label,
.acordeon input[type="radio"]:checked + label:hover{
}
.acordeon input{
}
.acordeon .texto{
}
.acordeon .texto p {
	font-size: 1.1rem;
}
.acordeon input[type="radio"]:checked ~ .texto{
}
}

/* Diseño escritorio: de 769 px hasta un máximo de 1232 px.  Hereda estilos de: Diseño móvil y Diseño tableta. */

@media only screen and (min-width: 769px) {

.acordeon{
}
.acordeon label{
	font-size: 1.5rem;
}
.acordeon label:hover{
}
.acordeon input[type="radio"]:checked + label,
.acordeon input[type="radio"]:checked + label:hover{
}
.acordeon input{
}
.acordeon .texto{
}
.acordeon .texto p {
	font-size: 1.2rem;
}
.acordeon input[type="radio"]:checked ~ .texto{
}