.container {

  width: 100%;
  font-family: Helvetica;

}

.loader {
  height: 20px;
  width: 250px;
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 37px;
  position: relative;
  width: 246px;
  /* top: 5px; */
  text-align: center;
  /* width: 118px; */
}

.loader--dot {
  animation-name: loader;
  animation-timing-function: ease-in-out;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  height: 15px;
  width: 15px;
  border-radius: 100%;
  background-color: black;
  position: absolute;
  border: 2px solid white;
}

.loader--dot:first-child {
  background-color: rgb(75, 143, 216);
  animation-delay: 0.5s;
}

.loader--dot:nth-child(2) {
  background-color: rgb(75, 143, 216);
  animation-delay: 0.4s;
}

.loader--dot:nth-child(3) {
  background-color: rgb(75, 143, 216);
  animation-delay: 0.3s;
}

.loader--dot:nth-child(4) {
  background-color: rgb(75, 143, 216);
  animation-delay: 0.2s;
}

.loader--dot:nth-child(5) {
  background-color: rgb(75, 143, 216);
  animation-delay: 0.1s;
}

.loader--dot:nth-child(6) {
  background-color: rgb(75, 143, 216);
  animation-delay: 0s;
}

.loader--text {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 4rem;
  margin: auto;
  font-size: 14px;
  text-align: left;
}

.loader--text:after {
  content: "Loading";
  font-weight: bold;
  animation-name: loading-text;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

@keyframes loader {
  15% {
    transform: translateX(0);
  }

  45% {
    transform: translateX(230px);
  }

  65% {
    transform: translateX(230px);
  }

  95% {
    transform: translateX(0);
  }
}

@keyframes loading-text {
  0% {
    content: "Loading";
  }

  25% {
    content: "Loading.";
  }

  50% {
    content: "Loading..";
  }

  75% {
    content: "Loading...";
  }
}


#progress-bar-text {
  margin-left: 5px;
  white-space: nowrap
}

.progress {

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: .75rem;
  background-color: #e9ecef;
  border-radius: .25rem;

}

.progress-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  background-color: #007bff;
  transition: width .6s ease;
  background-color: rgb(75, 143, 216);
  width: 0px;
}