body #magicMouseCursor {
    position: fixed;
    width: 35px;
    height: 35px;
    border: 1px solid #fff;
    border-radius: 50%;
    z-index: 999999999;
    left: 0;
    top: 0;
    transition: transform 0.07s, width 0.3s, height 0.3s;
    pointer-events: none;
}
body #magicMouseCursor.cursor-square {
    border-radius: 0;
}
body #magicPointer {
    height: 16px;
    width: 16px;
    top: 0;
    left: 0;
    position: fixed;
    background: #d7ac5e;
    border-radius: 50%;
    pointer-events: none;
    transition: background 0.5s, width 0.5s, height 0.5s, box-shadow 0.5s;
    z-index: 999999999;
}
body #magicPointer.is-hover {
    background: red;
}
body #magicPointer.pointer-blur {
    height: 95px;
    width: 95px;
    background: none;
    border: 1px solid #d7ac5e;
}
body #magicPointer.pointer-overlay {
    height: 50px;
    width: 50px;
    mix-blend-mode: difference;
    box-shadow: 0px 0px 15px -5px white;
}
body .magic-hover {
    transition: all 0.2s;
}