@use '../../global/scss/tools' as nsw;

.nsw-popover {
  display: none;
  width: max-content;
  position: absolute;
  top: 0;
  left: 0;
  min-width: nsw.rem(280px);
  max-width: nsw.rem(280px);
  text-wrap: pretty;
  border-radius: var(--nsw-border-radius);
  box-shadow: var(--nsw-box-shadow);
  background-color: var(--nsw-white);

  @include nsw.z-index('upper');

  &:focus,
  &:active {
    @include nsw.nsw-focus(false);
  }

  &.active {
    display: inline-block;
  }
}
