.faq-left, .faq-right {
	width: 50%;
	float: left;
	box-sizing: border-box;
	padding: 10px;
}

.faq {
	background: #fff;
	border: 1px solid rgba(0,0,0,.125);
}

.faq .question {
	padding: 10px;
	border-bottom: 1px solid rgba(0,0,0,.125);
	cursor: pointer;
	position: relative;
}

.faq .question i.fas {
	position: absolute;
	top: 35%;
	right: 4px;
}

.d-none {
	display: none;
}

.faq .answer {
	padding: 10px;
}

@media only screen and (max-width: 768px) {
	.faq-left, .faq-right {
		width: 100%;
		float: none;
	}
	.faq-left {
		padding-bottom: 0;
	}
	.faq-right {
		padding-top: 0;
	}
}