[data-accordion] [data-content] {
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.3s ease;
}
[data-control],
[data-content] > * {
	padding: 5px;
}
[data-accordion] [data-control] {
	position: relative;
}
[data-accordion] > [data-control]:after {
	content: "";
	position: absolute;
	right: 10px;
	top: 0;
	bottom: 0;
	width: 24px;
	background: url('../images/down.png') center center no-repeat;
	background-size: 50%;
	transition: transform 0.3s ease;
}
[data-accordion].open > [data-control]:after {
	transform: rotate(-180deg);
}

.faq-accordion {
	line-height: 1.7;
}
.faq-accordion .faq-main {
	border: 1px solid #d9d9d9;
	margin-bottom: 15px;
	background: #f4f4f4;
	transition: all 0.5s ease 0s;
}
.faq-accordion .faq-main.open {
	background: #fff;
}
.faq-accordion .faq-main.open h4 {
	color: #333;
}
.faq-title {
	cursor: pointer;
	padding: 15px 40px 15px 15px;
	user-select: none;
	display: flex;
	align-items: center;
	gap: 12px;
}
.faq-title h4 {
	flex: 1 1 auto;
}
.faq-title__badge,
.faq-content__badge {
	width: 32px;
	height: 32px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 16px;
	flex: 0 0 32px;
}
.faq-title__badge {
	background: #333;
	color: #fff;
display:none;
}
.faq-content {
	padding: 0 15px 15px;
}
.faq-content__inner {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}
.faq-content__badge {
	background: #b08a4a;
	color: #fff;
	margin-top: 2px;
}
.faq-content__body {
	flex: 1 1 auto;
	min-width: 0;
}
.faq-content__body > *:first-child {
	margin-top: 0;
}
.faq-content__body > *:last-child {
	margin-bottom: 0;
}
.faq-thumbnail {
	margin: 0 0 12px;
}
.faq-accordion--empty {
	border: 1px solid #d9d9d9;
	padding: 16px;
	background: #f8f8f8;
}
