.process-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 999;
}

.process-loading__header {
  display: inline-flex;
  align-items: center;
  margin-bottom: 32px;
  line-height: 1;
}

.process-loading__app {
  margin-left: 16px;
  color: #1c5cb0;
  font-size: 28px;
  font-weight: bold;
}

.process-loading__ball>div {
  display: inline-block;
  background-color: #1c5cb0;
  width: 15px;
  height: 15px;
  margin: 2px;
  border-radius: 100%;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: ball-beat 0.7s 0s infinite linear;
  animation: ball-beat 0.7s 0s infinite linear;
}

.process-loading__ball>div:nth-child(2n-1) {
  -webkit-animation-delay: 0.35s;
  animation-delay: 0.35s;
}

@-webkit-keyframes ball-beat {
  50% {
    opacity: 0.2;
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes ball-beat {
  50% {
    opacity: 0.2;
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
