/* #############################################################################
# PROGRESS BAR
############################################################################# */


div.progress-bar {
  background-color: #F9F9FB;
  border: 1px solid #E9EAEA;
  height: 12px;
  width: 100%;
  margin: 0 0 20px;

  @include border-radius(6px);

  .progress {
    background-color: $color-primary;
    height: 10px;

    @include border-radius(5px);
  }

  // Bar States

  &.alert {
    .progress {
      background-color: $color-alert;
    }
  }
}

/* #############################################################################
# LOADING LAYER
############################################################################# */


.loading-layer {
  .layer-transparent-background {
    position: fixed;
    width: 100%;
    inset: 0;
    background-color: rgb(255 255 255 / 70%);
    z-index: 999;
  }

  .loader-container {
    display: flex;
    justify-content: center;

    .loader {
      z-index: 1000;
      position: fixed;
      top: 45%;
    }

    .loader, .animate-rotation {
      width: 78px;
    }
  }
}
