// Outputs width

@mixin u-z($value…) {

$important: null;
@if has-important($value) {
  $value: remove($value, "!important");
  $important: " !important";
}
z-index: get-uswds-value(z-index, $value...) #{$important};

}