
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  -ms-overflow-style: scrollbar;
}

/* Reset */
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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  overflow: auto;
}
ol, ul, li {
  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;
}


/* Box Model */
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

input, select, textarea, button {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: #666666;
  letter-spacing: -0.4px;
  word-break: normal;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  /*
  appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;*/
}

/* iOS only */
@supports (-webkit-touch-callout: none) {
  height: -webkit-fill-available;
  height: fill-available;
}



strong, b {
  font-weight:500;
  color: #000;
}
i, em {
  font-style: italic;
}
sub {
  position: relative;
  top: 0.5em;
  font-size: 0.8em;
}
sup {
  position: relative;
  top: -0.5em;
  font-size: 0.8em;
}
blockquote {
  border-left: solid 0.75em #dddddd;
  padding: 1em 0 1em 1.5em;
  font-style: italic;
}
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% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}

@keyframes upDown {
  0% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}

.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) {

  input, select, textarea, button {
    font-size: 14px;
  }
  .sc-animation {
    display: none;
  }
}


@media screen and (max-width: 820px) {

  input, select, textarea, button {
    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 spin infinite linear;
  animation: 1.5s spin infinite linear;
}
.donut.multi {
  border-bottom-color: #333;
}

@-webkit-keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


/* 추가설정 */
button {cursor:pointer;}

