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

PremiumZone

Sprint :
PZ-002

File :
assets/css/core/reset.css

Description :
Global Reset

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

/* ==========================================================
   PZ RESET : ALL
========================================================== */

*,
*::before,
*::after{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

/* ==========================================================
   PZ RESET : HTML
========================================================== */

html{

    width:100%;

    height:100%;

    font-size:16px;

    -webkit-text-size-adjust:100%;

    scroll-behavior:smooth;

}

/* ==========================================================
   PZ RESET : BODY
========================================================== */

body{

    width:100%;

    height:100%;

    overflow:hidden;

    background:#000000;

    color:#FFFFFF;

}

/* ==========================================================
   PZ RESET : ROOT
========================================================== */

#pz-app,

#pz-screen{

    width:100%;

    height:100%;

}

/* ==========================================================
   PZ RESET : LINK
========================================================== */

a{

    color:inherit;

    text-decoration:none;

}

/* ==========================================================
   PZ RESET : BUTTON
========================================================== */

button{

    font:inherit;

    background:none;

    border:none;

    outline:none;

}

/* ==========================================================
   PZ RESET : INPUT
========================================================== */

input,

textarea,

select{

    font:inherit;

    background:none;

    border:none;

    outline:none;

    color:inherit;

}

/* ==========================================================
   PZ RESET : IMAGE
========================================================== */

img{

    display:block;

    max-width:100%;

}