@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@-o-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  overflow: hidden;
  height: 100%;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #ffffff;
  text-align: center;
  background-color: #337ab7;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.3s ease;
  box-shadow: 0 0 5px rgba(64, 64, 64, 0.25);
}
.progress-striped .progress-bar,
.progress-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  -webkit-background-size: 40px 40px;
          background-size: 40px 40px;
}
.progress-striped {
  background-image: -webkit-linear-gradient(45deg, transparent 25%, rgba(64, 64, 64, 0.1) 25%, rgba(64, 64, 64, 0.1) 50%, transparent 50%, transparent 75%, rgba(64, 64, 64, 0.1) 75%, rgba(64, 64, 64, 0.1));
  background-image: -o-linear-gradient(45deg, transparent 25%, rgba(64, 64, 64, 0.1) 25%, rgba(64, 64, 64, 0.1) 50%, transparent 50%, transparent 75%, rgba(64, 64, 64, 0.1) 75%, rgba(64, 64, 64, 0.1));
  background-image: linear-gradient(45deg, transparent 25%, rgba(64, 64, 64, 0.1) 25%, rgba(64, 64, 64, 0.1) 50%, transparent 50%, transparent 75%, rgba(64, 64, 64, 0.1) 75%, rgba(64, 64, 64, 0.1));
  -webkit-background-size: 40px 40px;
          background-size: 40px 40px;
}
.progress.activeprogress .progress-bar,
.progress.activeprogress {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
  margin: 0;
  padding: 0;
  border: 0;
}
.progress-bar-success {
  background-color: #5cb85c;
}
.progress-bar-info {
  background-color: #5bc0de;
}
.progress-bar-warning {
  background-color: #f0ad4e;
}
.progress-bar-danger {
  background-color: #d9534f;
}

.progress {
    position: relative;
}
.progress-bar {
    position: absolute;
    overflow: hidden;
}
.progress-centered-label-back {
    position: absolute;
    text-align: center;
}
.progress-centered-label-back, .progress-centered-label-front {
    width: 100%;
    height: 100%;
    line-height: 20px;
    font-size: 12px;
    text-align: center;
}
