/*********************************
7. Elements Content
*********************************/

.elements_content
{
	padding-top: 120px;
	padding-bottom: 120px;
}
.elements_section
{
	margin-bottom: 120px;
}
.elements_section:last-child
{
	margin-bottom: 0px;
}


/*********************************
7.3 Elements - Accordions
*********************************/

.elements_accordions
{
	margin-top: 0px;
}
.accordion_container
{
	margin-bottom: 15px;
}
.accordion
{
	/*font-family: 'Open Sans', sans-serif;*/
	text-decoration: none;
	padding: 10px;
	font-weight: 600;
	font-size: 16px;
	color: #1b1e24;
	background-color: purple;
	/*background: #FFFFFF;*/
	border-radius: 1px;
	border: 1px solid #1557ff;
	

	display: block;
	position: relative;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

	/*height: 60px;*/
	width: 100%;
	background: #d6dded;
	/*padding-left: 30px;*/
	cursor: pointer;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.accordion.active
{
	background: #e4e7ef;
}
.accordion:active
{
	background: #e4e7ef !important; 
}
.accordion::after
{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	right: 0;
	width: 62px;
	height: 100%;
	content: '+';
	border: solid 1px #1557ff;
	background: #1557ff;
	font-size: 20px;
	color: #ffbb14;
	font-weight: 800;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.accordion:hover
{
	background: #e4e7ef;
}
.accordion:hover::after
{
	background: #e4e7ef;
	color: #ffbb14;
}
.accordion_panel
{
	padding-left: 30px;
	padding-right: 30px;
	max-height: 0;
	overflow: hidden;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}
.accordion_panel p
{
	padding-top: 15px;
}

