.hint-cursor {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100px;
  height: 100px;
  transform: translate(-50%, -50%);
  background-size: 100%;
  background-image: url("./assets/images/hand.png");
  pointer-events: none;
  display: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  z-index: 2;
}

.hint-cursor.visible {
  display: block;
}

.animateRight {
  animation: moveRight1 1s forwards;
}

.animateLeft {
  animation: moveLeft 2s forwards;
}

.animateToInitial {
  animation: moveRight2 1s forwards;
}

@keyframes moveRight1 {
  0% {
    left: 50%;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    left: 65%;
    opacity: 1;
  }
}

@keyframes moveLeft {
  0% {
    left: 65%;
    opacity: 1;
  }

  100% {
    left: 35%;
    opacity: 1;
  }
}

@keyframes moveRight2 {
  0% {
    left: 35%;
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    left: 50%;
    opacity: 0;
  }
}
