* { /* nothing in the app pages needs to be selectable */
    /* ios giving reasons to hate them */

    -webkit-touch-callout: none;
    -webkit-user-callout: none;
    -webkit-user-modify: none;
    -webkit-highlight: none;

    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;

    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

::-webkit-scrollbar {display: none;}

body, html {touch-action: pan-x pan-y;}
body, html, iframe {
    overflow: clip;
    -ms-overflow-style: none;
    overscroll-behavior: none;

    position: fixed;

    scrollbar-width: none;
}