/* 전체 영역 */
.wrap {
    width: 100%;
    min-height: 100vh;
}

/* ------------------------------------------------------------------------------- */

.final-section {
    margin-top: 12px;
}
/* 매달대행 연동 */
/* 툴팁 기본 스타일 설정 시작 */
.excel-btn {
    border: 1px solid #e9e9e9;
    border-radius: 4px;
    padding: 8px;
}
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.notice-modal {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
}

.notice-category {
    color: #ff6093;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.notice-title {
    font-size: 20px;
    font-weight: bold;
    color: #111827;
    margin: 0;
}

.modal-meta {
    background-color: #f9fafb;
    padding: 12px 24px;
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    color: #4b5563;
    font-size: 14px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-label {
    font-weight: 500;
}

.modal-content {
    padding: 24px;
    max-height: 400px;
    overflow-y: auto;
    background: #fff;
}

.modal-footer {
    padding: 16px 24px;
    background-color: #f9fafb;
    border-top: 1px solid #e5e7eb;
    border-radius: 0 0 12px 12px;
    display: flex;
    justify-content: flex-end;
}

.confirm-button {
    background-color: #ff6093;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s;
}

    .confirm-button:hover {
        background-color: #ff2d70;
    }

/* 스크롤바 스타일링 */
.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

    .modal-content::-webkit-scrollbar-thumb:hover {
        background: #a8a8a8;
    }

.tooltip {
    position: relative;
    display: block;
    margin-top: 2px;
}

    .tooltip .tooltiptext {
        visibility: hidden;
        min-width: 200px;
        background-color: black;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 10px;
        font-size: 14px;
        position: absolute;
        z-index: 20;
    }

    .tooltip:hover .tooltiptext {
        visibility: visible;
    }

    /* 툴팁 기본 스타일 설정 끝 */

    /* -------------------------- */

    /* 툴팁 화살표 기본 스타일 설정 시작 */


    /* 툴팁 화살표 기본 스타일 설정 끝 */

    /* -------------------------- */

    /* 툴팁 방향 설정 시작 */

    /* 왼쪽 툴팁 시작 */

    .tooltip .tooltip-left {
        top: -5px;
        right: 105%;
    }

        .tooltip .tooltip-left::after {
            top: 50%;
            left: 100%;
            margin-top: -5px;
            border-color: transparent transparent transparent black;
        }

    /* 왼쪽 툴팁 끝 */

    /* 오른쪽 툴팁 시작 */

    .tooltip .tooltip-right {
        top: -20px;
        left: 155%;
        text-align: left;
    }


    /* 오른쪽 툴팁 끝 */

    /* 위쪽 툴팁 시작 */

    .tooltip .tooltip-top {
        width: 120px;
        bottom: 150%;
        left: 50%;
        margin-left: -60px;
    }

        .tooltip .tooltip-top::after {
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-color: black transparent transparent transparent;
        }

    /* 아래쪽 툴팁 시작 */

    .tooltip .tooltip-bottom {
        width: 120px;
        top: 150%;
        left: 50%;
        margin-left: -60px;
    }


        .tooltip .tooltip-bottom::after {
            bottom: 100%;
            left: 50%;
            margin-left: -5px;
            border-color: transparent transparent black transparent;
        }

/* 아래쪽 툴팁 시작 */
/* ------------------------------------------------------------------------------- */

/* 스와이퍼 */
/* 기본 */
.swiper {
    width: 100%;
    height: 100%;
}

    .swiper .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #fff;
        /* Center slide text vertically */
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
    }

        .swiper .swiper-slide img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    /* 페이지네이션 */
    .swiper .swiper-pagination {
        bottom: 40px !important;
        z-index: 2 !important;
    }

        .swiper .swiper-pagination .swiper-pagination-bullet {
            width: 10px !important;
            height: 10px !important;
            background: #000 !important;
            opacity: 0.1 !important;
            margin: 0 4px !important;
        }

        .swiper .swiper-pagination .swiper-pagination-bullet-active {
            opacity: 0.5 !important;
        }

    /* 이전, 다음 버튼 */
    .swiper .swiper-button-prev,
    .swiper .swiper-button-next {
        transform: translateY(-50%) !important;
        width: 30px !important;
        height: 60px !important;
        margin-top: 0 !important;
        z-index: 2 !important;
    }

    .swiper .swiper-button-prev {
        left: 20px !important;
        right: auto !important;
    }

    .swiper .swiper-button-next {
        left: auto !important;
        right: 20px !important;
    }

        .swiper .swiper-button-prev::after,
        .swiper .swiper-button-next::after {
            display: none !important;
        }

        .swiper .swiper-button-prev::before,
        .swiper .swiper-button-next::before {
            content: "";
            display: block;
            width: 100%;
            height: 100%;
        }

    .swiper .swiper-button-prev::before {
        background: url(../img/) no-repeat center center/cover;
    }

    .swiper .swiper-button-next::before {
        background: url(../img/) no-repeat center center/cover;
    }

/* ------------------------------------------------------------------------------- */

/* 날짜 선택 타입 */

.date-select-area .prev-btn {
    width: 16px;
    margin-right: 10px;
}
.date-select-area .next-btn {
    width: 16px;
    margin-left: 10px;
}
.date-select-area .date-select-type-1 {
    width: 120px;
    height: 36px;
}
.date-select-area .date-select-type-1.h28 {
    height: 28px;
}
.date-select-area .date-select-type-1 input {
    display: block;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: 1px solid #DDE1E6;
    border-radius: 4px;
    font-size: 14px;
    color: #121619;
    padding: 0 8px;
}
.date-select-area .date-select-type-1 img {
    position: absolute;
    width: 16px;
    cursor: pointer;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}
.date-select-area .divide-text {
    font-size: 14px;
    color: #000;
    margin: 0 4px;
}

.date-select-type-2 {
    width: 100%;
    height: 100%;
}
.date-select-type-2 input {
    display: block;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    color: #121619;
    padding: 0 12px;
}
.date-select-type-2 img {
    position: absolute;
    width: 16px;
    cursor: pointer;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

/* ------------------------------------------------------------------------------- */

/* 페이지 정보 박스 */
.page-infor-box .all-text {
    font-size: 14px;
}
.page-infor-box .all-text .number {
    margin-left: 10px;
}
.page-infor-box .page-number-box .number-input {
    width: 50px;
    height: 36px;
}
.page-infor-box .page-number-box .number-input input {
    width: 100%;
    height: 100%;
    color: #A2A9B0;
    box-sizing: border-box;
    border: 1px solid #DDE1E6;
    background: transparent;
    font-size: 13px;
    padding-left: 12px;
}
.page-infor-box .page-number-box .text {
    margin: 0 10px;
    font-size: 14px;
}
.page-infor-box .page-number-box .btn {
    width: 36px;
    height: 36px;
    box-sizing: border-box;
    border: 1px solid #DDE1E6;
}
.page-infor-box .page-number-box .prev-btn {
    margin-right: 4px;
}
.page-infor-box .page-number-box .btn .ico-box {
    width: 18px;
}

/* ------------------------------------------------------------------------------- */

/* 텍스트영역 타입 */
.textarea-type-1 {
    width: 100%;
    height: 40px;
}
.textarea-type-1 textarea {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: none;
    padding: 0 12px;
    color: #373B3E;
    background: transparent;
    font-size: 14px;
}
.textarea-type-1 textarea::placeholder {
    color: #A2A9B0;
}

/* ------------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------------- */
/* 탭메뉴 타입 */

.tab-menu-type-2 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    min-width: 320px;
}


.tab-menu-type-2 > li:not(:last-child) {

    margin-right: 0.8rem;
}

.tab-menu-type-2 > li > a {
    box-sizing: border-box;
    padding: 0.8rem 1rem;
    color: #697077;
    border-radius: 12px;
    background: #fff;
}

.tab-menu-type-2 > li > a:hover {
    background: #FFF4FB;
    color: #FF6093;
}

.tab-menu-type-2 > li > a.active {
    background: #FFF4FB;
    color: #FF6093;
}

/* ------------------------------------------------------------------------------- */
/* 인풋 타입 */

.input-type-1.h48 {
    height: 48px;
}
.input-type-1 input {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: 1px solid #DDE1E6;
    border-radius: 8px;
    padding: 0 20px;
    color: #121619;
    background: transparent;
}
.input-type-1 input.pd20 {
    padding: 0 20px;
}
.input-type-1 input.f16 {
    font-size: 16px;
}
.input-type-1 input::placeholder {
    color: #A2A9B0;
}

.input-type-2 {
    width: 100%;
    height: 100%;
}
.input-type-2 input {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: none;
    padding: 0 12px;
    color: #373B3E;
    background: transparent;
    font-size: 15px;
}
.input-type-2 input::placeholder {
    color: #A2A9B0;
}


.no-correction-input-type-1 {
    width: 100%;
    height: 100%;
}
.no-correction-input-type-1 input {
    width: 100%;
    height: 100%;
    display: block;
    box-sizing: border-box;
    border: none;
    padding: 0 12px;
    color: #000000;
    background: transparent;
    font-size: 15px;
}
.no-correction-input-type-1 input::placeholder {
    color: #A2A9B0;
}

/* ------------------------------------------------------------------------------- */

/* 버튼 타입 */

.btn-type-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.btn-type-2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.btn-type-3 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 0 10px;
    height: 36px;
    border-radius: 4px;
    font-size: 14px;
}

.btn-type-4 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 0 10px;
    height: 36px;
    border-radius: 12px;
    font-size: 14px;
    background-color: #FFF4FB;
}

/* ------------------------------------------------------------------------------- */

/*  체크 텍스트 타입 */

.check-text-type-1 input[type=checkbox] {
    display: none;
}
.check-text-type-1 input[type=checkbox] + label {
    display: inline-block;
    cursor: pointer;
    line-height: 20px;
    padding-left: 28px;
    background: url(/Content/img/ico_check_1.svg) left/20px no-repeat;
    font-size: 14px;
    color: #252A2E;
}
.check-text-type-1 input[type=checkbox]:checked + label {
    background: url(/Content/img/ico_check_1_active.svg) left/20px no-repeat;
}

.check-text-2-area {
    box-sizing: border-box;
    padding: 0 12px;
}
.check-text-2-area-2 {
    margin-top: 8px;
}
.check-text-2-area .check-text-type-2:not(:last-child) {
    margin-right: 10px;
}
.check-text-type-2 input[type=radio] {
    display: none;
}
.check-text-type-2 input[type=radio] + label {
    display: inline-block;
    cursor: pointer;
    line-height: 16px;
    padding-left: 20px;
    background: url(/Content/img/ico_check_2.svg) left/16px no-repeat;
    font-size: 14px;
    color: #121619;
}
.check-text-type-2 input[type=radio]:checked + label {
    background: url(/Content/img/ico_check_2_active.svg) left/16px no-repeat;
} 

.check-text-3-area .check-text-type-3:not(:last-child) {
    margin-right: 16px;
}
.check-text-type-3 input[type=checkbox] {
    display: none;
}
.check-text-type-3 input[type=checkbox] + label {
    display: inline-block;
    cursor: pointer;
    line-height: 20px;
    padding-left: 24px;
    background: url(/Content/img/ico_check_1.svg) left/20px no-repeat;
    font-size: 14px;
    color: #121619;
}
.check-text-type-3 input[type=checkbox]:checked + label {
    background: url(/Content/img/ico_check_1_active.svg) left/20px no-repeat;
}

/* ------------------------------------------------------------------------------- */

/* 셀렉트 타입 */

.select-type-1.h36 {
    height: 36px;
}
.select-type-1.h36 select {
    font-size: 14px;
    padding: 0 20% 0 10px;
    background: url(/Content/img/arrow_bottom_A2A9B0.svg) no-repeat 94% 50%/12px auto;
}
.select-type-1 select {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: 1px solid #DDE1E6;
    border-radius: 4px;
    color: #697077;
}

.select-type-2 {
    width: 100%;
    height: 100%;
}
.select-type-2 select {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: none;
    border-radius: 4px;
    color: #697077;
    font-size: 14px;
    padding: 0 15% 0 12px;
    background: url(/Content/img/arrow_bottom_A2A9B0.svg) no-repeat 94% 50%/16px auto;
}

/* ------------------------------------------------------------------------------- */

/* 검색 타입 */

.search-type-1 .search-box {
    width: 160px;
    height: 36px;
    margin-right: 4px;
}
.search-type-1 .search-box input {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: none;
    background: #F9F9F9;
    padding: 0 10px;
    border-radius: 4px;
    color: #121619;
    font-size: 14px;
    border: 1px solid #e9e9e9;
}
.search-type-1 .search-box input::placeholder {
    color: #A2A9B0;
}
.search-type-1 .search-btn {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    background: #FFFBFE;
    border: 1px solid #e9e9e9;
}
.search-type-1 .search-btn .ico-box {
    width: 16px;
}

/* ------------------------------------------------------------------------------- */

/* 파일 타입 */

.file-type-1 input[type="file"] {
    display: none;
}
.file-type-1 input[type="file"] + label {
    display: block;
    width: 100%;
    height: 100%;
}
.file-type-1 input[type="file"] + label .text {
    line-height: 28px;
    height: 100%;
}

/* ------------------------------------------------------------------------------- */

/* 테이블 타입 */

table tr .tal {
    text-align: left !important;
}
table tr .tar {
    text-align: right !important;
}
table tr .cm {
    color: #FF6093 !important;
}
table tr .cb {
    color: #0084FF !important;
}
table tr .cg {
    color: #26A85B !important;
}
table tr .c121619 {
    color: #121619 !important;
}
table tr .input-btn-1 {
    min-width: 60px;
    width: 60px;
    height: 28px;
    font-size: 14px;
}

table tr .input-btn-2 {
    min-width: 80px;
    width: 80px;
    height: 28px;
    font-size: 14px;
}

.table-type-1 tr th {
    height:52px;
    box-sizing: border-box;
    padding: 0 12px;
    background: #F2F4F8;
    color: #121619;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}
.table-type-1 tr th:first-child {
    border-left: none;
    border-radius: 12px 0 0 0;
}
.table-type-1 tr th:last-child {
    border-right: none;
}
 
#dt_tree .table-type-1 tr td {
    height: 32px;
}
.table-type-1 tr td {
    height: 44px;
    box-sizing: border-box;
    padding: 0 12px;
    background: #FFF;
    color: #373B3E;
    font-size: 14px;
    font-weight: inherit;
    text-align: center;
    border-bottom: 1px solid #e9e9e9;
    cursor: pointer;
}
.table-type-1 tr:hover td {
    background: #f5f5f5;
}
.table-type-1 tr.active td {
    background: #FFF4FB;
}
.table-type-1 tr td:first-child {
    border-left: none;
}
.table-type-1 tr td:last-child {
    border-right: none;
}
.table-type-1 tr.list.simple-tree-table-closed .arrow-ico {
    transform: rotate(180deg);
}

.table-type-1 tr td.title {
    padding-right: 48px;
}
.table-type-1 tr.list-2 td.title {
    padding-left: 28px;
}
.table-type-1 tr.list-3 td.title {
    padding-left: 44px;
}
.table-type-1 tr.list-4 td.title {
    padding-left: 60px;
}
.table-type-1 tr.list-5 td.title {
    padding-left: 76px;
}
.table-type-1 tr.list-6 td.title {
    padding-left: 100px;
}
.table-type-1 tr.list-7 td.title {
    padding-left: 120px;
}
.table-type-1 tr.list-8 td.title {
    padding-left: 140px;
}
.table-type-1 tr.list-9 td.title {
    padding-left: 160px;
}
.table-type-1 tr.list-10 td.title {
    padding-left: 180px;
}
.table-type-1 tr.list-11 td.title {
    padding-left: 2000px;
}
.table-type-1 tr.list-12 td.title {
    padding-left: 220px;
}
.table-type-1 tr.list-13 td.title {
    padding-left: 240px;
}
.table-type-1 tr.list-14 td.title {
    padding-left: 260px;
}
.table-type-1 tr td.title .arrow-ico {
    width: 16px;
    margin-right: 8px;
}

.table-type-2 thead th {
    background: #FAFAFA !important;
}
.table-type-2 thead th:first-child {
    border-left: none !important; 
}
.table-type-2 thead th:last-child {
    border-right: none !important; 
}
.table-type-2 tr th {
    max-width: 120px;
    min-width: 120px;
    width: 120px;
    height: 44px;
    box-sizing: border-box;
    background: #F2F4F8;
    color: #121619;
    font-size: 15px;
    font-weight: inherit;
    font-weight: 600;
    text-align: center;
    border: 1px solid #DDE1E6;
}
.table-type-2 tr th.w140 {
    max-width: 140px;
    min-width: 140px;
    width: 140px;
}
.table-type-2 tr th:first-child {
    border-left: none;
}
.table-type-2 tr td {
    min-height: 44px;
    box-sizing: border-box;
    padding: 12px 0;
    background: #FFF;
    color: #121619;
    font-size: 14px;
    font-weight: inherit;
    text-align: left;
    border: 1px solid #DDE1E6;
}
.table-type-2 tr td:last-child {
    border-right: none;
}
.table-type-2 tr td.file.active .file-type-1 {
    display: none;
}
.table-type-2 tr td.file .input-type-2 {
    width: calc(100% - 68px);
}
.table-type-2 tr td.file .input-type-2 input {
    padding-right: 32px;
    text-overflow: ellipsis;
}
.table-type-2 tr td.file .input-type-2 .file-x-btn {
    width: 16px;
    right: 8px;
    display: none;
}
.table-type-2 tr td.file.active .input-type-2 .file-x-btn {
    display: block;
}
.table-type-2 tr td.file .check-area {
    width: 60px;
    box-sizing: border-box;
    padding-right: 4px;
    display: none;
}
.table-type-2 tr td.file.active .check-area {
    display: block;
}
.table-type-2 tr td.file .check-area .check-ico {
    width: 24px;
}
.table-type-2 tr td .date-check-box {
    padding-right: 16px;
}

/* ------------------------------------------------------------------------------- */

/* 토스팅 메세지 영역 */
.toasting-msg {
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
    max-width: auto !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    font-weight: 400;
    bottom: 20px !important;
    left: 20px !important;
    z-index: 9999 !important;
    background: #28a745;
        position: fixed;
            display: none;

}
.toasting-msg.active {
    opacity: 1;
    transform: translateY(0);
        display: flex;
}
.toasting-msg .ico-box {
    width: 20px;
    margin-right: 12px;
}
.toasting-msg .text {
    font-size: 14px !important;
    font-weight: 700;
    color: #fff !important;
}
.toasting-msg .x-btn {
    width: 24px;
    display: none;
}


.toasting-msg-move {
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
    max-width: auto !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    font-weight: 400;
    background: #f9f9f9;
    left: 20px !important;
    bottom: 20px !important;
    z-index: 9999 !important;
        position: fixed;
            display: none;

}

    .toasting-msg-move.active {
        opacity: 1;
        transform: translateY(0);
            display: flex;
    }

    .toasting-msg-move .ico-box {
        width: 20px;
        margin-right: 12px;
    }

    .toasting-msg-move .text {
        font-size: 14px;
        font-weight: 700;
        color: #fff !important;
    }

    .toasting-msg-move .x-btn {
        width: 24px;
         display: none;
    }


/* negative 토스팅 메세지 영역 */
.negative-toasting-msg {
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
    max-width: auto !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    font-weight: 400;
    background: #dc3545 !important;
    left: 20px !important;
    bottom: 20px !important;
    z-index: 9999 !important;
    position: fixed;
    display: none;
}
.negative-toasting-msg .text {
    font-size: 14px;
    font-weight: 400;
    color: #fff !important;
}
.negative-toasting-msg.active {
    opacity: 1;
    transform: translateY(0);
    display: flex;
}
.negative-toasting-msg .ico-box {
    width: 20px;
    margin-right: 12px;
}
.negative-toasting-msg .x-btn {
    width: 24px;
     display: none;
}

/* ------------------------------------------------------------------------------- */

/* 모달 타입 */

.modal-type-1 {
    width: 300px;
    height: 290px;
    border-radius: 12px;
    box-sizing: border-box;
    padding: 40px 32px 32px 32px;
}

.modal-type-4 {
    width: 280px;
    border-radius: 12px;
    overflow: hidden;
}
.modal-type-4 .cnt-box {
    background: #fff;
    box-sizing: border-box;
    padding: 32px 12px;
}
.modal-type-4 .btn-box .btn-type-1 {
    height: 48px;
    font-size: 15px;
}

/* ------------------------------------------------------------------------------- */
/* 추가 모달 타입 */

.add-modal-type-1 {
    box-sizing: border-box;
    padding: 2rem;
    background: #F2F4F8;
    border: 1px solid #DDE1E6;
    border-radius: 16px;
    white-space: nowrap;
    display: none;
    bottom: 100%;
    right: -2.5rem;
    transform: translateY(-1.6rem);
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.08), 3px 3px 3px rgba(44, 43, 42, 0.1), inset 0px -14px 62px rgba(0, 0, 0, 0.03);
}
.add-modal-type-1.active {
    display: block;
}
.add-modal-type-1::after {
    content: "";
    display: block;
    width: 1.2rem;
    height: 1.2rem;
    box-sizing: border-box;
    border-right: 1px solid #DDE1E6;
    border-bottom: 1px solid #DDE1E6;
    background: #F2F4F8;
    position: absolute;
    top: 95%;
    right: 2.6rem;
    transform: rotate(45deg);
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.08), 3px 3px 3px rgba(44, 43, 42, 0.1), inset 0px -14px 62px rgba(0, 0, 0, 0.03);
}

.add-modal-type-2 {
    width: 27.2rem;
    height: 9.2rem;
    box-sizing: border-box;
    padding: 1.6rem;
    background: #F2F4F8;
    border: 1px solid #DDE1E6;
    border-radius: 8px;
    display: none;
    bottom: 0;
    left: calc(100% + 1.2rem);
}
.add-modal-type-2.active {
    display: block;
}

.add-modal-type-3 {
    box-sizing: border-box;
    padding: 2rem;
    background: #F2F4F8;
    border: 1px solid #DDE1E6;
    border-radius: 16px;
    white-space: nowrap;
    display: none;
    bottom: 100%;
    right: -20.5rem;
    transform: translateY(-1.6rem);
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.08), 3px 3px 3px rgba(44, 43, 42, 0.1), inset 0px -14px 62px rgba(0, 0, 0, 0.03);
}
.add-modal-type-3.active {
    display: block;
}
.add-modal-type-3::after {
    content: "";
    display: block;
    width: 1.2rem;
    height: 1.2rem;
    box-sizing: border-box;
    border-right: 1px solid #DDE1E6;
    border-bottom: 1px solid #DDE1E6;
    background: #F2F4F8;
    position: absolute;
    top: 95%;
    right: 20.6rem;
    transform: rotate(45deg);
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.08), 3px 3px 3px rgba(44, 43, 42, 0.1), inset 0px -14px 62px rgba(0, 0, 0, 0.03);
}

/* ------------------------------------------------------------------------------- */

/* 모달 영역 */

.modal-area {
    background: rgba(0,0,0,0.4);
    display: none;
}
.modal-area.active {
    display: block;
}
.modal-area .modal-box {
    display: none;
}
.modal-area .modal-box.active {
    display: flex;
}
.modal-area .modal-box .x-btn {
    width: 20px;
    top: 24px;
    right: 24px;
}

/* 회원사 설정 모달 */
.member-company-settings-modal {
    border-radius: 12px;
    width: 900px;
    box-sizing: border-box;
    padding: 44px 28px 28px 28px;
}
.member-company-settings-modal h3 {
    font-size: 20px;
}
.member-company-settings-modal .tab-menu-box {
    margin-top: 36px;
}
.member-company-settings-modal .tab-menu-box li:not(:last-child) {
    margin-right: 20px;
}
.member-company-settings-modal .tab-menu-box li a {
    font-size: 16px;
    color: #878D96;
}
.member-company-settings-modal .tab-menu-box li a.active {
    color: #FF6093;
    font-weight: 700;
}
.member-company-settings-modal .tab-menu-box li a.active::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #FF6093;
    position: absolute;
    bottom: -2px;
    left: 0;
}
.member-company-settings-modal .tab-cnt-box li#tab1 {
    margin-top: 16px;
    max-height: calc(100vh - 237px);
}
.member-company-settings-modal .tab-cnt-box li#tab1 .table-type-2.tb-ver {
    display: none;
}
.agent-pop-div-save-m {
    display: none;
}

.member-company-settings-modal .tab-cnt-box li#tab2 {
    margin-top: 20px;
}
.member-company-settings-modal .tab-cnt-box li#tab2 .list-box .list {
    width: calc(25% - 10.5px);
    margin-right: 14px;
    box-sizing: border-box;
    background: #FAFAFA;
    border-radius: 8px;
    height: 320px;
    padding: 16px 20px;
}
.member-company-settings-modal .tab-cnt-box li#tab2 .list-box .list:last-child {
    margin-right: 0;
}
.member-company-settings-modal .tab-cnt-box li#tab2 .list-box .list .title-box {
    height: 36px;
}
.member-company-settings-modal .tab-cnt-box li#tab2 .list-box .list .title-box .text {
    font-size: 15px;
}
.member-company-settings-modal .tab-cnt-box li#tab2 .list-box .list .check-list-box li {
    margin-top: 20px;
}
.member-company-settings-modal .btn-area {
    margin-top: 24px;
}
.member-company-settings-modal .btn-area .save-btn {
    width: 120px;
    height: 44px;
    font-size: 16px;
}
.member-company-settings-modal .table-type-2 .select-type-2 {
    width: 200px;
}

.member-company-settings-modal .tab-cnt-box li#tab3 {
    margin-top: 20px;
}

    .member-company-settings-modal .tab-cnt-box li#tab3 .list-box .list {
        width: calc(25% - 10.5px);
        margin-right: 14px;
        box-sizing: border-box;
        background: #FAFAFA;
        border-radius: 8px;
        height: 320px;
        padding: 16px 20px;
    }

        .member-company-settings-modal .tab-cnt-box li#tab3 .list-box .list:last-child {
            margin-right: 0;
        }

        .member-company-settings-modal .tab-cnt-box li#tab3 .list-box .list .title-box {
            height: 36px;
        }

            .member-company-settings-modal .tab-cnt-box li#tab3 .list-box .list .title-box .text {
                font-size: 15px;
            }

        .member-company-settings-modal .tab-cnt-box li#tab3 .list-box .list .check-list-box li {
            margin-top: 20px;
        }

.loginpage-member-company-settings-modal {
    border-radius: 12px;
    width: 900px;
    box-sizing: border-box;
    padding: 44px 28px 28px 28px;
}
.loginpage-member-company-settings-modal h3 {
    font-size: 20px;
}
.loginpage-member-company-settings-modal .tab-menu-box {
    margin-top: 36px;
}
.loginpage-member-company-settings-modal .tab-menu-box li:not(:last-child) {
    margin-right: 20px;
}
.loginpage-member-company-settings-modal .tab-menu-box li a {
    font-size: 16px;
    color: #878D96;
}
.loginpage-member-company-settings-modal .tab-menu-box li a.active {
    color: #FF6093;
    font-weight: 600;
}
.loginpage-member-company-settings-modal .tab-menu-box li a.active::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #FF6093;
    position: absolute;
    bottom: -2px;
    left: 0;
}
.loginpage-member-company-settings-modal .tab-cnt-box li#tab1 {
    margin-top: 16px;
    max-height: calc(100vh - 237px);
}
.loginpage-member-company-settings-modal .tab-cnt-box li#tab1 .table-type-2.tb-ver {
    display: none;
}
.loginpage-member-company-settings-modal .tab-cnt-box li#tab2 {
    margin-top: 20px;
}
.loginpage-member-company-settings-modal .tab-cnt-box li#tab2 .list-box .list {
    width: calc(25% - 10.5px);
    margin-right: 14px;
    box-sizing: border-box;
    background: #FAFAFA;
    border-radius: 8px;
    height: 320px;
    padding: 16px 20px;
}
.loginpage-member-company-settings-modal .tab-cnt-box li#tab2 .list-box .list:last-child {
    margin-right: 0;
}
.loginpage-member-company-settings-modal .tab-cnt-box li#tab2 .list-box .list .title-box {
    height: 36px;
}
.loginpage-member-company-settings-modal .tab-cnt-box li#tab2 .list-box .list .title-box .text {
    font-size: 15px;
}
.loginpage-member-company-settings-modal .tab-cnt-box li#tab2 .list-box .list .check-list-box li {
    margin-top: 20px;
}
.loginpage-member-company-settings-modal .btn-area {
    margin-top: 24px;
}
.loginpage-member-company-settings-modal .btn-area .save-btn {
    width: 120px;
    height: 44px;
    font-size: 16px;
}
.loginpage-member-company-settings-modal .table-type-2 .select-type-2 {
    width: 200px;
}




.modal-area-2 {
    background: rgba(0,0,0,0.4);
    display: none;
}
.modal-area-2.active {
    display: block;
}
.modal-area-2 .modal-box {
    display: none;
}
.modal-area-2 .modal-box.active {
    display: block;
}
.modal-area-2 .modal-box .x-btn {
    width: 20px;
    top: 24px;
    right: 24px;
}



.modal-area-3 {
    background: rgba(0,0,0,0.4);
    display: none;
}

.modal-area-3.active {
    display: block;
}

.modal-area-3 .modal-box {
    display: none;
}

.modal-area-3 .modal-box.active {
    display: block;
}

.modal-area-3 .modal-box .x-btn {
    width: 20px;
    top: 24px;
    right: 24px;
}

.modal-area-4 {
    background: rgba(0,0,0,0.4);
    display: none;
}

.modal-area-4.active {
    display: block;
}

.modal-area-4 .modal-box {
    display: none;
}

.modal-area-4 .modal-box.active {
    display: block;
}

.modal-area-4 .modal-box .x-btn {
    width: 20px;
    top: 24px;
    right: 24px;
}

.modal-area-5 {
    background: rgba(0,0,0,0.4);
    display: none;
}

    .modal-area-5.active {
        display: block;
    }

    .modal-area-5 .modal-box {
        display: none;
    }

        .modal-area-5 .modal-box.active {
            display: block;
        }

        .modal-area-5 .modal-box .x-btn {
            width: 20px;
            top: 24px;
            right: 24px;
        }

.modal-area-6 {
    background: rgba(0,0,0,0.4);
    display: none;
}

    .modal-area-6.active {
        display: block;
    }

    .modal-area-6 .modal-box {
        display: none;
    }

        .modal-area-6 .modal-box.active {
            display: block;
        }

        .modal-area-6 .modal-box .x-btn {
            width: 20px;
            top: 24px;
            right: 24px;
        }

.modal-area-7 {
    background: rgba(0,0,0,0.4);
    display: none;
}

    .modal-area-7.active {
        display: block;
    }

    .modal-area-7 .modal-box {
        display: none;
    }

        .modal-area-7 .modal-box.active {
            display: block;
        }

        .modal-area-7 .modal-box .x-btn {
            width: 20px;
            top: 24px;
            right: 24px;
        }

.modal-area-8 {
    background: rgba(0,0,0,0.4);
    display: none;
}

    .modal-area-8.active {
        display: block;
    }

    .modal-area-8 .modal-box {
        display: none;
    }

        .modal-area-8 .modal-box.active {
            display: block;
        }

        .modal-area-8 .modal-box .x-btn {
            width: 20px;
            top: 24px;
            right: 24px;
        }

.modal-area-9 {
    background: rgba(0,0,0,0.4);
    display: none;
}

    .modal-area-9.active {
        display: block;
    }

    .modal-area-9 .modal-box {
        display: none;
    }

        .modal-area-9 .modal-box.active {
            display: block;
        }

        .modal-area-9 .modal-box .x-btn {
            width: 20px;
            top: 24px;
            right: 24px;
        }

.modal-area-10 {
    background: rgba(0,0,0,0.4);
    display: none;
}

    .modal-area-10.active {
        display: block;
    }

    .modal-area-10 .modal-box {
        display: none;
    }

        .modal-area-10 .modal-box.active {
            display: block;
        }

        .modal-area-10 .modal-box .x-btn {
            width: 20px;
            top: 24px;
            right: 24px;
        }

.modal-area-11 {
    background: rgba(0,0,0,0.4);
    display: none;
}

    .modal-area-11.active {
        display: block;
    }

    .modal-area-11 .modal-box {
        display: none;
    }

        .modal-area-11 .modal-box.active {
            display: block;
        }

        .modal-area-11 .modal-box .x-btn {
            width: 20px;
            top: 24px;
            right: 24px;
        }

.modal-area-12 {
    background: rgba(0,0,0,0.4);
    display: none;
}

    .modal-area-12.active {
        display: block;
    }

    .modal-area-12 .modal-box {
        display: none;
    }

        .modal-area-12 .modal-box.active {
            display: block;
        }

        .modal-area-12 .modal-box .x-btn {
            width: 20px;
            top: 24px;
            right: 24px;
        }

.modal-area-13 {
    background: rgba(0,0,0,0.4);
    display: none;
}

    .modal-area-13.active {
        display: block;
    }

    .modal-area-13 .modal-box {
        display: none;
    }

        .modal-area-13 .modal-box.active {
            display: block;
        }

        .modal-area-13 .modal-box .x-btn {
            width: 20px;
            top: 24px;
            right: 24px;
        }

.modal-area-14 {
    background: rgba(0,0,0,0.4);
    display: none;
}

    .modal-area-14.active {
        display: block;
    }

    .modal-area-14 .modal-box {
        display: none;
    }

        .modal-area-14 .modal-box.active {
            display: block;
        }

        .modal-area-14 .modal-box .x-btn {
            width: 20px;
            top: 24px;
            right: 24px;
        }


.modal-area-15 {
    background: rgba(0,0,0,0.4);
    display: none;
}

    .modal-area-15.active {
        display: block;
    }

    .modal-area-15 .modal-box {
        display: none;
    }

        .modal-area-15 .modal-box.active {
            display: block;
        }

        .modal-area-15 .modal-box .x-btn {
            width: 20px;
            top: 24px;
            right: 24px;
        }


.modal-area-16 {
    background: rgba(0,0,0,0.4);
    display: none;
}

    .modal-area-16.active {
        display: block;
    }

    .modal-area-16 .modal-box {
        display: none;
    }

        .modal-area-16 .modal-box.active {
            display: block;
        }

        .modal-area-16 .modal-box .x-btn {
            width: 20px;
            top: 24px;
            right: 24px;
        }


.modal-area-17 {
    background: rgba(0,0,0,0.4);
    display: none;
}

    .modal-area-17.active {
        display: block;
    }

    .modal-area-17 .modal-box {
        display: none;
    }

        .modal-area-17 .modal-box.active {
            display: block;
        }

        .modal-area-17 .modal-box .x-btn {
            width: 20px;
            top: 24px;
            right: 24px;
        }

.modal-area-18 {
    background: rgba(0,0,0,0.4);
    display: none;
}

    .modal-area-18.active {
        display: block;
    }

    .modal-area-18 .modal-box {
        display: none;
    }

        .modal-area-18 .modal-box.active {
            display: block;
        }

        .modal-area-18 .modal-box .x-btn {
            width: 20px;
            top: 24px;
            right: 24px;
        }


.modal-area-19 {
    background: rgba(0,0,0,0.4);
    display: none;
}

    .modal-area-19.active {
        display: block;
    }

    .modal-area-19 .modal-box {
        display: none;
    }

        .modal-area-19 .modal-box.active {
            display: block;
        }

        .modal-area-19 .modal-box .x-btn {
            width: 20px;
            top: 24px;
            right: 24px;
        }


.modal-area-20 {
    background: rgba(0,0,0,0.4);
    display: none;
}

    .modal-area-20.active {
        display: block;
    }

    .modal-area-20 .modal-box {
        display: none;
    }

        .modal-area-20 .modal-box.active {
            display: block;
        }

        .modal-area-20 .modal-box .x-btn {
            width: 20px;
            top: 24px;
            right: 24px;
        }

.modal-area-21 {
    background: rgba(0,0,0,0.4);
    display: none;
}

    .modal-area-21.active {
        display: block;
    }

    .modal-area-21 .modal-box {
        display: none;
    }

        .modal-area-21 .modal-box.active {
            display: block;
        }

        .modal-area-21 .modal-box .x-btn {
            width: 20px;
            top: 24px;
            right: 24px;
        }


.modal-area-22 {
    background: rgba(0,0,0,0.4);
    display: none;
}

    .modal-area-22.active {
        display: block;
    }

    .modal-area-22 .modal-box {
        display: none;
    }

        .modal-area-22 .modal-box.active {
            display: block;
        }

        .modal-area-22 .modal-box .x-btn {
            width: 20px;
            top: 24px;
            right: 24px;
        }

.modal-area-23 {
    background: rgba(0,0,0,0.4);
    display: none;
}

    .modal-area-23.active {
        display: block;
    }

    .modal-area-23 .modal-box {
        display: none;
    }

        .modal-area-23 .modal-box.active {
            display: block;
        }

        .modal-area-23 .modal-box .x-btn {
            width: 20px;
            top: 24px;
            right: 24px;
        }

.modal-area-24 {
    background: rgba(0,0,0,0.4);
    display: none;
}

    .modal-area-24.active {
        display: block;
    }

    .modal-area-24 .modal-box {
        display: none;
    }

        .modal-area-24 .modal-box.active {
            display: block;
        }

        .modal-area-24 .modal-box .x-btn {
            width: 20px;
            top: 24px;
            right: 24px;
        }

.modal-area-25 {
    background: rgba(0,0,0,0.4);
    display: none;
}

    .modal-area-25.active {
        display: block;
    }

    .modal-area-25 .modal-box {
        display: none;
    }

        .modal-area-25 .modal-box.active {
            display: block;
        }

        .modal-area-25 .modal-box .x-btn {
            width: 20px;
            top: 24px;
            right: 24px;
        }

.modal-area-26 {
    background: rgba(0,0,0,0.4);
    display: none;
}

    .modal-area-26.active {
        display: block;
    }

    .modal-area-26 .modal-box {
        display: none;
    }

        .modal-area-26 .modal-box.active {
            display: block;
        }

        .modal-area-26 .modal-box .x-btn {
            width: 20px;
            top: 24px;
            right: 24px;
        }

.modal-area-27 {
    background: rgba(0,0,0,0.4);
    display: none;
}

    .modal-area-27.active {
        display: block;
    }

    .modal-area-27 .modal-box {
        display: none;
    }

        .modal-area-27 .modal-box.active {
            display: block;
        }

        .modal-area-27 .modal-box .x-btn {
            width: 20px;
            top: 24px;
            right: 24px;
        }


.modal-area-28 {
    background: rgba(0,0,0,0.4);
    display: none;
}

    .modal-area-28.active {
        display: block;
    }

    .modal-area-28 .modal-box {
        display: none;
    }

        .modal-area-28 .modal-box.active {
            display: block;
        }

        .modal-area-28 .modal-box .x-btn {
            width: 20px;
            top: 24px;
            right: 24px;
        }

.modal-area-29 {
    background: rgba(0,0,0,0.4);
    display: none;
}

    .modal-area-29.active {
        display: block;
    }

    .modal-area-29 .modal-box {
        display: none;
    }

        .modal-area-29 .modal-box.active {
            display: block;
        }

        .modal-area-29 .modal-box .x-btn {
            width: 20px;
            top: 24px;
            right: 24px;
        }

.modal-area-30 {
    background: rgba(0,0,0,0.4);
    display: none;
}

    .modal-area-30.active {
        display: block;
    }

    .modal-area-30 .modal-box {
        display: none;
    }

        .modal-area-30 .modal-box.active {
            display: block;
        }

        .modal-area-30 .modal-box .x-btn {
            width: 20px;
            top: 24px;
            right: 24px;
        }

.modal-area-31 {
    background: rgba(0,0,0,0.4);
    display: none;
}

    .modal-area-31.active {
        display: block;
    }

    .modal-area-31 .modal-box {
        display: none;
    }

        .modal-area-31 .modal-box.active {
            display: block;
        }

        .modal-area-31 .modal-box .x-btn {
            width: 20px;
            top: 24px;
            right: 24px;
        }

.modal-area-32 {
    background: rgba(0,0,0,0.4);
    display: none;
}

    .modal-area-32.active {
        display: block;
    }

    .modal-area-32 .modal-box {
        display: none;
    }

        .modal-area-32 .modal-box.active {
            display: block;
        }

        .modal-area-32 .modal-box .x-btn {
            width: 20px;
            top: 24px;
            right: 24px;
        }

.modal-area-33 {
    background: rgba(0,0,0,0.4);
    display: none;
}

    .modal-area-33.active {
        display: block;
    }

    .modal-area-33 .modal-box {
        display: none;
    }

        .modal-area-33 .modal-box.active {
            display: block;
        }

        .modal-area-33 .modal-box .x-btn {
            width: 20px;
            top: 24px;
            right: 24px;
        }

.modal-area-34 {
    background: rgba(0,0,0,0.4);
    display: none;
}

    .modal-area-34.active {
        display: block;
    }

    .modal-area-34 .modal-box {
        display: none;
    }

        .modal-area-34 .modal-box.active {
            display: block;
        }

        .modal-area-34 .modal-box .x-btn {
            width: 20px;
            top: 24px;
            right: 24px;
        }

.modal-area-88 {
    background: rgba(0,0,0,0.4);
    display: none;
}

    .modal-area-88.active {
        display: block;
    }

    .modal-area-88 .modal-box {
        display: none;
    }

        .modal-area-88 .modal-box.active {
            display: block;
        }

        .modal-area-88 .modal-box .x-btn {
            width: 20px;
            top: 24px;
            right: 24px;
        }

.modal-area-88-m {
    background: rgba(0,0,0,0.4);
    display: none;
}

    .modal-area-88-m.active {
        display: block;
    }

    .modal-area-88-m .modal-box {
        display: none;
    }

        .modal-area-88-m .modal-box.active {
            display: block;
        }

        .modal-area-88-m .modal-box .x-btn {
            width: 20px;
            top: 24px;
            right: 24px;
        }

.modal-area-notice-agent {
    background: rgba(0,0,0,0.4);
    display: none;
}

    .modal-area-notice-agent.active {
        display: block;
    }

    .modal-area-notice-agent .modal-box {
        display: none;
    }

        .modal-area-notice-agent .modal-box.active {
            display: block;
        }

        .modal-area-notice-agent .modal-box .x-btn {
            width: 20px;
            top: 24px;
            right: 24px;
        }

.modal-area-agent-amt-withdraw {
    background: rgba(0,0,0,0.4);
    display: none;
}

    .modal-area-agent-amt-withdraw.active {
        display: block;
    }

    .modal-area-agent-amt-withdraw .modal-box {
        display: none;
    }

        .modal-area-agent-amt-withdraw .modal-box.active {
            display: block;
        }

        .modal-area-agent-amt-withdraw .modal-box .x-btn {
            width: 20px;
            top: 24px;
            right: 24px;
        }

.modal-area-withhold {
    background: rgba(0,0,0,0.4);
    display: none;
}

    .modal-area-withhold.active {
        display: block;
    }

    .modal-area-withhold .modal-box {
        display: none;
    }

        .modal-area-withhold .modal-box.active {
            display: block;
        }

        .modal-area-withhold .modal-box .x-btn {
            width: 20px;
            top: 24px;
            right: 24px;
        }

.modal-area-withhold-cancel {
    background: rgba(0,0,0,0.4);
    display: none;
}

    .modal-area-withhold-cancel.active {
        display: block;
    }

    .modal-area-withhold-cancel .modal-box {
        display: none;
    }

        .modal-area-withhold-cancel .modal-box.active {
            display: block;
        }

        .modal-area-withhold-cancel .modal-box .x-btn {
            width: 20px;
            top: 24px;
            right: 24px;
        }

.modal-area-notice-agent-toasting {
    background: rgba(0,0,0,0.4);
    display: none;
}

    .modal-area-notice-agent-toasting.active {
        display: block;
    }

    .modal-area-notice-agent-toasting .modal-box {
        display: none;
    }

        .modal-area-notice-agent-toasting .modal-box.active {
            display: block;
        }

        .modal-area-notice-agent-toasting .modal-box .x-btn {
            width: 20px;
            top: 24px;
            right: 24px;
        }

/* 라이더 정산서 모달 [인덱스] */
.modal-area-rider-settlement {
    background: rgba(0,0,0,0.4);
    display: none;
}

    .modal-area-rider-settlement.active {
        display: block;
    }

    .modal-area-rider-settlement .modal-box {
        display: none;
    }

    .modal-area-rider-settlement .modal-box.active {
        display: block;
    }

    .modal-area-rider-settlement .modal-box .x-btn {
        width: 20px;
        top: 24px;
        right: 24px;
    }

/* ------------------------------------------------------------------------------- */
/* ~1600 */
@media (max-width:1680px) {
    .check-text-2-area .check-text-type-2:not(:last-child) {
        margin-right: 16px;
    }

    .mobile-none {
        display: none;
    }

    /*#btn_del_open_m, #btn_save_open_m {
        width: 60px;
        height: 36px;
        margin: 3px;
    }*/

    /*#btn_del_open, #btn_del, #btn_del_cancel, #btn_save, #btn_save_cancel {
        display: none;
    }

    .btn-box-m #btn_del_open_m, #btn_del_m, #btn_del_cancel_m, #btn_save_m, #btn_save_cancel_m {
        display: block;
    }*/

    .tab-menu-box .btn-box .btn_del_open_m {
        display: block;
    }

    #auth_tab_paymoa_id_info a {
        font-size: 14px;
    }

    #auth_tab_dv_mapping_info a {
        font-size: 13px;
    }

    /* 가맹점관리 홈술로정보 */
    .homesulro-pc-btn {
        display: none;
    }
    .homesulro-m-btn {
        display: block;
    }
}
/* //~1600 */

/* ------------------------------------------------------------------------------- */

/* ~1600 */
@media (min-width:1681px) {
    .check-text-2-area .check-text-type-2:not(:last-child) {
        margin-right: 16px;
    }

    /*#btn_del_open, #btn_del, #btn_del_cancel, #btn_save, #btn_save_cancel {
        display: block;
    }

    #btn_del_m, #btn_del_cancel_m, #btn_save_m, #btn_save_cancel_m {
        display: none;
    }

    .btn-box-m {
        display: none;
    }*/

    .tab-menu-box .btn-box .btn_del_open_m {
        display: block;
    }

    table thead tr th  div .pc-none {
        visibility: hidden;
    }

    /* 가맹점관리 홈술로정보 */
    .homesulro-pc-btn {
        display: block;
    }
    .homesulro-m-btn {
        display: none;
    }
}
/* //~1600 */

/* ------------------------------------------------------------------------------- */

/* ~980 */
@media (max-width:980px) {
    .member-company-settings-modal {
        width: 648px;
        padding: 24px 28px 28px 28px;
    }
    .member-company-settings-modal .tab-menu-box {
        margin-top: 28px;
    }
    .member-company-settings-modal .tab-cnt-box li#tab1 .table-type-2 {
        display: none;
    }
    /* 231124 회원사설정 버튼 반응형 수정 */
    /*.agent-pop-div-save {
        display: none;
    }*/
    /*.agent-pop-div-save-m {
        display: block;
    }*/
    .member-company-settings-modal .tab-cnt-box li#tab1 .table-type-2.tb-ver {
        display: block;
    }
    .member-company-settings-modal .tab-cnt-box li#tab1 .table-type-2.tb-ver .input-type-2 input {
        font-size: 14px;
    }
    .member-company-settings-modal .tab-cnt-box li#tab2 {
        max-height: calc(100vh - 237px);
    }
    .member-company-settings-modal .tab-cnt-box li#tab2 .list-box {
        flex-wrap: wrap;
    }
    .member-company-settings-modal .tab-cnt-box li#tab2 .list-box .list {
        width: calc(50% - 12px);
        margin-right: 24px;
        height: 280px;        
    }
    .member-company-settings-modal .tab-cnt-box li#tab2 .list-box .list:nth-child(2n) {
        margin-right: 0;
    }
    .member-company-settings-modal .tab-cnt-box li#tab2 .list-box .list:nth-child(n+3) {
        margin-top: 24px;
    }
    .member-company-settings-modal .tab-cnt-box li#tab2 .list-box .list .title-box {
        width: 160px;
        height: 36px;
    }

    .member-company-settings-modal .tab-cnt-box li#tab3 {
        max-height: calc(100vh - 237px);
    }

    .member-company-settings-modal .tab-cnt-box li#tab3 .list-box {
        flex-wrap: wrap;
    }

    .member-company-settings-modal .tab-cnt-box li#tab3 .list-box .list {
        width: calc(50% - 12px);
        margin-right: 24px;
        height: 280px;
    }

    .member-company-settings-modal .tab-cnt-box li#tab3 .list-box .list:nth-child(2n) {
        margin-right: 0;
    }

    .member-company-settings-modal .tab-cnt-box li#tab3 .list-box .list:nth-child(n+3) {
        margin-top: 24px;
    }

    .member-company-settings-modal .tab-cnt-box li#tab3 .list-box .list .title-box {
        width: 160px;
        height: 36px;
    }

    .loginpage-member-company-settings-modal {
        width: 648px;
        padding: 24px 28px 28px 28px;
    }
    .loginpage-member-company-settings-modal .tab-menu-box {
        margin-top: 28px;
    }
    .loginpage-member-company-settings-modal .tab-cnt-box li#tab1 .table-type-2 {
        display: none;
    }
    .loginpage-member-company-settings-modal .tab-cnt-box li#tab1 .table-type-2.tb-ver {
        display: block;
    }
    .loginpage-member-company-settings-modal .tab-cnt-box li#tab1 .table-type-2.tb-ver .input-type-2 input {
        font-size: 14px;
    }
    .loginpage-member-company-settings-modal .tab-cnt-box li#tab2 {
        max-height: calc(100vh - 237px);
    }
    .loginpage-member-company-settings-modal .tab-cnt-box li#tab2 .list-box {
        flex-wrap: wrap;
    }
    .loginpage-member-company-settings-modal .tab-cnt-box li#tab2 .list-box .list {
        width: calc(50% - 12px);
        margin-right: 24px;
        height: 280px;        
    }
    .loginpage-member-company-settings-modal .tab-cnt-box li#tab2 .list-box .list:nth-child(2n) {
        margin-right: 0;
    }
    .loginpage-member-company-settings-modal .tab-cnt-box li#tab2 .list-box .list:nth-child(n+3) {
        margin-top: 24px;
    }
    .loginpage-member-company-settings-modal .tab-cnt-box li#tab2 .list-box .list .title-box {
        width: 160px;
        height: 36px;
    }

    .add_admin_table_pc {
        display: none;
    }
    .add_admin_table_mobile {
        display: block;
    }

}
/* //~980 */

@media (min-width:981px) {
    .add_admin_table_pc {
        display: block;
    }

    .add_admin_table_mobile {
        display: none;
    }
}

/* ------------------------------------------------------------------------------- */

/* ~768 */
@media (max-width:768px) {

    .negative-ttoasting-msg .ico-box {
        width: 16px;
        margin-right: 8px;
    }
    .negative-ttoasting-msg .text {
        font-size: 14px;
    }
    .negative-ttoasting-msg .x-btn {
        width: 20px;
    }
    .rider-input-container {
        width: 100%;
        min-width: 280px;
    }
}
/* //~768 */

/* ------------------------------------------------------------------------------- */

/* ~680 */
@media (max-width:680px) {
    .table-type-2 thead th {
        font-size: 16px !important;
        height: 48px !important;
    }
    .table-type-2 tr th {
        font-size: 14px;
    }
    .table-type-2 tr th.w140 {
        max-width: 120px;
        min-width: 120px;
        width: 120px;
    }
    .input-type-2 input {
        font-size: 14px;
    }

    .member-company-settings-modal {
        width: 100%;
        height: 100vh;
        padding: 24px 16px 24px 16px;
        border-radius: 0;
    }
    .member-company-settings-modal .tab-menu-box {
        margin-top: 24px;
    }
    .member-company-settings-modal .table-type-2 td .check-text-2-area-fdc {
        flex-direction: column;
        align-items: flex-start;
    }
    .member-company-settings-modal .table-type-2 td .check-text-2-area-fdc .check-text-type-2:not(:last-child) {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .member-company-settings-modal .tab-cnt-box li#tab1 {
        max-height: calc(100vh - 202px);
    }
    .member-company-settings-modal .tab-cnt-box li#tab2 {
        max-height: calc(100vh - 202px);
    }
    .member-company-settings-modal .tab-cnt-box li#tab2 .list-box .list {
        width: 100%;
        margin-right: 0;
        height: auto;        
        padding: 16px 16px 20px 16px;
    }
    .member-company-settings-modal .tab-cnt-box li#tab2 .list-box .list:nth-child(n+2) {
        margin-top: 16px;
    }
    .member-company-settings-modal .tab-cnt-box li#tab2 .list-box .list .title-box {
        width: 100%;
    }

    .member-company-settings-modal .tab-cnt-box li#tab3 {
        max-height: calc(100vh - 202px);
    }

    .member-company-settings-modal .tab-cnt-box li#tab3 .list-box .list {
        width: 100%;
        margin-right: 0;
        height: auto;
        padding: 16px 16px 20px 16px;
    }

    .member-company-settings-modal .tab-cnt-box li#tab3 .list-box .list:nth-child(n+2) {
        margin-top: 16px;
    }

    .member-company-settings-modal .tab-cnt-box li#tab3 .list-box .list .title-box {
        width: 100%;
    }

    .loginpage-member-company-settings-modal {
        width: 100%;
        height: 100vh;
        padding: 24px 16px 24px 16px;
    }
    .loginpage-member-company-settings-modal .tab-menu-box {
        margin-top: 24px;
    }
    .loginpage-member-company-settings-modal .table-type-2 td .check-text-2-area-fdc {
        flex-direction: column;
        align-items: flex-start;
    }
    .loginpage-member-company-settings-modal .table-type-2 td .check-text-2-area-fdc .check-text-type-2:not(:last-child) {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .loginpage-member-company-settings-modal .tab-cnt-box li#tab1 {
        max-height: calc(100vh - 202px);
    }
    .loginpage-member-company-settings-modal .tab-cnt-box li#tab2 {
        max-height: calc(100vh - 202px);
    }
    .loginpage-member-company-settings-modal .tab-cnt-box li#tab2 .list-box .list {
        width: 100%;
        margin-right: 0;
        height: auto;        
        padding: 16px 16px 20px 16px;
    }
    .loginpage-member-company-settings-modal .tab-cnt-box li#tab2 .list-box .list:nth-child(n+2) {
        margin-top: 16px;
    }
    .loginpage-member-company-settings-modal .tab-cnt-box li#tab2 .list-box .list .title-box {
        width: 100%;
    }


}
/* //~680 */

/* 230525 Mobile Version CSS - AgentPop Page */
@media (max-width:680px) {
    .tab-cnt-box #tab1 .table-box-1, .tab-cnt-box #tab1 .table-box-2 {
        overflow-x: hidden;
    }
    #biz_addr_search, #biz_addr_search_m, .agent_pop_upload_btn {
        margin-right: 15px;
    }
    .tab-cnt-box #tab1 .table-box-1, .tab-cnt-box #tab1 .table-box-2 .fee-table th {
        min-width: 1px;
    }
    .tab-cnt-box #tab1 .table-box-1, .tab-cnt-box #tab1 .table-box-2 .fee-table tr {
        min-width: 1px;
    }
    .tab-cnt-box #tab1 .table-box-1, .tab-cnt-box #tab1 .table-box-2 .fee-table td {
        min-width: 1px;
    }
}

@media (min-width:681px) {
    .tab-cnt-box #tab1 .table-box-1, .tab-cnt-box #tab1 .table-box-2 {
        overflow-x: hidden;
    }
    #biz_addr_search, #biz_addr_search_m, .agent_pop_upload_btn {
        margin-right: 15px;
    }
}

@media (max-width:438px) {
    .member-company-settings-modal .tab-menu-box {
        flex-wrap: wrap;
    }
    .member-company-settings-modal .tab-menu-box li {
        margin-bottom: 10px;
    }
}

/* 230524 Mobile Version CSS - AgentManagement Page */
@media (max-width:1281px) {
    .pc-ver-manual {
        display: block;
    }

    .mobile-ver-manual {
        display: none;
    }
}

@media (max-width:1280px) {
    .pc-ver-manual {
        display: none;
    }
    .mobile-ver-manual {
        display: block;
    }
}

@media (max-width:1022px) {
    .member-company-management-area .cnt-box-1 .top-area {
        flex-wrap: wrap;
    }
        .member-company-management-area .cnt-box-1 .top-area .left-box {
            margin-bottom:10px;
        }
        .member-company-management-area .cnt-box-1 .top-area .right-box {
            margin-bottom: 10px;
        }
}

@media (max-width:696px) {
    .right-box-1 .search-type-1 .search-box {
        width: 225px;
    }
    .cnt-box-1 .top-area .right-box {
        flex-wrap: wrap;
    }
}

@media (max-width: 545px) {
    .right-box-1 .search-type-1 .search-box {
        width: 225px;
    }
    /*.cnt-box-1 .top-area .right-box {
        flex-wrap: wrap;
    }*/
}

@media (max-width:488px) {
    .right-box-1 .search-type-1 {
        margin-bottom: 10px;
    }
}

@media (max-width:394px) {
    .member-company-management-area .title-box {
        flex-wrap: wrap;
    }

    .member-company-management-area .title-box .tb {
        margin-bottom: 10px;
    }

    .member-company-management-area .title-box {
        white-space: nowrap;
    }
}

@media (min-width: 954px) {
    .cnt-box-1 .top-area .space-area-2 .right-box {
        margin-top: 5px;
    }

    .homesulro-modal {
        width: calc(100vh - 70px);
        height: calc(100vh - 330px);
    }
}

@media (max-width:953px) {
    .cnt-box-1 .top-area .space-area-2 .right-box {
        flex-wrap: wrap;
    }
        .cnt-box-1 .top-area .space-area-2 .right-box .store-right-box-1, .cnt-box-1 .top-area .space-area-2 .right-box .store-right-box-2 {
            margin-top: 5px;
        }

    .homesulro-modal {
        width: calc(100vh - 300px);
        height: calc(100vh - 220px);
    }

    .homesulro-alcohol-company-select-modal {
        flex-wrap: wrap;
    }
}

@media (min-width:768px) and (max-width:953px) {
    .store-right-box-1 .search-type-1 .search-box {
        width:260px;
    }
    .store-right-box-2 .store-right-box-3 .select-box-2 .select-type-1 {
        width: 105px;
    }

}

@media (max-width:910px) {
    .pc-ver-text {
        display:none;
    }
    .mobile-ver-text {
        display: block;
        margin: 5px 0 5px 10px;
    }
    .mobile-ver-title {
        margin-top: 5px;
    }
}

@media (min-width:911px) {
    .pc-ver-text {
        display: block;
    }

    .mobile-ver-text {
        display: none;
    }
}


@media (min-width:767px) {
    .store-management-area .cnt-box-1 .top-area {
        overflow: auto;
    }
    .store-management-area .cnt-box-1 .middle-area {
        margin-top: 5px;
    }

}

@media (max-width:766px) {
    .negative-toasting-msg , .toasting-msg, .toasting-msg-move {
        width: calc(100vw - 80px);
    }
    .store-management-area .cnt-box-1 .top-area .space-area-2 {
        padding-bottom: 10px;
    }
    .store-right-box-1 .search-type-1 .search-box {
        width: 135px;
    }
    .store-right-box-2 .store-right-box-3 .select-box-2 .select-type-1 {
        width: 80px;
    }
    .mobile-size-title {
        margin-left: 10px;
    }
    .store-mgn-setting-option {
        width: 7.3rem;
    }
}

.tab-cnt-box.nonclicktd li table tr td {
    cursor: auto;
}

@media (max-width:580px) {
    .homesulro-van-list {
        height: 300px;
        overflow: scroll;
        overflow-x: hidden;       
    }

    .homesulro-modal {
        width: calc(100vh - 530px);
        height: calc(100vh - 250px);
    }

    .homesulro-alcohol-company-select-modal .left-box {
        flex-wrap: wrap;
    }

    .homesulro-alcohol-company-select-modal .right-box {
        margin-top: 10px;
    }
}

/* 가맹점관리 - 홈술로 정보 탭 */
@media (min-width:975px) {
    .homesulro-m-ver, .agent-pop-div-save-m {
        display: none;
    }
    .homesulro-pc-ver, .agent-pop-div-save {
        display: block;
    }
}
@media (max-width: 974px) {
    .homesulro-m-ver, .agent-pop-div-save-m {
        display: block;
    }
    .homesulro-pc-ver, .agent-pop-div-save {
        display: none;
    }
}

/* 주문내역(보나캠프) 사진촬영버튼 */
@media (max-width:465px) {
    .mobile-sulorder-bonacamp {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

/* 여신 및 미수금 관리 CSS */
@media (max-width:998px) {
    .sulorder-loan-select-box-agent {
        margin-top: 4px;
        margin-bottom: 4px;
    }
}

@media (max-width:466px) {

    .sulorder-loan-date-box {
        margin-top:4px;
    }
    .sulorder-loan-right-box {
        flex-wrap: wrap;
    }
}