#initial-loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  z-index: 9999;
}

#initial-loader .spinner {
  width: 44px;
  height: 44px;
  border: 4px solid #e5e7eb;
  border-top-color: #2563eb;
  border-radius: 50%;
  animation: initial-loader-spin 0.75s linear infinite;
}

@keyframes initial-loader-spin {
  to {
    transform: rotate(360deg);
  }
}
