/* CSS Document */
.feature-faq-group .q {
	display:flex;
	align-items: center;
	flex-wrap:wrap;
	justify-content: space-between;
	width:100%;
}
.feature-faq-group .q span {
	flex:1 0 auto;
}
.feature-faq-group .q .fa-square-plus {
	display:none;
	flex:0 0 auto;
}
.feature-faq-group.activated .q {
	cursor:pointer;
}
.feature-faq-group.activated .q .fa-square-plus {
	display:inline-block;
}
.feature-faq-group.activated .a {
	display:none;
}
.feature-faq-group.activated .faq.expanded .a {
	display:block;
}
.feature-faq-group.activated .faq.expanded .q .fa-square-plus:before {
	content:'\f146';
}
@media only screen and (max-width: 960px) {
	.feature-faq-group .q {
		display:block;
	}
	.feature-faq-group.activated .q .fa-square-plus {
		display:block;
		margin-left:0 !important;
		margin-top:.5rem;
	}
}