@charset "utf-8";

.faq-category .div-tab { margin-bottom:15px; }
.faq-category .dropdown { margin-bottom:15px; }
.faq-category .active a, .list-category .selected a { color:crimson; font-weight:bold !important; }
.faq-box { border:1px solid #ddd; background:#fafafa; padding:20px 15px 3px; margin-bottom:15px; }
.faq-img img, .faq-html img, .faq-content img { width:auto; max-width:100%; border:0; }
.faq-content .panel-body p { padding:0; margin:0; }
.faq-none { padding:50px 0; }

.faq_box .faq_category {
	margin-bottom: 20px;
}
.faq-custom-select {
	position: relative;
	width: 100%;
	font-size: 18px;
	user-select: none;
}
.faq-select-selected {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	background: #fff;
	border: 1px solid rgb(235,235,235);
	border-radius: 6px;
	cursor: pointer;
	transition: border-color 0.2s;
}
.faq-select-selected:hover,
.faq-custom-select.is-open .faq-select-selected {
	border-color: #333;
}
.faq-custom-select.is-open .faq-select-selected {
	border-bottom-left-radius: unset;
	border-bottom-right-radius: unset;
	border-bottom-color: transparent;
}
.faq-select-arrow {
	width: 8px;
	height: 8px;
	border-right: 2px solid #555;
	border-bottom: 2px solid #555;
	transform: rotate(45deg);
	transition: transform 0.2s;
	margin-top: -4px;
	flex-shrink: 0;
}
.faq-custom-select.is-open .faq-select-arrow {
	transform: rotate(-135deg);
	margin-top: 4px;
}
.faq-select-options {
	display: none;
	position: absolute;
	top: calc(100% - 2px);
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid #333;
	border-radius: 6px;
	border-top-left-radius: unset;
	border-top-right-radius: unset;
	border-top-color: transparent;
	z-index: 100;
	list-style: none;
	margin: 0;
	padding: 6px 0;
	overflow-y: auto;
    flex-direction: column;
    align-items: flex-start;
}
.faq-custom-select.is-open .faq-select-options {
	display: flex;
}
.faq_box .faq_category ul li.faq-select-option {
    width: 100%;
    text-align: left;
    padding: 10px 20px;
	cursor: pointer;
	transition: background 0.15s;
}
.faq-select-option:hover {
	background: #f5f5f5;
}
.faq-select-option.is-active {
	font-weight: bold;
	color: #fbae25;
}


@media (max-width: 991px) {
    .faq_box .faq_category {
		margin-bottom: 10px;
	}
	.faq-custom-select {
		font-size: 14px;
	}
	.faq-select-selected {
		padding: 10px 15px;
		border-radius: 3px;
	}
	.faq-select-options {
		border-radius: 3px;
	}
	.faq_box .faq_category ul li.faq-select-option {
		padding: 10px 15px;
	}
}