.progress {
  background: rgb(228 228 228);
  justify-content: flex-start;
  border-radius: 100px;
  align-items: center;
  position: relative;
  display: flex;
  height: 30px;
}

.progress-value {
  animation: load 3s normal forwards;
  box-shadow: 0 10px 40px -10px #fff;
  border-radius: 100px;
  background: #4CAF50;
  height: 30px;
  width: 0;
  margin-left: -5px;
}
.progress-bar {
  background-color: #4CAF50;
  border-radius: 10px;
}
.testocentro {
  display: block!important;
  margin-top: 5px;
  position: absolute;
  left: 0;
  right: 0;
  font-weight: bold;
}
@keyframes load {
  0% { width: 0; }
  100% { width: 68%; }
}