/*
  XIRO entry bridge.
  The supplied animation itself lives unchanged in page-intro.html.
*/
html.xiro-entry-active,
html.xiro-entry-active body {
  overflow: hidden !important;
}

html.xiro-entry-active::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2147483600;
  background: #020b16;
  pointer-events: all;
}

#xiro-entry-layer {
  position: fixed;
  inset: 0;
  z-index: 2147483640;
  width: 100%;
  height: 100%;
  border: 0;
  background: #020b16;
  opacity: 1;
  pointer-events: all;
  transition: opacity 520ms ease;
}

#xiro-entry-layer.is-releasing {
  opacity: 0;
  pointer-events: none;
}
