/* ==========================================================
   ADMIN CSS FRAMEWORK
   File    : base/reset.css
   Purpose : CSS Reset & Global Defaults
========================================================== */


/* ================= BOX MODEL ================= */

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

    margin:0;

    padding:0;

    box-sizing:border-box;

}


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

html{

    height:100%;

    scroll-behavior:smooth;

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

}


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

body{

    min-height:100vh;

    width:100%;

    overflow-x:hidden;

    font-family:Arial, Helvetica, sans-serif;

    font-size:14px;

    line-height:1.5;

    color:var(--text);

    background:var(--body-bg);

    text-rendering:optimizeLegibility;

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;

}


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

img,
picture,
video,
canvas,
svg{

    display:block;

    max-width:100%;

    height:auto;

}


/* ================= LINK ================= */

a{

    color:inherit;

    text-decoration:none;

}

a:hover{

    text-decoration:none;

}


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

button,
input,
select,
textarea{

    font:inherit;

    color:inherit;

}

button{

    cursor:pointer;

}


/* ================= LIST ================= */

ul,
ol{

    list-style:none;

}


/* ================= TABLE ================= */

table{

    width:100%;

    border-collapse:collapse;

    border-spacing:0;

}


/* ================= HR ================= */

hr{

    border:0;

    border-top:1px solid var(--border);

}


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

::selection{

    background:var(--primary);

    color:#fff;

}


/* ================= SCROLLBAR ================= */

::-webkit-scrollbar{

    width:8px;

    height:8px;

}

::-webkit-scrollbar-track{

    background:#f1f5f9;

}

::-webkit-scrollbar-thumb{

    background:#b9bcc5;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#8f97a2;

}


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

:focus-visible{

    outline:2px solid var(--primary);

    outline-offset:2px;

}


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

:disabled{

    cursor:not-allowed;

    opacity:.7;

}