body{
  margin: 0;
}

.loader-container {
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
  min-height: 100vh;
  background: #ffffff;
  align-items: center;
  justify-content: center;
}

.preload-progress {
  width: min(260px, 60vw);
  height: 4px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.08);
  position: relative;
}

.p-progressbar-indeterminate-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.preload-progress .p-progressbar-value {
  background: rgba(15, 23, 42, 0.65);
  height: 100%;
  width: 40%;
  position: absolute;
  animation: preloadIndeterminate 1.2s infinite ease-in-out;
}

@keyframes preloadIndeterminate {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(50%); }
  100% { transform: translateX(200%); }
}
