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

html {
	height: auto !important;
}

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

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

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

.skiptranslate {
	display: none !important;
}

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

.goog-text-highlight,
font > font {
	background-color: transparent !important;
	box-shadow: none !important;
	box-sizing: inherit;
}

/* language */

.language {
	position: relative;
	z-index: 999;
	display: flex;
	cursor: pointer;
	flex-direction: column;
	color: var(--doc_text2_color); 
	justify-content: center;
}
.language2 {

	position: absolute;
	left: 50%;
	transform: translate(-50%,0 ); /* Смещение элемента на половину его ширины и высоты назад */
	bottom: 120px;
	line-height: 28px;
	z-index: 999;
	display: inline-block;
	margin-top: 40px;
	z-index: 999;
	display: flex;
	flex-direction: row;
	justify-content: center;
	cursor: pointer;
	color: var(--doc_text2_color); 
}

.language__img {
	margin: 2px;
	padding: 5px;
	
	opacity: 0.7;
}
.language__imgbg {
	margin: 10px;
	padding: 5px;
	transform: scale(1.4);
	opacity: 1;
}

.language__img:hover,
.language__img_active {
	opacity: 1;
}
