/* FieldBase instant page background stability - rev 1.6.8.3.19
   Hotfix for 1.6.8.3.18: removes the dark transition overlay and navigation delay. */
:root {
  --fieldbase-page-bg: #07111f;
  --fieldbase-page-light-bg: #f4f7fb;
}

html {
  background-color: var(--fieldbase-page-bg);
  min-height: 100%;
}

html.fb-light-preload,
body.light-theme {
  background-color: var(--fieldbase-page-light-bg);
}

body {
  min-height: 100vh;
  background-color: inherit;
}

/* Important: intentionally no overlay, no opacity transition, no navigation delay. */
body::before {
  content: none !important;
  display: none !important;
}

body.fieldbase-page-leaving,
body.fieldbase-page-arriving {
  animation: none !important;
  opacity: 1 !important;
}
