@charset "utf-8";
@import url('/css/reset-5cd286536da4b161958b05fa8c7cf924.css') layer(reset);
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.5/dist/web/variable/pretendardvariable.css');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');
@layer reset, defaults, components, utilites, overrides;
:root {
    --padding-s: 4px 8px;
    --padding-m: 8px 16px;
    --padding-l: 20px;
    --padding-s0: 4px 0px;
    --padding-m0: 8px 0px;
    --padding-l0: 20 0px;
    --color-on-primary-container: #001258;
    --color-primary: #12276d;
    --color-primary-container: rgb(235, 241, 255);
    --color-primary-hover: rgba(235, 241, 255, 34%);
    --color-on-secondary-container: #001945;
    --color-secondary: #41a3ff;
    --color-secondary-container: #d9e2ff;
    --color-on-tertiary-container: #370b1e;
    --color-tertiary: #626100;
    --color-tertiary-container: rgb(238, 238, 104);
    --color-on-surface: #1d1d00;
    --color-surface-variant: #f0f3ff;
    --color-surface: #f8f8fa;
    --color-error: #db140a;
    --color-error-container: #f9dedc;
    --color-hover: rgb(34 51 84 / 10%);
    --color-darkgrey: rgb(75, 70, 74);
    --color-white: rgb(255, 255, 255);
    --color-focus: rgba(0, 59, 255, 1);
    --color-black100: #333;
    --color-black90: #1d2939;
    --color-black80: #666;
    --color-black50: #667085;
    --color-black40: #98a2b3;
    --color-black30: #d0d5dd;
    --color-black20: #e4e7ec;
    --color-white: #fff;
    --color-hover: rgba(20, 34, 61, 0.103);
    --input-height: 30px;
    --footer-customer-height: 200px;
    --footer-mini-height: 50px;
    --footer-desc-height: 150px;
    --footer-height: calc(var(--footer-customer-height) + var(--footer-mini-height) + var(--footer-desc-height));
}

@layer defaults {
    html {
        font-family: Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Noto Sans KR', 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
        line-height: 1.714rem;
        font-size: 14px;
    }
    body {
        position: relative;
        min-height: 100vh;
        height: 100%;
        position: relative;
        color: var(--color-black90);
        overflow: overlay;
        text-rendering: optimizeSpeed;
    }
    header {
        background-color: var(--color-white);
        color: var(--color-black);
    }
    header .inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 70px;
    }
    header .logo {
        cursor: pointer;
        width: 150px;
        margin: auto 0;
    }
    header .logo img {
        max-width: 100%;
    }
    header ul {
        font-size: 14px;
        line-height: 24px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 16px;
        color: #666666;
    }
    header ul li,
    nav ul li {
        cursor: pointer;
    }
    header ul li:not(:has(.has_name)):hover,
    nav ul li:hover {
        color: var(--color-focus);
        transition: color 300ms ease-in-out;
    }
    header ul li .material-icons {
        font-size: inherit !important;
    }
    .dropdown {
        display: none;
    }
    .dropdown .inner {
        position: relative;
    }
    .dropdown-list {
        position: absolute;
        right: 0;
        top: -20px;
        z-index: 3;
        background-color: var(--color-white);
        padding: 5px 10px 10px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 6px;
        border-radius: 6px;
        border-top: 1px solid rgb(209, 209, 209);
    }
    .dropdown-list .inner {
        flex-direction: column;
    }
    .dropdown-list .dropdown-item {
        padding: 4px 6px;
        cursor: pointer;
    }
    .dropdown.on {
        display: initial;
    }
    nav {
        position: sticky;
        top: 0;
        background-color: var(--color-white);
        color: var(--color-black);
        z-index: 2;
        font-weight: 600;
        box-sizing: border-box;
    }
    nav .inner {
        display: flex;
        justify-content: space-between;
    }
    nav ul {
        display: flex;
        align-items: center;
        column-gap: 5px;
    }
    nav ul li {
        white-space: nowrap;
    }
    nav ul.left li {
        font-size: 18px;
        line-height: 28px;
        text-align: center;
        padding: 10px 20px 20px;
        border-bottom: 3px solid transparent;
    }
    nav ul.left li.active {
        color: var(--color-focus);
        border-bottom: 3px solid var(--color-focus);
    }
    nav ul.right {
        font-size: 16px;
        line-height: 26px;
    }
    nav ul.right li {
        padding: 10px 12px 20px;
    }
    nav ul.right li:last-of-type {
        padding-right: 0;
    }
    nav ul.right li.active {
        color: var(--color-focus);
    }

    main {
        padding-bottom: calc(var(--footer-height) + 40px);
    }

    footer {
        color: #111111;
        font-size: 14px;
        line-height: 24px;
        width: 100%;
        height: var(--footer-height);
        position: absolute;
        bottom: 0;
    }
    footer > div.customer_center {
        border-top: 1px solid #dde4eb;
        padding: 30px 0 20px;
        height: var(--footer-customer-height);
    }

    footer > div.customer_center .col_1 {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    footer > div.customer_center .customer_center_header {
        font-weight: 700;
        font-size: 20px;
        line-height: 30px;
    }
    footer > div.customer_center .customer_center_header a {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    footer > div.customer_center .customer_center_header .material-icons {
        cursor: pointer;
    }
    footer > div.customer_center .notice {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    footer > div.customer_center .notice li {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: #999999;
    }
    footer > div.customer_center .notice li .title_wrap {
        display: inline-flex;
        width: 350px;
    }
    footer > div.customer_center .notice li .title {
        width: 350px;
        white-space: nowrap;
        cursor: pointer;
        text-overflow: ellipsis;
        overflow: hidden;

        color: #333333;
    }
    footer > div.customer_center .notice li .title:hover {
        color: var(--color-primary);
        text-decoration: underline;
    }
    footer > div.customer_center .call_number {
        font-weight: 700;
        font-size: 24px;
        line-height: 34px;
    }
    footer > div.customer_center .call_info p {
        color: #666666;
        white-space: nowrap;
        word-break: keep-all;
    }
    footer > div.customer_center .call_quick_menu {
        display: flex;
    }
    footer > div.customer_center .call_quick_menu .btn {
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        cursor: pointer;
        transition: color 0.3s ease-in-out;
    }
    footer > div.customer_center .call_quick_menu .btn:hover {
        color: var(--color-primary);
    }
    footer > div.customer_center .call_quick_menu .btn .material-icons-outlined {
        font-size: 40px !important;
    }

    footer > div.mini {
        height: var(--footer-mini-height);
        border-top: 1px solid #dde4eb;
        font-size: 14px;
        line-height: 24px;
        font-weight: 600;
    }
    footer > div.mini ul {
        display: flex;
        align-items: center;
        column-gap: 20px;
    }
    footer > div.mini ul li {
        cursor: pointer;
        line-height: var(--footer-mini-height);
    }
    footer > div.mini ul li:hover {
        color: var(--color-focus);
        transition: color 300ms ease-in-out;
    }
    footer > div.desc {
        font-size: 12px;
        line-height: 22px;
        color: #999999;
        height: var(--footer-desc-height);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    footer > div.desc .logo {
        cursor: pointer;
        width: 126px;
        height: 68px;
        display: flex;
        align-items: center;
    }
    hr {
        height: 1px;
        width: 100%;
        background-color: var(--color-black90);
    }

    /* 영역  */
    .normalize {
        max-width: 980px;
        margin: 0 auto;
    }
    .inner {
        width: 990px;
        margin: 0 auto;
    }
    /* 그리드  */
    .grid {
        display: grid;
    }
    .col_2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .col_3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .row_5 {
        grid-template-rows: repeat(5, 1fr);
    }
    /* 헤딩 */
    h1 {
        font-size: 20px;
    }
    h1,
    h2,
    h3 {
        font-weight: 700;
        color: var(--color-black100);
    }
    .main_heading {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 10px;
    }
    .sub_heading {
        margin-bottom: 5px;
    }
    /* 스크롤바 */
    .scroll {
        overflow: auto;
    }
}
@layer components {
    /* select & input[text] */
    textarea,
    select,
    input {
        border-radius: 8px;
        outline: none;
        padding: 11px 15px;
        border: 1px solid #dddddd;
        color: var(--color-black100);
        transition: border 0.3s ease-in-out, background 0.3s ease-in-out;
    }
    textarea:focus,
    input:focus {
        background-color: var(--color-primary-hover);
        border: 1px solid var(--color-focus);
        transition: background 0.3s ease-in-out;
    }
    textarea:read-only {
        cursor: default;
        resize: none;
    }
    input:read-only {
        background-color: var(--color-black20);
        cursor: default;
    }
    input::placeholder,
    textarea::placeholder {
        color: #999999;
    }
    .select_box {
        position: relative;
        display: inline-flex;
        cursor: pointer;
        min-width: 150px;
    }
    .select_box::after {
        font-family: 'Material Icons';
        content: 'expand_more';
        font-size: 24px;
        color: var(--color-black100);
        position: absolute;
        height: 100%;
        display: flex;
        align-items: center;
        top: 0;
        right: 8px;
        z-index: -1;
    }
    select {
        appearance: none;
        width: 100%;
        background: none;
        position: relative;
    }
    select:disabled {
        background-color: var(--color-black20);
    }
    select option {
        line-height: 1;
    }
    select option[value=''][disabled] {
        display: none;
    }

    /* button */
    input[type='button'],
    button,
    a.btn {
        font-weight: 600;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: var(--input-height);
        min-width: 80px;
        min-height: 46px;
        padding: 10px;
        border-radius: 8px;
        border: 1px solid var(--color-primary);
        color: var(--color-primary);
    }
    input[type='button']:hover,
    button:hover,
    a.btn:hover {
        box-shadow: 1440px 0 0 0 var(--color-hover) inset;
        transition: box-shadow 500ms ease-in-out;
    }
    input[type='button']:disabled,
    button.disabled,
    .btn.disabled {
        opacity: 0.4;
    }
    input[type='button'].fill,
    button.fill,
    a.btn.fill {
        border: 1px solid var(--color-primary-);
        background-color: var(--color-primary);
        color: var(--color-white);
    }
    .fill:hover:enabled,
    .fill:active:enabled {
        background-color: #2749c7;
        transition: background 0.3s linear;
    }
    button:disabled {
        opacity: 0.5;
        cursor: default;
    }
    .lead_banner {
        display: block;
        width: 100%;
        height: 45px;
        background-color: var(--color-on-primary-container);
    }

    /* checkbox */

    .checkbox_all label {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .checkbox_all label input[type='checkbox'] {
        display: none;
    }
    .checkbox_all label input[type='checkbox'] ~ span {
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #666;
    }
    .checkbox_all label input[type='checkbox'] ~ span::before {
        content: 'done';
        font-family: 'Material Icons';
        font-size: 24px;
        font-weight: 700;
        cursor: pointer;
        color: var(--color-black20);
        width: 24px;
        transition: color 0.1s linear;
    }
    .checkbox_all label input[type='checkbox']:checked ~ span::before {
        color: var(--color-primary);
    }
    .checkbox label {
        padding: var(--padding-s);
        font-size: 1rem;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .checkbox label input[type='checkbox'] {
        display: none;
    }
    .checkbox label input[type='checkbox'] ~ span {
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        color: #666;
    }
    .checkbox label input[type='checkbox'] ~ span::before {
        width: 24px;
        content: 'done';
        font-family: 'Material Icons';
        font-size: 1rem;
        font-weight: 700;
        cursor: pointer;
        color: var(--color-black20);
        margin-left: auto;
        transition: color 0.1s linear;
    }
    .checkbox label input[type='checkbox']:checked ~ span::before {
        color: var(--color-primary);
    }
    .checkbox label input[type='radio'] {
        display: none;
    }
    .checkbox label input[type='radio'] ~ span {
        cursor: pointer;
        display: inline-flex;
        align-items: center;
    }
    .checkbox label input[type='radio'] ~ span::before {
        width: 24px;
        content: 'radio_button_unchecked';
        font-family: 'Material Icons';
        font-size: 1rem;
        cursor: pointer;
        color: var(--color-black20);
        margin-left: auto;
        transition: color 0.1s linear;
    }
    .checkbox label input[type='radio']:checked ~ span::before {
        content: 'radio_button_checked';
        color: var(--color-primary);
    }
    /* paging */
    .pagination {
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        gap: 4px;
        padding-top: 40px;
        padding-bottom: 30px;
        margin-top: auto;
        font-size: 12px;
        line-height: 22px;
    }
    .pagination a {
        text-align: center;
        color: #999999;
        padding: 8px;
        text-decoration: none;
        height: 30px;
        width: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        border-radius: 6px;
    }
    .pagination .material-icons {
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(129, 143, 164, 1);
    }
    .pagination a:hover {
        background-color: var(--color-primary-hover);
        border-radius: 6px;
    }

    .pagination a.active {
        border-radius: 6px;
        border: 1px solid rgba(18, 39, 109, 1);
        color: rgba(18, 39, 109, 1);
        font-weight: 700;
    }

    /* table component */
    .table_wrapper {
        max-height: calc(100vh - 520px);
        overflow: auto;
    }
    .data-table {
        width: 100%;
    }
    .data-table th {
        padding: var(--padding-s);
        background-color: #2c4794;
        color: var(--color-white);
        text-align: center;
        position: sticky;
        top: 0;
    }
    .data-table td {
        padding: var(--padding-s);
        text-align: center;
    }
    .data-table tbody tr {
        border-bottom: 1px solid var(--color-secondary-container);
        transition: background 0.3s linear;
    }
    .data-table tbody tr:hover {
        background-color: var(--color-primary-hover);
    }
    .data-table tbody tr.active {
        background-color: var(--color-primary-hover);
    }
    /* popup */
    .popup_wrapper {
        display: grid;
        grid-template-columns: 1fr;
        position: fixed;
        width: 100vw;
        height: 100vh;
        background-color: var(--color-hover);
        top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }
    .popup {
        position: relative;
        background-color: var(--color-white);
        min-width: 350px;
        max-width: 600px;
        border-radius: 8px;
    }
    .popup .popup_header {
        position: relative;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 24px 24px 30px;
        font-weight: 700;
        font-size: 20px;
        line-height: 30px;
    }

    .popup_header span.material-icons {
        position: absolute;
        top: 24px;
        right: 24px;
        display: flex;
        align-items: center;
    }
    .popup .popup_main {
        overflow: auto;
        max-height: 80vh;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 116px;
    }
    .popup h6 {
        font-weight: 600;
        font-size: 18px;
        line-height: 28px;
    }
    .popup .popup_button_wrap {
        position: absolute;
        bottom: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 10px 20px 30px;
    }
    .popup .popup_button_wrap button {
        min-width: 140px;
    }
}
@layer utiltites {
    .pointer {
        cursor: pointer;
    }
    .shadow {
        box-shadow: 0px 9px 16px rgba(159, 162, 191, 0.18), 0px 2px 2px rgba(159, 162, 191, 0.32);
    }
    .hover_inset:hover {
        box-shadow: 1440px 0 0 0 var(--color-hover) inset;
        transition: box-shadow 300ms ease-in-out;
    }
}
@layer overrides {
    .scrollLock {
        overflow: hidden;
    }
    .hidden {
        display: none;
    }
    .center {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    footer .grid {
        gap: 80px !important;
    }
    footer .grid div {
        width: 100%;
    }
    .has_name {
        cursor: default;
        display: none;
    }
    .has_name,
    .log_out {
        display: flex;
        align-items: center;
    }
    .has_name .name {
        font-weight: 700;
    }
    .btn.sm {
        min-height: unset;
    }
}

::-webkit-scrollbar {
    width: 6px;
    border-radius: 100px;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(205, 211, 218, 1);
    border-radius: 100px;
}
