/* Prevent top/bottom rubber-band stretch on scrollable pages */
html,
body {
    overscroll-behavior-x: none;
    overscroll-behavior-y: none;
}

html {
    height: 100%;
}

body {
    min-height: 100%;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}
