html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  -ms-overflow-style: scrollbar;
}
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
}
blockquote,
em,
i {
  font-style: italic;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  overflow: auto;
}
li,
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
*,
:after,
:before {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
button,
input,
select,
textarea {
  font-family: "Noto Sans KR", Montserrat, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: #666;
  letter-spacing: -0.4px;
  word-break: normal;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
}
sub,
sup {
  position: relative;
  font-size: 0.8em;
}
@supports (-webkit-touch-callout: none) {
  body {
    height: -webkit-fill-available;
    height: fill-available;
  }
}
b,
strong {
  font-weight: 500;
  color: #000;
}
sub {
  top: 0.5em;
}
sup {
  top: -0.5em;
}
blockquote {
  border-left: 0.75em solid #ddd;
  padding: 1em 0 1em 1.5em;
}
a {
  text-decoration: none;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
  text-decoration: none;
}
br.clear {
  clear: both;
}
.animation i {
  font-size: 40px;
  color: #fff;
}
@-webkit-keyframes upDown {
  0%,
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes upDown {
  0%,
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.sc-animation {
  bottom: 140px;
  left: 49%;
  position: absolute;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-name: upDown;
  transform: translateX(-49%);
}
@media screen and (max-width: 1024px) {
  button,
  input,
  select,
  textarea {
    font-size: 14px;
  }
  .sc-animation {
    display: none;
  }
}
@media screen and (max-width: 820px) {
  button,
  input,
  select,
  textarea {
    font-size: 13px;
  }
  .sc-animation {
    right: 35px;
    left: auto;
  }
  .sc-animation img {
    width: 20px;
    height: auto;
  }
}
.loading {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 100000000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.donut {
  width: 40px;
  height: 40px;
  margin: 40px;
  border-radius: 50%;
  border: 4px solid #ddd;
  border-top-color: #333;
  -webkit-animation: 1.5s linear infinite spin;
  animation: 1.5s linear infinite spin;
}
.donut.multi {
  border-bottom-color: #333;
}
@-webkit-keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
