#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  /* show it initially */
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.progress-container {
  width: 300px;
  height: 30px;
  /* border: 2px solid #4caf50; */
  border: 2px solid #fc8c06;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  background: #eee;
  box-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
}

.progress-bar {
  height: 100%;
  width: 0%; /* important */
  /* background: linear-gradient(90deg, #4caf50, #81c784); */
  background: linear-gradient(90deg, #fc8c06, #f6b73c);
  transition: width 0.3s ease;
}

.progress-text {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 0;
  line-height: 30px;
  font-weight: bold;
  /* color: #4caf50; */
  color: #fc8c06;
  user-select: none;
}

/* Hide preloader on load */
#preloader.hide {
  opacity: 0;
  visibility: hidden;
}
