/* font face */
@font-face {
  font-family: "pretendard";
  font-weight: 400;
  src: local("pretendard"), url("/fonts/Pretendard-Regular.woff") format("woff");
}
@font-face {
  font-family: "pretendard";
  font-weight: 500;
  src: local("pretendard"), url("/fonts/Pretendard-Medium.woff") format("woff");
}
@font-face {
  font-family: "pretendard";
  font-weight: 600;
  src: local("pretendard"), url("/fonts/Pretendard-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "pretendard";
  font-weight: 700;
  src: local("pretendard"), url("/fonts/Pretendard-Bold.woff") format("woff");
}

:root{
  --gray-50:#f8f8f8;
  --gray-100:#eaeaea;
  --gray-200:#d9d9d9;
  --gray-300:#aeaeae;
  --gray-400:#797979;
  --gray-500:#666;

  --black:#000;
  --white:#fff;

  --blue-200: #3660cb;
  --blue-300: #0a2e8a; /* Primary */
  --blue-400: #1853ab;

  --red-100: #ffe7e7;
  --red-200: #ff8e8e;
  --red-300: #ff3a3a;

  /* ponit color */
  --green-200: #40b535;
  --purple-200: #ad7ffb;
  --orange-200: #fb8645;
  --mint-200: #4dceb6;
}
.heightF{
  min-height: 10vh;
  overflow: hidden;
}
/* reset */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html,
body {
  min-height: 100vh;
  font-family: "pretendard", "Malgun Gothic", "맑은 고딕", "돋음", "Dotum", "Apple SD Gothic Neo", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--black);
  -webkit-text-size-adjust: none;
  touch-action: manipulation;
  -webkit-font-smoothing: antialiased;
}
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
textarea,
p,
blockquote,
th,
td,
input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
}

/* HTML5 display-role reset for older browsers */
address,
article,
aside,
canvas,
details,
figure,
figcaption,
footer,
header,
menu,
nav,
section {
  display: block;
  margin: 0;
  padding: 0;
}
ol,
ul,
li,
dl,
dt,
dd {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
table {
  width: 100%;
  border-spacing: 0;
}
caption {
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  text-indent: -999em;
}
th,
td {
  word-break: break-all;
  border-collapse: collapse;
}
fieldset {
  width: 100%;
  pointer-events: none;
}
fieldset,
img {
  border: 0;
}
img {
  max-width: 100%;
  vertical-align: middle;
}
legend {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
button,
select,
input,
textarea,
label,
img {
  vertical-align: middle;
}
input {
  border-radius: 0px;
  appearance: none;
  -webkit-appearance: none;
  font-family: "pretendard", "Malgun Gothic", "맑은 고딕", "돋음", "Dotum", "Apple SD Gothic Neo", Arial, Helvetica, sans-serif;
  outline: 0px;
  border: 0;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
button {
  background: transparent;
  cursor: pointer;
  border: 0;
  font-family: "pretendard", "Malgun Gothic", "맑은 고딕", "돋음", "Dotum", "Apple SD Gothic Neo", Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: var(--color-dark);
  line-height: 20px;
}
button:disabled {
  cursor: default;
}
address,
caption,
em,
strong,
th,
b {
  font-style: normal;
  font-weight: normal;
}
a {
  background: transparent;
  text-decoration: none;
  color: inherit;
}
em,
address {
  font-style: normal;
}
i {
  font-style: normal;
}

/* textarea */
textarea {
  width: 100%;
  /* Remove First */
  -webkit-appearance: none;
  resize: none;
  outline: 0px;
  border: 0;
  font-family: "pretendard", "Malgun Gothic", "맑은 고딕", "돋음", "Dotum", "Apple SD Gothic Neo", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #787878;
}

.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  clip: rect(0,0,0,0);
}

/* hidden */
.hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.hide {
  display: none;
}
