/* ========= Normalize + Modern Reset ========= */

/* Box sizing rules */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Remove default margin and padding */
* {
    margin: 0;
    padding: 0;
}

/* Allow percentage-based heights */
html, body {
    height: 100%;
}

/* Set core body defaults */
body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeSpeed;
    font-family: 'Noto Sans KR', 'Open Sans', AppleGothic, helvetica, sans-serif;
    background-color: #fff;
    color: #000;
}

/* Improve media defaults */
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Remove built-in form typography styles */
input, button, textarea, select {
    font: inherit;
    color: inherit;
    background: none;
}

/* Reset headings and text overflow */
h1, h2, h3, h4, h5, h6, p {
    font-weight: normal;
    overflow-wrap: break-word;
}

/* Anchor defaults */
a {
    color: inherit;
    text-decoration: none;
}

/* Lists - remove bullets */
ul, ol {
    list-style: none;
}

/* Tables - collapse borders */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Buttons - reset appearance */
button {
    background: none;
    border: none;
    cursor: pointer;
}

/* Form - normalize appearance */
textarea {
    resize: vertical;
}

/* Create root stacking context */
#root, #app {
    isolation: isolate;
}

/* Remove quotes from blockquotes and q */
blockquote, q {
    quotes: none;
}
blockquote::before, blockquote::after,
q::before, q::after {
    content: '';
}

/* Hidden elements */
[hidden] {
    display: none !important;
}
.mgb10 {
    margin-bottom: 10px !important;
}
table caption {
    overflow: hidden;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    font-size: 0;
    line-height: 0;
    text-indent: -999em;
}
.blind {
    position: absolute;
    overflow: hidden;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    font-size: 0;
    line-height: 0;
}