.faqs-container{
	position: relative;
	clear: both;
}
.faq-launcher{
	cursor: pointer;
}
.faq-launcher > .faq-icon{
	width: 1.75em;
	height: 1.75em;
	margin-left: -2.5em;
	margin-right: 0.25em;
	margin-bottom: -1.25em;
	float: left;
	transform-origin: 50% 50%;
	transition: transform 0.5s ease-out;
}
.faq-launcher.active > .faq-icon{
	transform: rotate(90deg);
}
.faq-launcher h1,
.faq-launcher h2,
.faq-launcher h3,
.faq-launcher h4,
.faq-launcher h5,
.faq-launcher h6{
	width: 98%;
	margin-bottom: 0;
}
.faq-content-container{
	border-collapse: collapse;
	padding-left: 25px;
	overflow: hidden;
	opacity: 0.5;
	max-height: 0;
	transition:0.3s all;
}
.faq-content-container.expanded {
	margin-top:10px;
	margin-bottom:10px;
}
.faq-content-container.expanded{
	opacity: 1;
	max-height: 3000px;
}
.faq-content-container > p:first-of-type{
	margin-top: 0;
}
a.faq-launcher > svg {
	float:left;
}
a.faq-launcher > h4 {
    margin-top: 0;
    margin-left: 25px;
}