.app-loader {
    height: 100%;
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
}

.loader-spin {
  text-align: center;
}
@keyframes hipsterSpinMove {
  to {
    opacity: 1;
  }
}
@keyframes hipsterRotate {
  to {
    transform: rotate(405deg);
  }
}

.main-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}