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

/* Accordion
=================================*/
.accordion *{

	box-sizing: border-box;
	outline: 0;
}
.accordion{
	background-color: ;
	/*border-top: solid 1px hsla(0,0%,100%,0.50);*/
}

/* Header
=================================*/
.accordion-header{
	min-height: 40px;
	padding: 30px 0px 30px 0px;
	/*line-height: 20px;*/
	/*font-size: 24px;*/
	/*font-weight: 600;*/
	color: var(--medium-color);
	/*border-bottom: solid 1px #e9e9e9;*/
	border-top: solid 1px var(--border-color);
	cursor: pointer;
	overflow: hidden;
	position: relative;
	background-color: ;
	-webkit-tap-highlight-color: transparent;
	transition: background .2s linear;
}
.accordion-item:last-child .accordion-header{
	border-bottom: none;
}
.accordion-header:hover,
.accordion-item.active .accordion-header{
	background-color: ;
	color: var(--font-color);
}
/* 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 .2s 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-bottom: 100px;
	display: none;
	/*border-bottom: solid 1px #e9e9e9;*/
	
	color: var(--font-color);
}
.accordion-item:last-child .accordion-content{
	border-bottom: none;
	/*border-top: solid 1px #e9e9e9;*/
}
















