#app-splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  opacity: 1;
  transition: opacity 300ms ease;
}

#app-splash.app-splash--hide {
  opacity: 0;
}

#app-splash .splash-logo {
  display: block;
  width: 180px;
  height: auto;
}

#app-splash .d-dot,
#app-splash .r-dot {
  fill: #059669;
}

#app-splash .r-dot {
  opacity: 0.35;
  transform: scale(0.78);
  transform-box: fill-box;
  transform-origin: center;
  animation: splash-r-reveal 300ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

#app-splash .r-dot[data-delay="0"] { animation-delay: 0ms; }
#app-splash .r-dot[data-delay="16"] { animation-delay: 16ms; }
#app-splash .r-dot[data-delay="32"] { animation-delay: 32ms; }
#app-splash .r-dot[data-delay="48"] { animation-delay: 48ms; }
#app-splash .r-dot[data-delay="64"] { animation-delay: 64ms; }
#app-splash .r-dot[data-delay="80"] { animation-delay: 80ms; }
#app-splash .r-dot[data-delay="96"] { animation-delay: 96ms; }
#app-splash .r-dot[data-delay="112"] { animation-delay: 112ms; }
#app-splash .r-dot[data-delay="128"] { animation-delay: 128ms; }
#app-splash .r-dot[data-delay="144"] { animation-delay: 144ms; }

@keyframes splash-r-reveal {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  #app-splash {
    transition: none;
  }

  #app-splash .r-dot {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
