#splash {
  width: 100%;
  height: 100vh !important;
  z-index: 7;
  pointer-events: none;

  max-width: 100vw !important;
  overflow-x: hidden !important;
}

#splash video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: fixed;
}

#tideCanvas {
  /* position: absolute; */
  position: relative;
  z-index: 1;
  width: 100vw;
  height: 100%;
  max-height: 32vh;
}

#splashForeground {
  position: absolute;
  z-index: 1;
  gap: 1rem;
  color: white;

  width: 100%;
  height: 100%;
}

#splashSVG {
  position: absolute;
  left: 0%;
  top: 0%;
  transform: scale(1);
  width: 100%;
  height: 100%;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-items: center;
  justify-content: center;
}

#splashCTA {
  display: none;
  opacity: 0;
  pointer-events: auto;
}

.arrowCTA {
  position: absolute;
  z-index: 3;
  bottom: 5%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.spinCTASplash {
  padding-bottom: 5%;
}

.arrowCTA #downArrow {
  animation: oscillate 2s ease-in-out infinite;
}

#upArrowContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 100%;
  justify-content: flex-end;
  opacity: 0;
}

#upArrow {
  animation: oscillate2 2s ease-in-out infinite;
}

@keyframes oscillate2 {
  0%,
  100% {
    transform: translateY(-6px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes oscillate {
  0%,
  100% {
    transform: translateY(6px);
  }
  50% {
    transform: translateY(10px);
  }
}

.pageLoadingScreenContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  width: 100%;
}

#loadingScreen {
  /* overflow: hidden; */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(#0b1a4a, #1a2a4b);
  z-index: 5;
}

#loadingScreen img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20%;
  height: auto;
}

#loadingScreen p {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

.lottieCanvas {
  width: auto;
  height: auto;
  max-width: 85%;
  max-height: 85%;
  padding-left: 10%;
  padding-right: 10%;
  /* transform: scale(0.8); */
}

#splashVideo {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* pointer-events: none; */
}

#splashImage {
  width: 100%;
  height: 100%;
  /* pointer-events: none; */
  /* background-size: cover; */
  /* background-position: center; */
  /* background-repeat: no-repeat; */
}

.splineViewer {
  cursor: grab;
  width: max(50vw, 50vh);
  overflow: hidden;
  position: absolute;
  height: 100vh;
  padding: 10%;
  opacity: 0;
}

.splineViewer:active {
  cursor: grabbing;
}

/*  */
/* #splineViewer * { */
/* box-sizing: border-box; */
/* width: 100% !important; */
/* height: 100% !important; */
/* } */

.spinningText {
  opacity: 0.5;
}

#percentLoaded {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
}

.percentLoadedFont {
  font-family: "cdmono-regular";
  font-size: 48px;
  /*  */
}
