/* 폰트 */
@font-face {
  font-family: "Noto Sans KR";
  font-weight: 100;
  src: url("/fonts/notosanskr-light.woff2") format("woff2"),
    url("/fonts/notosanskr-light.woff") format("woff");
}

@font-face {
  font-family: "Noto Sans KR";
  src: url("/fonts/notosanskr-light.woff2") format("woff2"),
    url("/fonts/notosanskr-light.woff") format("woff");
}

@font-face {
  font-family: "Noto Sans KR";
  font-weight: 400;
  src: url("/fonts/notosanskr-regular.woff2") format("woff2"),
    url("/fonts/notosanskr-regular.woff") format("woff");
}

@font-face {
  font-family: "Noto Sans KR";
  font-weight: 500;
  src: url("/fonts/notosanskr-medium.woff2") format("woff2"),
    url("/fonts/notosanskr-medium.woff") format("woff");
}

@font-face {
  font-family: "Noto Sans KR";
  font-weight: 900;
  src: url("/fonts/notosanskr-bold.woff2") format("woff2"),
    url("/fonts/notosanskr-bold.woff") format("woff");
}
:root {
  --main-color: #ffb400;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  word-break: break-all;
  position: relative;
  font-family: "Noto Sans KR", sans-serif;
  letter-spacing: -1px;
  outline: none !important;
}
*:focus {
  outline: none;
}
*::selection {
  background-color: #000;
  color: #fff;
}
html,
body {
  width: 100%;
  min-width: 1200px;
  height: 100%;
  float: left;
  color: #333;
  font-size: 14px;
}
body {
  /* overflow-x: hidden;*/
  background: #f9f9f9;
}

#wrap {
  width: 100%;
  height: 100%;
  float: left;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  vertical-align: middle;
}
ul,
li {
  list-style: none;
}
button {
  border: 0;
  cursor: pointer;
}
table {
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
}
tspan {
  letter-spacing: -0.5px !important;
}
label {
  cursor: pointer;
}
label > .on {
  display: none;
  color: #3366cc;
}
label > .off {
  display: inline-block;
  color: #ccc;
}
input[type="checkbox"],
input[type="radio"] {
  display: none;
}
input[type="checkbox"]:checked + label > .on {
  display: inline-block;
}
input[type="checkbox"]:checked + label > .off {
  display: none;
}
input[type="radio"]:checked + label > .on {
  display: inline-block;
}
input[type="radio"]:checked + label > .off {
  display: none;
}
input[type="text"] {
  padding: 0 15px;
  border: 1px solid #e1e1e1;
}
input[type="password"] {
  padding: 0 15px;
  border: 1px solid #e1e1e1;
}
input::placeholder {
  color: #ccc;
}
textarea {
  border: 1px solid #e1e1e1;
  padding-left: 15px;
  background: none;
  overflow: hidden;
  overflow-wrap: break-word;
  resize: none;
}
textarea::placeholder {
  color: #ccc;
}

.lp0 {
  letter-spacing: 0;
}

/* 색상 */
.main_color {
  color: #ffb400;
} /*메인색상*/
.point {
  color: #e34f2b;
}
.blue_point {
  color: #0081ea;
}
.gray_point {
  color: #999999;
}

/* 폰트 굵기 */
.fw_r {
  font-weight: 400 !important;
}
.fw_m {
  font-weight: 500 !important;
}
.fw_b {
  font-weight: 600 !important;
}

/* 마진 */
.mt_0 {
  margin-top: 0 !important;
}
.mb_0 {
  margin-bottom: 0 !important;
}
.ml_0 {
  margin-left: 0 !important;
}

.mt_10 {
  margin-top: 10px !important;
}
.mt_20 {
  margin-top: 20px !important;
}

.ml_10 {
  margin-left: 10px !important;
}
.ml_20 {
  margin-left: 20px !important;
}

.p_5{
  padding: 5px !important;
}

.t_10{
  top: 10px !important;
}

/* 한줄일때 텍스트 처리 */
.txt_1 {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

/* 셀렉트박스 */
select {
  float: left;
  height: 32px;
  line-height: 32px;
  font-size: 13px;
  margin-left: 5px;
  border: 1px solid #d8d8d8;
  color: #666;
  padding: 0 10px;
}
select * {
  font-size: 12px;
}

/* 버튼 */
.btn {
  min-width: 80px;
  width: 150px;
  height: 35px;
  line-height: 33px;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  font-weight: 600;
  text-align: center;
  border-radius: 3px;
}
.btn i {
  margin-right: 5px;
}

/* 테이블 체크리스트 */
label.customCheckBox.listCheckBox {
  font-size: 19px;
  float: none;
  -ms-user-select: none;
  -moz-user-select: -moz-none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  user-select: none;
  cursor: pointer;
  margin-right: 5px;
}

label.customCheckBox.listCheckBox i {
  float: none;
}

label.customCheckBox > .on {
  display: none;
  color: #ffb400;
}

label.customCheckBox > .off {
  display: inline-block;
  color: #ccc;
}

/* toggle */
label.toggle {
  cursor: pointer;
  background-color: #EEE;
  width: 60px;
  height: 30px;
  transition: all 0.5s;
  padding: 5px 7px;
  border-radius: 25px;
  display: inline-block;
  float: none;
  top: 1.5px;
}

label.toggle>div {
  width: 20px;
  height: 20px;
  background-color: #FFF;
  border-radius: 100%;
  float: left;
  transition: all 0.5s;
  left: 0;
}

input.toggle {
  display: none;
}

input.toggle:checked+label.toggle {
  background-color: #2790FF;
}

input.toggle:checked+label.toggle>div {
  left: 26px;
}


.sort_handle {
  cursor: n-resize !important;
}