.d-progress-bar-success .d-progress-bar-indicator {
  background-color: #5cb85c;
}
.d-progress-bar-info .d-progress-bar-indicator {
  background-color: #5bc0de;
}
.d-progress-bar-warning .d-progress-bar-indicator {
  background-color: #f0ad4e;
}
.d-progress-bar-danger .d-progress-bar-indicator {
  background-color: #d9534f;
}
.d-progress-bar-msg::before {
  content: "\00a0";
}
.d-progress-bar-msg-invert::before {
  content: "\00a0";
}
.d-progress-bar {
  display: inline-block;
  position: relative;
  padding: 0;
  width: 100%;
  font-size: 12px;
  height: 1.8em;
  vertical-align: middle;
  overflow: hidden;
  text-align: center;
  box-sizing: border-box;
  border-radius: 4px;
  border: 1px solid transparent;
}
.d-progress-bar-background {
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  height: 100%;
  background-color: #f5f5f5;
  box-shadow: 0 0.1em 0.2em 0.1em rgba(0, 0, 0, 0.1) inset;
}
.d-progress-bar-indicator {
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  height: 100%;
  -webkit-transition: width 0.3s linear 0s;
  transition: width 0.3s linear 0s;
  background-color: #428bca;
}
.d-progress-bar.d-rtl .d-progress-bar-indicator {
  -webkit-transition: width 0.3s linear 0s;
  transition: width 0.3s linear 0s;
  float: right;
  position: relative;
}
.d-progress-bar-msg {
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: absolute;
  font-size: inherit;
  height: 100%;
  width: 100%;
  left: 0;
  line-height: 1.6em;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.d-progress-bar-msg-invert {
  position: absolute;
  font-size: inherit;
  overflow: hidden;
  height: 100%;
  white-space: nowrap;
  line-height: 1.6em;
  text-overflow: ellipsis;
  width: 100%;
  color: #fff;
}
.d-progress-bar-a11y {
  position: relative;
  height: 100%;
  width: 100%;
  border: 0.2em solid transparent;
  box-sizing: border-box;
}
.d-progress-bar-msg-ext {
  overflow: hidden;
}
.d-progress-bar-indeterminate .d-progress-bar-background {
  margin: 0;
  padding: 0;
}
.d-progress-bar-indeterminate .d-progress-bar-indicator {
  margin: 0;
  padding: 0;
  width: 100%;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));
  background-size: 40px 40px;
  -webkit-transition: width 0s;
  transition: width 0s;
  -webkit-animation-name: d-progress-bar-indeterminate-animation;
  animation-name: d-progress-bar-indeterminate-animation;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
  animation-direction: normal;
}
.d-progress-bar-indeterminate.d-rtl .d-progress-bar-indicator {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
  -webkit-transition: width 0s;
  transition: width 0s;
}
@keyframes d-progress-bar-indeterminate-animation {
  0% {
    background-position: 40px 0;
  }
  100% {
    background-position: 0 0;
  }
}
@-webkit-keyframes d-progress-bar-indeterminate-animation {
  0% {
    background-position: 40px 0;
  }
  100% {
    background-position: 0 0;
  }
}
