body #magicMouseCursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: #000000;
    border: none;
    border-radius: 50%;
    z-index: 9999;
    left: 0;
    top: 0;
    transition: transform 70ms, width 0.3s, height 0.3s;
    pointer-events: none;
}
body #magicPointer {
    height: 10px;
    width: 10px;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0);
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 25%, rgba(0, 0, 0, 0.07) 40%, rgba(0, 0, 0, 0) 67%);
    border-radius: 50%;
    border: 3px solid rgba(0 0 0 0);
    pointer-events: none;
    transition: all 0.2s;
    z-index: 1000;
}
body #magicPointer.pointer-blur {
    z-index: 1000;
    height: 120px;
    width: 120px;
}
a:hover {
    cursor: none;
}
#wp-admin-bar-root-default,
#wp-admin-bar-root-default a,
#wp-admin-bar-root-default a:hover {
    cursor: default;
}
