.elfqs-faq-schema-widget {
	width: 100%;
}

.elfqs-heading {
	margin: 0 0 18px;
}

.elfqs-accordion {
	display: grid;
	gap: 12px;
}

.elfqs-item {
	overflow: hidden;
	background: #ffffff;
	border: 1px solid #d8dde6;
	border-radius: 8px;
}

.elfqs-summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	width: 100%;
	padding: 18px 20px;
	cursor: pointer;
	list-style: none;
}

.elfqs-summary::-webkit-details-marker {
	display: none;
}

.elfqs-question {
	font-weight: 650;
	line-height: 1.35;
}

.elfqs-icon {
	position: relative;
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
}

.elfqs-icon::before,
.elfqs-icon::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 14px;
	height: 2px;
	background: currentColor;
	border-radius: 2px;
	content: "";
	transform: translate(-50%, -50%);
}

.elfqs-icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
	transition: transform 160ms ease, opacity 160ms ease;
}

.elfqs-item[open] .elfqs-icon::after {
	opacity: 0;
	transform: translate(-50%, -50%) rotate(0deg);
}

.elfqs-answer {
	padding: 0 20px 20px;
	line-height: 1.65;
}

.elfqs-answer > :first-child {
	margin-top: 0;
}

.elfqs-answer > :last-child {
	margin-bottom: 0;
}

