.squarex-service-faq {
	display: grid;
	gap: 12px;
}

.squarex-service-faq__item {
	margin: 0;
	overflow: hidden;
}

.squarex-service-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 56px;
	padding: 16px 20px;
	cursor: pointer;
	list-style: none;
}

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

.squarex-service-faq__question::marker {
	display: none;
	content: '';
}

.squarex-service-faq__icon {
	box-sizing: border-box;
	display: inline-block;
	width: 10px;
	height: 10px;
	flex: 0 0 auto;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translate(-2px, -2px);
	transition: transform 180ms ease;
}

.squarex-service-faq__item[open] .squarex-service-faq__icon {
	transform: rotate(225deg) translate(-2px, -2px);
}

.squarex-service-faq__answer {
	padding: 0 20px 20px;
}

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

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