#app {
  height: 100%;
}

.pb-admin-entry {
  position: absolute;
  z-index: 10000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  user-select: none;
  color: var(--el-color-info);
  background-color: var(--el-fill-color-light);
}

.pb-admin-entry .text {
  position: relative;
  font-size: 24px;
  margin-top: 60px;
}

/* 3D tower loader made by: csozi | Website: www.csozi.hu */

.pb-admin-entry .loader {
  scale: 3;
  height: 50px;
  width: 40px;
}

.pb-admin-entry .loader .box {
  position: relative;
  opacity: 0;
  left: 10px;
}

.pb-admin-entry .loader .side-left {
  position: absolute;
  background-color: #286cb5;
  width: 19px;
  height: 5px;
  transform: skew(0deg, -25deg);
  top: 14px;
  left: 10px;
}

.pb-admin-entry .loader .side-right {
  position: absolute;
  background-color: #2f85e0;
  width: 19px;
  height: 5px;
  transform: skew(0deg, 25deg);
  top: 14px;
  left: -9px;
}

.pb-admin-entry .loader .side-top {
  position: absolute;
  background-color: #5fa8f5;
  width: 20px;
  height: 20px;
  rotate: 45deg;
  transform: skew(-20deg, -20deg);
}

.pb-admin-entry .loader .box-1 {
  animation: from-left 4s infinite;
}

.pb-admin-entry .loader .box-2 {
  animation: from-right 4s infinite;
  animation-delay: 1s;
}

.pb-admin-entry .loader .box-3 {
  animation: from-left 4s infinite;
  animation-delay: 2s;
}

.pb-admin-entry .loader .box-4 {
  animation: from-right 4s infinite;
  animation-delay: 3s;
}

@keyframes from-left {
  0% {
    z-index: 20;
    opacity: 0;
    translate: -20px -6px;
  }

  20% {
    z-index: 10;
    opacity: 1;
    translate: 0 0;
  }

  40% {
    z-index: 9;
    translate: 0 4px;
  }

  60% {
    z-index: 8;
    translate: 0 8px;
  }

  80% {
    z-index: 7;
    opacity: 1;
    translate: 0 12px;
  }

  100% {
    z-index: 5;
    translate: 0 30px;
    opacity: 0;
  }
}

@keyframes from-right {
  0% {
    z-index: 20;
    opacity: 0;
    translate: 20px -6px;
  }

  20% {
    z-index: 10;
    opacity: 1;
    translate: 0 0;
  }

  40% {
    z-index: 9;
    translate: 0 4px;
  }

  60% {
    z-index: 8;
    translate: 0 8px;
  }

  80% {
    z-index: 7;
    opacity: 1;
    translate: 0 12px;
  }

  100% {
    z-index: 5;
    translate: 0 30px;
    opacity: 0;
  }
}
