#app .app-loading-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 140px;
  background-color: #f5f4f5;
}

#app .app-loading-wrapper .app-logo {
  width: 1em;
  height: 1em;
}

#app .app-loading-wrapper .app-title {
  display: flex;
  font-family: 'Segoe UI';
  font-weight: 600;
  line-height: 1;
  font-size: 32px;
  margin-top: 16px;
  color: #617eef;
}

#app .app-loading-wrapper .app-title-letter {
  letter-spacing: 1px;
  animation-name: opacity;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
}

@keyframes opacity {
  30% {
    transform: translateX(1px);
    opacity: 0;
  }

  55% {
    transform: translateX(0);
    opacity: 1;
  }
}
