/* 

html {
    cursor: none !important;
}

#follower {
    position: fixed;
    pointer-events: none;
    top: 50%;
    left: 50%;
    z-index: 1000;
}

#follower #circle1 {
    z-index: 1000;
    position: fixed;
    pointer-events: none;
    -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
    background: #fc4520;
    border-radius: 50%;
    height: 0em;
    width: 0em;
    margin-top: 0em;
    margin-left: 0em;
}

#follower #circle2 {
    z-index: 1000;
    position: fixed;
    -webkit-animation: pulse 4s infinite;
    animation: pulse 4s infinite;
    border-radius: 50%;
    border: #fc4520;
    border-style: solid;
    border-width: 1px;
    height: 0em;
    width: 0em;
    margin-top: 0em;
    margin-left: 0em;
}
#follower #circle3 {
    z-index: 1000;
    position: fixed;
    background: #fff;
    border-radius: 50%;
    height: 10px;
    width: 10px;
    margin-top: -5px;
    margin-left: -5px;
}

.touch #follower {
    display: none;
}


@-moz-keyframes pulse {
    0% {
        opacity: 0.2;
        height: 1em;
        width: 1em;
        margin-top: -0.5em;
        margin-left: -0.5em;
    }

    50% {
        opacity: 0.9;
        height: 3em;
        width: 3em;
        margin-top: -1.5em;
        margin-left: -1.5em;
    }

    100% {
        opacity: 0.2;
        height: 1em;
        width: 1em;
        margin-top: -0.5em;
        margin-left: -0.5em;
    }
}

@-webkit-keyframes pulse {
    0% {
        opacity: 0.2;
        height: 1em;
        width: 1em;
        margin-top: -0.5em;
        margin-left: -0.5em;
    }

    50% {
        opacity: 0.9;
        height: 3em;
        width: 3em;
        margin-top: -1.5em;
        margin-left: -1.5em;
    }

    100% {
        opacity: 0.2;
        height: 1em;
        width: 1em;
        margin-top: -0.5em;
        margin-left: -0.5em;
    }
}

@-o-keyframes pulse {
    0% {
        opacity: 0.2;
        height: 1em;
        width: 1em;
        margin-top: -0.5em;
        margin-left: -0.5em;
    }

    50% {
        opacity: 0.9;
        height: 3em;
        width: 3em;
        margin-top: -1.5em;
        margin-left: -1.5em;
    }

    100% {
        opacity: 0.2;
        height: 1em;
        width: 1em;
        margin-top: -0.5em;
        margin-left: -0.5em;
    }
}

@keyframes pulse {
    0% {
        opacity: 0.2;
        height: 1em;
        width: 1em;
        margin-top: -0.5em;
        margin-left: -0.5em;
    }

    50% {
        opacity: 0.9;
        height: 3em;
        width: 3em;
        margin-top: -1.5em;
        margin-left: -1.5em;
    }

    100% {
        opacity: 0.2;
        height: 1em;
        width: 1em;
        margin-top: -0.5em;
        margin-left: -0.5em;
    }
} */