.demo {
  background: #dad9d4;
}

.progress {
  height: 40px;
  background: #fff;
  border-radius: 100px;
  box-shadow: none;
  margin-top: 40px;
  position: relative;
}

.progress .progress-title {
  width: 30%;
  height: 100%;
  background: #fff;
  border-radius: 100px 0 0 100px;
  float: left;
  margin: 0;
  font-size: 15px;
  color: #000;
  line-height: 40px;
  letter-spacing: 1px;
  text-align: center;
  font-weight: bolder;
}

.progress-title1 {
  width: 20%;
  height: 100%;
  background: #fff;
  border-radius: 100px 0 0 100px;
  float: right;
  margin: 0;
  font-size: 25px;
  color: #000;
  line-height: 40px;
  letter-spacing: 1px;
  text-align: center;
  font-weight: bolder;
}

.progress .progress-title:after {
  border-left: 10px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  position: absolute;
  top: 10px;
  right: -10px;
  z-index: 1;
}

.progress .progress-bar {
  width: 80%;
  background: #fff;
  box-shadow: none;
}

.progress .progress-value {
  height: 100%;
  border-radius: 0 100px 100px 0;
  font-size: 15px;
  font-weight: bold;
  line-height: 40px;
  color: grey;
  animation: animate-positive 2s;
}

.progress.red .progress-value {
  background-image: linear-gradient(135deg, #FDD819 10%, #E80505 100%);
  background-size: 400% 400%;
  animation: gradient 2s ease infinite;
}

.progress.green .progress-value {
  background-image: linear-gradient(135deg, #FFF720 10%, #3CD500 100%);
  background-size: 400% 400%;
  animation: gradient 2s ease infinite;
}

.progress.blue .progress-value {
  background-image: linear-gradient(135deg, #52E5E7 10%, #130CB7 100%);
  background-size: 400% 400%;
  animation: gradient 2s ease infinite;
}

.progress.yellow .progress-value {
  background-image: linear-gradient(135deg, #8312d3 10%, #a83279 100%);
  background-size: 400% 400%;
  animation: gradient 2s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes animate-positive {
  0% {
    width: 0;
  }
}
@media only screen and (max-width: 480px) {
  .progress .progress-title {
    font-size: 12px;
    letter-spacing: 0;
  }
}

/*# sourceMappingURL=progress.css.map */
