/*---------------------------------------------------------------------------------------------
* 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";

.nz-zones-zones {
  position: relative;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  transition: visibility 0.5s ease, opacity 0.5s ease;

  &.nz-hidden {
    opacity: 0;
    visibility: hidden;
  }
}
