.brxe-polylang-language-switcher .pll-switcher-select.is-wephar-enhanced {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.wephar-language-dropdown {
	position: relative;
	display: inline-block;
	min-width: 134px;
	font: inherit;
	color: inherit;
	z-index: 20;
}

.wephar-language-dropdown__button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	width: 100%;
	min-height: 48px;
	padding: 0 17px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: transparent;
	color: inherit;
	font: inherit;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.wephar-language-dropdown__button:hover,
.wephar-language-dropdown.is-open .wephar-language-dropdown__button {
	border-color: color-mix(in srgb, currentColor 32%, transparent);
	background: color-mix(in srgb, currentColor 9%, transparent);
}

.wephar-language-dropdown__button:focus-visible {
	outline: none;
	border-color: currentColor;
	box-shadow: 0 0 0 3px color-mix(in srgb, currentColor 18%, transparent);
}

.wephar-language-dropdown__chevron {
	flex: 0 0 auto;
	width: 9px;
	height: 9px;
	margin-top: -4px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg);
	transition: transform .2s ease, margin .2s ease;
}

.wephar-language-dropdown.is-open .wephar-language-dropdown__chevron {
	margin-top: 4px;
	transform: rotate(225deg);
}

.wephar-language-dropdown__menu {
	position: absolute;
	top: calc(100% + 9px);
	left: 0;
	visibility: hidden;
	width: max-content;
	min-width: 100%;
	margin: 0;
	padding: 7px;
	list-style: none;
	border: 1px solid rgba(31, 27, 98, .1);
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 14px 38px rgba(31, 27, 98, .16), 0 3px 10px rgba(31, 27, 98, .08);
	opacity: 0;
	transform: translateY(-6px) scale(.98);
	transform-origin: top left;
	pointer-events: none;
	transition: opacity .16s ease, transform .16s ease, visibility .16s;
}

.wephar-language-dropdown.is-open .wephar-language-dropdown__menu {
	visibility: visible;
	opacity: 1;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}

.wephar-language-dropdown__option {
	display: flex;
	align-items: center;
	min-height: 40px;
	padding: 9px 34px 9px 12px;
	border-radius: 9px;
	color: #1f1b62;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.3;
	text-decoration: none;
	white-space: nowrap;
	transition: color .15s ease, background-color .15s ease;
}

.wephar-language-dropdown__option:hover,
.wephar-language-dropdown__option:focus-visible {
	outline: none;
	color: #006ffa;
	background: #eef6ff;
}

.wephar-language-dropdown__option.is-current {
	position: relative;
	color: #006ffa;
	background: #f3f7ff;
}

.wephar-language-dropdown__option.is-current::after {
	content: "";
	position: absolute;
	right: 13px;
	top: 50%;
	width: 8px;
	height: 4px;
	border-left: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translateY(-65%) rotate(-45deg);
}

@media (max-width: 767px) {
	.wephar-language-dropdown {
		min-width: 120px;
	}

	.wephar-language-dropdown__button {
		min-height: 44px;
		padding: 0 15px;
		font-size: 15px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wephar-language-dropdown *,
	.wephar-language-dropdown *::before,
	.wephar-language-dropdown *::after {
		transition-duration: .01ms !important;
	}
}
