@charset "utf-8";
/* CSS Document */

/*
FAQ Page
--------*/

.faq_main_content h6 {
	margin-bottom: 0rem;
	border: 1px solid;
	border-color: #eee;
	position: relative;
}

.faq_main_content h6 + div {
	height: 0px;
	padding: 0px;
	overflow: hidden;
	display: block!important;
	-webkit-transform: translateZ(0);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	margin-bottom: 10px;
	border: 0px solid #cdcdcd;
}

.faq_main_content h6 + div.open {
	height: 133px;
	border: 1px solid;
	border-top: 0;
	border-color: #eee;
}

.faq_main_content h6 a {
	display: block;
	color: #6a6a6a;
	text-decoration: none;
	font-weight: normal;
	overflow: hidden;
}

.faq_main_content h6 span {
	font-weight: 600;
}

.faq_main_content h6 a i {
	width: 50px;
	height: 50px;
	line-height: 50px;
	background-color: #eeeeee;
	text-align: center;
	color: #444444;
	margin-right: 15px;
	font-size: 1.5rem;
}

.faq_main_content h6.open a {
	color: #444;
}

.faq_main_content h6.open a i {
	color: #fff;
	background-color: #444444;
}


.faq_main_content h6.open a i {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.faq_main_content .content {
	padding: 25px;
	color: #4a4a4a;
}

/* scrollup */

.scrollup {
	width: 60px;
	height: 60px;
	border-radius: 15px;
	opacity: .4;
	position: fixed;
	bottom: 60px;
	right: 25px;
	color: #fff;
	cursor: pointer;
	background-color: #000;
	z-index: 1000;
	transition: opacity .5s, background-color .5s;
	-moz-transition: opacity .5s, background-color .5s;
	-webkit-transition: opacity .5s, background-color .5s;
}

.scrollup:hover {
	background: #ff6863;
	opacity: 1;
}

.scrollup i {
	font-size: 22px; /* 13px */
	position: absolute;
	opacity: 1;
	color: #fff;
	left: 50%;
	top: 50%;
	margin-top: -12px; /* -7 */
	margin-left: -11px; /* -6 */
	text-decoration: none;

}

