﻿.SXTG-QR {
    animation: mymove 20s infinite;
    -webkit-animation: mymove 20s infinite;
    position: fixed;
    right: 2%;
    top: 5%;
    width: 100px;
    height: 100px;
    text-transform: uppercase;
    text-align: center;
    font-size: 14px;
    font-family: Arial, sans-serif;
    line-height: 35px;
    background: url(../../image/Uploadfiles/Banner/transparent.png);
    overflow: hidden;
    transition: all .3s;
    z-index: 2000;
}

    .SXTG-QR:hover {
        animation-play-state: paused
    }

@keyframes mymove {
    0% {
        right: 50%;
        top: 0px;
    }

    25% {
        right: calc(100% - 100px);
        top: 40%;
    }

    50% {
        right: 50%;
        top: calc(100% - 100px);
    }

    75% {
        right: 0%;
        top: 40%;
    }


    100% {
        right: 50%;
        top: 0px;
    }
}

@-webkit-keyframes mymove {
    0% {
        right: 50%;
        top: 0px;
    }

    25% {
        right: calc(100% - 100px);
        top: 40%;
    }

    50% {
        right: 50%;
        top: calc(100% - 100px);
    }

    75% {
        right: 0%;
        top: 40%;
    }


    100% {
        right: 50%;
        top: 0px;
    }
}
