/* Виджет назначает height: 100% , что может привести к непредксказуемому результату, если вы этого не планровали */

html {
    height: auto !important;
}

/* Фиксируем позицию body, которую меняет панель гугла */

body {
    top: 0 !important;
    position: static !important;
}

/* Прячем панель гугла */

.skiptranslate {
    display: none !important;
}

/* Убираем подсветку ссылок */

.goog-text-highlight {
    background-color: inherit;
    box-shadow: none;
    box-sizing: inherit;
}

/* language */

/*.language {
    position: fixed;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
}*/

.language {
    display: flex;
    flex-direction: column;
    padding: 0 !important;
}

.language__img {
    margin: 2px;
    cursor: pointer;
    opacity: .5;
    width: 20px;
    height: 14px;
    margin-right: 8px;
}

.language-item:hover .language__img,
.language__img_active {
    opacity: 1;
}

.language-item:not(:last-child){
    margin-bottom: 3px;
}
.language-item {
    display: flex;
    align-items: center;
    color: #0D3145;
    font-family: 'IBM Plex Sans',sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px;
    cursor: pointer;
    text-transform: uppercase;
}
.language-item img {
    margin-right: 3px;
}

@media(max-width:768px){
    .language {
        margin-bottom: 10px;
        flex-direction: row;
    }
    .language-item:not(:last-child) {
        margin-bottom: 0;
        margin-right: 15px;
    }
}