/*---------------------------------------------------------------------------------------------
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
* See LICENSE.md in the project root for license terms and full copyright notice.
*--------------------------------------------------------------------------------------------*/
@import "~@bentley/ui-core/lib/ui-core/z-index";
@import "variables";

.nz-zones-outline {
  $thickness: $nz-zone-padding * 0.5;

  padding: $thickness;
  box-sizing: border-box;
  position: absolute;

  @include uicore-z-index(zone-outline);

  &:after {
    content: "";
    width: 100%;
    height: 100%;
    box-shadow: 0 0 $thickness $thickness $nz-outline-color,
      0 0 $thickness $thickness $nz-outline-color inset;
    display: block;
  }
}
