/*
Responsive Accordion
Author: marcoarib
License: http://codecanyon.net/licenses/standard
*/

/* Accordion
=================================*/
.accordion *{
	/*font-family: 'Open Sans', sans-serif;*/
	box-sizing: border-box;
	outline: 0;
}
.accordion{
	background-color: #ffffff;
	border: solid 1px #e9e9e9;
	margin-bottom: 30px;
}

/* Header
=================================*/
.accordion-header{
	min-height: 40px;
	padding: 15px 35px 15px 15px;
	line-height: 20px;
	font-size: 15px;
	font-weight: 700;
	color: #222222;
	border-bottom: solid 1px #e9e9e9;
	cursor: pointer;
	overflow: hidden;
	position: relative;
	background-color: #fdfdfd;
	-webkit-tap-highlight-color: transparent;
	transition: background .15s linear;
	text-align: left;
	-webkit-transition: all 0.15s ease-in-out;                  
    -moz-transition: all 0.15s ease-in-out;                 
    -o-transition: all 0.15s ease-in-out;   
    -ms-transition: all 0.15s ease-in-out;          
    transition: all 0.15s ease-in-out;
}
.accordion-item:last-child .accordion-header{
	border-bottom: none;
}
.accordion-header:hover,
.accordion-item.active .accordion-header{
	background-color: #f7f8f9;
	/*background-color: #000;
	color: #fff;*/
}
/* Header icons (Font Awesome) */
.accordion-header i{
	width: 26px;
	text-align: left;
	font-size: 16px;
}
/* Header arrows */
.accordion-header .accordion-item-arrow{
	position: absolute;
	right: 15px;
	height: 20px;
	margin-top: -10px;
	top: 50%;
}
.accordion-header .accordion-item-arrow:before{
	content: "\f107";
	font-family: 'FontAwesome';
	font-size: 18px;
	float: right;
	transition: all .15s linear;
}
.accordion-item.active .accordion-header .accordion-item-arrow:before{
	-ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg); 
    transform: rotate(180deg);
}

/* Content
=================================*/
.accordion-content{
	padding: 25px 25px 15px 25px;
	display: none;
	border-bottom: solid 1px #e9e9e9;
	text-align: left;
	/*color: #f49600;*/
}
.accordion-item:last-child .accordion-content{
	border-bottom: none;
	border-top: solid 1px #e9e9e9;
}

/* Color Schemes
=================================*/
/* blue */
.testimonials.accordion,
.testimonials  .accordion-header,
.testimonials  .accordion-content{
	border-color: #32CDFB;
	border: none;
}
.testimonials .accordion-header:hover,
.testimonials .accordion-item.active .accordion-header{
	background-color: #f7f8f9;
	color: #222;
}
.testimonials .accordion-item {
	margin-bottom: 20px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	border: solid 1px #ccc;
}
.testimonials  .accordion-header {
	text-align:left;
	color: #f49600;
}


/* green */
.green.accordion,
.green  .accordion-header,
.green  .accordion-content{
	border-color: #37DB67;
}
.green .accordion-header:hover,
.green .accordion-item.active .accordion-header{
	background-color: #37DB67;
	color: #fff;
}

/* red */
.red.accordion,
.red  .accordion-header,
.red  .accordion-content{
	border-color: #FC4337;
}
.red .accordion-header:hover,
.red .accordion-item.active .accordion-header{
	background-color: #FC4337;
	color: #fff;
}

/* orange */
.orange.accordion,
.orange  .accordion-header,
.orange  .accordion-content{
	border-color: #FFA400;
}
.orange .accordion-header:hover,
.orange .accordion-item.active .accordion-header{
	background-color: #FFA400;
	color: #fff;
}

/* yellow */
.yellow.accordion,
.yellow  .accordion-header,
.yellow  .accordion-content{
	border-color: #FFCE54;
}
.yellow .accordion-header:hover,
.yellow .accordion-item.active .accordion-header{
	background-color: #FFCE54;
	color: #fff;
}

/* purple */
.purple.accordion,
.purple  .accordion-header,
.purple  .accordion-content{
	border-color: #AC92EC;
}
.purple .accordion-header:hover,
.purple .accordion-item.active .accordion-header{
	background-color: #AC92EC;
	color: #fff;
}