body {
  margin: 0;
}

.app-loading {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.app-loading.full-h {
  height: 100vh
}

.app-loading img {
  display: block;
  width: 256px;
  max-width: 256px;
}

.app-loading .loader, .app-loading .loader:before, .app-loading .loader:after {
  border-radius: 50%;
  width: 12px;
  height: 12px;
  animation-fill-mode: both;
  animation: bblFadInOut 1.8s infinite ease-in-out;
}

.app-loading .loader {
  color: #1e96f7;
  font-size: 7px;
  margin-top: 40px;
  position: relative;
  text-indent: -9999em;
  transform: translateZ(0);
  animation-delay: -0.16s;
}

.app-loading .loader:before,
.app-loading .loader:after {
  content: '';
  position: absolute;
  top: 0;
}

.app-loading .loader:before {
  left: -3.5em;
  animation-delay: -0.32s;
}

.app-loading .loader:after {
  left: 3.5em;
}

@keyframes bblFadInOut {
  0%, 80%, 100% {
    box-shadow: 0 2.5em 0 -1.3em
  }

  40% {
    box-shadow: 0 2.5em 0 0
  }
}