/* 
    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: none;
    z-index: 1000000;
    position: fixed;
    border-radius: 4px;
    pointer-events: none;
    transition: border-color 0.5s;
}

#pointer-ring {
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    padding: 15px;
    border: none;
    z-index: 1000000;
    position: fixed;
    border-radius: 100px;
    pointer-events: none;
}

/*Large devices (desktops, 992px and up)*/
@media only screen and (min-width: 992px) {
    html {
        cursor: none !important;
    }

    a {
        cursor: none !important;
    }

    #pointer-dot {
        border: 2.5px solid white;
    }

    #pointer-ring {
        border: 1.5px solid rgba(255, 255, 255, 0.5);
    }
}