
.bwa-faq .bwa-faq-question:hover,
.bwa-faq .bwa-faq-question:focus,
.bwa-faq-item.is-open .bwa-faq-question {
	background: rgba(255, 255, 255, 0.50);
	color: #000;
}

/*icon*/

.bwa-faq-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #8499B7
}

.bwa-faq-icon svg {
	width: 1rem;
	height: 1rem;
	fill: currentColor;
	transition: transform 0.3s ease;
}

.bwa-faq-item.is-open .bwa-faq-icon svg {
	transform: rotate(180deg);
}

/*
--------------------------------------
Answer
--------------------------------------
*/

.bwa-faq-answer {
	overflow: hidden;
	height: 0;
	opacity: 0;
	padding: 0 1rem;
	border-left: 3px solid var(--e-global-color-primary);
	background: #ffffff;
	border-radius: 0 4px 4px 4px;
	transition: height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

.bwa-faq-item.is-open .bwa-faq-answer {
	opacity: 1;
	padding: 0.75rem 1rem;
}
/*
--------------------------------------
Container
--------------------------------------
*/

.bwa-faq {
	display: grid;
	gap: 1rem;
}

/*
--------------------------------------
Question
--------------------------------------
*/

.bwa-faq .bwa-faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.75rem;
	font-size: calc(17px + (15 - 17) * ((100vw - 320px) / (1920 - 320)));
	font-weight: 600;
	background: rgba(255, 255, 255, 0.70);
	color: var(--e-global-color-text);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border: none;
	border-radius: 5px;
	transition: all 0.35s ease;
	white-space: normal;
	text-align: left;
	width: 100%;
	padding: 1.4rem 1rem;
}

