/*---------------------------------------------------------------------------------------------
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
* See LICENSE.md in the project root for license terms and full copyright notice.
*--------------------------------------------------------------------------------------------*/
.uifw-statusFields-promptField {
  $font-size-medium: 12px;
  $font-size-small: $font-size-medium;

  overflow: hidden;

  &.nz-footer-mode {
    width: 20em;
  }

  &:not(.nz-footer-mode) {
    width: 16em;
  }

  @media only screen and (max-width: 768px) {
    font-size: $font-size-medium;

    &.nz-footer-mode {
      width: 12em;
    }

    &:not(.nz-footer-mode) {
      width: 10em;
    }
  }

  @media only screen and (max-width: 600px) {
    font-size: $font-size-small;

    &.nz-footer-mode {
      width: 10em;
    }

    &:not(.nz-footer-mode) {
      width: 8em;
    }
  }
}
