/* =========================================================
   STAFFLAND CUSTOM CURSOR V1
   ========================================================= */

html,
body{
    cursor:
        url('/assets/cursors/staffland-default.svg') 4 4,
        auto;
}

/* clickable elements */
a,
button,
summary,
label,
select,
[role="button"],
input[type="submit"],
input[type="button"],
input[type="reset"],
.sl-chat-button,
.sl-profile,
.sl-login,
.sl-register,
.sl-menu-btn{
    cursor:
        url('/assets/cursors/staffland-pointer.svg') 4 4,
        pointer !important;
}

/* text fields keep normal text caret */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="number"],
textarea{
    cursor:text !important;
}

/* disabled elements */
button:disabled,
input:disabled,
select:disabled,
textarea:disabled{
    cursor:not-allowed;
}

/* touch devices */
@media (pointer:coarse){
    html,
    body,
    a,
    button,
    summary,
    label,
    select,
    [role="button"],
    input[type="submit"],
    input[type="button"],
    input[type="reset"]{
        cursor:auto !important;
    }
}

/* /STAFFLAND CUSTOM CURSOR V1 */
