/*---------------------------------------------------------------------------------------------
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
* See LICENSE.md in the project root for license terms and full copyright notice.
*--------------------------------------------------------------------------------------------*/
@import "../button/hollow";

// cspell:ignore loadingprompt

.core-loadingprompt {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  .title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
    color: $buic-foreground-body; /* rgba(black, 0.75); */
  }

  .message {
    font-size: 14px;
    margin-bottom: 1.75em;
    color: $buic-foreground-body; /* rgba(black, 0.85); */
  }
}

/* cancel button */
.loading-prompt-cancel {
  @include uicore-buttons-hollow;
  margin-top: 2em;
}
