.csfy-faq {
	margin: 32px 0;
	max-width: 100%;
}

.csfy-faq__item {
	border-top: 1px solid rgba(25, 31, 45, 0.14);
	color: inherit;
}

.csfy-faq__item:last-child {
	border-bottom: 1px solid rgba(25, 31, 45, 0.14);
}

.csfy-faq__question {
	align-items: center;
	cursor: pointer;
	display: flex;
	font-size: 1.02em;
	font-weight: 700;
	gap: 16px;
	justify-content: space-between;
	line-height: 1.35;
	list-style: none;
	padding: 20px 0;
}

.csfy-faq__question::-webkit-details-marker {
	display: none;
}

.csfy-faq__question::after {
	align-items: center;
	border: 1px solid currentColor;
	border-radius: 50%;
	content: "+";
	display: inline-flex;
	flex: 0 0 28px;
	font-size: 18px;
	font-weight: 400;
	height: 28px;
	justify-content: center;
	line-height: 1;
	opacity: 0.58;
	width: 28px;
}

.csfy-faq__item[open] .csfy-faq__question::after {
	content: "-";
}

.csfy-faq__answer {
	line-height: 1.7;
	padding: 0 44px 22px 0;
}

.csfy-faq__answer > :first-child {
	margin-top: 0;
}

.csfy-faq__answer > :last-child {
	margin-bottom: 0;
}

@media (max-width: 640px) {
	.csfy-faq {
		margin: 24px 0;
	}

	.csfy-faq__question {
		font-size: 1em;
		padding: 18px 0;
	}

	.csfy-faq__answer {
		padding-right: 0;
	}
}

