/* Prevent Google "Tap to see search results" text-selection popup */
html:not(input):not(textarea):not(select),
body:not(input):not(textarea):not(select),
:not(input):not(textarea):not(select):not([contenteditable]) {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Keep text selectable inside form fields & contenteditable areas */
input,
textarea,
select,
[contenteditable="true"],
[contenteditable] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    -webkit-touch-callout: default;
}

/* disable-select class - stops text selection & Google "Touch to Search" */
.disable-select {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none;   /* Chrome / Android / Safari */
    -khtml-user-select: none;
    -moz-user-select: none;      /* Firefox */
    -ms-user-select: none;       /* IE / Edge */
    user-select: none;
}
