﻿/* Login */
.login {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
}
.login_left {
    width: -webkit-fill-available;
    height: 100%;
    background: url(image/login_background_min.png);
    background-size: cover;
    display: flex;
    flex-direction: column;
}
.login_left_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 8%;
    height: 100%;
}
.login_left_content_label1 {
    font-family: Inter;
    font-weight: 600;
    font-size: 58.01px;
    line-height: 70.2px;
    letter-spacing: 0px;
    color: #FFFFFF;
}
.login_left_content_label2 {
    font-family: Inter;
    font-weight: 500;
    font-size: 24px;
    line-height: normal;
    letter-spacing: 0px;
    color: rgba(255, 255, 255, 0.60);
}
.login_left_pwby {
    display: flex;
    justify-content: center;
    height:4%;
}
.login_left_pwby_label {
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    color: #FFFFFF;
}
.login_right {
    padding-left:69px;
    padding-right:69px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login_right_content {
    width: 647px;
    height: 497.46px;
    display: flex;
    padding: 40px;
    flex-direction: column;
    align-items: center;
    gap:60px;
}
.login_right_content_logo {
    display: flex;
    width: 100%;
    height: 20%;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap:20px;
}
.login_right_content_logo_img {
    width: 146.685px;
    height: 55.468px;
}
.login_right_content_logo_label {
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 22px;
    color: #23242640;
}
.login_right_signin {
    /*width: 85%;
    margin-top:8%;*/
}

.login_right_signin_input {
    display: flex;
    flex-direction: column;
}
.login_right_signin_input_label {
    width: 460px;
    height: 22px;
    font-family: Inter;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    color: #282828;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}
.login_right_signin_input_text {
    border: 0;
    width: 100%;
    outline: 0;
    color: #282828;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 157.143% */
}
.login_right_signin_input_box {
    border-radius: 6px;
    padding: 11.1px;
    border-width: 1px;
    background: #FFFFFF;
    border: 1px solid #E0E5F2;
    width:460px;
    /*height:48px;*/
}
    .login_right_signin_input_box:focus-within {
        border: 1px solid #4318FF;
    }
.login_right_signin_input_button {
    margin-top: 20px;
    border-radius: 6px;
    padding-top: 14px;
    padding-right: 49px;
    padding-bottom: 14px;
    padding-left: 49px;
    background: var(--link, #4318FF);
    border: 0;
    color: #ffffff;
    width: 460px;
    height: 52px;
}


/*Dialog*/
.dialog-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 2000;
    display: flex;
    animation: dialog-container-entry 0.2s;
}

.dialog {
    background-color: white;
    box-shadow: 0 0 12px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    z-index: 2000;
    align-self: center;
    margin: auto;
    max-height: calc(100% - 3rem);
    animation: dialog-entry 0.4s;
    animation-timing-function: cubic-bezier(0.075, 0.820, 0.165, 1.000);
}

.dialog-title {
    background: #F5F6FB;
    padding: 15px 20px;
    color: #000;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

    .dialog-title h2 {
        color: inherit;
        font-size: 1.1rem;
        margin: 0;
        font-family: 'Bahnschrift', Arial, Helvetica, sans-serif;
        text-transform: uppercase;
    }

.dialog-body {
    flex-grow: 1;
    padding: 0.5rem 3rem 1rem 3rem;
}

.dialog_buttons_div {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 30px;
    justify-content: center;
    gap: 40px;
    
}
.dialog_buttons_but {
    display: flex;
    width: 200px;
    height: 50px;
    padding: 15px 25px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: 1px solid #e3e3e3;
}
    .dialog_buttons_but:disabled, .dialog_buttons_but.disabled, fieldset:disabled .dialog_buttons_but {
        pointer-events: none;
        color: rgba(163, 174, 208, 1);
        background-color: rgba(255, 255, 255, 1);
        stroke: #A3AED0;
    }
.dialog_buttons_but_cancel {
    
    background: #FFF;
    color: #2B3674;
}
.dialog_buttons_but_new {
    background: #FFF;
    color: #198754;
}
.dialog_buttons_but_ok {
    background: #4318FF;
    color: #FFF;
}
    .dialog_buttons_but_ok:hover {
        background: #6339FF;
    }
    .dialog_buttons_but_cancel:hover {
        background: #f3f3f3;
    }
    .dialog_buttons_but_new:hover {
        background: #f3f3f3;
    }
.dialog-body > div {
    display: flex;
    margin-top: 1rem;
    align-items: center;
}

.dialog-body input, .dialog-body select {
    flex-grow: 1;
    width: unset;
}

.dialog-body .size-label {
    min-width: 110px;
    text-align: right;
}
.dialog_table_head_cell {
    width: 110px;
    border-bottom: 1px solid #E4E4E4;
    box-shadow: 0px -1px 0px 0px #E1E1E1 inset;
    white-space: nowrap;
    height: 60px;
    color: #2B3674;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.dialog_table_head_cell_fill {
    width:auto;
}
.dialog_table_row_cell {
    border-bottom: 1px solid #c0c0c0;
    word-wrap: break-word;
    height:40px;
}

/*Input[file]*/
.file_input_button {
    display: flex;
    width: 154px;
    height: 50px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.50);
    background: #FFF;
    color: #2B3674;
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    /* align-content: center; */
    align-items: center;
    justify-content: center;
}
    .file_input_button:not(:disabled):hover {
        background: #F5F6FB;
    }

    .file_input_button:disabled {
        pointer-events: none;
        color: rgba(163, 174, 208, 1);
        background-color: rgba(255, 255, 255, 1);
        border: 1px solid rgba(0, 0, 0, 0.10);
    }

.file_input_nullfile_tip {
    color: #68769F;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

/*Main Menu*/
.main_menu_div {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 243px;
    height: 100%;
    color: white;
    box-shadow: 4px 0px 16px #00000029;
    background-color: #ffffff;
    z-index: 2;
}
.main_menu_logo_box {
    height: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_menu_logo_img {
    flex-shrink: 0;
    top: 0;
    left: 0;
    object-fit: cover;
    /* Default to expanded size in case data-sidebar isn't yet applied */
    width: 139.314px;
    height: 52.68px;
}
html[data-sidebar="collapsed"] .main_menu_logo_img { width: 73.24px; height: 27.77px; }
.main_menu_expand_sidebar {
    display: flex;
    width: 40px;
    height: 41px;
    align-items: flex-start;
    gap: 13.33px;
    padding: 10.67px;
    position: absolute;
    top: 127px;
    right: -20px;
    background-color: #ffffff;
    border-radius: 22.67px;
    box-shadow: 2.67px 2.67px 10.67px #0000001a;
    cursor: pointer;
}
.main_menu_itembox {
    flex-direction: column;
    /*padding-left: 10px;
    padding-right: 10px;*/
}

/*Main Body*/
.main_body {
    display: flex;
    flex-direction: column;
    z-index: 1;
    height: -webkit-fill-available;
}
.main_body_menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    /*box-shadow: 0 1px 3px rgba(0,0,0,0.4);*/
    /*padding: 0.5rem 1rem;*/
    /*width: -webkit-fill-available;*/
    padding-left: 70px;
    padding-right: 70px;
    height: 70px;
    color: rgba(43, 54, 116, 1);
    background-color: rgba(233, 237, 247, 1);
    gap: 60px;
    overflow: hidden;
}
.main_body_content {
    position: relative;
    display: flex;
    flex-direction: column;
    height: calc(100% - 70px);
    width: -webkit-fill-available;
    background-color: #F4F7FE;
    padding-left:20px;
}

/*Main Form ToolBar*/
.body_form_toolbar {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    position: relative;
    justify-content: space-between;
    padding: 30px 22px;
}
/* When two body_form_toolbar blocks are stacked (e.g. BackendAccounts /
   Permissions / MyAccount render a page-level toolbar above DataPageTable's
   own toolbar), the default 30px top + 30px bottom paddings combine into a
   ~60px empty band between the two button rows. Collapse the inner padding
   so the rows sit closer; single-toolbar pages are unaffected. */
.body_form_toolbar:has(+ .body_form_toolbar) {
    padding-bottom: 8px;
}
.body_form_toolbar + .body_form_toolbar {
    padding-top: 8px;
}
.body_form_toolbar_butdiv {
    gap: 20px;
    /*padding: 0px 30px;*/
    display: inline-flex;
    align-items: center;
    position: relative;
    /*flex: 0 0 auto;*/
    flex-wrap: wrap;
}
.body_form_tool_button {
    /*all: unset;*/
    border: 0;
    box-sizing: border-box;
    display: inline-flex;
    height: 45px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    position: relative;
    color: #ffffff;
    border-radius: 30px;
    background-color: rgba(67, 24, 255, 1);
    font-family: "Inter", Helvetica;
    font-weight: 600;
    stroke: #FFFFFF;
    border: 1px solid #f0f0f0;
}
    .body_form_tool_button:hover {
        background-color: rgba(87, 44, 255, 0.8);
    }
    .body_form_tool_button:disabled, .body_form_tool_button.disabled, fieldset:disabled .body_form_tool_button {
        pointer-events: none;
        color: rgba(163, 174, 208, 1);
        background-color: rgba(255, 255, 255, 1);
        stroke: #A3AED0;
    }

.body_form_toolbar_filterdiv {
    display: flex;
    /*width: 395px;*/
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    position: relative;
    margin-top: -1.00px;
    margin-bottom: -1.00px;
    margin-right: -1.00px;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 30px;
    border: 1px solid;
    border-color: rgba(224, 229, 242, 1);
}
    .body_form_toolbar_filterdiv:focus-within {
        border: 1px solid #4318FF;
    }
.body_form_tool_button_filter {
    flex: 1;
    font-family: "Inter", Helvetica;
    font-weight: 400;
    color: rgba(71, 84, 140, 1);
    position: relative;
    font-size: 16px;
    letter-spacing: 0px;
    line-height: normal;
    font-style: normal;
    border: 0;
    outline: 0;
}

/*Main DataTable CheckBox*/
.table-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIiBmaWxsPSJub25lIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTE1LjIxOTMgNC43MDMyM0MxNS43Mjg0IDUuMTY5NTIgMTUuNzYzMSA1Ljk2MDIxIDE1LjI5NjggNi40NjkzQzEzLjg1NTQgOC4wNDI5NiAxMy4xNjIzIDkuMDAyNCAxMi4xMjEzIDEwLjg2NTJDMTEuNzI4MiAxMS41Njg2IDExLjI5MjkgMTIuNTQ0IDEwLjk0NTkgMTMuMzczN0MxMC43NzUgMTMuNzgyNCAxMC42MzAxIDE0LjE0NDcgMTAuNTI4MSAxNC40MDQ0QzEwLjQ3NzIgMTQuNTM0MSAxMC40MzcgMTQuNjM4IDEwLjQwOTggMTQuNzA4OUwxMC4zNzkgMTQuNzg5NUwxMC4zNzE0IDE0LjgwOTZMMTAuMzY5NyAxNC44MTQyQzEwLjIxNDUgMTUuMjI2NSA5Ljg1MzQ2IDE1LjUyNzcgOS40MTk5MiAxNS42MDU0QzguOTg2MzUgMTUuNjgzMSA4LjU0Mzg4IDE1LjUyNjkgOC4yNTUyMSAxNS4xOTQyTDQuNjgwODcgMTEuMDc0NkM0LjIyODQ0IDEwLjU1MzIgNC4yODQzOSA5Ljc2MzY5IDQuODA1ODMgOS4zMTEyN0M1LjMyNzI3IDguODU4ODQgNi4xMTY3NSA4LjkxNDc5IDYuNTY5MTcgOS40MzYyM0w4LjgwNjQxIDEyLjAxNDdDOS4xMzY2MSAxMS4yNDQyIDkuNTQyOTMgMTAuMzU0MiA5LjkzODk1IDkuNjQ1NjFDMTEuMDc0NCA3LjYxMzg3IDExLjg4MTIgNi40OTcwNyAxMy40NTMyIDQuNzgwNzJDMTMuOTE5NSA0LjI3MTYzIDE0LjcxMDIgNC4yMzY5NCAxNS4yMTkzIDQuNzAzMjNaIiBmaWxsPSJ3aGl0ZSIvPjwvc3ZnPg==");
}

.table-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.table-check-input[type=checkbox] {
    border-radius: 0.25em;
}

.table-check-input {
    --bs-form-check-bg: var(--bs-body-bg);
    width: 1em;
    height: 1em;
    margin-top: 0.25em;
    vertical-align: top;
    background-color: var(--bs-form-check-bg);
    background-image: var(--bs-form-check-bg-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid #A3AED0;
    appearance: none;
    print-color-adjust: exact;
}

/*Main DataTable InputBox Search*/
.table_search_input {
    width: 100%;
    border: 0;
    position: relative;
    height: 30px;
    -webkit-appearance: none;
    outline: 0;
}
.table_search_input[type=search]::-webkit-search-cancel-button {
    -webkit-appearance: none;
}
.table_search_inputdiv {
    padding-left:5px;
    position: absolute;
    background: #ffffff;
    left: 5px;
    right: 5px;
    display: none;
    border: 1.313px solid #9374FF;
    border-radius: 5px;
    z-index: 1;
    align-items: center;

}

/*Main DataTable*/
.table-head {
    cursor: default;
    color: #485585;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.table-head-cellfirst {
    width: 70px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 15px;
    padding-right: 2px;
    background-color: #ffffff;
    border: 1px solid #E4E4E4;
    box-shadow: 0px -1px 0px 0px #E1E1E1 inset;
}
.edit_form_table-head-cellfirst {
    width: 70px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 15px;
    padding-right: 2px;
    background-color: #ffffff;
    border-bottom: 1px solid #E4E4E4;
    box-shadow: 0px -1px 0px 0px #E1E1E1 inset;
}
.table-head-cell {
    min-width: 110px;
    white-space:nowrap;
    /*padding-right: 15px;*/
    padding-left: 15px;
    background-color: #ffffff;
    border: 1px solid #E4E4E4;
    box-shadow: 0px -1px 0px 0px #E1E1E1 inset;
}
.edit_form_table-head-cell {
    width: 110px;
    /*padding-right: 15px;*/
    padding-left: 15px;
    background-color: #ffffff;
    border-bottom: 1px solid #E4E4E4;
    box-shadow: 0px -1px 0px 0px #E1E1E1 inset;
    white-space: nowrap;
}
.edit_form_table-head-cell-fill {
    padding-right: 15px;
    padding-left: 15px;
    background-color: #ffffff;
    border-bottom: 1px solid #E4E4E4;
    box-shadow: 0px -1px 0px 0px #E1E1E1 inset;
    white-space: nowrap;
}
.edit_form_table-head-celllast {
    padding-left: 15px;
    background-color: #ffffff;
    box-shadow: 0px -1px 0px 0px #E1E1E1 inset;
}
.table-head-celllast {
    padding-left: 15px;
    background-color: #ffffff;
    border: 1px solid #E4E4E4;
    box-shadow: 0px -1px 0px 0px #E1E1E1 inset;
}
.table_head_tooldiv {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding-left: 10px;
    padding-right: 20px;
}
.table_head_tool_search {
    /*opacity: 0.4;*/
}
    .table_head_tool_search:hover {
        /*opacity: 1;*/
    }
.table_head_sortdiv {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.table_head_sortbut {
    cursor: pointer;
    /*opacity: 0.4;*/
}
    .table_head_sortbut:hover {
        /*opacity: 1;*/
    }
.table_head_columndrop {
    cursor: move;
    /*opacity: 0.4;*/
}

    .table_head_columndrop:hover {
        /*opacity: 1;*/
    }

.table-fixed-column {
    z-index: 1;
    position: sticky;
    /*background-color: #ffffff;*/
}
.table-row {
    cursor: pointer;
    background-color: #ffffff;
    /* Skip layout/paint for off-screen rows; 62px = .table-row-cell height (60px) + 1px borders top+bottom. */
    content-visibility: auto;
    contain-intrinsic-size: auto 62px;
}
    .table-row:hover {
        background-color: #9374FF;
    }
        .table-row:hover .table-row-cell {
            color: #ffffff;
        }
        .table-row:hover .datagrid-filter-item-pop-pan-row {
            color: #ffffff;
        }
        .table-row:hover .table-row-cellfirst {
            background-color: #9374FF;
        }

.edit_form_table-row {
    cursor: pointer;
    background-color: #ffffff;
}
    .edit_form_table-row:hover {
        background-color: #9374FF;
    }
    .edit_form_table-row:has(.table-check-input:checked) {
        background-color: #7551FF;
    }

.table-row-cellfirst {
    padding-left: 15px;
    padding-right: 2px;
    height: 60px;
    word-wrap: break-word;
    background-color: #ffffff;
    border: 1px solid #E4E4E4;
}
.edit_form_table-row-cellfirst {
    padding-left: 15px;
    padding-right: 2px;
    height: 60px;
    word-wrap: break-word;
    /*background-color: #ffffff;*/
    border-bottom: 1px solid #E4E4E4;
}
.table-row-cell {
    padding-right: 15px;
    padding-left: 15px;
    height: 60px;
    /*word-wrap: break-word;*/
    color: #2B3674;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    /*background-color: #ffffff;*/
    border: 1px solid #E4E4E4;
    /*box-shadow: 0px -1px 0px 0px #E1E1E1 inset;*/
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.edit_form_table-row-cell {
    padding-right: 15px;
    padding-left: 15px;
    height: 60px;
    color: #2B3674;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    /*background-color: #ffffff;*/
    border-bottom: 1px solid #E4E4E4;
    /*box-shadow: 0px -1px 0px 0px #E1E1E1 inset;*/
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.edit_form_table-row:hover .edit_form_table-row-cell {
        color: #ffffff;
}
.edit_form_table-row:has(.table-check-input:checked) .edit_form_table-row-cell {
    color: #ffffff;
}

.table-row-celllast {
    padding-left: 15px;
    word-wrap: break-word;
    /*background-color: #ffffff;*/
    border: 1px solid #E4E4E4;
}
.edit_form_table-row-celllast {
    padding-left: 15px;
    word-wrap: break-word;
    border-bottom: 1px solid #E4E4E4;
    /*background-color: #ffffff;*/
}
.table_scroll_to_top {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
    /*flex-shrink: 0;
    fill: #7551FF;*/
    background-color: #7551FF;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
    .table_scroll_to_top:hover {
        background-color: #6541DF;
    }

/*Main DataTable Paging*/
.table_paging_div {
    display: flex;
    align-items: center;
    justify-content: center;
    /*background-color: #dfdfdf;*/
    padding:10px;
}
.table-paging-butlist {
    display: flex;
    /*margin-left: auto;*/
    gap: 0.5rem;
    align-items: center;
    font-size: 13px;
}
.table-paging-but {
    display: flex;
    width: 42px;
    height: 42px;
    padding: 13.125px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 13.125px;
    border-radius: 42px;
    border: 1.313px solid #F1F1F1;
    background: #FFF;
}
    .table-paging-but:disabled {
        opacity: 0.4;
    }

.log_table_cell {
    padding-left: 10px;
    white-space: nowrap;
}

/*Edit Form*/
.edit_form_button {
    border-radius: 30px;
    display: flex;
    width: 100px;
    height: 49px;
    padding: 15px 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.edit_form_button_save {
    background-color: #FFFFFF;
    color: #1B2128;
    border: 1px solid rgba(0, 0, 0, 0.50);
}
.edit_form_button_update {
    background-color: #4318FF;
    color: #FFF;
    border: 1px solid var(--Colors-Pink, #4318FF);
}
.edit_form_button_delete {
    background-color: #FFFFFF;
    color: #FF2D55;
    border: 1px solid var(--Colors-Pink, #FF2D55);
}
.edit_form_button_cancel {
    background-color: #656d79;
    color: #FFFFFF;
    border: 1px solid #656d79;
}
    .edit_form_button_save:hover {
        background-color: #f3f3f3;
    }
    .edit_form_button_update:hover {
        background-color: #6339FF;
    }
    .edit_form_button_delete:hover {
        background-color: #f3f3f3;
    }
    .edit_form_button_cancel:hover {
        background-color: #858d99;
    }
    .edit_form_button:disabled, .edit_form_button.disabled, fieldset:disabled .edit_form_button {
        pointer-events: none;
        color: rgba(163, 174, 208, 1);
        background-color: rgba(255, 255, 255, 1);
        border: 1px solid #E0E5F2;
        stroke: #A3AED0;
    }

.edit_form_body {
    background-color: #F4F7FE;
    z-index: 100;
    position: absolute;
    display: flex;
    flex-direction: column;
    width: -webkit-fill-available;
    height: -webkit-fill-available;
    padding: 20px;
    gap: 25px;
    overflow-y: auto;
    /*overflow-x: hidden;*/
    /* Default typography for the admin-form body. Existing typed elements
       (edit_form_label00, size-label, etc.) keep their explicit Inter
       declarations and override; raw <div>/<span> children that previously
       fell back to Bootstrap's system-ui now inherit Inter so admin pages
       built without the typed classes still match the rest of the app. */
    font-family: Inter, "Helvetica", system-ui, sans-serif;
    color: #2B3674;
}
.edit_form_body_pan {
    display: flex;
    width: -webkit-fill-available;
    padding: 10px 30px 30px 30px;
    gap: 10px;
    border-radius: 10px;
    border: 1px solid #E0E5F2;
    background: #FFF;
}
.edit_form_body_pan_column {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.edit_form_body_row {
    display: flex;
    align-items: center;
    gap: 30px;
    align-self: stretch;
    width: -webkit-fill-available;
    padding-top:20px;
}
.edit_form_status_tip {
    border-radius: 30px;
    display: flex;
    width: 122px;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.edit_form_status_font {
    color: #2B3674;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.edit_form_boxdiv_text {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}
.edit_form_boxdiv_date {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}
.edit_form_box_input {
    align-self: stretch;
    padding: 10px 16px;
    border-radius: 4px;
    border: 1px solid #E0E5F2;
    background: #FFF;
    width:100%;
    outline:0;
}
    .edit_form_box_input:disabled, .edit_form_box_input.disabled, fieldset:disabled .edit_form_box_input {
        pointer-events: none;
        background-color: #F6F8FD;
    }
    .edit_form_box_input:focus {
        border: 1px solid #4318FF;
    }

.edit_form_pagetab_rad {
    display: none;
}
.edit_form_pagetab_label {
    color: #2B3674;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}
    .edit_form_pagetab_rad:checked + .edit_form_pagetab_label {
        font-weight: 600;
    }
.edit_from_page_pan {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow-y: hidden;

    /*background-color: #F4F7FE;
    z-index: 100;
    position: absolute;
    display: flex;
    flex-direction: column;*/
    width: -webkit-fill-available;
    height: 100%;
    /*padding: 20px;
    gap: 25px;
    overflow-y: hidden;*/
}

/*Edit Form Order*/
.form_order_product_add_div {
    display: flex;
    width: 660px;
    padding: 10px 16px;
    align-items: center;
    gap: 8px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 4px;
    background: #FFF;
    color: #1B2128;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/*DIV Flex*/
.display_flex_valign {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/*Font*/
.edit_form_label00 {
    color: #2B3674;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.edit_form_label01 {
    color: #534D59;
    text-align: right;
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.edit_form_label03 {
    color: #534D59;
    text-align: right;
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.edit_form_navigation_item {
    cursor: pointer;
}
.edit_form_navigation_item:hover {
    color: #4318FF;
}

.edit_from_filter_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.edit_from_filter_input {
    display: flex;
    border-bottom: 1px solid #d0d0d0;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    outline: 0;
    width:200px;
    stroke: #d0d0d0;
    gap:10px;
}
    .edit_from_filter_input:focus-within {
        border-bottom: 1px solid #4318FF;
        stroke: #4318FF;
    }

/*Root Variable*/
:root {
    --收到-background: rgba(66, 190, 120, 0.20);
    --已遞交-background: rgba(66, 190, 120, 0.20);
    --Disabled-background: #F6F8FD;
}

.password-mask {
    -webkit-text-security: disc;
    text-security: disc;
}
/*清除浏览器自动填充自带的背景色*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    /*-webkit-transition-delay: 99999s;*/
    -webkit-transition: color 99999s ease-out, background-color 99999s ease-out;
}
/*清除数字输入框的微调器*/
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Sidebar expand/collapse - driven by html[data-sidebar] attribute from toaoms.js */
html[data-sidebar="expanded"] .main_menu_div { width: 243px; min-width: 243px; }
html[data-sidebar="collapsed"] .main_menu_div { width: 119px; min-width: 119px; }
html[data-sidebar="expanded"] .oms-main-body { width: calc(100% - 243px); }
html[data-sidebar="collapsed"] .oms-main-body { width: calc(100% - 119px); }
.main_menu_content .nav-link { padding-left: 6px; box-sizing: border-box; }
html[data-sidebar="expanded"] .main_menu_item_box { gap: 20px; }
html[data-sidebar="collapsed"] .main_menu_item_box { gap: 8px; flex-direction: column; align-items: center; }
html[data-sidebar="expanded"] .main_menu_expand_sidebar svg path.expanded-icon { display: inline; }
html[data-sidebar="expanded"] .main_menu_expand_sidebar svg path.collapsed-icon { display: none; }
html[data-sidebar="collapsed"] .main_menu_expand_sidebar svg path.expanded-icon { display: none; }
html[data-sidebar="collapsed"] .main_menu_expand_sidebar svg path.collapsed-icon { display: inline; }
html[data-sidebar="expanded"] .sidebar-root-padding { padding: 0px 14px; }
html[data-sidebar="collapsed"] .sidebar-root-padding { padding: 0px 9px; }

