.b-progress {
  display: flex;
  height: 1.25rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e3e3e3;
  border-radius: 0.25rem;
}

.b-progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  text-align: center;
  background-color: $color-primary;
  transition: width 0.6s ease;
  &.danger {
    background-color: $color-danger;
  }
  &.info {
    background-color: $color-info;
  }
  &.success {
    background-color: $color-success;
  }
  &.warning {
    background-color: $color-warning;
  }
}
