.progress {
  /* background: rgba(255,255,255,0.1); */
  justify-content: flex-start;
  border-radius: 100px;
  align-items: center;
  position: relative;
  padding: 0 5px;
  display: flex;
  /* height: 40px; */
  /* width: 500px; */
  position: absolute;
  z-index: 4;
  width: 98%;
  bottom: 5px;
  right: 0;
}

.progress-value {
  animation: load 10s forwards linear;
  box-shadow: 0 10px 40px -10px #fff;
  border-radius: 100px;
  background: #555;
  height: 4px;
  width: 0;
}

@keyframes load {
  0% { width: 0; }
  100% { width: 100%; }
}