#app {
  height: 100%;
}

.iking-admin-home {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #736477;
  user-select: none;
  background-color: snow;
}

.iking-admin-home .text {
  position: relative;
  margin-top: 20px;
  font-size: 24px;
}

.iking-admin-home .text::after {
  position: absolute;
  padding-left: 5px;
  content: "...";
}

.iking-admin-home .loader {
  position: relative;
  left: -100px;
  box-sizing: border-box;
  display: block;
  width: 35px;
  height: 10px;
  margin: 8px auto;
  color: #736477;
  animation: shadowRolling 2s linear infinite;
}

@keyframes shadowRolling {
  0% {
    box-shadow: 0 0 rgb(255 255 255 / 0%), 0 0 rgb(255 255 255 / 0%), 0 0 rgb(255 255 255 / 0%), 0 0 rgb(255 255 255 / 0%);
  }

  12% {
    box-shadow: 100px 0 #736477, 0 0 rgb(255 255 255 / 0%), 0 0 rgb(255 255 255 / 0%), 0 0 rgb(255 255 255 / 0%);
  }

  25% {
    box-shadow: 110px 0 #736477, 100px 0 #736477, 0 0 rgb(255 255 255 / 0%), 0 0 rgb(255 255 255 / 0%);
  }

  36% {
    box-shadow: 120px 0 #736477, 110px 0 #736477, 100px 0 #736477, 0 0 rgb(255 255 255 / 0%);
  }

  50% {
    box-shadow: 130px 0 #736477, 120px 0 #736477, 110px 0 #736477, 100px 0 #736477;
  }

  62% {
    box-shadow: 200px 0 rgb(255 255 255 / 0%), 130px 0 #736477, 120px 0 #736477, 110px 0 #736477;
  }

  75% {
    box-shadow: 200px 0 rgb(255 255 255 / 0%), 200px 0 rgb(255 255 255 / 0%), 130px 0 #736477, 120px 0 #736477;
  }

  87% {
    box-shadow: 200px 0 rgb(255 255 255 / 0%), 200px 0 rgb(255 255 255 / 0%), 200px 0 rgb(255 255 255 / 0%), 130px 0 #736477;
  }

  100% {
    box-shadow: 200px 0 rgb(255 255 255 / 0%), 200px 0 rgb(255 255 255 / 0%), 200px 0 rgb(255 255 255 / 0%), 200px 0 rgb(255 255 255 / 0%);
  }
}
