/**
 * Nava — Selector de idiomas Polylang (shortcode).
 */
.nava-lang-switcher__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.65em 1em;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nava-lang-switcher__link {
	display: inline-block;
	text-decoration: none;
	color: inherit;
	letter-spacing: 0.04em;
	line-height: 1.2;
	transition: opacity 0.2s ease;
}

.nava-lang-switcher__link:hover,
.nava-lang-switcher__link:focus-visible {
	opacity: 0.65;
}

.nava-lang-switcher__item.is-current .nava-lang-switcher__link {
	font-weight: 500 !important;
	pointer-events: none;
	cursor: default;
}

.nava-lang-switcher__item.no-translation .nava-lang-switcher__link {
	opacity: 0.45;
}

.nava-lang-switcher--placeholder {
	margin: 0;
	font-size: 0.875rem;
	opacity: 0.75;
}

.nava-lang-switcher__item a {
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 0.91em !important;
	font-family: "Open Sauce One", Sans-serif;
    text-transform: uppercase;
    color: var(--e-global-color-primary);
}

.nava-lang-switcher__item a:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .nava-lang-switcher__item a {
        font-size: 24px !important;
        line-height: 0.91em !important;
		margin-top: 10px;
    }
}