@mixin create-z-index($max) {
  @for $i from 1 through $max {
    .z-#{$i} {
      z-index: $i;
    }
  }
}
