.roc-faq-accordion {
	width: 100%;
}

.roc-faq-item {
	border: 1px solid #e1e1e1;
}

.roc-faq-question-wrap {
	margin: 0;
}

.roc-faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font: inherit;
	padding: 16px 20px;
}

.roc-faq-icon {
	display: none;
	flex: none;
	line-height: 1;
}

.roc-faq-icon-inactive {
	display: inline-flex;
}

.roc-faq-item.is-active .roc-faq-icon-inactive {
	display: none;
}

.roc-faq-item.is-active .roc-faq-icon-active {
	display: inline-flex;
}

.roc-faq-answer {
	overflow: hidden;
}

.roc-faq-answer-inner {
	padding: 0 20px 16px;
	animation: roc-faq-fade-in 0.2s ease;
}

@keyframes roc-faq-fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
