html,
body {
  margin: 0;
  width: 100%;
  min-height: 100%;
  overflow-x: clip;
  overscroll-behavior: none;
  background: #ffffff;
}

body {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.PantherShell {
  --shell-vh: 100vh;
  position: relative;
  width: 100%;
  min-height: var(--shell-vh);
  background: #ffffff;
}

.PantherShell__viewport {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--shell-vh);
  overflow: hidden;
  background: #ffffff;
  z-index: 1;
  will-change: top;
  opacity: 0;
  transition: opacity 320ms ease;
  overscroll-behavior: none;
}

.PantherShell.is-ready .PantherShell__viewport {
  opacity: 1;
}

.PantherShell__experience {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #ffffff;
  overscroll-behavior: none;
}

.PantherShell__track {
  display: none;
}
