.trusttranslate-switcher {
    position: relative;
    z-index: 20;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--trusttranslate-font-family, inherit);
    font-size: var(--trusttranslate-font-size, inherit);
    font-weight: var(--trusttranslate-font-weight, inherit);
    line-height: 1;
    pointer-events: auto;
    user-select: none;
}

.trusttranslate-switcher__item {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 42px;
    min-height: 42px;
    padding: 7px 9px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--trusttranslate-inactive-color, inherit);
    background: transparent;
    font: inherit;
    text-decoration: none;
    cursor: pointer;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.trusttranslate-switcher a.trusttranslate-switcher__item:hover,
.trusttranslate-switcher a.trusttranslate-switcher__item:focus-visible,
.trusttranslate-switcher__dropdown[open] > summary {
    color: var(--trusttranslate-active-color, inherit);
    background: rgba(127, 127, 127, .12);
    border-color: rgba(127, 127, 127, .18);
    outline: none;
}

.trusttranslate-switcher__item.is-current {
    color: var(--trusttranslate-active-color, inherit);
    cursor: default;
}

.trusttranslate-switcher__flag,
.trusttranslate-switcher__flag svg {
    display: block;
    width: 24px;
    height: 16px;
    flex: 0 0 auto;
}

.trusttranslate-switcher__flag svg {
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .14);
}

.trusttranslate-switcher--underline-active .trusttranslate-switcher__item.is-current .trusttranslate-switcher__text {
    text-decoration: underline;
    text-underline-offset: .18em;
    text-decoration-thickness: .08em;
}

.trusttranslate-switcher__separator {
    color: var(--trusttranslate-inactive-color, inherit);
    opacity: .65;
    pointer-events: none;
}

.trusttranslate-switcher__dropdown {
    position: relative;
}

.trusttranslate-switcher__dropdown > summary {
    list-style: none;
    cursor: pointer;
}

.trusttranslate-switcher__dropdown > summary::-webkit-details-marker {
    display: none;
}

.trusttranslate-switcher__chevron {
    width: 7px;
    height: 7px;
    margin-left: 2px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
}

.trusttranslate-switcher__dropdown[open] .trusttranslate-switcher__chevron {
    transform: translateY(2px) rotate(225deg);
}

.trusttranslate-switcher__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 100%;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 10px;
    background: rgba(20, 24, 28, .96);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
}

.trusttranslate-switcher__menu .trusttranslate-switcher__item {
    width: 100%;
    border-radius: 7px;
}

@media (max-width: 767px) {
    .trusttranslate-switcher__item {
        min-width: 44px;
        min-height: 44px;
    }
}
