@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  font-family: 'NanumSquareNeo';
  box-sizing: border-box;
}

html{
  height: 100%;
}

html,
body {
  font-size: 62.5%;
  background: #fff;
  width: 100%;
  min-width: 1300px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

ul li,
ol li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  vertical-align: middle;
}

address,
em {
  font-style: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip-path: polygon(0 0, 0 0, 0 0);
}

p {
  line-height: 1.5;
}

fieldset {
  border: 0;
  min-width: 0;
}

legend {
  border: 0;
}

input{border: none; outline: none;}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}

button{
  border: none;
  outline: none;
  background-color: transparent;
}

/* select reset */
select{
  border: none;
  outline: none;
}

textarea{
  border: none;
  outline: none;
}

/* 스크롤바 전체  */
::-webkit-scrollbar{
  width: 10px;
}

::-webkit-scrollbar-track{
  background-color: var(--grey-10);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb{
  background-color: var(--grey-40);
  border-radius: 4px;
}
