/*
 * full-screen-helper.js 1.0.1
 *
 * Copyright (c) 2017 Guilherme Nascimento (brcontainer@yahoo.com.br)
 *
 * Released under the MIT license
 */

html.fsh-infullscreen, html.fsh-infullscreen body {
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
}

html.fsh-infullscreen body.full-screen-helper {
    overflow: auto !important;
}

.full-screen-helper {
    position: absolute !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;

    /* fallback: don't use !important*/
    background-color: #fff;
    z-index: 2147483647;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    overflow-x: scroll !important;
}
