.bfaq-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 24px;
}

.bfaq-tag {
	border: 1px solid #ddd;
	background: #fff;
	border-radius: 20px;
	padding: 6px 16px;
	font-size: 14px;
	cursor: pointer;
	transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}

.bfaq-tag:hover {
	border-color: #999;
}

.bfaq-tag-active {
	background: #1d2327;
	color: #fff;
	border-color: #1d2327;
}

.bfaq-container {
	position: relative;
}

.bfaq-container.bfaq-loading .bfaq-list-wrapper {
	opacity: .4;
	pointer-events: none;
	transition: opacity .15s ease;
}

.bfaq-search {
	margin-bottom: 20px;
}

.bfaq-search-input {
	width: 100%;
	max-width: 420px;
	padding: 10px 14px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 15px;
	box-sizing: border-box;
}

.bfaq-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.bfaq-item {
	border-bottom: 1px solid #e5e5e5;
}

.bfaq-question {
	width: 100%;
	text-align: left;
	background: none;
	border: none;
	padding: 16px 0;
	font-size: 18px !important;
	font-weight: 400 !important;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}

.bfaq-question-label {
	flex: 1;
}

.bfaq-icon {
	flex-shrink: 0;
	width: 9px;
	height: 9px;
	border-right: 2px solid #444;
	border-bottom: 2px solid #444;
	transform: rotate(45deg);
	transition: transform .2s ease;
}

.bfaq-question[aria-expanded="true"] .bfaq-icon {
	transform: rotate(-135deg);
}

.bfaq-answer {
	padding: 0 0 18px;
	line-height: 1.6;
}

.bfaq-answer-loading {
	color: #777;
	font-style: italic;
	margin: 0;
}

.bfaq-no-results,
.bfaq-error {
	color: #777;
	padding: 20px 0;
}
