
/* Disable User Selection for ALL Components - Enable again for Input below */
* {
        -webkit-touch-callout:none;
        -webkit-user-select:none;
        -moz-user-select:none;
        -ms-user-select:none;
        user-select:none;
}

input, textarea {
        -webkit-touch-callout:default;
        -webkit-user-select:text;
        -moz-user-select:text;
        -ms-user-select:text;
        user-select:text;
}