/*!************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js!./src/dev/customer/assets/scss/style.scss ***!
  \************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
.required:after {
  content: "*";
  font-family: Pretendard;
  font-weight: 700;
  font-size: 16px;
  color: #e20022;
}

.btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 60px;
}
.btn-wrap.between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 0;
}
.btn-wrap.between .custom-radio-wrap {
  padding-left: 14px;
}
.btn-wrap .basic_btn {
  width: 185px;
}
.btn-wrap .basic_btn + .basic_btn {
  margin-left: 24px;
}

.text-wrap.alginCenter {
  text-align: center;
}
.text-wrap.alginRight {
  text-align: right;
}
.text-wrap.alginLeft {
  text-align: left;
}
.text-wrap.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.text-wrap.verticalMiddle {
  vertical-align: middle;
}

.notice-wrap {
  padding: 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  color: #000000;
  background-color: #f1f1f3;
  border-radius: 8px;
  margin-top: 11px;
}

[data-target] {
  cursor: pointer;
}

@-webkit-keyframes grayscaleLoop {
  from {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
  }
  to {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
  }
}

@keyframes grayscaleLoop {
  from {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
  }
  to {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
  }
}
.fade-from-gray {
  -webkit-animation: grayscaleLoop 1s infinite alternate;
  animation: grayscaleLoop 1s infinite alternate;
}

.main-content-time {
  position: absolute;
  top: -34px;
  right: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}

.custom-radio-wrap.alginCenter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 24px;
}

.tab {
  height: calc(100vh - 76px - 51px);
  position: relative;
}
.tab-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  position: absolute;
  top: -46px;
  left: 124px;
}
.tab-btn {
  width: 150px;
  font-size: 12px;
  line-height: 14px;
  color: #212121;
  padding: 13.5px 0;
  text-align: center;
  border-radius: 8px 8px 0 0;
  border: 1px solid #ebebeb;
  background-color: #ffffff;
}
.tab-btn.active {
  font-size: 14px;
  padding: 15px 0;
  color: #ffffff;
  background: #3b3d4a;
  border-color: #3b3d4a;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.tab .sub-container {
  margin-top: 90px;
}

/* 스크롤바 전체 영역 */
::-webkit-scrollbar {
  width: 5px; /* 세로축 스크롤바 폭 너비 */
  height: 5px; /* 가로축 스크롤바 폭 너비 */
}

/* 스크롤바 막대 */
::-webkit-scrollbar-thumb {
  background: #d9d9d9; /* 스크롤바 막대 색상 */
  border: 2px solid #d9d9d9; /* 스크롤바 막대 테두리 설정  */
  border-radius: 10px;
}

/* 스크롤이 움직이는 뒷 배경 */
::-webkit-scrollbar-track {
  background: #f3f3f3; /* 스크롤바 뒷 배경 색상 */
  border-radius: 10px;
}

input {
  width: 320px;
  height: 50px;
  padding: 12px 16px;
  border: 1px solid #c2c2c2;
  border-radius: 8px;
  font-family: Pretendard;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
input::-webkit-input-placeholder {
  color: #999999;
}
input::-moz-placeholder {
  color: #999999;
}
input:-ms-input-placeholder {
  color: #999999;
}
input::-ms-input-placeholder {
  color: #999999;
}
input::placeholder {
  color: #999999;
}
input.alignCenter {
  text-align: center;
}

input:hover {
  border-color: #eb6100;
}

input:active {
  outline: #eb6100;
}

input:focus {
  border-color: #eb6100;
  outline: none;
}

input:disabled {
  background-color: #d9d9d9;
  border-color: #d9d9d9;
}

input.error::-webkit-input-placeholder {
  color: #e20022;
  border-color: #e20022;
}

input.error::-moz-placeholder {
  color: #e20022;
  border-color: #e20022;
}

input.error:-ms-input-placeholder {
  color: #e20022;
  border-color: #e20022;
}

input.error::-ms-input-placeholder {
  color: #e20022;
  border-color: #e20022;
}

input.error,
input.error::placeholder {
  color: #e20022;
  border-color: #e20022;
}
.input_group_wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.input_group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.input_group input {
  width: 100%;
  padding-right: 42px;
}
.input_group input:hover + .btn-search,
.input_group input:focus + .btn-search {
  background-image: url(../images/common/icon_search_orange_x20.svg);
}
.input_group input:disabled + .btn-search {
  background-image: url(../images/common/icon_search_x20.svg);
  cursor: default;
  pointer-events: none;
}
.input_group input.error + .btn-delete {
  background-image: url(../images/common/icon_delete_error_x20.svg);
  pointer-events: all;
}
.input_group .btn-search,
.input_group .btn-delete {
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 15px;
  right: 14px;
}
.input_group .btn-search {
  background: url(../images/common/icon_search_x20.svg) center no-repeat;
}
.input_group .btn-delete {
  pointer-events: none;
}
.input_group .input_label {
  width: 100%;
}
.input_group .input_label.half {
  width: calc(50% - 11px);
}
.input_group .btn {
  width: 100%;
  margin-top: 8px;
}
.input_group .input_group .small_input {
  width: 110px;
  padding-inline: 16px;
}

.input_label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}
.input_label .input-text {
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
}
.input_label input {
  margin-top: 8px;
}
.input_label input:disabled {
  color: #999999;
  background-color: #d9d9d9;
}
.input_label textarea {
  min-height: 100px;
  margin-top: 8px;
  padding: 14px 16px;
  font-family: Pretendard;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  border: 1px solid #c2c2c2;
  border-radius: 8px;
  resize: none;
}
.input_label textarea:hover {
  border-color: #eb6100;
}
.input_label textarea:focus {
  outline: none;
}
.input_label textarea::-webkit-input-placeholder {
  color: #999999;
}
.input_label textarea::-moz-placeholder {
  color: #999999;
}
.input_label textarea:-ms-input-placeholder {
  color: #999999;
}
.input_label textarea::-ms-input-placeholder {
  color: #999999;
}
.input_label textarea::placeholder {
  color: #999999;
}
.input_label .selectric-wrapper {
  margin-top: 8px;
}
.input_label .selectric-wrapper .selectric {
  height: 50px;
}
.input_label .selectric-wrapper .selectric .label {
  height: 50px;
  line-height: 50px;
}
.input_label .custom-select {
  width: 100%;
  margin-top: 8px;
}
.input_label .input_select-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.input_label .input_select-wrap .selectric-wrapper {
  width: 150px;
}
.input_label .input_select-wrap .selectric-wrapper:last-child {
  width: 120px;
}
.input_label .input_select-wrap .selectric-items li {
  padding: 16px;
}
.input_label .input_select-wrap .selectric-items li::before {
  display: none;
}

.timePicker-input {
  width: 285px;
}

.btn {
  background-color: #ffffff;
  border: 1px solid #c3c3c3;
  font-family: Pretendard;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #858585;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn:disabled {
  background-color: #d9d9d9;
  border-color: #d9d9d9;
  color: #999999;
}

.btn-primary {
  border-color: #eb6100;
  background-color: #eb6100;
  color: #ffffff;
}
.btn-outline {
  border-color: #eb6100;
  color: #eb6100;
}

.basic_btn {
  width: 236px;
  height: 50px;
}

.btn-small {
  width: 106px;
  height: 36px;
  font-size: 14px;
  line-height: 20px;
}

.btn-medium {
  width: 106px;
  height: 42px;
  font-size: 14px;
  line-height: 20px;
}

.btn-large {
  width: 106px;
  height: 50px;
}

.btn-icon-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.btn-icon-search:after {
  content: "";
  width: 20px;
  height: 20px;
  margin-left: 4px;
  background: url(../images/common/icon_search_x20.svg) center no-repeat;
}
.btn-icon-search.btn-outline::after {
  background: url(../images/common/icon_search_blue_x20.svg) center no-repeat;
}
.btn-icon-search.btn-primary::after {
  background: url(../images/common/icon_search_white_x20.svg) center no-repeat;
}
.btn-icon-excel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: auto;
  padding: 0 16px;
}
.btn-icon-excel:after {
  content: "";
  width: 20px;
  height: 20px;
  margin-left: 4px;
  background: url(../images/common/icon_excel_x20.svg) center no-repeat;
}
.btn-icon-excel.btn-outline:after {
  content: "";
  width: 20px;
  height: 20px;
  margin-left: 4px;
  background: url(../images/common/icon_excel_orange_x20.svg) center no-repeat;
}
.btn-icon-download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: auto;
  padding: 0 16px;
}
.btn-icon-download:after {
  content: "";
  width: 20px;
  height: 20px;
  margin-left: 4px;
  background: url(../images/common/icon_download_x20.svg) center no-repeat;
}
.btn-icon-download.btn-outline:after {
  content: "";
  width: 20px;
  height: 20px;
  margin-left: 4px;
  background: url(../images/common/icon_download_x20.svg) center no-repeat;
}
.btn-icon-pdf {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: auto;
  padding: 0 16px;
}
.btn-icon-pdf:after {
  content: "";
  width: 20px;
  height: 20px;
  margin-left: 4px;
  background: url(../images/common/icon_pdf_orange_x20.svg) center no-repeat;
}
.btn-icon-pdf.btn-outline:after {
  content: "";
  width: 20px;
  height: 20px;
  margin-left: 4px;
  background: url(../images/common/icon_pdf_orange_x20.svg) center no-repeat;
}
.btn-icon-print {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: auto;
  padding: 0 16px;
}
.btn-icon-print:after {
  content: "";
  width: 20px;
  height: 20px;
  margin-left: 4px;
  background: url(../images/common/icon_print_blue_x20.svg) center no-repeat;
}
.btn-icon-print.btn-outline:after {
  content: "";
  width: 20px;
  height: 20px;
  margin-left: 4px;
  background: url(../images/common/icon_print_blue_x20.svg) center no-repeat;
}
.btn-icon-wizet::before {
  content: "";
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background: url(../images/common/icon_plus_white_x20.svg) center no-repeat;
}
.btn-icon-fullScreen {
  width: auto;
  padding: 0 14.5px;
}
.btn-icon-fullScreen::after {
  content: "";
  width: 20px;
  height: 20px;
  margin-left: 8px;
  background: url(../images/common/icon_fullScreen_x20.svg) center no-repeat;
}
.btn-icon-fullScreen span {
  display: none;
}
.btn-icon-fullScreen.active span {
  display: inline-block;
  margin-left: 4px;
}
.btn-icon-ocr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: auto;
  padding: 0 16px;
}
.btn-icon-ocr:after {
  content: "";
  width: 20px;
  height: 20px;
  margin-left: 4px;
  background: url(../images/common/icon_ocr_x24.svg) center no-repeat;
}
.btn-icon-ocr.btn-outline:after {
  content: "";
  width: 20px;
  height: 20px;
  margin-left: 4px;
  background: url(../images/common/icon_ocr_x24.svg) center no-repeat;
}

.custom-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.custom-radio input {
  display: none;
}
.custom-radio input + .radio-btn {
  background-color: #d9d9d9;
}
.custom-radio input + .radio-btn:after {
  content: "";
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: white; /* 선택된 상태의 안쪽 원 */
}
.custom-radio input:checked + .radio-btn {
  background-color: #eb6100;
}
.custom-radio input:disabled {
  color: #d9d9d9;
}

.radio-btn {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 8px;
  position: relative;
}

.table-inner_btn {
  width: 65px;
  height: 36px;
  font-size: 14px;
  line-height: 20px;
  background-color: #f2f2f2;
  border: 1px solid #e5e5e5;
  color: #000000;
  border-radius: 4px;
  font-weight: 400;
}
.table-inner_btn.black {
  background-color: #5c5c5c;
  color: #ffffff;
}
.table-inner_btn.primay {
  background-color: #eb6100;
  color: #ffffff;
}

.logout-btn {
  width: 92px;
  height: 34px;
  color: #4d4d4d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #4d4d4d;
  border-radius: 4px;
}

.fileSelect-btn {
  width: 399px;
  height: 96px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #999999;
  background: url(../images/common/icon_download_x40.svg) top 16px center
    no-repeat;
  background-color: #f5f5f5;
  border: 1px solid #ebebeb;
  border-radius: 8px;
  padding: 16px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.array-btn {
  width: 20px;
  height: 20px;
  background: url(../images/common/icon_array_x20.svg) center no-repeat;
}

.delete-btn {
  width: 20px;
  height: 20px;
  background: url(../images/common/icon_delete_x20.svg) center no-repeat;
}

.password-btn {
  width: 120px;
}

.send-btn {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background: url(../images/common//icon_send_x20.svg) no-repeat;
}

.table-wrap {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.table-row {
  width: 100%;
  table-layout: fixed;
}
.table-row .point {
  font-weight: 700;
}
.table-row .point.red {
  color: #e20022;
}
.table-row .point.blue {
  color: #467aeb;
}
.table-row .point.orange {
  color: #eb6100;
}
.table-row .syn {
  background-color: #e3e9f2;
}
.table-row thead th {
  text-align: center;
  padding: 10px 0px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #000000;
  background-color: #ebebeb;
  border: 1px solid #d9d9d9;
  border-left: 0;
  border-right: 0;
}
.table-row thead th:first-child {
  border-left: 1px solid #d9d9d9;
}
.table-row thead th:last-child {
  border-right: 1px solid #d9d9d9;
}
.table-row thead th.verticalMiddle {
  vertical-align: middle;
}
.table-row thead th.syn {
  background-color: #e3e9f2;
}
.table-row thead th .icon_search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.table-row thead th .icon_search:after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/common/icon_search_x20.svg) center no-repeat;
  margin-left: 4px;
}
.table-row thead th .table-inner_btn {
  margin: 0 auto;
}
.table-row tbody td {
  text-align: center;
  padding: 10px 10px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  border: 1px solid #d9d9d9;
  border-top: 0;
  border-left: 0;
  border-right: 0;
}
.table-row tbody td:first-child {
  border-left: 1px solid #d9d9d9;
}
.table-row tbody td:last-child {
  border-right: 1px solid #d9d9d9;
}
.table-row tbody td .link {
  color: #000000;
  text-decoration: underline;
}
.table-row tbody td > a {
  color: #000000;
  text-decoration: underline;
}
.table-row tbody td.text-wrap.ellipsis {
  height: 20px;
}
.table-row tbody td .table-inner_btn {
  margin: 0 auto;
}
.table-row tbody td.noData {
  height: 112px;
  vertical-align: middle;
  color: #5c5c5c;
}
.table-row.edit-table tbody th {
  padding: 12px 0px;
  vertical-align: middle;
}
.table-row.edit-table tbody td {
  padding: 4px;
  text-align: left;
  vertical-align: middle;
}
.table-row.edit-table tbody td:has(.table-inner_btn) {
  text-align: center;
}
.table-row.edit-table .custom-radio-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.table-row.edit-table .custom-radio-wrap .custom-radio {
  font-size: 14px;
}
.table-row.edit-table .custom-radio-wrap .custom-radio + .custom-radio {
  margin-left: 24px;
}
.table-row.edit-table input {
  width: 100%;
  height: 42px;
}
.table-row.edit-table .input-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.table-row.edit-table .input-wrap input {
  width: calc(100% - 110px);
}
.table-row.edit-table .input-wrap input + .btn-medium {
  margin-left: 4px;
}
.table-row.edit-table .input-wrap.half {
  width: 450px;
}
.table-row.edit-table .text-wrap {
  padding: 0 16px;
}
.table-row.edit-table .calendar-input {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.table-row.edit-table .year-picker-dropdown {
  max-height: 120px;
}
.table-row .array-btn {
  margin-left: 4px;
}
.table-row.ellipsis tbody td {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.table-col {
  width: 100%;
  table-layout: fixed;
}
.table-col + .table-col {
  margin-top: 24px;
}
.table-col tbody th {
  text-align: center;
  padding: 10px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #000000;
  background-color: #ebebeb;
  border: 1px solid #d9d9d9;
}
.table-col tbody th.verticalMiddle {
  vertical-align: middle;
}
.table-col tbody th.alginLeft {
  text-align: left;
}
.table-col tbody td {
  text-align: center;
  padding: 10px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  border: 1px solid #d9d9d9;
}
.table-col .point {
  font-weight: 700;
}
.table-col .point.red {
  color: #e20022;
}
.table-col .point.blue {
  color: #467aeb;
}
.table-col .point.orange {
  color: #eb6100;
}

.table-col tbody td.ex {
  height: 180px;
  padding: 12px 8px;
}
.table-col tbody td.ex textarea {
  width: calc(100% - 34px);
  min-height: 156px;
  height: auto;
  font-size: 16px;
  line-height: 22px;
  color: #999999;
  padding: 12px 16px;
  border: 1px solid #c2c2c2;
  border-radius: 8px;
  font-family: Pretendard;
}
.table-col tbody td.ex .text-wrap {
  height: 160px;
  overflow-y: auto;
}
.table-col tbody td.alginCenter {
  text-align: center;
}
.table-col tbody td.verticalMiddle {
  vertical-align: middle;
}
.table-col tbody td .link {
  color: #000000;
  text-decoration: underline;
}
.table-col tbody td > a {
  color: #000000;
  text-decoration: underline;
}
.table-col.detail-table tbody th {
  font-size: 16px;
  line-height: 22px;
  padding: 14px;
  vertical-align: middle;
}
.table-col.detail-table tbody td {
  font-size: 16px;
  line-height: 22px;
  padding: 14px 24px;
  text-align: left;
}
.table-col.detail-table tbody td.alginCenter {
  text-align: center;
}
.table-col.detail-table tbody td.verticalMiddle {
  vertical-align: middle;
}
.table-col.detail-table tbody td .remarks {
  height: 100%;
  min-height: 72px;
}
.table-col.detail-table .custom-radio-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.table-col.detail-table .custom-radio-wrap .custom-radio {
  font-size: 14px;
}
.table-col.detail-table .custom-radio-wrap .custom-radio + .custom-radio {
  margin-left: 24px;
}
.table-col.detail-table input {
  width: 100%;
  height: 42px;
}
.table-col.detail-table .input-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.table-col.detail-table .input-wrap input {
  width: calc(100% - 110px);
}
.table-col.detail-table .input-wrap input + .btn-medium {
  margin-left: 4px;
}
.table-col.edit-table tbody th {
  font-size: 16px;
  line-height: 22px;
  padding: 14px 10px;
  vertical-align: middle;
}
.table-col.edit-table tbody td {
  font-size: 16px;
  line-height: 22px;
  padding: 4px 8px;
  text-align: left;
  vertical-align: middle;
}
.table-col.edit-table tbody td.alginCenter {
  text-align: center;
}
.table-col.edit-table .custom-radio-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.table-col.edit-table .custom-radio-wrap .custom-radio {
  font-size: 14px;
}
.table-col.edit-table .custom-radio-wrap .custom-radio + .custom-radio {
  margin-left: 24px;
}
.table-col.edit-table input {
  width: 100%;
  height: 42px;
}
.table-col.edit-table .input-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.table-col.edit-table .input-wrap input {
  width: calc(100% - 110px);
}
.table-col.edit-table .input-wrap input + .btn-medium {
  margin-left: 4px;
}
.table-col.edit-table .input-wrap.half {
  width: 450px;
}
.table-col.edit-table .input-wrap .selectric-wrapper + input {
  margin-left: 4px;
}
.table-col.edit-table .text-wrap {
  padding: 0 16px;
}
.table-col.edit-table .table-row-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.table-col.edit-table .table-row-form input {
  width: 828px;
}
.table-col.edit-table .table-row-form .selectric-wrapper {
  width: 170px;
}
.table-col.edit-table .table-row-form .selectric-wrapper .selectric-items li {
  padding-right: 10px;
}
.table-col.popup-table tbody th {
  width: 160px;
  padding: 14px 0;
}
.table-col.popup-table tbody td {
  padding: 14px 20px;
  text-align: left;
}
.table-col.popup-table input {
  width: 100%;
  height: 42px;
}
.table-col.popup-table .timePicker-input {
  width: 285px;
  font-size: 16px;
}
.table-col.popup-table .custom-radio-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.table-col.popup-table .custom-radio-wrap .custom-radio + .custom-radio {
  margin-left: 24px;
}
.table-col.popup-table .btn-wrap {
  margin: 0;
  width: 100%;
  padding-left: 16px;
}
.table-col.popup-table.edit-table tbody td {
  padding: 4px;
}
.table-col.popup-table.edit-table .custom-radio-wrap {
  padding: 11px 16px;
}
.table-col.fixed-table {
  table-layout: fixed;
}
.table-year {
  position: relative;
}
/* .table-year:after {
  content: "";
  width: calc(100% - 3px);
  height: 122px;
  border: 1px solid #e20022;
  position: absolute;
  top: 82px;
  left: 0;
  z-index: -1;
} */

.table-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #000000;
  padding-left: 24px;
  position: relative;
}
.table-title:after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #eb6100;
  border-radius: 50%;
  top: 50%;
  left: 7px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.table-titleWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 16px;
}
.table-titleWrap.between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.table-titleWrap.alignEnd {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.table-titleWrap .btn-small {
  width: auto;
  padding: 0 20px;
}
.table-subTitle {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.table-group-item + .table-group-item {
  margin-top: 24px;
}
.table-group.col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.table-group.col .table-group-item + .table-group-item {
  margin-top: 0;
}
.table-group.col .table-row tbody td:last-child {
  border-left: 1px solid #d9d9d9;
}
.table-group + .table-group {
  margin-top: 40px;
}

.table-scrollWrap {
  height: 534px;
  overflow-y: auto;
  padding-right: 3px;
}
.table-scrollWrap.oid {
  height: 468px;
}
.table-scrollWrap.oid .btn-wrap {
  margin-top: 0;
  gap: 4px;
}

.selectric {
  height: 42px;
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #c2c2c2;
}
.selectric .label {
  height: 42px;
  margin: 0 36px 0 16px;
  font-size: 16px;
  line-height: 42px;
  color: #000000;
}
.selectric .button {
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.selectric .button:after {
  width: 20px;
  height: 20px;
  background: url(../images/common/icon_down_gray_x20.svg) center no-repeat;
  border: 0;
}
.selectric-open {
  z-index: 50;
}
.selectric-open .selectric {
  border-radius: 8px 8px 0 0;
  border-color: #d9d9d9;
}
.selectric-open .selectric .label {
  color: #000000;
}
.selectric-open .selectric .button:after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.selectric-items {
  border-top: 0;
  border-left: 1px solid #d9d9d9;
  border-right: 1px solid #d9d9d9;
  border-bottom: 0 solid #d9d9d9;
}
.selectric-items .disabled {
  display: none;
}
.selectric-items li {
  font-size: 16px;
  padding: 16px 24px 16px 36px;
  background-color: #ffffff;
  border-bottom: 1px solid #d9d9d9;
  position: relative;
}
.selectric-items li:before {
  content: "";
  width: 20px;
  height: 20px;
  /*background: url(../images/common/icon_check_x20.svg) center no-repeat;*/
  position: absolute;
  top: 17px;
  left: 20px;
}
.selectric-items li.highlighted {
  font-weight: 700;
  background-color: #ffe8d9;
}
.selectric-items li.highlighted:before {
  background: url(../images/common/icon_check_outline_x20.svg) center no-repeat;
}
.selectric-items li:hover {
  font-weight: 700;
  background-color: #ffe8d9;
}
.selectric-items li:hover:before {
  background: url(../images/common/icon_check_outline_x20.svg) center no-repeat;
}
.selectric-dot .selectric-items li:before {
  width: 6px;
  height: 6px;
  background: #000000;
  border-radius: 50%;
  top: 50%;
  left: 18px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.selectric-dot .selectric-items li.highlighted:before {
  background-color: #eb6100;
}
.selectric-dot .selectric-items li:hover::before {
  background-color: #eb6100;
}

.lnb {
  width: 324px;
  height: 100vh;
  background-color: #161c24;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  padding-bottom: 30px;
  overflow-y: auto;
}
.lnb-header {
  width: 100%;
  height: 211px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: sticky;
  top: 0;
  background: #161c24;
  z-index: 1;
}
.lnb-logo img {
  display: block;
  width: 250px;
}
.lnb-logo figcaption {
  font-weight: 800;
  font-size: 24px;
  line-height: 29px;
  color: #ffffff;
  margin-top: 15px;
  text-align: center;
}
.lnb-body {
  width: 100%;
  display: block;
}
.lnb-depth1 {
  position: relative;
}
.lnb-depth1-btn {
  width: 100%;
  height: 54px;
  padding: 10px 48px 10px 24px;
  text-align: left;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: -0.18px;
  color: #ffffff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 16px;
}
.lnb-depth1-btn img {
  width: 24px;
  height: 24px;
}
.lnb-depth1-btn:after {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  right: 24px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../images/common/icon_down_white_x24.svg) center no-repeat;
}
.lnb-depth1-btn.active:after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.lnb-depth1-link {
  width: 100%;
  height: 54px;
  padding: 10px 48px 10px 24px;
  text-align: left;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  color: #ffffff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 16px;
  cursor: pointer;
}
.lnb-depth2 {
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  height: 100%;
}
.lnb-depth2.active {
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  opacity: 1;
  visibility: visible;
  max-height: 800px;
}
.lnb-depth2-link {
  display: block;
  width: 100%;
  padding: 10px 48px 10px 88px;
  text-align: left;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
  position: relative;
  cursor: pointer;
}
.lnb-depth2-link:before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 48px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
}
.lnb-depth2-link.active {
  color: #ffffff;
}
.lnb-depth2-link.active:before {
  background: url(../images/common/icon_right_x24.svg) center no-repeat;
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.breadcrumb-wrap {
  height: 74px;
  padding: 16px 40px;
  margin: 40px 36px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid rgb(217, 224, 238);
  -webkit-box-shadow: 4px 4px 12px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 4px 4px 12px 0px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}
.breadcrumb-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #808080;
  margin-right: 8px;
}
.breadcrumb-item.active {
  font-size: 28px;
  line-height: 42px;
  font-weight: 700;
  color: #000000;
}
.breadcrumb-item:nth-of-type(1):before {
  display: none;
}
.breadcrumb-item:before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../images/common/icon_next_gray_x24.svg) center no-repeat;
  margin-right: 8px;
}

.user-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.user-wrap .logout-btn {
  margin-left: 8px;
}
.user-info {
  padding: 7px 20px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.122px;
  font-weight: 400;
  color: #ffffff;
  border-radius: 4px;
  background-color: #eb6100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.user-info:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/common/icon_admin_white_x20.svg) center no-repeat;
  margin-right: 4px;
}

.sub-container-wrap {
  margin: 50px 36px 0;
}
.sub-container-inner {
  padding: 40px 48px;
  -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.0784313725);
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.0784313725);
  border-radius: 20px;
}
.sub-container-inner .btn-wrap {
  gap: 24px;
}
.sub-container-inner .btn-wrap .btn-large {
  width: 185px;
}
.sub-container-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
}
.sub-container-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -48px;
  transform: translateY(-50%);
  width: 20px;
  height: 28px;
  background-color: #eb6100;
}
.sub-container-title-between {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.sub-container-title-between .btn-wrap {
  margin-top: 0;
}
.sub-container-title-start {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.sub-container-title span {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}
.sub-container-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin: 48px 100px 0;
}
.sub-container-group .sub-container {
  width: calc((100% - 24px) / 2);
  margin: 0;
}

.component-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 28px;
}
.component-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.component-left input {
  width: 260px;
}
.component-left .selectric-wrapper .selectric {
  width: 320px;
  height: 50px;
}
.component-left .selectric-wrapper .selectric .label {
  height: 50px;
  line-height: 50px;
}
.component-left .selectric-wrapper.selectric-small .selectric {
  width: 200px;
}
.component-left .calendar-container {
  gap: 8px;
}
.component-left .calendar-container .calendar-container-item .calendar-input {
  width: 180px;
}
.component-left
  .single-calendar-container
  .calendar-container-item
  .calendar-input {
  width: 180px;
}
.component-left
  .singleYear-calendar-container
  .calendar-container-item
  .calendar-input {
  width: 180px;
}
.component-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.component-right .btn + .btn {
  margin-left: 8px;
}

.pagination-btn {
  width: 24px;
  height: 24px;
}
.pagination-btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}
.pagination-btn-prev {
  background: url(../images/common/icon_prev_gray_x24.svg) center no-repeat;
}
.pagination-btn-next {
  background: url(../images/common/icon_next_gray_x24.svg) center no-repeat;
}
.pagination-btn-first {
  background: url(../images/common/icon_left_gray_x24.svg) center no-repeat;
}
.pagination-btn-last {
  background: url(../images/common/icon_right_gray_x24.svg) center no-repeat;
}
.pagination-link {
  width: 32px;
  height: 32px;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  color: #808080;
}
.pagination-link.active {
  font-weight: 700;
  color: #eb6100;
}
.pagination-link-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 8px;
  gap: 8px;
}
.pagination-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 36px;
}

.calendar {
  width: 320px;
  height: 378px;
  padding: 20px;
  -webkit-box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.0784313725);
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.0784313725);
  background-color: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 20px;
  position: absolute;
  top: 100%;
  display: none;
  z-index: 50;
}
.calendar.active {
  display: block;
}
.calendar-input {
  border: 0;
  padding: 14px 16px 14px 52px;
  background: url(../images/common/icon_calender_x20.svg) center left 20px
    no-repeat;
  cursor: pointer;
  border: 1px solid #c2c2c2;
}
.calendar-input::-webkit-input-placeholder {
  color: #000000;
}
.calendar-input::-moz-placeholder {
  color: #000000;
}
.calendar-input:-ms-input-placeholder {
  color: #000000;
}
.calendar-input::-ms-input-placeholder {
  color: #000000;
}
.calendar-input::placeholder {
  color: #000000;
}
.calendar-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.calendar-container-item {
  width: 100%;
  position: relative;
}
.calendar-container_group span {
  margin: 0 10px;
}
.calendar-container_group .calendar-input {
  width: 144px;
  border: 1px solid #c2c2c2;
  border-radius: 8px;
  font-size: 14px !important;
  line-height: 24px !important;
  padding: 13px 42px 13px 14px;
  background: url(../images/common/icon_calender_disabled_x24.svg) center right
    14px no-repeat;
}

.fc .fc-toolbar {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.fc .fc-toolbar-title {
  font-size: 26px !important;
  line-height: 42px;
  margin: 0 16px;
  font-weight: 700;
}
.fc .fc-toolbar.fc-header-toolbar {
  height: 42px;
  margin-bottom: 4px;
}
.fc .fc-button-primary {
  background-color: transparent;
  border-color: transparent;
  color: transparent;
}
.fc .fc-button-primary:hover {
  background-color: transparent;
  border-color: transparent;
  color: transparent;
}
.fc .fc-prev-button {
  width: 20px;
  height: 20px;
  padding: 0;
  background: url(../images/common/icon_prev_x20.svg) center no-repeat;
}
.fc .fc-next-button {
  width: 20px;
  height: 20px;
  padding: 0;
  background: url(../images/common/icon_next_x20.svg) center no-repeat;
}
.fc-daygrid-day-number {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
}
.fc-daygrid-day-number:hover {
  background-color: #e3e9f2;
}
.fc-col-header {
  border-bottom: 1px solid #d9d9d9;
}
.fc-theme-standard .fc-scrollgrid {
  border: 0;
}
.fc-scrollgrid-sync-inner {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.fc-theme-standard td,
.fc-theme-standard th {
  width: auto !important;
  border: 0 !important;
  font-size: 14px !important;
  padding: 0 !important;
  background-color: transparent !important;
}
.fc-icon-chevron-left {
  display: none;
}
.fc-icon-chevron-left:before {
  content: "";
}
.fc-icon-chevron-right {
  display: none;
}
.fc-icon-chevron-right:before {
  content: "";
}
.fc .fc-scroller-harness-liquid {
  height: 240px;
}
.fc .fc-daygrid-day.fc-day-today {
  background-color: transparent;
}
.fc-daygrid-day-bg {
  display: none;
}
.fc-daygrid-day-events {
  display: none;
}
.fc-day-sun {
  color: #e20022 !important;
}
.fc .fc-day-other .fc-daygrid-day-top {
  opacity: 1;
  color: #999999;
}

.fc-year-dropdown {
  list-style: none;
  margin: 0;
  padding: 6px 0;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-size: 14px;
}

.fc-year-dropdown li {
  padding: 6px 12px;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.fc-year-dropdown li:hover {
  background-color: #e3e9f2;
}

.fc-year-dropdown li.active {
  font-weight: bold;
  background-color: #e3e9f2;
}
.fc-yearmonth-dropdown {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 16px;
  display: flex;
  gap: 20px;
  min-width: 400px;
}

.fc-year-section,
.fc-month-section {
  flex: 1;
}

.fc-section-title {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e0e0e0;
  color: #333;
}

.fc-year-list,
.fc-month-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 300px;
  overflow-y: auto;
}

.fc-year-list li,
.fc-month-list li {
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.2s;
  font-size: 14px;
}

.fc-year-list li:hover,
.fc-month-list li:hover {
  background: #ffe8d9;
  color: #eb6100;
  font-weight: 700;
}

.fc-year-list li.active,
.fc-month-list li.active {
  background: #ffe8d9;
  color: #eb6100;
  font-weight: 700;
}

.fc-confirm-btn {
  width: 106px;
  margin-top: auto;
  padding: 10px;
  background-color: #eb6100;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}

/* 스크롤바 스타일 */
.fc-year-list::-webkit-scrollbar,
.fc-month-list::-webkit-scrollbar {
  width: 6px;
}

.fc-year-list::-webkit-scrollbar-thumb,
.fc-month-list::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 3px;
}

.fc-year-list::-webkit-scrollbar-thumb:hover,
.fc-month-list::-webkit-scrollbar-thumb:hover {
  background-color: #999;
}

/*.flatpickr-calendar {*/
/*  width: 285px;*/
/*}*/
.flatpickr-calendar:hover {
  -webkit-box-shadow: 1px 0 0 #eb6100, -1px 0 0 #eb6100, 0 1px 0 #eb6100,
    0 -1px 0 #eb6100, 0 3px 13px rgba(0, 0, 0, 0.08);
  box-shadow: 1px 0 0 #eb6100, -1px 0 0 #eb6100, 0 1px 0 #eb6100,
    0 -1px 0 #eb6100, 0 3px 13px rgba(0, 0, 0, 0.08);
}
.flatpickr-calendar.arrowTop:after,
.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowBottom:after,
.flatpickr-calendar.arrowBottom:before {
  display: none !important;
}
.flatpickr-calendar.hasTime .flatpickr-time {
  border-top: 0 !important;
}
.flatpickr-time input {
  font-size: 16px;
}
.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
  background-color: #e3e9f2;
  border-radius: 8px;
}
.flatpickr-time .numInputWrapper span.arrowUp {
  border-radius: 8px 8px 0 0;
}
.flatpickr-time .numInputWrapper span.arrowDown {
  border-radius: 0 0 8px 8px;
}

.year-picker-dropdown {
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  width: 100%;
  max-height: 240px;
  overflow-y: auto;
}
.year-picker-dropdown li {
  font-size: 16px;
  padding: 12px 16px;
  background-color: #ffffff;
  border-bottom: 1px solid #d9d9d9;
  cursor: pointer;
  transition: background 0.15s;
  &:hover {
    background-color: #ffe8d9;
    color: #eb6100;
  }
  &.active {
    background-color: #ffe8d9;
    color: #eb6100;
  }
}

.calendar-popup {
  display: none;
  width: 320px;
  height: 378px;
  padding: 20px;
  position: absolute;
  top: 100%;
  z-index: 9999;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.0784313725);
}
.calendar-popup.active {
  display: block;
}
.date-calendar-container {
  position: relative;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 150;
}
.popup-content {
  background: white;
  border-radius: 16px;
  position: relative;
}
.popup-header {
  padding: 14px 44px 12px 20px;
  border-bottom: 1px solid #d9d9d9;
  position: relative;
}
.popup-title {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
}
.popup-close-btn {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 24px;
  height: 24px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  background: url(../images/common/icon_close_x24.svg) center no-repeat;
}
.popup .text-wrap {
  height: 100%;
  padding: 10px 16px;
}
.popup-img {
  width: 100%;
  margin: 0 auto;
}
.popup .btn-wrap {
  margin-top: 20px;
}
.popup .btn-wrap .btn-large {
  width: calc(50% - 4px);
}
.popup .btn-wrap .btn-large + .btn-large {
  margin-left: 8px;
}
.popup-alert .popup-content {
  width: 364px;
}
.popup-alert .popup-body {
  padding: 24px 40px;
}
.popup-alert .popup-desc {
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  text-align: center;
}
.popup-alert.popup-noHeader .popup-body {
  padding-top: 48px;
}
.popup-modal .popup-content {
  width: 550px;
}
.popup-modal .popup-body {
  padding: 24px 48px;
}
.popup-modal.popup-noHeader .popup-body {
  padding-top: 48px;
}
.popup-modal .btn-wrap {
  width: 284px;
  margin: 20px auto 0;
}
.popup-modal .input_group + .input_group {
  margin-top: 16px;
}
.popup-modal .jstree-default {
  height: 403px;
}
.popup-modal .input_group .jstree-default {
  margin-top: 8px;
}
.popup-layout .popup-content {
  width: 1018px;
}
.popup-layout .popup-body {
  padding: 24px 48px;
  max-height: 820px;
  overflow-y: auto;
}
.popup-layout .btn-wrap {
  width: 284px;
  margin: 40px auto 0;
}
.popup-layout .table-col.popup-table.edit-table tbody td {
  width: auto;
}
.popup-hrm .popup-content {
  width: 1516px;
}
.popup-hrm .popup-body {
  padding: 24px 24px;
  height: 100%;
  max-height: 820px;
  overflow-y: auto;
}
.popup-hrm .btn-wrap {
  width: 284px;
  margin: 40px auto 0;
}
.popup-hrm .table-col.popup-table.edit-table tbody td {
  width: auto;
}
.popup-document textarea {
  height: 339px;
}
.popup-cost .popup-content {
  width: 1848px;
}
.popup-cost .popup-body {
  max-height: 790px;
  padding: 24px;
  overflow-y: auto;
}
.popup-cost .cost-item + .cost-item {
  margin-top: 42px;
}
.popup-cost .btn-wrap {
  width: 284px;
  margin: 40px auto 0;
}
.popup-cost .cost-input {
  font-size: 12px;
  padding-inline: 8px;
}
.popup-cost .select-button {
  height: 42px;
}
.popup-cost .select-button span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.loading-wrapper {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  z-index: 999999;
  position: fixed;
  top: 0;
  left: 0;
}
.loading-inner {
  width: 230px;
  height: 250px;
  position: relative;
}
.loading-img-gray {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.loading-img-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 230px;
  height: 250px;
  z-index: 2;
  pointer-events: none;
}

.error-inner {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.error-inner strong {
  font-family: Pretendard;
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
  color: #5c5c5c;
  margin-top: 24px;
}
.error-inner span {
  font-family: Pretendard;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
  color: #999999;
  display: block;
  margin-top: 8px;
}

.jstree-default {
  height: 229px;
  overflow-y: auto;
  padding: 28px 21px;
  border-radius: 8px;
  border: 1px solid #c2c2c2;
}

.jstree-default .jstree-node {
  min-height: 20px;
  line-height: 20px;
  margin-left: 20px;
  min-width: 20px;
  margin-top: 10px;
}

.jstree-default .jstree-anchor {
  height: 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.jstree-default .jstree-closed > .jstree-ocl {
  background: url(../images/common/icon_treeSelect01.svg) no-repeat center
    center;
}

.jstree-default .jstree-open > .jstree-ocl {
  background: url(../images/common/icon_treeSelect02.svg) no-repeat center
    center;
}

.jstree-default .jstree-checkbox {
  background: url(../images/common/icon_treeCheck01.svg) no-repeat center center;
}

.jstree-default .jstree-icon:empty {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.jstree-default .jstree-themeicon {
  display: none;
}

.jstree-default.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox,
.jstree-default .jstree-checked > .jstree-checkbox {
  background: url(../images/common/icon_treeCheck02.svg) no-repeat center center;
}

.jstree-default .jstree-hovered {
  background: transparent;
}

.info-metrics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 18px 48px;
  gap: 8px;
  -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.0784313725);
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.0784313725);
  margin-bottom: 20px;
  border-radius: 20px;
}
.info-metrics-item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 21px 24px;
  border-radius: 20px;
  background-color: #f1f1f3;
}
.info-metrics-item:last-child {
  background-color: #ffaf5c;
}
.info-metrics-item dt {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  color: #000000;
}
.info-metrics-item dd {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: #000000;
}

.ganttChart .highcharts-axis-labels {
  font-family: "Pretendard";
}
.highcharts-xaxis-labels text {
  /* transform: rotate(-45deg); */
}

.login_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100vh;
}

.logo_wrap {
  width: 1048px;
  padding-left: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: url(../images/common/login_background.png) no-repeat left;
}
.logo_wrap img {
  display: block;
  max-width: 344px;
  height: auto;
}
.logo_wrap figcaption {
  font-weight: 600;
  font-size: 54px;
  line-height: 68px;
  text-align: left;
  color: #ffffff;
  margin-top: 51px;
  letter-spacing: 5.4px;
}

.login_form {
  width: 100%;
  max-width: 480px;
  text-align: center;
}
.login_form_wrap {
  width: 872px;
  height: 100%;
  padding-inline: 188px 196px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.login_form_img {
  width: 100%;
  max-width: 100px;
  margin: 0 auto 16px;
  display: block;
}
.login_form_title {
  font-weight: 700;
  font-size: 26px;
  line-height: 44px;
  color: #000000;
  margin-bottom: 34px;
}
.login_form_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 24px;
}
.login_form_item label {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #9c9c9c;
  text-align: left;
}
.login_form_item input {
  width: 100%;
  height: 60px;
  margin-top: 16px;
  padding-inline: 20px;
  background-color: #f3f6fb;
  border: 1px solid #ebebeb;
}
.login_form_item input:placeholder {
  color: #707070;
}
.login_form .btn_wrap {
  margin-top: 80px;
}
.login_form .btn_wrap button {
  width: 100%;
  height: 60px;
  border-radius: 50px;
  background: linear-gradient(
    88.18deg,
    #fe7a5d 9.78%,
    #feb157 85.5%,
    #ffaf5e 97.36%
  );
  -webkit-box-shadow: 0px 4px 25px #ffb2a3;
  box-shadow: 0px 4px 25px #ffb2a3;
  border: 2px solid #f5f5f5;
  color: #ffffff;
  font-weight: 600;
  font-size: 24px;
  line-height: 40px;
}

.popup-loginWrap .popup-desc {
  font-size: 20px;
  line-height: 28px;
  text-align: center;
}
.popup-loginWrap .input-wrap {
  margin-top: 24px;
}
.popup-loginWrap .input-wrap input {
  width: 100%;
}
.popup-loginWrap .input-wrap input + input {
  margin-top: 8px;
}
.popup-loginWrap .input-wrap .time {
  font-size: 12px;
  line-height: 14px;
  margin-top: 8px;
  color: #5c5c5c;
  text-align: right;
}

.main_wrap {
  width: 1920px;
  height: 911px;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.main-content {
  width: 100%;
  padding: 30px 36px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.main-content-wrap {
  width: 1920px;
  padding-left: 324px;
  position: relative;
}
.main-content-item {
  padding: 40px 48px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.0784313725);
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.0784313725);
  border-radius: 20px;
}
.main-content-item h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
}
.main-content-item h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: -48px;
  width: 20px;
  height: 100%;
  background-color: #eb6100;
}
.main-content-item h2.between {
  align-items: flex-end;
  justify-content: space-between;
}
.main-content-item h2.between span {
  font-size: 12px;
  line-height: 17px;
  font-weight: 400;
}
.main-content-item-wrap.col-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
}
.main-content-item-wrap.col-3 .main-content-item {
  width: 100%;
}
.main-content-item .info-metrics {
  box-shadow: none;
  padding: 0;
  margin-bottom: 0;
}
/*# sourceMappingURL=style.css.map*/
td .custom-select {
  position: relative;
  width: 100%;
}

.custom-select {
  position: relative;
  width: 200px;
}

.custom-select.disabled {
  pointer-events: none; /* 클릭 방지 */
  opacity: 0.5; /* 흐릿하게 처리 */
  background-color: #f5f5f5; /* 배경색 변경 (선택사항) */
}

.select-button {
  width: 100%;
  height: 50px;
  background: #ffffff;
  border: 1px solid #c2c2c2;
  border-radius: 8px;
  padding: 12px 36px 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 16px;
  font-weight: 400;
}

.select-button:hover {
  border-color: #eb6100;
}

.select-button.active {
  border-color: #eb6100;
}

.select-button span {
  color: #000000;
}

.select-button span.placeholder {
  color: #999999;
}

.select-arrow {
  width: 20px;
  height: 20px;
  background: url(../images/common/icon_down_gray_x20.svg) center no-repeat;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}

.select-button.active .select-arrow {
  transform: translateY(-50%) rotate(180deg);
}

.options-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  max-height: 240px;
  overflow-y: auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 10;
  display: none;
}

.options-list.show {
  display: block;
}

.options-list.open-up {
  top: auto;
  bottom: 100%;
  margin-bottom: 4px;
  margin-top: 0;
}

.option-item {
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.15s;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
}

.option-item:last-child {
  border-bottom: none;
}

.option-item:hover {
  background: #ffe8d9;
  color: #eb6100;
}

.option-item.selected {
  background: #ffe8d9;
  color: #eb6100;
  font-weight: 500;
}
.document-textWrap {
  padding: 14px 16px;
  border: 1px solid #c2c2c2;
  border-radius: 8px;
  height: 460px;
  overflow-y: auto;
}

/* ck 에디터 css */
.ck-content {
  height: 480px;
}

.ck-content h2 {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 10px;
}

.ck-content h3 {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 8px;
}

.ck-content h4 {
  font-size: 1.1em;
  font-weight: bold;
}

.ck-content p {
  margin-bottom: 1em;
  line-height: 1.6;
}

.ck-content strong {
  font-weight: bold; /* 리셋된 굵기를 다시 적용 */
}

.ck-content i {
  font-style: italic; /* 리셋된 기울임을 다시 적용 */
}

.ck-content ul,
.ck-content ol {
  padding-left: 20px; /* 리스트 들여쓰기 복구 */
  list-style-type: disc;
}
#pieChart {
  height: 250px;
}
#pieChart2 {
  height: 250px;
}
#pieChart3 {
  height: 250px;
}
#barChart {
  height: 400px;
}

.flatpickr-input {
  height: 50px;
}
.table-year tbody td {
  vertical-align: middle;
}
.table-year tbody td:first-child {
  width: 120px !important;
}
.table-year tbody td:nth-child(2) {
  width: 130px !important;
}

@media print {
  .lnb {
    display: none;
  }
  .breadcrumb-wrap {
    display: none;
  }
  .main-content-wrap {
    width: 100%;
    padding: 0;
  }
  .sub-container-wrap {
    margin: 0;
    padding: 0;
  }
  .table-year {
    table-layout: fixed;
  }
  .table-year thead th {
    width: auto !important;
  }
  .table-year tbody td {
    width: auto !important;
    padding-inline: 0;
    white-space: normal;
    word-break: break-all;
    font-size: 10px;
  }
  .table-year tbody td:first-child {
    width: 80px !important;
  }
}
