/*#############################################################################
# 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%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 999;
  }

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

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

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