/* ------------------------------
   0. 컬러 변수 (CSS Custom Properties)
--------------------------------*/
:root {
  --base-font-color: #1e2124;
  --color-1st-gray: #b1b8be;
  --color-2nd-gray: #464c53;
  --color-1st-blue: #246beb;
  --color-2nd-blue: #0c2b80;
  --color-3rd-blue: #1d56bc;

  --color-red: #e71825;
  --color-mint: #19b9c7;
  --color-orange: #fc9a31;

  --font-family: "Pretendard", Arial, sans-serif;
  --transition-bg: background-color 0.2s ease, border-color 0.2s ease;
  --box-shdow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* ------------------------------
   1. Pretendard 웹폰트 로드
--------------------------------*/
/* CDN 예시 (jsDelivr) */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");

/* ------------------------------
   2. Reset & 기본 박스 설정
--------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  min-height: 100%;
}
body {
  font-family: var(--font-family);
  color: var(--base-font-color);
  font-weight: 400;
  font-size: 15px;
  background: #eff5ff;
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
}
/* ------------------------------
   3. 기본 요소 스타일 초기화
--------------------------------*/
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}
ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font-family: var(--font-family);
}
button {
  cursor: pointer;
}
table {
  border-collapse: collapse;
  width: 100%;
}
caption {
  display: none;
}
span,
em,
i {
  font-style: normal;
  line-height: inherit;
  font-size: inherit;
}

input::placeholder,
textarea::placeholder {
  color: #8b949e;
  opacity: 1; /* Safari에서 흐려지는 것 방지 */
}

/* 구형 브라우저 호환성 대응 */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #8b949e;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #8b949e;
}
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #8b949e;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #ffffff;
}
::-webkit-scrollbar-thumb {
  background: #eef2f7;
  border-radius: 0;
  border: 0;
}
::-webkit-scrollbar-thumb:hover {
  background: #eef2f7;
}
/* ------------------------------
   4. 유틸리티 클래스
--------------------------------*/
.txt-l {
  text-align: left !important;
}
.txt-c {
  text-align: center !important;
}
.txt-r {
  text-align: right !important;
}
.txt-32 {
  font-size: 32px !important;
}
.txt-17 {
  font-size: 17px !important;
}
.txt-15 {
  font-size: 15px !important;
}
.txt-12 {
  font-size: 12px !important;
}
.fw-b {
  font-weight: 700 !important;
}
.txt-red {
  color: var(--color-red) !important;
}
.txt-grey {
  color: var(--color-1st-gray) !important;
}
.txt-deep {
  color: var(--color-2nd-blue) !important;
}
.txt-mint {
  color: var(--color-mint) !important;
}
.txt-blue {
  color: var(--color-1st-blue) !important;
}
.txt-orange {
  color: var(--color-orange) !important;
}
.bg-blue {
  background: var(--color-3rd-blue) !important;
}
.pl-0 {
  padding-left: 0 !important;
}
.pr-0 {
  padding-right: 0 !important;
}
.ml-0 {
  margin-left: 0 !important;
}
.mr-0 {
  margin-right: 0 !important;
}
.mt-4 {
  margin-top: 4px !important;
}
.mt-8 {
  margin-top: 8px !important;
}
.mt-12 {
  margin-top: 12px !important;
}
.mt-16 {
  margin-top: 16px !important;
}
.mt-20 {
  margin-top: 20px !important;
}
.mt-28 {
  margin-top: 28px !important;
}
.mb-12 {
  margin-bottom: 12px !important;
}
.bt-0 {
  border-top: 0 !important;
}
.bb-1 {
  border-bottom: 1px solid var(--color-1st-gray) !important;
}
.relative-box {
  position: relative;
}
.relative-box .position-btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

/* ------------------------------
   5. 공통 UI
--------------------------------*/
/* text */
.txt-length {
  font-size: 15px;
  color: #666666;
  text-align: right;
  margin-top: 8px;
}
.txt-length .txt-blue {
  margin-right: 4px;
}
.txt-error {
  font-size: 13px;
  color: var(--color-red);
  background: url(../images/icon-error.png) no-repeat 0 center;
  background-size: 14px 14px;
  padding-left: 20px;
}
.txt-desc {
  font-size: 17px;
  color: var(--color-2nd-gray);
}
.txt-desc2 {
  font-size: 15px;
  color: var(--color-2nd-gray);
}

.tooltip-tip .tooltip-tip-inner {
  position: relative;
  display: inline-block;
  background: var(--color-red);
  font-size: 15px;
  color: #ffffff;
  white-space: nowrap;
  padding: 6px 20px;
  border-radius: 100px;
}
.tooltip-tip .tooltip-tip-inner::after {
  content: "";
  position: absolute;
  left: calc(50% - 6px);
  bottom: -5px;
  width: 12px;
  height: 12px;
  background: var(--color-red);
  transform: rotate(45deg);
}

/* tit */
.page-tit {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}
.page-tit-area {
  position: relative;
  padding-bottom: 40px;
}
.page-tit-area .btn {
  position: absolute;
  right: 0;
  bottom: 8px;
  z-index: 1;
}

.sub-tit {
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
}
.inline-txt {
  display: inline-flex;
  align-items: center;
  column-gap: 16px;
}
.inline-txt .txt-el {
  font-size: 17px;
  line-height: 1;
}
.inline-txt .txt-el .fw-b {
  color: var(--base-font-color);
  margin-right: 4px;
}
.inline-txt.div-line {
  display: flex;
  column-gap: 0;
}
.inline-txt.div-line .txt-el:not(:last-of-type) {
  border-right: 1px solid var(--color-2nd-gray);
  padding-right: 12px;
}
.inline-txt.div-line .txt-el:not(:first-of-type) {
  padding-left: 12px;
}

.tit-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  margin-bottom: 20px;
}
.tit-area .tit-left {
  text-align: left;
}
.tit-area.narrow {
  margin-bottom: 8px;
}
.tit-area .inline-txt {
  padding-top: 16px;
}
.tit-area .inline-txt .txt-el {
  font-size: 15px;
  font-weight: 700;
  color: var(--base-font-color);
}
.tit-area .inline-txt .txt-blue {
  font-size: 17px;
}

.tit-area .inline-txt.div-line .txt-el:not(:last-of-type) {
  border-right-color: #d2d6d9;
}
.tit-area .combo-box .combo-btn {
  height: 46px;
}
.tit-area .combo-box:not(:has(.btn-filter)) {
  width: 116px;
}

/* count */
.count .num {
  font-size: 17px;
  color: var(--color-1st-blue);
  margin-left: 4px;
}

/* icon */
.icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background-position: center center;
}

.icon-close {
  background-image: url(../images/icon-close.png);
}
.icon-more {
  background-image: url(../images/icon-more.png);
}
.icon-bookmark {
  width: 19px;
  height: 24px;
  background-image: url(../images/icon-bookmark.png);
}
.icon-bookmark.on {
  background-image: url(../images/icon-bookmart-on.png);
}
.icon-print {
  width: 20px;
  height: 20px;
  background-image: url(../images/icon-print.png);
}
.icon-filter {
  width: 20px;
  height: 16px;
  background-image: url(../images/icon-align.png);
}
.icon-reset {
  width: 16px;
  height: 16px;
  background-image: url(../images/icon-reset.png);
}
.icon-upload {
  width: 20px;
  height: 18px;
  background-image: url(../images/icon-upload.png);
}
.icon-delete {
  width: 16px;
  height: 16px;
  background-image: url(../images/icon-delete.png);
}
.icon-og {
  width: 36px;
  height: 46px;
  background-image: url(../images/icon-o.png);
}
.icon-og {
  width: 36px;
  height: 46px;
  background-image: url(../images/icon-o.png);
}
.icon-pdf {
  width: 36px;
  height: 46px;
  background-image: url(../images/icon-pdf.png);
}
.icon-hwp {
  width: 36px;
  height: 46px;
  background-image: url(../images/icon-hwp.png);
}
.icon-doc {
  width: 42px;
  height: 33px;
  background-image: url(../images/icon-doc.png);
}
.icon-video {
  width: 42px;
  height: 33px;
  background-image: url(../images/icon-video.png);
}
.icon-download {
  width: 32px;
  height: 20px;
  background-image: url(../images/icon-download.png);
}
.icon-nass {
  width: 58px;
  height: 58px;
  background-image: url(../images/icon-nass.png);
}
.icon-nass2 {
  width: 42px;
  height: 42px;
  background-image: url(../images/icon-nass2.png);
}
.icon-kakao {
  width: 42px;
  height: 42px;
  background-image: url(../images/icon-kakao.png);
}
.icon-logout {
  width: 22px;
  height: 24px;
  background-image: url(../images/icon-logout.png);
}
.icon-logout {
  width: 22px;
  height: 24px;
  background-image: url(../images/icon-logout.png);
}
.icon-info {
  width: 24px;
  height: 24px;
  background-image: url(../images/icon-info.png);
}

/* checkbox */
.check-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}
.check-box input[type="checkbox"] {
  display: none;
}
.check-box .checkbox {
  flex-shrink: 0;
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border: 1px solid var(--color-1st-gray);
  border-radius: 4px;
  transition: var(--transition-bg);
}
.check-box .checkbox::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 5px;
  width: 11px;
  height: 8px;
  background: url(../images/icon-check.png);
  opacity: 0;
  transition: opacity 0.1s;
}
.check-box input[type="checkbox"]:checked + .checkbox {
  background-color: #406df1;
  border-color: #406df1;
}
.check-box.check-error input[type="checkbox"]:checked + .checkbox {
  background-color: var(--color-red);
  border-color: var(--color-red);
}

.check-box input[type="checkbox"]:disabled + .checkbox,
.check-box input[type="checkbox"]:checked:disabled + .checkbox {
  background-color: var(--color-1st-gray);
  border-color: var(--color-1st-gray);
  cursor: default;
}
.check-box input[type="checkbox"]:disabled + .checkbox::after {
  opacity: 0;
}
.check-box input[type="checkbox"]:checked + .checkbox::after {
  opacity: 1;
}

.check-box .check-txt {
  font-size: 17px;
  color: #1e2124;
}

/* radio */
.radio-box input[type="radio"] {
  display: none;
}
.radio-box {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  gap: 8px;
}
.radio-box .radio {
  position: relative;
  width: 22px;
  height: 22px;
  background: #ffffff;
  border: 1px solid var(--color-1st-gray);
  border-radius: 50%;
  transition: all 0.2s ease;
}
.radio-box input[type="radio"]:checked + .radio {
  border-color: #406df1;
}
.radio-box input[type="radio"]:checked + .radio::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  background-color: #406df1;
  border-radius: 50%;
}
.radio-box .radio-txt {
  font-size: 17px;
}

/* button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 48px;
  min-width: 100px;
  background: #ffffff;
  font-size: 19px;
  color: var(--base-font-color);
  padding: 0 15px;
  border-radius: 8px;
  border: 1px solid var(--color-1st-gray);
  transition: var(--transition-bg);
  cursor: pointer;
}
.btn.btn-cau {
  color: var(--color-red);
}
.btn.btn-line {
  color: var(--color-1st-blue);
  border-color: var(--color-1st-blue);
}

.btn.btn-block {
  background: var(--color-1st-blue);
  color: #fff;
  border-color: var(--color-1st-blue);
}
.btn.btn-txt {
  justify-content: initial;
  height: auto;
  min-width: auto;
  background: transparent;
  font-size: 17px;
  padding: 0;
  border-radius: 0;
  border: 0;
}
.btn:hover {
  border-color: var(--base-font-color);
}
.btn.btn-cau:hover {
  border-color: var(--color-red);
}
.btn.btn-line:hover,
.btn.btn-block:hover {
  border-color: var(--color-1st-blue);
}
.btn .icon-prev,
.btn .icon-next {
  background-image: url(../images/icon-more.png);
}
.btn .icon-prev {
  transform: rotate(180deg);
}
.btn.btn-icon {
  width: 48px;
  min-width: 48px;
  height: 48px;
  padding: 0;
}
.btn.btn-icon.round {
  background: #eff5ff;
  border: 0;
  border-radius: 50%;
}
.btn.btn-icon.down {
  border: 0;
  border-radius: 0;
  background: transparent;
}
.btn.btn-icon.icon {
  width: max-content;
  min-width: max-content;
  height: max-content;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.btn.sm {
  height: 40px;
}
.btn-box {
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-box.full .btn {
  flex: 1;
}

/* input */
.label {
  display: inline-block;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 8px;
}
.form-box {
  display: flex;
  flex-direction: column;
}
.form-box .input,
.form-box .textarea {
  background-color: #fff;
  font-size: 17px;
  color: var(--base-font-color);
  padding-inline: 16px;
  border: 1px solid var(--color-1st-gray);
  border-radius: 8px;
}
.form-box .input {
  height: 56px;
}
.form-box .textarea {
  height: 160px;
  padding-block: 20px;
  resize: none;
}
.form-box.lg .textarea {
  height: 330px;
}
.form-box .input:focus,
.form-box .input:focus-visible,
.form-box .textarea:focus,
.form-box .textarea:focus-visible {
  border: 1px solid var(--color-1st-blue);
  outline: 1px solid var(--color-1st-blue);
}

/* combo box */
.combo-box {
  position: relative;
}
.combo-box.w-large {
  width: 200px;
}
.combo-box .combo-btn {
  display: flex;
  align-items: center;
  width: 100%;
  height: 56px;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: calc(100% - 16px) center;
  background-image: url(../images/icon-select.png);
  font-size: 17px;
  color: var(--base-font-color);
  border: 1px solid var(--color-1st-gray);
  border-radius: 8px;
  padding-inline: 16px 32px;
  cursor: pointer;
}
.combo-box .combo-btn:focus {
  outline: none;
}
.combo-box .combo-btn:focus-visible,
.combo-box.active .combo-btn {
  border: 1px solid var(--color-1st-blue);
  outline: 1px solid var(--color-1st-blue);
}
.combo-box .combo-btn.btn-filter {
  aspect-ratio: 1;
  background-image: none;
  padding: 0;
}
.combo-box .combo-btn.btn-filter .icon {
  margin: 0 auto;
}

.combo-box .combo-list {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  width: 100%;
  background: #ffffff;
  padding: 10px 8px;
  border: 1px solid var(--color-1st-gray);
  border-radius: 8px;
  z-index: 100;
}
.combo-box .combo-btn.btn-filter + .combo-list {
  width: auto;
  min-width: 130px;
  white-space: nowrap;
}

.combo-box.active .combo-list {
  display: block;
}
.combo-box .combo-list li {
  background-repeat: no-repeat;
  background-size: 11px 8px;
  background-position: calc(100% - 8px) center;
  font-size: 17px;
  color: var(--base-font-color);
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
}
.combo-box .combo-list li + li {
  margin-top: 8px;
}
.combo-box .combo-list li:hover,
.combo-box .combo-list li.selected,
.combo-box .combo-list li:focus-visible {
  background-color: #eef2f7;
}
.combo-box .combo-list li.selected {
  background-image: url(../images/icon-selected.png);
}
.combo-box .combo-list li:focus,
.combo-box .combo-list li:focus-visible {
  outline: none;
}

/* select combo box - 20260114 */
.scombo-box {
  position: relative;
}
.scombo-box.w-large {
  width: 200px;
}
.scombo-box .combo-select {
  display: flex;
  align-items: center;
  width: 100%;
  height: 56px;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: calc(100% - 16px) center;
  background-image: url(../images/icon-select.png);
  font-size: 17px;
  color: var(--base-font-color);
  border: 1px solid var(--color-1st-gray);
  border-radius: 8px;
  padding-inline: 16px 32px;
  cursor: pointer;
  -webkit-appearance:none; /* chrome arrow delete */
  -moz-appearance:none; /* firefox arrow delete */
  appearance:none /* arrow delete */
}
.scombo-box .combo-select:focus {
  outline: none;
}
.scombo-box .combo-select:focus-visible,
.scombo-box.active .combo-select {
  border: 1px solid var(--color-1st-blue);
  outline: 1px solid var(--color-1st-blue);
}
/* select combo box - 20260114 */

/* select search combo box - 20260120 */
.schcombo-box {
  position: relative;
}
.schcombo-box.w-large {
  width: 200px;
}
.schcombo-box .combo-select {
  display: flex;
  align-items: center;
  width: 100%;
  height: 48px;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: calc(100% - 16px) center;
  background-image: url(../images/icon-select.png);
  font-size: 17px;
  color: var(--base-font-color);
  border: 1px solid var(--color-1st-gray);
  border-radius: 8px;
  padding-inline: 16px 32px;
  cursor: pointer;
  -webkit-appearance:none; /* chrome arrow delete */
  -moz-appearance:none; /* firefox arrow delete */
  appearance:none /* arrow delete */
}
.schcombo-box .combo-select:focus {
  outline: none;
}
.schcombo-box .combo-select:focus-visible,
.schcombo-box.active .combo-select {
  border: 1px solid var(--color-1st-blue);
  outline: 1px solid var(--color-1st-blue);
}
/* select search combo box - 20260120 */

/* date */
.date-input {
  position: relative;
}
.date-input .input-date {
  width: 100%;
  padding-right: 40px;
}
.date-input .input-date:focus,
.date-input .input-date:focus-visible,
.date-input .input-date:focus-visible:active,
.date-input .input-date.focused {
  border: 1px solid var(--color-1st-blue);
  outline: 1px solid var(--color-1st-blue);
}
.date-input .input-date::-webkit-calendar-picker-indicator {
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.date-input .icon-date {
  position: absolute;
  right: 16px;
  top: 50%;
  width: 20px;
  height: 20px;
  background-image: url(../images/icon-cal.png);
  transform: translateY(-50%);
  pointer-events: none;
}

/* search */
.search-input {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.search-input .input {
  flex: auto;
  background-repeat: no-repeat;
  background-position: 16px center;
  background-image: url(../images/icon-search.png);
  background-size: 20px 20px;
  padding-left: 48px;
}
.search-input > .btn {
  flex: none;
  height: 56px;
}

/* form 관련 box */
.form-box-inner {
  display: flex;
  align-items: center;
  column-gap: 6px;
}
.form-box-inner .bullet {
  flex: none;
  font-size: 15px;
  font-weight: 700;
}
.form-box-inner > .search-input,
.form-box-inner > .date-input,
.form-box-inner > .combo-box,
.form-box-inner > .input {
  flex: 1;
}

.form-group {
  display: flex;
  align-items: center;
  gap: 16px;
}
.form-group .combo-box .combo-btn {
  height: 48px;
}

.form-group-list {
  background: #edf2fe;
  padding: 24px 18px;
  border-radius: 8px;
}
.form-group-list .group-el + .group-el {
  margin-top: 24px;
}
.form-group-list .form-group-box {
  margin-top: 6px;
}

/* 파일첨부 */
.file-upload {
  min-height: 215px;
  background: #edf2fe;
  text-align: center;
  border-radius: 8px;
  padding: 40px;
}
.file-upload .file-txt-desc {
  font-size: 19px;
  line-height: 1.5;
  margin-bottom: 32px;
}
.dragover {
	border: 1px solid var(--color-1st-blue);
  	outline: 1px solid var(--color-1st-blue);
	background:#dde2fd;
}
.visually-hidden {
	position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(1px,1px,1px,1px);white-space:nowrap
}
.file-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.file-list .file-el {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  padding: 22px 18px;
  border: 1px solid var(--color-1st-gray);
  border-radius: 8px;
}
.file-list .file-el:hover {
  padding: 21px 17px;
  border: 2px solid var(--color-1st-blue);
}
.file-list .file-el .btn-txt {
  font-weight: 700;
}
.file-list-area .file-list.view .file-el:hover {
  padding: 22px 18px;
  border: 1px solid var(--color-1st-gray);
}
.file-list.view .file-el .btn-txt {
  font-weight: initial;
}
.file-upload + .file-list-area {
  margin-top: 28px;
}

/* step */
.step-box {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.step-box .step {
  flex: 1;
  position: relative;
  text-align: center;
}
.step-box .step::before,
.step-box .step::after {
  content: "";
  position: absolute;
  top: 4px;
  width: 50%;
  height: 2px;
  background-color: var(--color-1st-gray);
}
.step-box .step::before {
  left: 0;
}
.step-box .step::after {
  right: 0;
}
.step-box .step:first-child::before,
.step-box .step:last-child::after {
  content: none;
}
.step-box .dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #4a90e2;
  margin: 0 auto 10px;
  z-index: 1;
}
.step-box .txt {
  font-size: 15px;
  color: var(--base-font-color);
  margin-top: 18px;
}
.step:first-child .dot::before {
  left: 0;
}
.step:last-child .dot::before {
  right: 0;
}

/* box */
.shadow-box {
  box-shadow: 0 6px 18px rgba(116, 148, 239, 0.2);
}
.scroll-box {
  overflow-y: scroll;
  margin-right: -24px;
  padding-right: 16px;
}
.bg-scroll-box {
  overflow-y: scroll;
  overflow-x: hidden;
  background: #edf2fe;
  margin-right: 0;
  padding-left: 8px;
  padding-right: 0px;
  border-radius: 8px;
}
.bg-scroll-box::-webkit-scrollbar {
  width: 8px;
}
.bg-scroll-box::-webkit-scrollbar-track {
  background: transparent;
}
.bg-scroll-box::-webkit-scrollbar-thumb {
  background: rgba(256, 256, 256, 0.3);
  border-right: 4px solid #edf2fe;
  border-top: 4px solid #edf2fe;
  border-bottom: 4px solid #edf2fe;
  border-radius: 0 8px 8px 0;
}
.bg-scroll-box::-webkit-scrollbar-thumb:hover {
  background: #ffffff;
}

.card-box {
  background: #edf2fe;
  font-size: 17px;
  color: var(--color-2nd-gray);
  border-radius: 8px;
  padding: 20px;
}
.card-box .box {
  color: var(--base-font-color);
}
.card-box .box .txt-17 {
  margin-top: 5px;
}
.card-box .box + .box {
  margin-top: 24px;
}
.card-box.red {
  background: #ffedee;
  padding: 26px;
}

.card-box-list {
}
.card-box-list .list-el + .list-el {
  margin-top: 28px;
}
.card-box-list .label {
  margin-bottom: 12px;
}
.card-box-list .inline-txt.div-line .txt-el:not(:last-of-type) {
  border-right-color: #979ca5;
}
.card-box-list .card-box {
  margin-bottom: 24px;
  padding: 24px;
}

.desc-box {
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-2nd-gray);
  padding: 16px;
}

.filter-box {
  display: flex;
  align-items: center;
  column-gap: 8px;
  margin-bottom: 42px;
}
.filter-box .filter-el {
  position: relative;
}
.filter-box .filter-el .tooltip-tip {
  position: absolute;
  bottom: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%);
}

.filter-box .btn {
  min-width: 100px;
  height: 56px;
  color: var(--color-1st-blue);
  font-weight: 700;
  border-color: var(--color-1st-blue);
  border-radius: 100px;
  padding-inline: 28px;
}
.filter-box .btn.active {
  color: #ffffff;
  background: var(--color-1st-blue);
}

/* list */
.form-list {
  border-top: 1px solid var(--color-2nd-gray);
  border-bottom: 1px solid var(--color-2nd-gray);
  margin-top: 40px;
}
.form-list .form-el {
  padding-block: 28px;
}
.form-list .form-el:not(:last-of-type) {
  border-bottom: 1px solid var(--color-1st-gray);
}
.form-list .form-box .label {
  margin-bottom: 18px;
}
.form-list .desc-box {
  padding: 0;
}

.requir-list .form-box {
  position: relative;
  padding-bottom: 28px;
}
.requir-list .form-box .txt-error {
  position: absolute;
  left: 0;
  bottom: 6px;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.card-list .card-el {
  background: #edf2fe;
  font-size: 17px;
  color: var(--color-2nd-gray);
  border: 2px solid #edf2fe;
  border-radius: 8px;
}
.card-list > .card-el > a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px;
  cursor: pointer;
}
.card-list > .card-el:hover,
.card-list > .card-el.active {
  background: #ffffff;
  border-color: var(--color-1st-blue);
  box-shadow: 0 4px 8px rgba(116, 148, 239, 0.2);
  transition: var(--transition-bg);
}

/* table */
.table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-top: 1px solid var(--color-2nd-gray);
  border-bottom: 1px solid var(--color-2nd-gray);
}
.table .col-th {
  width: 120px;
}
.table th,
.table td {
  height: 64px;
  padding-block: 8px;
  border-top: 1px solid var(--color-1st-gray);
  vertical-align: middle;
}

.table tr:first-of-type th,
.table tr:first-of-type td {
  border-top: 0;
}
.table th {
  background-color: #edf2fe;
  font-size: 15px;
  font-weight: 700;
  color: var(--base-font-color);
}
.table th:not(:first-of-type),
.table td {
  border-left: 1px solid var(--color-1st-gray);
}
.table td {
  font-size: 17px;
  color: var(--color-2nd-gray);
  text-align: left;
  padding-inline: 16px;
}
.table .file {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 0;
}
.table .file .file-name {
  flex: auto;
}
.table .file .btn {
  flex: none;
}

/* 그리드형 테이블 */
.grid-box {
  width: 100%;
  border-top: 1px solid var(--color-2nd-gray);
  border-bottom: 1px solid var(--color-2nd-gray);
}
.grid-box .el-col {
  flex: none;
  text-align: center;
  font-size: 15px;
  align-content: center;
}
.grid-box .col-50 {
  width: 50px;
}
.grid-box .col-80 {
  width: 80px;
}
.grid-box .col-150 {
  width: 150px;
}
.grid-box .col-100 {
  width: 100px;
}
.grid-box .col-110 {
  width: 110px;
}
.grid-box .col-120 {
  width: 120px;
}
.grid-box .col-state {
  width: 100px;
  font-weight: 700;
}
.grid-box .col-auto {
  flex: auto;
}

.grid-box .grid-header {
  display: flex;
  align-items: center;
  height: 56px;
  background: #edf2fe;
  font-weight: 700;
  color: var(--base-font-color);
  padding-block: 19px;
}
.grid-box .grid-header .el-col:not(:last-of-type) {
  border-right: 1px solid var(--color-1st-gray);
}
.grid-box .grid-body .el-row {
  display: flex;
  min-height: 56px;
  color: var(--color-2nd-gray);
  padding-block: 16px 15px;
}
.grid-box .grid-body .el-row {
  height: 58px;
  border-top: 1px solid var(--color-1st-gray);
}
.grid-box .grid-body .row-notice {
  color: var(--base-font-color);
}
.grid-box .grid-body .col-auto {
  text-align: left;
  font-size: 17px;
  padding-inline: 12px;
}
.grid-box.lg .grid-body .el-row {
  height: 80px;
}
.grid-box.lg .grid-body .el-col {
  align-content: first baseline;
}

/* pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 40px 0;
}
.page-btn {
  width: 48px;
  height: 48px;
  background-color: #fff;
  font-size: 17px;
  border: 1px solid var(--color-1st-gray);
  border-radius: 4px;
  transition: all 0.2s ease;
  cursor: pointer;
}
.page-btn:hover {
  border-color: var(--color-1st-blue);
  color: var(--color-1st-blue);
}
.page-btn.active {
  background-color: var(--color-1st-blue);
  color: #fff;
  border-color: var(--color-1st-blue);
}
.page-btn.prev,
.page-btn.next {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-btn:disabled {
  opacity: 0.4;
  cursor: default;
}
.page-btn .icon-prev,
.page-btn .icon-next {
  background-image: url(../images/icon-prev.png);
}
.page-btn .icon-next {
  transform: rotate(180deg);
}

/* display */
.display-box {
  display: flex;
  align-items: center;
  gap: 20px;
}
.display-box .item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 160px;
  height: 100px;
  background: #3467c3;
  color: #ffffff;
  line-height: 1;
  border-radius: 8px;
}
.display-box .item .num {
  font-size: 48px;
  font-weight: 700;
}
.display-box .item .txt {
  font-size: 17px;
}

.display-box.line {
  gap: initial;
}
.display-box.line .item {
  background: transparent;
  border-radius: 0;
}
.display-box.line .item:not(:last-of-type):after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 70px;
  background: #4a78c9;
  transform: translateY(-50%);
}
.display-box.full {
  display: inline-flex;
  gap: 40px;
  background: #3467c3;
  padding: 18px 32px;
  border-radius: 4px;
}
.display-box.full .item {
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
}
.display-box.full .item .num {
  font-size: 24px;
}
.display-box.full .item .txt {
  font-size: 15px;
}

/* 툴팁박스 */
.tooltip-box {
  position: relative;
  display: inline-block;
}
.tooltip-box .tooltip-inner {
  display: none;
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.tooltip-box:hover .tooltip-inner {
  display: block;
}
.tooltip-box .tooltip-cont {
  position: relative;
  background: var(--color-2nd-gray);
  font-size: 12px;
  color: #fff;
  white-space: nowrap;
  border-radius: 4px;
  padding: 6px 4px;
}
.tooltip-box .tooltip-cont::before {
  content: "";
  position: absolute;
  left: calc(50% - 4px);
  bottom: -4px;
  width: 8px;
  height: 8px;
  background: var(--color-2nd-gray);
  transform: rotate(45deg);
  z-index: 1;
}
.tooltip-box-list .tooltip-box .txt-num {
  position: relative;
  font-size: 15px;
  font-weight: 700;
  padding: 4px;
}
.tooltip-box-list .txt-num.txt-blue + .tooltip-inner .tooltip-cont,
.tooltip-box-list .txt-num.txt-blue + .tooltip-inner .tooltip-cont::before {
  background: var(--color-1st-blue);
}
.tooltip-box-list .txt-num.txt-red + .tooltip-inner .tooltip-cont,
.tooltip-box-list .txt-num.txt-red + .tooltip-inner .tooltip-cont::before {
  background: var(--color-red);
}

.tooltip-box-list .tooltip-box:not(:first-of-type) .txt-num::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  width: 4px;
  height: 1px;
  background: var(--color-1st-gray);
}

.tooltip-box-list.disabled .tooltip-box .txt-num {
  color: var(--color-1st-gray) !important;
}
.tooltip-box-list.disabled .tooltip-box:hover .tooltip-inner {
  display: none;
}

.myList {
	background-color:#f6f9fd;
}

.mask { width:100%; height:100%; background: #000; opacity: .5; filter: alpha(opacity=50); display:none; position:fixed; top:0; left:0; z-index:300; }

.loading_b { width:200px; height: 80px; position: fixed; top: 50%; left: 50%; transform: translateY(-50%) translateX(-50%);  z-index:1200; display: none;}
.loading_b .load_con { width: 100%; height: 100%; position: relative; filter: url(#gooey); }

.loading_b .load_con > * { position: absolute; display: inline-block; left: -10%; width: 2.5rem; height: 2.5rem; background: #1EE4F2; top: 25%; border-radius: 50%; animation: loading 3s infinite; transform: scale(.1); opacity: 0; }
.loading_b .load_con div:nth-child(1) { animation-delay: .4s; }
.loading_b .load_con div:nth-child(2) { animation-delay: .8s; }
.loading_b .load_con div:nth-child(3) { animation-delay: 1.2s; }
.loading_b .load_con div:nth-child(4) { animation-delay: 1.6s; }

@keyframes loading {
	50% { transform: scale(1.25); left:40%; opacity: 1; }
	100% { transform: scale(.1); left: 100%; opacity: 0; }
}

.loading_b .load_con div:nth-child(1) { animation-delay: .4s; }
.loading_b .load_con div:nth-child(2) { animation-delay: .8s; }
.loading_b .load_con div:nth-child(3) { animation-delay: 1.2s; }
.loading_b .load_con div:nth-child(4) { animation-delay: 1.6s; }

.loading_b svg { display: none; }