.efe-filters,
.efe-filters * {
	box-sizing: border-box;
}

.efe-filters {
	position: relative;
	display: block;
	width: 100%;
	margin: 0;
	color: inherit;
}

.efe-main-title {
	padding: 0;
	font-size: 21px;
	font-weight: 500;
	line-height: 1.3;
}

.efe-filter-section {
	margin: 0;
	padding: 0;
	border-width: 0 0 1px;
	border-style: solid;
}

.efe-section-toggle {
	-webkit-appearance: none;
	appearance: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	font: inherit;
	font-size: 22px;
	font-weight: 500;
	line-height: 1.25;
	text-align: left;
	cursor: pointer;
	transition: color 160ms ease;
}

.efe-section-toggle:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

.efe-section-title {
	min-width: 0;
}

.efe-chevron {
	flex: 0 0 auto;
	margin-left: 16px;
	transform: rotate(0deg);
	transform-origin: center;
	transition: transform 180ms ease;
}

.efe-section-toggle[aria-expanded="false"] .efe-chevron {
	transform: rotate(180deg);
}

.efe-section-content[hidden] {
	display: none !important;
}

.efe-choices {
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.efe-choice {
	display: flex;
	align-items: center;
	width: fit-content;
	max-width: 100%;
	margin: 0;
	cursor: pointer;
}

.efe-choice-label {
	min-width: 0;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.35;
	transition: color 150ms ease;
}

.efe-choice-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-left: 5px;
	color: #85838c;
	font-size: 0.82em;
	font-variant-numeric: tabular-nums;
	line-height: inherit;
}

.efe-choice input[type="checkbox"],
.efe-choice input[type="radio"] {
	-webkit-appearance: none !important;
	appearance: none !important;
	position: relative;
	flex: 0 0 auto;
	display: inline-grid;
	place-items: center;
	margin: 0 !important;
	padding: 0 !important;
	border-style: solid;
	box-shadow: none !important;
	background-image: none !important;
	cursor: pointer;
	transition: background-color 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.efe-choice input[type="checkbox"]::before,
.efe-choice input[type="radio"]::before {
	content: "";
	display: block;
	margin: 0;
	opacity: 0;
	transition: transform 130ms ease, opacity 130ms ease;
}

.efe-choice input[type="checkbox"]::before {
	width: 32%;
	height: 56%;
	border-style: solid;
	border-width: 0 2px 2px 0;
	transform: translateY(-8%) rotate(45deg) scale(0.55);
}

.efe-choice input[type="checkbox"]:checked::before {
	opacity: 1;
	transform: translateY(-8%) rotate(45deg) scale(1);
}

.efe-choice input[type="radio"]::before {
	border-radius: 50%;
	transform: scale(0.45);
}

.efe-choice input[type="radio"]:checked::before {
	opacity: 1;
	transform: scale(1);
}

.efe-choice input[type="checkbox"]:focus-visible,
.efe-choice input[type="radio"]:focus-visible {
	outline-width: 2px;
	outline-style: solid;
	outline-offset: 3px;
}

.efe-empty {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	opacity: 0.65;
}

.efe-actions {
	display: flex;
	flex-wrap: wrap;
	padding-top: 20px;
}

.efe-button {
	-webkit-appearance: none;
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	margin: 0;
	border: 1px solid transparent;
	box-shadow: none;
	font: inherit;
	line-height: 1.2;
	text-align: center;
	text-decoration: none !important;
	cursor: pointer;
	transition: color 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.efe-button-reset {
	border-style: solid;
	border-width: 1px;
}

.efe-button:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

.efe-loading-indicator {
	position: absolute;
	z-index: 3;
	top: 50%;
	left: 50%;
	display: none;
	width: 30px;
	height: 30px;
	margin: -15px 0 0 -15px;
	border: 3px solid rgb(0 0 0 / 12%);
	border-radius: 50%;
	animation: efe-spin 700ms linear infinite;
}

.efe-filters::after {
	content: "";
	position: absolute;
	z-index: 2;
	inset: 0;
	display: none;
	background: rgb(255 255 255 / 64%);
	backdrop-filter: blur(1px);
}

.efe-filters.efe-is-loading {
	pointer-events: none;
}

.efe-filters.efe-is-loading::after,
.efe-filters.efe-is-loading .efe-loading-indicator {
	display: block;
}

.efe-ajax-target-loading {
	opacity: 0.55;
	pointer-events: none;
	transition: opacity 160ms ease;
}

.efe-filters .screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@keyframes efe-spin {
	to {
		transform: rotate(360deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.efe-filters *,
	.efe-filters *::before,
	.efe-filters *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
