/* Google Translate for TranslatePress
 * Hide the Google Translate top banner / tooltip and keep the layout from
 * being pushed down, while still letting the translation apply.
 */

/* Google injects an inline "top: 40px" on <body>; force it back. */
body {
	top: 0 !important;
	position: static !important;
}

/* The blue "Translated by Google" banner iframe. */
.goog-te-banner-frame,
.skiptranslate.goog-te-banner-frame {
	display: none !important;
	visibility: hidden !important;
	height: 0 !important;
}

/* Hover tooltip / balloon that Google shows over translated text. */
.goog-tooltip,
.goog-tooltip:hover,
.goog-text-highlight {
	display: none !important;
	background: none !important;
	box-shadow: none !important;
}

/* Our hidden mount point for the Google widget. */
#google_translate_element {
	display: none !important;
}
