.accordion_wrapper .accordion_navigation_wrapper:not(:first-of-type) {
    margin-top: 80px;
}
.accordion_section_title {
	margin-bottom:45px;
}
.accordion_wrapper .section__label {
	border-bottom: 1px solid var(--pr-500);
	padding:15px 0;
	cursor: pointer;
	text-transform:none;
}
.accordion_navigation_wrapper label.section__label i[class^="icon-"]{
  margin-right: 20px;
}
.accordion_wrapper .section__input{
	height:0;
	width:0;
	opacity:0;
}
.accordion_wrapper .section__input:focus + label {
	outline:2px dotted;
}
.accordion_wrapper .section__content {
    padding: 0px 70px 20px 40px;	
	border-bottom: 1px solid var(--pr-500);
}
.accordion_wrapper .section__content * {
	font-size:1.6rem;
	line-height:2.6rem;
}
.section__input:checked+.section__label+.section__content {
    display: block;
}
.section__input:checked+.section__label {
    border-bottom: 0;
}
.section__input:checked+.section__label i {
	transform:rotate(270deg);
	--webkit-transform:rotate(270deg);
	-moz-transform:rotate(270deg);
	-o-transform:rotate(270deg);
}
@media screen and (max-width: 991.98px){
	.accordion_wrapper .accordion_navigation_wrapper:not(:first-of-type){
		margin-top: 60px;
	}
}
@media screen and (max-width: 767.98px){
	.accordion_wrapper .accordion_navigation_wrapper:not(:first-of-type){
		margin-top: 40px;
	}
}