* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Pretendard', sans-serif;
  }

  body {
    font-family: 'Pretendard', sans-serif;
    background-color: #fff;
    color: #333;
  }

/* 헤더 */
header {
    background: #ffffff;
    border-bottom: 1px solid #D2D8DD;
    padding: 8px 20px;
    display: flex;
    justify-content: end;
    align-items: center;
    width: 100%;
}

.header-inner {
  position: relative;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  position: absolute;
  left: 40px; /* 원하는 여백 */
}

.logo img {
  width: 80px;
  height: 38px;
}
.spacer {
    margin-left: auto;
}   

nav { 
    background-color: #fff; 
    border-bottom: 1px solid #e5e5e5; 
    height: 80px; 
    display: flex;          
    /* justify-content: center;   */
    align-items: center;     
    box-sizing: border-box; 
    position: relative;
} 

  .nav-menu { 
    display: flex;
    justify-content: center;
    height: 80px;
    font-weight: 600;
    font-size: 18px;
    position: relative;
    gap: 20px; 
    list-style: none;
  } 

  .nav-menu > li { 
    width: 164px; 
    height: 80px; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    cursor: pointer; 
    border-bottom: 3px solid transparent; 
    font-weight: 600; 
    text-align: center;
    padding: 5px 0;
    color: #000000;
  }

  .nav-menu li a {
    display: block;         /* 블록 요소로 만들어 전체 영역 클릭 가능 */
    padding: 27px 41px;     /* li 대신 a에 패딩 적용 */
    text-decoration: none;
  }

  .nav-menu > li a:hover {
    color: #7C6FF3;
  }

  .nav-menu > li.active {
    color: #7C6FF3;
    border-bottom: 3px solid #7C6FF3;
  }

  .nav-menu > li:hover {
    color: #7C6FF3;
    box-shadow: inset 0 -3px 0 0 #7C6FF3;
  }

.mega-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 4px;
    width: 100%;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    justify-content: center;
    gap: 24px;
    z-index: 200000;
}



nav:hover .mega-dropdown {
    display: flex;
}

.dropdown-column {
    display: flex;
    flex-direction: column;
    width: 164px;
    margin-right: 8px;
    text-align: center;
    /* padding: 24px 24px; */
    font-weight: 600;
    font-size: 16px;
}

.dropdown-column a {
    text-decoration: none;
    color: #4E5968;
    font-size: 16px;
    padding: 24px 0;
}

.dropdown-column a:hover {
    color: #7C6FF3;
    text-decoration: underline solid;
}

.dropdown-left-bg {
    width: 420px;
    background: url("../img/nav-menu-back.jpg") no-repeat center center;
    background-size: cover;
}

.dropdown-right-bg {
    width: 420px;
}

/* 메인 영역 */
.main {
    padding: 20px;
    text-align: center;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 44px;
    flex-wrap: wrap;
    margin-bottom: 74px;
}

.card {
    width: 360px;
    height: 360px;
    background-color: #fff;
    border: 1px solid #D2D8DD;
    border-radius: 8px;
    padding: 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

  .card-content {
    flex-grow: 1;
  }

  .card-link {
    margin-top: auto;
    color: #7C6FF3;
    text-align: right;
  }

  .card:hover {
    border: 2px solid #7C6FF3;
  }

  .card h3 {
    font-size: 27px;
    font-weight: 700;
    margin-bottom: 24px;
  }

  .card p {
    font-size: 18px;
    color: #6B7684;
    line-height: 24px;
    margin-bottom: 24px;
    font-weight: 500;
  }

  .card a {
    font-size: 18px;
    color: #7C6FF3;
    font-weight: 500;
    text-decoration: underline;
    
  }

  /* 푸터 상단 */
  .footer-top {
    background-image: url("/img/footer.jpg");
    background-size: cover;
    background-position: center;
    height: 60px;
    display: flex;
    align-items: center;
    color: white;
    font-size: 14px;
    font-weight: 500;
    padding: 0px 320px;
  }

  /* 푸터 하단 */
  .footer-bottom {
    background-color: #f1f1f1;
    padding: 30px 320px;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

    .footer-bottom div {
        margin-bottom: 10px;
    }

    .footer-row{
        color: #8B95A1;
        font-size: 16px;
        font-weight: 500;
    }

    .footer-row > .footer-label {
        width: 140px;
     
        display: inline-block;
    }

  .footer-bottom .right {
    text-align: right;
  }

  .footer-bottom .right button {
    margin-top: 10px;
    padding: 6px 12px;
    font-size: 13px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
  }

  .footer-bottom .right button:hover {
    background-color: #eee;
  }

/* 관리자용 새창 띄우는 페이지 footer (계정과목설정, 기관관리 등) */
.popup_footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 16px 24px;
    z-index: 1000;
}
/* body */
.container {
    background: #fafafa;
}
/* header,
main {
    -webkit-animation: fadeInAnimation ease 0.3s;
    animation: fadeInAnimation ease 0.3s;
    padding-top: 60px;
} */

/* clearfix */
.clearfix {
    *zoom: 1;
}
.clearfix:before,
.clearfix:after {
    display: block;
    content: "";
    line-height: 0;
}
.clearfix:after {
    clear: both;
}

/* header */
.nav-header {
    box-shadow: 0 3px 6px rgba(201, 214, 223, 0.25);
}

/* GNB메뉴 */
.gnb {
    align-items: center;
    color: #2f3039;
    justify-content: end;
    min-width: 600px;
    transition: all 0.3s;
    user-select: none;
}
.gnb li {
    align-items: center;
    cursor: pointer;
    display: flex;
    height: 100%;
    justify-content: center;
    position: relative;
    width: 165px;
    transition: all 0.3s;
}
.gnb li a {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 80px;
}
.gnb li.active,
.gnb li:hover {
    color: #0c81e4;
}
.gnb li ul {
    bottom: 0;
    left: 0;
    position: absolute;
    transform: translateY(100%);
    width: 100%;
    z-index: 1000;
    box-shadow: 0 3px 6px rgb(201 214 223 / 25%);
}
.gnb li ul li {
    background-color: #fff;
    border: none;
    color: #2f3039;
    display: none;
    font-size: 14px;
    line-height: 2.5rem;
    letter-spacing: -1px;
    position: relative;
    text-align: center;
    transition: all 0.3s;
}
.gnb li ul li:hover {
    color: #0c81e4;
    box-shadow: inset 0 0 0 9999px rgb(12 129 228 / 3%);
}
.gnb li:hover ul li {
    display: block;
    transform-origin: top center;
}
.gnb li:hover ul li {
    animation: rotateX 0.2s ease-in-out;
}
@media (max-width: 1680px) {
    .gnb li {
        width: 120px;
    }
}
@media (max-width: 1100px) {
    .gnb li {
        width: 100px;
    }
    .gnb li a {
        font-size: 14px;
    }
    .gnb li ul li {
        font-size: 12px;
    }
}

/* etc */
.user-select-none {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.invisible {
    display: none;
}
.width-100 {
    width: 100%;
}
.arrow_right {
    background: url("../img/icon/arrow_right.svg") center center no-repeat;
    display: inline-block;
    width: 15px;
    height: 16px;
}

/* 종합효율 BOX */
.total_efficiency {
    border: 2px solid #ff6700;
    color: #52616b;
    font-weight: 600;
    border-radius: 5px;
    width: 200px;
    height: 33px;
    padding: 10px;
    margin-top: 10px;
    line-height: 8px;
    vertical-align: middle;
    display: flex;
    justify-content: space-between;
}
.total_efficiency .percent {
    color: #ff6700;
}
.total_efficiency .percent:after {
    content: "%";
    color: #52616b;
    margin-left: 1px;
    font-size: 13px;
}

/* layout position */
.header-fixed {
    position: fixed;
    width: 100%;
    top: 0;
}
.fl {
    float: left !important;
}
.fr {
    float: right !important;
}

/* col-table */
.col-table * {
    font-weight: 500;
}
.col-table > table {
    table-layout: fixed;
    width: 100%;
}
.col-table > table > thead > tr > th {
    font-size: 14px;
    color: #0c81e4;
    background-color: #f0f5f9;
    border: none;
    border-top: 2px solid #c9d6df;
    user-select: none;
    padding: 10px 0;
}
.col-table > table > tbody > tr > td {
    font-size: 14px;
    color: #1e2022;
    padding: 10px 0;
    text-align: center;
    border: none;
    border-bottom: 1px solid #c9d6df;
}
.col-table > table > tbody > tr:hover > td {
    background-color: rgba(255, 254, 221, 0.5);
}

/* 기본 row-table */
.default-row-table * {
    font-family: "Pretendard", sans-serif;
}
.default-row-table table {
    table-layout: fixed;
    width: 100%; /*border:1px solid #C9D6DF;border-top:2px solid #C9D6DF;border-bottom:1px solid #C9D6DF;*/
    border-collapse: collapse;
}
.default-row-table tbody tr.pallet {
    border-top: 2px solid #c9d6df;
}
.default-row-table tbody th {
    position: relative;
    font-size: 15px;
    line-height: 15px;
    color: #2f3039;
    border: 1px solid #c9d6df;
    background: #f0f5f9;
    padding: 8px 2px;
    height: 30px;
    text-align: center;
    vertical-align: middle;
    font-weight: 500;
    text-indent: -10px;
}
.default-row-table tbody th:before {
    display: inline-block;
    content: "";
    width: 4px;
    height: 4px;
    vertical-align: middle;
    margin-right: 5px;
}
.default-row-table tbody td {
    font-size: 15px;
    line-height: 15px;
    color: #2f3039;
    border: 1px solid #c9d6df;
    background: #f5f5f5;
    padding: 5px 10px !important;
    height: 30px;
    text-align: center !important;
    vertical-align: middle;
}
.default-row-table tbody td:first-child {
   border-left: unset;
}
.default-row-table tbody td:last-child {
    border-right: unset;
 }
.default-row-table tbody td input {
    height: 33px;
    padding: 0 5px;
    font-size: 13px;
    width: 200px;
}
.default-row-table tbody td input + input {
    margin-left: 10px;
}
.default-row-table tbody td select {
    height: 32px;
    padding: 0 5px;
    font-size: 13px;
    width: 200px;
    
}
.default-row-table tbody td.inp-pallet input {
    width: 40px;
}
.default-row-table tbody td .inp {
    margin-right: 25px;
    height: 33px;
}
.default-row-table tbody td .inp b {
    line-height: 30px;
}
.default-row-table tbody td .inp:last-child {
    margin-right: 0;
}
.default-row-table + .row-table {
    margin-top: 30px;
}
th.required:after {
    content: "*";
    color: #d35663;
    display: inline-block;
    position: relative;
    left: 14px;
    vertical-align: sub;
}

/* input-small row-table */
.row-table * {
    font-family: "Pretendard", sans-serif;
}
.row-table table {
    table-layout: fixed;
    width: 100%;
    border: 1px solid #c9d6df;
    border-top: 2px solid #c9d6df;
    border-bottom: 2px solid #c9d6df;
    border-collapse: collapse;
}
.row-table tbody tr.pallet {
    border-top: 2px solid #c9d6df;
}
.row-table tbody th {
    position: relative;
    font-size: 16px;
    line-height: 15px;
    color: #2f3039;
    border: 1px solid #c9d6df;
    background: #f0f5f9;
    padding: 8px 2px;
    height: 50px;
    text-align: center;
    vertical-align: middle;
    font-weight: 400;
    text-indent: -10px;
}
.row-table tbody th:before {
    display: inline-block;
    content: "";
    width: 4px;
    height: 4px;
    vertical-align: middle;
    margin-right: 5px;
}
.row-table tbody td {
    font-size: 16px;
    line-height: 15px;
    color: #2f3039;
    border: 1px solid #c9d6df;
    background: #f5f5f5;
    padding: 5px 8px;
    height: 50px;
    text-align: left;
    vertical-align: middle;
}
.row-table tbody td input {
    height: 37px;
    padding: 0 5px;
    font-size: 14px;
    width: 240px;
}
.row-table tbody td input + input {
    margin-left: 10px;
}
.row-table tbody td select {
    /* height: 20px; */
    padding: 0 5px;
    font-size: 13px;
    width: 140px;
}
.row-table tbody td select:first-child {
    margin-right: 4px;
}
.row-table tbody td select + select {
    margin-right: 4px;
}
.row-table tbody td.inp-pallet input {
    width: 40px;
}
.row-table tbody td .inp {
    margin-right: 25px;
}
.row-table tbody td .inp:last-child {
    margin-right: 0;
}
.row-table + .row-table {
    margin-top: 30px;
}
.row-table-div {
    width: 100%;
    height: 80px;
    border: 2px solid #c9d6df;
    border-collapse: collapse;
    background: #f5f5f5;
    margin-top: 25px;
    font-size: 16px;
}
.type-div {
    width: 100%;
    height: 405px;
    overflow-x: unset;
    overflow-y: scroll;
    border: 2px solid #c9d6df;
    border-collapse: collapse;
    background: #f5f5f5;
    font-size: 16px;
    padding: 20px;
}
.type-div ul {
    margin-bottom: 20px;
}
.type-div ul:last-child {
    margin-bottom: unset;
}
/* input-smallX w-row-table */
.w-row-table * {
    font-family: "Pretendard", sans-serif;
}
.w-row-table table {
    table-layout: fixed;
    width: 100%;
    border: 1px solid #c9d6df;
    border-top: 2px solid #c9d6df;
    border-bottom: 2px solid #c9d6df;
    border-collapse: collapse;
}
.w-row-table tbody tr.pallet {
    border-top: 2px solid #c9d6df;
}
.w-row-table tbody th {
    position: relative;
    font-size: 16px;
    line-height: 15px;
    color: #2f3039;
    border: 1px solid #c9d6df;
    background: #f0f5f9;
    padding: 8px 24px;
    height: 50px;
    text-align: left;
    vertical-align: middle;
    font-weight: 400;
    text-indent: -10px;
}
.w-row-table tbody th:before {
    display: inline-block;
    content: "";
    width: 4px;
    height: 4px;
    vertical-align: middle;
    margin-right: 5px;
}
.w-row-table tbody td {
    font-size: 16px;
    line-height: 15px;
    color: #2f3039;
    border: 1px solid #c9d6df;
    background: #f5f5f5;
    padding: 5px 8px;
    height: 50px;
    text-align: left;
    vertical-align: middle;
}
.w-row-table tbody td input {
    width: 100%;
    height: 38px;
    padding: 0 5px;
    font-size: 14px;
}
.w-row-table tbody td input + input {
    margin-left: 10px;
}
.w-row-table tbody td select {
    /* height: 20px; */
    padding: 0 5px;
    font-size: 13px;
    min-width: 140px !important;
}
.w-row-table tbody td select:first-child {
    margin-right: 4px;
}
.w-row-table tbody td select + select {
    margin-right: 4px;
}
.w-row-table tbody td.inp-pallet input {
    width: 40px;
}
.w-row-table tbody td .inp {
    margin-right: 25px;
}
.w-row-table tbody td .inp:last-child {
    margin-right: 0;
}
.w-row-table + .w-row-table {
    margin-top: 30px;
}
.w-row-table-div {
    width: 100%;
    height: 80px;
    border: 2px solid #c9d6df;
    border-collapse: collapse;
    background: #f5f5f5;
    margin-top: 25px;
    font-size: 16px;
}
/* 회원가입 Table */
.member-table * {
    font-family: "Pretendard", sans-serif;
}
.member-table table {
    table-layout: fixed;
    width: 100%;
    border: 1px solid #c9d6df;
    border-top: 2px solid #c9d6df;
    border-bottom: 2px solid #c9d6df;
    border-collapse: collapse;
}
.member-table tbody tr.pallet {
    border-top: 2px solid #c9d6df;
}
.member-table tbody th {
    position: relative;
    font-size: 16px;
    line-height: 15px;
    color: #2f3039;
    border: 1px solid #c9d6df;
    background: #f0f5f9;
    padding: 8px 24px;
    height: 60px;
    text-align: left;
    vertical-align: middle;
    font-weight: 400;
    text-indent: -10px;
}
.member-table tbody th:before {
    display: inline-block;
    content: "";
    width: 4px;
    height: 4px;
    vertical-align: middle;
    margin-right: 5px;
}
.member-table tbody td {
    font-size: 16px;
    line-height: 15px;
    color: #2f3039;
    border: 1px solid #c9d6df;
    padding: 5px 8px;
    height: 60px;
    text-align: left;
    vertical-align: middle;
}
.member-table tbody td input {
    height: 40px;
    padding: 0 5px;
    font-size: 14px;
    width: 300px;
}
.member-table tbody td input + input {
    margin-left: 10px;
}
.member-table tbody td select {
    /* height: 20px; */
    padding: 0 5px;
    font-size: 13px;
    width: 140px;
}
.member-table tbody td select:first-child {
    margin-right: 4px;
}
.member-table tbody td select + select {
    margin-right: 4px;
}
.member-table tbody td.inp-pallet input {
    width: 40px;
}
.member-table tbody td .inp {
    margin-right: 25px;
}
.member-table tbody td .inp:last-child {
    margin-right: 0;
}
.pw_content {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: -1px;
    color: #6c757d;
    margin-top: 8px;
}
.member-table .fb-tel input {
    flex: 0 1 143px;
    max-width: 143px;
    height: 40px;
}
.member-table .fb-email input {
    flex: 0 1 180px;
    max-width: 180px;
    height: 40px;
}
.member-table .select > .trigger {
    width: 150px;
    height: 40px;
}
.btn-member {
    width: 400px;
    height: 60px;
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    background: #0159a9;
}
.member_content p {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    text-align: center;
}
.member_content p span {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: -1px;
    color: #4e5d6c;
    text-align: center;
}

/* 입력정보관리 페이지상단 선택정보 조회 폼 */
.info-wrap {
    background: #fff;
    border-top: 1px solid #9cb1bf;
    border-bottom: 1px solid #9cb1bf;
    margin-top: 17px;
    align-items: center;
}
.info-wrap + .info-wrap {
    margin-top: 0;
    border-top: 0;
}
.info-wrap .info-title {
    background: #f5f7fa;
    color: #0c81e4;
    font-size: 15px;
    font-weight: 600;
    line-height: 43px;
    min-width: 120px;
    text-align: center;
}
.info-wrap .info-title.black {
    color: #52616b;
}
.info-wrap .info-select {
    padding: 5px 6px;
}
.info-wrap .info-select select {
    height: 33px;
    line-height: 1.5;
    padding: 0 10px;
    min-width: 200px;
    background-image: url("../img/icon/select_down_btn.png");
    background-size: 36px 36px;
    background-position: right center;
}
/* .info-wrap .info-select.select-sm select {min-width: 110px;} */
.info-wrap .info-select input[type="text"] {
    width: 200px;
    padding: 0 10px;
}
.info-wrap .info-select select + button,
.info-wrap .info-select input + button {
    margin-left: 4px;
}
.info-wrap button + button {
    margin-left: 5px !important;
}

/* 페이지상단 셋팅테이블 */
.info-wrap.info-table {
    border: 0;
    table-layout: fixed;
    max-width: 1850px;
}
.info-wrap.info-table select {
    height: 33px;
    line-height: 1.5;
    padding: 0 10px;
    min-width: 200px;
    background-image: url("../img/icon/select_down_btn.png");
    background-size: 36px 36px;
    background-position: right center;
}
.info-wrap.info-table input[type="text"],
.info-wrap.info-table input[type="number"] {
    width: 200px;
    padding: 0 10px;
    font-size: 13px;
}
.info-wrap.info-table .inp-group select {
    min-width: 160px;
}
.info-wrap.info-table .inp-group input[type="text"],
.info-wrap.info-table .inp-group input[type="number"] {
    width: 70px;
}
.info-wrap.info-table table {
    border-collapse: collapse;
    border-top: 1px solid #9cb1bf;
    table-layout: fixed;
}
.info-wrap.info-table table tr {
    border-bottom: 1px solid #9cb1bf;
}
.info-wrap.info-table table th {
    padding: 8px;
    background: #f5f7fa;
    color: #0c81e4;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    word-break: keep-all;
}
.info-wrap.info-table table th {
    border: 1px solid #9cb1bf;
}
.info-wrap.info-table table th:nth-child(1) {
    border-left: 0;
}
.info-wrap.info-table table td {
    padding: 5px 6px;
}
.info-wrap.info-table table td {
    border-left: 1px solid #9cb1bf;
}
.info-wrap .info-subTitle {
    font-weight: 600;
    color: #52616b;
    min-width: 60px;
    font-size: 14px;
}
.info-wrap .info-subTitle:before {
    content: "";
    display: inline-block;
    width: 3px;
    height: 3px;
    background-color: #52616b;
    vertical-align: middle;
    margin-right: 3px;
}
@media (max-width: 1750px) {
    .info-wrap.info-table select {
        min-width: 100%;
    }
    .info-wrap.info-table input[type="text"],
    .info-wrap.info-table input[type="number"] {
        width: 100%;
        padding: 0 10px;
        font-size: 13px;
    }
    .info-wrap.info-table input[type="text"].addon_btn,
    .info-wrap.info-table input[type="number"].addon_btn {
        width: 68%;
        padding: 0 10px;
        font-size: 13px;
    }
    .info-wrap.info-table .inp-group select {
        min-width: 68%;
    }
    .info-wrap.info-table .inp-group input[type="text"],
    .info-wrap.info-table .inp-group input[type="number"] {
        width: 30%;
    }
}

/* 테이블 구역 */
.table-header-wrap {
    align-items: center;
}
.table-content-wrap {
    max-width: 1855px;
    align-items: center;
}
table.main-datatable {
    display: none;
}

/* tab 컨텐츠 레이아웃 */
.tab-content-wrap > .tab-group {
    border-bottom: 4px solid #e1e7eb;
    text-align: center;
    color: #5a607f;
    user-select: none;
}
.tab-content-wrap > .tab-group > ul {
    min-height: 25px;
    border-bottom: 0px solid #e1e7eb;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}
.tab-content-wrap > .tab-group > ul > li {
    float: left;
    font-size: 14px;
    position: relative;
    display: block;
    padding: 2px 16px;
    color: #292929;
    background: #fff;
    border-radius: 7px 7px 0 0;
    border: 1px solid #dee0eb;
    border-bottom: 0;
    /* width: 157px; */
    height: 46px;
    cursor: pointer;
    transition: all 0.1s;
}
.tab-content-wrap > .tab-group > ul > li:hover {
    background: #a5a5a5;
}
/* .tab-content-wrap > .tab-group > ul > li> a:after {content: '';display: inline-block;background: url("../img/icon/tab-ico-close.png") center center no-repeat;width: 10px;height: 10px;margin-left: 20px;padding: 5px;} */
.tab-content-wrap > .tab-group > ul > li > a {
    padding-right: 10px;
}
.tab-content-wrap > .tab-group > ul > li:nth-child(1) > a {
    padding: 0;
}
.tab-content-wrap > .tab-group > ul.tabs.no-close > li > a {
    padding: 0;
}
.tab-content-wrap > .tab-group > ul > li > i.tab-close {
    content: "";
    display: inline-block;
    background: url("../img/icon/tab-ico-close.png") center center no-repeat;
    width: 16px;
    height: 16px;
    margin: 10px 0px 0 4px;
    cursor: pointer;
    top: 3px;
    left: 4px;
    position: inherit;
}
.tab-content-wrap > .tab-group > ul > li.active {
    color: #fff;
    font-weight: 500;
    background: #0159a9;
}
.tab-content-wrap > .tab-group > ul > li + li {
    margin-left: 1px;
}
.tab-content-wrap > .tab-content {
    background: #fff;
    padding: 0;
}
.tab-content-wrap > .tab-content > .btn-group {
    margin-right: 5px;
}

/* 모달 레이아웃 */
@keyframes fadeIn {
    0% {
        background: transparent;
    }
    100% {
        background: rgba(47, 47, 47, 0.5);
    }
}
.modal {
	position: fixed;
	inset: 0;
	z-index: 999;
	width: 100%;
	height: 100%;
	display: none;
	background-color: rgba(47, 47, 47, 0.5);
	animation: fadeIn 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.modal.show {
	display: block;
}
.modal > .modal_wrap {
	position: absolute;
	top: 50%;
	left: 50%;
	width: auto;
	border-radius: 10px;
	height: auto;
	background-color: rgb(255, 255, 255);
	box-shadow: 0 2px 3px 0 rgba(156, 177, 191, 0.15);
	transform: translateX(-50%) translateY(-50%);
}
.modal > .modal_wrap > .modal_header {
    background-color: #584CC6;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 80px;
    margin-bottom: 24px;
}
.modal > .modal_wrap > .modal_header > .modal_title {
	text-align: start;
	padding: 30px 20px 15px;
	color: white;
	font-family: "Pretendard";
	font-size: 27px;
	font-weight: 700;
	letter-spacing: -1px;
	user-select: none;
    text-align: center;
}
.modal > .modal_wrap > .modal_header > .modal_close {
	padding: 12px 20px 12px;
	color: #7e84a3;
	font-size: 30px;
	font-weight: 600;
	cursor: pointer;
}
.modal > .modal_wrap > .modal_header > .modal_btn_group {
}
.modal > .modal_wrap > .modal_content {
	color: #182941;
	padding: 0 25px 20px 25px;
}
.modal > .modal_wrap > .modal_content > .desc {
	text-align: right;
}
.modal > .modal_wrap > .modal_content .modal-input-group {
	display: flex;
	align-items: center;
	flex-direction: row;
	justify-content: flex-start;
}
.modal > .modal_wrap > .modal_content .modal-input-group + .modal-input-group {
	margin-top: 15px;
}
.modal > .modal_wrap > .modal_content .modal-input-group > label {
	width: 120px;
	color: #4688f7;
	user-select: none;
}
.modal > .modal_wrap > .modal_content .modal-input-group > input {
	width: 200px;
}
.modal > .modal_wrap > .modal_content .modal-input-group > .file-input-group {
	position: relative;
}
.modal > .modal_wrap > .modal_content .modal-input-group > .file-input-group > .upload-name {
	background-color: #fafafa;
	width: 367px;
}
.modal > .modal_wrap > .modal_content .modal-input-group > .file-input-group > input[type="file"] {
	position: absolute;
	width: 0;
	height: 0;
	padding: 0;
	overflow: hidden;
	border: 0;
}
.modal > .modal_wrap > .modal_content .modal-input-group > .file-input-group > label.file-label {
	position: absolute;
	right: 1px;
	top: 1px;
	display: inline-block;
	content: "";
	background: url("../img/icon/file_btn.png") center center no-repeat;
	width: 31px;
	height: 31px;
}
.modal > .modal_wrap > .modal_content .modal-input-group > .file-input-group + button {
	margin-left: 5px;
}
.modal > .modal_wrap > .modal_content > .table-wrap {
	display: flex;
	justify-content: space-between;
}
.modal > .modal_wrap > .modal_content > .table-wrap > .table-content-wrap {
	border: 1px solid #c9d6df;
	padding: 10px 0 0 0;
}
.modal > .modal_wrap > .modal_content > .table-wrap > .table-content-wrap > .title {
	color: #52616b;
	font-size: 16px;
	padding-bottom: 10px;
}
.modal > .modal_wrap > .modal_content > .table-wrap > .table-content-wrap.col {
	border: 1px solid #c9d6df;
	padding: 20px;
}
.modal > .modal_wrap > .modal_content > .table-wrap > .table-content-wrap.col > .title {
	color: #0c81e4;
	font-size: 18px;
	font-weight: 600;
	padding-bottom: 10px;
}
.modal > .modal_wrap > .madal_footer {
	margin-top: 10px;
	text-align: center;
}
.modal > .modal_wrap > .modal_footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	user-select: none;
}
.modal > .modal_wrap > .modal_footer > .btn-group {
	display: flex;
	justify-content: center;
}
.modal > .modal_wrap > .modal_footer > .btn-group > button {
	margin: 10px 0;
}
.cancel {
	background: url("../img/icon/icon-close-gray.png") center center no-repeat;
	display: inline-block;
	width: 32px;
	height: 36px;
	min-width: 35px;
	border: none;
}
.modalBtn {
	width: 160px;
	height: 40px;
}
a.delLineA {
    text-decoration: line-through;
    color: #c0c0c0;
    cursor: text;
}

/* 사이드 modal */
.side_modal {
	/* position: fixed;
	inset: 0;
	z-index: 999;
	width: 100%;
	height: 100%;
	display: none;
	background-color: rgba(47, 47, 47, 0.5);
	animation: fadeIn 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; */
}
.side_modal_overlay {
    position: fixed;
    inset: 0;
    /* z-index: 999; */
    background-color: rgba(47, 47, 47, 0.5);
    animation: fadeIn 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    left: 180px;
}
.side_modal.show {
	display: block;
}
.side_modal > .side_modal_wrap {
    position: fixed;
    float: left;
    top: 60px;
    z-index: 999;
    left: -756px;
    width: 756px;
    height: 100%;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 2px 3px 0 rgba(156, 177, 191, 0.15);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    z-index: 0;
}
.side_modal > .side_modal_wrap > .side_modal_header > .side_modal_title {
	text-align: start;
	padding: 40px 40px 14px;
	color: #292929;
	font-size: 22px;
	font-weight: 600;
	letter-spacing: -1px;
	user-select: none;
}
.side_modal > .side_modal_wrap > .side_modal_header > .side_modal_close {
	padding: 30px;
	font-size: 30px;
	font-weight: 600;
	cursor: pointer;
}
.side_modal > .side_modal_wrap > .side_modal_header > .side_modal_close2 {
	padding: 30px;
	font-size: 30px;
	font-weight: 600;
	cursor: pointer;
}
.side_modal > .side_modal_wrap > .side_modal_header > .side_Dispatch_modal_close {
	padding: 30px;
	font-size: 30px;
	font-weight: 600;
	cursor: pointer;
}

.side_modal > .side_modal_wrap > .side_modal_header > .side_modal_btn_group {
}
.side_modal > .side_modal_wrap > .side_modal_content {
	color: #182941;
	/* padding: 0 40px 20px 40px; */
    padding: 0px 18px 20px 40px;

}
.side_modal > .side_modal_wrap > .side_modal_content > .desc {
	text-align: right;
}
.side_modal > .side_modal_wrap > .side_modal_content .side_modal-input-group {
	display: flex;
	align-items: center;
	flex-direction: row;
	justify-content: flex-start;
}
.side_modal > .side_modal_wrap > .side_modal_content .side_modal-input-group + .side_modal-input-group {
	margin-top: 15px;
}
.side_modal > .side_modal_wrap > .side_modal_content .side_modal-input-group > label {
	width: 120px;
	color: #4688f7;
	user-select: none;
}
.side_modal > .side_modal_wrap > .side_modal_content .side_modal-input-group > input {
	width: 200px;
}
.side_modal > .side_modal_wrap > .side_modal_content .side_modal-input-group > .file-input-group {
	position: relative;
}
.side_modal > .side_modal_wrap > .side_modal_content .side_modal-input-group > .file-input-group > .upload-name {
	background-color: #fafafa;
	width: 367px;
}
.side_modal > .side_modal_wrap > .side_modal_content .side_modal-input-group > .file-input-group > input[type="file"] {
	position: absolute;
	width: 0;
	height: 0;
	padding: 0;
	overflow: hidden;
	border: 0;
}
.side_modal > .side_modal_wrap > .side_modal_content .side_modal-input-group > .file-input-group > label.file-label {
	position: absolute;
	right: 1px;
	top: 1px;
	display: inline-block;
	content: "";
	background: url("../img/icon/file_btn.png") center center no-repeat;
	width: 31px;
	height: 31px;
}
.side_modal > .side_modal_wrap > .side_modal_content .side_modal-input-group > .file-input-group + button {
	margin-left: 5px;
}
.side_modal > .side_modal_wrap > .side_modal_content > .table-wrap {
	display: flex;
	justify-content: space-between;
}
.side_modal > .side_modal_wrap > .side_modal_content > .table-wrap > .table-content-wrap {
	border: 1px solid #c9d6df;
	padding: 10px 0 0 0;
}
.side_modal > .side_modal_wrap > .side_modal_content > .table-wrap > .table-content-wrap > .title {
	color: #52616b;
	font-size: 16px;
	padding-bottom: 10px;
}
.side_modal > .side_modal_wrap > .side_modal_content > .table-wrap > .table-content-wrap.col {
	border: 1px solid #c9d6df;
	padding: 20px;
}
.side_modal > .side_modal_wrap > .side_modal_content > .table-wrap > .table-content-wrap.col > .title {
	color: #0c81e4;
	font-size: 18px;
	font-weight: 600;
	padding-bottom: 10px;
}
.side_modal > .side_modal_wrap > .madal_footer {
	margin-top: 10px;
	text-align: center;
}
.side_modal > .side_modal_wrap > .side_modal_footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	user-select: none;
}
.side_modal > .side_modal_wrap > .side_modal_footer > .btn-group {
	display: flex;
	justify-content: center;
}
.side_modal > .side_modal_wrap > .side_modal_footer > .btn-group > button {
	margin: 10px 0;
}
.cancel {
	background: url("../img/icon/icon-close-gray.png") center center no-repeat;
	display: inline-block;
	width: 32px;
	height: 36px;
	min-width: 35px;
	border: none;
}
.side_modalBtn {
	width: 160px;
	height: 40px;
}
a.delLineA {
    text-decoration: line-through;
    color: #c0c0c0;
    cursor: text;
}

/* D3 MAP */
.map-wrap {
    -webkit-animation: scale-up-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1)
        both;
    animation: scale-up-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

/* 로딩 */
.loading-container {
    position: fixed;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.2);
    inset: 0;
    overflow-x: hidden;
    transition: background-color 0.1s;
    text-align: center;
    user-select: none;
    display: none;
}
.loading-container .loading-card {
    position: relative;
    top: calc((50% - 100px));
    margin: auto;
    width: 400px;
    min-height: 200px;
    background: #fff;
    padding: 20px;
    border: 1px solid #9cb1bf;
}

.loading-container .loading-card .spinner {
    content: "";
    display: block;
    animation: rotate 2s linear infinite;
    transform: translateZ(0);
    background: url("../img/icon/refresh-icon.svg") center center no-repeat;
    background-size: 35px;
    width: 100px;
    height: 100px;
    margin: auto;
}

.loading-container .loading-card p {
    color: #0c81e4;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -1px;
    text-shadow: 0px 1px rgba(255, 255, 255, 0.4);
}
.loading-container .loading-card p .desc {
    color: #5c6373;
    font-size: 14px;
}

.loading-container .loading-card .line-wrap {
    display: block;
    width: 100px;
    height: 100px;
    padding: 30px 0;
    margin: auto;
}
.loading-container .loading-card .line-group {
}
.loading-container .loading-card .line {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 30px;
    background-color: #0c81e4;
    margin: 0 2px;
}
.loading-container .loading-card .line:nth-last-child(1) {
    animation: loading 0.6s 0.1s linear infinite;
}
.loading-container .loading-card .line:nth-last-child(2) {
    animation: loading 0.6s 0.2s linear infinite;
}
.loading-container .loading-card .line:nth-last-child(3) {
    animation: loading 0.6s 0.3s linear infinite;
}
.loading-container .loading-card .line:nth-last-child(4) {
    animation: loading 0.6s 0.4s linear infinite;
}

/* 보고서 */
.report-area {
    font-family: "Pretendard", "Pretendard";
    line-height: 2;
    letter-spacing: normal;
    width: 694px;
    padding: 0px;
    margin: auto;
}
.report-area .report-header {
    font-size: 15pt;
    font-weight: 500;
}
.report-area .report-chart-area {
    height: 250px;
    border: 1px solid #1e2022;
    font-size: 12pt;
}
.report-area .report-table-area {
    font-family: "Pretendard";
    margin: 10pt 0;
    line-height: 1.4;
}
.report-area .report-desc-area {
    padding: 1.5rem;
    font-family: "Pretendard";
    font-weight: 600;
    font-size: 12pt;
    letter-spacing: -1.5px;
    border: 1px solid #d2dde4;
    background: #f4f4f4;
}
.report-area .report-desc-area span.underline {
    text-decoration: underline;
    text-underline-position: under;
    text-decoration-thickness: 2px;
    color: #0f93ef;
}

/* 보고서 테이블 스타일1 */
.report-col-table1 * {
    font-family: "Pretendard";
    font-weight: 400;
}
.report-col-table1 > table {
    table-layout: fixed;
    width: 100%;
    border-collapse: separate;
    border-right: 1px solid #1e2022;
    border-bottom: 1px solid #1e2022;
    page-break-inside: auto;
}
.report-col-table1 > table tr {
    page-break-inside: avoid;
    page-break-after: auto;
}
.report-col-table1 > table > thead {
    border-bottom: double #1e2022 4px;
    display: table-header-group;
}
.report-col-table1 > table > thead > tr > th {
    font-size: 12pt;
    font-weight: 600;
    color: #1e2022;
    background-color: #e2f4fd;
    border-top: 1px solid #1e2022;
    border-left: 1px solid #1e2022;
}
.report-col-table1 > table > tbody > tr > td {
    font-size: 13pt;
    color: #1e2022;
    text-align: center;
    border-top: 1px solid #1e2022;
    border-left: 1px solid #1e2022;
}
/* .report-col-table1 > table > thead > tr > th + th,
.report-col-table1 > table > tbody > tr > td + td {border-left: 0;}
.report-col-table1 > table > thead > tr + tr > th,
.report-col-table1 > table > tbody > tr + tr > td {border-top: 0;} */
/* .report-col-table1 > table > tbody > tr > td:nth-child(1) {letter-spacing: 10px; padding-left: 10px;} */

/* 보고서 테이블 스타일2 */
.report-col-table2 * {
    font-family: "함초롱돋움", "MalgunGothic";
    font-weight: 400;
}
.report-col-table2 > table {
    table-layout: fixed;
    width: 100%;
    border-collapse: separate;
    border-right: 1px solid #1e2022;
    border-bottom: 1px solid #1e2022;
    page-break-inside: avoid;
    page-break-after: auto;
}
/* .report-col-table2 > table tr {page-break-inside:avoid;} */
.report-col-table2 > table > thead {
    display: table-header-group;
}
.report-col-table2 > table > thead > tr > th {
    font-size: 10pt;
    color: #1e2022;
    background-color: #dbdbdb;
    border-top: 1px solid #1e2022;
    border-left: 1px solid #1e2022;
}
.report-col-table2 > table > tbody > tr > td {
    font-size: 10pt;
    color: #1e2022;
    text-align: center;
    border-top: 1px solid #1e2022;
    border-left: 1px solid #1e2022;
    padding: 5px 0;
}

/* css 수정(정남진) */
.report-header {
    margin-bottom: 15px;
    height: 55px;
    border-bottom: 3px solid #9cb1bf;
}
.report-header div:nth-child(1) {
    padding-top: 2px;
    width: 80%;
    float: left;
    font-size: 18pt;
    font-weight: 700;
}
.report-header div:nth-child(2) {
    padding-top: 17px;
    width: 20%;
    float: left;
}
.report-header div:nth-child(2) > img {
    max-width: 100%;
}

.report-col-table1 {
    border-top: 2px solid #0c81e4;
    text-align: center;
    vertical-align: middle;
    border-collapse: collapse;
    border-spacing: 0;
}

.report_table_1 > thead > tr > th {
    padding-bottom: 5px;
    line-height: 1.4;
    color: #000 !important;
    border: 1px solid #9cb1bf !important;
}
.report_table_1 > thead > tr:nth-child(1) > th {
    background: #ecedf4 !important;
}
.report_table_1 > thead > tr:nth-child(2) > th {
    background: #d1eaff !important;
}
.report_table_1 > thead > tr:nth-child(3) > th {
    background: #f0f5f9 !important;
}

.report-title {
    margin-top: 30px;
    font-size: 13pt;
    color: #0f93ef;
    font-weight: 700;
}
.underline {
    /* text-decoration: none !important; */
    text-decoration: underline;
    cursor: pointer;
}
.airilft-sell > tr > td {
    padding-bottom: 5px !important;
    line-height: 1.4 !important;
    border: 1px solid #9cb1bf !important;
}

.report_table_2 > thead > tr > th {
    padding-bottom: 5px;
    line-height: 1.4;
    color: #000 !important;
    border: 1px solid #9cb1bf !important;
}
.report_table_2 > thead > tr:nth-child(1) > th {
    background: #ecedf4 !important;
}
.report_table_2 > tbody > tr > td {
    padding-bottom: 5px !important;
    line-height: 1.4 !important;
    border: 1px solid #9cb1bf !important;
}

.report_table_3 > thead > tr > th {
    padding-bottom: 5px;
    line-height: 1.4;
    color: #000 !important;
    border: 1px solid #9cb1bf !important;
}
.report_table_3 > thead > tr:nth-child(1) > th {
    background: #ecedf4 !important;
}
.report_table_3 > thead > tr:nth-child(2) > th {
    background: #d1eaff !important;
}
.report_table_3 > tbody > tr > td {
    padding-bottom: 5px !important;
    line-height: 1.4 !important;
    border: 1px solid #9cb1bf !important;
}

.report_table_4 > thead > tr > th {
    padding-bottom: 5px;
    line-height: 1.4;
    color: #000 !important;
    border: 1px solid #9cb1bf !important;
}
.report_table_4 > tbody > tr > td {
    padding-bottom: 5px !important;
    line-height: 1.4 !important;
    border: 1px solid #9cb1bf !important;
}

.report_table_5 > thead > tr > th {
    padding-bottom: 5px;
    line-height: 1.4;
    color: #000 !important;
    border: 1px solid #9cb1bf !important;
}
.report_table_5 > tbody > tr > td {
    padding-bottom: 5px !important;
    line-height: 1.4 !important;
    border: 1px solid #9cb1bf !important;
}

.report_table_6 > thead > tr > th {
    padding-bottom: 5px;
    line-height: 1.4;
    color: #000 !important;
    border: 1px solid #9cb1bf !important;
}
.report_table_6 > thead > tr:nth-child(1) > th {
    background: #ecedf4 !important;
}
.report_table_6 > thead > tr:nth-child(2) > th {
    background: #d1eaff !important;
}
.report_table_6 > tbody > tr > td {
    padding-bottom: 5px !important;
    line-height: 1.4 !important;
    border: 1px solid #9cb1bf !important;
}

.report_table_7 > thead > tr > th {
    padding-bottom: 5px;
    line-height: 1.4;
    color: #000 !important;
    border: 1px solid #9cb1bf !important;
}
.report_table_7 > thead > tr:nth-child(1) > th {
    background: #ecedf4 !important;
}
.report_table_7 > tbody > tr > td {
    padding-bottom: 5px !important;
    line-height: 1.4 !important;
    border: 1px solid #9cb1bf !important;
}

.report_table_8 > thead > tr > th {
    padding-bottom: 5px;
    line-height: 1.4;
    color: #000 !important;
    border: 1px solid #9cb1bf !important;
}
.report_table_8 > thead > tr:nth-child(1) > th:nth-child(1) {
    background: #ecedf4 !important;
}
.report_table_8 > tbody > tr > td {
    padding-bottom: 5px !important;
    line-height: 1.4 !important;
    border: 1px solid #9cb1bf !important;
}

.report_table_9 > thead > tr > th {
    padding-bottom: 5px;
    line-height: 1.4;
    color: #000 !important;
    border: 1px solid #9cb1bf !important;
}
.report_table_9 > thead > tr:nth-child(1) > th:nth-child(1) {
    background: #ecedf4 !important;
}
.report_table_9 > tbody > tr > td {
    padding-bottom: 5px !important;
    line-height: 1.4 !important;
    border: 1px solid #9cb1bf !important;
}

.report_table_10 > thead > tr > th {
    padding-bottom: 5px;
    line-height: 1.4;
    color: #000 !important;
    border: 1px solid #9cb1bf !important;
}
.report_table_10 > tbody > tr > td {
    padding-bottom: 5px !important;
    line-height: 1.4 !important;
    border: 1px solid #9cb1bf !important;
}

.report_table_12 > thead > tr > th {
    padding-bottom: 5px;
    line-height: 1.4;
    color: #000 !important;
    border: 1px solid #9cb1bf !important;
}
.report_table_12 > thead > tr:nth-child(1) > th {
    background: #ecedf4 !important;
}
.report_table_12 > thead > tr:nth-child(2) > th {
    background: #d1eaff !important;
}
.report_table_12 > tbody > tr > td {
    padding-bottom: 5px !important;
    line-height: 1.4 !important;
    border: 1px solid #9cb1bf !important;
}

.report_table_13 > thead > tr > th {
    padding-bottom: 5px;
    line-height: 1.4;
    color: #000 !important;
    border: 1px solid #9cb1bf !important;
}
.report_table_13 > thead > tr:nth-child(1) > th {
    background: #ecedf4 !important;
}
.report_table_13 > tbody > tr > td {
    padding-bottom: 5px !important;
    line-height: 1.4 !important;
    border: 1px solid #9cb1bf !important;
}

.report_table_13_2 > thead > tr > th {
    padding-bottom: 5px;
    line-height: 1.4;
    color: #000 !important;
    border: 1px solid #9cb1bf !important;
}
.report_table_13_2 > thead > tr:nth-child(1) > th {
    background: #ecedf4 !important;
}
.report_table_13_2 > tbody > tr > td {
    padding-bottom: 5px !important;
    line-height: 1.4 !important;
    border: 1px solid #9cb1bf !important;
}

.report_table_15 > thead > tr > th {
    padding-bottom: 5px;
    line-height: 1.4;
    color: #000 !important;
    border: 1px solid #9cb1bf !important;
}
.report_table_15 > thead > tr:nth-child(1) > th {
    background: #ecedf4 !important;
}
.report_table_15 > tbody > tr > td {
    padding-bottom: 5px !important;
    line-height: 1.4 !important;
    border: 1px solid #9cb1bf !important;
}

.report_table_17 > thead > tr > th {
    padding-bottom: 5px;
    line-height: 1.4;
    color: #000 !important;
    border: 1px solid #9cb1bf !important;
}
.report_table_17 > thead > tr:nth-child(1) > th {
    background: #ecedf4 !important;
}
.report_table_17 > tbody > tr > td {
    padding-bottom: 5px !important;
    line-height: 1.4 !important;
    border: 1px solid #9cb1bf !important;
}

.report_table_18 > thead > tr > th {
    padding-bottom: 5px;
    line-height: 1.4;
    color: #000 !important;
    border: 1px solid #9cb1bf !important;
}
.report_table_18 > thead > tr:nth-child(1) > th {
    background: #ecedf4 !important;
}
.report_table_18 > tbody > tr > td {
    padding-bottom: 5px !important;
    line-height: 1.4 !important;
    border: 1px solid #9cb1bf !important;
}

.report_table2_2 > thead > tr > th {
    padding-bottom: 5px;
    line-height: 1.4;
    color: #000 !important;
    border: 1px solid #9cb1bf !important;
}
.report_table2_2 > thead > tr:nth-child(1) > th {
    background: #ecedf4 !important;
}
.report_table2_2 > thead > tr:nth-child(2) > th {
    background: #d1eaff !important;
}
.report_table2_2 > tbody > tr > td {
    padding-bottom: 5px !important;
    line-height: 1.4 !important;
    border: 1px solid #9cb1bf !important;
}

.report2_table_6 > thead > tr > th {
    padding-bottom: 5px;
    line-height: 1.4;
    color: #000 !important;
    border: 1px solid #9cb1bf !important;
}
.report2_table_6 > thead > tr:nth-child(1) > th {
    background: #ecedf4 !important;
}
.report2_table_6 > thead > tr:nth-child(2) > th {
    background: #d1eaff !important;
}
.report2_table_6 > tbody > tr > td {
    padding-bottom: 5px !important;
    line-height: 1.4 !important;
    border: 1px solid #9cb1bf !important;
}

.report2_table_7 > thead > tr > th {
    padding-bottom: 5px;
    line-height: 1.4;
    color: #000 !important;
    border: 1px solid #9cb1bf !important;
}
.report2_table_7 > thead > tr:nth-child(1) > th {
    background: #ecedf4 !important;
}
.report2_table_7 > thead > tr:nth-child(2) > th {
    background: #d1eaff !important;
}
.report2_table_7 > tbody > tr > td {
    padding-bottom: 5px !important;
    line-height: 1.4 !important;
    border: 1px solid #9cb1bf !important;
}

.report2_table_1 > thead > tr > th {
    padding-bottom: 5px;
    line-height: 1.4;
    color: #000 !important;
    border: 1px solid #9cb1bf !important;
}
.report2_table_1 > thead > tr:nth-child(1) > th {
    background: #ecedf4 !important;
}
.report2_table_1 > thead > tr:nth-child(2) > th {
    background: #d1eaff !important;
}
.report2_table_1 > tbody > tr > td {
    padding-bottom: 5px !important;
    line-height: 1.4 !important;
    border: 1px solid #9cb1bf !important;
}

.report2_table_10 > thead > tr > th {
    padding-bottom: 5px;
    line-height: 1.4;
    color: #000 !important;
    border: 1px solid #9cb1bf !important;
}
.report2_table_10 > thead > tr:nth-child(1) > th {
    background: #ecedf4 !important;
}
.report2_table_10 > thead > tr:nth-child(2) > th {
    background: #d1eaff !important;
}
.report2_table_10 > tbody > tr > td {
    padding-bottom: 5px !important;
    line-height: 1.4 !important;
    border: 1px solid #9cb1bf !important;
}

.report2_table_9 > thead > tr > th {
    padding-bottom: 5px;
    line-height: 1.4;
    color: #000 !important;
    border: 1px solid #9cb1bf !important;
}
.report2_table_9 > thead > tr:nth-child(1) > th {
    background: #ecedf4 !important;
}
.report2_table_9 > tbody > tr > td {
    padding-bottom: 5px !important;
    line-height: 1.4 !important;
    border: 1px solid #9cb1bf !important;
}

.report2_table_12 > thead > tr > th {
    padding-bottom: 5px;
    line-height: 1.4;
    color: #000 !important;
    border: 1px solid #9cb1bf !important;
}
.report2_table_12 > thead > tr:nth-child(1) > th {
    background: #ecedf4 !important;
}
.report2_table_12 > tbody > tr > td {
    padding-bottom: 5px !important;
    line-height: 1.4 !important;
    border: 1px solid #9cb1bf !important;
}

.report2_table_16 > thead > tr > th {
    padding-bottom: 5px;
    line-height: 1.4;
    color: #000 !important;
    border: 1px solid #9cb1bf !important;
}
.report2_table_16 > thead > tr:nth-child(1) > th {
    background: #ecedf4 !important;
}
.report2_table_16 > thead > tr:nth-child(2) > th {
    background: #d1eaff !important;
}
.report2_table_16 > tbody > tr > td {
    padding-bottom: 5px !important;
    line-height: 1.4 !important;
    border: 1px solid #9cb1bf !important;
}

.report2_table_17 > thead > tr > th {
    padding-bottom: 5px;
    line-height: 1.4;
    color: #000 !important;
    border: 1px solid #9cb1bf !important;
}
.report2_table_17 > thead > tr:nth-child(1) > th {
    background: #ecedf4 !important;
}
.report2_table_17 > thead > tr:nth-child(2) > th {
    background: #d1eaff !important;
}
.report2_table_17 > tbody > tr > td {
    padding-bottom: 5px !important;
    line-height: 1.4 !important;
    border: 1px solid #9cb1bf !important;
}

.report2_table_1_2 > thead > tr > th {
    padding-bottom: 5px;
    line-height: 1.4;
    color: #000 !important;
    border: 1px solid #9cb1bf !important;
}
.report2_table_1_2 > thead > tr:nth-child(1) > th {
    background: #ecedf4 !important;
}
.report2_table_1_2 > thead > tr:nth-child(2) > th {
    background: #d1eaff !important;
}
.report2_table_1_2 > tbody > tr > td {
    padding-bottom: 5px !important;
    line-height: 1.4 !important;
    border: 1px solid #9cb1bf !important;
}

.route_table > thead > tr > th {
    padding-bottom: 5px;
    line-height: 1.4;
    color: #000 !important;
    border: 1px solid #9cb1bf !important;
}
.route_table > tbody > tr > td {
    padding-bottom: 5px !important;
    line-height: 1.4 !important;
    border: 1px solid #9cb1bf !important;
}

.title_report {
    margin-bottom: 15px;
    padding: 0em 0em 0em 0.5em !important;
    font-size: 15pt !important;
    font-weight: 700 !important;
    background: #ecedf4 !important;
    border: none !important;
}
/* .report-area .report-desc-area {padding:1.5rem; font-weight: 600; border:1px solid #d2dde4; background:#f4f4f4;}
.report-area .report-desc-area span.underline {color:#0f93ef;}  -> 기존 클래스에 추가 및 수정*/
/* .report_test_table > thead > tr:nth-child(1) > th {background: #ecedf4!important;} */

/* .pdf_cut {page-break-inside:auto;} */

/* side-menu */
#wrap {
    margin-left: 90px;
    padding-top: 57px;
}
.nav-container {
    position: fixed;
    z-index: 2;
    height: 100vh;
}
.nav-container > ul {
    width: 90px;
    height: 115%;
    background-color: #f2f2f2;
    position: relative;
    padding: 0 !important;
    overflow: visible;
}
.nav-container li {
    padding: 14px 6px 14px 6px;
    width: 100%;
    list-style-type: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}
.nav-img1 {
    margin-bottom: 4px;
}
.nav-img2 {
    margin-bottom: 4px;
}
.nav-img3 {
    margin-bottom: 4px;
}
.nav-img4 {
    margin-bottom: 4px;
}
.nav-container li > span {
    padding-top: 4px;
    cursor: pointer;
}
.nav_active {
    background-color: #0159a9;
}
.nav_active_span {
    color: #fff;
}
.nav-container > ul > li:hover {
    background-color: #0159a9;
}
.nav-container > ul > li:hover > span {
    color: #fff;
}
.nav-container > ul > li:hover .nav-img1 {
    content: url("../img/side_menu_a1.svg");
}
.nav-container > ul > li:hover .nav-img2 {
    content: url("../img/side_menu_a2.svg");
}
.nav-container > ul > li:hover .nav-img3 {
    content: url("../img/side_menu_a3.svg");
}
.nav-container > ul > li:hover .nav-img4 {
    content: url("../img/side_menu_a4.svg");
}

/* table */
.table-wrap {
    display: flex;
    justify-content: space-between;
}
.table-wrap > .table-content-wrap {
    border: 1px solid #c9d6df;
    padding: 10px 0 0 0;
}
.table-wrap > .table-content-wrap > .title {
    color: #52616b;
    font-size: 16px;
    padding-bottom: 10px;
}
.table-wrap > .table-content-wrap.col {
    border: 1px solid #c9d6df;
    padding: 20px;
}
.table-wrap > .table-content-wrap.col > .title {
    color: #0c81e4;
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 10px;
}
/* 데이터 관리*/
#wrap2 {
    margin-left: 480px;
    padding-top: 57px;
}
.data-nav-container {
    position: fixed;
    z-index: 2;
    width: 400px;
    height: 100vh;
    margin-left: 80px;
    padding-top: 57px;
}

/* treeview */
.tree-menu {
    background: #f7f7f7;
    padding: 65px 0 0 0;
    top: 0;
    bottom: 0;
    height: auto;
    width: 0px;
    -webkit-transition: width 0.05s linear;
    transition: width 0.05s linear;
    -webkit-transform: translateZ(0) scale(1, 1);
    z-index: 1;
    font-family: "Pretendard";
}
.tree-menu.active {
    background: #f7f7f7;
    padding: 65px 0 0 0;
    top: 0;
    bottom: 0;
    height: auto;
    width: 315px;
    -webkit-transition: width 0.05s linear;
    transition: width 0.05s linear;
    -webkit-transform: translateZ(0) scale(1, 1);
    z-index: 1000;
    font-family: "Pretendard";
}
.tree-menu-wrap {
    position: relative;
    height: 100%;
    overflow-y: auto;
}
.tree-menu-content {
    display: flex;
    flex-direction: column;
    padding-top: 5px;
    justify-content: flex-start;
}
.tree-menu ul {
    list-style: none;
    margin-left: 10px;
    display: none;
}
.tree-menu.active ul {
    list-style: none;
    margin-left: 10px;
    display: block;
}
.tree-menu ul:nth-child(1) {
    list-style: none;
}
.tree-menu li {
    outline: 0;
    padding: 3px;
}
.tree-menu li a {
    position: relative;
    display: flex;
    align-items: baseline;
    font-size: 15px;
    line-height: 18px;
    color: #15161a;
    margin: 5px 10px;
}
.tree-menu li a span.label {
    margin-right: 5px;
}
.tree-menu .sidetreecontrol {
    font-size: 13px;
    padding: 5px 15px;
    color: #5c6373;
    display: none;
}
.tree-menu.active .sidetreecontrol {
    font-size: 13px;
    padding: 5px 15px;
    color: #5c6373;
    display: block;
}

.tree-menu .btn-more {
    position: absolute;
    right: -28px;
    top: 65px;
    padding: 10px 10px;
    background: #f7f7f7;
    border-radius: 0 20px 20px 0;
    font-family: "Font Awesome\ 5 Free";
    font-weight: 900;
    color: #5c6373;
    cursor: pointer;
}
.tree-menu .btn-more:before {
    content: "\f105";
}
.tree-menu .btn-more.active:before {
    content: "\f104";
}
.blind {
    visibility: hidden !important;
    position: absolute !important;
    color: transparent !important;
    opacity: 0 !important;
    width: 1px !important;
    height: 1px !important;
    font-size: 1px !important;
    text-indent: -9999px !important;
}

/* .jstree-default .jstree-open > .jstree-ocl {
    background-position: 0 0 !important;
}
.jstree-default .jstree-closed > .jstree-ocl {
    background-position: 0 0 !important;
}
.jstree-default .jstree-leaf > .jstree-ocl {
    background-position: 0 0 !important;
}
.jstree-default .jstree-icon:empty {
    width: 27px !important;
    height: 20px !important;
    line-height: 24px !important;
}
.jstree-default .jstree-node,
.jstree-default .jstree-icon {
    background-image: url("0px.png") !important;
}
.jstree-default .jstree-node {
    margin-top: 10px;
    min-height: 26px !important;
    line-height: 0 !important;
}
.jstree-default .jstree-wholerow-clicked {
    background: #beebff !important;
}

li.jstree-open > a .jstree-icon {
    background: url("../img/icon/ico-file.png") 0 0 no-repeat !important;
}
li.jstree-closed > a .jstree-icon {
    background: url("../img/icon/ico-file.png") 0 0 no-repeat !important;
}
li.jstree-leaf > a .jstree-icon {
    display: none;
    background: url("../img/icon/ico-file.png") 0 0 no-repeat !important;
} */

/* treeMenu */
#treeMenu {
    padding: 20px;
}
#treeMenu li {
    padding: 0px 0px 2px 18px;
    position: relative;
}
#treeMenu li button {
    width: 9px;
    height: 9px;
    border: 0 none;
    display: block;
    position: absolute;
    left: 0;
    top: 3px;
    overflow: hidden;
    text-indent: -9999em;
}
.open_icon {
    font-size: 24px;
    font-weight: 500;
    color: #6c757d;
    margin-right: 5px;
}
.forderIcon {
    font-size: 24px;
    font-weight: 500;
    color: #6c757d;
    margin-right: 10px;
}
#treeMenu li:nth-child(4n) {
    padding-left: 20px;
}

/* tab_view table */
.tab-table * {
    font-family: "Pretendard", sans-serif;
}
.tab-table table {
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
}
.tab-table tbody tr {
    border-bottom: 1px solid #c9d6df;
}
.tab-table tbody th {
    position: relative;
    font-size: 16px;
    line-height: 15px;
    color: #2f3039;
    padding: 8px 2px;
    height: 50px;
    text-align: center;
    vertical-align: middle;
    font-weight: 400;
    text-indent: -10px;
}
.tab-table tbody th:before {
    display: inline-block;
    content: "";
    width: 4px;
    height: 4px;
    vertical-align: middle;
    margin-right: 5px;
}
.tab-table tbody td {
    font-size: 16px;
    line-height: 15px;
    color: #2f3039;
    padding: 5px 8px;
    height: 50px;
    text-align: left;
    vertical-align: middle;
}

.modal-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 370px;
    height: 250px;
    background: #fff;
    border-radius: 15px;
}

.middle_content {
    padding: 30px;
    height: 200px;
}

.middle_content > h2 {
    margin-bottom: 20px;
    font-size: 20px;
}

.middle_content > input {
    width: 80%;
}

#editCompleteBtn {
    position: absolute;
    bottom: 10px;
    right: 45px;
    background: #007bff;
}

#editCancelBtn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #9cb1bf;
}

/**** navigation menu ****/
input[id*="root"]{
    display:none;
}
input[id*="root"] + label {
    display: flex;
    justify-content: space-between;
    padding: 15px 30px 15px 30px; 
    color: #B9BFD1;
    background:#2F4DA5; 
    cursor:pointer; 
    position: relative;
    font-family: "Pretendard"; 
    font-size: 14px; 
    font-weight: 500;
    border-bottom: 1px solid #142965;
}
input[id*="root"] + label i {
    font-family: "Pretendard"; 
    font-size: 14px; 
    font-weight: 500;
    color: #fff !important;
}
input[id*="root"] + label em{
    position:absolute; 
    top:50%; 
    left: 10px; 
    width: 30px; 
    height: 30px; 
    margin-top: -15px; 
    display: inline-block; 
    background:url("../img/icon/sidedown.png") center center no-repeat;
}
input[id*="root"] + label + ul li {
    max-height:0; 
    transition: all .35s; 
    overflow: hidden; 
    font-family: "Pretendard"; 
    font-size: 14px; 
    font-weight: 500;
    color: #fff !important;
}
input[id*="root"] + label + ul li a{
    display: inline-block; 
    padding: 10px 20px 10px 30px;
    width: 100%;
    color: #B9BFD1;
}
input[id*="root"] + label + ul li a:hover,
input[id*="root"] + label + ul li a.active {
    /* background: #5C6979;
    border-left: 5px solid #0058ff; */
    color: #fff;
}
input[id*="root"]:checked + label + ul li{
    max-height:1000px;
}
input[id*="root"]:checked + label em {
    background-position: 0 -30px; 
    background:url("../img/icon/sideup.png") center center no-repeat;
}
input[id*="root"]:checked + label {
    /* background: #0C81E4; */
    color: #fff;
}

input[id*="sub_menu"]{
    display:none;
}
input[id*="sub_menu"] + label {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px 10px 30px; 
    color: #B9BFD1;
    /* background:#2F4DA5;  */
    cursor:pointer; 
    position: relative;
    font-family: "Pretendard"; 
    font-size: 14px; 
    font-weight: 500;
    border-bottom: 1px solid #142965;
}
input[id*="sub_menu"] + label i {
    font-family: "Pretendard"; 
    font-size: 14px; 
    font-weight: 500;
    color: #fff !important;
}
input[id*="sub_menu"] + label em{
    position:absolute; 
    top:50%; 
    left: 10px; 
    width: 30px; 
    height: 30px; 
    margin-top: -15px; 
    display: inline-block; 
    background:url("../img/icon/sidedown.png") center center no-repeat;
}
input[id*="sub_menu"] + label + ul li {
    max-height:0; 
    transition: all .35s; 
    overflow: hidden; 
    font-family: "Pretendard"; 
    font-size: 14px; 
    font-weight: 500;
    color: #fff !important;
}
input[id*="sub_menu"] + label + ul li a{
    display: inline-block; 
    padding: 5px 20px 10px 40px;
    width: 100%;
    color: #B9BFD1;
}
input[id*="sub_menu"] + label + ul li a:hover,
input[id*="sub_menu"] + label + ul li a.active {
    /* background: #5C6979;
    border-left: 5px solid #0058ff; */
    color: #fff;
}
input[id*="sub_menu"]:checked + label + ul li{
    max-height:1000px;
}
input[id*="sub_menu"]:checked + label em {
    background-position: 0 -40px; 
    background:url("../img/icon/sideup.png") center center no-repeat;
}
input[id*="sub_menu"]:checked + label {
    /* background: #0C81E4; */
    color: #fff;
}

.side{
    position: fixed;
    top: 60px;
    bottom: 0px;
    z-index: 100;
    height: 100%;
    min-width: 180px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 0px -2px, rgba(0, 0, 0, 0.1) 4px 0px 14px -2px;
    transition: transform 0.2s ease-in-out;
    background: #2F4DA5;
}
.side-container{
    position: relative;
    display: flex;
    flex: 1 1 auto;
    height: 100%;
}
.close_btn{
    width: 100%;
    height: 18px;
    display: flex;
    flex-direction: row-reverse;
}
.close_icon_area{
    position: relative;
    z-index: 10;
    cursor: pointer;
}
.close_icon_area::before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    width: 0px;
    background: rgba(224, 224, 224, 0.3);
    content: "";
}
.close_icon_area::after {
    overflow: hidden;
    display: inline-block;
    font-size: 1px;
    line-height: 1px;
    color: transparent;
    vertical-align: top;
    background-image: url("../img/icon/close.svg");
    width: 18px;
    height: 18px;
    mask-image: none;
    content: "";
}
.close_icon_dash{
    position: relative;
    z-index: 10;
    cursor: pointer;
}
.close_icon_dash::before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    width: 0px;
    background: rgba(224, 224, 224, 0.3);
    content: "";
}
.close_icon_dash::after {
    overflow: hidden;
    display: inline-block;
    font-size: 1px;
    line-height: 1px;
    color: transparent;
    vertical-align: top;
    background-image: url("../img/icon/close_gray.svg");
    background-size: cover;
    width: 18px;
    height: 18px;
    mask-image: none;
    content: "";
}

.open_icon_dash{
    position: relative;
    z-index: 10;
    cursor: pointer;
}
.open_icon_dash::before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    width: 0px;
    background: rgba(224, 224, 224, 0.3);
    content: "";
}
.open_icon_dash::after {
    overflow: hidden;
    display: inline-block;
    font-size: 1px;
    line-height: 1px;
    color: transparent;
    vertical-align: top;
    background-image: url("../img/icon/open_gray.svg");
    background-size: cover;
    width: 15px;
    height: 18px;
    mask-image: none;
    content: "";
}
.close_icon_black{
    position: relative;
    z-index: 10;
    cursor: pointer;
}
.close_icon_black::before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    width: 0px;
    background: rgba(224, 224, 224, 0.3);
    content: "";
}
.close_icon_black::after {
    overflow: hidden;
    display: inline-block;
    font-size: 1px;
    line-height: 1px;
    color: transparent;
    vertical-align: top;
    background-image: url("../img/icon/close_black.svg");
    background-size: 110px 18px;
    background-position: -14px 0px;
    width: 62px;
    height: 18px;
    mask-image: none;
    content: "";
}
.side-info{
    position: absolute;
    top: 0px;
    left: 0px;
    display: block;
    width: 180px;
    height: 255px;
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    font-family: "Pretendard"; 
    font-size: 14px; 
    font-weight: 600;
    color: #fff;
    z-index: 4;
}
.side_nav_container{
    position: relative;
    width: 180px;
    height: 100%;
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    box-sizing: content-box;
}
.side_nav_container .side_nav {
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    /* padding-top: 275px; */
    overflow-y: auto;
    /* margin-top: 255px; */
    margin-bottom: 40px;
    box-sizing: border-box;
}
.side_nav_container .side_nav ul{
    background: #142965;
}

.side_nav_container .side_nav::-webkit-scrollbar { 
    width: 8px;
    height: 4px;
}
.side_nav_container .side_nav::-webkit-scrollbar-track {  
    /* background-color: #4A586A;  */
    background-color: #3E4A5A;
}
.side_nav_container .side_nav::-webkit-scrollbar-thumb { 
    border-radius: 8px; 
    /* background-color: #BBBEC2;  */
    background: linear-gradient(to bottom, #333D4B, #0A0C0F);
}
.side_nav_container .side_nav::-webkit-scrollbar-button { 
    width: 0; 
    height: 0; 
}
.xi_transform{
    transform: rotate(-180deg);
}
.count-amount {
    color: #292929;
    font-family: "Pretendard";
    font-size: 14px;
    font-weight: 500;
    margin: 0 3px;
}
.count{
    font-family: "Pretendard";
    font-size: 14px;
    font-weight: 500;
    color: #7E84A3;
}

/* md-table */
.md-table{
    border-top: 2px solid #333D4B;
}
.md-table > tbody > tr:first-child {
	border-top: 1px solid #d7dbec;
	opacity: 30;
}
.md-table > tbody > tr {
	border-bottom: 1px solid #d7dbec;
	opacity: 30;
}
.md-table > thead > tr > th {
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	background: #F2F2F5;
	height: 48px;
	border: 1px solid #d7dbec;
}
.md-table > thead > tr > th:first-child {
	border-left: unset;
}
.md-table > thead > tr > th:last-child {
	border-right: unset;
}
.md-table > tbody > tr > th {
	font-size: 16px;
	font-weight: 600;
	text-align: left;
	background: #F2F2F5;
	height: 65px;
    /* border-right: 1px solid #d7dbec; */
    padding-left: 18px;
}
.md-table > tbody > tr > td {
	font-size: 16px;
	font-weight: 500;
	text-align: left;
	background: #ffffff;
	height: 65px;
	padding: 0px 0px 0px 14px;
}

/* smd-table */
.smd-table{
    border-top: 2px solid #333D4B;
}
.smd-table > tbody > tr:first-child {
	border-top: 1px solid #d7dbec;
	opacity: 30;
}
.smd-table > tbody > tr {
	border-bottom: 1px solid #d7dbec;
	opacity: 30;
}
.smd-table > thead > tr > th {
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	background: #f4f4f4;
	height: 38px;
	border: 1px solid #d7dbec;
}
.smd-table > thead > tr > th:first-child, .smd-table > tbody > tr > td:first-child{
	border-left: unset;
}
.smd-table > thead > tr > th:last-child, .smd-table > tbody > tr > td:last-child {
	border-right: unset;
}
.smd-table > tbody > tr > th {
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	background: #F2F2F5;
	height: 48px;
    border-right: 1px solid #d7dbec;
    padding-top: 6px;
}
.smd-table > tbody > tr > td {
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	background: #ffffff;
	height: 28px;
    border: 1px solid #d7dbec;
}
.smd-table > tbody > tr > td:first-child{
    padding-left: 7px;
}

.side_modal_content::-webkit-scrollbar {
    width: 7px;
    height: 4px;
}
.side_modal_content::-webkit-scrollbar-track {
    background-color: #fff;
}
.side_modal_content::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background: #8b95a1;
    
}
.side_modal_content::-webkit-scrollbar-button {
    width: 0; 
    height: 0; 
}

.title {
    font-size: 48px;
    font-weight: 700;
    color: #283447;
    margin-bottom: 52px;
  }

  .terms {
    border-top: 2px solid #333D4B;
    margin-bottom: 24px;
  }

  .terms label {
    display: flex;
    align-items: center;
    padding: 18px 48px 18px 24px;
    border-bottom: 1px solid #D6D6DD;
    height: 62px;
    font-size: 22px;
    font-weight: 700;
    color: #000000;
  }

  .terms label p {
    width: 95px;
    text-align: left;
  }

  .terms label span {
    font-size: 18px;
    font-weight: 500;
    color: #8B95A1;
  }

  .terms input[type="checkbox"] {
    margin-right: 24px;
    border-color: #9BA0A9;
    border-radius: 2px;
    width: 16px;
    height: 16px;
  }

  .terms a {
    margin-left: auto;
    color: #7C6FF3;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
  }

  .join-title {
    font-size: 22px;
    font-weight: 700;
    padding-top: 16px;
    padding-bottom: 16px;
    color: #283447;
    text-align: left;
    margin-top: 32px;
  }

  .admin-join-title {
    font-size: 18px;
    font-weight: 700;
    padding-top: 16px;
    padding-bottom: 16px;
    color: #000;
    text-align: left;
    margin-top: 24px;
  }

  .form-section {
    background-color: #FAFAFA;
    padding: 32px;
    border-top: 2px solid #7C6FF3;
  }

  .form-group {
    margin-bottom: 16px;
    align-items: start;
    display: flex;
    flex-direction: column;
  }

  .form-group label {
    display: block;
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 16px;
    color: #283447;
  }

  .form-group input {
    width: 436px;
    height: 50px;
    padding: 10px;
    border: 1px solid #B0B7C1;
    border-radius: 4px;
  }

  .form-group input:focus {
    border: 1px solid #584CC6;
  }

  .inline-button button {
    height: 50px;
    padding: 0px 22px 0px 22px;
    background-color: #93939F;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-left: 13px;
    font-weight: 500;
    font-size: 16px;
  }

  label.required:after {
    content: "*";
    color: #FC5C50;
    display: inline-block;
    position: relative;
    left: 10px;
  }

  

.subTitle {
    font-weight: 700;
    font-size: 34px;
    color: #283447;
    display: block;
    justify-self: start;
}

.bigTitle {
    font-weight: 700;
    font-size: 48px;
    color: #283447;
    display: block;
    justify-self: center;
    margin-top: 36px;
    margin-bottom: 56px;
}

.admin-subTitle {
    font-weight: 700;
    font-size: 27px;
    color: #283447;
    display: block;
    justify-self: start;
}

/* 테이블 */
.admin .tabulator .tabulator-header {
	font-size: 14px !important;
}

.admin .tabulator-row .tabulator-cell {
	font-size: 14px;
}

/* 모바일 부분 css */
.mobile {
    padding: 0 16px;
}

.mobile .form-group input {
    width: 100%;
    height: 44px;
    max-width: 436px;
    padding: 10px;
    border: 1px solid #B0B7C1;
    border-radius: 4px;
}

.mobile .btn-lg-round {
    width: 100%;
    max-width: 436px;
  }

.tabulator {
	position: relative;
    border-bottom: 1px solid #D2D8DD;
    border-left: none;
    border-right: none;
    border-top: none;
	background-color: #888;
	font-size: 14px;
	text-align: left;
	overflow: hidden;
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
}


.tabulator .tabulator-header {
	text-align-last: center;
	position: relative;
	box-sizing: border-box;
	width: 100%;
	border-top: 2px solid #584CC6;
    border-bottom: 1px solid #D2D8DD;
	background-color: #ffffff;
	font-size: 16px;
	color: #283447;
	/* align-content: center; */
	font-weight: 700;
	white-space: nowrap;
	overflow: hidden;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-o-user-select: none;
}

.tabulator .tabulator-header .tabulator-col {
	display: inline-flex;
	position: relative;
	box-sizing: border-box;
	flex-direction: column;
	justify-content: flex-start;
	border-right: 1px solid #D2D8DD;
	background-color: #F2F2F5;
	text-align: left;
	vertical-align: bottom;
	overflow: hidden;
    height: 48px !important;
	justify-content: center;
}

.tabulator-row .tabulator-cell {
	display: inline-flex;
	position: relative;
	box-sizing: border-box;
	padding: 0 18px;
	border-right: 1px solid #D2D8DD;
    border-bottom: 1px solid #D2D8DD;
	vertical-align: middle;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
    font-size: 16px;
    font-weight: 500;
    height: 48px !important;
	justify-content: center;
    flex-direction: column;
}

.tabulator .tabulator-header .tabulator-col.tabulator-sortable .tabulator-col-title {
	padding-right: 4px;
}

.tabulator-row .tabulator-cell:last-of-type {
  border-right: none !important;
}

.tabulator .tabulator-header .tabulator-col:last-of-type {
 border-right: none !important;
}

/* 테이블 even 색상 */
.tabulator-row.tabulator-row-even {
	background-color: #FAFAFA;
}

/* 호버될때 */
  .tabulator-row.tabulator-selectable:hover {
    background-color: #E2E4E6;
    cursor: pointer; }

/* 수정 할 때  */
.tabulator-row .tabulator-cell.tabulator-editing {
    border: 2px solid #584CC6;
    outline: none;
    padding: 0; 
}

/* tabel 체크 박스 */
.tabulator-row .tabulator-cell input[type="checkbox"] {
    box-shadow: none;
	border: 1px solid #D2D8DD;
	border-radius: 2px;
	width: 13px;
	height: 13px;
}

.tabulator-row .tabulator-cell input[type="checkbox"]:checked {
	content: " ";
	background: url("../img/icon/icon_check_white.png") center no-repeat;
	background-size: 7px;
	background-color: #7C6FF3;
	box-shadow: none;
	border: 1px solid #D2D8DD;
	border-radius: 2px;
	width: 13px;
	height: 13px;
}

/* 헤더에 체크박스 */
.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title input[type="checkbox"]{
    box-shadow: none;
	border: 1px solid #D2D8DD;
	border-radius: 2px;
	width: 13px;
	height: 13px;
}

.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title input[type="checkbox"]:checked{
	content: " ";
	background: url("../img/icon/icon_check_white.png") center no-repeat;
	background-size: 7px;
	background-color: #7C6FF3;
	box-shadow: none;
	border: 1px solid #D2D8DD;
	border-radius: 2px;
	width: 13px;
	height: 13px;
}

/* 체크 선택 되었을때 */
.tabulator-row.tabulator-selected {
    background-color: rgba(124, 111, 243, 0.15);
}

/* 중간선 */
.hr-line {
  width: 100%;
  height: 1px;
  background-color: #D2D8DD;
  margin: 16px 0; 
}

.search-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #E2E4E6;
    font-family: 'Pretendard', sans-serif;
    justify-content: space-between;
}

.search-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}


.search-label {
  font-weight: 700;
  font-size: 16px;
  color: #283447;
  padding-right: 10px;
}

.mobile-search-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.mobile_search_info input[type="date"] {
    position: relative;
    min-height: 30px;
    padding: 12px 16px;
    border: 1px solid #B0B7C1;
    font-size: 16px;
    color: #000000;
    width: 100%;
    height: 44px;
    border-radius: 4px;
    padding: 12px 16px;
    font-weight: 500;
}

.admin-search-label {
  font-weight: 700;
  font-size: 14px;
  color: #283447;
  padding-right: 12px;
}

.mobile-search-label {
    font-weight: 700;
    font-size: 14px;
    color: #283447;
    padding-right: 12px;
  }

.search-date {
  padding: 12px 16px;
  border: 1px solid #B0B7C1;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  gap: 9px;
}

.admin-search-date {
  padding: 2px 14px;
  border: 1px solid #D6D6DD !important;
  background-color: #fff;
  height: 36px !important; 
  font-size: 14px !important;
  font-weight: 500;
  border-radius: 0px !important;
  gap: 9px;
}

.search-select {
  padding: 6px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  min-width: 120px;
}

/* tab 부분 */
.sidebar {
    width: 180px;
    background: #584CC6;
    float: left;
    height: 96vh;
    padding-top: 24px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}
.sidebar li {
    padding: 8px 16px;
	cursor: pointer;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
    opacity: 0.4;
}

.sidebar li:hover{
	color: #fff;
    opacity: 1.0;
    font-weight: 700;
    text-decoration: underline;
}

.tab-bar {
  display: flex;
  color: white;
}

.tab {
    padding: 10px 15px;
	border-right: 1px solid #4E5968;
    border-left: 1px solid #4E5968;
	cursor: pointer;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	align-content: center;
}
.tab.active {
	background: #FAFAFA;
	color: #4E5968;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	margin-top: 4px;
}

.tab-content {
  padding: 20px;
  background: #fff;
  height: auto;
}
.tab-pane {
  display: none;
}

/* 모달 부분 */
.draggableModal {
    position: fixed;  /* <- 이게 핵심입니다 */
    top: 100px;
    left: 100px;
    background: #F2F2F5;
    border: 1px solid #ccc;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
    border-radius: 8px;
    resize: both;
    overflow: hidden;
    min-width: 300px;
    min-height: 400px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-header {
    flex: 0 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 24px;
    cursor: move;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header button {
    border: none;
    background: none;
    font-size: 18px;
    cursor: pointer;
}

.modal-body {
    padding: 10px;
    flex: 1 1 auto;
    overflow-y: auto;
    text-align: left;
}
.user-modal-body {
    padding: 10px;
    flex: 1 1 auto;
    overflow-y: auto;
    text-align: left;
}
.modal-section {
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 500;
}

.modal-date {
    padding-bottom: 8px;
    text-align: left;
    color: #4E5968;
}

.modal-context {
    padding: 16px 13px; 
    text-align: left;
    background-color: #fff;
    color: #283447;
    border: 1px solid #E2E4E6;
}

.modal-input{
    text-align: left;
    color: #4E5968;
    font-size: 16px;
    font-weight: 600;   
    border-top: 1px solid #E2E4E6;
    background-color: #fff;
    padding: 24px;
    bottom: 0px;
	position: relative;
    flex: 0 0 auto;
}

.modal-input label{
    color: #4E5968;
    font-size: 16px;
    font-weight: 600;
   
}

.modal-input textarea{
    color: #283447;
    font-size: 14px;
    font-weight: 500; 
    border: 1px solid #B0B7C1;
    margin-top: 8px;   
    margin-bottom: 8px; 
    height: 89px;
    padding: 16px 13px;
}

.reply {
    background: #e8f7ef;
    padding: 8px;
    margin-top: 4px;
    border-radius: 4px;
    color: #2e7d32;
}

.reply-input {
    width: 100%;
    padding: 8px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

.send-card, .receive-card {
    width: 100%;
    max-width: 380px;
    background-color: #fff;
    border: 1px solid #E2E4E6;
    margin-bottom: 16px;
}

.sender {
    font-size: 16px;
    font-weight: 600;
    color: #283447;
}

.receive-header .sender {
    color: #1B64DA !important;
}

.send-header, .receive-header {
    background-color: #FAFAFA;
    border: 1px solid #E2E4E6;
    padding: 8px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.send-header .time,
.receive-header .time {
    color: #8B95A1;
    font-size: 14px;
    font-weight: 500;
    margin-left: 8px;
}

.send-message {
    color: #283447;
    font-size: 16px;
    font-weight: 500;
    padding: 16px 16px;
    background-color: #fff;
}

.receive-message {
    background-color: #DDEBFC;
    padding: 16px 24px;
    color: #333D4B;
    font-size: 16px;
    font-weight: 500;
}

.receive-message span {
    color: #1B64DA !important;
    margin-right: 8px;
}

.input-area {
  display: flex;
  align-items: flex-start;
  border: 1px solid #D2D8DD;
  padding: 13px;
  gap: 8px;
  width: fit-content;
  background-color: #fff;
  margin-top: 16px;
}

.input-area textarea {
  border: none;
  resize: none;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  color: #333D4B;
  width: 240px;
  height: 20px;
}

.input-area textarea:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

/* 모바일  */
.footer-nav-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    background-color: #FAFAFA;
    border-top: 1px solid #e2e4e6;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
    width: 100vw;
    max-width: 100%;
}
  
.footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    color: #6B7684;
    font-weight: 500;
    font-size: 14px;
}

.footer-item img {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
}

.footer-item.active {
    color: #7C6FF3; /* 보라색 강조 */
    font-weight: 700;
    font-size: 14px;
}

.save-button-fixed {
    position: fixed;
    bottom: 68px; 
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 1000;
    pointer-events: none; 
}

.btn-save {
    background-color: #584CC6;
    color: white;
    padding: 14px 24px;
    margin: 0 16px;
    font-size: 18px;
    border: none;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
    width: 100%;
}