@charset "UTF-8";

body {
    visibility: hidden;
}

.r18mask_scroll_off {
    overflow: hidden;
}

.r18mask_force_visible {
    visibility: visible !important;
}

@media screen and (orientation: portrait) {
    .r18mask_portrait {
        z-index: 99999;
        position: fixed !important;
        background-color: white;
        overflow: auto !important;
        -webkit-overflow-scrolling: touch;
        pointer-events: auto !important;
        height: calc(100vh - 0px) !important;
        width: calc(120vw);
    }
    .r18mask_landscape {
        width: calc(100vw - 0%) !important;
        zoom:0;
    }
}

@media screen and (orientation: landscape) {
    .r18mask_landscape {
        z-index: 99999;
        position: fixed !important;
        background-color: white;
        overflow: auto !important;
        -webkit-overflow-scrolling: touch;
        pointer-events: auto !important;
        height: calc(120vh);
        width: calc(100vw - 0px) !important;
    }
    .r18mask_portrait {
        height: calc(100vh - 0%) !important;
        zoom:0;
    }
}