//
// Background Cover Mixin
// --------------------------------------------------

.bg-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.bg-contain {
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.background-image-url(@path) {
  background-image: url('@{path}');
}
