
.faq {
	margin-top: 100px!important;
}

@media screen and (max-width: 920px) {
	.faq {
		margin-top: 80px!important;
	}
}

@media screen and (max-width: 576px) {
	.faq {
		margin-top: 20px!important;
	}
}

.qa-block {
	/*max-width: 600px;*/
	margin: 0 auto 20px;
	border: 1px solid #ccc;
	border-radius: 8px;
	overflow: hidden;
	background-color: #fff;
}

.question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 35px 20px;
	cursor: pointer;
	background-color: #f3f3f3;
	color: inherit;
	font-weight: bold;
	font-size: 19px;
	transition: background-color 0.3s;
}

/*.question:hover {
	background-color: #0097c2; !* чуть темнее при наведении *!
}*/

.toggle-icon {
	font-size: 24px;
	line-height: 1;
	user-select: none;
}

.answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
	padding: 0 20px;
	opacity: 0;
}

.answer.open {
	max-height: 3000px; /* достаточно большое значение для раскрытия */
	padding: 15px 20px;
	opacity: 1;
	line-height: 1.3;
}
