/*---------------------------------------------------------------------------------------------
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
* See LICENSE.md in the project root for license terms and full copyright notice.
*--------------------------------------------------------------------------------------------*/
@import "../variables";

.uifw-position-popup {
  border: {
    color: $uifw-popup-border-color;
    radius: $uifw-popup-border-radius;
    style: solid;
    width: $uifw-popup-border-width;
  }

  background-color: rgba($buic-background-2-rgb, $uifw-popup-opacity);
  position: fixed;
  height: fit-content;
  width: fit-content;

  .uifw-position-popup-content {
    padding: $uifw-popup-content-padding;
  }

  &.uifw-no-border {
    border-width: 0;
  }

}
