#google_translate_element_abls,
.goog-te-banner-frame,
.goog-te-gadget,
.goog-logo-link,
.goog-te-gadget span,
.goog-te-combo,
.skiptranslate iframe {
    display: none !important;
    visibility: hidden !important;
}

body,
body.translated-ltr,
body.translated-rtl {
    top: 0 !important;
}

.abls-switcher {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.abls-pos-left {
    left: 18px;
}

.abls-pos-right {
    right: 18px;
}

.abls-toggle,
.abls-item {
    position: relative;
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(6,28,56,0.96), rgba(12,58,108,0.96));
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255,255,255,.14);
    transition: transform .25s ease, box-shadow .25s ease, opacity .2s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.abls-toggle:hover,
.abls-item:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255,255,255,.18);
}

.abls-toggle:focus,
.abls-item:focus {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.abls-toggle-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.28), rgba(255,255,255,0) 45%);
    pointer-events: none;
}

.abls-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.abls-menu[hidden] {
    display: none !important;
}

.abls-switcher.is-open .abls-item {
    animation: ablsPop .28s ease both;
}

.abls-switcher.is-open .abls-item:nth-child(1) { animation-delay: .02s; }
.abls-switcher.is-open .abls-item:nth-child(2) { animation-delay: .05s; }
.abls-switcher.is-open .abls-item:nth-child(3) { animation-delay: .08s; }
.abls-switcher.is-open .abls-item:nth-child(4) { animation-delay: .11s; }
.abls-switcher.is-open .abls-item:nth-child(5) { animation-delay: .14s; }
.abls-switcher.is-open .abls-item:nth-child(6) { animation-delay: .17s; }
.abls-switcher.is-open .abls-item:nth-child(7) { animation-delay: .20s; }
.abls-switcher.is-open .abls-item:nth-child(8) { animation-delay: .23s; }

.abls-flag {
    font-size: 24px;
    line-height: 1;
    filter: saturate(1.05);
}

@keyframes ablsPop {
    0% {
        opacity: 0;
        transform: translateY(-8px) scale(.72);
    }
    65% {
        opacity: 1;
        transform: translateY(2px) scale(1.06);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 768px) {
    .abls-pos-left {
        left: 10px;
    }

    .abls-pos-right {
        right: 10px;
    }

    .abls-switcher {
        top: auto !important;
        bottom: 86px;
    }
}
