/* ================= lang-switch ================= */

.lang-switch,
.lang-switch * {
    box-sizing: border-box;
}

.lang-switch {
    display: inline-flex;
    padding: 3px;
    border-radius: 999px;
    background: #f2f2f4;
}

.lang-switch__btn {
    padding: 7px 14px;
    border: 0;
    border-radius: 999px;
    background: none;
    color: #5d6679;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease;
}

.lang-switch__btn:hover {
    color: #a0102f;
}

.lang-switch__btn--active,
.lang-switch__btn--active:hover {
    background: #a0102f;
    color: #fff;
}

/* виджет Google прячем, им управляют кнопки выше */
#google_translate_element {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}