@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: 700;
  src: url("/fonts/notosanskr-bold.woff2") format("woff2"),
    url("/fonts/notosanskr-bold.woff") format("woff");
}

@font-face {
  font-family: "ggg";
  font-weight: 700;
  src: url("/fonts/gmarketsansbold.woff2") format("woff2"),
    url("/fonts/gmarketsansbold.woff") format("woff");
}

@font-face {
  font-family: "ggs";
  font-weight: 500;
  src: url("/fonts/ggs.woff2") format("woff2"),
    url("/fonts/ggs.woff") format("woff");
}

@font-face {
  font-family: "ggs";
  font-weight: 100;
  src: url("/fonts/ggl.woff2") format("woff2"),
    url("/fonts/ggl.woff") format("woff");
}

* {
  margin: 0;
  padding: 0;
  position: relative;
  letter-spacing: -1px;
  box-sizing: border-box;
  outline: none !important;
  font-family: "Noto Sans KR", sans-serif;
  color: #666;
  word-break: break-all;
  list-style: none;
  font-size: 14px;
  text-decoration: none;
}
*:focus {
  outline: none;
}
*::selection {
  background-color: #000;
  color: #fff;
}
input::placeholder,
textarea::placeholder {
  color: #ccc;
}

/* 스크롤 탑버튼 */
.scroll_topBtn {
  width: 50px;
  height: 50px;
  border: 1px solid;
  border-radius: 50%;
  position: fixed;
  bottom: 20px;
  right: 25px;
  background-color: #666;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  box-shadow: 2px 4px 15px 8px rgb(0 0 0 / 10%);
  cursor: pointer;
}
.scroll_topBtn i {
  font-size: 25px;
  color: #fff;
}

/* 220514 width: 100% 제거 -> 화면 축소 시 top 메뉴 영역의 길이가 컨텐츠 영역의 길이와 안 맞음 */
html,
body {
  height: 100%;
  float: left;
  color: #000;
  width: 100%;
}

img {
  max-width: 100%;
  vertical-align: middle;
}
button {
  border: 1px solid #ccc;
}

input[type="checkbox"] {
  display: none;
}
input[type="radio"] {
  display: none;
}

table {
  width: 100%;
}
table,
tbody,
tr,
td,
th,
thead {
  border-collapse: collapse;
  table-layout: fixed;
}
table,
tbody,
tr,
td,
th,
thead:lang(en) {
  letter-spacing: 0;
}

/*#wrap { width: 100%; float: left; min-width: 1400px; }*/
#wrap {
  width: 100%;
  float: left;
  min-width: 1200px;
}
/*min-width: 1600px;*/

/* vertical  */
.vcat {
  vertical-align: top !important;
}

/* display */
.dpn {
  display: none;
}

/* 체크박스 커스텀 */
label.customCheckBox {
  font-size: 19px;
  float: left;
  -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 i {
  font-size: inherit;
  float: left;
}
label.customCheckBox > .on {
  display: none;
  color: #3366cc;
}
label.customCheckBox > .off {
  display: inline-block;
  color: #ccc;
}
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 {
  font-size: inherit;
  float: none;
}

/*label.customCheckBox.round { border-radius: 50px; }*/

.customCheckBoxLabel {
  float: left;
  margin-right: 25px;
  cursor: pointer;
}
.customCheckBoxLabel:not(:first-of-type) {
  margin-left: 5px;
}

input[type="checkbox"]:checked + label.customCheckBox > .on {
  display: inline-block;
}
input[type="checkbox"]:checked + label.customCheckBox > .off {
  display: none;
}

input[type="radio"]:checked + label.customCheckBox > .on {
  display: inline-block;
}
input[type="radio"]:checked + label.customCheckBox > .off {
  display: none;
}

#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999999;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}
#loading * {
  -ms-user-select: none;
  -moz-user-select: -moz-none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  user-select: none;
}
#loading > #loadingItem {
  position: absolute;
  width: 50px;
  height: 50px;
  left: 50%;
  top: 50%;
  margin-left: -25px;
  margin-top: -25px;
  border: 3px solid white;
  border-radius: 50%;
  animation: loading 1s ease-in-out infinite;
  -webkit-animation: loading 1s ease-in-out infinite;
}

@keyframes loading {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes loading {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* 필수값 */
.importantLabel:after {
  content: "*";
  color: red;
}

/* 필수값_2023.09.01(금)_문정원 */
.importantList:after {
  content: "*";
  color: red;
}

/*float*/
.fl {
  float: left;
}

/* 버튼 */
.commonBtn {
  max-width: 150px;
  height: 35px;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  padding: 0 20px;
  border-radius: 3px;
  cursor: pointer;
}
.commonBtn i {
  color: inherit;
  vertical-align: middle;
  margin-right: 8px;
}
.commonBtn:not(:first-of-type) {
  margin-left: 10px;
}

.actionBtn_write {
  color: white;
}
.writeBtn {
  color: white;
}
.actionBtn_popup {
  color: white;
}
.change_sv {
  width: auto; /*font-weight: 400;*/
  background-color: #f5f5f5;
}
.actionBtn_delete {
  font-weight: 400;
  width: 80px;
  background-color: #f5f5f5;
  font-size: 13px;
}
/* .actionBtn_delete { font-weight: 400; width:115px; padding-right: 30px; background-color:#f5f5f5; font-size:13px; } */
.actionBtn_back {
  font-weight: 400;
  width: 115px;
  padding-right: 30px;
  background-color: #f5f5f5;
  font-size: 13px;
}
.actionBtn_back2 {
  font-weight: 400;
  width: 115px;
  background-color: #f5f5f5;
  font-size: 13px;
}

a.commonBtn {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  line-height: 35px;
}
.commonBtn * {
  vertical-align: middle;
}

.common_sub_btn {
  width: 110px;
  height: 35px;
  cursor: pointer;
  background-color: white;
  border: 1px solid #ccc;
  color: #ccc;
  font-size: 13px;
  font-weight: bold;
}

.excelBtn {
  border-color: #1f6f43;
  color: #1f6f43;
}
/* 2022.07.02 추가_작업자 문정원 */
.excelUpload {
  background-color: #1f6f43;
  color: #fff;
}

/* 인풋 */
.txtBox {
  width: auto;
  float: left;
  height: 35px;
  border: 1px solid #d8d8d8;
  padding: 0 10px;
  font-size: 13px;
}
textarea.txtBox {
  padding: 5px;
  height: 150px;
}
select.txtBox {
  width: 100px;
}
select * {
  font-size: 12px;
}

.type_form .txtBox {
  width: 100%;
  font-size: 13px;
}
.type_form select.txtBox {
  min-width: 150px;
  width: auto;
}

/* 리스트 상단 좌측 검색select 2022.09.23(금) - 작업자 문정원 */
.type_list .listSet .leftBox .etc_set select {
  margin-right: 5px;
  margin-top:5px;
}
/* 리스트 상단 좌측 검색select 2022.09.23(금) - 작업자 문정원 */

.txtBox.date {
  width: 260px;
  font-weight: 500;
  padding: 0 10px;
}
/* .txtBox.option{ margin : 5px 0; } */
.date_span {
  float: left;
  height: 35px;
  line-height: 35px;
  padding: 0 15px;
  font-weight: 900;
}
.date_label {
  float: left;
  margin-left: -30px;
  height: 35px;
  line-height: 35px;
}
.date_label > i {
  font-size: 16px;
}
/* ------------------------ */

/* display */
.dpn {
  display: none;
}
.dpb {
  display: block;
}

/* text */
.tal {
  text-align: left !important;
}
.tac {
  text-align: center !important;
}
.tar {
  text-align: right !important;
}

/* cursor */
.c_d {
  cursor: default !important;
}
.c_p {
  cursor: pointer !important;
}

/* 영문,숫자 레터스페이싱 */
.lp0 {
  letter-spacing: 0;
}

/* ------------------------ */

/* toggle */
label.toggle {
  cursor: pointer;
  background-color: #eee;
  width: 60px;
  height: 30px;
  float: left;
  transition: all 0.5s;
  padding: 5px 7px;
  border-radius: 25px;
}
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;
}

/* datepicker */
.ui-datepicker {
  z-index: 10000 !important;
}
.ui-widget.ui-widget-content {
  border: 0 !important;
  border-radius: 5px !important;
  padding: 0 !important;
  overflow: hidden;
  margin-top: 5px;
  width: 220px !important;
}
/* box-shadow: 0 0 5px rgba(0, 0, 0, 0.3) !important; */
.ui-datepicker .ui-datepicker-header {
  border: 0 !important;
  border-radius: 0 !important;
  background-color: #333 !important;
  padding: 8px 50px !important;
  margin: 0 !important;
}
.ui-datepicker .ui-datepicker-title {
  margin: 0 !important;
  color: #fff;
  font-size: 14px;
}
.ui-datepicker .ui-datepicker-title > span {
  font-size: 14px;
}
.ui-datepicker table {
  margin: 5px 0 !important;
}
.ui-datepicker td a {
  text-align: center !important;
  font-weight: 500 !important;
  border: 0 !important;
  background: none !important;
  font-size: 12px !important;
  color: #333 !important;
  border-radius: 3px;
  transition: background-color 0.2s;
}
.ui-datepicker td a:hover {
  background-color: #f2f2f2 !important;
}
.ui-datepicker td span {
  text-align: center !important;
  font-weight: 500 !important;
  border: 0 !important;
  background: none !important;
  font-size: 12px !important;
  color: #ccc !important;
}
.ui-state-highlight,
.ui-widget-content .ui-state-highlight {
  background-color: #c5c5c5 !important;
}
.ui-state-active,
.ui-widget-content .ui-state-active {
  color: #333 !important;
  font-weight: bold !important;
  background-color: #ffcc33 !important;
}
.ui-state-active:hover,
.ui-widget-content .ui-state-active:hover {
  color: #333 !important;
  font-weight: bold !important;
  background-color: #ffcc33 !important;
}
.ui-datepicker th {
  font-size: 12px !important;
}

.ui-datepicker .ui-datepicker-next,
.ui-datepicker .ui-datepicker-prev {
  cursor: pointer;
  width: 35px !important;
  height: 35px !important;
  line-height: 35px !important;
  text-align: center !important;
  top: -1px !important;
}
.ui-datepicker .ui-datepicker-next {
  right: 0 !important;
}
.ui-datepicker .ui-datepicker-next::after {
  content: "\f0a9";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #fff;
  opacity: 0.2;
  transition: opacity 0.5s;
}
.ui-datepicker .ui-datepicker-next:hover::after {
  opacity: 1;
}
.ui-datepicker .ui-datepicker-next > span {
  display: none !important;
}

.ui-datepicker .ui-datepicker-prev {
  left: 0 !important;
}
.ui-datepicker .ui-datepicker-prev::after {
  content: "\f0a8";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #fff;
  opacity: 0.2;
  transition: opacity 0.5s;
}
.ui-datepicker .ui-datepicker-prev:hover::after {
  opacity: 1;
}
.ui-datepicker .ui-datepicker-prev > span {
  display: none !important;
}

.ui-datepicker .ui-datepicker-next-hover {
  background-color: #333 !important;
  border: 0 !important;
  top: 0 !important;
  right: 0 !important;
}
.ui-datepicker .ui-datepicker-prev-hover {
  background-color: #333 !important;
  border: 0 !important;
  top: 0 !important;
  left: 0 !important;
}

.ui-datepicker select {
  border: none !important;
  background-color: #333 !important;
  font-weight: bold;
  color: #fff !important;
  font-size: 15px !important;
  cursor: pointer !important;
  letter-spacing: -0.5px !important;
  margin: 0 !important;
  float: left;
}
.ui-datepicker-year {
  width: 52% !important;
}
.ui-datepicker-month {
  width: 48% !important;
}
.ui-datepicker select > option {
  color: #fff;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: 1;
}

.fileDeleteBtn {
  float: left;
  padding: 11px;
}

/* 미니 가이드 */
.GuideWrap {
  display: inline-block;
  margin-left: 5px;
  text-align: left !important;
}
.GuideWrap > .guideBtn {
  color: #ccc;
  cursor: pointer;
}

.GuideWrap > div {
  position: absolute;
  width: 250px;
  left: 0;
  top: 100%;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
  padding: 10px;
  z-index: 20;
}
.GuideWrap > div > .title {
  width: 100%;
  float: left;
  font-size: 13px;
  font-weight: bold;
  color: #333;
  line-height: 20px;
  margin-bottom: 2px;
}
.GuideWrap > div > p {
  width: 100%;
  float: left;
  font-size: 12px;
  color: #333;
  font-weight: 500;
  line-height: 18px;
  padding-left: 3px;
}

.pauseWrap {
  display: inline-block;
  margin-left: 5px;
  text-align: left !important;
}
.pauseWrap > .guideBtn {
  color: #ccc;
  cursor: pointer;
}

.pauseWrap > div {
  position: absolute;
  width: 250px;
  left: -478%;
  bottom: -600%;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
  padding: 10px;
  z-index: 20;
}
.pauseWrap > div > .title {
  width: 100%;
  float: left;
  font-size: 13px;
  font-weight: bold;
  color: #333;
  line-height: 20px;
  margin-bottom: 2px;
}
.pauseWrap > div > p {
  width: 100%;
  float: left;
  font-size: 12px;
  color: #333;
  font-weight: 500;
  line-height: 18px;
  padding-left: 3px;
}

.GuideWrap.typeRight > div {
  right: 0;
  left: inherit;
}


/*등록폼 가로 100%_2023.08.31(목) */
/*.document-form-container { width: auto; padding: 0; }*/


/* datepicker 달력아이콘_2023.09.02(토)_문정원 */
i.dateonlyicon { position:absolute; line-height:35px; right:35px; }

