/* 
    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: 1px solid transparent; */
    position: fixed;
    /* border-radius: 4px; */
    /* z-index: 101; */
    pointer-events: none;
    /* transition: border-color 0.5s; */
    /* visibility: hidden; */

    width: 0px;
    height: 0px;
    background: #104FF5;
    pointer-events: none;
    position: fixed;
    z-index: 9999;
    border-radius: 50%;
    transition-duration: 200ms;
    transition-timing-function: ease-out;
}

#pointer-ring {
    left: 0;
    top: 0;
    
    width: 15px;
    height: 15px;
    background: #104FF5;
    pointer-events: none;
    position: fixed;
    z-index: 9999;
    border-radius: 50%;
    transition-duration: 200ms;
    transition-timing-function: ease-out;
    
    display: none;
}

#pointer-dot.drag,
#pointer-dot.prev-cursor,
#pointer-dot.next-cursor,
#pointer-dot.view,
#pointer-dot.scrollcursor,
#pointer-dot.click {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#pointer-dot.drag:before,
#pointer-dot.prev-cursor:before,
#pointer-dot.next-cursor:before,
#pointer-dot.view:before,
#pointer-dot.scrollcursor:before,
#pointer-dot.click:before {
    content: 'Drag';
    font-weight: 600;
    font-size: 12px;
    font-family: 'urbanist', sans-serif;
    color: #fff;
}

#pointer-dot.prev-cursor:before {
    content: 'Prev';
}

#pointer-dot.next-cursor:before {
    content: 'Next';
}

#pointer-dot.view:before {
    content: 'View';
}

#pointer-dot.scrollcursor:before {
    content: 'Scroll';
}

#pointer-dot.click::before {
    content: "Click";
}


