.nmt-floating-root {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 999999;
    --nmt-icon-color: #18a8e8;
    --nmt-hover-color: #e95b29;
}

.nmt-position-bottom_left {
    left: 22px;
    right: auto;
    top: auto;
    bottom: 22px;
}

.nmt-position-bottom_right {
    left: auto;
    right: 22px;
    top: auto;
    bottom: 22px;
}

.nmt-position-top_left {
    left: 22px;
    right: auto;
    top: 22px;
    bottom: auto;
}

.nmt-position-top_right {
    left: auto;
    right: 22px;
    top: 22px;
    bottom: auto;
}

.nmt-language-switcher,
.nmt-language-switcher * {
    box-sizing: border-box;
}

.nmt-language-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    z-index: 999999;
}

.nmt-language-current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 52px;
    min-height: 52px;
    padding: 8px 12px;
    border: 0 !important;
    outline: 0 !important;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
    cursor: pointer;
    transition: background 0.18s ease, transform 0.18s ease;
}

.nmt-language-current:focus,
.nmt-language-current:hover {
    border: 0 !important;
    outline: 0 !important;
}

.nmt-language-current:hover,
.nmt-language-switcher.is-open .nmt-language-current,
.nmt-language-link:hover,
.nmt-language-link.is-active {
    background: var(--nmt-hover-color, #e95b29) !important;
}

.nmt-language-current:hover .nmt-current-label,
.nmt-language-switcher.is-open .nmt-current-label,
.nmt-language-current:hover .nmt-globe,
.nmt-language-switcher.is-open .nmt-globe,
.nmt-language-link:hover strong,
.nmt-language-link.is-active strong {
    color: #ffffff !important;
}

.nmt-globe {
    display: inline-flex;
    width: 25px;
    height: 25px;
    align-items: center;
    justify-content: center;
    color: var(--nmt-icon-color, #18a8e8);
    line-height: 1;
}

.nmt-globe svg {
    width: 1em;
    height: 1em;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nmt-current-flag,
.nmt-language-link span {
    font-size: 20px;
    line-height: 1;
}

.nmt-current-label,
.nmt-language-link strong {
    color: #123b25;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.nmt-language-list {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    display: grid;
    grid-template-columns: repeat(2, minmax(40px, 1fr));
    gap: 8px;
    min-width: 104px;
    max-height: 340px;
    overflow-y: auto;
    padding: 10px;
    border: 0 !important;
    outline: 0 !important;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nmt-floating-root .nmt-language-list {
    left: 0;
    right: auto;
    top: auto;
    bottom: calc(100% + 10px);
    transform: translateY(6px);
}

.nmt-position-top_left .nmt-language-list,
.nmt-position-top_right .nmt-language-list {
    top: calc(100% + 10px);
    bottom: auto;
    transform: translateY(-6px);
}

.nmt-position-bottom_right .nmt-language-list,
.nmt-position-top_right .nmt-language-list {
    left: auto;
    right: 0;
}

.nmt-language-switcher:hover .nmt-language-list,
.nmt-language-switcher:focus-within .nmt-language-list,
.nmt-language-switcher.is-open .nmt-language-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nmt-language-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 38px;
    min-height: 38px;
    padding: 7px 10px;
    border: 0 !important;
    outline: 0 !important;
    border-radius: 999px;
    background: transparent;
    color: #123b25;
    text-decoration: none !important;
    box-shadow: none !important;
    transition: background 0.18s ease, transform 0.18s ease;
}

.nmt-language-link:hover {
    transform: translateY(-1px);
}

.nmt-type-float .nmt-language-current,
.nmt-type-popup .nmt-language-current {
    min-width: 64px;
    padding-right: 14px;
}

.nmt-type-popup .nmt-language-list,
.nmt-type-float .nmt-language-list,
.nmt-type-flags_name .nmt-language-list,
.nmt-type-flags_code .nmt-language-list {
    grid-template-columns: 1fr;
    min-width: 190px;
}

.nmt-type-popup .nmt-language-link,
.nmt-type-float .nmt-language-link,
.nmt-type-flags_name .nmt-language-link,
.nmt-type-flags_code .nmt-language-link {
    justify-content: flex-start;
    min-width: 100%;
}

.nmt-mode-inline .nmt-language-current,
.nmt-type-flags .nmt-language-current,
.nmt-type-flags_name .nmt-language-current,
.nmt-type-flags_code .nmt-language-current {
    display: none;
}

.nmt-mode-inline .nmt-language-list,
.nmt-type-flags .nmt-language-list,
.nmt-type-flags_name .nmt-language-list,
.nmt-type-flags_code .nmt-language-list {
    position: static;
    display: grid;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.97);
    padding: 10px;
    margin: 0;
    max-height: 340px;
    overflow-y: auto;
}

.nmt-type-flags .nmt-language-list {
    grid-template-columns: repeat(2, minmax(40px, 1fr));
    min-width: 104px;
}

.nmt-language-dropdown {
    display: inline-flex;
    align-items: center;
    border: 0 !important;
    outline: 0 !important;
}

.nmt-language-dropdown select {
    min-height: 44px;
    max-width: 240px;
    padding: 0 38px 0 14px;
    border: 0 !important;
    outline: 0 !important;
    border-radius: 999px;
    background: #ffffff;
    color: #123b25;
    font-weight: 800;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.nmt-language-dropdown select:hover,
.nmt-language-dropdown select:focus {
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
    .nmt-floating-root {
        left: 16px;
        bottom: 16px;
    }

    .nmt-position-bottom_right {
        left: auto;
        right: 16px;
        bottom: 16px;
    }

    .nmt-position-top_left {
        left: 16px;
        top: 16px;
        bottom: auto;
    }

    .nmt-position-top_right {
        left: auto;
        right: 16px;
        top: 16px;
        bottom: auto;
    }

    .nmt-language-current {
        min-width: 48px;
        min-height: 48px;
    }

    .nmt-language-list {
        max-height: 280px;
    }
}

#google_translate_element2,
.goog-te-banner-frame,
.goog-te-balloon-frame,
.goog-te-gadget,
.goog-te-menu-frame,
#goog-gt-tt,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf {
    display: none !important;
}

html,
body {
    top: 0 !important;
}
