/*---------------------------------------------------------------------------------------------
* 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";

.uifw-message-renderer {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  top: 0;
  right: 0;
  position: fixed;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  @include uicore-z-index(dialog-popup);
}

@media screen and (min-width: 401px) {
  .uifw-message-renderer {
    min-width: 400px;
    max-width: 640px;
    margin-top: 24px;
  }
}
