.sw-lang-switcher {
	--sw-lang-border: rgba(255, 255, 255, 0.65);
	--sw-lang-bg: transparent;
	--sw-lang-color: rgba(255, 255, 255, 0.72);
	--sw-lang-active-bg: #fff;
	--sw-lang-active-color: #142019;
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	gap: 0;
	min-height: 44px;
	padding: 5px;
	border: 1px solid var(--sw-lang-border);
	border-radius: 999px;
	background: var(--sw-lang-bg);
}

.sw-lang-switcher__item {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	color: var(--sw-lang-color);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	transition:
		background-color 220ms ease,
		color 220ms ease;
}

.sw-lang-switcher__item span {
	display: block;
}

.sw-lang-switcher__item.is-active {
	background: var(--sw-lang-active-bg);
	color: var(--sw-lang-active-color);
	pointer-events: none;
}

.sw-lang-switcher__item:not(.is-active):hover,
.sw-lang-switcher__item:not(.is-active):focus-visible {
	color: #fff;
	text-decoration: none;
}

.sw-energy-menu--on-light .sw-lang-switcher--desktop {
	--sw-lang-border: var(--sw-energy-menu-cta-border);
	--sw-lang-bg: var(--sw-energy-menu-cta-bg);
	--sw-lang-color: var(--sw-energy-menu-color-muted);
	--sw-lang-active-bg: var(--sw-energy-menu-cta-icon-bg);
	--sw-lang-active-color: var(--sw-energy-menu-cta-icon-color);
}

.sw-energy-menu--on-light .sw-lang-switcher--desktop .sw-lang-switcher__item:not(.is-active):hover,
.sw-energy-menu--on-light .sw-lang-switcher--desktop .sw-lang-switcher__item:not(.is-active):focus-visible {
	color: var(--sw-energy-menu-color);
}

.sw-energy-menu--on-dark .sw-lang-switcher--desktop {
	--sw-lang-border: var(--sw-energy-menu-cta-border);
	--sw-lang-bg: var(--sw-energy-menu-cta-bg);
	--sw-lang-color: var(--sw-energy-menu-color-muted);
	--sw-lang-active-bg: var(--sw-energy-menu-cta-icon-bg);
	--sw-lang-active-color: var(--sw-energy-menu-cta-icon-color);
}

.sw-lang-switcher--mobile {
	display: none;
}

@media (max-width: 1024px) {
	.sw-lang-switcher--mobile {
		--sw-lang-border: rgba(255, 255, 255, 0.65);
		--sw-lang-bg: transparent;
		--sw-lang-color: rgba(255, 255, 255, 0.72);
		--sw-lang-active-bg: #fff;
		--sw-lang-active-color: #142019;
		display: inline-flex;
		align-self: flex-start;
		margin: 16px 0 0;
	}

	.sw-lang-switcher--mobile .sw-lang-switcher__item:not(.is-active):hover,
	.sw-lang-switcher--mobile .sw-lang-switcher__item:not(.is-active):focus-visible {
		color: #fff;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sw-lang-switcher__item {
		transition: none;
	}
}
