.isv-wpml-switcher {
    position: relative;
    display: inline-block;
    font-family: inherit;
    line-height: 1;
}

/* Strong reset because Elementor applies global button styles */
.isv-wpml-switcher .isv-wpml-switcher__toggle,
.isv-wpml-switcher .isv-wpml-switcher__toggle:hover,
.isv-wpml-switcher .isv-wpml-switcher__toggle:focus,
.isv-wpml-switcher .isv-wpml-switcher__toggle:active {
    appearance: none !important;
    -webkit-appearance: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;

    width: auto !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 0 !important;

    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;

    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;

    padding: 0 !important;
    margin: 0 !important;

    color: #222222 !important;
    font-size: 30px !important;
    line-height: 1 !important;
    font-weight: 300 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;

    cursor: pointer !important;
}

.isv-wpml-switcher .isv-wpml-switcher__toggle::before,
.isv-wpml-switcher .isv-wpml-switcher__toggle::after {
    display: none !important;
    content: none !important;
}

.isv-wpml-switcher__code {
    display: inline-flex;
    align-items: center;
    color: #AF9464 !important;
    font-size: 26px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0;
    font-family:"inter Tight";
}

.isv-wpml-switcher .isv-wpml-switcher__toggle:hover {
    opacity:0.75;
}
.isv-wpml-switcher__toggle:hover .isv-wpml-switcher__code{
    text-decoration:underline;
}

.isv-wpml-switcher__icon,
.isv-wpml-switcher__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #AF9464 !important;
    line-height: 1;
}

.isv-wpml-switcher__icon svg {
    width: 24px;
    height: 24px;
}

.isv-wpml-switcher__arrow svg {
    width: 18px;
    height: 18px;
}

.isv-wpml-switcher__arrow {
    transition: transform 0.25s ease;
}

.isv-wpml-switcher.is-open .isv-wpml-switcher__arrow {
    transform: rotate(180deg);
}

.isv-wpml-switcher__dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);

    min-width: 180px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);

    padding: 34px 40px;
    z-index: 999999;
}

.isv-wpml-switcher__list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.isv-wpml-switcher__item {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.isv-wpml-switcher__item + .isv-wpml-switcher__item {
    margin-top: 20px !important;
}

.isv-wpml-switcher__link,
.isv-wpml-switcher__link:visited,
.isv-wpml-switcher__link:hover,
.isv-wpml-switcher__link:focus {
    display: block;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    text-decoration: none !important;
    color: #222222 !important;
    font-family:"inter Tight";
    font-size: 18px;
    line-height: 0.9;
    font-weight: 300;
    letter-spacing: 0;

    transition: opacity 0.2s ease, color 0.2s ease;
}

.isv-wpml-switcher__link:hover {
    opacity: 0.75;
    transition:0.3s;
}

.isv-wpml-switcher__link.is-active {
    color: #8f95a3 !important;
    pointer-events: none;
}