html {
  height: 100%;
}

body {
  height: 100%;
}

.progress-container {
  width: 300px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  font: 14px Verdana;
}

.progress-bar {
  height: 4px;
  background-color: rgb(207, 233, 218);
  width: 100%;
  overflow: hidden;
  margin: 10px 0;
}

.progress-bar-value {
  height: 100%;
  background-color: rgb(0, 108, 79);
  transform-origin: 0% 50%;
}

@keyframes indeterminateAnimation {
  0% {
    transform: translateX(0) scaleX(0);
  }

  40% {
    transform: translateX(0) scaleX(0.4);
  }

  100% {
    transform: translateX(100%) scaleX(0.5);
  }
}