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

.nz-popup-tooltip {
  position: absolute;
  background-color: $buic-background-tooltip;
  color: var(--iui-color-text);
  display: grid;
  grid-auto-flow: column;
  grid-gap: 5px;
  align-items: center;
  padding: 5px 10px;

  @include uicore-z-index(tooltip);

  > .nz-content {
    white-space: nowrap;
  }
}
