/* ------------------------------------ *\
  Z INDEX MIXIN
  see `_settings-z-index.scss`
\* ------------------------------------ */

$indexes: map-get($bolt-z-indexes, 'sets');

@each $key, $value in $indexes {
  .u-bolt-z-index--#{$key}, // DEPRECATED.  Utility classes with double dashes will be removed in the next major release.
  .u-bolt-z-index-#{$key} {
    @include bolt-z-index($key, $utility: true);
  }
}
