// Progress bars
// *******************************************************************************

@mixin template-progress-bar-theme($background, $color: null) {
  .progress-bar {
    background-color: $background;
    color: if($color, $color, color-contrast($background));
  }
}
@mixin template-progress-shadow-theme($parent, $background) {
  #{$parent} {
    box-shadow: 0 0.125rem 0.375rem 0 rgba($background, 0.3);
  }
}
