@keyframes ani_hand {
    0% {
        left: 74%;
        transform: rotate(10deg);
    }

    50% {
        left: 14%;
        transform: rotate(1deg);
    }

    100% {
        left: 14%;
        transform: rotate(1deg);
    }

}

@keyframes ani_bar {
    0% {
        width: 5%;
        background-color: rgba(107, 227, 243, 1);
    }

    50% {
        width: 70%;
        right: 10%;
        background-color: rgba(107, 227, 243, .8);
    }

    80% {
        width: 0%;
        left: 22%;
        right: 10%;
        background-color: rgba(107, 227, 243, .5);
    }

    100% {
        width: 0%;
        left: 22%;
        right: auto;
        background-color: rgba(0, 0, 0, 0);
    }
}

.swipe-animation {
    position: absolute;
/*
    bottom: 8%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 150px;
    height: 75px;
*/
    pointer-events: none;
    transition: 0.2s ease opacity;
    z-index: 99;
}

.swipe-animation img {
    width: 100%;
    height: auto;
    transform: translate(30%, -8%);
}

.swipe-animation .inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.swipe-animation .bar {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 70%;
    height: 10%;
    background-color: rgba(232, 241, 66, 1);
    border-radius: 50px;
    animation-name: ani_bar;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
}

.swipe-animation .hand {
    position: absolute;
    top: 24%;
    left: 14%;
    width: 25%;
    height: auto;
    transform: rotate(10deg);
    animation-name: ani_hand;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
}
