.yoast-faq-accordion .schema-faq-question {
	margin: 0;
	padding: 17px 56px 17px 0;
	line-height: 1.4;
	cursor: pointer;
	position: relative;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	display: block;
}

/**
 Show + / - icons on opening / closing a question.
 */
.yoast-faq-accordion .schema-faq-question:after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 0;
    width: 56px;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-weight: bold;
    color: #000;
    font-size: 20px;
}
.yoast-faq-accordion .schema-faq-question.faq-q-open:after {
    content: "-";
}

.yoast-faq-accordion p.schema-faq-answer {
	margin: 0;
	background-color: #fff;
	line-height: 1.6;
	display: none;
}
