@charset "UTF-8";
:root {
  --base-color:#000;
  --primary-color:#00d5c3;
  --secondary-color: #8f9ab1;
  --tertiary-color:#495265;
  --fourth-color: #cad5de;
  --white-color: #fff;
  --bg-color: #f5f7f9;
  --warning-color: #ee9595;
}

.hide {
  width: 0;
  height: 0;
  margin: 0 !important;
  padding: 0;
  font-size: 0;
  opacity: 0;
}

a:active {
  color: var(--primary-color);
}

.basis_100 {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

.title_wrap {
  margin-top: 60px;
  background: var(--white-color);
}
.title_wrap .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 30px;
  font-size: 14px;
  letter-spacing: calc(14px / 1000 * 0);
  color: var(--secondary-color);
  line-height: 24px;
}
.title_wrap .title:before {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 4px;
  height: 4px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--secondary-color);
  content: "";
}
.title_wrap .title.line {
  border-top: 1px solid var(--fourth-color);
  border-bottom: 1px solid var(--fourth-color);
}
.title_wrap:first-child {
  margin-top: 0;
}
.title_wrap:first-child .title.line {
  border-top: 0;
}

.button {
  display: inline-block;
  text-decoration: none;
}
.button.basic {
  min-width: 118px;
  border-radius: 10px;
  padding: 11px 0 13px 0;
  font-size: 12px;
  letter-spacing: calc(12px / 1000 * 0);
  font-weight: 500;
  text-align: center;
  line-height: 18px;
}
.button.basic.solid {
  background: var(--primary-color);
  color: #fff;
}
.button.basic.solid.press, .button.basic.solid:active {
  background: #09bfb0;
}
.button.basic.line {
  border: 1px solid var(--primary-color);
  background: #fff;
  color: var(--primary-color);
}
.button.basic.line.normal {
  border: 1px solid var(--secondary-color);
  background: #fff;
  color: var(--secondary-color);
}
.button.basic.line.warn {
  border: 1px solid var(--warning-color);
  background: #fff;
  color: var(--warning-color);
}
.button.basic.line.press, .button.basic.line:active {
  border-color: #09bfb0;
  color: #09bfb0;
}
.button.side_input {
  padding: 10px;
  border-radius: 5px;
  font-size: 12px;
  letter-spacing: calc(12px / 1000 * 0);
  font-weight: 500;
  text-align: center;
  line-height: 17px;
}
.button.side_input.line {
  border: 1px solid var(--secondary-color);
  background: #fff;
  color: var(--secondary-color);
}
.button.calendar {
  width: 16px;
  height: 16px;
  background: url(../images/icon/icon_calendar_off.png) no-repeat 0 0;
  background-size: 100%;
}
.button.calendar:active, .button.calendar.active {
  background: url(../images/icon/icon_calendar_on.png) no-repeat 0 0;
  background-size: 100%;
}
.button.edit {
  width: 18px;
  height: 18px;
  background: url(../images/icon/icon_edit_off.png) no-repeat 0 0;
  background-size: 100%;
}
.button.edit:active, .button.edit.active {
  background: url(../images/icon/icon_edit_on.png) no-repeat 0 0;
  background-size: 100%;
}
.button.delete {
  width: 18px;
  height: 18px;
  background: url(../images/icon/icon_delete_off.png) no-repeat 0 0;
  background-size: 100%;
}
.button.delete:active, .button.delete.active {
  background: url(../images/icon/icon_delete_on.png) no-repeat 0 0;
  background-size: 100%;
}
.button.plus {
  width: 32px;
  height: 32px;
  background: url(../images/icon/icon_plus.png) no-repeat 0 0;
  background-size: 100%;
}
.button.plus:active, .button.plus.active {
  background: url(../images/icon/icon_plus_active.png) no-repeat 0 0;
  background-size: 100%;
}
.button.minus {
  width: 32px;
  height: 32px;
  background: url(../images/icon/icon_minus.png) no-repeat 0 0;
  background-size: 100%;
}
.button.minus:active, .button.minus.active {
  background: url(../images/icon/icon_minus_active.png) no-repeat 0 0;
  background-size: 100%;
}

.text_box {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.text_box label {
  margin-right: 18px;
  font-size: 12px;
  letter-spacing: calc(12px / 1000 * 0);
  color: var(--base-color);
  line-height: 24px;
}
.text_box .input_text {
  height: 40px;
  border-radius: 5px;
  background: #fff;
}
.text_box .input_text input {
  width: 100%;
  height: 100%;
  padding: 0 13px;
  border: 1px solid #dde5eb;
  border-radius: 5px;
  background: transparent;
  caret-color: var(--primary-color);
  font-size: 12px;
  letter-spacing: calc(12px / 1000 * 0);
  color: var(--base-color);
  line-height: 40px;
}
.text_box .input_text input::-webkit-input-placeholder {
  font-size: 12px;
  letter-spacing: calc(12px / 1000 * 0);
  color: var(--fourth-color);
  line-height: 40px;
}
.text_box .input_text input::-moz-placeholder {
  font-size: 12px;
  letter-spacing: calc(12px / 1000 * 0);
  color: var(--fourth-color);
  line-height: 40px;
}
.text_box .input_text input:-ms-input-placeholder {
  font-size: 12px;
  letter-spacing: calc(12px / 1000 * 0);
  color: var(--fourth-color);
  line-height: 40px;
}
.text_box .input_text input::-ms-input-placeholder {
  font-size: 12px;
  letter-spacing: calc(12px / 1000 * 0);
  color: var(--fourth-color);
  line-height: 40px;
}
.text_box .input_text input::placeholder {
  font-size: 12px;
  letter-spacing: calc(12px / 1000 * 0);
  color: var(--fourth-color);
  line-height: 40px;
}
.text_box .input_text input:focus {
  outline: none;
  border-color: var(--primary-color);
}
.text_box .input_text input[readonly] {
  background: #dde5eb;
  color: #8f9ab1;
  pointer-events: none;
}
.text_box.file_box input[type=file] {
  overflow: hidden;
  position: absolute;
  width: 0;
  height: 0;
  padding: 0;
  border: 0;
}
.text_box.file_box .input_text + label {
  margin-left: 10px;
}
.text_box.flex_auto {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
.text_box .btn_item {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-left: 10px;
}

.text_area {
  background: #fff;
}
.text_area textarea {
  width: 100%;
  height: 100%;
  padding: 20px;
  border: 1px solid #dde5eb;
  border-radius: 5px;
  background: transparent;
  caret-color: var(--primary-color);
  font-size: 12px;
  letter-spacing: calc(12px / 1000 * 0);
  color: var(--base-color);
  line-height: 24px;
}
.text_area textarea::-webkit-input-placeholder {
  font-size: 12px;
  letter-spacing: calc(12px / 1000 * 0);
  color: var(--fourth-color);
  line-height: 24px;
}
.text_area textarea::-moz-placeholder {
  font-size: 12px;
  letter-spacing: calc(12px / 1000 * 0);
  color: var(--fourth-color);
  line-height: 24px;
}
.text_area textarea:-ms-input-placeholder {
  font-size: 12px;
  letter-spacing: calc(12px / 1000 * 0);
  color: var(--fourth-color);
  line-height: 24px;
}
.text_area textarea::-ms-input-placeholder {
  font-size: 12px;
  letter-spacing: calc(12px / 1000 * 0);
  color: var(--fourth-color);
  line-height: 24px;
}
.text_area textarea::placeholder {
  font-size: 12px;
  letter-spacing: calc(12px / 1000 * 0);
  color: var(--fourth-color);
  line-height: 24px;
}
.text_area textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.select_box {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 24px;
}
.select_box:first-child {
  margin-left: 0;
}
.select_box label {
  margin-right: 18px;
  font-size: 12px;
  letter-spacing: calc(12px / 1000 * 0);
  color: var(--base-color);
  line-height: 24px;
}
.select_box .ui-selectmenu-button.ui-button {
  height: 40px;
  padding: 0 13px;
  border: 1px solid #dde5eb;
  border-radius: 5px;
  background: #fff;
  font-size: 12px;
  letter-spacing: calc(12px / 1000 * 0);
  color: var(--base-color);
  font-family: "Noto Sans Kr", "맑은 고딕", Dotum, "돋움", Gulim, "굴림", Tahoma, Arial;
  line-height: 40px;
}
.select_box .ui-selectmenu-button.ui-button .ui-icon {
  width: 10.5px;
  height: 5.25px;
  margin-top: 17.375px;
  background: url(../images/icon/icon_dropdown_off.png) no-repeat 0 0;
  background-size: 100%;
}
.select_box .ui-selectmenu-button.ui-button.ui-selectmenu-button-open {
  border-color: var(--primary-color);
  border-radius: 5px 5px 0 0;
}
.select_box .ui-selectmenu-button.ui-button.ui-selectmenu-button-open .ui-icon {
  background: url(../images/icon/icon_dropdown_on.png) no-repeat 0 0;
  background-size: 100%;
}
.select_box.width_auto {
  width: 100%;
}
.select_box.width_auto .ui-selectmenu-button.ui-button {
  width: 100%;
}

.ui-selectmenu-menu .ui-menu {
  max-height: 320px;
  margin-top: -1px;
  border: 1px solid var(--primary-color);
  border-radius: 0 0 5px 5px;
  font-family: "Noto Sans Kr", "맑은 고딕", Dotum, "돋움", Gulim, "굴림", Tahoma, Arial;
}
.ui-selectmenu-menu .ui-menu .ui-menu-item .ui-menu-item-wrapper {
  padding: 10px 13px;
}
.ui-selectmenu-menu .ui-menu .ui-menu-item .ui-menu-item-wrapper.ui-state-active {
  margin: 0;
  border: none;
  background: #eceef1;
  color: var(--tertiary-color);
}

.date_box {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.date_box label {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-right: 18px;
  font-size: 12px;
  letter-spacing: calc(12px / 1000 * 0);
  color: var(--base-color);
  line-height: 24px;
}
.date_box .date_group {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.date_box .date_group .date {
  position: relative;
  min-width: 155px;
  height: 40px;
  border-radius: 5px;
  background: #fff;
}
.date_box .date_group .date input {
  width: 100%;
  height: 100%;
  padding: 0 13px;
  border: 1px solid #dde5eb;
  border-radius: 5px;
  background: transparent url(../images/icon/icon_calendar_off.png) no-repeat;
  background-position: right 10px top 12px;
  background-size: 16px 16px;
  caret-color: var(--primary-color);
  font-size: 12px;
  letter-spacing: calc(12px / 1000 * 0);
  color: var(--base-color);
  line-height: 40px;
}
.date_box .date_group .date input::-webkit-input-placeholder {
  font-size: 12px;
  letter-spacing: calc(12px / 1000 * 0);
  color: var(--base-color);
  line-height: 40px;
}
.date_box .date_group .date input::-moz-placeholder {
  font-size: 12px;
  letter-spacing: calc(12px / 1000 * 0);
  color: var(--base-color);
  line-height: 40px;
}
.date_box .date_group .date input:-ms-input-placeholder {
  font-size: 12px;
  letter-spacing: calc(12px / 1000 * 0);
  color: var(--base-color);
  line-height: 40px;
}
.date_box .date_group .date input::-ms-input-placeholder {
  font-size: 12px;
  letter-spacing: calc(12px / 1000 * 0);
  color: var(--base-color);
  line-height: 40px;
}
.date_box .date_group .date input::placeholder {
  font-size: 12px;
  letter-spacing: calc(12px / 1000 * 0);
  color: var(--base-color);
  line-height: 40px;
}
.date_box .date_group .date input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: url(../images/icon/icon_calendar_on.png) no-repeat;
  background-position: right 10px top 12px;
  background-size: 16px 16px;
}
.date_box .date_group span {
  padding: 0 12px;
  font-size: 12px;
  letter-spacing: calc(12px / 1000 * 0);
  color: var(--base-color);
  line-height: 24px;
}

.ui-widget.ui-datepicker {
  width: auto;
  padding: 10px;
  border-radius: 5px;
  font-size: 14px;
  letter-spacing: calc(14px / 1000 * 0);
  font-family: "Noto Sans Kr";
  color: var(--base-color);
  line-height: 24px;
}
.ui-widget.ui-datepicker.ui-widget-content {
  border: 1px solid #dde5eb;
  -webkit-box-shadow: 0 0 16px rgba(73, 82, 101, 0.1);
          box-shadow: 0 0 16px rgba(73, 82, 101, 0.1);
}
.ui-widget.ui-datepicker .ui-datepicker-header {
  padding: 0;
  border: none;
  background: transparent;
  color: var(--base-color);
  font-weight: 500;
}
.ui-widget.ui-datepicker .ui-datepicker-header .ui-state-hover {
  top: auto;
  border: none;
  background: transparent;
  cursor: pointer;
}
.ui-widget.ui-datepicker .ui-datepicker-header .ui-datepicker-prev {
  left: 2px;
  top: 8px;
}
.ui-widget.ui-datepicker .ui-datepicker-header .ui-datepicker-prev .ui-icon {
  background: url(../images/icon/icon_cal_off.png) no-repeat 0 0;
  background-size: 100%;
}
.ui-widget.ui-datepicker .ui-datepicker-header .ui-datepicker-next {
  right: 2px;
  top: 8px;
}
.ui-widget.ui-datepicker .ui-datepicker-header .ui-datepicker-next .ui-icon {
  background: url(../images/icon/icon_cal_off.png) no-repeat 0 0;
  background-size: 100%;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.ui-widget.ui-datepicker .ui-datepicker-header .ui-datepicker-title {
  line-height: 40px;
}
.ui-widget.ui-datepicker .ui-datepicker-calendar thead tr th {
  padding: 9px 15px 10px 15px;
  color: var(--tertiary-color);
  font-size: 15px;
  line-height: 21px;
  font-weight: 500;
}
.ui-widget.ui-datepicker .ui-datepicker-calendar thead tr th.ui-datepicker-week-end {
  color: #008bb7;
}
.ui-widget.ui-datepicker .ui-datepicker-calendar thead tr th.ui-datepicker-week-end:first-child {
  color: #ff5700;
}
.ui-widget.ui-datepicker .ui-datepicker-calendar tbody tr td a {
  width: 40px;
  height: 40px;
  padding: 0;
}
.ui-widget.ui-datepicker .ui-datepicker-calendar tbody tr td a.ui-state-default {
  border: none;
  background: transparent;
  color: var(--base-color);
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  line-height: 38px;
}
.ui-widget.ui-datepicker .ui-datepicker-calendar tbody tr td a.ui-state-default.ui-state-highlight, .ui-widget.ui-datepicker .ui-datepicker-calendar tbody tr td a.ui-state-default.ui-state-active {
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white-color);
}
.ui-widget.ui-datepicker .ui-datepicker-calendar tbody tr td a.ui-state-default.ui-state-highlight {
  background: #aaa;
}
.ui-widget.ui-datepicker .ui-datepicker-calendar tbody tr td .ui-state-default {
  padding: 0;
  border: none;
  background: transparent;
  color: #454545;
  font-weight: 300;
  text-align: center;
}

.check_list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.check_list .check {
  margin-left: 24px;
}
.check_list .check:first-child {
  margin-left: 0;
}
.check_list .check label input[type=checkbox] + span:before {
  margin-right: 6px;
}

.radio_list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.radio_list .radio {
  margin-left: 24px;
}
.radio_list .radio:first-child {
  margin-left: 0;
}
.radio_list .radio label input[type=radio] + span:before {
  margin-right: 6px;
}

.check:first-child {
  margin-top: 0;
}
.check label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 13px;
  line-height: 18px;
}
.check label input[type=checkbox] {
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
}
.check label input[type=checkbox] + span:before {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 18px;
  height: 18px;
  background: url(../images/icon/icon_check_off.png) no-repeat 0 0;
  background-size: 100%;
  content: "";
}
.check label input[type=checkbox]:checked + span:before {
  background: url(../images/icon/icon_check_on.png) no-repeat 0 0;
  background-size: 100%;
}
.check label span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.radio:first-child {
  margin-top: 0;
}
.radio label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  position: relative;
  margin: 0;
  padding: 0;
  color: #242424;
  font-size: 14px;
  line-height: 18px;
}
.radio label input[type=radio] {
  position: absolute;
  top: 0;
}
.radio label input[type=radio] + span:before {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 18px;
  height: 18px;
  background: url(../images/icon/icon_radio_off.png) no-repeat 0 0;
  background-size: 100%;
  content: "";
}
.radio label input[type=radio]:checked + span:before {
  background: url(../images/icon/icon_radio_on.png) no-repeat 0 0;
  background-size: 100%;
}
.radio label span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.table_contents {
  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: 20px;
}
.table_contents .top {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 30px 0 12px 0;
}
.table_contents .top .button {
  margin-left: 20px;
}
.table_contents .pagenation {
  margin-left: auto;
}

.table_wrap {
  border: 1px solid #dde5eb;
  border-radius: 5px;
  background: var(--white-color);
}
.table_wrap table {
  table-layout: fixed;
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
}
.table_wrap table thead tr th {
  padding: 15px 0 16px 0;
  font-size: 12px;
  letter-spacing: calc(12px / 1000 * 0);
  color: rgba(73, 82, 101, 0.5);
  font-weight: 700;
  line-height: 17px;
}
.table_wrap table thead tr th:first-child {
  padding-left: 25px;
}
.table_wrap table thead tr th:last-child {
  padding-right: 25px;
}
.table_wrap table tbody tr:hover {
  background: #eceef1;
}
.table_wrap table tbody tr td {
  padding: 12px 2px 11px 2px;
  border-top: 1px solid #dde5eb;
  font-size: 12px;
  letter-spacing: calc(12px / 1000 * 0);
  color: var(--tertiary-color);
  line-height: 17px;
  text-align: center;
  word-break: break-all;
}
.table_wrap table tbody tr td:first-child {
  padding-left: 25px;
}
.table_wrap table tbody tr td:last-child {
  padding-right: 25px;
}
.table_wrap table tbody tr td.align_left {
  text-align: left;
}
.table_wrap table tbody tr td .ellipsis {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
}
.table_wrap table tbody tr td .btn_item {
  min-width: 60px;
}
.table_wrap table tbody tr td .btn_item .button {
  margin-left: 8px;
}
.table_wrap table tbody tr td .btn_item .button:first-child {
  margin-left: 0;
}
.table_wrap.border table thead tr th {
  border-left: 1px solid #dde5eb;
}
.table_wrap.border table thead tr th:first-child {
  border-left: none;
}
.table_wrap.border table tbody tr:hover {
  background: transparent;
}
.table_wrap.border table tbody tr td {
  padding: 12px 25px 11px 25px;
  border-left: 1px solid #dde5eb;
}
.table_wrap.border table tbody tr:first-child td[rowspan] {
  padding-right: 25px;
}
.table_wrap.border table tbody tr:first-child td[rowspan]:first-child {
  border-left: none;
}

.pagenation ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 32px;
  border: 1px solid #edf0f2;
  border-radius: 5px;
  font-size: 0;
}
.pagenation li a {
  display: inline-block;
  min-width: 30px;
  height: 30px;
  border-left: 1px solid #edf0f2;
  background: var(--white-color);
  font-size: 11px;
  letter-spacing: calc(11px / 1000 * 0);
  color: var(--secondary-color);
  text-align: center;
  line-height: 30px;
  text-decoration: none;
}
.pagenation li a:active, .pagenation li a.active {
  background: var(--primary-color);
  color: #fff;
}
.pagenation li a[rel=start], .pagenation li a[rel=last] {
  padding: 0 10px;
}
.pagenation li a[rel=prev], .pagenation li a[rel=next] {
  padding: 0 5px;
}
.pagenation li:first-child a {
  border-left: none;
  border-radius: 5px 0 0 5px;
}
.pagenation li:last-child a {
  border-radius: 0 5px 5px 0;
}

/* Tab */
.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  border-bottom: 1px solid var(--fourth-color);
  background: var(--white-color);
  font-size: 0;
}
.tabs li {
  display: inline-block;
  width: 150px;
  margin-left: 100px;
  font-size: 14px;
  letter-spacing: calc(14px / 1000 * 0);
  color: var(--secondary-color);
  line-height: 40px;
  text-align: center;
  cursor: pointer;
}
.tabs li:first-child {
  margin-left: 0;
}
.tabs li a,
.tabs li span {
  display: inline-block;
  width: 100%;
  text-decoration: none;
}
.tabs li.current a,
.tabs li.current span {
  position: relative;
  color: var(--primary-color);
}
.tabs li.current a:before,
.tabs li.current span:before {
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 120px;
  height: 3px;
  background: var(--primary-color);
  -webkit-transform: translate(-50%, 2px);
          transform: translate(-50%, 2px);
  content: "";
}

.tab-content {
  display: none;
}
.tab-content.current {
  display: block;
}

.pop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
}
.pop.open {
  display: block;
}
.pop.window_pop {
  overflow: hidden;
  display: block;
  position: relative;
}
.pop.window_pop .pop_wrap {
  overflow: auto;
  position: relative;
  top: auto;
  left: auto;
  z-index: 100;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  width: 100%;
  height: 100%;
  padding: 30px 60px;
  border: none;
  border-radius: 0;
  background: var(--white-color);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.pop.window_pop .pop_wrap.small {
  width: 600px;
}
.pop .title_wrap .pop_title {
  display: block;
  font-size: 16px;
  letter-spacing: calc(16px / 1000 * 0);
  line-height: 20px;
  text-align: center;
  font-weight: 500;
}
.pop .title_wrap .pop_title.line {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--fourth-color);
}
.pop .title_wrap .pop_title.line span {
  display: block;
  font-size: 12px;
  font-weight: 300;
  line-height: 24px;
}
.pop .pop_contents .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 39px;
  padding: 18px 20px 20px 20px;
  border-radius: 5px;
  background: #f5f7f9;
}
.pop .pop_contents .list li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  margin-top: 2px;
}
.pop .pop_contents .list li span {
  font-size: 12px;
  letter-spacing: calc(12px / 1000 * 0);
  line-height: 24px;
}
.pop .pop_contents .list li .label {
  min-width: 67px;
  margin-right: 6px;
}
.pop .pop_contents .list li.basis_100 {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
.pop .pop_contents .inpuery_form {
  padding: 30px 0 0 0;
}
.pop .pop_contents .inpuery_form .date_box .date_group .date {
  max-width: 120px;
  min-width: auto;
}
.pop .pop_contents .inpuery_form .select_box .ui-selectmenu-button.ui-button {
  width: 120px;
  margin-left: 6px;
}
.pop .pop_contents .btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 31px;
}
.pop .pop_contents .btn_wrap .button {
  margin-left: 20px;
}
.pop .pop_contents .btn_wrap .button:first-child {
  margin-left: 0;
}
.pop .pop_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 100;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 30px 60px;
  border: 1px solid #dde5eb;
  border-radius: 20px;
  background: var(--white-color);
  -webkit-box-shadow: 0 0 16px rgba(73, 82, 101, 0.1);
          box-shadow: 0 0 16px rgba(73, 82, 101, 0.1);
}
.pop .pop_wrap.alert {
  min-width: 260px;
  padding: 30px 20px 20px 20px;
}
.pop .pop_wrap.alert .title_wrap .pop_title {
  display: block;
  font-size: 16px;
  letter-spacing: calc(16px / 1000 * 0);
  line-height: 20px;
  text-align: center;
  font-weight: 500;
}
.pop .pop_wrap.alert .pop_contents .text {
  margin-top: 30px;
}
.pop .pop_wrap.alert .pop_contents .text p {
  font-size: 12px;
  letter-spacing: calc(12px / 1000 * 0);
  line-height: 20px;
  text-align: center;
}
.pop .pop_wrap.alert .pop_contents .btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
}
.pop .pop_wrap.alert .pop_contents .btn_wrap .button {
  width: 100%;
}
.pop .pop_wrap.uco_card_wrap {
  overflow-y: auto;
  max-height: 100%;
  width: 640px;
  padding: 16px 20px 16px 20px;
}
.pop .dim {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  background: rgba(245, 247, 249, 0.7);
}

.wrapper {
  overflow: auto;
  width: 100%;
  height: 100%;
  background: var(--bg-color);
}
.wrapper .section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-width: 1280px;
  min-height: 100vh;
}
.wrapper .section .article {
  width: calc(100% - 220px);
  padding-bottom: 30px;
}
.wrapper .section .article .row_group {
  margin: 30px;
  padding: 5px 20px 20px 20px;
  border: 1px solid var(--fourth-color);
  border-radius: 10px;
  background: var(--white-color);
}
.wrapper .section .article .row_group:not(.wrapper .section .article .row_group:first-child) {
  margin-top: 0;
}
.wrapper .section .article .row_group:last-child {
  margin-bottom: 0;
}
.wrapper .section .article .table_contents {
  margin: 20px 30px 0 30px;
}
.wrapper .section .article .btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}
.wrapper .section .article .btn_wrap .button {
  margin-left: 20px;
}
.wrapper .section .article .btn_wrap .button:first-child {
  margin-left: 0;
}
.wrapper .section .article .inpuery_form .btn_wrap {
  margin: 30px 0;
}

.navigation {
  width: 220px;
  padding: 36px 0;
  border-right: 1px solid var(--fourth-color);
  background: var(--white-color);
}
.navigation .logo {
  width: 122px;
  height: 84px;
  margin: 0 auto 34px auto;
  background: url(../images/logo/logo_navigation.png) no-repeat 0 0;
  background-size: 100%;
}
.navigation .logo.admin {
  background: url(../images/logo/logo_navigation_admin.png) no-repeat 0 0;
  background-size: 100%;
}
.navigation nav > ul > li > a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  height: 54px;
  padding: 0 30px;
  font-size: 14px;
  letter-spacing: calc(14px / 1000 * 0);
  color: var(--base-color);
  line-height: 54px;
  text-decoration: none;
}
.navigation nav > ul > li > a:before {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 16px;
  height: 16px;
  margin-right: 17px;
  content: "";
}
.navigation nav > ul > li > a.active {
  background: rgba(0, 213, 195, 0.1);
  color: var(--primary-color);
  font-weight: 700;
}
.navigation nav > ul > li > a.active:after {
  display: block;
  position: absolute;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-color);
  content: "";
}
.navigation nav > ul > li > a.active + ul {
  visibility: visible;
  max-height: 500px;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.navigation nav > ul > li > a.mid_manage:before {
  background: url(../images/icon/icon_collector_off.png) no-repeat 0 0;
  background-size: 100%;
}
.navigation nav > ul > li > a.mid_manage.active:before {
  background: url(../images/icon/icon_collector_on.png) no-repeat 0 0;
  background-size: 100%;
}
.navigation nav > ul > li > a.recall_manage:before {
  background: url(../images/icon/icon_recall_off.png) no-repeat 0 0;
  background-size: 100%;
}
.navigation nav > ul > li > a.recall_manage.active:before {
  background: url(../images/icon/icon_recall_on.png) no-repeat 0 0;
  background-size: 100%;
}
.navigation nav > ul > li > a.factory_manage:before {
  background: url(../images/icon/icon_factory_off.png) no-repeat 0 0;
  background-size: 100%;
}
.navigation nav > ul > li > a.factory_manage.active:before {
  background: url(../images/icon/icon_factory_on.png) no-repeat 0 0;
  background-size: 100%;
}
.navigation nav > ul > li > a.penalty_manage:before {
  background: url(../images/icon/icon_penalty_off.png) no-repeat 0 0;
  background-size: 100%;
}
.navigation nav > ul > li > a.penalty_manage.active:before {
  background: url(../images/icon/icon_penalty_on.png) no-repeat 0 0;
  background-size: 100%;
}
.navigation nav > ul > li > a.mypage:before {
  background: url(../images/icon/icon_mypage_off.png) no-repeat 0 0;
  background-size: 100%;
}
.navigation nav > ul > li > a.mypage.active:before {
  background: url(../images/icon/icon_mypage_on.png) no-repeat 0 0;
  background-size: 100%;
}
.navigation nav > ul > li > a.price_manage:before {
  background: url(../images/icon/icon_price_off.png) no-repeat 0 0;
  background-size: 100%;
}
.navigation nav > ul > li > a.price_manage.active:before {
  background: url(../images/icon/icon_price_on.png) no-repeat 0 0;
  background-size: 100%;
}
.navigation nav > ul > li > a.product_manage:before {
  background: url(../images/icon/icon_productmanagement_off.png) no-repeat 0 0;
  background-size: 100%;
}
.navigation nav > ul > li > a.product_manage.active:before {
  background: url(../images/icon/icon_productmanagement_on.png) no-repeat 0 0;
  background-size: 100%;
}
.navigation nav > ul > li > a.market_manage:before {
  background: url(../images/icon/icon_marketmanagement_off.png) no-repeat 0 0;
  background-size: 100%;
}
.navigation nav > ul > li > a.market_manage.active:before {
  background: url(../images/icon/icon_marketmanagement_on.png) no-repeat 0 0;
  background-size: 100%;
}
.navigation nav > ul > li > a.monitoring:before {
  background: url(../images/icon/icon_monitoring_off.png) no-repeat 0 0;
  background-size: 100%;
}
.navigation nav > ul > li > a.monitoring.active:before {
  background: url(../images/icon/icon_monitoring_on.png) no-repeat 0 0;
  background-size: 100%;
}
.navigation nav > ul > li > a.deposit:before {
  background: url(../images/icon/icon_deposit_off.png) no-repeat 0 0;
  background-size: 100%;
}
.navigation nav > ul > li > a.deposit.active:before {
  background: url(../images/icon/icon_deposit_on.png) no-repeat 0 0;
  background-size: 100%;
}
.navigation nav > ul > li > a.notice:before {
  background: url(../images/icon/icon_notice_off.png) no-repeat 0 0;
  background-size: 100%;
}
.navigation nav > ul > li > a.notice.active:before {
  background: url(../images/icon/icon_notice_on.png) no-repeat 0 0;
  background-size: 100%;
}
.navigation nav > ul > li > ul {
  visibility: hidden;
  max-height: 0;
}
.navigation nav > ul > li > ul li a {
  display: block;
  width: 100%;
  height: 42px;
  padding-left: 58px;
  font-size: 12px;
  letter-spacing: calc(12px / 1000 * 0);
  color: var(--base-color);
  line-height: 42px;
  text-decoration: none;
}
.navigation nav > ul > li > ul li a.active {
  color: var(--primary-color);
  font-weight: 700;
}
.navigation nav > ul > li > ul.depth2 > li:first-child {
  margin-top: 0;
}
.navigation nav > ul > li > ul.depth2 > li a.active {
  color: var(--base-color);
  font-weight: 300;
}
.navigation nav > ul > li > ul.depth2 > li a.active + .depth3 {
  visibility: visible;
  max-height: 500px;
  margin: 0 0 20px 66px;
  -webkit-transition: max-height 0.3s ease-out;
  transition: max-height 0.3s ease-out;
}
.navigation nav > ul > li > ul.depth2 .depth3 {
  visibility: hidden;
  max-height: 0;
}
.navigation nav > ul > li > ul.depth2 .depth3 li a {
  display: block;
  width: 100%;
  height: 30px;
  padding-left: 0;
  font-size: 12px;
  letter-spacing: calc(12px / 1000 * 0);
  color: var(--base-color);
  line-height: 30px;
  text-decoration: none;
}
.navigation nav > ul > li > ul.depth2 .depth3 li a:before {
  display: inline-block;
  width: 3px;
  height: 3px;
  margin-right: 4px;
  border-radius: 100%;
  background: var(--base-color);
  vertical-align: middle;
  content: "";
}
.navigation nav > ul > li > ul.depth2 .depth3 li a.active {
  color: var(--primary-color);
  font-weight: 700;
}
.navigation nav > ul > li > ul.depth2 .depth3 li a.active:before {
  background: var(--primary-color);
}

.inpuery_form {
  padding: 30px 50px 0 50px;
}
.inpuery_form .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 12px;
}
.inpuery_form .row:first-child {
  margin-top: 0;
}
.inpuery_form .row .text_box {
  margin-left: 22px;
}
.inpuery_form .row .text_box:first-child {
  margin-left: 0;
}
.inpuery_form .row .text_box label {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.inpuery_form .row .text_box .input_text {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  min-width: 155px;
}
.inpuery_form .row .text_box .input_text + .input_text {
  margin-left: 22px;
}
.inpuery_form .row .text_box + .select_box, .inpuery_form .row .text_box + .date_box {
  margin-left: 22px;
}
.inpuery_form .row .text_box .select_box + .input_text {
  margin-left: 22px;
}
.inpuery_form .row .text_box.file_box .input_text {
  min-width: 320px;
}
.inpuery_form .row .select_box {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.inpuery_form .row .select_box label {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.inpuery_form .row .select_box .ui-button {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  margin: 0 0 0 22px;
}
.inpuery_form .row .select_box .ui-button:nth-of-type(1) {
  margin-left: 0;
}
.inpuery_form .row .select_box.min_width {
  -webkit-box-flex: inherit;
      -ms-flex-positive: inherit;
          flex-grow: inherit;
}
.inpuery_form .row .select_box.min_width .ui-button {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.inpuery_form .row .select_box + .date_box {
  margin-left: 22px;
}
.inpuery_form .btn_wrap {
  padding: 0 0 30px 0;
  -webkit-box-shadow: 0 5px 6px -5px rgba(0, 0, 0, 0.06);
          box-shadow: 0 5px 6px -5px rgba(0, 0, 0, 0.06);
}

.register_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 678px;
  margin: 30px 50px 50px 50px;
}
.register_form ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 678px;
}
.register_form ul.change_password li label {
  min-width: 92px;
}
.register_form ul li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 20px;
}
.register_form ul li > .text_box label:not(.button), .register_form ul li > .select_box label, .register_form ul li > .text_area_box label, .register_form ul li .label {
  min-width: 82px;
  margin-right: 6px;
  font-size: 12px;
  letter-spacing: calc(12px / 1000 * 0);
  line-height: 24px;
}
.register_form ul li .select_box .ui-selectmenu-button.ui-button {
  width: 220px;
}
.register_form ul li .text_box .input_text {
  width: 220px;
}
.register_form ul li .text_box .input_text + .input_text {
  margin-left: 9px;
}
.register_form ul li .text_box .address {
  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-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
.register_form ul li .text_box .address .select_box .ui-selectmenu-button.ui-button {
  width: 33.33%;
  margin-right: 9px;
}
.register_form ul li .text_box .address .select_box .ui-selectmenu-button.ui-button:last-child {
  margin-right: 0;
}
.register_form ul li .text_box .address .input_text {
  width: auto;
  margin-top: 10px;
}
.register_form ul li .text_area_box {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
.register_form ul li .text_area_box label {
  margin-top: 13px;
}
.register_form ul li .text_area_box .text_area {
  width: 100%;
}
.register_form ul li .text_area_box .text_area textarea {
  padding: 13px;
}
.register_form ul li .check_group {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.register_form .btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}
.register_form .btn_wrap .button {
  margin-left: 20px;
}
.register_form .btn_wrap .button:first-child {
  margin-left: 0;
}

.section-login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.section-login .article-text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 476px;
  padding-left: 80px;
  background: var(--primary-color);
}
.section-login .article-text .text span {
  font-size: 31px;
  letter-spacing: calc(31px / 1000 * 0);
  color: #fff;
  font-weight: 400;
  line-height: 45px;
}
.section-login .article-text .text span i {
  font-weight: 700;
  font-style: normal;
}
.section-login .article-text .text strong {
  display: block;
  margin-top: -1px;
  font-size: 61px;
  letter-spacing: calc(61px / 1000 * -20);
  color: #fff;
  font-weight: 700;
  line-height: 89px;
}
.section-login .article-text .text strong:after {
  display: block;
  width: 89px;
  height: 89px;
  margin-top: 33px;
  background: url(../images/logo/logo_intro.png) no-repeat 0 0;
  background-size: 100%;
  content: "";
}
.section-login .article-login {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 476px);
          flex: 0 0 calc(100% - 476px);
  background: var(--white-color);
}
.section-login .article-login .login_form {
  min-width: 470px;
}
.section-login .article-login .login_form strong {
  font-size: 32px;
  letter-spacing: calc(32px / 1000 * -20);
  color: var(--base-color);
  font-weight: 300;
  line-height: 46px;
}
.section-login .article-login .login_form p {
  margin-bottom: 97px;
  font-size: 14px;
  letter-spacing: calc(14px / 1000 * 0);
  color: var(--tertiary-color);
  line-height: 20px;
}
.section-login .article-login .login_form input {
  width: 100%;
  height: 48px;
  border-bottom: 1px solid #dde5eb;
  caret-color: var(--primary-color);
  font-size: 14px;
  letter-spacing: calc(14px / 1000 * 0);
  color: #1f3142;
  font-weight: 400;
  line-height: 48px;
}
.section-login .article-login .login_form input[type=password] {
  margin-top: 20px;
}
.section-login .article-login .login_form input::-webkit-input-placeholder {
  font-size: 14px;
  letter-spacing: calc(14px / 1000 * 0);
  color: rgba(202, 210, 216, 0.5);
  line-height: 48px;
}
.section-login .article-login .login_form input::-moz-placeholder {
  font-size: 14px;
  letter-spacing: calc(14px / 1000 * 0);
  color: rgba(202, 210, 216, 0.5);
  line-height: 48px;
}
.section-login .article-login .login_form input:-ms-input-placeholder {
  font-size: 14px;
  letter-spacing: calc(14px / 1000 * 0);
  color: rgba(202, 210, 216, 0.5);
  line-height: 48px;
}
.section-login .article-login .login_form input::-ms-input-placeholder {
  font-size: 14px;
  letter-spacing: calc(14px / 1000 * 0);
  color: rgba(202, 210, 216, 0.5);
  line-height: 48px;
}
.section-login .article-login .login_form input::placeholder {
  font-size: 14px;
  letter-spacing: calc(14px / 1000 * 0);
  color: rgba(202, 210, 216, 0.5);
  line-height: 48px;
}
.section-login .article-login .login_form input:focus {
  outline: none;
  border-color: var(--primary-color);
}
.section-login .article-login .login_form .button.login {
  display: block;
  min-width: 242px;
  min-height: 56px;
  margin: 95px auto 0 auto;
  border-radius: 28px;
  background: var(--primary-color);
  -webkit-box-shadow: 0 10px 10px rgba(47, 152, 143, 0.26);
          box-shadow: 0 10px 10px rgba(47, 152, 143, 0.26);
  font-size: 12px;
  letter-spacing: calc(12px / 1000 * 0);
  color: #fff;
  font-weight: 400;
  line-height: 56px;
}
.section-login .article-login .login_form .button.login:active {
  background: #09bfb0;
  -webkit-box-shadow: 0 10px 10px rgba(47, 152, 143, 0.26);
          box-shadow: 0 10px 10px rgba(47, 152, 143, 0.26);
}

.section-inpuery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.section-inpuery .article-inpuery {
  width: 100%;
}

.penalty .pop_contents .row:has(> .select_box) {
  margin-top: 24px;
}
.penalty .pop_contents .row:has(> .text_area) {
  margin-top: 35px;
}
.penalty .pop_contents .row .select_box label {
  font-size: 12px;
  letter-spacing: calc(12px / 1000 * 0);
  line-height: 24px;
}
.penalty .pop_contents .row .text_area label {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: calc(12px / 1000 * 0);
  line-height: 24px;
}
.penalty .pop_contents .row .text_area textarea {
  height: 141px;
}

.category_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.category_wrap .category {
  width: 210px;
  height: 100%;
  padding: 50px 20px;
  border-right: 1px solid var(--fourth-color);
  background: var(--white-color);
}
.category_wrap .category a {
  font-size: 12px;
  letter-spacing: calc(12px / 1000 * 0);
  color: var(--secondary-color);
  text-decoration: none;
}
.category_wrap .category > ul > li {
  position: relative;
  padding: 17px 0 0 20px;
}
.category_wrap .category > ul > li:before {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: #dde5eb;
  content: "";
}
.category_wrap .category > ul > li:last-child:before {
  height: 29px;
}
.category_wrap .category > ul > li .second_category {
  position: relative;
  padding-left: 21px;
}
.category_wrap .category > ul > li .second_category:before {
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary-color);
  content: "";
}
.category_wrap .category > ul > li .second_category:after {
  position: absolute;
  top: 11px;
  left: 0;
  width: 10px;
  height: 1px;
  background: #dde5eb;
  content: "";
}
.category_wrap .category > ul > li .second_category.active, .category_wrap .category > ul > li .second_category:active {
  color: var(--tertiary-color);
}
.category_wrap .category > ul > li .second_category.active + .third_category {
  display: block;
}
.category_wrap .category > ul > li .third_category {
  display: none;
  padding: 14px 0 0 28px;
}
.category_wrap .category > ul > li .third_category li {
  position: relative;
  padding-top: 14px;
}
.category_wrap .category > ul > li .third_category li:before {
  position: absolute;
  top: -12px;
  width: 1px;
  height: 100%;
  background: #dde5eb;
  content: "";
}
.category_wrap .category > ul > li .third_category li:last-child:before {
  height: 38px;
}
.category_wrap .category > ul > li .third_category li:first-child {
  padding-top: 0;
}
.category_wrap .category > ul > li .third_category li a {
  position: relative;
  padding-left: 21px;
}
.category_wrap .category > ul > li .third_category li a:before {
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary-color);
  content: "";
}
.category_wrap .category > ul > li .third_category li a:after {
  position: absolute;
  top: 11px;
  left: 0;
  width: 10px;
  height: 1px;
  background: #dde5eb;
  content: "";
}
.category_wrap .category > ul > li .third_category li a.active, .category_wrap .category > ul > li .third_category li a:active {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: underline;
}
.category_wrap .dtree {
  white-space: nowrap;
}
.category_wrap .dtree > .dTreeNode {
  margin-bottom: 12px;
  font-size: 13px;
  letter-spacing: calc(13px / 1000 * 0);
  color: var(--secondary-color);
  text-decoration: none;
}
.category_wrap .dtree img {
  border: 0px;
  vertical-align: middle;
}
.category_wrap .dtree a.node, .category_wrap .dtree a.nodeSel {
  overflow: hidden;
  display: inline-block;
  width: 130px;
  padding: 0 4px;
  word-break: break-all;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}
.category_wrap .dtree a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}
.category_wrap .dtree a.nodeSel, .category_wrap .dtree a:active {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: underline;
}
.category_wrap .dtree .clip {
  overflow: hidden;
}
.category_wrap .all_open_close {
  margin-top: 24px;
}

.uco_card {
  margin-top: 24px;
}
.uco_card .type_list li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2px;
  font-size: 11px;
  letter-spacing: calc(11px / 1000 * 0);
  color: var(--base-color);
}
.uco_card .type_list li:first-child {
  margin-top: 0;
}
.uco_card .type_list li span {
  margin-left: 2px;
  font-weight: 700;
}
.uco_card .type_list li .check {
  margin-left: 20px;
  pointer-events: none;
}
.uco_card .confirm_list {
  margin-top: 14px;
}
.uco_card .confirm_list strong {
  font-size: 11px;
  letter-spacing: calc(11px / 1000 * 0);
  color: var(--base-color);
  font-weight: 700;
  line-height: 18px;
}
.uco_card .confirm_list ol {
  margin-left: 20px;
}
.uco_card .confirm_list ol li {
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: calc(11px / 1000 * 0);
  color: var(--base-color);
  line-height: 16px;
}
.uco_card .confirm_list ol li:first-child {
  margin-top: 0;
}
.uco_card .confirm_list span {
  margin: 4px 0 0 20px;
  font-size: 11px;
  letter-spacing: calc(11px / 1000 * 0);
  color: var(--base-color);
  line-height: 20px;
}
.uco_card .table_wrap {
  margin-top: 16px;
  border: 1px solid #aab3c6;
  border-radius: 5px;
  background: var(--white-color);
}
.uco_card .table_wrap table thead tr th {
  padding: 2px 2px 3px 2px;
  border-left: 1px solid #aab3c6;
  font-size: 11px;
  letter-spacing: calc(11px / 1000 * 0);
  color: var(--tertiary-color);
  font-weight: 700;
  line-height: 16px;
}
.uco_card .table_wrap table thead tr th:first-child {
  padding-left: 0;
  border-left: none;
}
.uco_card .table_wrap table thead tr th:last-child {
  padding-right: 0;
}
.uco_card .table_wrap table tbody tr:hover {
  background: transparent;
}
.uco_card .table_wrap table tbody tr td {
  padding: 2px 2px 1px 2px;
  border-left: 1px solid #aab3c6;
  border-top: 1px solid #aab3c6;
  font-size: 11px;
  letter-spacing: calc(11px / 1000 * 0);
  color: var(--tertiary-color);
  line-height: 16px;
  text-align: center;
  word-break: break-all;
}
.uco_card .table_wrap table tbody tr td:first-child {
  padding-left: 0;
  border-left: none;
}
.uco_card .table_wrap table tbody tr td:last-child {
  padding-right: 0;
}
.uco_card .table_wrap table tfoot tr td {
  padding: 2px 2px 3px 2px;
  border-left: 1px solid #aab3c6;
  border-top: 1px solid #aab3c6;
  font-size: 11px;
  letter-spacing: calc(11px / 1000 * 0);
  color: var(--tertiary-color);
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}
.uco_card .table_wrap table tfoot tr td:first-child {
  border-left: none;
}
.uco_card .guide_text {
  margin-top: 16px;
}
.uco_card .guide_text li {
  margin-top: 4px;
  font-size: 9px;
  letter-spacing: calc(9px / 1000 * 0);
  color: var(--base-color);
  line-height: 13px;
}
.uco_card .guide_text li:first-child {
  margin-top: 0;
}
.uco_card .role_list {
  margin-top: 16px;
}
.uco_card .role_list .item {
  margin-top: 8px;
}
.uco_card .role_list .item:first-child {
  margin-top: 0;
}
.uco_card .role_list .item .title {
  font-size: 12px;
  letter-spacing: calc(12px / 1000 * 0);
  color: var(--base-color);
  font-weight: 700;
  line-height: 17px;
}
.uco_card .role_list .item .info {
  margin-top: 6px;
}
.uco_card .role_list .item .info li {
  margin-top: 1px;
  font-size: 11px;
  letter-spacing: calc(11px / 1000 * 0);
  color: var(--base-color);
  font-weight: 500;
  line-height: 16px;
}
.uco_card .role_list .item .info li:first-child {
  margin-top: 0;
}
.uco_card .role_list .item .sign_area {
  margin-top: 6px;
  padding: 5px 10px;
  border: 1px solid #aab3c6;
}
.uco_card .role_list .item .sign_area ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.uco_card .role_list .item .sign_area ul li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 11px;
  letter-spacing: calc(11px / 1000 * 0);
  color: var(--base-color);
  font-weight: 500;
  line-height: 16px;
}
.uco_card .role_list .item .sign_area ul li span {
  position: relative;
}
.uco_card .role_list .item .sign_area ul li span:before {
  display: block;
  content: "인";
}
.uco_card .role_list .item .sign_area ul li span img {
  position: absolute;
  top: -12px;
  left: -15px;
  width: 40px;
  height: 40px;
}

.mobile .section {
  min-width: 100%;
}
.mobile .section .article {
  width: 100%;
}
.mobile .notice_contents {
  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: 10px;
}
.mobile .notice_contents .notice_wrap {
  margin: 0 10px 10px 10px;
  padding: 24px 12px;
  border: 1px solid #dde5eb;
  border-radius: 5px;
  background: var(--white-color);
  font-size: 14px;
  letter-spacing: calc(14px / 1000 * 0);
  color: var(--base-color);
  line-height: 24px;
}

@media print {
  .a4 {
    overflow: hidden;
    page-break-after: always;
  }
  body {
    margin: 0;
    padding: 0;
    border: 0;
  }
  * {
    -webkit-print-color-adjust: exact !important; /*Chrome, Safari */
    color-adjust: exact !important; /*Firefox*/
  }
}/*# sourceMappingURL=contents.css.map */