*{
	box-sizing: border-box;
	
}

.acordeon{
	width: 100%;

}

.acordeon input{
	display: none;
}

.acordeon__titulo{
	display: block;
	padding: 15px;
	background: #ff7900;
	color: #fff;
	font-size: 17px;
	cursor: pointer;
	text-transform: uppercase;
	border-bottom: 1px solid #fff;
}
.last{
	border-bottom:none;
}
.dere{
	float: right;
	font-size: 30px !important;
}

.acordeon__titulo:hover{
	background: #000;
}

.acordeon__contenido{
	height: 0;
	overflow: hidden;
	margin: 0;
}

.acordeon input:checked ~ .acordeon__contenido{
	height: auto;
    animation: fadeIn 2s linear;
    background: #df6a00;
    color: white;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 18px;
	-webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

.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';
	}
}
