/* =========================================================
   GoldPriceBD
   CSS Framework
   reset.css
   Version: 1.0

   Purpose:
   - Normalize browser defaults
   - Consistent box sizing
   - Remove unwanted default margins
   - Improve form consistency
   - Prepare foundation for the entire website

   IMPORTANT:
   - Keep this file stable.
   - Do not add page-specific styles here.
   ========================================================= */


/* =========================================================
   BOX SIZING
   ========================================================= */

html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}


/* =========================================================
   DOCUMENT
   ========================================================= */

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}


/* =========================================================
   BODY
   ========================================================= */

body {
    margin: 0;
    padding: 0;
}


/* =========================================================
   HEADINGS
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-weight: inherit;
}


/* =========================================================
   PARAGRAPHS
   ========================================================= */

p {
    margin: 0;
    padding: 0;
}


/* =========================================================
   LISTS
   ========================================================= */

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}


/* =========================================================
   LINKS
   ========================================================= */

a {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   IMAGES
   ========================================================= */

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}


/* =========================================================
   BUTTONS
   ========================================================= */

button,
input,
textarea,
select {
    margin: 0;
    font: inherit;
}


/* =========================================================
   BUTTON
   ========================================================= */

button {
    border: 0;
    padding: 0;
    background: none;
    cursor: pointer;
}


/* =========================================================
   FORM ELEMENTS
   ========================================================= */

input,
textarea,
select {
    border: 0;
    outline: 0;
}


/* =========================================================
   TEXTAREA
   ========================================================= */

textarea {
    resize: vertical;
}


/* =========================================================
   TABLE
   ========================================================= */

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}


/* =========================================================
   FIELDSET
   ========================================================= */

fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}


/* =========================================================
   LEGEND
   ========================================================= */

legend {
    padding: 0;
}


/* =========================================================
   HR
   ========================================================= */

hr {
    margin: 0;
    padding: 0;
    border: 0;
    border-top: 1px solid currentColor;
}


/* =========================================================
   HIDDEN
   ========================================================= */

[hidden] {
    display: none !important;
}


/* =========================================================
   FOCUS
   ========================================================= */

:focus {
    outline: none;
}


/* =========================================================
   ACCESSIBLE KEYBOARD FOCUS
   ========================================================= */

:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px;
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

}