.progress-outer {
  background: #fff;
  border-radius: 20px;
  padding: 10px;
  margin: 10px 0;
  box-shadow: 0 0 10px rgba(209, 219, 231,0.7);
}

.progress {
  height: 27px;
  margin: 0;
  overflow: visible;
  border-radius: 50px;
  background: #eaedf3;
  box-shadow: inset 0 10px 10px rgba(244, 245, 250,0.9);
}

.progress .progress-bar {
  border-radius: 50px;
}

.progress .progress-value {
  position: relative;
  left: -5px;
  top: auto;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 2px;
}

.progress-bar.active {
  animation: reverse progress-bar-stripes 0.40s linear infinite, animate-positive 2s;
}

@keyframes animate-positive {
  0% { width: 0%; }
  100% { width: 100%; }
}

