/*
==========================================================

PremiumZone

Version :
3.0.0

File :
assets/system/boot.css

Description :
PremiumZone Boot Layout

==========================================================
*/

/* ==========================================================
   HTML
========================================================== */

html{

    width:100%;

    min-height:100%;

    background:#000000;

}

/* ==========================================================
   BODY
========================================================== */

body{

    margin:0;

    padding:0;

    min-height:100vh;

    background:#000000;

    color:#FFFFFF;

}

/* ==========================================================
   APP
========================================================== */

#pz-app{

    position:relative;

    width:100%;

    min-height:100vh;

    background:#000000;

}

/* ==========================================================
   BACKGROUND
========================================================== */

#pz-background{

    position:fixed;

    inset:0;

    z-index:1;

    overflow:hidden;

}

/* ==========================================================
   STAGE
========================================================== */

#pz-stage{

    position:relative;

    z-index:100;

    width:100%;

    min-height:100vh;

}

/* ==========================================================
   OVERLAY
========================================================== */

#pz-overlay{

    position:fixed;

    inset:0;

    z-index:1000;

    pointer-events:none;

}

/* ==========================================================
   DESKTOP
========================================================== */

@media(

    min-width:768px

){

    #pz-app{

        max-width:720px;

        margin:0 auto;

    }

}