@charset "UTF-8";
@keyframes arrow {
  0% {
    opacity: 0;
    transform: translate(-75%, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes arrowBack {
  0% {
    opacity: 0;
    transform: translate(75%, 50%) rotate(180deb);
  }
  100% {
    opacity: 1;
    transform: translate(0, 50%) rotate(180deb);
  }
}
@keyframes wave {
  0% {
    opacity: 0.35;
    transform: translate(-50%, -50%) scale(0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes showUnderline {
  0% {
    opacity: 1;
    transform: translate(-50%, 100%) scale(0);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 100%) scale(1);
  }
}
@keyframes showUp {
  0% {
    opacity: 0;
    transform: translate(0, 2em);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes checkUp {
  0% {
    opacity: 0;
    transform: translate(0, -20%);
  }
  100% {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
@keyframes rotate360 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes blink {
  0% {
    opacity: 1;
    transform: scale(0.5);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}
@keyframes sending {
  0% {
    width: 0%;
  }
  20% {
    width: 20%;
  }
  40% {
    width: 40%;
  }
  60% {
    width: 60%;
  }
  80% {
    width: 80%;
  }
  100% {
    width: 100%;
  }
}
/* 폰트정의 (나눔스퀘어 네오) */
/*@font-face {
  font-family: "NanumSquareNeo";
  src: url("/fonts/NanumSquareNeoTTF-aLt.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "NanumSquareNeo";
  src: url("/fonts/NanumSquareNeoTTF-bRg.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "NanumSquareNeo";
  src: url("/fonts/NanumSquareNeoTTF-cBd.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "NanumSquareNeo";
  src: url("/fonts/NanumSquareNeoTTF-dEb.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
}
@keyframes rotateInfinite {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
html,
:root {
  font-family: "NanumSquareNeo", "맑은 고딕", "Malgun Gothic", sans-serif;
  --bs-font-sans-serif: "NanumSquareNeo", "맑은 고딕", "Malgun Gothic", sans-serif;
  font-size: 15px;
}*/

/* ===========================
   English / Latin — Noto Sans
   =========================== */
   @font-face {
       font-family: 'Noto Sans';
       src: url('/fonts/NotoSans/NotoSans-Bold.woff2') format('woff2');
       font-weight: bold;
       font-style: normal;
       font-display: swap;
   }
   @font-face {
       font-family: 'Noto Sans';
       src: url('/fonts/NotoSans/NotoSans-Light.woff2') format('woff2');
       font-weight: 300;
       font-style: normal;
       font-display: swap;
   }
   @font-face {
       font-family: 'Noto Sans';
       src: url('/fonts/NotoSans/NotoSans-Medium.woff2') format('woff2');
       font-weight: 500;
       font-style: normal;
       font-display: swap;
   }

   @font-face {
       font-family: 'Noto Sans';
       src: url('/fonts/NotoSans/NotoSans-Regular.woff2') format('woff2');
       font-weight: normal;
       font-style: normal;
       font-display: swap;
   }
/* =============================
   Chinese (Simplified + Traditional)
   Noto Sans SC
   ============================= */
   @font-face {
       font-family: 'Noto Sans SC';
       src: url('/fonts/NotoSansSC/NotoSansSC-Bold.woff2') format('woff2');
       font-weight: bold;
       font-style: normal;
       font-display: swap;
   }
   @font-face {
       font-family: 'Noto Sans SC';
       src: url('/fonts/NotoSansSC/NotoSansSC-Medium.woff2') format('woff2');
       font-weight: 500;
       font-style: normal;
       font-display: swap;
   }
   @font-face {
       font-family: 'Noto Sans SC';
       src: url('/fonts/NotoSansSC/NotoSansSC-Light.woff2') format('woff2');
       font-weight: 300;
       font-style: normal;
       font-display: swap;
   }
   @font-face {
       font-family: 'Noto Sans SC';
       src: url('/fonts/NotoSansSC/NotoSansSC-Regular.woff2') format('woff2');
       font-weight: normal;
       font-style: normal;
       font-display: swap;
   }
@keyframes rotateInfinite {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
html,
:root {
  font-family: 
    "Noto Sans",   
    "Noto Sans SC",  
    sans-serif;

  /* Bootstrap 변수에도 동일 적용 */
  --bs-font-sans-serif: 
    "Noto Sans",
    "Noto Sans SC",
    sans-serif;

  font-size: 15px;
}

/* =====================
   언어별 폰트 적용
   ===================== */
[lang="en"] {
  font-family: "Noto Sans", sans-serif;
  word-break: break-word;
  overflow-wrap: anywhere;
}

[lang="zh"] {
  font-family: "Noto Sans SC", sans-serif;
  word-break: break-word;
  overflow-wrap: anywhere;
}

body {
  margin: 0;
  padding: 0;
}

/* form */
input,
select,
textarea,
.numeric-input,
.file-upload {
  height: 26px;
  line-height: 24px;
  border-radius: 3px;
  background-color: #fff;
  border: solid 1px #c7c7c7;
  font-size: 12px;
  padding: 0 10px;
  transition: all 0.3s;
}

strong {
  font-weight: 600;
}

textarea {
  height: auto;
}

input:text[multiple=multiple] {
  line-height: normal;
}

.file-upload-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 200px;
  gap: 0;
  padding: 20px;
  /*border-radius: 12px;*/
  border: 0.1rem dashed #ced4da;
  background-color: #f7f8fb;
}

.file-upload-result {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  margin-top: 10px;
  padding-bottom: 10px;
}
.file-upload-result .file-total {
  font-size: 1rem;
}

/*
input:hover, 
select:hover, 
textarea:hover, 
.numeric-input:hover, 
.file-upload:hover, 
input:focus, 
select:focus, 
textarea:focus, 
.numeric-input:focus, 
.file-upload:hover,
*/
*[type=radio],
*[type=checkbox],
*.form-check-input {
  font-size: 0;
  line-height: 0;
  text-indent: -9999px;
  display: block;
  background-color: transparent !important;
  width: 0 !important;
  height: 0 !important;
  box-sizing: border-box;
  border: none !important;
  padding: 0 !important;
  opacity: 0;
}

.checkbox-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
}
.checkbox-group .form-check-input {
  position: absolute;
}
.checkbox-group.one-group {
  gap: 0px;
}
.checkbox-group.one-group > *:first-child .form-check-input + label {
  border-radius: 0.5333em 0 0 0.5333em;
}
.checkbox-group.one-group > *:last-child .form-check-input + label {
  border-radius: 0 0.5333em 0.5333em 0;
}
.checkbox-group.one-group .form-check-input + label {
  margin-left: -1px;
  border-radius: 0;
}
.checkbox-group.one-group .form-check-input:checked + label {
  z-index: 1;
}
.checkbox-group.right {
  justify-content: flex-end;
}

.form-check-input + label {
  position: relative;
  display: inline-flex;
  white-space: nowrap;
  gap: 0.5em;
  align-items: center;
  font-size: 0.933rem;
  box-sizing: border-box;
  border: 1px solid #777;
  border-radius: 0.5333em;
  color: #777;
  height: 2.7357em;
  padding: 0.6071em 1.2em 0.4871em;
  height: auto;
  cursor: pointer;
  background-color: #fff;
 
}
.form-check-input + label::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  margin-top: -0.125em;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: 50% 50%;
  -webkit-mask-position: 50% 50%;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-image: url("/img/contents/ico-checkbox-checked.svg");
  -webkit-mask-image: url("/img/contents/ico-checkbox-checked.svg");
  background-color: #99A4AB;
  transition: all 0.1s ease-in-out;
}
.form-check-input + label.no-txt {
  padding-left: 0;
  padding-right: 0;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
}
.form-check-input + label.text {
  padding-left: 0;
  padding-right: 0;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.form-check-input:checked + label.form-check-label {
  color: #142456;
  font-weight: 600;
  border-width: 2px;
  border-color: #25262B;
  opacity: 1;
}
.form-check-input:checked + label.form-check-label::after {
  mask-image: url("/img/contents/ico-checkbox-checked.svg");
  -webkit-mask-image: url("/img/contents/ico-checkbox-checked.svg");
  background-color: #25262B;
  opacity: 1;
}
.form-check-input.disabled:checked + label.form-check-label, .form-check-input.disabled + label.form-check-label:hover, .form-check-input.disabled + label.form-check-label:focus, .form-check-input.disabled + label.form-check-label:active, .form-check-input.disabled + label.form-check-label {
  cursor: default;
  opacity: 0.3 !important;
  border-color: #99A4AB !important;
  font-weight: 400 !important;
  border-width: 1px !important;
  background-color: #eaeaea;
}
.form-check-input.disabled:checked + label.form-check-label::after,
.form-check-input.disabled:checked + label.form-check-label span.prc, .form-check-input.disabled + label.form-check-label:hover::after,
.form-check-input.disabled + label.form-check-label:hover span.prc, .form-check-input.disabled + label.form-check-label:focus::after,
.form-check-input.disabled + label.form-check-label:focus span.prc, .form-check-input.disabled + label.form-check-label:active::after,
.form-check-input.disabled + label.form-check-label:active span.prc, .form-check-input.disabled + label.form-check-label::after,
.form-check-input.disabled + label.form-check-label span.prc {
  display: none !important;
}
.form-check-input.no-txt + label.form-check-label {
  padding-left: 0.5em;
  padding-right: 0.5em;
  width: 1.8rem;
  height: 1.8rem;
}
.form-check-input[type=checkbox] + label.form-check-label::after {
  mask-size: 90% auto;
  -webkit-mask-size: 90% auto;
  mask-image: url("/img/contents/ico-checkbox-checked.svg");
  -webkit-mask-image: url("/img/contents/ico-checkbox-checked.svg");
}
.form-check-input[type=checkbox]:checked + label.form-check-label {
  opacity: 1;
}
.form-check-input[type=checkbox]:checked + label.form-check-label::after {
  mask-image: url("/img/contents/ico-checkbox-checked.svg");
  -webkit-mask-image: url("/img/contents/ico-checkbox-checked.svg");
  background-color: #25262B;
  opacity: 1;
}

.form-check-input-type2 + label {
  position: relative;
  display: inline-flex;
  white-space: nowrap;
  gap: 0.5em;
  align-items: center;
  font-size: 0.933rem;
  box-sizing: border-box;
  border: 1px solid #99A4AB;
  border-radius: 0.5333em;
  color: #99A4AB;
  height: 2.7357em;
  padding: 0.6071em 1.2em 0.4871em;
  height: auto;
  cursor: pointer;
  background-color: #fff;
}
.form-check-input-type2 + label::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  margin-top: -0.125em;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: 50% 50%;
  -webkit-mask-position: 50% 50%;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-image: url("/img/contents/ico-checkbox-checked.svg");
  -webkit-mask-image: url("/img/contents/ico-checkbox-checked.svg");
  background-color: #99A4AB;
  transition: all 0.1s ease-in-out;
}
.form-check-input-type2 + label.no-txt {
  padding-left: 0;
  padding-right: 0;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
}
.form-check-input-type2 + label.text {
  padding-left: 0;
  padding-right: 0;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.form-check-input-type2:checked + label.form-check-label {
  color: #142456;
  font-weight: 600;
  border-width: 2px;
  border-color: #25262B;
  opacity: 1;
}
.form-check-input-type2:checked + label.form-check-label::before {
  mask-image: url("/img/contents/ico-checkbox-checked.svg");
  -webkit-mask-image: url("/img/contents/ico-checkbox-checked.svg");
  background-color: #25262B;
  opacity: 1;
}
.form-check-input-type2.disabled:checked + label.form-check-label, .form-check-input-type2.disabled + label.form-check-label:hover, .form-check-input-type2.disabled + label.form-check-label:focus, .form-check-input-type2.disabled + label.form-check-label:active, .form-check-input-type2.disabled + label.form-check-label {
  cursor: default;
  opacity: 0.3 !important;
  border-color: #99A4AB !important;
  font-weight: 400 !important;
  border-width: 1px !important;
}
.form-check-input-type2.disabled:checked + label.form-check-label::before,
.form-check-input-type2.disabled:checked + label.form-check-label span.prc, .form-check-input-type2.disabled + label.form-check-label:hover::before,
.form-check-input-type2.disabled + label.form-check-label:hover span.prc, .form-check-input-type2.disabled + label.form-check-label:focus::before,
.form-check-input-type2.disabled + label.form-check-label:focus span.prc, .form-check-input-type2.disabled + label.form-check-label:active::before,
.form-check-input-type2.disabled + label.form-check-label:active span.prc, .form-check-input-type2.disabled + label.form-check-label::before,
.form-check-input-type2.disabled + label.form-check-label span.prc {
  display: none !important;
}
.form-check-input-type2.no-txt + label.form-check-label {
  padding-left: 0.5em;
  padding-right: 0.5em;
  width: 2rem;
  height: 2rem;
}
.form-check-input-type2[type=checkbox] + label.form-check-label::before {
  mask-size: 90% auto;
  -webkit-mask-size: 90% auto;
  mask-image: url("/img/contents/ico-checkbox-checked.svg");
  -webkit-mask-image: url("/img/contents/ico-checkbox-checked.svg");
}
.form-check-input-type2[type=checkbox]:checked + label.form-check-label {
  opacity: 1;
}
.form-check-input-type2[type=checkbox]:checked + label.form-check-label::before {
  mask-image: url("/img/contents/ico-checkbox-checked.svg");
  -webkit-mask-image: url("/img/contents/ico-checkbox-checked.svg");
  background-color: #25262B;
  opacity: 1;
}

.form-check-input + label.form-check-label:hover,
.form-control:hover,
.form-select:hover,
.form-range:hover,
.btn-check:hover + .btn,
.btn:hover,
.accordion-button:hover,
.accordion-button:hover,
.page-link:hover,
.btn-close:hover {
  border-color: #25262B !important;
}

.form-control:focus,
.btn-check:focus + .btn,
.btn:focus,
.accordion-button:focus,
.accordion-button:focus,
.page-link:focus,
.btn-close:focus {
  border-color: #25262B !important;
  box-shadow: none;
  border-bottom-width: 2px;
}

.btn[class*=btn-box]:hover,
.form-select:focus,
.form-range:focus {
  box-shadow: 0 0 0 0.25rem rgba(81, 101, 213, 0.04);
  box-shadow: none;
}

.btn[class*=btn-box]:focus {
  box-shadow: 0 0 0 0.25rem rgba(81, 101, 213, 0.4);
  box-shadow: none;
}

.form-check-input + label.form-check-label:hover, .form-check-input + label.form-check-label:active {
  background-color: #fff;
  color: #25262B;
}

.form-check-input:checked + label.form-check-label::after {
  border-color: #25262B;
}

.form-control[readonly],
.form-control[readonly]:hover,
.form-control[readonly]:focus {
  background-color: transparent !important;
  border-color: #CFD4E6 !important;
  box-shadow: none !important;
  cursor: not-allowed;
}
.form-control::placeholder,
.form-control input::placeholder{
    color: #6c757d;
    opacity: 1;
    font-size: 0.9rem;
}
select {
  cursor: pointer;
  padding-right: 24px;
}

iframe {
  border: 0;
  overflow: auto;
}

*::placeholder {
  color: rgba(35, 35, 39, 0.35);
  font-weight: 400;
}

*:focus::placeholder {
  color: transparent;
}

select {
  background-repeat: no-repeat;
  background-position: right 10px top 50%;
}

textarea {
  width: 100%;
  box-sizing: border-box;
  resize: none;
  min-height: 80px;
  padding: 10px 12px;
  font-size: 0.933em;
}

button {
  background-color: transparent;
  cursor: pointer;
}

embed {
  pointer-events: none;
}

.wave {
  margin-left: 0.75em;
  margin-right: 0.75em;
}

/* 취소 클래스 */
.f-lft {
  float: left !important;
}

.f-rgt {
  float: right !important;
}

.clear {
  clear: both !important;
}

.t-lft {
  text-align: left !important;
}

.t-ctr {
  text-align: center !important;
}

.t-rgt {
  text-align: right !important;
}

.no-bg {
  background-image: none !important;
}

.no-ml {
  margin-left: 0 !important;
}

.no-mr {
  margin-right: 0 !important;
}

.no-pl {
  padding-left: 0 !important;
}

.no-pr {
  padding-right: 0 !important;
  padding-right: 0 !important;
}

.no-text {
  font-size: 0px !important;
  line-height: 0px !important;
  text-indent: -9999px !important;
}

.no-border {
  border: none !important;
}

/* 간격 */
.mgt0 {
  margin-top: 0px !important;
}

.mgt5 {
  margin-top: 5px !important;
}

.mgt10 {
  margin-top: 10px !important;
}

.mgt15 {
  margin-top: 15px !important;
}

.mgt20 {
  margin-top: 20px !important;
}

.mgt30 {
  margin-top: 30px !important;
}

.mgt40 {
  margin-top: 40px !important;
}

.mgt50 {
  margin-top: 50px !important;
}

.mgt60 {
  margin-top: 60px !important;
}

.mgt70 {
  margin-top: 70px !important;
}

.mgt80 {
  margin-top: 80px !important;
}

.mgt90 {
  margin-top: 90px !important;
}

.mgt100 {
  margin-top: 100px !important;
}
.mgt130 {
  margin-top: 130px !important;
}
.mgt200 {
  margin-top: 200px !important;
}

.mgb0 {
  margin-bottom: 0px !important;
}

.mgb5 {
  margin-bottom: 5px !important;
}

.mgb10 {
  margin-bottom: 10px !important;
}

.mgb15 {
  margin-bottom: 15px !important;
}

.mgb20 {
  margin-bottom: 20px !important;
}

.mgb30 {
  margin-bottom: 30px !important;
}

.mgb40 {
  margin-bottom: 40px !important;
}

.mgb50 {
  margin-bottom: 50px !important;
}

.mgb60 {
  margin-bottom: 60px !important;
}

.mgb70 {
  margin-bottom: 70px !important;
}

.mgb80 {
  margin-bottom: 80px !important;
}

.mgb90 {
  margin-bottom: 90px !important;
}

.mgb810 {
  margin-bottom: 100px !important;
}

.mgr0 {
  margin-right: 0px !important;
}

.mgr5 {
  margin-right: 5px !important;
}

.mgr10 {
  margin-right: 10px !important;
}

.mgr15 {
  margin-right: 15px !important;
}

.mgr20 {
  margin-right: 20px !important;
}

.mgr30 {
  margin-right: 30px !important;
}

.mgr40 {
  margin-right: 40px !important;
}

.mgr50 {
  margin-right: 50px !important;
}

.mgr60 {
  margin-right: 60px !important;
}

.mgr90 {
  margin-right: 90px !important;
}

.mgr100 {
  margin-right: 100px !important;
}

.mgl0 {
  margin-left: 0px !important;
}

.mgl5 {
  margin-left: 5px !important;
}

.mgl10 {
  margin-left: 10px !important;
}

.mgl15 {
  margin-left: 15px !important;
}

.mgl20 {
  margin-left: 20px !important;
}

.mgl30 {
  margin-left: 30px !important;
}

.mgl40 {
  margin-left: 40px !important;
}

.mgl50 {
  margin-left: 50px !important;
}

.mgl60 {
  margin-left: 60px !important;
}

.mgl90 {
  margin-left: 90px !important;
}

.mg1060 {
  margin-left: 100px !important;
}

.pdl0 {
  padding-left: 0px !important;
}

.pdl5 {
  padding-left: 5px !important;
}

.pdl10 {
  padding-left: 10px !important;
}

.pdl15 {
  padding-left: 15px !important;
}

.pdl20 {
  padding-left: 20px !important;
}

.pdl30 {
  padding-left: 30px !important;
}

.pdl40 {
  padding-left: 40px !important;
}

.pdl50 {
  padding-left: 50px !important;
}

.pdl60 {
  padding-left: 60px !important;
}

.m-visible {
  display: none;
}
/*20251014 css 추가*/
.m-w-130{
  min-width: 130px;
}
.m-w-270{
  min-width: 270px;
}
.m-w-300{
  min-width: 300px;
}
.file-upload {
  position: relative;
  overflow: visible;
  padding: 0;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
}
.file-upload > input {
  display: none;
}
.file-upload > span {
  display: block;
  text-overflow: ellipsis;
  padding: 0 10px;
  padding-right: 84px;
  font-size: 0.933em;
  white-space: nowrap;
  overflow: hidden;
}
.file-upload > a.btn {
  position: absolute;
  width: 84px;
  top: -1px;
  right: -1px;
  bottom: -1px;
  height: 26px;
  line-height: 24px;
  border-radius: 0 3px 3px 0;
}
.file-upload.big {
  height: 36px;
  line-height: 34px;
}
.file-upload.big > a.btn {
  height: 36px;
  line-height: 34px;
}

.numeric-input {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding: 0;
  overflow: hidden;
}
.numeric-input input {
  width: 100%;
  height: 100%;
  text-align: left;
  border: solid 1px transparent;
  float: left;
  padding: 0 18px 0 5px;
  text-align: right;
}
.numeric-input input:hover, .numeric-input input:focus {
  border-color: transparent !important;
}
.numeric-input .btn.up, .numeric-input .btn.down {
  display: block;
  width: 15px;
  height: 50%;
  border-top: solid 1px #e5e5e5;
  position: absolute;
  right: 0;
  top: 0;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  cursor: pointer;
  box-sizing: border-box;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.numeric-input .btn.up {
  border: 0;
  border-left: solid 1px #d2ddf2;
  border-bottom: solid 1px #d2ddf2;
}
.numeric-input .btn.down {
  border-top: none;
  bottom: 0;
  top: auto;
  border-left: solid 1px #d2ddf2;
}
.numeric-input .btn.up:hover, .numeric-input .btn.down:hover {
  background-color: #fcfcfc;
}

.search-keyword {
  border: solid 1px #caccda;
  height: 36px;
  line-height: 34px;
  position: relative;
  overflow: visible;
}
.search-keyword > input {
  height: 34px;
  width: 100%;
  box-sizing: border-box;
  line-height: 34px;
  font-size: 0.933em;
  border: none;
  padding-right: 80px;
  background-color: transparent;
}
.search-keyword > a.btn {
  position: absolute;
  width: 80px;
  text-align: center;
  top: -1px;
  right: -1px;
  bottom: -1px;
  height: 36px;
  border: none;
  line-height: 34px;
  background-color: #4255c7;
  border-radius: 0;
  color: #fff;
}
.search-keyword > a.btn:hover {
  border: none;
  background-color: #364bc5;
}

a.underline {
  text-decoration: underline;
}
a.btn:hover {
  border-color: #71a2e8;
}
a.btn .fa {
  display: inline-block;
  margin-right: 0.5em;
}
a.btn.dark {
  border-color: transparent;
  background-color: #537aa2;
  color: #fff;
}
a.btn.dark:hover {
  border-color: transparent;
  background-color: #6286ca;
}
a.btn.small {
  height: 22px;
  line-height: 20px;
  background-color: #f1f5fb;
  border-color: #cfdbf0;
  font-size: 11px;
  color: #7b94c0;
}
a.btn.small:hover {
  border-color: #8caeea;
}
a.btn.big {
  font-size: 13px;
  height: 36px;
  line-height: 34px;
}
a.btn.color01 {
  background-color: #71a2e8 !important;
  border-color: transparent;
  color: #fff;
}
a.btn.color01:hover {
  background-color: #558fe2;
}
a.btn.color02 {
  background-color: #6dc77a !important;
  border-color: transparent;
  color: #fff;
}
a.btn.color02:hover {
  background-color: #4fb75e;
}
a.btn.color03 {
  background-color: #4255c7 !important;
  border-color: transparent;
  color: #fff;
}
a.btn.color03:hover {
  background-color: #364bc5;
}
a.btn.color04 {
  border-color: #71a2e8 !important;
  color: #71a2e8;
}
a.btn.color04:hover {
  background-color: #fbfdff;
}
a.btn.color05 {
  background-color: #55cbe0 !important;
  border-color: transparent;
  color: #fff;
}
a.btn.color05:hover {
  background-color: #32bdd6;
}
a.btn.color06 {
  background-color: #a3a3a3 !important;
  border-color: transparent;
  color: #fff;
}
a.btn.color06:hover {
  background-color: #999999;
}
a.btn.color07 {
  background-color: #eb977a !important;
  border-color: transparent;
  color: #fff;
}
a.btn.color07:hover {
  background-color: #e38565;
}
a.btn.color08 {
  background-color: #eb7aa2 !important;
  border-color: transparent;
  color: #fff;
}
a.btn.color08:hover {
  background-color: #e26390;
}
a.btn.shadow {
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2);
}
a.btn > span.fa {
  vertical-align: baseline;
  text-align: center;
}
a.download {
  text-decoration: underline;
}

/* a.btn */
.btn-container {
  display: flex;
  position: relative;
}
.btn-container .btn-wrap .btn {
  margin: 0;
}
.btn-container .btn-wrap.center .btn {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.btn-container .center {
  position: relative;
  left: 50%;
  transform: translate(-50%, 0);
}
.btn-container .right {
  position: absolute;
  right: 0;
  left: auto;
}

.btn-wrap {
  display: inline-flex;
  overflow: visible;
  flex-wrap: wrap;
  gap: 1rem;
}
.btn-wrap.full {
  width: 100%;
}
.btn-wrap.full > .btn:first-child:last-child {
  width: 100%;
}
.btn-wrap.vertical {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.btn-wrap.sb {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.btn-wrap > * {
  float: left;
  margin-right: 0.5em;
}
.btn-wrap > label.tit {
  display: inline-block;
  line-height: 24px;
}
.btn-wrap > *:last-child {
  margin-right: 0;
}
.btn-wrap.left {
  width: 100%;
  align-items: center;
}
.btn-wrap.left > * {
  margin-left: 0;
}
.btn-wrap.left > *:last-child {
  margin-left: 0;
}
.btn-wrap.right {
  width: 100%;
  align-items: center;
  text-align: right;
}
.btn-wrap.right > * {
  margin-right: 0;
}
.btn-wrap.right > *:last-child {
  margin-right: 0;
}
.btn-wrap.center > * {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.btn-wrap.determine {
  width: 100%;
  gap: 1rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid #142456;
  justify-content: center;
}
.btn-wrap.top {
  position: absolute;
  top: 0;
  right: 0;
}
.btn-wrap.one-group {
  gap: 0;
}
.btn-wrap.one-group .btn {
  margin: 0;
  border-radius: 0;
  margin-left: -1px;
  flex: 1 1 auto;
}

.flex-box {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.flex-box.left {
  justify-content: flex-start;
}
.flex-box.left .end {
  margin-left: auto;
}
.flex-box.vertical {
  flex-direction: column;
}
.flex-box.vertical.center {
  justify-content: center;
}
.flex-box.center {
  align-items: center;
}
.flex-box.bottom {
  align-items: baseline;
}
.flex-box.right {
  justify-content: flex-end;
}
.flex-box > .btn {
  white-space: nowrap;
}

.aic {
  align-items: center;
}

.btn-wrap-table {
  display: table;
  table-layout: fixed;
  width: 100%;
  text-align: center;
}
.btn-wrap-table.bottom-fix {
  position: absolute;
  bottom: 0;
  left: 0;
}
.btn-wrap-table > .btn-wrap {
  display: table-row;
}
.btn-wrap-table > .btn-wrap > a.btn {
  display: table-cell;
  margin-right: 0;
  float: none;
  border: none;
  border-radius: 0;
  height: 48px;
  line-height: 48px;
  font-size: 0.933em;
}

.btn-wrap.center {
  display: flex;
  justify-content: center;
}

.btn-wrap.right {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}

.btn-wrap.left {
  display: flex;
  width: 100%;
  justify-content: flex-start;
}

.btn-wrap.grid {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
}
.btn-wrap.grid .btn {
  margin-right: 0;
  width: auto;
}
.btn-wrap.grid .btn::after {
  position: static;
}

.btn.ico {
  display: inline-flex;
  gap: 0.4em;
  align-items: center;
}
.btn.ico::before {
  content: "";
  display: block;
  width: 1.067rem;
  height: 1.067rem;
  background-color: #fff;
  -webkit-mask-position: 50% 50%;
  mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.btn-check:focus + .btn-primary,
.btn-primary:focus {
  color: #25262B;
}

.btn[class*=-md] {
  padding: 0.5em 0.9em !important;
  font-weight: 400 !important;
  font-size: 0.96rem !important;
}

.btn[class*=-sm] {
  padding: 0.5em 0.9em !important;
  font-weight: 400 !important;
  font-size: 0.85rem !important;
}

/* 체크박스 */
p.checkbox, p.radio {
  cursor: pointer;
  position: relative;
  z-index: 10;
}
p.checkbox, p.radio {
  display: inline-block;
  vertical-align: middle;
}
p.checkbox > *, p.radio > * {
  display: inline-block;
  vertical-align: middle;
}
p.checkbox > input, p.radio > input {
  display: none;
}
p.checkbox > span.ico {
  width: 18px;
  height: 18px;
  border-radius: 0px;
  border: solid 1px #b8bec7;
  background-color: #dce0e7;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  margin-right: 6px;
  transition: all 0.2s;
  box-sizing: border-box;
}
p.radio > span.ico {
  width: 18px;
  height: 18px;
  border-radius: 0px;
  border: solid 1px #b8bec7;
  background-color: #dce0e7;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  margin-right: 6px;
  transition: all 0.2s;
  box-sizing: border-box;
  border-radius: 50%;
}
p.checkbox.checked > span.ico, p.radio.checked > span.ico {
  background-color: #001060;
  border: solid 1px transparent;
}
p.checkbox > label, p.radio > label {
  font-size: 0.8em;
  color: #767676;
  cursor: pointer;
}

/* tab */
div.tab {
  position: relative;
  margin-bottom: 16px;
}
div.tab > ul {
  border-bottom: solid 1px #a9a9a9;
}
div.tab > ul li {
  float: left;
  margin-right: -1px;
  position: relative;
}
div.tab > ul li > a {
  display: block;
  text-align: center;
  min-width: 120px;
  height: 38px;
  line-height: 38px;
  margin-top: 2px;
  color: #868686;
  background-color: #fcfcfc;
  padding: 0 15px;
  transition: all 0.2s;
  border: solid 1px #d4d4d4;
  border-bottom: 0;
}
div.tab > ul li > a:hover {
  background-color: #f1f1f1;
}
div.tab > ul li.active {
  z-index: 1;
}
div.tab > ul li.active > a {
  background-color: #fff;
  height: 40px;
  line-height: 40px;
  color: #5b5555;
  margin-top: 0;
  font-weight: 500;
  border-color: #a9a9a9;
  border-bottom-color: #fff;
}
div.tab > .btn-wrap {
  position: absolute;
  top: 0;
  right: 0;
}
div.tab > .btn-wrap > a.btn {
  height: 36px;
  line-height: 34px;
  font-size: 0.867em;
}

.tab-contents {
  display: none;
}
.tab-contents.active {
  display: block;
}

.pagination-wrap {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  position: relative;
  align-items: center;
}
.pagination-wrap ul {
  display: inline-flex;
  gap: 0.5rem;
  height: 2.1rem;
  align-items: center;
}
.pagination-wrap .prev,
.pagination-wrap .next {
  width: 100%;
  height: 100%;
}
.pagination-wrap .prev .page-link,
.pagination-wrap .next .page-link {
  background-color: transparent !important;
  font-size: 0;
  line-height: 0;
  text-indent: -9999px;
  height: 100%;
}
.pagination-wrap .prev .page-link::before,
.pagination-wrap .next .page-link::before {
  content: "";
  display: block;
  width: 1rem;
  height: 100%;
  margin: 0 !important;
  transform: translate(0, 0);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: 50% 50%;
  -webkit-mask-position: 50% 50%;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-image: url(/img/common/ico-carousel-arrow.svg);
  mask-size: 50% auto;
  background-color: #B9CCE1;
}
.pagination-wrap .prev .page-link:hover::before,
.pagination-wrap .prev .page-link:active::before,
.pagination-wrap .next .page-link:hover::before,
.pagination-wrap .next .page-link:active::before {
  background-color: #142456;
}
.pagination-wrap .prev.next .page-link::before,
.pagination-wrap .next.next .page-link::before {
  transform: translate(0, 0) rotate(180deg);
}
.pagination-wrap .page-link {
  color: #25262B;
  min-width: 1.2rem;
  height: 100%;
  border: none;
  font-size: 1rem;
  border-radius: 100px;
  padding: .255rem .75rem;/*2025-02-27 추가*/
}
.pagination-wrap .page-link.active, .pagination-wrap .page-link:active {
  color: #fff;
  font-weight: 600;
  background-color: #142456;
}
/*2025-07-04 btn 추가*/
.pagination-wrap .first,
.pagination-wrap .last {
  width: 100%;
  height: 100%;
}
.pagination-wrap .first .page-link,
.pagination-wrap .last .page-link {
  background-color: transparent !important;
  font-size: 0;
  line-height: 0;
  text-indent: -9999px;
  height: 100%;
}
.pagination-wrap .first .page-link::before,
.pagination-wrap .last .page-link::before {
  content: "";
  display: block;
  width: 1.7rem;
  height: 100%;
  margin: 0 !important;
  transform: translate(0, 0);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: 50% 50%;
  -webkit-mask-position: 100% 50%;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-image: url(/img/common/ico-carousel-arrow_first_last.png);
  mask-size: 50% auto;
  background-color: #B9CCE1;
}
.pagination-wrap .first .page-link:hover::before,
.pagination-wrap .first .page-link:active::before,
.pagination-wrap .last .page-link:hover::before,
.pagination-wrap .last .page-link:active::before {
  background-color: #142456;
}
.pagination-wrap .first.last .page-link::before,
.pagination-wrap .last.last .page-link::before {
  transform: translate(0, 0) rotate(180deg);
}
/*2025-07-04 btn 추가 끝*/
.pagination-wrap > .btn-wrap {
  position: absolute;
}
.pagination-wrap > .btn-wrap.right {
  right: 0;
}

/* 데이터 없음 */
.no-data {
  border: 1px solid #ccc;
  position: relative;
  text-align: center;
  padding: 50px;
  border-radius: 16px;
  background-color: #fff;
}
.no-data::before {
  content: "";
  display: block;
  margin: 0 auto 15px auto;
  width: 60px;
  height: 60px;
  background: url(../../images/contents/ico-warning.svg) 50% 50% / contain no-repeat;
}
.no-data > span {
  display: block;
  color: #767676;
}
.no-data > span + .btn {
  margin-top: 20px;
}
.no-data.mobile-disable::before {
  -webkit-mask-image: url("/img/common/ico-pc.svg");
  mask-image: url("/img/common/ico-pc.svg");
}

/* 모바일 사용 불가 */
/* 상태값 */
span.sta {
  height: 26px;
  line-height: 24px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 100px;
  box-sizing: border-box;
  padding-left: 0.7em;
  padding-right: 0.7em;
}
span.sta > span.fa {
  vertical-align: baseline;
  margin-right: 0.2em;
}
span.sta-unusual {
  line-height: 22px;
}

.sta.sta-none {
  color: #232327;
}
.sta.sta-normal {
  color: #7bb52f;
}
.sta.sta-unusual {
  color: #f15f54;
}
.sta.sta-caution {
  color: #f1d654;
}
.sta.sta-fill {
  color: #fff;
  border-color: #001060;
  background-color: #001060;
}

/* 셀렉트 버튼 */
a.btn.select {
  position: relative;
  z-index: 1;
}
a.btn.select > span.val {
  vertical-align: baseline;
}
a.btn.select > span.opt-group {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: calc(100% + 2px);
  border: solid 1px #c7c7c7;
  background-color: #fff;
  border-top: 0;
  border-radius: 0 0 3px 3px;
  margin: 0 -1px;
  white-space: nowrap;
}
a.btn.select > span.opt-group > span.opt {
  display: block;
  padding: 0 5px;
  border-top: solid 1px #eee;
  transition: all 0.2s;
}
a.btn.select > span.opt-group > span.opt.selected {
  color: #fff;
  background-color: #71a2e8 !important;
}
a.btn.select > span.opt-group > span.opt:hover {
  background-color: #fafafa;
}
a.btn.select.active {
  height: auto !important;
  overflow: visible;
}
a.btn.select.active > span.opt-group {
  display: block;
}
a.btn.select.big {
  height: 35px;
  line-height: 35px;
  font-size: 1.2em;
}
a.btn.select.big:after {
  content: "\f107";
  font-family: "FontAwesome";
  margin-left: 0.3em;
}
a.btn.select.big > span.opt-group > span.opt {
  font-size: 0.9em;
}

/* toggle */
div.toggle {
  display: inline-block;
  vertical-align: middle;
}
div.toggle > a.btn {
  border-color: #dfdfdf;
  background-color: #fff;
  font-size: 0.933em;
  color: #767676;
  font-weight: normal;
  float: left;
  margin-right: 4px;
  position: relative;
}
div.toggle > a.btn:hover {
  z-index: 1;
  border-color: #71a2e8;
  color: #71a2e8;
}
div.toggle > a.btn:last-child {
  margin-right: 0;
}
div.toggle > a.btn.active {
  background-color: #4255c7;
  border-color: transparent;
  color: #fff;
  font-weight: 500;
}
div.toggle.divide3 {
  width: 100%;
}
div.toggle.divide3 > a.btn {
  width: calc(33.33% - 4px);
  float: left;
  margin-right: 6px;
  text-align: center;
  margin-bottom: 8px;
  border: solid 1px #caccda;
}
div.toggle.divide3 > a.btn:nth-of-type(3n) {
  margin-right: 0;
}
div.toggle.divide3 > a.btn.active {
  border: 0;
}
div.toggle.block {
  display: block;
  width: 100%;
}
div.toggle.block > a.btn {
  display: block;
  width: 100%;
  margin-right: 0;
  margin-bottom: 5px;
  text-align: center;
}
div.toggle.block > a.btn:last-of-type {
  margin-bottom: 0;
}

.search-box div.toggle > a.btn {
  font-size: 0.867em;
}

p.para {
  line-height: 1.5em;
}

/* layout */
html,
body.main {
  height: 100%;
  min-height: 100%;
}

#wrap {
  min-height: 100%;
}

/* loading TypeA */
div.loading {
  display: inline-block;
  height: 110px;
  background: #fff url("/img/common/ico-loading.gif") 50% -253px no-repeat;
  text-align: center;
  border-radius: 10px;
  padding: 90px 10px 30px 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -60px 0 0 -100px;
}
div.loading > p {
  font-size: 13px;
  color: #767676;
  font-weight: 500;
}
div.loading.common {
  width: 200px;
  display: none;
  z-index: 2500;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
}
div.loading.common.active {
  display: block;
}

/* loading */
.loading-wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 10000;
  background: #fff url("/img/common/ico-loading.gif") 50% 50%/100px auto no-repeat;
}

/* 대화상자 공통 */
.over-modal.dialog .pop-container {
  margin-bottom: 0;
}

p.question {
  display: flex;
  justify-content: center;
  align-items: center;
}
p.question::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url("/img/common/ico-exclamation.svg") 50% 50% no-repeat;
  margin-right: 8px;
}

/* mcustomscrollbar reset */
.mCS-minimal.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000 !important;
  background-color: rgba(0, 0, 0, 0.2) !important;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)" !important;
}
.mCS-minimal.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-minimal.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)" !important;
}

/* jquery ui reset */
.ui-datepicker.ui-widget.ui-widget-content {
  z-index: 1500 !important;
}

.ui-datepicker {
  border-radius: 0.5rem;
}
.ui-datepicker.ui-widget.ui-widget-content {
  padding: 0.8rem;
  border-color: #99A4AB;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: 50% 50%;
  -webkit-mask-position: 50% 50%;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-image: url("/img/common/ico-carousel-arrow.svg");
  mask-size: 8px auto;
  background-color: #25262B;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  text-indent: 0;
  font-size: 1rem;
  color: #99A4AB;
}
.ui-datepicker .ui-datepicker-prev.ui-datepicker-next,
.ui-datepicker .ui-datepicker-next.ui-datepicker-next {
  transform: rotate(180deg);
}
.ui-datepicker .ui-state-default,
.ui-datepicker .ui-datepicker-header.ui-widget-header {
  background-color: transparent;
  border: none;
}
.ui-datepicker .ui-state-default {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.ui-datepicker .ui-state-default.ui-state-active {
  background-color: #142456;
  color: #fff;
  border-radius: 0.4em;
}
/*2025-04-08 수정*/
.form-control.datepicker {
	background: url(/img/contents/ico-calendar.svg) left 0.6em top 50% / 18px auto no-repeat;
	text-indent: 1.5rem;
}

.form-control.monthpicker {
	background: url(/img/contents/ico-calendar.svg) left 0.6em top 50% / 18px auto no-repeat;
	text-indent: 1.5rem;
}

.btn-date-close{
	position: absolute;
	top: 25%;
	right: 0em;
	height: 0.5em !important;
	opacity: 0.65;
}
/*2025-04-08 수정 끝*/
/* 평상 시 */
/* modal */
.over-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5000;
  display: none;
  min-width: 300px;
  max-width: calc(100vw - 40px);
  background-color: #fff;
  box-shadow: 10px 10px 80px rgba(0, 0, 0, 0.3);
}
.over-modal .pop-header {
  height: 60px;
  background-color: #2D316C;
  display: flex;
  padding: 0 20px;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.over-modal .pop-header p {
  font-size: 1.2em;
  font-weight: 500;
}
.over-modal .pop-container {
  /* padding: 30px 40px 15px; */
  padding: 30px 40px;
  position: relative;
  /* margin-bottom: 30px; */
  max-height: calc(100vh - 200px);
  overflow-y: auto;
  overflow-x: hidden;
}
.over-modal .pop-title {
  font-size: 1.333em;
  font-weight: 600;
  color: #2D316C;
}
.over-modal .pop-footer {
  padding: 15px 20px;
  position: relative;
  text-align: center;
  background-color: #f0f0f5;
}
.over-modal .pop-footer .btn-wrap {
  display: inline-block;
}
.over-modal .pop-footer .btn-wrap > *:last-child {
  margin-right: 0 !important;
}
.over-modal .btn-close {
  display: block;
  width: 24px;
  height: 24px;
  border: solid 1px transparent;
  transition: all 0.2s;
  position: absolute;
  top: 50%;
  right: 20px;
  font-size: 0px;
  line-height: 0;
  text-indent: -9999px;
  transform: translate(0, -50%);
}
.over-modal .btn-close::before, .over-modal .btn-close::after {
  content: "";
  display: block;
  width: 20px;
  height: 1.5px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
}
.over-modal .btn-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.over-modal .btn-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.over-modal .btn-close:hover {
  background-color: #282c40;
}

table {
  border-collapse: collapse;
  table-layout: auto;
  text-align: center;
  width: 100%;
}
table > * > tr > * {
  line-height: 1.4em;
}
table.fixed {
  table-layout: fixed;
}
table tr > th.emphasis {
  font-weight: 600;
}
table tr > td.emphasis {
  font-weight: 800;
}
table a:not(.btn) {
  text-decoration: underline;
  color: #0056b3;
}

.table-wrap {
  position: relative;
  overflow-x: auto;
}
.table-wrap .sticky-h {
  position: sticky;
  left: 0;
  z-index: 2;
  background-color: #fff;
}
.table-wrap .sticky-t {
  position: sticky;
  top: 0;
  z-index: 2;
  background-color: #fff;
}
.table-wrap tr > * .form-check-label {
  opacity: 1;
}
.table-wrap tr.color-1 > * {
  font-weight: 600;
}
.table-wrap tr.color-1 th,
.table-wrap tr.color-1 td {
  background-color: rgba(236, 239, 243, 0.8) !important;
}
.table-wrap tr.bgG {
  background-color: var(--bs-light);
}
/*2025-05-20 추가*/
.table-wrap tr .bgG {
  background-color: var(--bs-light);
}
/*2025-05-20 추가 끝*/
.table-wrap table.w-max-ct {
  width: max-content;
}
.table-wrap .scroll-tbody {
  display: block;
  overflow-y: auto;
  max-height: 330px;
}
.table-wrap .scroll-tbody td:nth-child(2n) {
  width: 100%;
}

.table-wrap.type1 > table > * > tr > * {
  padding: 1.1em 0.5em;
  font-size: 1.067em;
}
.table-wrap.type1 > table > thead > tr > th {
  padding: 0.6em 0.5em;
  color: #99A4AB;
  border-bottom: 1px solid #A9B2B8;
}
.table-wrap.type1 > table > tbody > tr > td {
  border-bottom: 1px solid #DBDFE2;
}
.table-wrap.type1 > table tr > th.emphasis {
  color: #142456;
}

.table-wrap.type2 > table {
  border-top: 1px solid #142456;
}
.table-wrap.type2 > table > * > tr > * {
  word-break: keep-all;
  padding: 0.6rem;
  font-size: 0.86rem;/*20251017 수정*/
}
.table-wrap.type2 > table > thead > tr > th, .table-wrap.type2 > table > tbody > tr > th {
  font-weight: 600;
  padding: 0.6em 0.8em;
  color: #25262B;
  background-color: #F5F6FA;
  border-bottom: 1px solid #DBDFE2;
}
.table-wrap.type2 > table > tbody > tr > th {
  background-color: #fbfbfc;
  min-width:110px;
}
.table-wrap.type2 > table > tbody > tr > td {
  border-bottom: 1px solid #DBDFE2;
  text-align: left;
  /*2025-07-17 추가*/
  /* text-overflow: ellipsis;
   word-break: break-all;*/
   /*2025-07-17 추가*/
}
.table-wrap.type2 > table > tbody > tr:hover{
	background: #f3f6ff;
}
.table-wrap.type2 > table tr > th.emphasis {
  color: #142456;
}
.table-wrap.type2 > table > tfoot > tr > *,
.table-wrap.type2 > table tr.tfoot > * {
  background-color: #EBEDF3;
  font-weight: 600;
}
.table-wrap.type2.v-line > table > * > tr > * {
  border: 1px solid #DBDFE2;
}
.table-wrap.type2.v-line > table > thead > tr > *:first-child, .table-wrap.type2.v-line > table > tbody > tr > *:first-child {
  border-left: 0;
}
.table-wrap.type2.v-line > table > thead > tr > *:last-child, .table-wrap.type2.v-line > table > tbody > tr > *:last-child {
  border-right: 0;
}
.table-wrap.type2.v-line > table > * > tr > *.bl {
  border-left: 1px solid #DBDFE2 !important;
}
.table-wrap.type2 tr.total th {
  background-color: #e3eefd;
}
.table-wrap.type2 tr.total td {
  background-color: #e3eefd;
}

.table-wrap.type3 > table {
  border-bottom: 1px solid #A9B2B8;
}
.table-wrap.type3 > table > * > tr > * {
  padding: 0.3em 0.5em;
  font-size: 0.9333em;
}
.table-wrap.type3 > table > thead > tr > th {
  padding: 0.6em 0.5em;
  color: #99A4AB;
  border-bottom: 1px solid #A9B2B8;
}
.table-wrap.type3 > table > tbody > tr > td, .table-wrap.type3 > table > tfoot > tr > td {
  border-bottom: 1px solid #DBDFE2;
}
.table-wrap.type3 > table > tfoot > tr > td {
  background-color: #F2F4FA;
  font-size: 1rem;
}
.table-wrap.type3 > table span.status {
  margin: 0.2rem;
}

.table-wrap.type4 > table > * > tr > * {
  padding: 0.75em 0.5em;
  font-size: 1rem;
}
.table-wrap.type4 > table > thead > tr {
  border-radius: 0.5rem;
  overflow: hidden;
}
.table-wrap.type4 > table > thead > tr th {
  padding: 0.6em 0.5em;
  background-color: #F2F4FA;
  color: #142456;
  font-weight: 600;
}
.table-wrap.type4 > table > tbody > tr > td {
  border-bottom: 1px solid #DBDFE2;
}
.table-wrap.type4 > table tr > th.emphasis {
  color: #142456;
}


/*2025-02-06 alert modal 위치 변경 css 추가*/
.modal.modal-alt.show {
	outline: 0;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100vh;
    display: flex !important;
}

.modal.modal-alt .modal-dialog{
	width: 100% !important;
}
/*2025-02-06 alert modal 위치 변경 css 추가 끝*/


.modal.fade.work {
  display: none;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100vh;
}
.modal.fade.work.show {
  display: flex !important;
}
.modal.fade.work .modal-dialog {
  width: auto;
  max-width: calc(100% - 80px);
  min-width: 380px;
  overflow: hidden;
}
.modal.fade.work .modal-dialog .modal-content {
  max-height: calc(100vh - 40px - 40px);
  overflow: hidden;
  justify-content: flex-start;
}
.modal.fade.work .modal-dialog .modal-content .modal-body {
  flex: 1 1 auto;
  overflow-y: auto;
}
.modal.fade.work .modal-dialog .modal-content .modal-body .scroll-area {
  height: auto;
  max-height: 13rem;
  overflow-y: auto;
  padding: 1.2rem;
  border: 1px solid #cfd4e6;
  word-wrap: break-word;/*2025-05-15 css 추가*/
  word-break: break-all;
}
.modal.fade.work .modal-dialog .modal-header {
  border-bottom: none;
  background-color: #142456;
}
.modal.fade.work .modal-dialog .modal-header p.modal-title {
  color: #fff;
  font-weight: 600;
}
.modal.fade.work .modal-dialog .modal-header .btn-close {
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: 50% 50%;
  -webkit-mask-position: 50% 50%;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-image: url("/img/contents/ico-close.svg");
  mask-size: 50% auto;
  background: #fff;
}
.modal-body {
  overflow-y: auto;
  padding: 2rem 3rem 2rem 3rem;
}

.modal.fade.work.no-header .modal-header {
  background-color: transparent;
}
.modal.fade.work.no-header .modal-header p.modal-title {
  color: #25262B;
}
.modal.fade.work.no-header .modal-header .btn-close {
  background-color: #25262B;
}

body.popup #wrap {
  padding: 2rem 2rem 0 2rem;
  display: flex;
  height: 100vh;
  flex-direction: column;
}
body.popup #wrap > * {
  flex: 1 1 auto;
}
body.popup #wrap h3 {
  flex: 0 0 1.6rem;
}
body.popup #wrap .text-box {
  flex: 1 1 auto;
  height: auto;
  max-height: fit-content;
}
body.popup #wrap .pop-footer {
  padding: 0.7rem 0;
}
body.popup #wrap .pop-footer .flex-box {
  align-items: center;
}
body.popup #wrap .pop-footer .flex-box .btn-close {
  width: auto;
  background-position: 0 50%;
  padding-left: 1.5rem;
  line-height: 0.8667rem;
}
.page-tit-box {
  display: flex;
  justify-content: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(158, 162, 180, 0.23);
}
.page-tit-box h2 {
  font-size: 2.5rem !important; /*2025-07-03 수정*/
}

.breadcrumb-item + .breadcrumb-item::before {
  display: none;
}

.breadcrumb-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0rem 0rem 3rem 0rem;/*2025-07-03 수정*/
  background-color: rgb(249, 250, 251);
  padding: 0.8rem 0.8rem 0.8rem 1rem;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.breadcrumb-wrap .breadcrumb {
  width: 100%;
  max-width: 132.8rem;
  display: flex;
  justify-content: start;
  margin-bottom: 0;
}
.breadcrumb-wrap .breadcrumb li {
  font-size: 0.95rem;
  padding-left: 0;
  align-items: center;
  display: inline-flex;
}
.breadcrumb-wrap .breadcrumb li .txt {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  line-height: 1.2;
  color: rgb(107, 114, 128);
}
.breadcrumb-wrap .breadcrumb li:first-child {
  font-size: 0;
}
.breadcrumb-wrap .breadcrumb li:first-child::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: 50% 50%;
  -webkit-mask-position: 50% 50%;
  mask-size: contain;
  -webkit-mask-size: contain;
  margin-right: 0;
  background: url(/img/common/ico-home.svg);
  margin-top: -0.1rem;
  background-size: 16px auto;
}
.breadcrumb-wrap .breadcrumb li:not(:last-child)::after {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  margin-left: var(--krds-spacer-1);
  background: url(/img/common/ico_bread_arr.svg) no-repeat;
  background-size: 16px auto;
  background-position: 50% 50%;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  opacity: 0.45;
}
.breadcrumb-wrap .breadcrumb .breadcrumb-item.active {
  color: #000;
}
.breadcrumb-wrap .breadcrumb .home {
  gap: 0;
}
.breadcrumb-wrap .breadcrumb .home::before {
  content: "";
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  background-size: contain;
  cursor: pointer;
  fill: #eaeaea;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
/*2025-02-10  평가서 진위여부 css 추가*/
.report-img-box{
	padding: 0.5rem;
	border: 2px solid #142456;
}
/*2025-02-10  평가서 진위여부 css 추가 끝*/
.fUpload .fUpload-btn-box {
  width: 100%;
  padding: 10px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  border: 1px solid #eaeaea;
  background: #ffffff;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.fUpload .file-list-box {
  /* align-items: center; */
  justify-content: center;
  flex-direction: column;
  height: 200px;
  gap: 0;
  padding: 20px;
  /* border-radius: 12px; */
  border: 0.1rem dashed #ced4da;
  background-color: #f7f8fb;
  line-height: 1.9;
  overflow-y: scroll;
}
/*2025-03-13 MY공문함 공고등록*/
.fUpload .file-list-box .file-info{
  border:1px solid #ced4da;
  border-radius: 4px;
  background: #fff;
  margin-bottom: 0.6rem;
}
.fUpload .file-list-box .file-info .form-control{
	border: none;
	font-size: 14px;
	font-weight: 600;
	height:32px;
}
/*2025-09-05*/
div.form .fUpload > h3.form-label{
	font-weight: 800;
}
/*2025-09-05 끝*/
/*2025-03-13 MY공문함 공고등록 끝*/
.fUpload .file-list-box li span {
  letter-spacing: 0rem;
}

.input-btn-box {
  position: relative;
}
.input-btn-box .btn-ab {
  position: absolute;
  right: 0;
  top: 0;
}
/*2025-02-11 css 추가*/
.form-check-input + label.bd-none {
    border: none !important;
}
/*2025-02-11 css 추가 끝*/
/*2025-03-12 text style 추가*/
.txt-of-ep{text-overflow: ellipsis;word-break:  break-all !important;}
/*2025-03-12 text style 추가 끝*/
/*2025-06-24 cursor css 추가*/
.pointer{cursor: pointer;}
/*2025-06-25 상세 업체 개요 css*/
.company-info-box{
	display: flex;
	justify-content: space-between;
	align-items: center;
	/*background: rgba(231, 240, 250, .7);*/
	background: #ecf2fa;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
	padding: 1.65rem 2.5rem;
	border-radius: 10px;
}
.company-info-box .d-inline-flex{
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
}
.company-info-box .status{
	background: none;
	font-size: 1.1rem;
}
/*2025-06-25 상세 업체 개요 css 끝*/
/*2025-07-18 css 추가*/
.txt-el-ba{
	text-overflow: ellipsis;
	word-break: break-all;
}
/*2025-07-18 css 추가 끝*/
/*2025-09-26 scrollBtn*/
#topBtn{
	display: none;
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index: 999;
	font-size: 16px;
	border: none;
	outline: none;
	background-color: #142456;
	color: white;
	cursor: pointer;
	padding: 10px 16px;
	border-radius: 5px;
	box-shadow: 0 2px 8px rgba(0,0,0, 0.2);
	transition: background-color 0.3s ease;
}
#topBtn img{
 	width: 14px;
	height: 16px;
	
}
#topBtn:hover{
	background-color: #00488F;
}

.textarea-vertical-only {
  resize: vertical;
}
.chartCircle { 
	width:20px; 
	height:20px; 
	border-radius: 50%;
	margin: auto;
}
.status-color-01{color:#667590;}
.status-color-02{color:#949EB1;}
.status-color-03{color:#B8C9D3;}
.status-color-04{color:#F8D3C7;}
.status-color-05{color:#C7B7CE;}
.status-color-06{color:#FFE082;}
.status-color-07{color:#DDD9C3;}
.status-color-08{color:#C7B7CE;}
.status-color-09{color:#64B7BD;}
.status-color-10{color:#E8ECF0;}


.intro-text {
	 word-break: keep-all;     /* 한글/중문: 단어 단위 줄바꿈 (조사/문장 고려) */
	overflow-wrap: break-word; /* 영문: 단어가 박스를 넘칠 때만 끊음 */
	/*text-align: justify;*/
	line-height: 1.6;          /* 중문은 획이 많아 행간이 좁으면 매우 답답해 보임 */
	letter-spacing: 0;         /* 영문은 자간을 줄여도 되지만, 중문은 자간이 좁으면 읽기 힘듦 */
}
/*# sourceMappingURL=common.css.map */
/*2025 10 21 반영 요청 */