/* 
    This CSS file was created by OwL for use by pointer.js, 
     witch can be found on https://seattleowl.com. 
*/

#pointer-dot {
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border: 2.5px solid #ffffff;
    position: fixed;
    border-radius: 4px;
    z-index: 9999999999999999999999999999999999999999 !important;
    pointer-events: none;
    transition: border-color 0.5s;
}

#pointer-ring {
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    padding: 15px;
    border: 2px solid #ffffff;
    position: fixed;
    border-radius: 100px;
    z-index: 9999999999999999999999999999999999999999 !important;
    pointer-events: none;
}

html {
    cursor: none !important;
}

a {
    cursor: none !important;
} 
 @media screen and (max-width: 600px) {
    a {
        cursor: default !important;
    } 
    #pointer-dot {border:0px solid #ffffff;}
    #pointer-ring {border:0px solid #ffffff;}

 } 