        .sprite-animation {
            position: fixed;
            right: 20px;
            top: 50%;
            bottom: auto;
            width: 125px;
            height: 132px;
            background-image: url(images/jqr.png);
            background-repeat: no-repeat;
            animation: play 1s steps(10) infinite;
            z-index: 9999;}

        .sprite-animation span {
            position: absolute;
            right: 0;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            width: 100%;
            background-image: linear-gradient(45deg, #ff007b, #00b90f);
            -webkit-background-clip: text;
            color: transparent;
            -webkit-text-fill-color: transparent;}

        @keyframes play {
            from {
                background-position: 0 0;}

            to {
                background-position: -1250px 0;}
        }

