.ee-active-filters {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
	margin: 1rem 0;
}

.ee-active-filters__title {
	color: #070808;
	font-family: "Aeonik", sans-serif !important;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0.192px;
}

.ee-active-filters__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.ee-active-filters__chip {
	display: flex;
	flex-direction: row;
	gap: 8px;
	padding: 8px 16px;
	border-radius: 24px;
	border: 2px solid #2B3131;
	background-color: #FFF;
	color: #070808;
}

.ee-active-filters__chip:hover,
.ee-active-filters__chip:focus {
	background-color: #1a1a1a;
	color: #ffffff;
	border-color: #1a1a1a;
}

.ee-active-filters__chip:focus {
	outline: 2px solid #1a1a1a;
	outline-offset: 2px;
}

.ee-active-filters__chip-label {
	font-weight: 500;
}

.ee-active-filters__chip-remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.2rem;
	height: 1.2rem;
	border-radius: 50%;
	background-color: #1a1a1a;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.75rem;
	transition: background-color 0.2s ease;
}

.ee-active-filters__chip:hover .ee-active-filters__chip-remove,
.ee-active-filters__chip:focus .ee-active-filters__chip-remove {
	background-color: #ffffff;
	color: #1a1a1a;
}

.ee-active-filters__clear {
	padding: 10px;
	color: #070808;
	font-family: "IBM Plex Sans";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.192px;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
	border: none;
}

.ee-active-filters__clear:hover,
.ee-active-filters__clear:focus {
	text-decoration: underline;
	background-color: transparent;
	color: #000;
}