/* NO SELECT + HIGHLIGHT COLOR 
* {
  user-select: none;
  
}*/

*::selection {
  background: none;
}
*::-moz-selection {
  background: none;
}

*:not(input), *:focus:not(input) {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline-style:none;/*IE*/
}