*{
	box-sizing: border-box;
	-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{
	width: 100%;
}

.acordeon input{
	display: none;
}

.acordeon__titulo{
    display: block;
    padding: 8px;
    color: black;
    font-size: 17px;
    cursor: pointer;
}

.acordeon__titulo i{
	/*float: right; */
    /* font-size: 30px; */
    top: 3px;
    position: relative;
}

.acordeon__titulo:hover{
	font-weight:bold;
}

.acordeon__contenido{
	height: 0;
	overflow: hidden;
	margin: 0;
	border-bottom: 1px solid #fff;
}
.acordeon__contenido a{
	text-decoration:none;
}
.acordeon input:checked ~ .acordeon__titulo{
	font-weight:bold;
}
.acordeon input:checked ~ .acordeon__contenido{
	    height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
	/*border-top:1px solid gainsboro; 
    border-left: 1px solid gainsboro; 
    border-right: 1px solid gainsboro;
    border-bottom: 1px solid gainsboro;*/
    padding-right: 10px;
    padding-left: 10px;
    animation: fadeIn 2s linear;
    width: 100%;
}

.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%;
}
@media screen and (max-width: 600px){
	.lista__items{
		position: relative;
		float: left;
		width: 100%;
	}
}