/* Prevent zoom gestures and double-tap zoom interactions on touch devices. */
html,
body,
* {
  touch-action: manipulation;
}

body {
  -ms-touch-action: manipulation;
}
