@charset "UTF-8";

/* ==========================================
   RESET CSS
   ========================================== */

/* ==========================================
   Box Sizing
   ========================================== */

html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}


/* ==========================================
   Document
   ========================================== */

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
}


/* ==========================================
   Typography
   ========================================== */

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}


/* ==========================================
   Links
   ========================================== */

a {
    color: inherit;
    text-decoration: none;
}


/* ==========================================
   Images
   ========================================== */

img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}


/* ==========================================
   Media
   ========================================== */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}


/* ==========================================
   Forms
   ========================================== */

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font: inherit;
    color: inherit;
}

button,
input,
select,
textarea {
    border: 0;
    background: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    cursor: pointer;
}

button {
    padding: 0;
}

textarea {
    resize: vertical;
}


/* ==========================================
   Tables
   ========================================== */

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* ==========================================
   Quotes
   ========================================== */

blockquote,
q {
    quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
    content: "";
}


/* ==========================================
   Hidden
   ========================================== */

[hidden] {
    display: none !important;
}