/*==========================================================
    IMPACTA GAMES
    DESIGN SYSTEM

    RESET
==========================================================*/


/*==========================================================
    BOX SIZING
==========================================================*/

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

    margin:0;
    padding:0;

    box-sizing:border-box;

}


/*==========================================================
    DOCUMENT
==========================================================*/

html{

    scroll-behavior:smooth;

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

    text-rendering:optimizeLegibility;

}

body{

    min-width:320px;
    min-height:100vh;

    overflow-x:hidden;

    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;

}


/*==========================================================
    MEDIA
==========================================================*/

img,
picture,
video,
canvas,
svg{

    display:block;

    max-width:100%;
    height:auto;

}


/*==========================================================
    FORM ELEMENTS
==========================================================*/

input,
textarea,
select,
button{

    font:inherit;

    color:inherit;

    background:transparent;

}


/*==========================================================
    BUTTONS
==========================================================*/

button{

    border:none;

    cursor:pointer;

}


/*==========================================================
    LINKS
==========================================================*/

a{

    color:inherit;

    text-decoration:none;

}


/*==========================================================
    LISTS
==========================================================*/

ul,
ol{

    list-style:none;

}


/*==========================================================
    TABLES
==========================================================*/

table{

    border-collapse:collapse;

    border-spacing:0;

}


/*==========================================================
    TEXT
==========================================================*/

strong{

    font-weight:700;

}

em{

    font-style:italic;

}


/*==========================================================
    TEXT SELECTION
==========================================================*/

::selection{

    background:rgba(24,184,255,.25);

    color:inherit;

}


/*==========================================================
    FOCUS
==========================================================*/

:focus-visible{

    outline:2px solid rgba(24,184,255,.75);

    outline-offset:4px;

}


/*==========================================================
    DISABLED
==========================================================*/

:disabled{

    cursor:not-allowed;

}


/*==========================================================
    HIDDEN
==========================================================*/

[hidden]{

    display:none !important;

}