/* 전역 스타일 - 시작 */
:root {
    --bs-body-font-family: 'Noto Sans KR';
}
body {
    background-color: #fdfdfd;
}
main {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 0;
    height: inherit;
    overflow-y: auto;
    justify-content: flex-start;
    align-items: flex-start;
}
/* 전역 스타일 - 끝 */

/* 헤더 영역 스타일 - 시작 */
#nav-bar-wrapper {
    background: linear-gradient(to bottom, #ffffff, #f5f5f5);
    border-bottom: 1px solid #c3c3c3;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1020;
}

#nav-bar {
    background: linear-gradient(to bottom, #ffffff, #f5f5f5);
    width: 100%;
    max-width: 1280px;
    display: flex;
    flex-direction: row;
    column-gap: 8px;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0 8px 0;
    flex-wrap: wrap;

    a {
        color: #1f1f1f;
        padding-bottom:8px;
        text-decoration: none;
        cursor: pointer;
    }

    .active {
        font-weight: 600;
        color: #0066cc !important;
        position: relative;
    }

    /* active 메뉴 아래 밑줄 효과
    .active::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 8px;
        right: 8px;
        height: 2px;
        background-color: #0066cc;
    }*/

    /* 모바일 메뉴에서의 active 스타일 */
    .mobile-menu .active {
        background-color: #f0f7ff;
        font-weight: 600;
        border-left: 3px solid #0066cc;
    }

    button {
        border: none;
        background-color: transparent;
    }

    #nav-bar-title {
        font-size: 26px;
        font-weight: 600;
        padding: 0 0 4px 8px;
    }

    .nav-button {
        padding: 6px 8px;

        &:focus {
            outline: none;
            box-shadow: none;
        }
    }

    /* Dropdown styles */
    .dropdown {
        position: relative;
        display: inline-block;
    }

    .dropdown-button {
        border: none;
        background-color: transparent;
        cursor: pointer;
        padding: 6px 8px;
    }

    .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #ffffff;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        padding: 8px 0;
        list-style: none;
        margin: 0;
        z-index: 1000;
        min-width: 150px;
    }

    .dropdown-menu li {
    }

    .dropdown-menu li a {
        color: #1f1f1f;
        text-decoration: none;
        display: block;
        padding: 8px 16px;
    }

    .dropdown-menu li a:hover {
        background-color: #f5f5f5;
    }

    .dropdown:hover .dropdown-menu,
    .dropdown:focus-within .dropdown-menu {
        display: block;
    }

    .desktop-menu-wrap {
        /*width: 100%;*/
        justify-items: flex-start;
    }

    .mobile-menu-wrap {
        display: none;
    }

    @media (max-width: 960px) {
        flex-wrap: nowrap;

        .desktop-menu-wrap {
            display: none;
        }
        .mobile-menu-wrap {
            display: block;
        }
    }

    .mobile-menu {
        z-index: 110;
        position: absolute;
        top: 0;
        left: 0;
        background-color: #fefefe;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        width: 100vw;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }

    .mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-menu li {
        padding: 12px 12px;

        &:hover {
            background-color: #f9f9f9;
        }
    }

    .mobile-menu a {
        text-decoration: none;
        color: #1e293b;
        font-size: 14px;
        padding: 4px 20px;
    }

    .mobile-menu button {
        text-decoration: none;
        color: #1e293b;
        font-size: 16px;
        border: none;
        background-color: transparent;
        padding: 0;
    }

    .mobile-menu a:hover {
        font-weight: 500;
    }

    .show-menu {
        max-height: 60vh;
        opacity: 1;
        overflow-y: auto;
    }

    .divider {
        border-bottom: 1px solid #e5e5e5;
        background-color: #ffffff;
        padding: 4px 0 0 !important;
        margin: 0 0 4px !important;

        &:hover {
            background-color: #ffffff !important;
        }
    }

    .menu-button {
        border: 1px solid #bfbfbf;
        border-radius: 8px;
        margin-right: 8px;
    }

    .menu-icon {
        width: 24px;
        height: 26px;
        display: inline-block;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
        vertical-align: middle;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
}

@media screen and (max-width: 768px) {
    #nav-bar-title {
        font-size: 16px !important;
    }
    .warning {
        font-size: 16px !important;
    }
    .desc {
        font-size: 16px !important;
    }
}
/* 헤더 영역 스타일 - 끝 */

/* 푸터 영역 스타일 - 시작 */
footer {
    #footer-link {
        background-color: #0c163d;
    }

    #footer-link-list {
        text-align: center;
        padding: 8px;
        margin: 0 auto;
    }

    #footer-link-list a {
        display: inline-block;
        color: #ffffff;
        text-decoration: none;
        font-size: 12px;
        margin-bottom: 4px;
    }

    #footer-link-list a:not(:last-child):after {
        content: '|';
        text-decoration: none;
        padding-left: 4px;
        padding-right: 4px;
    }

    #footer-link-list a:hover {
        text-decoration: underline;
    }

    #biz-info span:not(:last-child) {
        margin-right: 16px;
    }

    .warning {
        font-size: 24px;
        font-weight: 600;
        color: #d233d3;
    }

    .desc {
        font-size: 24px;
        font-weight: 500;
        color: #605656;
    }
}

/* 푸터 영역 스타일 - 끝 */

/* 테이블 스타일  */
table {
    width: 100%;
    margin-bottom: 8px;
    border-collapse: collapse;
}
table th {
    font-weight: 600;
    padding: 8px;
    text-align: center;
    vertical-align: middle;
    font-size: 13px;
}
table td {
    padding: 8px;
    text-align: center;
    vertical-align: middle;
    font-size: 13px;
}
table .form-control {
    /*width: 120px;*/
    padding: 0.125rem 0.8rem;
    height: 2rem;
    font-size: 13px;
}
table .form-select,
table .custom-select {
    /*width: 120px;*/
    padding: 0.125rem 0.8rem;
    height: 2rem;
    font-size: 13px;
}
table .form-check-input {
    margin-top: 0.1em;
}
table .form-check-label {
    font-size: 13px;
}
table .form-label {
    margin-bottom: 0;
    font-size: 13px;
}
table .form-check {
    margin-bottom: 0;
}
table .inp-wrap {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
}
table caption {
    font-size: 0.8rem;
    text-align: right;
    padding: 0 0 24px;
}
table a {
    color: #000000;
    text-decoration: none;
}
table a:hover {
    cursor: pointer;
    text-decoration: underline !important;
}
.tbl-xs th,
.tbl-xs td {
    padding: 6.4px;
    font-size: 10.4px;
}
.tbl-sm th,
.tbl-sm td {
    padding: 7.2px;
    font-size: 11.7px;
}
.tbl-lg th,
.tbl-lg td {
    padding: 9.6px;
    font-size: 15.6px;
}
.tbl-xl th,
.tbl-xl td {
    padding: 12px;
    font-size: 19.5px;
}
.tbl-left th,
.tbl-left td,
.th-left th,
.td-left td,
.td-top td {
    text-align: left;
    padding-left: 10px;
}
.tbl-center th,
.tbl-center td,
.th-center th,
.td-center td {
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
}
.tbl-right th,
.tbl-right td,
.th-right th,
.td-right td {
    text-align: right;
    padding-right: 10px;
}
.td-top td {
    vertical-align: top;
}
.th-row-25 {
    /* 각 행의 마지막 td 셀에 오른쪽 테두리 유지 */
}
.th-row-25 tr {
    display: flex;
}
.th-row-25 th {
    width: 25px;
    border: 1px solid #a6a6a6 !important;
    border-right: none !important;
    border-bottom: none !important;
}
.th-row-25 td {
    flex: 1;
    border: 1px solid #a6a6a6 !important;
    border-right: none !important;
    border-bottom: none !important;
}
.th-row-25 tr:last-child td {
    border-bottom: 1px solid #a6a6a6 !important;
}
.th-row-25 tr:last-child th {
    border-bottom: 1px solid #a6a6a6 !important;
}
.th-row-25 tr > td:last-child {
    border-right: 1px solid #a6a6a6 !important;
}
.th-25 th {
    width: 25px;
}
.td-25 td {
    width: 25px;
}
.inp-25 .form-control,
.inp-25 .form-select,
.inp-25 .custom-select {
    width: 25px;
}
.th-row-30 {
    /* 각 행의 마지막 td 셀에 오른쪽 테두리 유지 */
}
.th-row-30 tr {
    display: flex;
}
.th-row-30 th {
    width: 30px;
    border: 1px solid #a6a6a6 !important;
    border-right: none !important;
    border-bottom: none !important;
}
.th-row-30 td {
    flex: 1;
    border: 1px solid #a6a6a6 !important;
    border-right: none !important;
    border-bottom: none !important;
}
.th-row-30 tr:last-child td {
    border-bottom: 1px solid #a6a6a6 !important;
}
.th-row-30 tr:last-child th {
    border-bottom: 1px solid #a6a6a6 !important;
}
.th-row-30 tr > td:last-child {
    border-right: 1px solid #a6a6a6 !important;
}
.th-30 th {
    width: 30px;
}
.td-30 td {
    width: 30px;
}
.inp-30 .form-control,
.inp-30 .form-select,
.inp-30 .custom-select {
    width: 30px;
}
.th-row-50 {
    /* 각 행의 마지막 td 셀에 오른쪽 테두리 유지 */
}
.th-row-50 tr {
    display: flex;
}
.th-row-50 th {
    width: 50px;
    border: 1px solid #a6a6a6 !important;
    border-right: none !important;
    border-bottom: none !important;
}
.th-row-50 td {
    flex: 1;
    border: 1px solid #a6a6a6 !important;
    border-right: none !important;
    border-bottom: none !important;
}
.th-row-50 tr:last-child td {
    border-bottom: 1px solid #a6a6a6 !important;
}
.th-row-50 tr:last-child th {
    border-bottom: 1px solid #a6a6a6 !important;
}
.th-row-50 tr > td:last-child {
    border-right: 1px solid #a6a6a6 !important;
}
.th-50 th {
    width: 50px;
}
.td-50 td {
    width: 50px;
}
.inp-50 .form-control,
.inp-50 .form-select,
.inp-50 .custom-select {
    width: 50px;
}
.th-row-60 {
    /* 각 행의 마지막 td 셀에 오른쪽 테두리 유지 */
}
.th-row-60 tr {
    display: flex;
}
.th-row-60 th {
    width: 60px;
    border: 1px solid #a6a6a6 !important;
    border-right: none !important;
    border-bottom: none !important;
}
.th-row-60 td {
    flex: 1;
    border: 1px solid #a6a6a6 !important;
    border-right: none !important;
    border-bottom: none !important;
}
.th-row-60 tr:last-child td {
    border-bottom: 1px solid #a6a6a6 !important;
}
.th-row-60 tr:last-child th {
    border-bottom: 1px solid #a6a6a6 !important;
}
.th-row-60 tr > td:last-child {
    border-right: 1px solid #a6a6a6 !important;
}
.th-60 th {
    width: 60px;
}
.td-60 td {
    width: 60px;
}
.inp-60 .form-control,
.inp-60 .form-select,
.inp-60 .custom-select {
    width: 60px;
}
.th-row-70 {
    /* 각 행의 마지막 td 셀에 오른쪽 테두리 유지 */
}
.th-row-70 tr {
    display: flex;
}
.th-row-70 th {
    width: 70px;
    border: 1px solid #a6a6a6 !important;
    border-right: none !important;
    border-bottom: none !important;
}
.th-row-70 td {
    flex: 1;
    border: 1px solid #a6a6a6 !important;
    border-right: none !important;
    border-bottom: none !important;
}
.th-row-70 tr:last-child td {
    border-bottom: 1px solid #a6a6a6 !important;
}
.th-row-70 tr:last-child th {
    border-bottom: 1px solid #a6a6a6 !important;
}
.th-row-70 tr > td:last-child {
    border-right: 1px solid #a6a6a6 !important;
}
.th-70 th {
    width: 70px;
}
.td-70 td {
    width: 70px;
}
.inp-70 .form-control,
.inp-70 .form-select,
.inp-70 .custom-select {
    width: 70px;
}
.th-row-80 {
    /* 각 행의 마지막 td 셀에 오른쪽 테두리 유지 */
}
.th-row-80 tr {
    display: flex;
}
.th-row-80 th {
    width: 80px;
    border: 1px solid #a6a6a6 !important;
    border-right: none !important;
    border-bottom: none !important;
}
.th-row-80 td {
    flex: 1;
    border: 1px solid #a6a6a6 !important;
    border-right: none !important;
    border-bottom: none !important;
}
.th-row-80 tr:last-child td {
    border-bottom: 1px solid #a6a6a6 !important;
}
.th-row-80 tr:last-child th {
    border-bottom: 1px solid #a6a6a6 !important;
}
.th-row-80 tr > td:last-child {
    border-right: 1px solid #a6a6a6 !important;
}
.th-80 th {
    width: 80px;
}
.td-80 td {
    width: 80px;
}
.inp-80 .form-control,
.inp-80 .form-select,
.inp-80 .custom-select {
    width: 80px;
}
.th-row-90 {
    /* 각 행의 마지막 td 셀에 오른쪽 테두리 유지 */
}
.th-row-90 tr {
    display: flex;
}
.th-row-90 th {
    width: 90px;
    border: 1px solid #a6a6a6 !important;
    border-right: none !important;
    border-bottom: none !important;
}
.th-row-90 td {
    flex: 1;
    border: 1px solid #a6a6a6 !important;
    border-right: none !important;
    border-bottom: none !important;
}
.th-row-90 tr:last-child td {
    border-bottom: 1px solid #a6a6a6 !important;
}
.th-row-90 tr:last-child th {
    border-bottom: 1px solid #a6a6a6 !important;
}
.th-row-90 tr > td:last-child {
    border-right: 1px solid #a6a6a6 !important;
}
.th-90 th {
    width: 90px;
}
.td-90 td {
    width: 90px;
}
.inp-90 .form-control,
.inp-90 .form-select,
.inp-90 .custom-select {
    width: 90px;
}
.th-row-100 {
    /* 각 행의 마지막 td 셀에 오른쪽 테두리 유지 */
}
.th-row-100 tr {
    display: flex;
}
.th-row-100 th {
    width: 100px;
    border: 1px solid #a6a6a6 !important;
    border-right: none !important;
    border-bottom: none !important;
}
.th-row-100 td {
    flex: 1;
    border: 1px solid #a6a6a6 !important;
    border-right: none !important;
    border-bottom: none !important;
}
.th-row-100 tr:last-child td {
    border-bottom: 1px solid #a6a6a6 !important;
}
.th-row-100 tr:last-child th {
    border-bottom: 1px solid #a6a6a6 !important;
}
.th-row-100 tr > td:last-child {
    border-right: 1px solid #a6a6a6 !important;
}
.th-100 th {
    width: 100px;
}
.td-100 td {
    width: 100px;
}
.inp-100 .form-control,
.inp-100 .form-select,
.inp-100 .custom-select {
    width: 100px;
}
.th-row-110 {
    /* 각 행의 마지막 td 셀에 오른쪽 테두리 유지 */
}
.th-row-110 tr {
    display: flex;
}
.th-row-110 th {
    width: 110px;
    border: 1px solid #a6a6a6 !important;
    border-right: none !important;
    border-bottom: none !important;
}
.th-row-110 td {
    flex: 1;
    border: 1px solid #a6a6a6 !important;
    border-right: none !important;
    border-bottom: none !important;
}
.th-row-110 tr:last-child td {
    border-bottom: 1px solid #a6a6a6 !important;
}
.th-row-110 tr:last-child th {
    border-bottom: 1px solid #a6a6a6 !important;
}
.th-row-110 tr > td:last-child {
    border-right: 1px solid #a6a6a6 !important;
}
.th-110 th {
    width: 110px;
}
.td-110 td {
    width: 110px;
}
.inp-110 .form-control,
.inp-110 .form-select,
.inp-110 .custom-select {
    width: 110px;
}
.th-row-120 {
    /* 각 행의 마지막 td 셀에 오른쪽 테두리 유지 */
}
.th-row-120 tr {
    display: flex;
}
.th-row-120 th {
    width: 120px;
    border: 1px solid #a6a6a6 !important;
    border-right: none !important;
    border-bottom: none !important;
}
.th-row-120 td {
    flex: 1;
    border: 1px solid #a6a6a6 !important;
    border-right: none !important;
    border-bottom: none !important;
}
.th-row-120 tr:last-child td {
    border-bottom: 1px solid #a6a6a6 !important;
}
.th-row-120 tr:last-child th {
    border-bottom: 1px solid #a6a6a6 !important;
}
.th-row-120 tr > td:last-child {
    border-right: 1px solid #a6a6a6 !important;
}
.th-120 th {
    width: 120px;
}
.td-120 td {
    width: 120px;
}
.inp-120 .form-control,
.inp-120 .form-select,
.inp-120 .custom-select {
    width: 120px;
}
.th-row-130 {
    /* 각 행의 마지막 td 셀에 오른쪽 테두리 유지 */
}
.th-row-130 tr {
    display: flex;
}
.th-row-130 th {
    width: 130px;
    border: 1px solid #a6a6a6 !important;
    border-right: none !important;
    border-bottom: none !important;
}
.th-row-130 td {
    flex: 1;
    border: 1px solid #a6a6a6 !important;
    border-right: none !important;
    border-bottom: none !important;
}
.th-row-130 tr:last-child td {
    border-bottom: 1px solid #a6a6a6 !important;
}
.th-row-130 tr:last-child th {
    border-bottom: 1px solid #a6a6a6 !important;
}
.th-row-130 tr > td:last-child {
    border-right: 1px solid #a6a6a6 !important;
}
.th-130 th {
    width: 130px;
}
.td-130 td {
    width: 130px;
}
.inp-130 .form-control,
.inp-130 .form-select,
.inp-130 .custom-select {
    width: 130px;
}
.th-row-140 {
    /* 각 행의 마지막 td 셀에 오른쪽 테두리 유지 */
}
.th-row-140 tr {
    display: flex;
}
.th-row-140 th {
    width: 140px;
    border: 1px solid #a6a6a6 !important;
    border-right: none !important;
    border-bottom: none !important;
}
.th-row-140 td {
    flex: 1;
    border: 1px solid #a6a6a6 !important;
    border-right: none !important;
    border-bottom: none !important;
}
.th-row-140 tr:last-child td {
    border-bottom: 1px solid #a6a6a6 !important;
}
.th-row-140 tr:last-child th {
    border-bottom: 1px solid #a6a6a6 !important;
}
.th-row-140 tr > td:last-child {
    border-right: 1px solid #a6a6a6 !important;
}
.th-140 th {
    width: 140px;
}
.td-140 td {
    width: 140px;
}
.inp-140 .form-control,
.inp-140 .form-select,
.inp-140 .custom-select {
    width: 140px;
}
.th-row-150 {
    /* 각 행의 마지막 td 셀에 오른쪽 테두리 유지 */
}
.th-row-150 tr {
    display: flex;
}
.th-row-150 th {
    width: 150px;
    border: 1px solid #a6a6a6 !important;
    border-right: none !important;
    border-bottom: none !important;
}
.th-row-150 td {
    flex: 1;
    border: 1px solid #a6a6a6 !important;
    border-right: none !important;
    border-bottom: none !important;
}
.th-row-150 tr:last-child td {
    border-bottom: 1px solid #a6a6a6 !important;
}
.th-row-150 tr:last-child th {
    border-bottom: 1px solid #a6a6a6 !important;
}
.th-row-150 tr > td:last-child {
    border-right: 1px solid #a6a6a6 !important;
}
.th-150 th {
    width: 150px;
}
.td-150 td {
    width: 150px;
}
.inp-150 .form-control,
.inp-150 .form-select,
.inp-150 .custom-select {
    width: 150px;
}
.th-row-160 {
    /* 각 행의 마지막 td 셀에 오른쪽 테두리 유지 */
}
.th-row-160 tr {
    display: flex;
}
.th-row-160 th {
    width: 160px;
    border: 1px solid #a6a6a6 !important;
    border-right: none !important;
    border-bottom: none !important;
}
.th-row-160 td {
    flex: 1;
    border: 1px solid #a6a6a6 !important;
    border-right: none !important;
    border-bottom: none !important;
}
.th-row-160 tr:last-child td {
    border-bottom: 1px solid #a6a6a6 !important;
}
.th-row-160 tr:last-child th {
    border-bottom: 1px solid #a6a6a6 !important;
}
.th-row-160 tr > td:last-child {
    border-right: 1px solid #a6a6a6 !important;
}
.th-160 th {
    width: 160px;
}
.td-160 td {
    width: 160px;
}
.inp-160 .form-control,
.inp-160 .form-select,
.inp-160 .custom-select {
    width: 160px;
}
.th-row-180 {
    /* 각 행의 마지막 td 셀에 오른쪽 테두리 유지 */
}
.th-row-180 tr {
    display: flex;
}
.th-row-180 th {
    width: 180px;
    border: 1px solid #a6a6a6 !important;
    border-right: none !important;
    border-bottom: none !important;
}
.th-row-180 td {
    flex: 1;
    border: 1px solid #a6a6a6 !important;
    border-right: none !important;
    border-bottom: none !important;
}
.th-row-180 tr:last-child td {
    border-bottom: 1px solid #a6a6a6 !important;
}
.th-row-180 tr:last-child th {
    border-bottom: 1px solid #a6a6a6 !important;
}
.th-row-180 tr > td:last-child {
    border-right: 1px solid #a6a6a6 !important;
}
.th-180 th {
    width: 180px;
}
.td-180 td {
    width: 180px;
}
.inp-180 .form-control,
.inp-180 .form-select,
.inp-180 .custom-select {
    width: 180px;
}
.th-row-200 {
    /* 각 행의 마지막 td 셀에 오른쪽 테두리 유지 */
}
.th-row-200 tr {
    display: flex;
}
.th-row-200 th {
    width: 200px;
    border: 1px solid #a6a6a6 !important;
    border-right: none !important;
    border-bottom: none !important;
}
.th-row-200 td {
    flex: 1;
    border: 1px solid #a6a6a6 !important;
    border-right: none !important;
    border-bottom: none !important;
}
.th-row-200 tr:last-child td {
    border-bottom: 1px solid #a6a6a6 !important;
}
.th-row-200 tr:last-child th {
    border-bottom: 1px solid #a6a6a6 !important;
}
.th-row-200 tr > td:last-child {
    border-right: 1px solid #a6a6a6 !important;
}
.th-200 th {
    width: 200px;
}
.td-200 td {
    width: 200px;
}
.inp-200 .form-control,
.inp-200 .form-select,
.inp-200 .custom-select {
    width: 200px;
}
.th-row-250 {
    /* 각 행의 마지막 td 셀에 오른쪽 테두리 유지 */
}
.th-row-250 tr {
    display: flex;
}
.th-row-250 th {
    width: 250px;
    border: 1px solid #a6a6a6 !important;
    border-right: none !important;
    border-bottom: none !important;
}
.th-row-250 td {
    flex: 1;
    border: 1px solid #a6a6a6 !important;
    border-right: none !important;
    border-bottom: none !important;
}
.th-row-250 tr:last-child td {
    border-bottom: 1px solid #a6a6a6 !important;
}
.th-row-250 tr:last-child th {
    border-bottom: 1px solid #a6a6a6 !important;
}
.th-row-250 tr > td:last-child {
    border-right: 1px solid #a6a6a6 !important;
}
.th-250 th {
    width: 250px;
}
.td-250 td {
    width: 250px;
}
.inp-250 .form-control,
.inp-250 .form-select,
.inp-250 .custom-select {
    width: 250px;
}
.th-row-300 {
    /* 각 행의 마지막 td 셀에 오른쪽 테두리 유지 */
}
.th-row-300 tr {
    display: flex;
}
.th-row-300 th {
    width: 300px;
    border: 1px solid #a6a6a6 !important;
    border-right: none !important;
    border-bottom: none !important;
}
.th-row-300 td {
    flex: 1;
    border: 1px solid #a6a6a6 !important;
    border-right: none !important;
    border-bottom: none !important;
}
.th-row-300 tr:last-child td {
    border-bottom: 1px solid #a6a6a6 !important;
}
.th-row-300 tr:last-child th {
    border-bottom: 1px solid #a6a6a6 !important;
}
.th-row-300 tr > td:last-child {
    border-right: 1px solid #a6a6a6 !important;
}
.th-300 th {
    width: 300px;
}
.td-300 td {
    width: 300px;
}
.inp-300 .form-control,
.inp-300 .form-select,
.inp-300 .custom-select {
    width: 300px;
}
.th-row-350 {
    /* 각 행의 마지막 td 셀에 오른쪽 테두리 유지 */
}
.th-row-350 tr {
    display: flex;
}
.th-row-350 th {
    width: 350px;
    border: 1px solid #a6a6a6 !important;
    border-right: none !important;
    border-bottom: none !important;
}
.th-row-350 td {
    flex: 1;
    border: 1px solid #a6a6a6 !important;
    border-right: none !important;
    border-bottom: none !important;
}
.th-row-350 tr:last-child td {
    border-bottom: 1px solid #a6a6a6 !important;
}
.th-row-350 tr:last-child th {
    border-bottom: 1px solid #a6a6a6 !important;
}
.th-row-350 tr > td:last-child {
    border-right: 1px solid #a6a6a6 !important;
}
.th-350 th {
    width: 350px;
}
.td-350 td {
    width: 350px;
}
.inp-350 .form-control,
.inp-350 .form-select,
.inp-350 .custom-select {
    width: 350px;
}
.th-25p th {
    width: 25%;
}
.td-25p td {
    width: 25%;
}
.inp-25p .form-control,
.inp-25p .form-select,
.inp-25p .custom-select {
    width: 25%;
}
.th-30p th {
    width: 30%;
}
.td-30p td {
    width: 30%;
}
.inp-30p .form-control,
.inp-30p .form-select,
.inp-30p .custom-select {
    width: 30%;
}
.th-50p th {
    width: 50%;
}
.td-50p td {
    width: 50%;
}
.inp-50p .form-control,
.inp-50p .form-select,
.inp-50p .custom-select {
    width: 50%;
}
.th-80p th {
    width: 80%;
}
.td-80p td {
    width: 80%;
}
.inp-80p .form-control,
.inp-80p .form-select,
.inp-80p .custom-select {
    width: 80%;
}
.th-100p th {
    width: 100%;
}
.td-100p td {
    width: 100%;
}
.inp-100p .form-control,
.inp-100p .form-select,
.inp-100p .custom-select {
    width: 100%;
}
.tbl-info.tbl-xs .form-control,
.tbl-info.tbl-xs .form-select,
.tbl-info.tbl-xs .custom-select,
.tbl-info-2.tbl-xs .form-control,
.tbl-info-2.tbl-xs .form-select,
.tbl-info-2.tbl-xs .custom-select {
    height: 1.4rem;
}
.tbl-info.tbl-sm .form-control,
.tbl-info.tbl-sm .form-select,
.tbl-info.tbl-sm .custom-select,
.tbl-info-2.tbl-sm .form-control,
.tbl-info-2.tbl-sm .form-select,
.tbl-info-2.tbl-sm .custom-select {
    height: 1.7rem;
}
.tbl-info.tbl-md .form-control,
.tbl-info.tbl-md .form-select,
.tbl-info.tbl-md .custom-select,
.tbl-info-2.tbl-md .form-control,
.tbl-info-2.tbl-md .form-select,
.tbl-info-2.tbl-md .custom-select {
    height: 1.9rem;
}
.tbl-info.tbl-lg .form-control,
.tbl-info.tbl-lg .form-select,
.tbl-info.tbl-lg .custom-select,
.tbl-info-2.tbl-lg .form-control,
.tbl-info-2.tbl-lg .form-select,
.tbl-info-2.tbl-lg .custom-select {
    height: 2.3rem;
}
.tbl-info.tbl-xl .form-control,
.tbl-info.tbl-xl .form-select,
.tbl-info.tbl-xl .custom-select,
.tbl-info-2.tbl-xl .form-control,
.tbl-info-2.tbl-xl .form-select,
.tbl-info-2.tbl-xl .custom-select {
    height: 2.8rem;
}
.tbl-search {
    margin-bottom: 0;
    white-space: nowrap;
    overflow-x: auto;
}
.tbl-search td {
    display: flex;
    flex-wrap: wrap;
    row-gap: 0.5rem;
    column-gap: 1rem;
    text-align: left;
    align-items: center;
    border: 0;
    padding: 0.25rem;
}
.tbl-search .form-control,
.tbl-search .form-select,
.tbl-search .custom-select {
    width: 120px;
    padding: 0.125rem 0.8rem;
    height: 2rem;
    font-size: 13px;
}

.tbl-list tr:hover td {
    background: #f1f1f1;
}
.tbl-list thead {
    border-bottom: 2px solid #0a0a0a;
}
.tbl-list th {
    vertical-align: middle;
    font-weight: 600;
    background-color: #ffffff;
    border: 0;
}
.tbl-list td {
    vertical-align: middle;
    font-weight: normal;
    background: none;
    border: 0px;
    border-bottom: 1px solid #e7e7e7;
}
.tbl-list-2 tr:hover td {
    background: #f1f1f1;
}
.tbl-list-2 th {
    vertical-align: middle;
    font-weight: 600;
    background-color: #e6e6e6;
    border: 1px solid #a6a6a6;
}
.tbl-list-2 td {
    vertical-align: middle;
    font-weight: normal;
    background: none;
    border: 1px solid #a6a6a6;
}
.tbl-list-2 tbody > tr:nth-of-type(odd) > * {
    background-color: #f5f5f5;
}


.tbl-info .form-control,
.tbl-info .form-select,
.tbl-info .custom-select,
.tbl-info-2 .form-control,
.tbl-info-2 .form-select,
.tbl-info-2 .custom-select {
    height: auto;
    font-size: 0.85rem;
    padding: 0.375rem 0.9rem;
}
.tbl-info.tbl-xs .form-control,
.tbl-info.tbl-xs .form-select,
.tbl-info.tbl-xs .custom-select,
.tbl-info-2.tbl-xs .form-control,
.tbl-info-2.tbl-xs .form-select,
.tbl-info-2.tbl-xs .custom-select {
    height: auto;
    padding: 0.15rem 0.5rem;
}
.tbl-info.tbl-sm .form-control,
.tbl-info.tbl-sm .form-select,
.tbl-info.tbl-sm .custom-select,
.tbl-info-2.tbl-sm .form-control,
.tbl-info-2.tbl-sm .form-select,
.tbl-info-2.tbl-sm .custom-select {
    height: auto;
    padding: 0.2rem 0.7rem;
}
.tbl-info.tbl-md .form-control,
.tbl-info.tbl-md .form-select,
.tbl-info.tbl-md .custom-select,
.tbl-info-2.tbl-md .form-control,
.tbl-info-2.tbl-md .form-select,
.tbl-info-2.tbl-md .custom-select {
    height: auto;
    padding: 0.375rem 0.9rem;
}
.tbl-info.tbl-lg .form-control,
.tbl-info.tbl-lg .form-select,
.tbl-info.tbl-lg .custom-select,
.tbl-info-2.tbl-lg .form-control,
.tbl-info-2.tbl-lg .form-select,
.tbl-info-2.tbl-lg .custom-select {
    height: auto;
    padding: 0.425rem 1.1rem;
}
.tbl-info.tbl-xl .form-control,
.tbl-info.tbl-xl .form-select,
.tbl-info.tbl-xl .custom-select,
.tbl-info-2.tbl-xl .form-control,
.tbl-info-2.tbl-xl .form-select,
.tbl-info-2.tbl-xl .custom-select {
    height: auto;
    padding: 0.5rem 1.3rem;
}
.tbl-info.tbl-xs .form-control,
.tbl-info.tbl-xs .form-select,
.tbl-info.tbl-xs .custom-select,
.tbl-info-2.tbl-xs .form-control,
.tbl-info-2.tbl-xs .form-select,
.tbl-info-2.tbl-xs .custom-select {
    font-size: 0.65rem;
}
.tbl-info.tbl-sm .form-control,
.tbl-info.tbl-sm .form-select,
.tbl-info.tbl-sm .custom-select,
.tbl-info-2.tbl-sm .form-control,
.tbl-info-2.tbl-sm .form-select,
.tbl-info-2.tbl-sm .custom-select {
    font-size: 0.75rem;
}
.tbl-info.tbl-md .form-control,
.tbl-info.tbl-md .form-select,
.tbl-info.tbl-md .custom-select,
.tbl-info-2.tbl-md .form-control,
.tbl-info-2.tbl-md .form-select,
.tbl-info-2.tbl-md .custom-select {
    font-size: 0.85rem;
}
.tbl-info.tbl-lg .form-control,
.tbl-info.tbl-lg .form-select,
.tbl-info.tbl-lg .custom-select,
.tbl-info-2.tbl-lg .form-control,
.tbl-info-2.tbl-lg .form-select,
.tbl-info-2.tbl-lg .custom-select {
    font-size: 0.95rem;
}
.tbl-info.tbl-xl .form-control,
.tbl-info.tbl-xl .form-select,
.tbl-info.tbl-xl .custom-select,
.tbl-info-2.tbl-xl .form-control,
.tbl-info-2.tbl-xl .form-select,
.tbl-info-2.tbl-xl .custom-select {
    font-size: 1.1rem;
}
.tbl-info th {
    vertical-align: middle;
    font-weight: 500;
    background-color: #eee;
    border: 0;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
}
.tbl-info td {
    text-align: left;
    padding-left: 10px;
    vertical-align: middle;
    font-weight: normal;
    background: none;
    border: 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.tbl-info-2 th {
    vertical-align: middle;
    font-weight: 600;
    background-color: #e6e6e6;
    border: 1px solid #a6a6a6;
}
.tbl-info-2 td {
    text-align: left;
    padding-left: 10px;
    vertical-align: middle;
    font-weight: normal;
    background: none;
    border: 1px solid #a6a6a6;
}
.tbl-info.tbl-xs input,
.tbl-info-2.tbl-xs input {
    font-size: 10.4px;
}
.tbl-info.tbl-sm input,
.tbl-info-2.tbl-sm input {
    font-size: 11.7px;
}
.tbl-info.tbl-md input,
.tbl-info-2.tbl-md input {
    font-size: 13px;
}
.tbl-no-hover td:hover {
    background: none !important;
}
/* 테이블 스타일 끝 */



/* info-template css  고객권리항목,채무조정안내 */

/*템플릿 내부 스타일*/
.info-template {
    width: 750px;
    height: 100%;
    margin: 0 auto;
    display: block;
    font-family: 'Nanum Gothic', sans-serif;
}
/* 템플릿 내부 제목 스타일 */
.info-template .document-title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}
/* 템플릿 내부 부제목 스타일 */
.info-template .document-subtitle {
    font-size: 18px;
    margin-bottom: 10px;
}
/* 템플릿 내부 섹션 제목 스타일 */
.info-template .section-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    border-bottom: 2px solid #333;
    padding-bottom: 5px;
}
/* 템플릿 내부 섹션 내용 스타일 */
.info-template .section-content {
    margin-left: 20px;
}
/* 템플릿 내부 h4 스타일 */
.info-template h4 {
    font-size: 15px;
    font-weight: bold;
}
/* 템플릿 내부 하단 영역의 스타일 */
.info-template .document-footer {
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

/* 템플릿 내부 테이블 스타일 */
.info-template table {
    font-family: 'Batang', 'BatangChe', serif;
}

/* 템플릿 내부 테이블 th 스타일 */
.info-template th {
    background-color: #f8f9fa;
}
