.progress {
  background-color: rgb(224, 231, 234);
  justify-content: flex-start;
  border-radius: 100px;
  align-items: center;
  position: relative;
  display: flex;
  width: 72%;
  height: 8px;
  margin: 0 auto;
}


.progress-value {
  animation: load 3s normal forwards;
  box-shadow: 0 10px 40px -10px #fff;
  border-radius: 100px;
  background-color: rgb(69, 163, 255);
  height: 8px;
  width: 0;
}


@keyframes load {
  0% { width: 0; }
  100% { width: 80%; }
}