*{
	box-sizing: border-box;
}

.acordeon{
	width: 100%;
}

.acordeon input{
	display: none;
}

.acordeon__titulo{
	display: block;
	padding: 15px;
	background: #c21c2e;
	color: #fff;
	font-size: 20px;
	cursor: pointer;
	font-family: 'Bitter', serif;
	text-transform: uppercase;
}

.acordeon__titulo i{
	float: right;
	font-size: 30px;
}

.acordeon__titulo:hover{
	background: rgba(220,20,60,0.8);
}

.acordeon__contenido{
	height: 0;
	overflow: hidden;
	margin: 0;
	border-bottom: 1px solid #fff;
}

.acordeon input:checked ~ .acordeon__contenido{
	height: auto;
	margin: 15px 0;
	animation: fadeIn 2s linear;
}

.acordeon input:checked ~ .acordeon__titulo i{
	-ms-transform: rotate(180deg); /* IE 9 */
    -webkit-transform: rotate(180deg); /* Chrome, Safari, Opera */
    transform: rotate(180deg);
}

.lista__items{
	position: relative;
	float: left;
	width: 50%;
	font-family: 'Slabo 27px';
}
@media screen and (max-width: 600px){
	.lista__items{
		position: relative;
		float: left;
		width: 100%;
		font-family: 'Slabo 27px';
	}
}
