/* V19 visibility guard.
   Browser [hidden] has lower priority than some component display rules. This makes
   login, dashboard, consent, dialogs and forms truly disappear whenever JavaScript
   sets their hidden attribute. */
html body [hidden] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
