@charset "utf-8";
/* CSS Document */

.accordion {
	text-align: left;
	overflow: auto;
}
.accordion .set {
	width: 100%;
	float: left;
	margin: 0 0 0;
}
.accordion .set > h3 {
	width: 100%;
	float: left;
	border-bottom: 1px solid #cab082;
	display: block;
	cursor: pointer;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	transition: all 0.2s linear;
	margin: 0 0 0;
	padding: 18px 4% 18px 0;
	position: relative;
}

.accordion .set > h3:before {
	content: "";
	width: 18px;
	height: 18px;
	float: right;
	background: url(../images/plus-minus-white-plain-icon.svg) no-repeat top center / 100%;
	transform: translateY(-50%);
	transition: all 0.25s ease-out 0s;
	margin: 0 0 0;
	position: absolute;
	top: 50%;
	right: 0;
}

.accordion .set > h3.active:before {
	background: url(../images/plus-minus-white-plain-icon.svg) no-repeat bottom center / 100%;
}
.accordion .set > h3.active {
	color: #cab082;
}
.accordion .set > .content {
	width: 100%;
	float: left;
	display: none;
	border-bottom: 1px solid rgba(255,255,255,0.6);
	margin: 0 0 0;
	padding: 20px 0 10px;
}
.faqs-wrapp .accordion { 
	width: 47.4%; 
	margin: 0 0 0;
}
.faqs-wrapp .accordion:nth-child(2n) { 
	float: right;
}

.fees-col1 .accordion .set > h3 { padding:18px 4% 13px 0;}

/*Smartphone css*/
@media screen and (max-width: 480px) {
.accordion { text-align: center;}
.accordion .set > h3 { padding: 17px 9% 17px 0;}
}

@media screen and (min-width:481px) and (max-width:600px) {
.accordion { text-align: center;}
.accordion .set > h3 { padding: 17px 9% 17px 0;}
}

@media screen and (min-width:601px) and (max-width:767px) {
.accordion { text-align: center;}
.accordion .set > h3 { padding: 17px 9% 17px 0;}
}

@media screen and (min-width:768px) and (max-width:900px) {

}

@media screen and (min-width:901px) and (max-width:1024px) {

}

@media screen and (min-width:1025px) and (max-width:1240px) {

}