/* Keep only the application-owned native input on mobile support pages. */
@media (max-width: 760px) {
  html body.player-support-route #root .support-chat.standalone > .support-keyboard-composer,
  html body.player-support-route #root .support-chat.standalone > .support-keyboard-layer {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  html body.player-support-route #root .support-chat.standalone > footer:not(.support-keyboard-composer) input {
    pointer-events: auto !important;
    touch-action: manipulation !important;
    -webkit-user-select: text !important;
    user-select: text !important;
  }
}
