#rank-math-faq .rank-math-list-item {
	border-bottom: 1px solid var(--contrast-3);
}
.rank-math-question {
	cursor: pointer;
	position: relative;
	display: block;
	padding-right: 1em;
	margin-right: 1em;
	font-size: 1.2rem;
	padding-top: 1.5em;
	margin-bottom: 0;
	padding-bottom: 1.5em;
}
.rank-math-question:after {
    position: absolute;
    right: 5px;
    top: 1.5em;
    content: "\2715";
    transform: rotate(-45deg);
    transition: all 150ms ease-in-out;
    font-weight: 300;
}
.rank-math-question.collapse:after {
    transform: rotate(0deg);
}
.rank-math-question:hover {
    opacity: 0.8;
}
.rank-math-answer {
	padding-bottom: 1.5em;
}