Current File : /home/mdkeenpw/public_html/wp-content/themes/logistik/assets/sass/utilities/_background.scss
@each $bgcolorMap, $value in $bgcolorMap {
  .bg-#{$bgcolorMap} {
    background-color: #{$value} !important;
  }
}

.background-image,
[data-bg-src] {
  @include background-content(no-repeat, cover, center center);
}

.bg-fluid {
  @include background-content(no-repeat, 100% 100%, center center);
}

.bg-auto {
  background-size: auto auto;
}

.bg-top-center {
  background-size: auto;
  background-position: top center;
}

.bg-bottom-center {
  background-size: auto;
  background-position: bottom center; 
}

.bg-repeat {
  background-size: auto;
  background-repeat: repeat;
}