#initial-loader-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #f5f5f5;
  z-index: 9999;
  font-family: sans-serif;
  gap: 12px;
  opacity: 1;
  transition: opacity 0.25s ease;
}

#initial-loader-wrapper.fade-out {
  opacity: 0;
}

#loading-bar-track {
  width: 40vw;
  height: 4px;
  background: #e0e0e0;
  border-radius: 2px;
  overflow: hidden;
}

#loading-bar {
  width: 0%;
  height: 100%;
  background: #00112c;
  border-radius: 2px;
  animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
  0% { width: 0%; margin-left: 0%; }
  50% { width: 100%; margin-left: 0%; }
  100% { width: 0%; margin-left: 100%; }
}

