/* fonts */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

/* common styles */

body {
  font-family: Pretendard;
  margin: 0;
  padding-top: 74px;
}

.section-divider {
  /* layout */
  height: 40px;

  /* style */
  background: var(--primary_light, #f0fbfb);

  /* responsive */
  @media screen and (max-width: 860px) {
    height: 20px;
  }
}

.breakline-mobile {
  /* layout */
  display: none;

  /* responsive */
  @media screen and (max-width: 860px) {
    display: block;
  }
}

.breakline-mobile-1200 {
  /* layout */
  display: none;

  /* responsive */
  @media screen and (max-width: 1200px) {
    display: block;
  }
}

a {
  /* style */
  color: inherit;
  text-decoration: inherit;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
