@media  screen and (min-width: 768px) {/*OCULTAR */
    body #magicMouseCursor {
        position: fixed;
        width: 35px;
        height: 35px;
        border: 1px solid #28a745c9;
        border-radius: 50%;
        z-index: 9999;
        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: 5px;
        width: 5px;
        top: 0;
        left: 0;
        z-index: 9999;
        position: fixed;
        background: #28a745c9;
        border-radius: 50%;
        pointer-events: none;
        transition: background 0.2s, width 0.2s, height 0.2s, box-shadow 0.2s;
    }

    body #magicPointer.is-hover {
        background: grey;
    }

    body #magicPointer.pointer-blur {
        height: 50px;
        width: 50px;
        background: #28a74573;
        border: 0px solid #28a745c9;
        box-shadow: 0px 0px 15px -5px #28a74573;
        z-index: 3333;
    }

    body #magicPointer.pointer-overlay {
        height: 50px;
        width: 50px;
        mix-blend-mode: difference;
        box-shadow: 0px 0px 15px -5px #28a745c9;
    }

    body .magic-hover {
        transition: all 0.2s;
    }

    body .magic-hover:hover {
        cursor: none;
    }

}
