#app-loading {
  height: 100vh;
  width: 100%;
  text-align: center;
  background-color: #162e51;
  color: #ffffff;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}

  #app-loading h1 {
      font-size: 24px;
      padding-top: 40vh;
      padding-bottom: 1rem;
  }

.progress {
  background-color: rgb(230,230,230, 0.2);
  height: 0.25rem;
  position: relative;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.progress-bar {
  background-size: 23em 1em;
  height: 100%;
  position: relative;
  background-color: #ffffff;
  animation: cssload-width 2.1s cubic-bezier(.65,.815,.735,.395) infinite;
  -o-animation: cssload-width 2.1s cubic-bezier(.65,.815,.735,.395) infinite;
  -ms-animation: cssload-width 2.1s cubic-bezier(.65,.815,.735,.395) infinite;
  -webkit-animation: cssload-width 2.1s cubic-bezier(.65,.815,.735,.395) infinite;
  -moz-animation: cssload-width 2.1s cubic-bezier(.65,.815,.735,.395) infinite;
}

@keyframes cssload-width {
  0%, 100% {
    transition-timing-function: cubic-bezier(1, 0, 0.65, 0.85);
  }

  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

@-o-keyframes cssload-width {
  0%, 100% {
    -o-transition-timing-function: cubic-bezier(1, 0, 0.65, 0.85);
  }

  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

@-ms-keyframes cssload-width {
  0%, 100% {
    -ms-transition-timing-function: cubic-bezier(1, 0, 0.65, 0.85);
  }

  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes cssload-width {
  0%, 100% {
    -webkit-transition-timing-function: cubic-bezier(1, 0, 0.65, 0.85);
  }

  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

@-moz-keyframes cssload-width {
  0%, 100% {
    -moz-transition-timing-function: cubic-bezier(1, 0, 0.65, 0.85);
  }

  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}
