.hint-cursor {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 123px;
    transform: translate(-50%, -50%);
    background-size: 100%;
    background-image: url('../images/hand_icon.png');
    opacity: 0;
    pointer-events: none;
    display: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.hint-cursor.visible {
    display: block;
    opacity: 1;
}

.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;
    }
}

@keyframes scaleIn {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        transform: translate(-50%, -50%) scale(0.8);
    }
}

@keyframes scaleOut {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

.scaleIn {
    animation: scaleIn 0.3s ease-in-out forwards;
    animation-delay: 0.5s;
}

.scaleOut {
    animation: scaleOut 1s ease-in-out forwards;
}