/*------------------------------------*\
-------- DEMO Code: accordion
\*------------------------------------*/
/*----- Accordion -----*/
.accordion, .accordion * {
	-webkit-box-sizing:border-box; 
	-moz-box-sizing:border-box; 
	box-sizing:border-box;
}

.accordion {
	overflow:hidden;
	margin-top:20px;
}

/*----- Section Titles -----*/
.accordion-section-title {
	display: flex !important;
	width:100%;
	padding:14px 15px;
	display:inline-block;
	font-size:14px;
	color:white;
	background: #005aa6;
	border-radius:6px;
	font-weight:bold;
	border-radius: 6px;
	margin-bottom: 10px;
	font-weight: normal;
}

.accordion-section-title.active, .accordion-section-title:hover {
	/* Type */
	text-decoration:none;
	background: #ccc;
	color:#000;
}

.accordion-section:last-child .accordion-section-title {
	border-bottom:none;
}

/*----- Section Content -----*/
.accordion-section-content {
	padding:15px;
	display:none;
}