/*
 * Hide ALL Google Translate UI elements.
 * Translation still works silently in the background.
 */

/* Hidden container div */
#google_translate_element,
#google_translate_element * {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* The top banner iframe Google injects */
.goog-te-banner-frame,
.goog-te-balloon-frame,
.goog-te-ftab-float,
.goog-te-menu-frame {
  display: none !important;
}

/* Prevent Google Translate from pushing the page body down */
body {
  top: 0 !important;
  position: relative !important;
}

/* Remove yellow highlight on translated text */
.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}

/* Remove the translation hover tooltip */
.goog-te-balloon-frame {
  display: none !important;
}

/* Remove "Translated by Google" attribution bar */
.skiptranslate {
  display: none !important;
  visibility: hidden !important;
}
