.hs-container {
  --tab-active-bg: #81d4fa;
  --tab-active-check-color: #01579b;
  --tab-active-check-bg: #b3e5fc;
  width: 100%;
  font-size: 16px;
  margin-bottom: 100px;
}

.hs-container h2 {
  padding: 50px 0 20px;
  font-size: 28px;
}

.hs-flex {
  border: 1px solid #ddd;
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
  border-top: 2px solid #000;
}

.hs-flex .field {
  width: 33.33%;
  padding: 0.5em;
  display: flex;
  flex-direction: column;
}

.hs-flex .field .required_mark::after,
.l-flex .l-col .item .required_mark::after {
  content: "(필수)";
  color: #ff0000;
  margin-left: 4px;
  font-size: 14px;
}

.hs-flex .field input[type="date"] {
  cursor: pointer;
}

/* 태블릿 디바이스 (가로 해상도가 992px 보다 작은 화면에 적용) */
@media (max-width: 991px) {
  .hs-flex .field {
    width: 50%;
  }
}

/* 가로모드 모바일 디바이스 (가로 해상도가 768px 보다 작은 화면에 적용) */
@media (max-width: 767px) {
}

/* 세로모드 모바일 디바이스 (가로 해상도가 576px 보다 작은 화면에 적용) */
@media (max-width: 575px) {
  .hs-flex .field {
    width: 100%;
  }
}

.hs-flex .field.full {
  width: 100%;
}

.hs-flex .field > label {
  display: inline-flex;
  color: #333;
  padding-right: 0.5em;
}

.hs-container input[type="text"],
.hs-container select,
.hs-container input[type="date"] {
  padding: 0.5em 0.8em;
  border: 1px solid #888;
  border-radius: 10px;
  height: 2.8em;
  margin: 10px 0;
  font-size: 18px;
}

.hs-btn {
  padding: 0.8em;
  border: 0;
  font-size: 18px;
}

.hs-btn.primary {
}

.hs-btn.secondary {
  background-color: #37474f;
  color: #fff;
  position: absolute;
  right: 0;
  bottom: 10px;
  border-radius: 0px 10px 10px 0;
}

.hs-btn.secondary:hover {
  background-color: #263238;
  color: #fff;
}

.hs-form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hs-form-header strong {
  font-size: 1.4em;
  color: #fff;
  background-color: #37474f;
  padding: 0.5em 1em;
}

.hs-form-header .tabs {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.hs-form-header .tabs .tab {
  display: inline-block;
  padding: 0.8em;
  background-color: #f5f5f5;
  font-size: 18px;
  border-radius: 10px;
  min-width: 160px;
}

.hs-form-header .tabs .tab.active {
  background-color: #1161af;
  color: #fff;
}

.hs-form-header .tabs .tab span {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #fff;
  border: 1px solid #888;
  margin-right: 6px;
  border-radius: 3px;
}

.hs-form-header .tabs .tab.active span {
  background-color: #fff;
  color: #000;
}

.hs-container .action {
  padding: 1em;
  text-align: center;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hs-btn-submit {
  font-size: 1.57em;
  background-color: #01579b;
  padding: 0.75em;
  color: #fff;
  min-width: 150px;
  border-radius: 10px;
  font-weight: 400;
}

.hs-btn-submit:hover {
  background-color: #0277bd;
}

.step-con {
  margin: 0 0 30px 0;
}
.step-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
}
.step-wrap > li {
  flex: 1;
  position: relative;
  font-size: 16px;
}

.step-wrap > li.done::after {
  background-color: #7c1213;
}

.step-wrap > li::after {
  position: absolute;
  top: 1rem;
  left: 0;
  content: "";
  width: 100%;
  height: 0.1rem;
  background-color: #ddd;
}

.step-wrap > li > span {
  display: block;
  position: relative;
  padding-top: 70px;
  padding-right: 3.5rem;
}

.step-wrap > li > span::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 3rem;
  height: 3rem;
  background-color: #ddd;
  border: 1px solid #ddd;
}
.step-wrap > li > span::before,
.step-wrap > li > span::after {
  content: "";
  border-radius: 50%;
}

.step-wrap > li.done::after {
  background-color: #000;
}

.step-wrap > li::after {
  position: absolute;
  top: 1.5rem;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #ddd;
}

.step-wrap > li .step {
  color: var(--krds-gray-70);
}
.step-wrap > li .step-tit {
  font-weight: 700;
  white-space: normal;
}

.step-wrap > li.done > span::after {
  position: absolute;
  top: 0.4rem;
  left: 0.2rem;
  z-index: 3;
  width: 2.2rem;
  height: 2.2rem;
  background: url(/theme/hscorp/img/check_small_w.svg) no-repeat;
  background-position: center;
  background-size: contain;
}

.step-wrap > li.done > span::before {
  width: 2.6rem;
  height: 2.6rem;
  margin-top: 0.2rem;
  border: 0;
  background-color: #000;
}
input,
textarea,
a,
button,
select,
span,
label,
:before,
:after {
  font-size: inherit;
  font-weight: inherit;
}
.step-wrap > li.active > span::after {
  position: absolute;
  top: 0.36rem;
  left: 0.38rem;
  z-index: 3;
  width: 2.2rem;
  height: 2.2rem;
  background: #1161af url(/theme/hscorp/img/more_step_w.svg) no-repeat center;
  background-size: contain;
}
.step-wrap > li.active > span::before {
  background-color: #fff;
  border-color: #1161af;
}
.step-wrap > li.end::after {
  position: absolute;
  top: 1rem;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
}
@media (min-width: 1024px) {
  .step-wrap {
    margin-bottom: var(--krds-spacer-16);
  }
}

.tbl_wrap table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0 5px;
  background: #fff;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}
.tbl_wrap caption {
  padding: 10px 0;
  font-weight: bold;
  text-align: left;
}
.tbl_head {
  margin: 0 0 10px;
}
.tbl_head caption {
  padding: 0;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}
.tbl_head thead th {
  padding: 15px 10px;
  border-bottom: 1px solid #000;
  background-color: aliceblue;
}
.tbl_head thead th input {
  vertical-align: top;
} /* middle 로 하면 게시판 읽기에서 목록 사용시 체크박스 라인 깨짐 */
.tbl_head tfoot th,
.tbl_head01 tfoot td {
  padding: 10px 0;
  border-top: 1px solid #c1d1d5;
  border-bottom: 1px solid #c1d1d5;
  background: #d7e0e2;
  text-align: left;
}
.tbl_head tbody th {
  padding: 15px 10px;
  border-bottom: 1px solid #000;
  background-color: aliceblue;
}
.tbl_head td {
  color: #666;
  padding: 10px;
  border-top: 1px solid #ecf0f1;
  border-bottom: 1px solid #ecf0f1;
  line-height: 1.4em;
  height: 60px;
  word-break: break-all;
}
.tbl_head tbody tr:hover td {
  background-color: #f9f9f9;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.tbl_head a:hover {
  text-decoration: underline;
}
table {
  /*   table-layout: fixed;*/
  max-width: none;
  width: auto;
  min-width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.sort {
  display: flex;
  padding: 10px;
  flex-direction: row;
}
.sort .z_01 {
  width: 10%;
  border-right: 1px solid #ddd;
}
.sort .z_02 {
  width: 90%;
  padding-left: 20px;
}
.an-fail {
  color: red;
  font-weight: 700;
}
.an-pass {
  color: blue;
  font-weight: 700;
}
.an-re-exa {
  text-align: center;
  background-color: #1161af;
  color: #fff;
  padding: 20px;
  border-radius: 15px;
}
.tr_w_5 {
  width: 5%;
}
.tr_w_10 {
  width: 10%;
}
.tr_w_15 {
  width: 15%;
}
.tr_w_20 {
  width: 20%;
}
.tr_w_25 {
  width: 25%;
}
.tr_w_30 {
  width: 30%;
}

.btn_submit {
  border: 0;
  background: #1161af;
  color: #fff;
  cursor: pointer;
  border-radius: 3px;
  padding: 10px;
  margin-left: 10px;
}
.btn_submit:hover {
  background: #177de0;
}
.btn_submit_big {
  border: 0;
  background: #1161af;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  padding: 15px;
  margin-left: 10px;
  font-size: 20px;
  font-weight: 600;
  min-width: 120px;
}
.btn_submit_big:hover {
  background: #177de0;
}

.btn_submit.btn_red {
  background: #e00000;
}

.btn-write-file {
  border: 0;
  background: #1161af;
  color: #fff;
  cursor: pointer;
  border-radius: 3px;
  padding: 10px;
}

.btn-write-file:hover {
  background: #177de0;
}

.sch_last {
  display: flex;
}
.form-btn-datepicker {
  position: absolute;
  top: 50%;
  right: 0;
  width: 2.2rem;
  height: 2.2rem;
  transform: translateY(-50%);
  background: url(/theme/hscorp/img/calendar_month_b.svg) no-repeat center;
  border: 0;
}

.s-down {
  width: 40px;
  height: 40px;
  background: #fff url(/theme/hscorp/img/file_present.svg) no-repeat;
  background-position: center;
  background-size: contain;
  border-radius: 25px;
  background-size: 23px;
  border: 1px solid #ddd;
}
.s-down:hover {
  width: 40px;
  height: 40px;
  background: aliceblue url(/theme/hscorp/img/file_present.svg) no-repeat;
  background-position: center;
  background-size: contain;
  border-radius: 25px;
  background-size: 23px;
  border: 1px solid #ddd;
}

.s-upload {
  width: 40px;
  height: 40px;
  background: #fff url(/theme/hscorp/img/attach_file.svg) no-repeat;
  background-position: center;
  background-size: contain;
  border-radius: 25px;
  background-size: 23px;
  border: 1px solid #ddd;
  cursor: pointer;
}
.s-upload:hover {
  width: 40px;
  height: 40px;
  background: aliceblue url(/theme/hscorp/img/attach_file.svg) no-repeat;
  background-position: center;
  background-size: contain;
  border-radius: 25px;
  background-size: 23px;
  border: 1px solid #ddd;
  cursor: pointer;
}

@media (max-width: 575px) {
  .hs-container h2 {
    font-size: 24px;
  }
  .hs-flex {
    padding: 20px;
  }
  .step-wrap > li > span {
    padding-right: 2rem;
  }
  .step-wrap {
    padding: 0px;
  }
  .btn_submit_big {
    min-width: 100px;
  }
}

.table-scroll-alert {
  display: none;
  color: #c51162;
}
.overflow-x-p {
  overflow-x: auto;
}
@media (max-width: 768px) {
  .table-scroll-alert {
    display: block;
    padding-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .t_over {
    min-width: 1024px;
  }
}

/*position: absolute;
    right: 0;
    top: 11px;
    background-color: aqua;
    cursor: pointer;
    padding: 20px;
    background-color: #37474f;
    color: #fff;
    position: absolute;
    right: 0;
    bottom: 10px;
    border-radius: 0px 10px 10px 0;
    font-size: 16px;*/

.hs-table2 {
  border-collapse: collapse;
}

.hs-table2 td,
.hs-table2 th {
  border: 1px solid #aaa;
  padding: 0.5em;
  text-align: center;
}

.hs-table2 th {
  background-color: #eee;
  font-weight: 600;
}

.hs-table2 .tl {
  text-align: left;
}

.hs-table2 span {
  display: inline-block;
}

.hs-table2 .step1 {
  width: 60px;
}

.hs-table2 .step2 {
  width: 100px;
}

.hs-table2 .step3 {
  width: 100px;
}
