h2.wf-faq-header {
	font-size: 25px;
}

.wf-faqs-question {
	background-color: transparent !important;
	font-weight: 700;
    text-transform: capitalize;	
	color: #000 !important;
	cursor: pointer;
	padding: 20px 0;
	font-size: 1.2rem;
	width: 100%;
	border: none;
	border-radius: 0 !important;
	border-bottom: 2px solid #f1962e;
	text-align: left;
	outline: none;
	transition: 0.4s;
}

.wf-faqs-question:focus {
	outline: none;
}

.wf-faqs-question.active, .wf-faqs-question:hover {
	background-color: #ccc;
	color: #000 !important;
}

.wf-faqs-question:after {
	content: '\002B';
    color: #000;
    float: right;
    margin-left: 5px;
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
}

.wf-faqs-question.active:after {
	content: "\2212";
}

.wf-faqs-answer {
	background-color: white;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
}

.wf-faqs-answer-inner {
	padding: 20px 0;
}

.wf-faqs-answer-inner :last-child {
	margin-bottom: 0;
}