@charset "UTF-8";
@import url('fonts.css');
@import url('design.css?v=260105');

/**
 * 리로패스 공통 스타일시트
 * Common Styles for RIRO Card Project
 */

/* ==========================================================================
   1. CSS Reset & Base Styles
   ========================================================================== */
:root {
    scroll-behavior: auto !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Pretendard', 'Malgun Gothic', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif !important;
    -webkit-tap-highlight-color:transparent;
}

body {
    color: #333;
    line-height: 1.4;
    letter-spacing: -0.5px;
    background: var(--gray100);
    min-width:280px;
}
button {
    background : transparent;
}
li {
    list-style:none;
}

a {
    text-decoration: none;
    color: inherit;
}
::placeholder {color:var(--gray600);}

label,.stat-item {
    user-select: none;
}

select {
    appearance: none;
    background-image: url("/assets/imgs/design/ico_chevron_down_black.svg");
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center right 12px;
    padding-right: 36px !important;
    cursor:pointer;
    background-color:#fff;
    color:#000;
}

input[type=date] {position: relative; background:#fff url('/assets/imgs/design/ico_calendar_black.svg') right 12px center no-repeat; min-width:140px; outline:none;}
input[type='date']::-webkit-calendar-picker-indicator {cursor:pointer; opacity:0; position: absolute; left: 0; top: 0; width: 100%; height: 100%; }
/* common */
:root {
    /* blue */
    --blue50: #EDF6FF;
    --blue75: #E3F1FF;
    --blue100: #D5EBFF;
    --blue300: #93C9FF;
    --blue500: #007FF5;
    --blue600: #016BD4;

    /* red */
    --red50: #FFEDED;
    --red75: #FFE3E3;
    --red100: #FFD9D9;
    --red200: #F6ACAC;
    --red300: #EE7B7B;
    --red500: #D43838;
    --red600: #A31111;

    /*green*/
    --green50: #E0FFF1;
    --green400: #20C078;
    --green500: #0FA15F;
    --green600: #04894D;

    /* yellow */
    --yellow50: #FFF9E6;
    --yellow75: #FFF6D9;
    --yellow500: #FC9402;
    --yellow600: #D87601;
    --yellow700: #B55B01;

    /*gray*/
    --gray50: #FAFAFA;
    --gray100: #F3F5F7;
    --gray200: #E9ECEF;
    --gray300: #DEE2E6;
    --gray400: #CCD1D7;
    --gray500: #ADB5BD;
    --gray600: #848D96;
    --gray700: #5E666E;
    --gray800: #495057;
    --gray900: #212529;

    /* sub_color*/
    --black: #111111;
    --black900: #212121;
    --white: #ffffff;
}

/* ==========================================================================
   2. Layout Components
   ========================================================================== */
.over_scroll_wrap {
    overflow: auto;
    min-height:200px;
}

.riro_loading {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    width: 100%;
    background: rgba(0, 0, 0, .7);
    z-index: 99999;
    display: none;
}

.riro_loading .loading_img {
    width: 100px;
    height: 100px;
    background: url('/assets/imgs/common/loading_app.gif') center no-repeat;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 2px;
    border-radius: 50%;
}

.container {
    max-width: 1256px;
    margin: 0 auto;
    padding:12px 20px 20px;
}

.top_container {
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--gray300);
    padding: 5px 0;
    min-height: 48px;
    display: flex;
    align-items: center;
}

.top_container .container {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    padding: 0 20px;
    height: 100%;
    width: 100%;
}

.top_container .container.between {
    justify-content: space-between;
}

.top_container .container .title {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top_container .container h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--blue500);
    margin-bottom: 0;
}

.top_container .container .rpd_icon {
    width: 20px;
    height: 20px;
    background-size: 20px;
}

.top_container .container .control_btn_wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top_container .container .control_btn_wrap .refresh_btn {
    min-width: 40px;
}

.header {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
}

.header h1 {
    color: #2c3e50;
    margin-bottom: 10px;
}

/* ==========================================================================
   3. Controls & Forms
   ========================================================================== */
.controls {
    background: var(--white);
    padding: 24px 32px;
    border-radius: 10px;
    box-shadow: 0px 3px 6px 0px #3333330F;
    margin-bottom: 16px;
}

.controls-row {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 12px;
}

.controls-group {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.controls-separator {
    width: 1px;
    height: 30px;
    background-color: #ddd;
    margin: 0 10px;
}

.controls-row .control_btn_wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Form Elements */
.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-label,
.form-group label,
.form-group .div_label {
    display: inline-block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--gray900);
    font-size: 16px;
}

.form-group .div_label.f_between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-select,
.form-input,
.form-textarea,
.search-box,
.sort-select,
.form-group input:not([type=radio]):not([type=checkbox]),
.form-group select {
    width: 100%;
    padding: 5px 10px;
    border: 1px solid var(--gray400);
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s;
    font-family: inherit;
    height:32px;
}

.form-select:focus,
.form-input:focus,
.form-textarea:focus,
.search-box:focus,
.sort-select:focus,
.form-group input:focus,
.form-group select:focus {
    outline: none!important;
    border-color: var(--blue500)!important;
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

.form-help {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

.required {
    color: var(--red500);
}

.search-box {
    min-width: 300px;
    width: 300px;
    max-width: 300px;
}

.sort-select {
    min-width: 120px;
    width: auto;
    flex-shrink: 0;
    font-size: 14px;
}

/* Search Components */
.search-container {
    position: relative;
    flex-shrink: 0;
    width: auto;
}

.search-input-wrapper {
    position: relative;
    display: inline-block;
    width: 300px;
    max-width: 300px;
}

.search-input-wrapper .search-box {
    padding-left: 36px;
    padding-right: 12px!important;
    font-size: 15px;
}

.search-input-wrapper::before {
    content: '';
    background-image: url(/assets/imgs/design/ico_search_gray700.svg);
    background-size: 16px;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    display: inline-block;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.clear-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 18px;
    padding: 5px;
    display: none;
    line-height: 1;
}

.clear-btn:hover {
    color: #333;
}

input.has-value ~ .clear-btn {
    display: block;
}

.search-box {
    padding-right: 30px !important;
}

.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 5px 5px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.search-dropdown-item {
    padding: 10px 12px;
    cursor: pointer;
    border-bottom: 1px solid #ecf0f1;
}

.search-dropdown-item:last-child {
    border-bottom: none;
}

.search-dropdown-item:hover {
    background-color: #f8f9fa;
}

.search-dropdown-item.selected {
    background-color: var(--blue500);
    color: white;
}

/* Student Info Display (in search dropdowns) */
.student-name {
    font-weight: 600;
    color: #2c3e50;
}

.search-dropdown-item.selected .student-name {
    color: white;
}

.student-info {
    font-size: 12px;
    color: #7f8c8d;
    margin-top: 2px;
}

.search-dropdown-item.selected .student-info {
    color: rgba(255,255,255,0.8);
}

/* Checkbox & Radio Groups */
.checkbox-group,
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.checkbox-item,
.radio-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-item input,
.radio-item input {
    width: auto;
}

.checkbox-item label,
.radio-item label {
    margin: 0;
    font-weight: 400;
    cursor: pointer;
}

/* Form Sections */
.form-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.form-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e1e8ed;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.form-row.triple {
    grid-template-columns: repeat(3, 1fr);
}

.form-row.single {
    grid-template-columns: 1fr;
}

/* ==========================================================================
   4. Buttons
   ========================================================================== */
.btn {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
    white-space: nowrap;
    display: inline-block;
    text-align: center;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-compact {
    padding: 6px 12px;
    font-size: 12px;
}

.btn-small {
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
}

.btn-primary {
    background: var(--blue500);
    color: white;
}

.btn-primary:hover {
    background: #2980b9;
}

.btn-secondary {
    background: #ecf0f1;
    color: #7f8c8d;
}

.btn-secondary:hover {
    background: #bdc3c7;
}

.btn-success {
    background: var(--blue500);
    color: white;
}

.btn-success:hover {
    background: var(--blue600);
}

.btn-danger {
    background: var(--yellow500);
    color: white;
}

.btn-danger:hover {
    background: #c0392b;
}

.btn-warning {
    background: #f39c12;
    color: white;
}

.btn-warning:hover {
    background: #e67e22;
}

.btn-info {
    background: var(--blue500);
    color: white;
}

.btn-info:hover {
    background: #2980b9;
}

/* ==========================================================================
   5. Modal
   ========================================================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
}

.modal.active,
.modal.show {
    display: block;
}

.modal_body{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    padding:1px 7px 1px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.modal_cont{
    max-height: 82vh;
    padding: 40px 25px 40px 32px;
    overflow-y: auto;
    position: relative;
}

.modal_cont .modal_title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray900);
    margin-bottom: 24px;
    text-align: center;
}




.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 40px 32px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.modal-content .modal_title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray900);
    margin-bottom: 24px;
    text-align: center;
}

.modal-header {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 10px;
}

.modal-body {
    margin-bottom: 20px;
}

.modal-actions,
.modal-footer {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ecf0f1;
}

.modal-content .modal_btn_wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--gray300);
}

.modal-content .modal_btn_wrap button {
    width: 100%;
}


.modal_cont .modal_btn_wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--gray300);
}

.modal_cont .modal_btn_wrap button {
    width: 100%;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

/* Close button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
}

/* ==========================================================================
   6. Tables
   ========================================================================== */
.table-container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 24px;
    box-sizing: border-box;
    overflow: auto;
    min-height:555px;
}

.table-container.inner_table {
    box-shadow: none;
    padding: 0;
    min-height: unset;
}

.table-container .table th {
    user-select: none;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray900);
}

.table-container .table td {
    font-size: 16px;
    font-weight: 400;
    color: var(--gray900);
    text-align: center;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.table td .manage_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.table td .manage_wrap button.md {
    min-width: 70px;
}

.table td .manage_wrap button.sm {
    min-width: 46px;
}

.table th {
    background: #f8f9fa;
    font-weight: bold;
}

.table tbody tr:hover {
    background: var(--blue50);
}

/* Table utilities */
.text-center {
    text-align: center !important;
}

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

.table-container {padding:24px;}
.table-container .title {font-size: 18px;font-weight: 600;color: var(--gray900);display: flex;align-items: center;gap: 16px;margin-bottom: 12px;line-height: normal; flex-wrap:wrap;}
.table-container table tr th {border:0;background:none!important;padding: 0;}
.table-container table tr th.pointer {cursor: pointer;}
.table-container table tr th.line_checkbox {min-width: 48px;max-width: 48px;width: 48px;}
.table-container table tr th > div {background: var(--gray100);height:42px;display: flex;align-items: center;justify-content: center;gap: 4px;line-height: normal;font-size: 15px;font-weight: 500;color: var(--gray900);border-top:1px solid var(--gray200);border-bottom:1px solid var(--gray200);padding: 0 8px;box-sizing: border-box;}
.table-container table tr th > div.left {justify-content: flex-start;}
.table-container table tr th > div .sort-icon {opacity: 0.5;line-height: 100%;font-size: 12px;width: 12px;}
.table-container table tr th > div input[type=checkbox],
.table-container table tr td input[type=checkbox] {width: 16px;height: 16px;cursor: pointer;}
.table-container table tr th:hover > div .sort-icon {opacity: 1;}
.table-container table tr th:first-child > div {border-radius: 12px 0 0 12px;border-left: 1px solid var(--gray200);}
.table-container table tr th:last-child > div {border-radius: 0 12px 12px 0;border-right: 1px solid var(--gray200);}
.table-container table tr td {padding:5px 8px;height:42px;}
.table-container table tr td .left {text-align: left;}
.table-container table .th_num {width: 60px; min-width:60px !important; max-width:60px !important;}
.table-container table .th_num div{padding:0;}

.loading_text {display: none !important}

/* ==========================================================================
   7. Cards & Panels
   ========================================================================== */
.card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0px 3px 6px 0px #3333330F;
    border:0;
}

.panel-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.panel-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

/* Statistics Cards */
.stat-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stat-number {
    font-size: 2em;
    font-weight: bold;
    color: var(--blue500);
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 14px;
}

/* ==========================================================================
   8. Badges & Labels
   ========================================================================== */
.badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.badge-primary {
    background: var(--blue500)20;
    color: var(--blue500);
}

.badge-success {
    background: #27ae6020;
    color: #27ae60;
}

.badge-danger {
    background: #e74c3c20;
    color: #e74c3c;
}

.badge-warning {
    background: #f39c1220;
    color: #f39c12;
}

.badge-info {
    background: var(--blue500)20;
    color: var(--blue500);
}

.badge-classroom {
    background: var(--blue500)20;
    color: var(--blue500);
}

/* Role Badges */
.role-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.role-admin {
    background: linear-gradient(135deg, #fca5a5 0%, #fda4af 100%);
    color: #991b1b;
}

.role-teacher {
    background: linear-gradient(135deg, #fdba74 0%, #fbbf24 100%);
    color: #92400e;
}

.role-staff {
    background: linear-gradient(135deg, #86efac 0%, #6ee7b7 100%);
    color: #065f46;
}

.role-student {
    background: linear-gradient(135deg, #7dd3fc 0%, #93c5fd 100%);
    color: #1e40af;
}

.role-parent {
    background: linear-gradient(135deg, #c4b5fd 0%, #a78bfa 100%);
    color: #5b21b6;
}

.role-system-admin {
    background: linear-gradient(135deg, #7dd3fc 0%, #93c5fd 100%);
    color: #1e40af;
    font-weight: 700;
}

.role-system-permission {
    background: linear-gradient(135deg, #fdba74 0%, #fca5a5 100%);
    color: #991b1b;
    font-weight: 700;
}

/* ==========================================================================
   9. Toggle Switch
   ========================================================================== */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
    margin-bottom: 0!important;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: var(--blue500);
}

input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

/* ==========================================================================
   10. Pagination
   ========================================================================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    flex-wrap:wrap;
}

.pagination > div{
    flex-wrap:wrap;
}


.page-btn {
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s;
    font-size: 14px;
    width: 32px;height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-btn:hover {
    background: #f8f9fa;
}

.page-btn.active {
    background: var(--blue500);
    color: white;
    border-color: var(--blue500);
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-btn .rpd_icon {
    background-size: 18px;
    vertical-align: middle;
}

.page-select {
    margin-left: 10px;
    padding: 6px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.page-select:focus {
    outline: none;
    border-color: var(--blue500);
}

/* ==========================================================================
   11. Utility Classes
   ========================================================================== */
.loading {
    text-align: center;
    padding: 40px;
    color: #333;
}

.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: #95a5a6;
}

.error-message {
    color: var(--red500);
    background: var(--red50);
    padding: 5px 10px;
    border-radius: 8px;
    margin: 5px 0px;
    font-size: 14px;
    display: none;
}

.success-message {
    color: var(--green500);
    background: var(--green50);
    padding: 5px 10px;
    border-radius: 8px;
    margin: 5px 0;
    font-size: 14px;
}

/* Flex utilities */
.d-flex {
    display: flex;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.align-items-start {
    align-items: flex-start;
}

.gap-1 {
    gap: 0.5rem;
}

.gap-2 {
    gap: 1rem;
}

.gap-3 {
    gap: 1.5rem;
}

/* Spacing utilities */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* ==========================================================================
   12. Responsive Design
   ========================================================================== */

.mob_use {display: none;}

/* 데이터 없음 상태 */
.no-data {
    text-align: center;
    padding: 40px !important;
    font-weight: 400 !important;
    color: #111;
    font-size: 16px;
}

/* 검색 미리 보기 팝업 숨김 */

body > .container {min-height: calc(100vh - 380px);}

/* ==================================================== footer ==================================================== */
#footer {
    padding: 37px 0 46px 0;
    box-sizing: border-box;
    margin-top: 30px;
    border-top: 1px solid var(--gray300);
    background: #fff;
    width: 100%;

}

#footer .inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    max-width:1280px;
    padding:0 32px;
    margin:0 auto;
    gap:20px;
}

#footer .inner .f_left {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap:12px;
}

#footer .inner .f_left .info_box .copyright_mo {
    display: none;
}

#footer .inner .f_left .f_logo img {
    width: 133px;
    vertical-align: top;
}

#footer .inner .f_left .info_box ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 11px;
    line-height: 1.4;
    gap: 10px;
    margin-left: 0;
    padding-left: 0;
}

#footer .inner .f_left .info_box ul li {
    position: relative;
}

#footer .inner .f_left .info_box ul li::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background: var(--gray800);
}

#footer .inner .f_left .info_box ul li a {
    font-size: 14px;
    color: var(--gray900);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    padding-right: 10px;
}

#footer .inner .f_left .info_box ul li:first-child a {
    padding-left: 0;
}

#footer .inner .f_left .info_box ul li:last-child:after {
    display: none;
}

#footer .inner .f_left .info_box .copyright_box > div {
    margin-bottom: 11px;
    line-height: 1.5;
    font-size: 14px;
    color: var(--gray800);
}
#footer .inner .f_left .info_box .copyright_box  em {
    color: var(--gray400);
    font-style: normal;
    font-size: 13px;
}

#footer .inner .f_left .info_box .copyright_box > p {
    font-size: 14px;
    color: var(--gray600);
    text-align: left;
}

#footer .inner .f_right {flex-shrink:0;}

#footer .inner .f_right .tit {
    line-height: 1.4;
    font-weight: 600;
    font-size: 14px;
    color: var(--gray800);
    margin:0 0 3px 0;
}

#footer .inner .f_right .info {
    margin-bottom: 10px;
    line-height: 1.4;
    font-size: 14px;
    color:var(--gray800);
}

#footer .inner .f_right .number {
    line-height: 1.4;
    font-weight: 600;
    font-size: 40px;
    color: var(--gray900);
}


.delete_pop .modal_body {max-width:488px; text-align: center; padding:0;}
.delete_pop .modal_body .modal_cont {padding:24px 32px;}
.delete_pop .delete_cont .tit {position: relative; font-size: 24px; font-weight: 700; color:var(--gray900); margin-bottom: 24px;}
.delete_pop .delete_cont .tit .rpd_icon{position: absolute; right:0; top:0;}
.delete_pop .delete_cont .warn_text { padding:8px; background: var(--red50); font-size:18px; font-weight: 600; color:var(--red500); border-radius:12px; margin-bottom: 12px;}
.delete_pop .delete_cont .info_text { padding:0 8px; font-size:16px; font-weight: 500; color:var(--gray900);margin-bottom: 12px;}
.delete_pop .modal-buttons {margin-top: 24px; display: flex; gap:8px;}
.delete_pop .modal-buttons button { flex:1;}

/* 툴팁 */
.timeline-bar:hover {z-index: 2;}
.tooltip_parent {opacity:1 !important; transition:none !important; transform:translateY(0) !important; cursor:default !important;}
.tooltip_parent:hover {z-index: 2;}
.tooltip_parent:hover .tooltip_child {display: block; }
.tooltip_child {display: none; position: absolute; left:50%; transform:translate(-50%,0);  top:28px; z-index: 2; background: var(--gray700); border-radius:8px; padding:6px 10px; font-size: 12px; font-weight: 500; color:#fff; white-space: nowrap; text-align: left; }
.tooltip_child:after {content:''; position: absolute; left:50%; margin-left:-6px; top:-9px; width: 12px; height: 10px; background:url('/assets/imgs/common/ico_tooltip.svg') center no-repeat;}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}

input:autofill,
input:autofill:hover,
input:autofill:focus,
input:autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}

input:disabled:autofill,
input:disabled:autofill:hover,
input:disabled:autofill:focus,
input:disabled:autofill:active,
input:read-only:autofill,
input:read-only:autofill:hover,
input:read-only:autofill:focus,
input:read-only:autofill:active {
    -webkit-text-fill-color: #999;
    box-shadow: 0 0 0px 1000px #f5f5f5 inset;
}

.withdrawal_btn {display: flex;align-items: center;border: 0;margin-left: auto;cursor: pointer;}
.withdrawal_btn .rpd_icon {width: 16px;height: 16px;background-size: 16px;}
#withdrawalModal .modal_body {max-width: 600px;}
#withdrawalModal .modal_body .modal_cont {padding:24px 32px 32px;}
#withdrawalModal .modal_body .modal_cont .modal-close {top: 29px;right: 32px;}
#withdrawalModal .modal_body .step_title {font-size: 18px;font-weight: 600;color: var(--gray900);line-height: 1.4;text-align: center;margin-bottom: 12px;}
#withdrawalModal .modal_body .step_1 .info {padding: 16px;box-sizing: border-box;background: var(--gray100);border-radius: 12px;border:1px solid var(--gray200);margin-bottom: 24px;overflow: auto;}
#withdrawalModal .modal_body .step_1 .info ul li {font-size: 16px;font-weight: 400;margin-bottom: 16px;color: var(--gray900);line-height: 1.4;list-style: decimal;margin-left: 20px;}
#withdrawalModal .modal_body .step_1 .info ul li:last-child {margin-bottom: 0;}
#withdrawalModal .modal_body .step_1 .pwd_wrap {text-align: center;}
#withdrawalModal .modal_body .step_1 .pwd_wrap .msg {font-size: 16px;font-weight: 500;color: var(--gray900);margin-bottom: 12px;}
#withdrawalModal .modal_body .step_1 .pwd_wrap .withdrawal_input {width: 100%;height:40px;border-radius: 8px;border:1px solid var(--gray400);padding:9px 12px;font-size: 15px;outline: none;}
#withdrawalModal .modal_body .step_1 .pwd_wrap .withdrawal_input:focus {border-color: var(--blue500);}
#withdrawalModal .modal_body .btn_wrap {display: flex;align-items: center;justify-content: center;gap: 8px;margin-top: 24px;}
#withdrawalModal .modal_body .btn_wrap button {width: 100%;}

@media (max-width: 1280px) {
    input[type=date]::-webkit-inner-spin-button,
    input[type=date]::-webkit-calendar-picker-indicator {
        opacity:0;
    }
    input[type=date]{
        appearance:none ;
        -webkit-appearance: none;
        -moz-appearance: none;
        text-align: left;
        color:#000;
    }

    input[type="date"]::-webkit-date-and-time-value {
        text-align: left;
    }
}


@media (max-width: 768px) {

    body > .container {
        min-height:calc(100vh - 300px)
    }

    #footer {
        padding: 30px 20px 40px;
        overflow: hidden;
    }

    #footer .inner {
        padding:0;
    }

    #footer .inner .f_left .f_logo {
        display: none;
    }

    #footer .inner .f_right {
        display: none;
    }

    #footer .inner .f_left {
        width: 100%;
        text-align: center;
    }

    #footer .inner .f_left .info_box {
        width: 100%;
        padding-left:0;
    }

    #footer .inner .f_left .info_box .copyright_mo {
        display: block;
    }

    #footer .inner .f_left .info_box .copyright_mo .copy_top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 12px;
    }

    #footer .inner .f_left .info_box .copyright_mo .copy_top .f_logo_mo {
        width: 100px;
    }

    #footer .inner .f_left .info_box .copyright_mo .copy_top .footer_copy_btn {
        display: flex;
        align-items: center;
        gap: 4px;
        font-size: 13px;
        font-weight: 400;
        color: var(--gray800);
    }

    #footer .inner .f_left .info_box .copyright_mo .copy_top .footer_copy_btn .rpd_icon {
        transition: all 0.3s ease;
        width: 16px;
        height: 16px;
        background-size: 16px;
        margin-top: -3px;
    }

    #footer .inner .f_left .info_box .copyright_mo .copy_top .footer_copy_btn.off .rpd_icon {
        transform: rotate(-180deg);
    }

    #footer .inner .f_left .info_box .copyright_mo .copy_box {
        text-align: left;
        color: var(--gray800);
        box-sizing: border-box;
        line-height: 1.5;
        margin-bottom: 12px;
        font-size: 0;

    }

    #footer .inner .f_left .info_box .copyright_mo .copy_box.off {
        display: none;
    }

    #footer .inner .f_left .info_box .copyright_mo .copy_box p{
        font-size: 13px;
        margin:0;
    }

    #footer .inner .f_left .info_box .copyright_mo .copy_box em {
        font-size: 13px;
        color:var(--gray400);
        font-style: normal;
    }

    #footer .inner .f_left .info_box ul {
        justify-content: flex-start;
        padding-left:0;
    }

    #footer .inner .f_left .info_box .copyright_box > div {
        display: none;
    }

    #footer .inner .f_left .info_box .copyright_box > p {
        font-size: 13px;
    }

    #footer .inner .f_left .info_box ul li::after {background: #888;}


    .container {
        padding: 6px 10px;
    }

    .controls {
        padding: 24px;
    }

    .top_container {
        padding: 0;
        min-height:unset;
    }

    .top_container .container {
        gap: 6px;
        padding: 8px 20px;

    }

    .top_container .container h2 {
        font-size: 20px;
    }

    .header {
        padding: 15px;
    }

    .controls-row {
        flex-direction: column;
        align-items: stretch;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-row.triple {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        padding: 20px;
    }

    .modal_body {
        width: 96%;
    }

    .modal_cont {
        padding:20px 13px 20px 20px;
        max-height:90vh;
    }

    .modal-header h3 {
        color: var(--gray900);
        margin-bottom: 4px;
        font-size: 24px;
        font-weight: 600;
    }

    table {
        font-size: 12px;
    }

    th, td {
        padding: 8px;
    }
    .pc_use {display: none;}
    .mob_use {display: block;}



    .modal-close {
        right:13px;
    }

    .modal-header {
        padding: 0;
        margin-bottom: 16px;
    }

    .modal-header h3 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .modal-content .modal_title {
        font-size: 20px;
    }


    .footer_container {
        padding: 30px 0 40px 0;
        background: var(--white);
        height: auto;
    }

    .footer_container .footer_inner .footer_list {
        font-size: 13px;margin-bottom: 12px;
    }

    .footer_container .footer_inner .copyright {
        font-size: 13px;
    }

    .table-container {
        min-height:300px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .header h1 {
        font-size: 1.25rem;
    }
}







