/* common reset */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  font-family: 'Malgun Gothic', 'NanumSquare', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #0d1012;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  word-break: keep-all;
  -moz-osx-font-smoothing: grayscale;
}

body::-webkit-scrollbar {
  display: none;
}

* {
  box-sizing: border-box;
  font-family: 'SpoqaHanSansNeo';
  word-break: keep-all;
}

*,
*:active,
*:hover,
*:focus {
  outline: none !important;
}

h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0;
  line-height: normal;
}

p {
  padding: 0;
  margin: 0;
}

ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: #2b2b2b;
}

input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  overflow: auto;
}

input::-ms-clear {
  display: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
  -webkit-text-fill-color: #0d1012 !important;
}

select {
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0px;
}

table th {
  text-align: left;
  vertical-align: top;
}

table td {
  vertical-align: top;
}

button {
  background: inherit;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  overflow: visible;
  cursor: pointer
}

.flex_align_center {
  display: flex;
  align-items: center;
}

.flex_space_btw {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex_colum {
  display: flex;
  flex-direction: column;
}