.loading-container {
  font-family: "Montserrat", sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  z-index: 999999;
  transform: translateY(0); /* initial position */
}

.loading-container p {
  font-size: 15px;
  text-align: center;
  font-weight: 500;
  line-height: 150%;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #0F0F0F;
  margin: 0;
}

.loading-progress-bar {
  width: 220px;
  height: 4px;
  background-color: #dddddd;
  border-radius: 2px;
  overflow: hidden;
}

.loading-progress-bar-fill {
  width: 0%;
  height: 100%;
  background-color: #0F0F0F;
  border-radius: 2px;
  transition: width 0.2s ease;
}

@media (max-width: 767px) {
  .loading-container {
    gap: 22px;
  }
  .loading-container p {
    font-size: 14px;
  }
  .loading-progress-bar {
    width: 200px;
  }
}
