/** Shopify CDN: Minification failed

Line 79:18 Expected identifier but found whitespace
Line 79:20 Unexpected "{"
Line 79:30 Expected ":"
Line 80:20 Expected identifier but found whitespace
Line 80:22 Unexpected "{"
Line 80:32 Expected ":"
Line 81:17 Expected identifier but found whitespace
Line 81:19 Unexpected "{"
Line 81:29 Expected ":"
Line 81:56 Unexpected ","
... and 2 more hidden warnings

**/
/* _base.css  */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, textarea, select {
  font: inherit;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding: 0;
  margin: 0;
}

:root {
  --color-background: #fff;
  --color-primary: {{ settings.color_primary }};
  --color-secondary: {{ settings.color_secondary }};
  --font-heading: {{ settings.type_header_font.family }}, {{ settings.type_header_font.fallback_families }};
  --font-body: 'GT America', 'ABC Diatype', sans-serif;
  --font-size-normal: clamp(11px, 0.9vw, 13px);
  --font-size-small: clamp(9px, 0.9vw, 11px);
}

@font-face {
  font-family: 'ABC Diatype';
  src: url('ABCDiatypePlusVariable.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT America';
  src: url('GT-America-Korean-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT America';
  src: url('GT-America-Korean-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

p,span {
  font-size: var(--font-size-normal);
}

a,button {
  text-decoration: none;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: var(--font-size-normal);
  text-transform: uppercase;
}


input[type="email"], input[type="password"], input[type="text"] {
  background-color: transparent;
  border: none;
  border-bottom: 0.7px solid #000;
  width: 100%;
}

input[type="submit"] {
  background-color: transparent;
  border: 0.7px solid #000;
  padding: 0.5rem 1rem;
}

input {
  border-radius: 0;
}