/*------------------------------------*\
-------- DEMO Code: accordion
\*------------------------------------*/
/*----- Accordion -----*/
.accordion, .accordion * {
	-webkit-box-sizing:border-box; 
	-moz-box-sizing:border-box; 
	box-sizing:border-box;
	
}
.accordion-section {margin: 0 0 10px; width:100%; height:100%; overflow:hidden; border-bottom:1px solid #e2e2e2;}
.accordion {
	overflow:hidden;
	width:100%;
	margin:50px auto;
	padding:10px;
}

.box-acor {-webkit-box-shadow: 2px 2px 10px 1px rgba(239, 199, 12,0.24);
-moz-box-shadow: 2px 2px 10px 1px rgba(239, 199, 12,0.24);
box-shadow: 2px 2px 10px 1px rgba(239, 199, 12,0.24); }


/*----- Section Titles -----*/
.cont-tac {width:100%;  overflow:hidden;}
.accordion-section-title {
	width:100%;
	padding:15px;
	display:inline-block;
	background:url(../img/flecha1.png) no-repeat scroll 95% center;
	transition:all linear 0.15s;
	/* Type */
	color:#606060;
	text-decoration:none;
}

 .accordion-section-title:hover {
	color:#EFC70C;
	/* Type */
	text-decoration:none;
}
.accordion-section-title.active {background:url(../img/flecha2.png) no-repeat scroll 95% center;
	color:#EFC70C;
	/* Type */
	text-decoration:none;}

.accordion-section:last-child .accordion-section-title {
	
}

.accordion-section h1 {
    color: #EFC70C;
    font-size: 1.7em !important;
    font-weight: 700;
    margin: 0;
    padding:0 0 0 90px !important;
}
.subtitle-ac {font-size: .7em !important; font-weight: 300;  margin: 0;}

/*----- Section Content -----*/
.accordion-section-content {
	padding:15px;
	display:none;
}



@media (max-width: 480px) { 
.accordion-section-title { padding: 5px 10px;}
.accordion-section h1 {font-size: 1.1em !important; padding:20px 0 0 80px !important;}
.subtitle-ac {font-size: .8em !important; font-weight: 300;  margin: 0;}
.accordion-section-title { background: rgba(0, 0, 0, 0) url("../img/flecha1.png") no-repeat scroll 100% 25%;}
.accordion-section-title.active {background:url(../img/flecha2.png) no-repeat scroll 100% 25%;}
}