.level-up-canvas {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #00000088;
  display: none;
}

.level-up-bg {
  position: absolute;
  height: 100%;
  width: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.level-up-aura {
  position: absolute;
  height: 100%;
  width: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: level-up-aura 3s;
}

.level-up-aura-round {
  position: absolute;
  height: 60%;
  width: auto;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
  animation: aura-rotate-constant 5s linear infinite, aura-fade-in 3s;
}

.level-up-avatar {
  position: absolute;
  height: 40%;
  width: auto;
  left: 50%;
  top: 60%;
  transform: translate(-50%,-50%);
  animation: aura-fade-in 2s;
}

.level-up-arrow {
  position: absolute;
  height: 11%;
  width: auto;
  left: 50%;
  top: 11%;
  transform: translateX(19vh);
  animation: arrow-fade-in 1.5s;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes aura-fade-in {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes arrow-fade-in {
  0% {
    opacity: 0;
    top: 15%;
  }
  50% {
    opacity: 0;
    top: 15%;
  }
  100% {
    opacity: 1;
    top: 11%;
  }
}

@keyframes level-up-aura {
  0% {
    width: 0px;
  }

  50% {
    width: 0px;
  }

  100% {
    width: 77.119460501vh;
  }
}

@keyframes aura-rotate-constant {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  25% {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  50% {
    transform: translate(-50%, -50%) rotate(180deg);
  }

  75% {
    transform: translate(-50%, -50%) rotate(270deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
