.adp-progress-bar .progress {
  overflow: hidden;
  height: 15px;
  margin-bottom: 10px;
  background-color: #f5f5f5;
  border-radius: 0px;
}
.adp-progress-bar .progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #ffffff;
  text-align: center;
  background-color: #3ebede;
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
}
.adp-progress-bar .progress.active .progress-bar,
.adp-progress-bar .progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}
.adp-progress-bar .progress-bar-success {
  background-color: #5cb85c;
}
.adp-progress-bar .progress-bar-info {
  background-color: #5bc0de;
}
.adp-progress-bar .progress-bar-warning {
  background-color: #f0ad4e;
}
.adp-progress-bar .progress-bar-danger {
  background-color: #d9534f;
}
.adp-progress-bar .progress-bar-counter {
  text-align: center;
  color: #3ebede;
  font-family: inherit;
  font-weight: 500;
  margin-top: 0;
  font-size: 20px;
}
.adp-progress-bar .progress-bar-indeterminate {
  float: left;
  width: 25%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #ffffff;
  text-align: center;
  background-color: #3ebede;
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
}
.adp-progress-bar .complete {
  font-size: 14px;
}
