body > .splash-screen {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999999999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  line-height: 1.5;
  backdrop-filter: blur(0.5rem);
  background-color: var(--color-neutral-background);
  color: var(--color-neutral-600);

  opacity: 1;
  visibility: visible;
  pointer-events: none;

  transition-duration: 50ms;
  transition-property: opacity, visibility;
  transition-timing-function: ease-out;
  will-change: opacity, visibility;
}

body.splash-screen--is-hidden > .splash-screen {
  opacity: 0;
  visibility: hidden;
}

body > .splash-screen .splash-screen-container {
  padding: 1rem;
  position: relative;
  text-align: center;
  display: flex;
  flex-flow: column nowrap;
  row-gap: 1rem;
}

body > .splash-screen .splash-screen-logo {
  display: inline-block;
  max-width: 10rem;
  height: 2rem;
}

body > .splash-screen .splash-screen-spin {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: var(--color-brand-400);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: "tnum";
  position: relative;
  display: inline-block;
  vertical-align: middle;
  opacity: 1;
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
}

body > .splash-screen .splash-screen-spin-dot {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  font-size: 32px;
  transform: rotate(45deg);
  will-change: transform;
  animation: antRotate 1.2s infinite alternate;
}

body > .splash-screen .splash-screen-spin-dot-item {
  position: absolute;
  display: block;
  width: 14px;
  height: 14px;
  background-color: var(--color-brand-400);
  border-radius: 100%;
  transform: scale(0.75);
  transform-origin: 50% 50%;
  opacity: 0.3;
  animation: antSpinMove 1s infinite linear alternate;
}

body > .splash-screen .splash-screen-spin-dot-item:nth-child(1) {
  top: 0;
  left: 0;
}

body > .splash-screen .splash-screen-spin-dot-item:nth-child(2) {
  top: 0;
  right: 0;
  animation-delay: 0.4s;
}

body > .splash-screen .splash-screen-spin-dot-item:nth-child(3) {
  right: 0;
  bottom: 0;
  animation-delay: 0.8s;
}

body > .splash-screen .splash-screen-spin-dot-item:nth-child(4) {
  bottom: 0;
  left: 0;
  animation-delay: 1.2s;
}

@keyframes antRotate {
  to {
    transform: rotate(405deg);
  }
}
@keyframes antSpinMove {
  to {
    opacity: 1;
  }
}
