#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: opacity 0.5s ease-out;
}

.loading-container {
  width: 100%;
  position: absolute;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.loading-progress {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  padding: 0 30px;
}

#loading-percentage {
  font-family: "Roboto Flex";
  font-size: 100px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0em;
  color: #f03d4e;
}

.loading-bar-container {
  width: 100%;
  display: flex;
  height: 40px;
  gap: 8px;
  flex-wrap: nowrap;
  overflow: hidden;
}

.loading-bar-item {
  width: 8px;
  height: 40px;
  background-color: #eee9e1;
  transition: background-color 0.3s ease;
}

.loading-bar-item.loaded {
  background-color: #f03d4e;
}

/* Hide the main content until loading is complete */
body.loading {
  overflow: hidden;
}

body.loaded #loading-screen {
  opacity: 0;
  pointer-events: none;
}
