html,
body {
    cursor: url("./normal_select.png") 5 5, default;
}

a,
a *,
button,
[role="button"],
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="radio"],
input[type="checkbox"],
label,
label * {
    cursor: url("./link_select.png") 14 5, pointer !important;
}

*[style*="cursor: pointer"],
.pointer {
    cursor: url("./link_select.png") 14 5, pointer !important;
}

/* Evita que el navegador use el cursor nativo sobre los círculos de opción */
label input[type="radio"],
label input[type="checkbox"] {
    pointer-events: none;
}