@charset "utf-8";
#oc-mouse {
    width: 50px;
    height: 50px;
    display: block;
    position: fixed;
    left: -100%;
    top: -100%;
    z-index: 999999;
    border-radius: 50%;
    box-sizing: border-box;
    transform: translate3d(-50%, -50%, 0);
    -webkit-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    overflow: visible;
    pointer-events: none;
}

#oc-mouse::after {
    content: " ";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../images/cursor.png) no-repeat 0 0;
    background-size: 100%;
    border-radius: 50%;
    box-sizing: border-box;
    opacity: 0;
    transform: scale(0, 0);
    -webkit-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
}

#oc-mouse.active::after {
    opacity: 1;
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
}


@media (min-width: 1px) and (max-width: 768px){
    #oc-mouse {
        display: none;
    }
}