/* Reset *//* ==========================================================
   VBC Framework
   Reset
   Version: 0.1.0
========================================================== */

/* ==========================================================
   Box Model
========================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* ==========================================================
   Root
========================================================== */

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;

    min-width: 320px;

    background: var(--vbc-color-background);
    color: var(--vbc-color-body);

    font-family: var(--vbc-font-body);
    font-size: var(--vbc-font-md);
    line-height: var(--vbc-line-normal);

    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================
   Media
========================================================== */

img,
picture,
svg,
video,
canvas {
    display: block;
    max-width: 100%;
    height: auto;
}

/* ==========================================================
   Forms
========================================================== */

input,
textarea,
button,
select {
    font: inherit;
}

button {
    -webkit-appearance: none;
    appearance: none;
    color: inherit;
    cursor: pointer;
}

input:focus,
textarea:focus,
select:focus,
button:focus {
    outline: none;
}

/* ==========================================================
   Links
========================================================== */

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* ==========================================================
   Lists
========================================================== */

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* ==========================================================
   Headings
========================================================== */

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote {
    margin: 0;
}

/* ==========================================================
   Tables
========================================================== */

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

/* ==========================================================
   Buttons
========================================================== */

button {
    background: none;
    border: none;
    padding: 0;
}

/* ==========================================================
   Fieldsets
========================================================== */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/* ==========================================================
   Iframe
========================================================== */

iframe {
    border: 0;
}

/* ==========================================================
   Selection
========================================================== */

::selection {
    background: var(--vbc-color-primary);
    color: var(--vbc-color-white);
}

/* ==========================================================
   Horizontal Rule
========================================================== */

hr {
    margin: 0;
    border: 0;
    border-top: 1px solid var(--vbc-color-border);
}

/* ==========================================================
   Hidden
========================================================== */

[hidden] {
    display: none !important;
}