#app-initial-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(165deg, #f8f9fb 0%, #f3f5fe 40%, #fbfafd 100%);
  overflow: hidden;
}
#app-initial-loader .loader-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}
#app-initial-loader .loader-spinner {
  width: 5rem;
  height: 5rem;
  margin-bottom: 2rem;
  animation: app-loader-spin 2.5s ease-in-out infinite;
}
#app-initial-loader .loader-msg {
  margin: 0 0 0.25rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1750;
}
#app-initial-loader .loader-sub {
  margin: 0 0 1.5rem;
  font-size: 0.875rem;
  color: #667085;
}
#app-initial-loader .loader-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
#app-initial-loader .loader-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: app-loader-dot 1.4s ease-in-out infinite both;
}
#app-initial-loader .loader-dot:nth-child(1) {
  animation-delay: 0s;
  background: #1a1750;
}
#app-initial-loader .loader-dot:nth-child(2) {
  animation-delay: 0.2s;
  background: #8f00ff;
}
#app-initial-loader .loader-dot:nth-child(3) {
  animation-delay: 0.4s;
  background: #1a1750;
}
#app-initial-loader .loader-dot:nth-child(4) {
  animation-delay: 0.6s;
  background: #8f00ff;
}
@keyframes app-loader-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes app-loader-dot {
  0%,
  80%,
  100% {
    transform: scale(0.8);
    opacity: 0.6;
  }
  40% {
    transform: scale(1.2);
    opacity: 1;
  }
}
