/* Final landing intro shell. This file only controls the overlay wrapper. */
html.intro-pending,
html.intro-pending body {
  overflow: hidden !important;
}

.intro-shell {
  position: fixed;
  inset: 0;
  z-index: 9000;
  width: 100%;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  background: #000;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .5s ease, visibility .5s ease;
}

.intro-shell__frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.intro-shell.is-leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

html.intro-passed .intro-shell {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .intro-shell {
    transition: none;
  }
}
