.splash-screen {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--p-content-background, #ffffff);
  z-index: 9999;
}

.splash-loader {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  width: 42px;
}

.splash-loader > div {
  width: 11px;
  height: 11px;
  border-radius: 3px;
  background: var(--primary-color, #6366f1);
  animation: appack-pop 1.4s ease-in-out infinite;
  opacity: 0;
}

.splash-loader > div:nth-child(1) { animation-delay: 0.0s; }
.splash-loader > div:nth-child(2) { animation-delay: 0.1s; }
.splash-loader > div:nth-child(3) { animation-delay: 0.2s; }
.splash-loader > div:nth-child(4) { animation-delay: 0.3s; }
.splash-loader > div:nth-child(5) { animation-delay: 0.4s; border-radius: 50%; }
.splash-loader > div:nth-child(6) { animation-delay: 0.5s; }
.splash-loader > div:nth-child(7) { animation-delay: 0.6s; }
.splash-loader > div:nth-child(8) { animation-delay: 0.7s; }
.splash-loader > div:nth-child(9) { animation-delay: 0.8s; }

@keyframes appack-pop {
  0%, 100% { opacity: 0; transform: scale(0.4); }
  40%, 60% { opacity: 1; transform: scale(1); }
}
