#cursorDot,
#cursorDotOutline {
    --color-cursor: 255, 255, 255;
    --cursor-size: 14px;
    --cursor-outline-size: 40px;
    z-index: 999;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.15s linear, transform 0.15s ease;
}

#cursorDot {
    width: var(--cursor-size);
    height: var(--cursor-size);
    background-color: rgba(var(--color-cursor), 0.6);
}

#cursorDotOutline {
    width: var(--cursor-outline-size);
    height: var(--cursor-outline-size);
    border: 2px solid rgba(var(--color-cursor), 0.2);
    transition: all 0.02s linear, opacity 0.15s linear, transform 0.15s ease, border-color 0.15s ease;
}
#cursorDotOutline.isHovering {
    background-color: rgba(var(--color-cursor), 0.05);
    border-color: rgba(var(--color-cursor), 0); 
    transform: translate(-50%, -50%) scale(2.4);
}

#cursorDot {
    position: absolute;
    z-index: 999;
    pointer-events: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #586772;
    display: none;
}


@media screen and (max-width: 768px) {
    #cursorDot,
    #cursorDotOutline {
        display: none;
    }
    
}