﻿
@import url("variables.css");
@import url("sidemenu.css");
@import url("input.css");
@import url("status.css");
@import url("all-sidebar.css");
@import url("all-skeleton.css");

*, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0
}

html {
scroll-behavior: smooth
}

body {
font-family: var(--font-ui);
font-size: var(--t-base);
color: var(--n-800);
background: var(--page);
line-height: 1.5;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
overflow-y: auto;
overflow-x: hidden;
}
input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    cursor: pointer;
    /* icon color */
    background-color: var(--n-400);
    /* make icon larger */
    -webkit-mask-size: 14px 14px;
    mask-size: 14px 14px;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    /* SVG icon */
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 24 24'%3E%3Cpath d='M18.3 5.71L12 12l6.3 6.29-1.41 1.41L10.59 13.41 4.29 19.7 2.88 18.29 9.17 12 2.88 5.71 4.29 4.29l6.3 6.3 6.29-6.3z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 24 24'%3E%3Cpath d='M18.3 5.71L12 12l6.3 6.29-1.41 1.41L10.59 13.41 4.29 19.7 2.88 18.29 9.17 12 2.88 5.71 4.29 4.29l6.3 6.3 6.29-6.3z'/%3E%3C/svg%3E");
    -webkit-appearance: searchfield-cancel-button;
    display: block !important;
}
/*.search-input {
    appearance: auto !important;
    -webkit-appearance: searchfield !important;
}

    .search-input::-webkit-search-cancel-button {
        -webkit-appearance: searchfield-cancel-button;
        display: block !important;
    }*/

.cursor-pointer {
cursor: pointer;
}
.btn-close:focus {
    outline: 0;
    box-shadow: none !important;
    opacity: 1;
}

a {
color: inherit;
text-decoration: none
}

button {
font-family: var(--font-ui);
cursor: pointer
}

[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
cursor: pointer;
text-transform: capitalize;
}

input, select, textarea {
font-family: var(--font-ui)
}

ul {
list-style: none;
padding: 0;
margin: 0
}

.font-mono {
font-family: var(--font-mono) !important;
}

.text-success {
color: var(--g-500) !important
}

.text-danger {
color: var(--red-500) !important
}

.text-secondary {
color: var(--n-900) !important
}

.text-warning {
color: var(--amber-500) !important
}

.text-info {
color: var(--v-500) !important
}

.text-light {
color: var(--n-0) !important
}

.fw-300 {
font-weight: var(--fw-l) !important
}

.fw-400 {
font-weight: var(--fw-n) !important
}

.fw-500 {
font-weight: var(--fw-md) !important
}

.fw-600 {
font-weight: var(--fw-semi) !important
}

.modal-header {
padding: 10px 20px;
border-bottom: 1px solid var(--n-100);
background: var(--n-25);
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
}
.tab-count {
    font-size: 10px;
    font-weight: var(--w-semi);
    background: var(--n-100);
    color: var(--n-500);
    border-radius: var(--r-full);
    padding: 1px 6px;
}

/* ═══════════════════════════════════════════════════════════════
BUTTONS — 2026 style
Key: inset shadow for depth, sharp hover with shadow lift
═══════════════════════════════════════════════════════════════ */
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 4px;
font-family: var(--font-ui);
font-size: var(--t-14);
font-weight: var(--fw-semi);
padding: 7px 14px;
border-radius: var(--r-6);
border: 1px solid transparent;
cursor: pointer;
transition: all .110ms var(--ease-quart);
line-height: 1;
white-space: nowrap;
user-select: none;
color:var(--n-900);
position:relative
}

.btn svg {
width: 14px;
height: 14px;
flex-shrink: 0;
fill: none;
stroke: currentColor;
stroke-width: 2;
}

/*.btn-loading{ position:absolute; right:0; top:0}*/

/*.auto-btn-spinner {
    display: none;
}*/

/* when loading */
button.loading .auto-btn-spinner {
    display: inline-block;
}

/* hide icon while loading */
button.loading .search-icon {
    display: none;
}

.btn-secondary {
background: var(--n-0);
color: var(--n-700);
border-color: var(--n-100);
box-shadow: var(--sh-sm),var(--sh-shine);
}

.btn-secondary:hover {
background: var(--n-75);
border-color: var(--n-200);
color: var(--n-900);
transform: translateY(-1px);
}

.btn-ghost {
background: transparent;
color: var(--n-600);
border-color: transparent;
}

.btn-ghost:hover {
background: var(--n-75);
color: var(--n-900);
}

.btn-danger {
background: var(--red-500);
color: #fff;
border-color: #b91c1c;
box-shadow: 0 4px 12px rgba(220,38,38,.25),var(--sh-shine);
}

.btn-danger:hover {
background: #b91c1c;
color: #fff;
}

.btn-amber {
background: var(--amber-500);
color: #fff;
border-color: #b45309;
box-shadow: 0 4px 12px rgba(217,119,6,.3),var(--sh-shine);
}

.btn-sm svg {
width: 12px;
height: 12px;
}

.btn-icon {
width: 30px;
height: 30px;
padding: 0;
justify-content: center;
}

.btn-icon.sm {
width: 26px;
height: 26px;
}

.btn svg {
width: 12px;
height: 12px
}
/* ── Sizes ── */
.btn-2xs {
font-size: 11px;
padding: 3px 9px;
border-radius: var(--r-4);
gap: 4px
}

.btn-xs {
font-size: var(--t-xs);
padding: 4px 10px;
border-radius: var(--r-4);
gap: 4px
}

.btn-sm {
font-size: var(--t-sm);
padding: 4px 12px !important;
border-radius: var(--r-6);
}

.btn-md {
font-size: var(--t-sm);
padding: 7px 12px;
}

.btn-lg {
font-size: var(--t-base);
padding: 10px 14px;
}

.btn-xl {
font-size: var(--t-lg);
padding: 12px 16px;
}

.btn svg {
width: 14px;
height: 14px;
flex-shrink: 0;
fill: none;
stroke: currentColor;
stroke-width: 2;
}

.btn-sm svg {
width: 12px;
height: 12px;
}

.btn-md svg {
width: 14px;
height: 14px;
}

.btn-md svg.export {
width: 12px;
height: 12px;
}

.btn-md svg.search {
width: 12px;
height: 12px;
}

.dd-item svg.export {
width: 12px;
height: 12px;
}

.action-dropdown .btn-secondary {
    width: 28px !important;
    height: 28px;
    border-radius: 6px;
    background: transparent;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--n-400);
    transition: all 110ms var(--ease-quart);
    box-shadow: none;
}

.action-dropdown .btn-secondary .bi-three-dots-vertical{
    transform: rotate(90deg);
}



/* ── Variants ── */
/* Primary — green, inset shine */
.btn-primary {
    background: var(--g-500);
    color: var(--n-0);
    border-color: var(--g-600);
    box-shadow: var(--sh-green), var(--sh-shine);
}

    .btn-primary:hover {
        background: var(--g-600);
        color: var(--n-0);
        box-shadow: var(--sh-md), var(--sh-green);
        transform: translateY(-1px);
        border-color: var(--g-600);
    }

.btn-primary:active {
background: var(--g-600);
color: var(--n-0);
}

.btn-check:focus + .btn-primary, .btn-primary:focus {
background: var(--g-500);
color: var(--n-0);
border-color: var(--g-600);
box-shadow: var(--sh-green), var(--sh-shine);
}

.btn-primary-outline {
background: var(--surface);
color: var(--n-700);
border-color: var(--n-150);
box-shadow: 0 6px 20px rgba(0, 0, 0, .08), var(--sh-shine);
}

.btn-primary-outline:hover {
background: var(--surface);
color: var(--n-700);
border-color: var(--n-150);
box-shadow: 0 6px 20px rgba(0, 0, 0, .2), var(--sh-shine);
transform: translateY(-1px);
}

.btn-primary-outline:active {
background: var(--surface);
color: var(--n-700);
border-color: var(--n-150);
box-shadow: 0 6px 20px rgba(0, 0, 0, .2), var(--sh-shine);
}

.btn-primary-outline:focus, .btn-primary:focus {
outline: 0;
}

/* Secondary */
.btn-secondary {
background: var(--surface);
color: var(--n-700);
border-color: var(--n-150);
box-shadow: var(--sh-xs), inset 0 1px 0 rgba(255,255,255,.9);
}

.btn-secondary:hover {
color: var(--n-700);
background: var(--n-50);
border-color: var(--n-200);
box-shadow: var(--sh-sm), inset 0 1px 0 rgba(255,255,255,.9);
}

.btn-check:active + .btn-secondary, .btn-check:checked + .btn-secondary, .btn-secondary.active, .btn-secondary:active, .show > .btn-secondary.dropdown-toggle {
color: var(--n-700);
background: var(--n-50);
border-color: var(--n-200);
box-shadow: var(--sh-sm), inset 0 1px 0 rgba(255,255,255,.9);
}

.btn-check:focus + .btn-secondary, .btn-secondary:focus {
color: var(--n-700);
background: var(--n-50);
border-color: var(--n-200);
box-shadow: var(--sh-sm), inset 0 1px 0 rgba(255,255,255,.9);
}

/* Ghost */
.btn-secondary-outline {
background: var(--surface);
color: var(--n-700);
border-color: var(--n-150);
box-shadow: var(--sh-xs), inset 0 1px 0 rgba(255,255,255,.9);
}

.btn-secondary:hover {
background: var(--n-50);
border-color: var(--n-200);
box-shadow: var(--sh-sm), inset 0 1px 0 rgba(255,255,255,.9);
}

.btn-ghost:hover {
background: var(--n-75);
color: var(--n-800)
}

/* Accent / Violet */
.btn-accent {
background: var(--v-500);
color: #fff;
border-color: var(--v-600);
box-shadow: var(--sh-xs), inset 0 1px 0 rgba(255,255,255,.15);
}

.btn-accent:hover {
background: var(--v-600);
box-shadow: var(--sh-violet), inset 0 1px 0 rgba(255,255,255,.12);
}

/* Accent outline */
.btn-accent-outline {
background: var(--v-50);
color: var(--v-600);
border-color: var(--v-200);
}

.btn-accent-outline:hover {
background: var(--v-100);
border-color: var(--v-300);
}

/* Danger */
.btn-danger {
background: var(--red-500);
color: #fff;
border-color: var(--red-600);
box-shadow: var(--sh-xs), inset 0 1px 0 rgba(255,255,255,.12);
}

.btn-danger:hover {
background: var(--red-600);
box-shadow: 0 3px 10px rgba(220,38,38,.25);
}

/* Danger outline */
.btn-danger-outline {
background: var(--red-50);
color: var(--red-500);
border-color: var(--red-100);
}

.btn-danger-outline:hover {
background: var(--red-100);
border-color: var(--red-100);
color: var(--red-500);
}

/* Success outline */
.btn-success-outline {
background: var(--g-50);
color: var(--g-700);
border-color: var(--g-200);
}

.btn-success-outline:hover {
background: var(--g-100);
border-color: var(--g-300);
}

/* Warning */
.btn-warning {
background: var(--amber-50);
color: var(--amber-600);
border-color: var(--amber-100);
}

.btn-warning:hover {
background: var(--amber-100);
color: var(--amber-600);
}

/* States */
.btn:disabled,
.btn-disabled {
    opacity: .38;
    cursor: not-allowed;
    pointer-events: none;
    color: #060606;
    background-color: #d1d1d1;
    border-color: #5c5c5c;
}

.btn-loading {
cursor: wait;
pointer-events: none;
opacity: .75;
}

.btn-loading .btn-spinner {
width: 12px;
height: 12px;
border: 1.5px solid currentColor;
border-top-color: transparent;
border-radius: 50%;
animation: spin .65s linear infinite;
flex-shrink: 0;
}

@keyframes spin {
to {
transform: rotate(360deg)
}
}

/* Icon-only */
.btn-ico {
aspect-ratio: 1;
padding: 0 !important
}

.btn-ico.btn-2xs {
width: 22px
}

.btn-ico.btn-xs {
width: 24px
}

.btn-ico.btn-sm {
width: 30px
}

.btn-ico.btn-md {
width: 34px
}

.btn-ico.btn-lg {
width: 40px
}

/* Split */
.btn-split {
display: inline-flex
}

.btn-split .btn {
border-radius: 0
}

.btn-split .btn:first-child {
border-radius: var(--r-6) 0 0 var(--r-6);
border-right: none
}

.btn-split .btn:last-child {
border-radius: 0 var(--r-6) var(--r-6) 0;
padding: 0 10px
}

.input-group .btn-primary {
background: var(--n-200);
color: #fff;
border-color: var(--n-200);
}

/*button:focus:not(:focus-visible) {
outline: 0;
box-shadow:none
}*/
/* ═══════════════════════════════════════════════════════════════
BADGES & TAGS
═══════════════════════════════════════════════════════════════ */
/* 2026 badges: solid background + fine border + no pill radius by default */
.badge {
display: inline-flex;
align-items: center;
gap: 4px;
font-size: var(--t-xs);
font-weight: var(--fw-md);
border-radius: var(--r-4);
padding: 2px 7px;
border: 1px solid transparent;
white-space: nowrap;
letter-spacing: .01em;
}

.badge-dot {
width: 5px;
height: 5px;
border-radius: 50%;
flex-shrink: 0
}

.badge-pill {
border-radius: var(--r-full)
}

/* Soft variants */
.badge-green {
    background: var(--g-50);
    color: var(--g-700) !important;
    border-color: var(--g-200) !important
}

.badge-violet {
    background: var(--v-50);
    color: var(--v-700) !important;
    border-color: var(--v-200) !important
}

.badge-red {
    background: var(--red-50);
    color: var(--red-600) !important;
    border-color: var(--red-100) !important
}

.badge-amber {
    background: var(--amber-50);
    color: var(--amber-600) !important;
    border-color: var(--amber-100) !important
}

.badge-teal {
    background: var(--teal-50);
    color: var(--teal-600) !important;
    border-color: #99f6e4 !important
}

.badge-neutral {
    background: var(--n-75);
    color: var(--n-600) !important;
    border-color: var(--n-100) !important
}

/* Solid variants */
.badge-green-s {
background: var(--g-500);
color: #fff;
border-color: var(--g-600)
}

.badge-violet-s {
background: var(--v-500);
color: #fff;
border-color: var(--v-600)
}

.badge-red-s {
background: var(--red-500);
color: #fff;
border-color: var(--red-600)
}

.badge-neutral-s {
background: var(--n-700);
color: #fff;
border-color: var(--n-800)
}

.badge-amber-s {
background: var(--amber-500);
color: #fff;
border-color: var(--amber-600)
}

.badge-vendor {
    background: var(--n-75);
    color: var(--n-600) #514c48;
    border-color: var(--n-150);
    font-weight: 500;
    font-size: 11px;
}

/* Removable tag */
.tag {
    font-size: 12px;
    font-weight: 500;
    color: var(--n-500);
    background: var(--n-0);
    border: 1px solid var(--n-150);
    border-radius: 9999px;
    padding: 4px 13px;
    cursor: pointer;
    box-shadow: var(--sh-xs);
    transition: all var(--dur-fast) var(--ease-quart);
    user-select: none;
    white-space: nowrap;
    line-height:1
}
    .tag i {
        font-size: 10px;
        margin-right: 2px;
    }

    .type-pill.on {
        background: var(--g-500);
        color: #fff;
        border-color: var(--g-600);
        font-weight: 600;
    }

/*.tag:hover {
border-color: var(--n-200)
}*/

.tag-x {
background: none;
border: none;
cursor: pointer;
color: var(--n-300);
padding: 0;
line-height: 1;
font-size: 13px;
display: flex;
transition: color var(--dur-fast);
}

.tag-x:hover {
color: var(--red-400)
}

.tag-green {
    background: var(--g-500);
    color: var(--n-0);
    border-color: var(--g-500);
    box-shadow: var(--sh-xs), var(--sh-green), inset 0 1px 0 rgba(255, 255, 255, .15);
}

.tag-violet {
background: var(--v-50);
color: var(--v-700);
border-color: var(--v-200)
}
.tag-green span{
    color: var(--n-0) !important;

}

/* ═══════════════════════════════════════════════════════════════
FORM
═══════════════════════════════════════════════════════════════ */

input:focus-visible {
outline: 0;
}




/* ═══════════════════════════════════════════════════════════════
TABLES
═══════════════════════════════════════════════════════════════ */
.table-wrap {
min-height: 400px;
overflow: visible;
}

.tbl-wrap {
border: 1px solid var(--border);
border-radius: var(--r-12);
overflow: hidden;
box-shadow: var(--sh-sm);
}

table {
width: 100%;
border-collapse: collapse;
font-size: var(--t-sm)
}

thead {
background: var(--n-25);
position: sticky;
top: 0;
z-index: 6;
overflow:hidden;
border-radius:12px 12px 0 0
}

th {
padding: 8px 10px;
text-align: left;
font-size: var(--t-10);
font-weight: var(--fw-semi);
color: var(--n-400);
letter-spacing: var(--ls-wider);
text-transform: uppercase;
border-bottom: 1px solid var(--border);
white-space: nowrap;
}

th.sortable {
cursor: pointer
}

th.sortable:hover {
color: var(--n-700)
}

/*tr:last-child td {
border-bottom: none
}*/

.list-table tr:last-child td {
border-bottom: 1px solid var(--n-50);
}

td {
padding: 8px 10px;
color: var(--n-700);
font-size: var(--t-11);
font-weight: var(--fw-n);
border-bottom: 1px solid var(--n-50);
vertical-align: middle;
}

    td:empty::before,
    .d-empty::before {
        content: "--";
        color: #999;
    }


/*td span{
color: var(--n-400);
}*/

tbody tr {
transition: background var(--dur-instant)
}

tbody tr:hover td {
background: var(--n-25)
}

.td-mono {
font-size: var(--t-11);
color: var(--n-800);
letter-spacing: 0.01em;
line-height: 1.4;
}

.td-sub {
    font-size: var(--t-11);
    color: var(--n-400);
    margin-top: 2px;
}
.td-dg {
    font-size: var(--t-12);
    color: var(--n-800);
    letter-spacing: 0.01em;
    line-height: 1.3;
    font-weight: var(--fw-semi) !important;
}


.td-strong {
font-weight: var(--fw-semi);
color: var(--n-900)
}

.td-muted {
color: var(--n-400)
}

.accordion-btn {
width: 26px;
height: 26px;
display: inline-grid;
place-items: center;
border: 0;
border-radius: 0;
background: transparent;
cursor: pointer;
padding: 0;
margin-top: 0px;
}

.card-b .sub-trip {
    display: none;
    background: rgba(237,251,242,.3);
    font-weight: normal;
}
.card-b .sub-trip:hover td{
    background: rgba(237, 251, 242, .55);
}

.card-b .parent-trip {
    background: var(--g-50);
}
.card-b .parent-trip:hover td{
    background: var(--g-50);
}

.card-b .sub-trip td {
    padding: 8px 10px;
    position: relative
}
/* Branch lines */
.sub-trip td:first-child::before {
content: "";
position: absolute;
left: 16px;
top: 0;
bottom: 0;
width: 2px;
background: #2ba24c;
}

.sub-trip td:first-child::after {
content: "";
position: absolute;
left: 16px;
top: 25px;
width: 20px;
height: 2px;
background: #2ba24c;
}

.card-b .sub-table td {
padding: 14px 14px;
position: relative
}
/* Branch lines */
.card-b .sub-table td:first-child::before {
content: "";
position: absolute;
left: 16px;
top: 0;
bottom: 0;
width: 2px;
background: #2ba24c;
}

.card-b .sub-table td:first-child::after {
content: "";
position: absolute;
left: 16px;
top: 32px;
width: 28px;
height: 2px;
background: #2ba24c;
}

.card-b .sub-table td {
background: var(--n-25);
}

/* Inline editable cell */
.cell-edit {
cursor: pointer;
border-radius: var(--r-4);
padding: 2px 4px;
margin: -2px -4px;
position: relative;
transition: background var(--dur-fast);
}

.cell-edit:hover {
background: var(--g-50);
outline: 1px dashed var(--g-300);
}

.cell-edit:hover::after {
content: '↗';
position: absolute;
right: -16px;
top: 50%;
transform: translateY(-50%);
font-size: 9px;
color: var(--g-500);
}

.cell-inp {
width: 100%;
font-family: var(--font-ui);
font-size: var(--t-sm);
color: var(--n-800);
background: var(--surface);
border: 1.5px solid var(--g-400);
border-radius: var(--r-4);
padding: 3px 6px;
outline: none;
box-shadow: var(--focus-ring);
}

/* Tbl toolbar */
.tbl-tool {
display: flex;
align-items: center;
gap: 8px;
padding: 10px 14px;
border-bottom: 1px solid var(--border);
background: var(--surface);
}

.tbl-tool-title {
font-size: var(--t-md);
font-weight: var(--fw-semi);
color: var(--n-800);
flex: 1
}

table th .form-select.th-select {
background-color: #fafaf9;
border: 0;
border-radius: 10px;
padding: 0px 24px 0px 0;
font-size: 13px;
color: #111827;
box-shadow: 0 1px 0 rgba(0, 0, 0, .02);
background-position: right .3rem center;
display: inline-block;
width: auto;
}

table th .form-select.th-select input {
width: 100%;
height: 36px;
padding: 0;
padding-right: 0;
border: 0;
border-radius: 0;
font-size: 13px;
background: #f8fafc;
}

table th .form-select.th-select .clear {
position: absolute;
right: -24px;
top: 6px;
width: 24px;
height: 24px;
display: flex;
align-items: center;
justify-content: center;
color: #F44336;
cursor: pointer;
background: #f8fafc;
}

table th .form-select.th-select input {
width: 100%;
height: 36px;
padding: 0;
padding-right: 0;
border: 0;
border-radius: 0;
font-size: 13px;
background: #fafaf9;
}

table th .search-select.open .options {
display: block;
right: 0;
left: auto;
}

table th .search-select .option .option-label {
text-transform: initial;
}

.recent-table {
max-height: 500px;
overflow-y: auto;
scrollbar-width: thin;
scrollbar-color: var(--n-150) transparent;
}

table td .progress {
height: .4rem;
}

.pagination {
gap: 4px;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
    padding: 0 6px;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 500;
    color: var(--n-600);
    background: var(--n-0);
    border: 1px solid var(--n-150);
    border-radius: 6px;
    cursor: pointer;
    box-shadow: var(--sh-xs);
    transition: all 110ms var(--ease-quart);
    white-space: nowrap;
}

.page-item.active .page-link {
z-index: 3;
color: var(--n-0);
background-color: var(--g-500);
border-color: var(--g-500);
box-shadow: var(--sh-green), var(--sh-shine);
}

.actions {
display: flex;
gap: 6px;
align-items: center
}

.new-datepicker {
display: flex;
align-items: center;
width: 100%;
font-family: var(--font-ui);
color: var(--n-800);
font-weight: var(--fw-md);
background: var(--n-75);
border: 1px solid var(--n-100);
border-radius: var(--r-6);
outline: none;
line-height: 1.5;
box-shadow: var(--sh-inset);
transition: border-color var(--dur-fast) var(--ease-out-quart), background var(--dur-fast) var(--ease-out-quart), box-shadow var(--dur-fast) var(--ease-out-quart);
}

.new-datepicker:hover {
background: var(--n-50);
border-color: var(--n-200);
}

.new-datepicker .form-control {
background: transparent;
border: 0;
font-size: 12px;
height: 28px;
width: 126px;
box-shadow: none
}


.new-datepicker .form-label {
font-size: 10px;
color: #334155;
font-weight: 600;
display: block;
margin-bottom: 0;
padding: 0 0px 0 7px;
}

.new-datepicker span {
display: block;
font-size: 16px;
color: #c1c1c1;
font-weight: 400;
}
/* ═══════════════════════════════════════════════════════════════
LAYOUT
═══════════════════════════════════════════════════════════════ */
.theme-2 .card.wrap {
background: transparent !important;
border: 0 !important;
box-shadow: none
}

.layout {
display: flex;
min-height: 100vh;
}

.layout-body {
flex: 1;
min-width: 0; /* prevents overflow issues */
}

/*.layout-body {
width: calc(100% - var(--sb-w));
}

.side-menu-bar.collapsed ~ .layout-body {
width: calc(100% - var(--sb-w-col));
}*/

.topbar {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--r-12);
padding: 12px 12px;
box-shadow: var(--sh-xs), var(--sh-inset);
position: relative;
}

    .topbar h1 {
        font-size: var(--t-2xl);
        font-weight: var(--fw-semi);
        color: var(--n-900);
        letter-spacing: var(--ls-snug);
        margin: 0;
        text-transform: capitalize;
    }

.topbar h1 span {
font-size: var(--t-12);
font-weight: var(--fw-md);
color: var(--n-400);
margin-left: 4px
}

.topbar .search-select .clear {
right: 2px;
top: 0px;
width: 15px;
height: 15px;
font-size: 10px;
}

.summaryTag {
margin: 10px 0 0 0;
}

.summaryTag ul {
margin: 0;
padding: 0;
list-style-type: none;
display: flex;
align-content: center;
flex-flow: row;
}

.summaryTag ul li {
padding: 4px 14px 4px 0;
box-shadow: 0 0.375rem 0.75rem rgba(140, 152, 164, .075);
background: #fff;
border-radius: 4px;
font-size: 13px;
font-weight: 500;
margin-right: 10px;
}


.kpi-box-sc {
margin: 0
}

.kpi-box-sc .kpi-box {
background: var(--n-0);
border: 1px solid var(--border);
border-radius: var(--r-12);
padding: 12px 16px;
box-shadow: var(--sh-sm), inset 0 1px 0 rgba(255, 255, 255, .8);
position: relative;
overflow: hidden;
transition: all var(--dur-base) var(--ease-out-quart);
}

.kpi-box-sc .kpi-box:hover {
box-shadow: var(--sh-md), inset 0 1px 0 rgba(255, 255, 255, .8);
transform: translateY(-1px);
}

.kpi-box-sc .kpi-box::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 2px;
background: var(--g-500);
transform: scaleX(0);
transform-origin: left;
transition: transform var(--dur-slow) var(--ease-out-expo);
}

.kpi-box-sc .kpi-box:hover::after {
transform: scaleX(1);
}

.kpi-box-sc .kpi-box.active-kpi {
border: 1px solid var(--g-400);
}

.stat-accent {
position: absolute;
top: 0;
right: 0;
width: 64px;
height: 64px;
border-radius: 0 var(--r-12) 0 64px;
opacity: .08;
background: var(--n-400);
}

.stat-accent.ok {
background: var(--g-500) !important;
}

.stat-accent.warn {
background: var(--amber-500);
}

.stat-accent.bad {
background: var(--red-500) !important
}

.stat-accent.info {
background: var(--v-500) !important;
}

.kpi-box-sc .kpi-box .sub {
font-size: var(--t-12);
color: var(--n-400);
margin-top: 6px;
font-weight: var(--fw-n);
}

.kpi-box-sc .kpi-box .label {
font-size: var(--t-11);
font-weight: var(--fw-semi);
text-transform: uppercase;
letter-spacing: .05em;
color: var(--n-400);
margin-bottom: 8px;
}

.kpi-box-sc .kpi-box .value {
font-family: var(--font-mono);
font-size: 24px;
font-weight: var(--fw-md);
color: var(--n-900);
line-height: 1;
}

.kpi-box-sc .kpi-box .stat-meta {
font-size: var(--t-xs);
color: var(--n-400);
margin-top: 8px;
}

.kpi-box-sc .kpi-box .stat-up {
color: var(--g-600);
font-weight: var(--fw-md);
}

.kpi-box-sc .kpi-box .stat-down {
color: var(--red-500);
font-weight: var(--fw-md);
}

.summary-sec {
background: var(--n-0);
border: 1px solid var(--n-100);
border-radius: var(--r-12);
box-shadow: var(--sh-sm), inset 0 1px 0 rgba(255, 255, 255, .8);
position: relative;
/*overflow: hidden;*/
}

.summary-sec .card-summary .card-b {
padding: 10px;
overflow: hidden;
border-radius: 12px 12px 0 0;
}

.summary-sec .card-h {
padding: 8px 10px;
border-bottom: 1px solid #ebedf1;
display: flex;
align-items: center;
justify-content: space-between;
}

.summary-sec .card-h .tabs {
border-bottom: 1px solid var(--border);
display: flex;
gap: 0;
}

.summary-sec .card-h .tab {
padding: 9px 16px;
font-size: var(--t-sm);
font-weight: var(--fw-md);
color: var(--n-400);
cursor: pointer;
border-bottom: 2px solid transparent;
margin-bottom: -1px;
transition: all var(--dur-fast) var(--ease-out-quart);
user-select: none;
display: flex;
align-items: center;
gap: 6px;
}

.summary-sec .card-h .tab.active {
color: var(--g-700);
border-bottom-color: var(--g-500);
font-weight: var(--fw-semi);
}


.summary-sec .card-h .inp-sm {
padding: 4px 10px;
font-size: var(--t-sm);
line-height: 1;
}

.summary-sec .card-h h3 {
font-size: var(--t-14);
font-weight: var(--fw-semi);
color: var(--n-900);
margin-bottom: 0
}

.summary-sec .card-h h3 span {
font-size: var(--t-12);
font-weight: var(--fw-n);
color: var(--n-400);
}

.summary-sec .card-h h4 {
font-size: var(--t-15);
font-weight: var(--fw-semi);
color: var(--n-800);
margin-bottom: 0
}

.summary-sec .card-h h6 {
font-size: var(--t-14);
font-weight: var(--fw-n);
color: var(--n-500);
margin-bottom: 0
}

.summary-sec .card-f {
padding: 8px 10px;
color: var(--n-700);
border-top: 1px solid var(--n-50);

}
.summary-sec table ~ .card-f {
padding: 8px 10px;
color: var(--n-700);
border-top: 1px solid var(--n-50);
border-top: 1px solid var(--n-100);
background: var(--n-25);
border-radius:0 0 12px 12px
}
.table-responsive .card-f {
    padding: 8px 10px;
    color: var(--n-700);
    border-top: 1px solid var(--n-50);
    border-top: 1px solid var(--n-100);
    background: var(--n-25);
    border-radius: 0 0 12px 12px
}


.no-record-found {
padding: 114px 0 60px 0;
}

.no-record-found svg {
fill: #d3d3d3;
width: 64px;
height: 64px;
}

.no-record-found h3 {
margin-top: 25px;
font-weight: 400;
color: #aaa;
font-size: 24px;
}

.prog-fill {
height: 100%;
border-radius: var(--r-full);
transition: width .8s var(--ease-out-expo);
position: relative;
}

.prog-wrap {
background: var(--n-100);
border-radius: var(--r-full);
overflow: hidden;
box-shadow: var(--sh-inset);
}

.ann {
font-family: var(--font-mono);
font-size: 10px;
color: var(--n-300);
margin-top: 6px;
line-height: 1.5;
}

.prog-h4 {
height: 4px;
}

.prog-h6 {
height: 6px;
}

.prog-h8 {
height: 8px;
}

.scrool_table {
max-height: 70vh;
overflow-y: auto;
position: relative;
scrollbar-width: thin;
scrollbar-color: var(--n-150) transparent;
}

.scrool_table table tr td.sticky-left {
position: sticky;
left: 0;
z-index: 3;
background: #fff;
border-right: 1px solid #ebedf1;
}

.scrool_table table tr th.sticky-left {
position: sticky;
left: 0;
z-index: 6;
top: 0;
background: #F8FAFC;
border-right: 1px solid #ebedf1;
}

.note-sec {
margin: 0;
}

.note-sec ul {
margin: 0;
padding: 0;
list-style-type: none;
display: flex;
align-items: center;
}

.note-sec ul li {
margin: 0 6px;
}

.grid-container {
display: grid;
grid-template-columns: 280px 1fr 324px;
gap: 10px;
}

.grid-container.document-height {
height: 88vh;
}

.grid-container .filter-sec .form-control {
background-color: #fff;
border: 1px solid #ebedf1;
border-radius: 6px;
padding: 8px 10px;
font-size: 13px;
color: #111827;
box-shadow: 0 1px 0 rgba(0, 0, 0, .02);
}

.grid-container .filter-sec .search-select .options {
max-height: 60px;
width: 254px;
}

.summary-sec .card-h h6.text span {
color: #2ba24c;
font-weight: 800;
}

.download-drawer {
position: fixed;
bottom: 0;
right: 16px;
width: 420px;
background: #fff;
border: 1px solid #ebedf1;
border-radius: 14px 14px 0 0;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
overflow: hidden;
transition: all 0.3s ease;
z-index: 1050;
padding-bottom: 20px;
}

.download-drawer-header {
background: #F8FAFC;
padding: 14px 10px;
font-weight: 600;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
}

.download-drawer-header h4 {
margin: 0;
font-size: 14px;
letter-spacing: .4px;
text-transform: uppercase;
color: #334155;
font-weight: 600;
}

.download-drawer-header h4 span {
font-size: 12px;
font-weight: 400;
text-transform: capitalize;
position: relative;
}

.download-drawer-header h4 span .count {
color: #2ba24c;
font-weight: 600;
}

.download-drawer.collapsed .upload-arrow {
transform: rotate(-90deg);
transition: .4s;
}

.download-drawer .upload-arrow i {
font-size: 14px;
}

.download-drawer-body {
padding: 0 14px 14px 14px;
max-height: 300px;
overflow-y: auto;
transition: max-height .3s ease, padding .3s ease;
}

.download-drawer.collapsed .download-drawer-body {
max-height: 0;
padding: 0 1rem;
overflow: hidden;
}

.download-drawer-body .drawer-detail {
margin: 0;
border-bottom: 1px dashed #ebedf1;
padding: 14px 0;
}

.download-drawer-body .drawer-detail:last-child {
border-bottom: 0;
}

.download-drawer-body .drawer-detail h5 {
margin: 0 0 4px 0;
font-size: 14px;
letter-spacing: .4px;
color: #0f172a;
font-weight: 600;
}

.download-drawer-body .drawer-detail .title-sec {
display: flex;
align-items: center;
}

.download-drawer-body .drawer-detail .title-sec .subtitle1-title {
width: 68%;
color: #64748B;
font-size: 12px;
padding-right: 14px;
}

.download-drawer-body .time-sec {
width: 20%;
}

.download-drawer-body .time-sec h6 {
font-size: 12px;
margin: 0;
}

.download-drawer-body .time-sec h6 span {
display: block;
color: #64748B;
font-size: 12px;
margin-top: 2px;
font-weight: 400;
}

.download-drawer-body .drawer-actions {
width: 26%;
text-align: right;
}

.details-loop .field {
display: grid;
grid-template-columns: 110px 1fr !important;
gap: 6px 12px;
font-size: 14px;
margin-bottom: 8px;
align-items: center;
}

.details-loop .field .k {
color: #64748B;
}

.kpi-box-sc .kpi-box .doc-name {
font-family: var(--font-mono)
}

.card-b-h {
max-height: 76vh;
overflow-y: auto;
overflow-x: hidden;
}

.check-sec {
position: absolute;
top: 14px;
left: 18px;
width: 60px;
background: #fff;
border: 1px solid #fff;
z-index: 9;
box-shadow: 0px 4px 11px 3px rgba(0, 0, 0, 0.2);
padding: 4px 10px;
border-radius: 6px;
}

.check-sec .form-check {
display: flex;
align-items: center;
gap: 5px;
}

.check-sec .form-check .form-check-input {
opacity: 0;
z-index: 4;
}

.check-sec .form-check .form-check-label {
margin-top: 1px;
margin-bottom: 0;
position: absolute;
left: 50%;
transform: translateX(-50%);
width: 100%;
text-align: center;
z-index: 2;
color: #0F172A;
}


/*...................................*/
.linear-route-content .xd-info-bar {
display: flex;
align-items: flex-start;
gap: 8px;
background: rgba(43, 162, 76, .06);
border: 1px solid rgba(43, 162, 76, .2);
border-radius: 7px;
padding: 10px 12px;
font-size: 12px;
color: #1e2022;
margin-bottom: 14px;
line-height: 1.5;
}

.linear-route-content .xd-info-bar i {
color: #2ba24c
}

.xd-node-card.cross-dock {
background: rgb(255, 235, 189, .4);
border: 1px solid rgb(255, 235, 189, .8);
border-radius: 8px;
margin-bottom: 14px;
overflow: hidden;
}

.xd-node-header {
padding: 10px 14px;
display: flex;
align-items: center;
gap: 10px;
}

.xd-node-badge {
width: 32px;
height: 32px;
border-radius: 7px;
background: rgb(255, 235, 189, .6);
border: 1px solid rgb(255, 235, 189, 1);
display: flex;
align-items: center;
justify-content: center;
color: #df9e06;
font-size: 15px;
flex-shrink: 0;
}

/* ─── DIAGRAM GRID ────────────────────────────────────── */
.xd-diagram {
display: grid;
grid-template-columns: 1fr 14px 1fr;
gap: 0;
align-items: start;
min-height: 200px;
}

.xd-col {
display: flex;
flex-direction: column;
gap: 8px;
}

/* Column headers */
.xd-col-header {
display: flex;
align-items: center;
gap: 6px;
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .9px;
padding: 6px 10px;
border-radius: 6px;
margin-bottom: 4px;
}

.xd-col-header.inbound {
background: rgba(26,158,63,.07);
color: #15692e;
border: 1px solid rgba(26,158,63,.18);
}

.xd-col-header.outbound {
background: rgba(239,231,255,.5);
color: #5236a0;
border: 1px solid rgba(99,60,200,.18);
}

.xd-col-count {
margin-left: auto;
font-size: 10px;
background: rgba(43, 162, 76, .2);
color: #2ba24c;
border-radius: 8px;
padding: 1px 6px;
}

.xd-col-count.outbound {
background: rgba(239, 231, 255, .8);
color: #7b39f5;
}

/* ─── XD CENTER HUB ───────────────────────────────────── */
.xd-center-col {
display: flex;
flex-direction: column;
align-items: center;
padding-top: 32px;
position: relative;
}

.xd-hub-node {
width: 48px;
height: 48px;
border-radius: 50%;
background: linear-gradient(135deg, rgba(99,60,200,.15), rgba(99,60,200,.06));
border: 2px solid rgba(99,60,200,.4);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: #5236a0;
font-size: 16px;
box-shadow: 0 0 0 4px rgba(99,60,200,.08);
z-index: 2;
position: relative;
}

.summary-sec .card-summary .card-b .xd-hub-node i {
margin-right: 0
}

.xd-hub-label {
font-size: 6px;
font-weight: 700;
letter-spacing: .5px;
color: #5236a0;
margin-top: 1px;
}

.xd-hub-sub {
display: none;
}

/* Connector lines from center */
.xd-center-lines-top,
.xd-center-lines-bottom {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
}

/* ─── SOURCE CARDS ────────────────────────────────────── */
.xd-source-card {
border: 1px solid #ebedf1;
border-radius: 7px;
background: #ffffff;
overflow: hidden;
position: relative;
}

.xd-source-card::after {
content: '';
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 3px;
background: #2ba24c;
border-radius: 3px 0 0 3px;
}

.xd-sc-header {
display: flex;
align-items: center;
gap: 8px;
padding: 8px 10px;
background: rgba(26,111,219,.04);
border-bottom: 1px solid #ebedf1;
}

.xd-sc-badge {
width: 22px;
height: 22px;
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;
font-size: 9px;
font-weight: 700;
flex-shrink: 0;
}

.xd-sc-badge.src {
background: rgba(26,111,219,.12);
color: #1558a8;
border: 1px solid rgba(26,111,219,.25);
}

.xd-inbound-col .xd-sc-badge.leg {
background: rgba(26,158,63,.12);
color: #15692e;
border: 1px solid rgba(26,158,63,.25);
}

.xd-outbound-col .xd-sc-badge.leg {
background: rgba(99, 60, 200, .12);
border: 1px solid rgba(123, 57, 245, .25);
color: #5236a0;
}

.xd-sc-title {
font-size: 12px;
font-weight: 600;
color: #334155;
}

.xd-sc-body {
padding: 8px 10px;
}

/* Arrow connectors between source cards and hub */
.xd-inbound-col .xd-source-card {
margin-right: 0;
}

/* ─── OUTBOUND LEG CARDS ──────────────────────────────── */
.xd-leg-card {
border: 1px solid #ebedf1;
border-radius: 7px;
background: #ffffff;
overflow: hidden;
position: relative;
margin-bottom: 20px;
}

.xd-inbound-col .xd-leg-card::after {
content: '';
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 3px;
background: #2ba24c;
border-radius: 3px 0 0 3px;
}

.xd-outbound-col .xd-leg-card::after {
content: '';
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 3px;
background: #5236a0;
border-radius: 3px 0 0 3px;
}

.xd-outbound-col .xd-leg-header {
display: flex;
align-items: center;
gap: 8px;
padding: 8px 10px;
background: rgba(239,231,255,.5);
border: 1px solid rgba(99,60,200,.18);
border-bottom: 0
}

.xd-inbound-col .xd-leg-header {
display: flex;
align-items: center;
gap: 8px;
padding: 8px 10px;
background: rgba(26, 158, 63, .07);
border: 1px solid rgba(26, 158, 63, .18);
border-bottom: 0
}

/* ─── PER-LEG CAPACITY BAR ────────────────────────────── */
.xd-inbound-col .xd-leg-capacity {
/*    display: flex;
align-items: flex-end;*/
gap: 6px;
padding: 7px 10px 8px;
background: rgba(26,158,63,.025);
border-bottom: 1px solid #ebedf1;
flex-wrap: wrap;
}

.xd-outbound-col .xd-leg-capacity {
/*    display: flex;
align-items: flex-end;*/
gap: 6px;
padding: 7px 10px 8px;
background: rgba(239,231,255,.2);
border-bottom: 1px solid rgba(99,60,200,.18);
flex-wrap: wrap;
}

.xd-lc-field {
display: flex;
flex-direction: column;
gap: 3px;
}

.xd-lc-label {
font-size: 12px;
font-weight: 600;
/* text-transform: uppercase; */
letter-spacing: 0;
color: #8c98a4;
margin-bottom: 0;
margin-top: 6px;
}


.xd-lc-input {
width: 88px;
}

.xd-lc-input input {
padding: 4px 6px !important;
font-size: 11px !important;
}

.xd-lc-sep {
width: 1px;
height: 30px;
/*    background: #ebedf1;*/
flex-shrink: 0;
margin: 0 2px;
}

/* Leg stops */
.xd-leg-stops {
padding: 8px 10px;
display: flex;
flex-direction: column;
padding-bottom: 80px;
max-height: 294px;
overflow: auto;
}

.xd-stop-row {
display: flex;
align-items: center;
gap: 8px;
padding: 4px 0;
}

.xd-stop-row.origin-leg {
opacity: .7;
}

.xd-stop-dot {
width: 10px;
height: 10px;
border-radius: 50%;
flex-shrink: 0;
}

.xd-dot-origin {
background: #2ba24c;
border: 2px solid rgb(106 221 139);
box-shadow: 0 0 0 2px rgba(99, 60, 200, .1);
}

.xd-dot-stop {
background: #cbcbcb;
border: 2px solid rgba(255,255,255,.3);
}

.xd-dot-dest {
background: #e0430e;
border: 2px solid rgba(224,67,14,.3);
}

.xd-stop-connector {
width: 1px;
height: 10px;
background: #ebedf1;
margin-left: 4px;
}

.xd-stop-info {
display: flex;
flex-direction: column;
gap: 1px;
}

.xd-stop-label {
font-size: 11px;
font-weight: 500;
color: #334155;
}

.xd-stop-sublabel {
font-size: 10px;
color: #8c98a4;
}

.xd-stop-meta {
margin-left: auto;
display: flex;
gap: 4px;
align-items: center;
}

.xd-inline-select {
font-size: 11px !important;
padding: 4px 6px !important;
width: 100% !important;
}

/* Add stop / leg buttons */
.xd-add-leg-stop-btn {
width: 100%;
padding: 5px 8px;
background: #f8fafc;
border: none;
border-top: 1px dashed #ebedf1;
color: #8c98a4;
font-size: 11px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
gap: 5px;
transition: all .12s;
}

.xd-add-leg-stop-btn:hover {
background: #eef5ff;
color: #2ba24c;
}

.xd-add-leg-stop-btn.outbound {
width: 100%;
padding: 5px 8px;
background: #f8fafc;
border: none;
border-top: 1px dashed #ebedf1;
color: #8c98a4;
font-size: 11px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
gap: 5px;
transition: all .12s;
}

.xd-add-leg-stop-btn.outbound:hover {
background: #f7f3ff;
color: #7b39f5;
}

.xd-add-btn {
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
padding: 7px 12px;
border-radius: 6px;
border: 1.5px dashed #2ba24c;
background: rgba(26,158,63,.04);
color: #2ba24c;
font-size: 12px;
font-weight: 500;
cursor: pointer;
transition: all .12s;
width: 100%;
}

.summary-sec .card-summary .card-b .xd-add-btn i {
color: #2ba24c;
margin-right: 0
}

.xd-add-btn:hover {
background: rgba(26,158,63,.1);
}

.xd-add-btn.outbound {
border-color: #7b39f5;
background: rgba(239,231,255,.5);
color: #7b39f5;
}

.summary-sec .card-summary .card-b .xd-add-btn.outbound i {
color: #7b39f5;
margin-right: 0;
}

.xd-add-btn.outbound:hover {
background: rgba(239,231,255,.7);
}

/* ─── XD SUMMARY BAR ──────────────────────────────────── */
.xd-summary-bar {
/*    display: flex;
align-items: center;*/
background: #f9f9f9;
border: 1px solid #ebedf1;
border-radius: 7px;
padding: 10px 16px;
margin-top: 14px;
gap: 0;
}

.xd-sum-item {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
gap: 2px;
}

.xd-sum-label {
font-size: 10px;
color: #8c98a4;
text-transform: uppercase;
letter-spacing: .6px;
font-weight: 600;
}

.xd-sum-val {
font-size: 16px;
font-weight: 500;
color: #334155;
}

.xd-sum-sep {
width: 1px;
height: 32px;
background: #ebedf1;
flex-shrink: 0;
}

/* XD type tag */
.type-tag.xd {
background: rgba(99,60,200,.07);
border-color: rgba(99,60,200,.22);
color: #5236a0;
}

/* XD expand button in table */
.xd-expand-btn {
width: 20px;
height: 20px;
border-radius: 4px;
border: 1px solid rgba(99,60,200,.25);
background: rgba(99,60,200,.07);
color: #5236a0;
display: inline-flex;
align-items: center;
justify-content: center;
cursor: pointer;
font-size: 11px;
transition: all .12s;
vertical-align: middle;
}

.xd-expand-btn:hover {
background: rgba(99,60,200,.15);
}

/* ─── XD PREVIEW ROW ──────────────────────────────────── */
.xdp-wrapper {
padding: 12px 20px 14px;
}

.xdp-lane-label {
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .9px;
padding: 3px 0 6px;
display: flex;
align-items: center;
gap: 5px;
}

.xdp-lane-label.inbound {
color: #1558a8;
}

.xdp-lane-label.outbound {
color: #15692e;
margin-top: 6px;
}

.xdp-swimlane {
display: grid;
grid-template-columns: 1fr 160px 1fr;
gap: 0;
align-items: center;
min-height: 120px;
}

/* Source / leg columns */
.xdp-col {
display: flex;
flex-direction: column;
gap: 6px;
}

/* Cards */
.xdp-card {
border-radius: 6px;
border: 1px solid #ebedf1;
background: #fff;
overflow: hidden;
}

.xdp-card.xdp-src {
border-left: 3px solid #2ba24c;
}

.xdp-card.xdp-leg {
border-left: 3px solid #2ba24c;
}

.xdp-card-header {
display: flex;
align-items: center;
gap: 6px;
padding: 5px 8px;
background: #f0f2f5;
border-bottom: 1px solid #ebedf1;
}

.xdp-badge {
font-size: 9px;
font-weight: 700;
padding: 1px 5px;
border-radius: 3px;
flex-shrink: 0;
}

.xdp-badge-src {
background: rgba(26,111,219,.1);
color: #1558a8;
}

.xdp-badge-leg {
background: rgba(26,158,63,.1);
color: #15692e;
}

.xdp-card-title {
font-size: 11px;
font-weight: 600;
color: #334155;
flex: 1;
}

.xdp-veh-tag {
font-size: 10px;
color: #8c98a4;
display: flex;
align-items: center;
gap: 3px;
}

.xdp-card-meta {
display: flex;
flex-wrap: wrap;
gap: 8px;
padding: 5px 8px;
font-size: 10px;
color: #8c98a4;
}

.xdp-card-meta span {
display: flex;
align-items: center;
gap: 3px;
}

/* Leg stops */
.xdp-leg-stops {
padding: 5px 8px;
}

.xdp-leg-stop {
display: flex;
align-items: center;
gap: 7px;
padding: 2px 0;
}

.xdp-leg-stop.xdp-leg-origin {
opacity: .7;
}

.xdp-leg-stop-dot {
width: 8px;
height: 8px;
border-radius: 50%;
flex-shrink: 0;
}

.xdp-leg-stop-name {
font-size: 11px;
color: #334155;
flex: 1;
}

.xdp-leg-stop-meta {
font-size: 10px;
color: #8c98a4;
white-space: nowrap;
}

.xdp-leg-connector {
width: 1px;
height: 8px;
background: #ebedf1;
margin-left: 3px;
}

/* Center hub */
.xdp-center {
display: flex;
flex-direction: column;
align-items: center;
gap: 6px;
padding: 0 8px;
}

.xdp-arrows-in, .xdp-arrows-out {
display: flex;
flex-direction: column;
align-items: center;
gap: 3px;
width: 100%;
}

.xdp-arrow-line {
width: 100%;
height: 2px;
background: linear-gradient(90deg, rgba(26,111,219,.25), rgba(99,60,200,.5));
border-radius: 1px;
position: relative;
}

.xdp-arrow-line::after {
content: '';
position: absolute;
right: 0;
top: -3px;
border: 4px solid transparent;
border-left: 6px solid rgba(99,60,200,.5);
}

.xdp-arrow-line.out {
background: linear-gradient(90deg, rgba(99,60,200,.5), rgba(26,158,63,.25));
}

.xdp-arrow-line.out::after {
border-left-color: rgba(26,158,63,.5);
}

.xdp-hub {
text-align: center;
padding: 8px 10px;
border-radius: 8px;
background: rgba(99,60,200,.07);
border: 2px solid rgba(99,60,200,.3);
width: 100%;
}

.xdp-hub-icon {
font-size: 18px;
color: #5236a0;
}

.xdp-hub-name {
font-size: 10px;
font-weight: 700;
color: #5236a0;
margin-top: 2px;
line-height: 1.3;
}

.xdp-hub-dwell {
font-size: 9px;
color: #8c98a4;
margin-top: 2px;
display: flex;
align-items: center;
justify-content: center;
gap: 3px;
}

.stop-builder {
border: 1px solid #dde1e7;
border-radius: 8px;
overflow: hidden;
padding-bottom: 60px;
}

.stop-row {
display: flex;
align-items: center;
gap: 8px;
padding: 10px 12px;
border-bottom: 1px solid #dde1e7;
background: #ffffff;
transition: background .1s;
}

.stop-row:hover {
background: #f4f6f9;
}

.stop-seq {
width: 22px;
height: 22px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 10px;
font-weight: 700;
flex-shrink: 0;
line-height: 1;
}

.stop-seq.ok {
color: #2ba24c;
background-color: #cefddb;
}

.stop-seq.info {
color: #7b39f5;
background-color: #efe7ff;
}

.stop-seq.warn {
color: #df9e06;
background-color: #ffebbd;
}

.stop-seq.bad {
color: #ff5c5c;
background-color: #ffd6d6;
}

.stop-name {
flex: 1;
font-size: 13px;
color: #1a2332;
}

.stop-name small {
color: #8c98a4
}

.stop-dwell {
font-size: 11px;
color: #8c98a4;
white-space: nowrap;
}

.row-action-btn {
width: 36px;
height: 36px;
border-radius: 5px;
border: 1px solid #ebedf1;
background: #ffffff;
color: #111827;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
font-size: 12px;
transition: all .12s;
}

.row-action-btn.danger:hover {
color: #ff5c5c;
border-color: #ff5c5c;
background: #ffd6d6;
}

.row-action-btn.edit:hover {
color: #2ba24c;
border-color: #2ba24c;
background: #cefddb;
}

.add-stop-btn {
width: 100%;
padding: 8px;
background: #efeeec;
border: none;
border-top: 1px dashed #efeeec;
color: #6b7a8d;
font-size: 12px;
cursor: pointer;
transition: all .12s;
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
text-transform: capitalize !important;
}

.stops-location {
display: flex;
align-items: center;
gap: 6px;
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .9px;
padding: 6px 10px;
border-radius: 6px;
}

.stops-location.inbound {
background: rgb(255, 235, 189, .4);
border: 1px solid rgb(255, 235, 189, .8);
color: #df9e06;
margin-top: 4px;
}

.stops-location.outbound {
background: rgb(255, 235, 189, .4);
border: 1px solid rgb(255, 235, 189, .8);
color: #df9e06;
margin-bottom: 4px;
}


.sidebar-body .time-grid {
display: grid;
grid-template-columns: repeat(7, 1fr);
gap: 4px;
}

.sidebar-body .time-grid .btn {
padding: 8px 4px;
border-radius: 5px;
text-align: center;
cursor: pointer;
font-size: 10px;
font-weight: 700;
letter-spacing: 1px;
}


.sidebar-body .time-grid .btn.selected {
color: #2ba24c;
background-color: #cefddb;
border: 1px solid #2ba24c;
}
/*..............fuel-card...............*/

.fuel-card {
width: 360px;
height: 220px;
background: linear-gradient(135deg, #535353, #171515);
border-radius: 15px;
padding: 20px;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
color: #fff;
display: flex;
flex-direction: column;
justify-content: space-between;
position: relative;
margin: 0;
}

.fuel-card .card-header {
display: flex;
display: flex;
justify-content: end;
align-items: end;
margin-top: 10px;
}

.fuel-card .logo {
height: 46px;
}

.fuel-card .euro-logo {
width: 60px;
}

.fuel-card .fuelcard-logo {
width: 80px;
}

.fuel-card .card-number {
margin: 2% 0 0px 0;
}

.fuel-card .card-number .number {
font-size: 18px;
letter-spacing: 3px;
font-weight: 400;
margin: 0 0 8px 0;
display: block;
}

.fuel-card .holder-name {
font-size: 12px;
letter-spacing: 1px;
font-weight: 400;
margin: 8% 0 2px 0;
display: block;
text-transform: uppercase;
}

.fuel-card .vehicle-number {
font-size: 12px;
letter-spacing: 4px;
font-weight: 400;
margin: 6% 0 16px 0;
}

.fuel-card .card-number .pin {
display: block;
margin-top: 24px;
}

.fuel-card .card-expiry .pin {
color: #fff;
font-size: 14px !important;
}

.fuel-card .card-expiry i {
color: #fff !important;
opacity: 1 !important;
}

.fuel-card .card-number .pin .pin-number {
font-size: 12px;
letter-spacing: 4px;
font-weight: 400;
}

.fuel-card .card-footer {
display: flex;
justify-content: space-between;
align-items: flex-end;
padding: 0;
}

.fuel-card .card-name {
font-size: 16px;
}

.fuel-card .card-expiry {
text-align: right;
font-size: 14px;
margin-bottom: 4px;
}

.fuel-card .card-expiry span:first-child {
font-size: 9px;
opacity: 0.7;
margin-right: 4px;
}

.locatr-logo {
position: absolute;
right: -20px;
top: 55%;
transform: translateY(-50%);
width: 120px;
height: 120px;
}

.locatr-logo img {
max-height: 80px;
}

.gmap-sec {
position: relative
}

.gmap-sec a {
position: absolute;
right: 14px;
top: 8px;
}

.tab-bar {
display: flex;
/*border-bottom: 1px solid var(--n-100);*/
padding: 0;
background: var(--n-0);
flex-shrink: 0;
}

.tab-bar .nav-item {
display: flex;
align-items: center;
padding: 0;
white-space: nowrap;
min-height: auto;
margin-right: 30px
}

.tab-bar .nav-item:last-child {
margin-right: 0
}

.tab-bar .nav-item:hover {
background: transparent;
}

.tab-bar .nav-link {
padding: 6px 0;
font-size: 13px;
font-weight: 500;
color: var(--n-400);
border: none;
background: none;
cursor: pointer;
border-bottom: 2px solid transparent;
margin-bottom: -1px;
transition: all .15s;
white-space: nowrap;
}

.tab-bar .nav-link:hover {
color: var(--g-500);
background: transparent;
border-bottom-color: var(--g-500);
}

.tab-bar .nav-link.active {
color: var(--g-500);
background: transparent;
border-bottom-color: var(--g-500);
}

.stmt-summary {
display: flex;
align-items: center;
gap: 14px;
}


.card-b .field {
display: flex;
justify-content: space-between;
padding: 7px 0;
border-bottom: 1px solid var(--n-75);
font-family: var(--font-mono);
font-size: 12px;
font-weight: 500;
color: var(--n-900);
}
    .card-b .field:last-child {
        border-bottom: 1px solid transparent;
    }

    .card-b .k {
        font-size: 12px;
        color: var(--n-400);
        font-family: var(--font-ui);
        margin-right: 12px;
    }

#tripFlow .label {
font-size: 11px !important;
font-weight: 600;
}

#tripFlow .edgeLabel {
background-color: rgb(255, 255, 255, .6) !important;
text-align: center;
}

.tdTag {
margin: 0;
}



.tdTag ul {
margin: 0;
padding: 0;
list-style-type: none;
display: flex;
flex-flow: row;
}

.tdTag ul li, span.tdTag {
margin: 0 0px 0 0;
padding: 1px 4px;
font-size: .7rem;
border-radius: 4px;
line-height: 1.2;
text-align: center;
justify-content: center !important;
}

.tdTag ul li.green, .tdTag.green {
background: #259f47;
color: #fff !important
}

.tdTag ul li.red, .tdTag.red {
background: #F44336;
color: #fff !important
}

.tdTag ul li.yellow, .tdTag.yellow {
background: #f7be56;
color: #0F172A
}

.table-live {
max-height: 80vh;
overflow: auto;
scrollbar-width: thin;
scrollbar-color: var(--n-150) transparent;
min-height: 300px;

}

.camera-screen {
border-radius: 0;
}

.camera-screen .card {
position: relative;
/*padding-bottom: 66%;*/
padding-bottom: 63%;
padding-top: 0;
height: 0;
padding-left: 0;
padding-right: 0;
border-block: 0;
background: #0F172A;
border-radius: 0;
}

.camera-screen .border-end {
border-right: 3px solid #2ba24c !important;
}

.camera-screen .border-end-transparent {
border-right: 3px solid #0F172A !important;
}

.camera-screen .border-top {
border-top: 3px solid #2ba24c !important;
}

.camera-screen .card.default-card {
padding-bottom: 63%;
}


.camera-screen .card.default-card .ima_sec {
border-radius: 0;
/* height: 100%; */
/* width: 100%; */
/* overflow: hidden; */
margin-bottom: 2px;
background: #0F172A649;
}

.camera-screen .card.default-card .ima_sec img {
width: 100%;
height: 100%;
object-fit: fill;
}
/*    .main .content .camera-screen .card.default-card{height:100%}*/

.camera-screen .card .close_btn {
position: absolute;
top: 1px;
right: 1px;
width: 25px;
height: 25px;
background: rgba(255, 255, 255, .7);
color: #f0F172A00;
border-radius: 0;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
z-index: 2;
line-height: .4;
}

.camera-screen .card .card-body a {
color: #e10F172A3;
font-size: 14px;
}

.camera-screen .card .card-body {
border-radius: 0;
box-shadow: none;
background: #0F172A0F172A;
height: 29px;
padding: 3px 15px 0px 15px;
position: absolute;
width: 100%;
bottom: 0;
}

.camera-screen .card .card-body h4 {
width: 100%;
font-weight: 700;
color: #fff;
white-space: nowrap;
overflow: hidden;
font-size: 12px;
margin: 0;
text-overflow: ellipsis;
}


.camera-screen .card .cam-title {
position: absolute;
top: 1px;
left: 1px;
font-size: 12px;
font-weight: 600;
padding: 3px 10px;
background: rgba(255, 255, 255, .7);
border-radius: 0;
color: #0F172A;
z-index: 2;
max-width: 80%;
}

.camera-screen .card video {
width: 100%;
}


.camera-btn {
width: 100%;
height: 78vh;
overflow-x: hidden;
overflow-y: auto;
display: inline-block;
}

.camera-btn::-webkit-scrollbar {
width: 4px;
}

.camera-btn::-webkit-scrollbar-track {
background-color: darkgrey;
}

.camera-btn::-webkit-scrollbar-thumb {
background: #0F172A;
width: 2px
}

.camera-btn li {
width: 100%;
position: relative;
margin-bottom: 5px
}

.camera-btn li a {
color: #0F172A;
font-weight: 700;
text-transform: uppercase;
font-size: 14px;
padding: 6px 0 0 0;
position: relative;
width: 100%;
display: block;
font-size: 14px;
transition: .5s;
}

.camera-btn li .btn i {
font-size: 1.4rem;
margin-right: 0;
vertical-align: middle;
font-style: normal;
line-height: 1.2;
}

.camera-btn li span {
font-size: 11px
}


.editname {
position: absolute;
top: 5px;
right: 5px;
}

.editname .btn {
letter-spacing: 2px;
font-weight: 600;
line-height: 1.5;
text-transform: uppercase;
padding: 0;
background: transparent;
border-color: transparent;
color: #0F172A;
}


.camera-btn li a:hover {
color: #2ba24c !important;
transition: .5s
}

.camera-btn li a.active {
color: #2ba24c !important;
}



/*..........................*/

.statusSec {
display: flex;
flex-wrap: wrap;
height: 100%;
padding: 26px 18px 0 18px
}

.statusSec .statusArea {
flex: 0 0 auto;
width: 24.66667%;
padding: 0;
}

.statusSec .statusArea .profileArea {
width: 95%;
height: 87vh;
overflow-y: auto;
overflow-x: hidden;
box-shadow: 0 1px 2px rgba(16, 24, 40, .08), 0 1px 3px rgba(16, 24, 40, .06);
border: 1px solid #ebedf1;
background: #fff;
border-radius: 14px;
padding: 20px 0 0 0;
margin-right: 8%;
}

.statusSec .statusArea .profileArea .timeline .item:first-child .icon-box.icon {
background: #d1ffde
}

.statusSec .statusArea .profileArea .timeline .item:last-child .icon-box.icon {
background: #ffd0cc
}

.statusSec .statusArea .profileArea .timeline .item:only-child .icon-box.icon {
background: #d1ffde;
}

.statusSec .statusArea .profileArea .timeline {
height: 54vh;
overflow: auto;
}

.statusSec .statusArea .profileArea .timeline::-webkit-scrollbar {
width: 4px;
}

.statusSec .statusArea .profileArea .timeline::-webkit-scrollbar-track {
background-color: #fff;
}

.statusSec .statusArea .profileArea .timeline::-webkit-scrollbar-thumb {
background: #0F172A;
width: 2px;
}

.statusSec .statusArea .profileArea .timeline .icon-box.icon i {
font-size: 20px
}

.statusSec .statusArea .profileArea .timeline .icon-box.icon .bi-file-richtext {
font-size: 16px
}

.statusSec .statusArea .profileArea .timeline .icon-box.icon .bi bi-telephone {
font-size: 16px
}

.statusSec .statusArea .profileArea .timeline .icon-box.icon {
width: 27px;
height: 27px;
background: #fff5c5;
border-radius: 4px;
left: -28px;
top: -2px;
}


.statusSec .statusArea .profileArea::-webkit-scrollbar {
width: 4px;
}

.statusSec .statusArea .profileArea::-webkit-scrollbar-track {
background-color: #fff;
}

.statusSec .statusArea .profileArea::-webkit-scrollbar-thumb {
background: #0F172A;
width: 2px;
}

.statusSec .mapArea {
flex: 1 0 0%;
box-shadow: 0 1px 2px rgba(16, 24, 40, .08), 0 1px 3px rgba(16, 24, 40, .06);
border: 1px solid #ebedf1;
background: #fff;
padding: 0;
border-radius: 14px;
position: relative
}

.checkbox-area {
position: absolute;
top: 20px;
left: 20px;
z-index: 9;
background: rgba(255, 255, 255, .9);
padding: 10px;
border-radius: 4px;
box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
z-index:4
}

.checkbox-area .form-check .form-check-label {
margin-top: 0;
font-weight: 800;
}


input[type="search"]::-webkit-search-cancel-button {
display: none
}

.content.field-force {
height: 90vh
}

.fieldforce-map {
width: 100%;
height: 86vh;
box-shadow: 0 0.375rem 0.75rem rgba(140, 152, 164, .5);
position: relative;
overflow: hidden
}

.fieldforce-map .search {
position: relative;
}

.fieldforce-map .search i {
color: #0F172A;
}

.search-btn {
position: absolute;
right: 10px;
top: 11px;
width: 20px;
height: 20px
}

.user-checkbox {
display: flex;
align-items: center;
justify-content: space-between
}

.user-checkbox button {
border: 0;
background: transparent;
font-size: 12px;
color: #F44336;
text-transform: uppercase;
}

.timelinePage #map {
height: 100%;
position: absolute;
top: 0;
bottom: 0;
width: 100%;
}

#floating-panel {
text-align: left;
max-height: 100%;
border-radius: 14px;
padding: 0;
overflow: hidden;
box-shadow: 0 1px 2px rgba(16, 24, 40, .08), 0 1px 3px rgba(16, 24, 40, .06);
border: 1px solid #ebedf1;
background: #fff;
width: 100%;
height: 86.6vh;
margin-top: 27px;
}

.hearder-sec {
padding: 14px 10px 0 10px;
position: sticky;
top: 0;
background: #fff;
z-index: 4;
border-bottom: 1px solid #ebedf1;
padding-bottom: 16px;
}

.hearder-sec .new-datepicker {
background-color: #fff;
border: 1px solid #ebedf1;
border-radius: 6px;
padding: 0;
font-size: 11px;
width: 100%;
display: flex;
align-items: center;
}

.hearder-sec .new-datepicker .form-control {
border: 0;
font-size: 12px;
height: 36px;
}

.hearder-sec .new-datepicker .form-label {
font-size: 13px;
color: #334155;
font-weight: 700;
display: block;
margin-bottom: 0;
padding: 0 0px 0 7px;
line-height: 1.4;
}

.hearder-sec h2 {
color: #333;
font-size: 18px;
font-weight: 700;
letter-spacing: .2px;
display: flex;
align-items: center;
justify-content: space-between;
}

.hearder-sec h2 a {
margin-top: 0;
color: #2ba24c;
display: block;
font-size: 16px;
font-weight: 600;
text-decoration: underline;
}


.userSec ul {
margin: 0;
padding: 0 6px;
list-style-type: none;
/*    display: flex;
flex-wrap: wrap;*/
}

.userSec ul li:not(:last-child) {
width: 100%;
border-bottom: 1px solid #f1f1f1
}

.userSec ul li a {
display: block;
padding: 8px 10px 8px 10px;
background: #fff;
font-size: 14px;
font-weight: 600;
color: #0F172A;
position: relative;
width: 100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
position: relative
}

.userSec ul li a i {
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
color: #333;
font-size: 26px;
opacity: 0;
transition: .4s
}

.userSec ul li a.active i {
opacity: 1;
transition: .4s
}


.user-list {
    display: flex;
    align-items: center
}

    .user-list h2 {
        font-size: 14px;
        font-weight: 800;
        color: #0F172A;
        margin: 0 0 2px 0;
        max-width: 190px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .user-list h5 {
        font-size: 13px;
        font-weight: 400;
        color: #7d7d7d;
        margin: 0;
    }

.pro-img {
    width: 38px;
    height: 38px;
    margin-right: 10px;
    position: relative
}

    .pro-img img {
        width: 100%;
        height: 100%
    }

.userSec ul li a .pro-img span {
    width: 14px;
    height: 14px;
    background: #2ba24c;
    border-radius: 35px;
    display: none;
    position: absolute;
    right: 0px;
    top: 28px;
    border: 2px solid #ffffff;
}

.userSec ul li a.active .pro-img span {
    display: block;
}


.userSec ul li a.active {
    color: #2ba24c;
    font-weight: 800
}


.userSec ul li a.live span {
    width: 8px;
    height: 8px;
    background: #2ba24c;
    border-radius: 35px;
    display: block;
    position: absolute;
    right: 10px;
    top: 22px;
}


.userSec ul li a div > span {
    display: block;
    font-size: 12px;
    line-height: 1.2;
    color: #7d7d7d;
}

    .userSec ul li a div > span.lastloctime {
        display: block;
        font-size: 11px;
        line-height: 1.2;
        color: #7d7d7d;
    }

.userSec ul li a.active div > span {
    display: block;
    font-size: 12px;
    line-height: 1.2;
    color: #7d7d7d;
}


.modal-header .modal-topbar {
background: #FFFFFF;
border: 1px solid #ebedf1;
border-radius: 12px;
box-shadow: 0 1px 2px rgba(16, 24, 40, .08), 0 1px 3px rgba(16, 24, 40, .06);
padding: 8px 12px;
position: relative;
top: 0;
z-index: 50;
width: 100%;
}

.modal-header .modal-topbar h5.modal-title {
font-size: 18px;
font-weight: 700;
letter-spacing: .2px;
display: flex;
align-items: center;
gap: 10px;
color: #0F172A;
}

.modal-header .modal-topbar .meta {
color: #64748B;
font-size: 13px;
display: flex;
gap: 12px;
flex-wrap: wrap;
}

.modal-header .modal-topbar .meta .dot::before {
content: "• ";
margin: 0 4px;
color: #CBD5E1;
}

.scannning-title {
width: 170px;
display: flex;
justify-content: space-between;
padding-right: 10px;
}

.package-status {
margin: 0;
width: 91%;
}
.package-status h4 {
margin: 0;
font-size: var(--t-12);
font-weight: var(--fw-semi);
text-transform: uppercase;
}

.package-status ul {
margin: 0;
padding: 0;
list-style-type: none;
display: flex;
flex-wrap: wrap;
justify-content: start;
gap: 10px;
}

.package-status ul li {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 8px 10px 6px 10px;
border-radius: 6px;
font-size: .85rem;
background: #fff;
color: #2ba24c;
border: 1px solid #ebedf1;
}

.package-status ul li.ok {
background: #d5ffe1;
color: #2ba24c;
border: 1px solid #a3cfaf;
}

.package-status ul li.warn {
background: #FFFBEB;
color: #92400E;
border: 1px solid #bba89c;
}

.package-status ul li.bad {
background: #FEF2F2;
color: #991B1B;
border: 1px solid #d9c7c7;
}

.package-status ul li h5 {
margin: 0 0;
font-size: 0.7rem;
color: #111827;
font-weight: 700;
letter-spacing: 0px;
display: flex;
align-items: center;
justify-content: space-between;
text-transform: uppercase;
}

.package-status ul li h5 span {
margin-left: 8px;
font-weight: 700;
font-size: .8rem;
color: #64748B;
}

.package-status ul li h5 span .mismatch {
text-decoration: none;
color: #e94a4a;
margin: 0
}


.package-table thead {
background: var(--n-25);
position: sticky;
top: -22px;
z-index: 6;
}


.view_object_modal {
width: 99%;
max-width: 100%;
margin: 20px auto;
}

.view_object_modal .modal-body {
padding: 1.2rem 1rem;
}

.view_object_modal .modal-content {
height: 95vh;
}

.video-slider-sec {
display: block;
}

.priview-sec {
width: 100%;
padding: 0;
}


.priview-sec .flexslider {
margin: 0;
border: 0;
background: #fff;
border-radius: 0;
padding: 0;
/*box-shadow: 0px 2px 14px -7px rgba(0, 0, 0, 0.2);*/
}

.priview-sec ul {
/*max-height:530px;*/
display: flex !important;
justify-content: center;
}

.priview-sec ul li {
display: flex;
justify-content: center !important;
align-items: start;
width: 100%;
}

.priview-sec img {
max-width: 100%;
max-height: 74vh;
height: 100% !important;
}

#video_player {
width: 100%;
height: 100%;
}

#video_player .video-js {
width: 100% !important;
height: 100% !important;
padding-top: 58%;
}

#video_player .video-js .vjs-tech {
width: 99.9%;
}

.slider-thumbnail {
width: 100%;
background: transparent;
padding: 10px;
border-radius: 6px;
}

.shipment-info #carousel {
width: 100%;
overflow: hidden;
background: transparent;
}

.shipment-info .flexslider {
margin: 0;
border: 0;
}

.shipment-info #carousel ul.slides {
display: flex;
justify-content: center;
}

.shipment-info #carousel ul.slides li {
height: 70px; /* 8 × 70 = 560px + padding/margins */
margin-right: 4px;
width: 100px;
border: 2px solid transparent;
border-radius: 8px;
display: block;
}

.shipment-info #carousel ul.slides li.active {
border: 2px solid #2ba24c;
}

.shipment-info #carousel .slides li.video {
height: 67px;
width: 100px;
border: 1px solid #dbdbdb;
border-radius: 6px;
object-fit: cover;
display: flex;
align-items: center;
justify-content: center;
background: #f3f3f3;
}

.shipment-info .flex-viewport {
height: 100% !important
}

.shipment-info .flexslider .slides .humbnail-img {
height: 100%;
width: 100%;
object-fit: cover;
}

.shipment-info .flexslider .slides .humbnail-img img {
height: 100%;
width: 100%;
border: 0;
border-radius: 8px;
object-fit: cover
}

.shipment-info .flexslider .slides .humbnail-video {
height: 50px;
width: 100%;
border: 0;
border-radius: 8px;
object-fit: cover;
display: flex;
align-items: center;
justify-content: center;
background: #f3f3f3;
}

.shipment-info #carousel ul.slides li .humbnail-video img {
max-height: 26px;
width: auto;
position: absolute;
}

.shipment-info #carousel ul.slides li.active .humbnail-video img.a {
opacity: 1;
transition: .4s
}

.shipment-info #carousel ul.slides li.active .humbnail-video img.b {
opacity: 0;
transition: .4s
}

.shipment-info #carousel ul.slides li .humbnail-video img.a {
opacity: 0;
transition: .4s
}

.shipment-info #carousel ul.slides li .humbnail-video img.b {
opacity: 1;
transition: .4s
}



/*    .flex-direction-nav a.flex-next:before {
content: '\f002';
}*/
.shipment-info .flex-direction-nav a:before {
font-family: bootstrap-icons !important;
content: '\f229';
font-size: 24px;
font-style: normal;
font-weight: 400 !important;
font-variant: normal;
text-transform: none;
line-height: 1;
vertical-align: inherit;
text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
font-size: 24px;
margin-top: 3px;
}

.shipment-info .flex-direction-nav a.flex-next:before {
content: '\f235';
margin-top: -4px;
}

.shipment-info .flexslider:hover .flex-direction-nav .flex-next {
opacity: 0.7;
right: 50%;
transform: translateX(46%);
}

.shipment-info .flex-direction-nav .flex-next {
right: -50px;
text-align: right;
top: 14px;
}

.shipment-info .flex-direction-nav a {
margin: 0;
top: auto;
width: 28px;
height: 28px;
display: flex;
align-items: center;
justify-content: center;
font-size: 0;
background: rgba(255,255,255.5);
border-radius: 6px
}


.shipment-info .flexslider:hover .flex-direction-nav .flex-prev {
opacity: 0.7;
left: 50%;
bottom: 8px;
transform: translateX(-45%);
}

.shipment-info .summary-sec .card-summary .card-b .time-line {
max-height: 17vh;
min-height: 150px;
overflow: auto;
position: relative;
padding-bottom: 14px;
}

.shipment-info .summary-sec .card-summary .field {
display: block;
margin-bottom: 10px;
}

.shipment-info .summary-sec .card-summary .card-b {
padding: 14px 14px 0 14px;
}

.shipment-info .summary-sec .card-summary tr th:first-child {
border-radius: 0 0 0 0;
}

.shipment-info .summary-sec .card-summary tr th:last-child {
border-radius: 0 0 0 0;
}

#addshipment.sidebar {
position: fixed;
top: 0;
width: var(--sb-w-lg) !important;
right: calc(-1 * var(--sb-w-lg)) !important;
height: 100%;
background: #fff;
transition: right 0.4s ease;
z-index: 1000;
}

#addshipment.sidebar.open {
right: 0 !important;
}

#addshipment .summary-sec .card-summary {
background: #FFFFFF;
height: 100%;
border-radius: 0;
border: 0;
box-shadow: none;
font-family: "Roboto", sans-serif;
}

#addshipment .card-summary .field {
display: grid;
grid-template-columns: 114px 1fr;
gap: 6px 12px;
font-size: 14px;
margin-bottom: 8px;
align-items: center;
}

.map-control {
z-index: 9 !important
}

.barcodeinput .form-group {
position: relative;
}

.barcodeinput .form-group .form-control.barcode {
padding: 0.6125rem 2.6rem;
}

.barcodeinput .scan-icon {
position: absolute;
top: 11px;
left: 17px;
z-index: 2;
}

.scan-modal {
max-width: 70%
}

.scanSec {
min-height: 360px;
text-align: center;
margin-bottom: 7px;
position: relative;
}

.scan-table {
min-height: 493px;
}

.scanSec h1 {
font-size: 13px
}

.score-sec {
position: relative;
padding-top: 14px;
}

.score-sec .border {
border-radius: 10px;
}

.score-board {
border: 2px solid #333;
min-width: 100px;
position: absolute;
right: 10px;
bottom: 15px;
text-align: center;
height: 60px;
display: flex;
align-items: start;
justify-content: center;
border-radius: 10px;
padding: 1px;
}

.score-board:after {
content: '';
background-image: url(/Content/admin/images/score-board.png);
background-position: top center;
background-repeat: no-repeat;
background-size: contain;
position: absolute;
left: 50%;
bottom: -25px;
width: 70px;
height: 24px;
transform: translateX(-50%);
}


.score-view {
width: 100%;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
margin-top: 2px;
}

.score-board span {
height: 100%;
font-size: 28px;
color: #fff;
font-weight: 400;
background: #333;
padding: 6px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 1px;
border-radius: 4px;
width: 100%;
font-family: "Stardos Stencil", system-ui;
transition: .4s
}


.score-board h3 {
margin-bottom: 0
}

.barcodeinput .form-group {
position: relative;
}

.barcodeinput .form-group .form-control {
padding: 0.6125rem 2.6rem;
}

.barcodeinput .form-group .form-control.barcode {
padding: 0.6125rem 2.6rem;
}

.barcodeinput .search-btn {
position: absolute;
top: 12px;
right: 18px;
}

.barcodeinput .scan-icon {
position: absolute;
top: 11px;
left: 17px;
z-index: 2;
}

.barcodenum {
margin: 25px 0 0 0;
display: inline-block;
}

.barcodenum h3 {
margin: 0;
font-size: 30px;
text-align: center;
letter-spacing: 1px;
}

.barcodestatus {
margin: 38px 0 50px 0;
width: 100%;
text-align: center;
display: flex;
justify-content: center !important;
position: relative;
}

.statusbox {
width: 240px;
height: 240px;
border-radius: 50%;
font-size: 24px;
color: #333;
font-weight: 800;
display: flex;
align-items: center !important;
justify-content: center !important;
position: relative;
text-transform: uppercase;
}

.statusbox.green {
color: #08b54c;
box-shadow: inset 0 0 10px rgba(8, 181, 76, 0.5);
border: 8px double #08b54c;
}

.statusbox.black {
box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
border: 8px double #333;
color: #333;
}

.statusbox.red {
box-shadow: inset 0 0 10px rgba(235, 67, 9, 0.5);
border: 8px double #eb435a;
color: #eb435a;
}

.statusbox.yellow {
box-shadow: inset 0 0 10px rgba(255, 195, 9, 0.5);
border: 8px double #ffc309;
color: #ffc309;
}


.radius {
width: 150px;
height: 150px;
border-radius: 100%;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%,-50%);
transform: translate(-50%,-50%);
}

.scanSec .border-animation {
display: none;
width: 100%;
height: 100%;
position: absolute;
border-radius: 100%;
}

.scanSec.animated .border-animation {
display: block
}



.border-animation {
z-index: 1;
}

.ba2 {
animation: rounder2 .8s infinite alternate;
}

.ba2.red {
background: rgba(249,186,186,0.5);
}


.ba2.green {
background: rgba(130,181,76,0.5);
}

.ba2.black {
background: rgba(193,193,193,0.5);
}

.ba2.red {
background: rgba(255,67,90,0.5);
}

.ba2.yellow {
background: rgba(253,224,132,0.5);
}



@keyframes rounder2 {
from {
transform: scale(1.80);
}

to {
transform: scale(1);
}
}

.totalscan {
position: absolute;
top: 3px;
right: 20px;
}

.totalscan h3 {
font-size: 45px;
}

.totalbarcode {
margin: 15px 0 0 0;
width: 100%;
display: flex;
justify-content: space-evenly !important;
}

.totalbarcode span {
font-size: 16px;
color: #787878
}

.table-height {
min-height: 400px;
overflow: hidden
}

.multi-select-right .search-select .options {
left: auto !important
}

.sub-trips {
min-height: 200px;
padding-bottom: 100px
}

.table-min-height {
min-height: 200px;
padding-bottom: 100px
}

.td-head {
background: var(--n-25);
}

.sidebar-body .shipment_orders .form-control {
font-size: var(--t-13);
padding: 8px 5px;
line-height: 1.4;
}

.view-rate.right-sidebar {
position: fixed;
top: 0;
right: -960px;
width: 960px;
height: 100%;
background: #fff;
transition: right 0.4s ease;
z-index: 1000;
overflow-y: auto;
}

.view-rate.right-sidebar.open {
right: 0;
}

.view-rate.right-sidebar .kpi-bar {
background: #FFFFFF;
border: 1px solid #ebedf1;
border-radius: 12px;
box-shadow: 0 1px 2px rgba(16, 24, 40, .08), 0 1px 3px rgba(16, 24, 40, .06);
display: block;
}

.view-rate.right-sidebar .kpi .value {
font-size: 12px;
font-weight: 600;
margin: 2px 0;
}

.view-rate.right-sidebar .kpi .sub {
font-weight: 400 !important;
}

#rate-plan.right-sidebar {
position: fixed;
top: 0;
right: -950px;
width: 950px;
height: 100%;
background: #fff;
transition: right 0.4s ease;
z-index: 1000;
overflow-y: auto;
}

#rate-plan.right-sidebar.open {
right: 0;
}

#rate-plan.right-sidebar .form-section-title {
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .9px;
color: #7c7c7c;
padding-bottom: 8px;
margin-bottom: 14px;
display: flex;
align-items: center;
gap: 6px;
}


.kpi-box-b {
height: auto;
background: var(--page);
border: 1px solid #ebedf1;
box-shadow: none;
border-radius: 12px;
padding: 10px 12px;
}

.kpi-box-b .label {
color: #64748B;
font-size: 12px;
letter-spacing: .4px;
font-weight: 700;
}

.kpi-box-b .value {
font-size: 16px;
font-weight: 600;
margin-top: 6px;
}

.kpi-box-b .sub {
color: #64748B;
font-size: 11px;
}


.info-grid-sec {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 14px;
}

.info-box {
background: #fff;
border: 1px solid #e8e6e3;
border-radius: 8px;
padding: 16px 18px;
margin-bottom: 24px;
}

.info-box-title {
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
color: #7c7c7c;
margin-bottom: 12px;
display: flex;
align-items: center;
gap: 6px;
}

.info-row {
display: flex;
justify-content: space-between;
align-items: flex-start;
padding: 5px 0;
border-bottom: 1px solid #f5f5f5;
gap: 12px;
}

.info-row:last-child {
border-bottom: none;
padding-bottom: 0;
}

.info-key {
font-size: 12px;
color: #7c7c7c;
white-space: nowrap;
}

.info-val {
font-size: 12.5px;
font-weight: 500;
color: #0f172a;
text-align: right;
}

.sec-panel .lc-card {
background: #fff;
border: 1px solid 1px solid var(--n-100);
border-radius: 8px;
box-shadow: 0 1px 2px rgba(0,0,0,.05);
}


.lc-card-header i {
color: #2ba24c;
}

.lc-card-header .lc-card-title {
font-size: 13.5px;
font-weight: 600;
}

.lc-card-body {
padding: 18px;
}

.lc-card-body .audit-timeline {
display: flex;
flex-direction: column;
gap: 0;
}

.lc-card-body .audit-item {
display: flex;
gap: 12px;
padding: 12px 0;
border-bottom: 1px solid #e2e8f0;
}

.lc-card-body .audit-item:last-child {
border-bottom: none;
}

.lc-card-body .audit-dot-wrap {
display: flex;
flex-direction: column;
align-items: center;
gap: 0;
}

.lc-card-body .audit-dot {
width: 30px;
height: 30px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 12px;
flex-shrink: 0;
}

.lc-card-body .audit-conn {
width: 1px;
flex: 1;
background: #e2e8f0;
min-height: 12px;
margin: 3px 0;
}

.lc-card-body .audit-body {
flex: 1;
padding-bottom: 4px;
}

.audit-body .audit-action {
font-size: 13px;
font-weight: 600;
}

.audit-body .audit-detail {
font-size: 12px;
color: #475569;
margin-top: 2px;
}

.audit-body .audit-meta {
font-size: 11px;
color: #7c7c7c;
margin-top: 3px;
display: flex;
gap: 12px;
flex-wrap: wrap;
}

.audit-body .audit-time {
font-size: 10.5px;
color: #7c7c7c;
white-space: nowrap;
margin-top: 2px;
}

.inv-totals {
background: var(--page);
color: #0F172A;
border-radius: 4px;
padding: 16px 20px;
margin-top: 0;
}

.inv-total-row {
display: flex;
justify-content: space-between;
padding: 6px 0;
font-size: 13px;
border-bottom: 1px solid rgba(129, 129, 129, .07);
}

.inv-total-row:last-child {
border-bottom: none;
font-size: 16px;
font-weight: 700;
padding-top: 10px;
}

.info-grid-sec {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 14px;
}



.info-row {
display: flex;
justify-content: space-between;
align-items: flex-start;
padding: 5px 0;
border-bottom: 1px solid #f5f5f5;
gap: 12px;
}

.info-row:last-child {
border-bottom: none;
padding-bottom: 0;
}

.info-key {
font-size: 12px;
color: #7c7c7c;
white-space: nowrap;
}

.info-val {
font-size: 12.5px;
font-weight: 500;
color: #0f172a;
text-align: right;
}

.sec-panel .lc-card {
background: #fff;
border: 1px solid #e2e8f0;
border-radius: 8px;
box-shadow: 0 1px 2px rgba(0,0,0,.05);
}

.lc-card-header {
padding: 10px 18px;
border-bottom: 1px solid var(--n-100);
display: flex;
align-items: center;
gap: 10px;
background: var(--page);
border-radius: 8px 8px 0 0;
}

.lc-card-header i {
color: #2ba24c;
}

.lc-card-header .lc-card-title {
font-size: 13.5px;
font-weight: 600;
}

.lc-card-body {
padding: 18px;
}

.lc-card-body .audit-timeline {
display: flex;
flex-direction: column;
gap: 0;
}

.lc-card-body .audit-item {
display: flex;
gap: 12px;
padding: 12px 0;
border-bottom: 1px solid #e2e8f0;
}

.lc-card-body .audit-item:last-child {
border-bottom: none;
}

.lc-card-body .audit-dot-wrap {
display: flex;
flex-direction: column;
align-items: center;
gap: 0;
}

.lc-card-body .audit-dot {
width: 30px;
height: 30px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 12px;
flex-shrink: 0;
}

.lc-card-body .audit-conn {
width: 1px;
flex: 1;
background: #e2e8f0;
min-height: 12px;
margin: 3px 0;
}

.lc-card-body .audit-body {
flex: 1;
padding-bottom: 4px;
}

.audit-body .audit-action {
font-size: 13px;
font-weight: 600;
}

.audit-body .audit-detail {
font-size: 12px;
color: #475569;
margin-top: 2px;
}

.audit-body .audit-meta {
font-size: 11px;
color: #7c7c7c;
margin-top: 3px;
display: flex;
gap: 12px;
flex-wrap: wrap;
}

.audit-body .audit-time {
font-size: 10.5px;
color: #7c7c7c;
white-space: nowrap;
margin-top: 2px;
}

.rate-bar-section {
background: #fafaf9;
border: 1px solid #e1e1e1;
border-radius: 4px;
padding: 14px 16px;
margin-top: 14px;
}

.rate-bar-row {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 8px;
}

.rbar-label {
font-size: 12px;
color: #7c7c7c;
width: 160px;
flex-shrink: 0;
}

.rbar-track {
flex: 1;
height: 8px;
background: #e2e8f0;
border-radius: 4px;
overflow: hidden;
}

.rbar-fill.base {
background: #2ba24c;
}

.rbar-val {
font-size: 12px;
font-weight: 600;
width: 70px;
text-align: right;
flex-shrink: 0;
}

.rbar-fill {
height: 100%;
border-radius: 4px;
transition: width .6s ease;
}

.rbar-fill.slab1 {
background: #6366f1;
}

.rbar-val.cus {
font-size: 12px;
font-weight: 600;
width: 400px;
text-align: left;
flex-shrink: 0;
line-height: 1.6;
}

.section-tabs {
display: flex;
gap: 0;
border-bottom: 2px solid #e2e8f0;
margin-bottom: 18px;
}

.sec-tab {
padding: 9px 18px;
font-size: 13px;
font-weight: 500;
color: #475569;
cursor: pointer;
border-bottom: 2px solid transparent;
margin-bottom: -2px;
transition: all .15s;
display: flex;
align-items: center;
gap: 6px;
border: none;
background: none;
text-transform: capitalize !important;
position: relative
}

.sec-tab:after {
content: '';
position: absolute;
width: 100%;
height: 1px;
background: #2ba24c;
bottom: 0;
display: none
}

.sec-tab.active {
color: #2ba24c;
border-bottom-color: #2ba24c;
font-weight: 700;
}

.sec-tab.active i {
color: #2ba24c !important;
}

.sec-tab.active:after {
display: block
}

.sec-tab .bi-square {
font-size: 10px
}

.edit-leg th, .edit-leg td {
padding: 4px !important
}

.edit-leg th {
font-size: 12px !important
}

.edit-leg th .btn-sm, .edit-leg td .btn-sm {
height: 30px;
padding: 8px 8px !important;
display: flex
}

.edit-leg th .btn-sm i {
color: #fff !important
}

.nav-item span.inactive {
color: #ff5c5c;
background-color: #ffd6d6;
font-weight: 800;
padding: 2px 8px;
border-radius: 999px;
font-weight: 800;
font-size: 10px;
text-transform: capitalize;
margin-left: 10px;
}


.doc {
border: 1px solid #ebedf1;
border-radius: 10px;
padding: 12px;
}

.doc.active {
border: 1px solid #2ba24c
}

.doc-head {
display: flex;
justify-content: space-between;
align-items: center;
}

.doc-head .sev {
padding: 3px 8px;
border-radius: 10px;
font-weight: 800;
font-size: 12px;
line-height: 1;
}

.doc-head .sev.ok {
color: #2ba24c;
background-color: #cefddb;
font-weight: 800;
}

.doc-head .sev.warn {
color: #df9e06;
background-color: #ffebbd;
font-weight: 800;
}

.doc-head .sev.bad {
color: #ff5c5c;
background-color: #ffd6d6;
font-weight: 800;
}

.doc-head .sev.draft {
color: #0F172A;
background-color: #ebedf1;
font-weight: 800;
}

.doc .sub {
color: #64748B;
font-size: 12px;
}

.content.field-force .card .card-body .number.active {
border: 4px solid #2ba24c;
}

.content.field-force .card .card-body .number.inactive {
border: 4px solid #d90303;
}

/*........................*/

/* ── CATEGORY CARDS ── */
.cards-grid {
/*    display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 14px;*/
column-count: 4;
column-gap: 1.25rem;
orphans: 1;
}

.rcard {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--r-10);
overflow: hidden;
cursor: pointer;
transition: border-color 0.15s, box-shadow 0.15s;
display: flex;
flex-direction: column;
margin-bottom: 14px;
}

.rcard:hover {
border-color: #bbb;
box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.rcard-head {
display: flex;
align-items: center;
gap: 10px;
padding: 14px 16px 10px;
}

.rcard-icon {
width: 34px;
height: 34px;
border-radius: var(--r-6);
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
}

.rcard-icon i {
font-size: 17px;
}

.ic-green {
background: var(--g-50);
}

.ic-green i {
color: var(--g-700);
}



.rcard-meta {
flex: 1;
}

.rcard-title {
font-size: 14px;
font-weight: 600;
color: var(--text-primary);
}

.rcard-count {
font-size: 11px;
color: var(--n-400);
margin-top: 2px;
}

.rcard-arrow {
font-size: 16px;
color: var(--n-400);
}

.rcard-divider {
height: 1px;
background: var(--n-50);
}

.rcard-links {
padding: 8px 16px 14px;
flex: 1;
}

.rcard-link {
display: flex;
align-items: center;
justify-content: space-between;
padding: 5px 7px;
border-radius: 5px;
font-size: 12px;
color: var(--text-secondary);
cursor: pointer;
transition: background 0.1s;
gap: 8px;
}

.rcard-link:hover {
background: var(--bg);
color: var(--text-primary);
}

.rcard-link span {
flex: 1;
}

.rcard-link i.arr {
font-size: 11px;
opacity: 0.35;
flex-shrink: 0;
}

.rcard-link.more {
color: var(--text-muted);
font-size: 11px;
margin-top: 2px;
}

.rcard-link.more:hover {
color: var(--green);
}

/* ── DRILL-DOWN PANEL ── */
.drill-panel {
position: fixed;
top: var(--topbar-h);
right: 0;
width: 380px;
height: calc(100vh - var(--topbar-h));
background: var(--surface);
border-left: 1px solid var(--border);
display: flex;
flex-direction: column;
transform: translateX(100%);
transition: transform 0.25s ease;
z-index: 90;
}

.drill-panel.open {
transform: translateX(0);
}

.drill-head {
display: flex;
align-items: center;
gap: 10px;
padding: 16px 20px;
border-bottom: 1px solid var(--border);
}

.drill-icon {
width: 30px;
height: 30px;
border-radius: var(--radius);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.drill-icon i {
font-size: 15px;
}

.drill-title {
font-size: 15px;
font-weight: 600;
flex: 1;
}

.drill-close {
width: 28px;
height: 28px;
border-radius: var(--radius);
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
color: var(--text-muted);
border: 1px solid var(--border);
}

.drill-close:hover {
background: var(--bg);
}

.drill-search {
padding: 12px 16px;
border-bottom: 1px solid var(--border-light);
}

.drill-search-box {
display: flex;
align-items: center;
gap: 7px;
background: var(--bg);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 6px 10px;
}

.drill-search-box i {
color: var(--text-muted);
font-size: 13px;
}

.drill-search-box input {
border: none;
background: transparent;
outline: none;
font-size: 12px;
color: var(--text-primary);
width: 100%;
font-family: var(--font);
}

.drill-body {
overflow-y: auto;
flex: 1;
padding: 4px 0 16px;
}

.drill-section-label {
font-size: 10px;
font-weight: 600;
color: var(--n-400);
text-transform: uppercase;
letter-spacing: 0.07em;
padding: 10px 0;
}

.drill-item a {
display: flex;
align-items: center;
justify-content: space-between;
padding: 4px 6px;
border-radius: var(--r-6);
cursor: pointer;
font-size: 13px;
color: var(--n-600);
border-left: 3px solid transparent;
transition: background 0.1s;
text-transform: capitalize;
}

.drill-item a:hover {
background: var(--n-50);
color: var(--n-800);
}

.drill-item-left {
display: flex;
align-items: center;
gap: 9px;
}

.drill-item-left i {
font-size: var(--t-14);
color: var(--n-500);
}

/*.drill-item:hover .drill-item-left i {
color: var(--g-400);
}
*/
.drill-item-right {
display: flex;
align-items: center;
gap: 6px;
}

.drill-item-right i.arr {
font-size: 12px;
opacity: 0.3;
}

.badge-internal {
font-size: 9px;
background: #fff3cd;
color: #856404;
border-radius: 3px;
padding: 1px 5px;
font-weight: 500;
}

.drill-footer {
padding: 12px 16px;
border-top: 1px solid var(--border);
}

.drill-footer-btn {
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
width: 100%;
padding: 8px;
border-radius: var(--radius);
border: 1px solid var(--green);
color: var(--green);
font-size: 13px;
background: var(--surface);
cursor: pointer;
transition: background 0.15s;
font-family: var(--font);
}

.drill-footer-btn:hover {
background: var(--green-light);
}

/*...........success-modal........*/
.transaction-overlay {
position: fixed;
inset: 0;
/*background: rgba(0, 0, 0, 0.45);*/
display: flex;
align-items: center;
justify-content: center;
/*z-index: 999;*/
}

.transaction-overlay .modal-header {
display: flex;
-ms-flex-negative: 0;
flex-shrink: 0;
-ms-flex-align: center;
align-items: center;
justify-content: space-between;
padding: 0;
border-bottom: 0 solid rgba(231, 234, 243, .7);
border-top-left-radius: .6875rem;
border-top-right-radius: .6875rem;
background:transparent !important
}


/* Popup Box */
.transaction-overlay .popup {
background: #fff;
border-radius: 14px;
box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
width: 100%;
max-width: 460px;
padding: 14px;
border: 1px solid #e4e7eb;
animation: fadeIn 0.3s ease;
}

/* Title */
.transaction-overlay .popup h2 {
margin: 0;
font-size: 20px;
color: #333;
text-align: center;
font-weight: 700;
}

/* Field List */
.transaction-overlay .txn-details {
display: flex;
flex-direction: column;
border: 1px solid var(--n-75);
border-radius: 10px;
background: var(--n-0);
padding: 14px
}

.transaction-overlay .txn-row {
display: flex;
justify-content: space-between;
align-items: center;
padding: 7px 0;
}

.transaction-overlay .label {
color: #6b7280;
font-size: 14px;
}

.transaction-overlay .value {
color: #111827;
font-weight: 600;
font-size: 14px;
text-align: right;
}

/* Status Badge */
.transaction-overlay .sev {
padding: 3px 8px;
border-radius: 10px;
font-weight: 800;
font-size: 12px;
line-height: 1;
}

.transaction-overlay .sev.ok {
color: #2ba24c;
background-color: #cefddb;
font-weight: 800;
}

.transaction-overlay .sev.warn {
color: #df9e06;
background-color: #ffebbd;
font-weight: 800;
}

.transaction-overlay .sev.bad {
color: #ff5c5c;
background-color: #ffd6d6;
font-weight: 800;
}



@keyframes fadeIn {
from {
opacity: 0;
transform: scale(0.99);
}

to {
opacity: 1;
transform: scale(1);
}
}

.transaction-overlay .icon-sec {
text-align: center;
width: 100%;
margin-top: -16px;
}

.transaction-overlay .icon-sec svg {
width: 60px;
margin: 0;
}

.transaction-overlay .icon-sec .path {
stroke-dasharray: 1000;
stroke-dashoffset: 0;
}

.transaction-overlay .icon-sec .path.circle {
-webkit-animation: dash 0.9s ease-in-out;
animation: dash 0.9s ease-in-out;
}

.transaction-overlay .icon-sec .path.line {
stroke-dashoffset: 1000;
-webkit-animation: dash 0.9s 0.35s ease-in-out forwards;
animation: dash 0.9s 0.35s ease-in-out forwards;
}

.transaction-overlay .icon-sec .path.check {
stroke-dashoffset: -100;
-webkit-animation: dash-check 0.9s 0.35s ease-in-out forwards;
animation: dash-check 0.9s 0.35s ease-in-out forwards;
}

.transaction-overlay .icon-sec p {
margin: 5px 0 14px 0;
font-size: 1.25em;
font-weight: 700;
}

.transaction-overlay .icon-sec p.success {
color: #2ba24c;
}

.transaction-overlay .icon-sec p.error {
color: #ff5c5c;
}

@-webkit-keyframes dash {
0% {
stroke-dashoffset: 1000;
}

100% {
stroke-dashoffset: 0;
}
}

@keyframes dash {
0% {
stroke-dashoffset: 1000;
}

100% {
stroke-dashoffset: 0;
}
}

@-webkit-keyframes dash-check {
0% {
stroke-dashoffset: -100;
}

100% {
stroke-dashoffset: 900;
}
}

@keyframes dash-check {
0% {
stroke-dashoffset: -100;
}

100% {
stroke-dashoffset: 900;
}
}
/*...........success-modal........*/

/*...two_k...*/

.two_kcontent {
margin: 0
}

.two_kcontent .two_kcard {
position: relative;
width: 100%;
height: 86vh;
background: #fff
}

.two_kcontent .two_kcard .blog-ses {
width: 100%;
padding: 0;
margin-top: 0;
padding: 15px 0 0 0;
}

.two_kcontent .two_kcard .blog-ses h2 {
font-size: 1.7rem;
margin: 0 0 6px 0;
text-transform: uppercase;
color: #08b54d;
text-align: center;
font-weight: 600;
}

.two_kcontent .two_kcard .blog-ses ul {
margin: 0;
padding: 0 4%;
list-style-type: none;
text-align: center;
display: flex;
align-items: center !important;
justify-content: center !important;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}

.two_kcontent .two_kcard .blog-ses ul li {
background: #fff;
margin: 0 2%;
flex: 0 0 48%;
max-width: 46%;
box-shadow: 0px 7px 16px -10px rgba(0, 0, 0, .2);
margin-bottom: 60px;
border-radius: 10px;
}

.two_kcontent .two_kcard .blog-ses ul li a {
text-decoration: none;
display: flex;
flex-direction: column;
justify-content: space-around;
height: 160px;
}

.two_kcontent .two_kcard .blog-ses ul li a .image-sec {
height: 120px;
}

.two_kcontent .two_kcard .blog-ses ul li a .image-sec span {
display: inline-block;
padding: 0;
border-radius: 35px;
height: 100px;
width: 100px;
text-align: center;
}

.two_kcontent .two_kcard .blog-ses ul li a .image-sec span img {
max-height: 100px;
max-width: 100%;
}

.two_kcontent .two_kcard .blog-ses ul li a h3 {
font-size: 1.1rem;
margin: 0 0 16px 0;
color: #0F172A;
text-align: center;
font-weight: 700;
text-transform: uppercase;
}

.two_kcontent .two_kcard .blog-ses ul li a.active {
background: #0F172A
}

.two_kcontent .two_kcard .blog-ses ul li p {
font-size: 0.85rem;
color: #7a7a7a;
line-height: 22px;
text-align: center;
margin: 0 0 15px 0;
font-weight: 500;
}

.two_kcontent .two_kcard .blog-ses ul li p a {
text-decoration: none;
color: #fff;
margin-left: 5px;
font-weight: 600;
}


/*...............selecttable.........*/

.twok_selecttable {
width: 100%;
padding: 0;
margin-top: 0;
padding: 25px 0 0 0;
}

.twok_selecttable h2 {
font-size: 1rem;
margin: 0 0 15px 0;
color: #0F172A;
text-align: center;
font-weight: 800;
text-transform: uppercase
}

.twok_selecttable ul {
margin: 0;
padding: 0 4%;
list-style-type: none;
text-align: center;
display: flex;
justify-content: center !important;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}

.twok_selecttable ul li {
background: #fff;
margin: 0;
flex: 0 0 48%;
max-width: 48%;
box-shadow: 0px 7px 16px -10px rgba(0, 0, 0, .2);
margin-bottom: 36px;
border-radius: 10px;
}

.twok_selecttable ul li a {
text-decoration: none;
display: flex;
flex-direction: column;
justify-content: space-around;
height: 125px;
}

.twok_selecttable ul li a .image-sec {
height: 130px;
}

.twok_selecttable ul li a .image-sec .img_box {
display: inline-block;
padding: 0;
border-radius: 35px;
height: 120px;
width: 120px;
position: relative;
text-align: center;
}

.twok_selecttable ul li a .image-sec .boxSec {
height: 100%;
width: 100%;
display: flex;
align-items: center !important;
text-align: center;
flex-wrap: wrap;
flex-direction: column;
justify-content: center;
}

.twok_selecttable ul li a .image-sec .boxSec img {
max-height: 42px;
max-width: 100%;
}

.twok_selecttable ul li a .image-sec .boxSec .number {
margin: 0;
position: absolute;
top: 12px;
}

.twok_selecttable ul li a .image-sec .boxSec .number h3 {
margin: 0;
font-size: 2rem;
color: #08b54d;
}


/*...............Bag Creation.........*/

.twok_warehouse {
width: 100%;
padding: 0;
margin-top: 0;
padding: 25px 0 0 0;
}

.twok_warehouse h2 {
font-size: 1.3rem;
margin: 0 0 15px 0;
color: #0F172A;
text-align: center;
font-weight: 800;
text-transform: uppercase;
}

.twok_warehouse ul {
margin: 0;
padding: 0 4%;
list-style-type: none;
text-align: center;
display: flex;
justify-content: space-between !important;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}

.twok_warehouse ul li {
background: #fff;
margin: 0;
flex: 0 0 48%;
max-width: 48%;
box-shadow: 0px 7px 16px -10px rgba(0, 0, 0, .2);
margin-bottom: 36px;
border-radius: 10px;
}

.twok_warehouse ul li a {
text-decoration: none;
display: flex;
flex-direction: column;
justify-content: space-around;
height: 125px;
}

.twok_warehouse ul li a .image-sec {
height: 130px;
}

.twok_warehouse ul li a .image-sec .img_box {
display: inline-block;
padding: 0;
border-radius: 35px;
height: 120px;
width: 120px;
position: relative;
text-align: center;
}

.twok_warehouse ul li a .image-sec .boxSec {
height: 100%;
width: 100%;
display: flex;
align-items: center !important;
text-align: center;
flex-wrap: wrap;
flex-direction: column;
justify-content: center;
}

.twok_warehouse ul li a .image-sec .boxSec img {
max-height: 86px;
max-width: 100%;
}

.twok_warehouse ul li a .image-sec .boxSec .number {
margin: 0;
position: absolute;
top: 40px;
}

.twok_warehouse ul li a .image-sec .boxSec .number h3 {
margin: 0;
font-size: 2rem;
color: #fff;
}
.card-header {
    padding: .5rem 1.3125rem;
    margin-bottom: 0;
    background-color: transparent;
    border-bottom: .0625rem solid rgba(231, 234, 243, .7);
}


/*.........new-2k-content...........*/
.two_kscreen {
    position: absolute;
    width: 100%;
    top: 0;
    height: 97%;
    overflow-y: auto;
    overflow-x: hidden
}
    .two_kscreen .card {  border: 0; box-shadow:none}

    .two_kscreen::-webkit-scrollbar {
        width: 4px;
    }

    .two_kscreen::-webkit-scrollbar-track {
        background-color: darkgrey;
    }

    .two_kscreen::-webkit-scrollbar-thumb {
        background: #0F172A;
        width: 2px
    }

.two_kcontent .back_btn {
position: absolute;
left: 0;
width: 50px;
width: 100%;
}

.two_kcontent .back_btn i {
font-size: 1.5rem !important
}


.scanarea {
    width: 100%;
    padding: 0;
    margin-top: 0;
    padding: 25px 0 0 0;
}

    .scanarea h2 {
        font-size: 1.3rem;
        margin: 0 0 15px 0;
        color: #0F172A;
        text-align: center;
        font-weight: 800;
        text-transform: uppercase;
    }

    .scanarea ul {
        margin: 0;
        padding: 0 4%;
        list-style-type: none;
        text-align: center;
        display: flex;
        align-items: center !important;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

        .scanarea ul li {
            background: #fff;
            margin: 0;
            flex: 0 0 100%;
            max-width: 100%;
            padding: 20px 35px;
            box-shadow: 0px 7px 16px -10px rgba(0, 0, 0, .2);
            margin-bottom: 20px;
            border-radius: 10px;
        }

            .scanarea ul li .image-sec {
                height: 280px;
            }

                .scanarea ul li .image-sec .img_box {
                    display: inline-block;
                    padding: 0;
                    border-radius: 35px;
                    height: 280px;
                    width: 280px;
                    text-align: center;
                    position: relative;
                }

                .scanarea ul li .image-sec .boxSec {
                    height: 100%;
                    width: 100%;
                    display: flex;
                    align-items: center !important;
                    text-align: center;
                    flex-wrap: wrap;
                    flex-direction: column;
                    justify-content: center;
                    position: relative;
                }

                    .scanarea ul li .image-sec .boxSec img {
                        max-height: 230px;
                        max-width: 100%;
                    }

                    .scanarea ul li .image-sec .boxSec .number {
                        margin: 0;
                        position: absolute;
                        top: 112px;
                    }

                        .scanarea ul li .image-sec .boxSec .number h3 {
                            margin: 0;
                            font-size: 2.5rem;
                            color: #fff;
                        }

            .scanarea ul li.noshadow {
                box-shadow: none !important;
                background: transparent !important;
            }

                .scanarea ul li.noshadow h5 {
                    font-size: 1.4rem;
                    font-weight: 800;
                }

                .scanarea ul li.noshadow h6 {
                    font-size: 1rem;
                    color: #0F172A
                }

/*...............twok..scan............*/
        .twok_modal {
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1040;
            width: 100vw;
            height: 100vh;
            background-color: rgba(0,0,0,0.5);
        }

            .twok_modal .modal-content {
                position: relative;
                display: flex;
                flex-direction: column;
                width: 100%;
                pointer-events: auto;
                background-color: #fff;
                background-clip: padding-box;
                border: 1px solid rgba(0, 0, 0, .2);
                border-radius: 0.3rem;
                outline: 0;
            }

            .twok_modal .modal-header {
                display: flex;
                flex-shrink: 0;
                align-items: center;
                justify-content: space-between;
                padding: 1rem 1rem;
                border-bottom: 1px solid #dee2e6;
                border-top-left-radius: calc(0.3rem - 1px);
                border-top-right-radius: calc(0.3rem - 1px);
            }

            .twok_modal .modal-body {
                position: relative;
                flex: 1 1 auto;
                padding: 1rem;
            }

            .twok_modal .modal-footer {
                display: flex;
                flex-wrap: wrap;
                flex-shrink: 0;
                align-items: center;
                justify-content: flex-end;
                padding: 0.75rem;
                border-top: 1px solid #dee2e6;
                border-bottom-right-radius: calc(0.3rem - 1px);
                border-bottom-left-radius: calc(0.3rem - 1px);
            }

            .twok_modal .modal-dialog {
                max-width: 500px;
                margin: 1.75rem auto;
            }

            .twok_modal .modal-dialog-centered {
                display: flex;
                align-items: center;
                min-height: calc(100% - 1rem);
            }
        /*...............choose content............*/

        .choosecontent {
            width: 100%;
            padding: 0;
            margin-top: 0;
            padding: 15px 0 0 0;
        }

            .choosecontent ul {
                margin: 0;
                padding: 0 4%;
                list-style-type: none;
                height: 100%;
                text-align: center;
                display: flex;
                align-items: center !important;
                -ms-flex-wrap: wrap;
                flex-wrap: wrap;
            }

                .choosecontent ul li {
                    background: #fff;
                    margin: 0;
                    flex: 0 0 100%;
                    max-width: 100%;
                    box-shadow: 0px 7px 16px -10px rgba(0, 0, 0, .2);
                    margin-bottom: 20px;
                    border-radius: 10px;
                    padding: 20px 0;
                }

                    .choosecontent ul li a {
                        text-decoration: none;
                        display: flex;
                        flex-direction: column;
                        justify-content: space-around;
                        height: 256px;
                    }

                        .choosecontent ul li a .image-sec {
                            height: 160px;
                        }

                            .choosecontent ul li a .image-sec .img_box {
                                display: inline-block;
                                padding: 0;
                                border-radius: 35px;
                                height: 160px;
                                width: 160px;
                                position: relative;
                                text-align: center;
                            }

                                .choosecontent ul li a .image-sec .img_box img {
                                    max-height: 140px;
                                    max-width: 100%;
                                }

                        .choosecontent ul li a h3 {
                            font-size: 1.1rem;
                            margin: 0 0 6px 0;
                            color: #0F172A;
                            text-align: center;
                            font-weight: 700;
                            text-transform: uppercase;
                        }
        /*...............choose image............*/

        .chooseimage {
            width: 100%;
            padding: 0;
            margin-top: 0;
            padding: 15px 0 0 0;
        }

            .chooseimage ul {
                margin: 0;
                padding: 0 4%;
                list-style-type: none;
                height: 100%;
                text-align: center;
                display: flex;
                align-items: center !important;
                -ms-flex-wrap: wrap;
                flex-wrap: wrap;
            }

                .chooseimage ul li {
                    background: #fff;
                    margin: 0;
                    flex: 0 0 100%;
                    max-width: 100%;
                    box-shadow: 0px 7px 16px -10px rgba(0, 0, 0, .2);
                    margin-bottom: 20px;
                    border-radius: 10px;
                    padding: 20px 0;
                }

                    .chooseimage ul li a {
                        text-decoration: none;
                        display: flex;
                        flex-direction: column;
                        justify-content: space-around;
                        height: 256px;
                    }

                        .chooseimage ul li a .image-sec {
                            text-align: center;
                            display: flex;
                            align-items: center !important;
                            height: 200px;
                        }

                            .chooseimage ul li a .image-sec .img_box {
                                display: inline-block;
                                padding: 0;
                                border-radius: 35px;
                                position: relative;
                                text-align: center;
                                margin: 0 auto;
                            }

                                .chooseimage ul li a .image-sec .img_box img {
                                    max-height: 140px;
                                    max-width: 100%;
                                    transition: .5s
                                }

                                    .chooseimage ul li a .image-sec .img_box img.camera_icon {
                                        max-height: 100px;
                                        max-width: 100%;
                                    }

                                    .chooseimage ul li a .image-sec .img_box img:hover.camera_icon {
                                        transform: scale(1.1);
                                        transition: .5s
                                    }

                                    .chooseimage ul li a .image-sec .img_box img.upload_img {
                                        max-height: 185px;
                                        max-width: 100%;
                                    }

                        .chooseimage ul li a h3 {
                            font-size: 14px;
                            text-transform: capitalize;
                        }
        /*..........rto bag........*/

        .rtobag {
            margin: 0
        }

        .search-sec {
            margin: 0;
            padding: 0;
            position: sticky;
            top: 0px;
            z-index: 2;
        }

            .search-sec .header_bg {
                background: #efefef;
                margin-top: 5px;
                padding: 3px 0;
                border-radius: 4px 4px 0 0;
            }

                .search-sec .header_bg h2 {
                    font-size: 0.9rem;
                    margin: 10px 18px;
                    text-align: left;
                    font-weight: 700;
                    color: #0F172A;
                }

        .rtobag .form-label {
            font-size: 1rem;
        }

        .rtobag .form-control {
            font-size: 1rem;
            padding: 0.6rem 1rem;
            color: #818181;
        }

        .syncSec {
            margin: 0;
            padding: 16px 0px 10px;
            width: 100%;
        }

            .syncSec p {
                font-size: 15px;
                margin: 7px 0;
                text-align: left;
                color: #0F172A;
                line-height: 18px;
                font-weight: 700;
            }

                .syncSec p span {
                    font-size: 13px;
                    vertical-align: top;
                    color: #7b7b7b;
                }

                    .syncSec p span.datetime {
                        color: #747474;
                        font-size: 13px;
                        font-weight: 400;
                    }

        .two_kscreen .card-footer {
            padding: 1rem 1rem;
            position: sticky;
            width: 100%;
            bottom: 0;
            left: 0;
            z-index: 99;
            background: #fff;
        }

        .two_kscreen .btn-outline-secondary:hover {
            color: #0F172A;
            background-color: transparent;
            border: 0.0625rem solid rgba(231, 234, 243, .7);
        }

        .two_kscreen .btn-outline-secondary {
            color: #0F172A;
            border: 0.0625rem solid rgba(231, 234, 243, .7);
        }
        /*.................camera...................*/
        .camera-content {
            height: 78vh;
            border-radius: 0;
            overflow: hidden
        }

            .camera-content h2 {
                vertical-align: middle;
                font-weight: 800;
                font-size: 20px;
                margin-bottom: 0
            }

        .camera-btn {
            width: 100%;
            height: 78vh;
            overflow-x: hidden;
            overflow-y: auto;
            display: inline-block;
        }

            .camera-btn::-webkit-scrollbar {
                width: 4px;
            }

            .camera-btn::-webkit-scrollbar-track {
                background-color: darkgrey;
            }

            .camera-btn::-webkit-scrollbar-thumb {
                background: #0F172A;
                width: 2px
            }

            .camera-btn li {
                width: 100%;
                position: relative;
                margin-bottom: 5px
            }

                .camera-btn li a {
                    color: #0F172A;
                    font-weight: 700;
                    text-transform: uppercase;
                    font-size: 14px;
                    padding: 6px 0 0 0;
                    position: relative;
                    width: 100%;
                    display: block;
                    font-size: 14px;
                    transition: .5s;
                }

                .camera-btn li .btn i {
                    font-size: 1.4rem;
                    margin-right: 0;
                    vertical-align: middle;
                    font-style: normal;
                    line-height: 1.2;
                }

                .camera-btn li span {
                    font-size: 11px
                }

        .editname {
            position: absolute;
            top: 5px;
            right: 5px;
        }

            .editname .btn {
                letter-spacing: 2px;
                font-weight: 600;
                line-height: 1.5;
                text-transform: uppercase;
                padding: 0;
                background: transparent;
                border-color: transparent;
                color: #0F172A;
            }


        .camera-btn li a:hover {
            color: #2ba24c !important;
            transition: .5s
        }

        .camera-btn li a.active {
            color: #2ba24c !important;
        }

        .camera-screen {
            border-radius: 0;
        }


            .camera-screen .card .cam-title {
                position: absolute;
                top: 1px;
                left: 1px;
                font-size: 12px;
                font-weight: 600;
                padding: 3px 10px;
                background: rgba(255, 255, 255, .7);
                border-radius: 0;
                color: #0F172A;
                z-index: 2;
                max-width: 80%;
            }

            .camera-screen .card video {
                width: 100%;
            }
        /*CONFIRM AUDIT*/
        .modal-dialog.expected-modal {
            max-width: 1000px;
        }

        .accepted-sec {
            margin-top: 10px;
            display: flex;
            gap: 18px;
        }

            .accepted-sec .card {
                flex: 1;
                border-radius: 12px;
                padding: 20px;
                border: 0;
                box-shadow: none
            }

                .accepted-sec .card.accepted {
                    background: #FFFFFF;
                    background: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgba(230, 252, 230, 1) 100%);
                }

                .accepted-sec .card.rejected {
                    background: #FFFFFF;
                    background: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgba(253, 237, 239, 1) 100%);
                }

                .accepted-sec .card.total {
                    background: #FFFFFF;
                    background: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgba(248, 248, 250, 1) 100%);
                }

                .accepted-sec .card.expected {
                    background: #fff8e9;
                    background: linear-gradient(0deg, rgb(255 255 255) 0%, rgb(255 248 233) 100%);
                }

            .accepted-sec .icon-sec {
                width: 26px;
                height: 26px;
                background: #e4e6eb;
                border-radius: 35px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #333;
                font-size: 16px;
            }

                .accepted-sec .icon-sec i {
                    font-size: 18px;
                    line-height: .4;
                }

                    .accepted-sec .icon-sec i.bi-x-lg {
                        font-size: 12px;
                        line-height: .4;
                    }

                    .accepted-sec .icon-sec i.bi-box {
                        font-size: 12px;
                    }

                    .accepted-sec .icon-sec i.bi-search {
                        font-size: 10px;
                    }

        .icon-sec.accepted {
            background: #2ba24c;
            color: #fff
        }

        .icon-sec.rejected {
            background: #F44336;
            color: #fff
        }


        .accepted-sec .title {
            display: flex;
            align-items: center;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 6px;
            gap: 8px;
        }

        .accepted-sec .count {
            text-align: center;
            display: flex;
            justify-content: start;
            align-items: center;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 0;
        }

        .accepted-sec .items {
            font-size: 13px;
            color: #6b7280;
            margin-left: 4px;
            font-weight: 400;
            line-height: .4;
            margin-top: 3px;
        }

        .t-search {
            max-width: 100%;
            min-width: 174px;
        }

        .modal-dialog.payment-sav-modal {
            max-width: 690px;
            margin: 1.75rem auto;
        }



        .scandetails {
            position: fixed;
            top: 0;
            right: -400px;
            width: 400px;
            height: 100%;
            background: #fff;
            transition: right 0.4s ease;
            z-index: 1000;
            overflow-y: auto;
            padding-bottom: 20px;
        }

            .scandetails.open {
                right: 0;
            }

        .kpi-box .avatar-title {
            height: 3.5rem;
            width: 3.5rem !important;
            background: transparent;
        }

            .kpi-box .avatar-title img {
                max-height: 58px;
            }
        /*..........loadplanning....*/

        .rider-stepper .step-content[hidden] {
            display: none;
        }

        .rider-stepper .step-btn-sec {
            padding: 0;
            position: sticky;
            top: -14px;
            z-index: 9;
        }

        .rider-stepper .step-btn {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 8px;
            background: #fff;
            border-radius: 8px;
            border: 1px solid #ebedf1;
        }

            .rider-stepper .step-btn .step {
                display: flex;
                align-items: center;
                gap: 8px;
                padding: 10px 12px;
                /*border: 1px solid #ebedf1;
border-radius: 8px;
background: #ffffff;*/
                color: #6b7280;
                width: 96%;
                margin-left: 0;
                margin-right: 0;
            }

                .rider-stepper .step-btn .step.active {
                    color: #2ba24c;
                }

                .rider-stepper .step-btn .step.completed {
                    color: #2ba24c;
                    background: transparent !important
                }

            .rider-stepper .step-btn .num {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 22px;
                height: 22px;
                border-radius: 50%;
                background: #ebedf1;
                color: var(--n-200);
                font-size: 12px;
            }

            .rider-stepper .step-btn .step.active .num {
                background: #2ba24c;
            }

        .step-content-wrapper {
            min-height: 400px;
            position: relative;
            width: 100%;
        }

        .rider-stepper .step-content {
            opacity: 0;
            transform: translateX(20px);
            transition: opacity 0.35s ease, transform 0.35s ease;
            position: absolute;
            left: 0;
            width: 100%;
            pointer-events: none;
            z-index: -1;
            top: 0;
            height: 0;
        }

            .rider-stepper .step-content.active {
                opacity: 1;
                transform: translateX(0);
                position: relative;
                pointer-events: auto;
                z-index: 4;
                height: auto;
            }



        .rider-stepper .summary-sec .card-summary .field {
            display: grid;
            grid-template-columns: 140px 1fr;
            gap: 15px 12px;
            font-size: 14px;
            margin-bottom: 20px;
            align-items: center;
        }

        .rider-stepper .profile-img {
            width: 200px;
            height: 200px;
            display: inline-block;
        }

            .rider-stepper .profile-img img {
                width: 100%;
                height: 100%;
                border-radius: 10px;
                object-fit: cover
            }

        .rider-stepper .summary-sec .card-summary .field .k {
            font-weight: 600;
        }


        .item-model {
            max-width: 1014px;
        }

        .rider-stepper .step-content .notice {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 6px 14px;
            border-radius: 6px;
            font-size: .80rem;
        }

            .rider-stepper .step-content .notice.notice-info {
                background: #eff4ff;
                border: 1px solid #bfcffe;
                color: #2563eb
            }

            .rider-stepper .step-content .notice .notice-icon {
                font-size: 14px;
                flex-shrink: 0;
            }

            .rider-stepper .step-content .notice.notice-success {
                background: #e6f7f3;
                border: 1px solid #b3ead9;
                color: #2ba24c;
            }


            .rider-stepper .step-content .notice.notice-warn {
                background: #ffebbd;
                color: #df9e06;
            }

        .rider-stepper .route-block {
            margin: 0
        }

            .rider-stepper .route-block a:hover {
                transform: translateY(-2px);
            }

            .rider-stepper .route-block a {
                background: #FFFFFF;
                border: 2px solid #ebedf1;
                border-radius: 12px;
                padding: 0;
                box-shadow: 0 1px 2px rgba(16, 24, 40, .08), 0 1px 3px rgba(16, 24, 40, .06);
                transition: all 0.2s;
                display: block;
            }

                .rider-stepper .route-block a:hover {
                    color: #0F172A
                }

                .rider-stepper .route-block a.active {
                    /*background: #d8f3e0;*/
                    border: 2px solid #2ba24c;
                }

            .rider-stepper .route-block .route-h {
                padding: 10px 14px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                margin-bottom: 0;
            }

                .rider-stepper .route-block .route-h .rc-icon {
                    width: 36px;
                    height: 36px;
                    border-radius: 9px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 14px;
                    flex-shrink: 0;
                    border: 1.5px solid;
                }

                    .rider-stepper .route-block .route-h .rc-icon.stops {
                        background: #e5f7f1;
                        border-color: #7adcb5;
                        color: #2ba24c;
                    }

                    .rider-stepper .route-block .route-h .rc-icon.crose-dook {
                        background: #fffaee;
                        border-color: #ffebbd;
                        color: #ffebbd;
                    }


        .summary-sec .card-summary .card-h .cc {
            font-size: 11px;
            color: #959595;
            background: #edf0f5;
            padding: 4px 9px;
            border-radius: 10px;
            margin-left: 10px;
            font-weight: 600;
            line-height: 1;
        }

        .summary-sec .card-summary .card-b .route-block .route-h .rc-icon i {
            font-size: 16px;
            margin-right: 0
        }

        .rider-stepper .route-block .route-h h2 {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 6px;
            text-transform: uppercase;
            line-height: 1.1;
        }

        .rider-stepper .route-block small.route-code {
            font-size: 11px;
            color: #8f8f8f;
            font-weight: 500;
            display: block
        }

        .rider-stepper .route-block .route-h h6 {
            color: #64748B;
            font-size: 13px;
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            font-weight: 400;
            margin: 0;
        }

        .rider-stepper .route-b {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            border-top: 1px solid var(--border);
            border-right: 0;
            border-left: 0;
        }

        .rider-stepper .route-block a .cc-stat {
            background: var(--n-25);
            border-radius: 0px;
            padding: 8px 10px;
            text-align: center;
            border-right: 1px solid var(--border);
        }

            .rider-stepper .route-block a .cc-stat:last-child {
                border-right: none
            }

        .rider-stepper .route-b .sla-strip {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 5px 14px;
            font-size: 9px;
            font-weight: 700;
        }

        .rider-stepper .route-b .sla-bar {
            flex: 1;
            height: 4px;
            background: #fff;
            border-radius: 2px;
            overflow: hidden;
        }


        .rider-stepper .sla-fill {
            height: 100%;
            border-radius: 2px;
            transition: width .6s ease;
        }

        .rider-stepper .route-b .sla-strip.bad {
            color: #ff5c5c;
            background-color: #fef2f2;
        }

            .rider-stepper .route-b .sla-strip.bad .sla-fill {
                background: #ff5c5c;
            }


        .summary-sec .card-summary .load-table tr td .flag {
            display: inline-block;
            padding: 3px 8px;
            border-radius: 999px;
            font-size: 11px;
            font-weight: 700;
            line-height: 1;
        }

            .summary-sec .card-summary .load-table tr td .flag.standard {
                color: #7b39f5;
                background-color: #efe7ff;
            }

            .summary-sec .card-summary .load-table tr td .flag.low {
                background-color: #e7e7e7;
                color: #333;
            }

            .summary-sec .card-summary .load-table tr td .flag.urgent {
                color: #ff5c5c;
                background-color: #ffd6d6;
            }

            .summary-sec .card-summary .load-table tr td .flag.medium {
                color: #df9e06;
                background-color: #ffebbd;
            }

            .summary-sec .card-summary .load-table tr td .flag.high {
                color: #df3e3d;
                background-color: #f3d5c7;
            }

        .rider-stepper .route-b .sla-strip.ok {
            color: #2ba24c;
            background-color: #e5f7f1;
        }

            .rider-stepper .route-b .sla-strip.ok .sla-fill {
                background: #2ba24c;
            }


        .rider-stepper .route-b .sla-strip.warn {
            color: #df9e06;
            background-color: #fff7e5;
        }

            .rider-stepper .route-b .sla-strip.warn .sla-fill {
                background: #df9e06;
            }

        .rider-stepper .route-b .sla-strip.info {
            color: #7b39f5;
            background-color: #f6f2ff;
        }

            .rider-stepper .route-b .sla-strip.info .sla-fill {
                background: #7b39f5;
            }
        /*.route-block a.active .cc-stat {
    background: #fff;
}*/

        .cc-stat-val {
            font-size: 15px;
            font-weight: 600;
            line-height: 1;
        }

            .cc-stat-val.ok {
                color: #2ba24c;
            }

            .cc-stat-val.warn {
                color: #df9e06;
            }

            .cc-stat-val.info {
                color: #7b39f5;
            }

            .cc-stat-val.bad {
                color: #ff5c5c;
            }

        .cc-stat-key {
            font-size: 11px;
            color: #8c98a4;
            margin-top: 1px;
            line-height: 1;
        }

        .card .route-f {
            margin-top: 12px;
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            /*    background: #f9fafb;
    border-top: 1px solid #e2e7ef;*/
        }

            .card .route-f .flag {
                display: inline-block;
                padding: 3px 8px;
                border-radius: 999px;
                font-size: 11px;
                font-weight: 700;
                line-height: 1;
            }

                .card .route-f .flag.standard {
                    color: #7b39f5;
                    background-color: #efe7ff;
                }

                .card .route-f .flag.low {
                    background-color: #e7e7e7;
                    color: #333;
                }

                .card .route-f .flag.urgent {
                    color: #ff5c5c;
                    background-color: #ffd6d6;
                }

                .card .route-f .flag.medium {
                    color: #df9e06;
                    background-color: #ffebbd;
                }

                .card .route-f .flag.high {
                    color: #df3e3d;
                    background-color: #f3d5c7;
                }

        .rider-stepper .route-block .route-h .tag-sec {
            display: flex;
            gap: 4px;
            margin-top: 6px
        }

        .rider-stepper .route-block .route-h .tag {
            display: flex;
            align-items: center;
            padding: 3px 8px;
            border-radius: 999px;
            font-size: 10px;
            font-weight: 700;
            line-height: 1;
            position: relative;
        }

            .rider-stepper .route-block .route-h .tag.standard {
                color: #2ba24c;
                background-color: #e5f7f1;
            }
            /*.main .theme-2 .content .card .rider-stepper .route-block .route-h .tag.standard::before {
content: '';
width: 4px;
height: 4px;
border-radius: 50%;
background: #2ba24c;
flex-shrink: 0;
margin-right: 2px
}
*/
            .rider-stepper .route-block .route-h .tag.info {
                color: #7b39f5;
                background-color: #efe7ff;
            }

                .rider-stepper .route-block .route-h .tag.info::before {
                    content: '';
                    width: 4px;
                    height: 4px;
                    border-radius: 50%;
                    background: #7b39f5;
                    flex-shrink: 0;
                    margin-right: 2px
                }

            .rider-stepper .route-block .route-h .tag.low {
                background-color: #e7e7e7;
                color: #333;
            }

                .rider-stepper .route-block .route-h .tag.low::before {
                    content: '';
                    width: 4px;
                    height: 4px;
                    border-radius: 50%;
                    background: #333;
                    flex-shrink: 0;
                    margin-right: 2px
                }

            .rider-stepper .route-block .route-h .tag.urgent {
                color: #ff5c5c;
                background-color: #ffd6d6;
            }

                .rider-stepper .route-block .route-h .tag.urgent::before {
                    content: '';
                    width: 4px;
                    height: 4px;
                    border-radius: 50%;
                    background: #ff5c5c;
                    flex-shrink: 0;
                    margin-right: 2px
                }

            .rider-stepper .route-block .route-h .tag.medium {
                color: #df9e06;
                background-color: #ffebbd;
            }

                .rider-stepper .route-block .route-h .tag.medium::before {
                    content: '';
                    width: 4px;
                    height: 4px;
                    border-radius: 50%;
                    background: #df9e06;
                    flex-shrink: 0;
                    margin-right: 2px
                }

            .rider-stepper .route-block .route-h .tag.high {
                color: #df3e3d;
                background-color: #f3d5c7;
            }

                .rider-stepper .route-block .route-h .tag.high::before {
                    content: '';
                    width: 4px;
                    height: 4px;
                    border-radius: 50%;
                    background: #df3e3d;
                    flex-shrink: 0;
                    margin-right: 2px
                }

        #Partial-sidebar.sidebar {
            position: fixed;
            right: -350px;
            top: 0;
            width: 350px;
            height: 100%;
            background: #fff;
            transition: right 0.3s ease;
        }

            #Partial-sidebar.sidebar.active {
                right: 0;
            }


            #Partial-sidebar.sidebar .summary-sec .card-summary tr th .form-check-label {
                margin-top: 0;
                font-weight: 600;
                margin-bottom: 2px;
            }

            #Partial-sidebar.sidebar .summary-sec .card-summary tr th .form-check-input {
                margin-top: 0.1rem;
            }

        #Partial-sidebar.sidebar {
            position: fixed;
            top: 0;
            right: -950px;
            width: 950px;
            height: 100%;
            background: #fff;
            transition: right 0.4s ease;
            z-index: 1000;
            overflow-y: auto;
            padding-bottom: 20px
        }

            #Partial-sidebar.sidebar.open {
                right: 0;
            }

            #Partial-sidebar.sidebar .form-check .form-check-label {
                margin-top: 4px;
            }

            #Partial-sidebar.sidebar .summary-sec .card-summary tr td, #Partial-sidebar.sidebar .summary-sec .card-summary tr th {
                padding: 6px 8px;
            }

        .avatar-title {
            align-items: center;
            /*background-color: #f5f5f5;*/
            color: #2ba24c;
            display: flex;
            font-weight: 500;
            justify-content: center;
            height: 3rem;
            width: 3rem !important;
            position: relative
        }

            .avatar-title img {
                max-height: 40px
            }

            .avatar-title i {
                font-size: 1.5rem;
            }

        .sidebar-body .section-label {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: var(--t-11);
            font-weight: var(--fw-bold);
            color: var(--n-500);
            letter-spacing: .08em;
            text-transform: uppercase;
            margin-bottom: 14px;
            position: relative;
        }

            .sidebar-body .section-label::after {
                content: '';
                flex: 1;
                height: 1px;
                background: #e1e1e1;
            }


        .leg-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }

        .leg-accordion {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .accordion-item {
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            overflow: hidden;
            transition: box-shadow .15s;
        }

.accordion-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #fafaf9;
    cursor: pointer;
    user-select: none;
    border-bottom: 1px solid transparent;
    transition: background .12s;
}

            .accordion-button:not(.collapsed) {
                background-color: #fafaf9;
            }

        .leg-number {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: #2ba24c;
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .leg-route-text {
            font-size: 13px;
            font-weight: 600;
            flex: 1;
        }

        .leg-route-sub {
            font-size: 11px;
            color: #94a3b8;
        }

        .leg-header-chips {
            display: flex;
            gap: 5px;
            margin-left: auto;
        }

        .lc-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 2px 8px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            white-space: nowrap;
        }

        .leg-accordion .accordion-body .badge-vtype {
            background: #eef2ff;
            color: #6366f1;
            font-size: 11px;
        }

        .leg-accordion .accordion-body {
            padding: 14px;
            border-top: 0;
        }

            .leg-accordion .accordion-body .lc-hint {
                font-size: 11px;
                color: #94a3b8;
                margin-top: 3px;
            }

        .leg-grid-wide {
            grid-template-columns: repeat(4, 1fr);
        }

        .leg-slab-mini {
            margin-top: 10px;
        }

            .leg-slab-mini table {
                width: 100%;
                border-collapse: collapse;
                font-size: 12px;
            }

            .leg-slab-mini th {
                padding: 5px 7px !important;
                background: #f8fafc;
                border: 1px solid #e2e8f0;
                font-size: 10px;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: .5px;
                color: #94a3b8;
            }

            .leg-slab-mini td {
                padding: 3px 5px !important;
                border: 1px solid #e2e8f0;
            }

        .slab-row-num {
            color: #94a3b8;
            font-size: 11px;
            text-align: center;
            width: 28px;
        }

        .leg-slab-mini td input {
            width: 100%;
            border: none;
            background: transparent;
            font-size: 12px;
            outline: none;
            padding: 2px 3px;
        }

        .leg-slab-mini td .btn-xs {
            padding: 3px 8px !important;
            font-size: 11px !important;
        }

        .leg-slab-mini td .btn-lc-danger {
            background: #fee2e2;
            color: #dc2626;
            border: 1px solid transparent;
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 12.5px;
            font-weight: 500;
            cursor: pointer;
            transition: all .15s;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .leg-slab-mini .table > :not(caption) > :last-child > * {
            border-bottom-width: 1px;
        }

        .leg-slab-mini .text-green {
            color: #2ba24c;
        }

        .form-section .lc-hint {
            font-size: 12px;
            color: #94a3b8;
            margin-top: 3px;
        }

        .form-label span {
            color: #ff5c5c;
            font-size: 11px;
            margin-left: 3px
        }

.calc-box {
    background: var(--n-25);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
}

        .calc-line {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 6px 0;
            border-bottom: 1px dashed #e2e8f0;
            font-size: 13px;
        }

            .calc-line .cv {
                font-weight: 600;
            }

            .calc-line.deduct .cv {
                color: #df9e06;
            }

            .calc-line:last-child {
                border-bottom: none;
                font-weight: 700;
                font-size: 14.5px;
                padding-top: 10px;
            }

            .calc-line.total-line .cv {
                color: #2ba24c;
                font-size: 18px;
            }

        .lc-table-wrap {
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            overflow: hidden;
        }

.inv-totals {
    background: var(--n-25);
    color: #0F172A;
    border-radius: 4px;
    padding: 16px 20px;
    margin-top: 0;
}

        .inv-total-row {
            display: flex;
            justify-content: space-between;
            padding: 6px 0;
            font-size: 13px;
            border-bottom: 1px solid rgba(129, 129, 129, .07);
        }

            .inv-total-row:last-child {
                border-bottom: none;
                font-size: 16px;
                font-weight: 700;
                padding-top: 10px;
            }

        .info-grid-sec {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
        }



        .info-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 5px 0;
            border-bottom: 1px solid #f5f5f5;
            gap: 12px;
        }

            .info-row:last-child {
                border-bottom: none;
                padding-bottom: 0;
            }

        .info-key {
            font-size: 12px;
            color: #94a3b8;
            white-space: nowrap;
        }

        .info-val {
            font-size: 12.5px;
            font-weight: 500;
            color: #0f172a;
            text-align: right;
        }

        .sec-panel .lc-card {
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            box-shadow: 0 1px 2px rgba(0,0,0,.05);
        }

        .lc-card-header {
            padding: 10px 18px;
            border-bottom: 1px solid #e2e8f0;
            display: flex;
            align-items: center;
            gap: 10px;
            background: #f0f2f5;
            border-radius: 8px 8px 0 0;
        }

            .lc-card-header i {
                color: #2ba24c;
            }

            .lc-card-header .lc-card-title {
                font-size: 13.5px;
                font-weight: 600;
            }

        .lc-card-body {
            padding: 18px;
        }

            .lc-card-body .audit-timeline {
                display: flex;
                flex-direction: column;
                gap: 0;
            }

            .lc-card-body .audit-item {
                display: flex;
                gap: 12px;
                padding: 12px 0;
                border-bottom: 1px solid #e2e8f0;
            }

                .lc-card-body .audit-item:last-child {
                    border-bottom: none;
                }

            .lc-card-body .audit-dot-wrap {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 0;
            }

            .lc-card-body .audit-dot {
                width: 30px;
                height: 30px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 12px;
                flex-shrink: 0;
            }

            .lc-card-body .audit-conn {
                width: 1px;
                flex: 1;
                background: #e2e8f0;
                min-height: 12px;
                margin: 3px 0;
            }

            .lc-card-body .audit-body {
                flex: 1;
                padding-bottom: 4px;
            }

        .view-rate .tab-content .info-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
            margin-bottom: 18px;
        }

        .slab-section-title {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: var(--t-11);
            font-weight: var(--fw-bold);
            color: var(--n-500);
            letter-spacing: .08em;
            text-transform: uppercase;
            margin-bottom: 14px;
            position: relative;
        }

            .slab-section-title::after {
                content: '';
                flex: 1;
                height: 1px;
                background: #e1e1e1;
            }

        .lc-card {
            background: #fff;
            border: 1px solid #e1e1e1;
            border-radius: 8px;
            box-shadow: 0 1px 2px rgba(0,0,0,.05);
        }

        .lc-card-header {
            padding: 10px 18px;
            border-bottom: 1px solid #e1e1e1;
            display: flex;
            align-items: center;
            gap: 10px;
            background: #fafaf9;
            border-radius: 8px 8px 0 0;
        }

            .lc-card-header i {
                color: #2ba24c;
            }

            .lc-card-header .lc-card-title {
                font-size: 13.5px;
                font-weight: 600;
            }

        .lc-card-body {
            padding: 18px;
        }

            .lc-card-body .audit-timeline {
                display: flex;
                flex-direction: column;
                gap: 0;
            }

            .lc-card-body .audit-item {
                display: flex;
                gap: 12px;
                padding: 12px 0;
                border-bottom: 1px solid #e2e8f0;
            }

                .lc-card-body .audit-item:last-child {
                    border-bottom: none;
                }

            .lc-card-body .audit-dot-wrap {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 0;
            }

            .lc-card-body .audit-dot {
                width: 30px;
                height: 30px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 12px;
                flex-shrink: 0;
            }

            .lc-card-body .audit-conn {
                width: 1px;
                flex: 1;
                background: #e2e8f0;
                min-height: 12px;
                margin: 3px 0;
            }

            .lc-card-body .audit-body {
                flex: 1;
                padding-bottom: 4px;
            }


        #load-details-sidebar.sidebar {
            position: fixed;
            right: -950px;
            top: 0;
            width: 950px;
            height: 100%;
            background: #fff;
            transition: right 0.3s ease;
            z-index: 999;
        }

            #load-details-sidebar.sidebar.active {
                right: 0;
            }

        .dp-progress {
            padding: 12px 0 10px;
            overflow-x: auto;
        }

            .dp-progress .dp-prog-steps {
                display: flex;
                align-items: center;
                gap: 0;
                min-width: max-content;
            }

            .dp-progress .dps {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 4px;
            }

            .dp-progress .dps-dot {
                width: 30px;
                height: 30px;
                border-radius: 50%;
                border: 2.5px solid;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 14px;
                flex-shrink: 0;
            }

                .dp-progress .dps-dot.ok {
                    color: #2ba24c;
                    background-color: #cefddb;
                }

                .dp-progress .dps-dot.info {
                    color: #7b39f5;
                    background-color: #efe7ff;
                }

                .dp-progress .dps-dot.warn {
                    color: #df9e06;
                    background-color: #ffebbd;
                }

                .dp-progress .dps-dot.bad {
                    color: #ff5c5c;
                    background-color: #ffd6d6;
                }

            .dp-progress .dps-label {
                font-size: 10px;
                white-space: nowrap;
                color: #6d8fa8;
                font-weight: 700;
            }

            .dp-progress .dps-connector {
                flex: 1;
                min-width: 32px;
                height: 2.5px;
                border-radius: 2px;
                margin-bottom: 22px;
                background: #ebedf1;
            }

                .dp-progress .dps-connector.ok {
                    background-color: #2ba24c;
                }

                .dp-progress .dps-connector.info {
                    background-color: #7b39f5;
                }

                .dp-progress .dps-connector.warn {
                    background-color: #df9e06;
                }

                .dp-progress .dps-connector.bad {
                    background-color: #ff5c5c;
                }

        .sidebar-sec .summary-sec .card-summary .card-h .nav-link .tag {
            padding: 2px 8px;
            border-radius: 999px;
            font-weight: 800;
            font-size: 12px;
            background-color: #e7e7e7;
            color: #333;
            margin-left: 4px
        }

        .sidebar-sec .summary-sec .card-summary .card-h .nav-link.active .tag {
            color: #7b39f5;
            background-color: #efe7ff;
        }

        .sidebar-sec .summary-sec .card-summary .card-b .summary-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
            margin-bottom: 12px;
        }



        #load-details-sidebar .summary-grid .kpi {
            background: #fafaf9;
            border: 1px solid #e8e6e3;
            border-radius: 8px;
            padding: 16px 10px;
            text-align: center;
            grid-column: auto;
        }

            #load-details-sidebar .summary-grid .kpi .sev {
                font-size: 18px;
                font-weight: 700;
                line-height: 1;
            }

                #load-details-sidebar .summary-grid .kpi .sev.ok {
                    color: #2ba24c;
                }

                #load-details-sidebar .summary-grid .kpi .sev.info {
                    color: #7b39f5;
                }

                #load-details-sidebar .summary-grid .kpi .sev.warn {
                    color: #df9e06;
                }

                #load-details-sidebar .summary-grid .kpi .sev.bad {
                    color: #ff5c5c;
                }

            #load-details-sidebar .summary-grid .kpi .kpi-k {
                font-size: 10px;
                color: #6d8fa8;
                text-transform: uppercase;
                letter-spacing: .5px;
                margin-top: 6px;
            }

        .er-card {
            flex: 1;
            background: #fafaf9;
            border: 1px solid #e8e6e3;
            border-radius: 8px;
            padding: 9px 11px;
        }

        .er-label {
            font-size: 10px;
            color: #72808b;
            text-transform: uppercase;
            letter-spacing: .7px;
            margin-bottom: 4px;
            font-weight: 600;
        }

        .er-name {
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 2px;
        }

            .er-name.ok {
                color: #2ba24c;
            }

            .er-name.info {
                color: #7b39f5;
            }

            .er-name.warn {
                color: #df9e06;
            }

            .er-name.bad {
                color: #ff5c5c;
            }

        .er-detail {
            font-size: 12px;
            color: #334f68;
        }

        .er-mono {
            font-size: 10px;
            color: #4f5f6b;
            margin-top: 5px;
        }


        #load-details-sidebar .notice {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 6px 14px;
            border-radius: 6px;
            font-size: .80rem;
        }

            #load-details-sidebar .notice.notice-info {
                background: #eff4ff;
                border: 1px solid #bfcffe;
                color: #2563eb
            }

            #load-details-sidebar .notice .notice-icon {
                font-size: 14px;
                flex-shrink: 0;
            }

            #load-details-sidebar .notice.notice-success {
                background: #e6f7f3;
                border: 1px solid #b3ead9;
                color: #2ba24c;
            }


            #load-details-sidebar .notice.notice-warn {
                background: #ffebbd;
                color: #df9e06;
            }

        .scan-p-bar {
            width: 450px;
            display: flex;
            align-items: center;
        }

            .scan-p-bar .progress {
                width: 74%;
            }

        .summary-sec .card-summary td .leg-tag {
            display: inline-flex;
            align-items: center;
            gap: 3px;
            background: #e8f5ed;
            color: #2ba24c;
            border-radius: 3px;
            padding: 1px 5px;
            font-size: 10.5px;
            font-weight: 600;
            margin-right: 2px;
        }

        .summary-sec .card-summary td .badge-vtype {
            color: #6366f1;
            font-size: 10.5px;
            background: #fff;
        }


        .upload__preview {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .upload__img-box,
        .upload__file-box {
            width: 100px;
            border: 1px solid #ebedf1;
            border-radius: 8px;
            padding: 0;
            position: relative;
            background: #fff;
            height: 100px;
        }

        .upload__img-box {
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .upload__img-box img {
                max-width: 100%;
                max-height: 100%
            }

        .upload__file-box {
            display: inline-block;
            text-align: center;
            padding: 10px;
        }

        .upload__file-icon {
            font-size: 34px;
        }

        .upload__file-name {
            font-size: 13px;
            white-space: nowrap;
            width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .upload__remove {
            position: absolute;
            top: 1px;
            right: 1px;
            cursor: pointer;
            background: rgba(255, 255, 255, .8);
            width: 22px;
            height: 22px;
            border-radius: 25px;
            text-align: center;
            vertical-align: bottom;
        }

            .upload__remove i {
                color: #dc3545;
                font-size: 11px;
                margin-left: 1px;
            }

        .card-b.volume-sec .field {
            margin-bottom: 0 !important;
        }

            .card-b.volume-sec .field .k {
                text-align: left;
            }

            .card-b.volume-sec .field div {
                text-align: right;
            }

        .partial-toggle {
            margin: 0;
            display: flex;
            align-items: center;
            width: 106px;
            background: #fff;
            border-radius: 6px;
            overflow: hidden;
            border: 1px solid #ebedf1
        }

            .partial-toggle .form-check {
                position: relative;
                min-height: 1.3125rem;
                padding-left: 0;
                margin-bottom: 0;
                width: 50%;
            }

                .partial-toggle .form-check::after {
                    content: '';
                    position: absolute;
                    right: -5px;
                    width: 1px;
                    height: 56%;
                    background: #d3d2d2;
                }

                .partial-toggle .form-check:last-child::after {
                    display: none
                }

                .partial-toggle .form-check .form-check-input {
                    opacity: 0;
                    margin-left: 0;
                    position: absolute;
                    left: 10px;
                    top: 10px;
                }

            .partial-toggle .form-check-label {
                padding: 6px 6px;
                border: 0;
                cursor: pointer;
                transition: all 0.4s ease;
                margin: 0;
                width: 100%;
                text-align: center;
                color: #878787;
            }
            /* active state */
            .partial-toggle .form-check-input:checked + .form-check-label {
                background: #2ba24c;
                color: #fff;
                transition: all 0.4s ease;
                border: 0;
                margin: 0;
                transform: scale(1.06);
            }

        #Partial-sidebar.sidebar {
            position: fixed;
            right: -350px;
            top: 0;
            width: 350px;
            height: 100%;
            background: #fff;
            transition: right 0.3s ease;
        }

            #Partial-sidebar.sidebar.active {
                right: 0;
            }

        .partial-toggle {
            display: flex;
            gap: 10px;
            position: relative;
        }

            .partial-toggle .form-check {
                display: flex;
                align-items: center;
                gap: 5px;
            }


        .li-dot {
            width: 8px;
            height: 8px;
            border-radius: 2px;
            display: block;
        }

            .li-dot.ok {
                background: #2ba24c
            }

            .li-dot.partial {
                background: #7b39f5
            }

            .li-dot.warn {
                background: #df9e06
            }

        .status-type.ok {
            color: #2ba24c
        }

        .status-type.warn {
            color: #df9e06
        }


        .add-counter-sec {
            margin: 0 auto;
            padding: 40px;
            width: 50%;
        }

            .add-counter-sec .qty-ctrl {
                display: flex;
                align-items: center;
                gap: 0;
                border: 1px solid #ebedf1;
                border-radius: 30px;
                overflow: hidden;
                width: 214px;
                margin: 6px auto 0 auto;
            }

            .add-counter-sec .qb {
                width: 65px;
                height: 40px;
                background: #2ba24c;
                border: none;
                font-size: 24px;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                font-weight: 700;
                color: #fff;
                transition: background 0.1s;
            }

            .add-counter-sec .qi {
                width: 84px;
                height: 40px;
                border: none;
                border-left: 1px solid #ebedf1;
                border-right: 1px solid #ebedf1;
                text-align: center;
                font-size: 16px;
                font-weight: 700;
                color: #333;
                background: white;
                outline: none;
            }

            .add-counter-sec .qty-of {
                font-size: 11px;
                color: #333;
            }

        .total-count {
            background: #ffffff;
            padding: 20px 14px;
            border: 1px solid #f1f1f1;
            min-width: 155px;
            border-radius: 10px;
            margin: 0 auto 40px auto;
            box-shadow: -3px 11px 28px -30px rgba(0, 0, 0, 0.75);
            text-align: center;
        }

            .total-count .total {
                color: #8c9aa7;
                font-size: 15px;
            }

        .add-counter-sec .qty-wt .wt {
            font-size: 15px;
            font-weight: 400;
            color: #8c9aa7;
            margin-left: 4px;
            margin-top: 6px;
        }

        .add-counter-sec .qty-wt {
            color: #2ba24c;
            font-size: 38px;
            font-weight: 600;
        }

        .summary-sec .card-summary .card-b .kpi-box.count {
            background: #f8fffe;
        }

        .journeyChain-sec {
            width: 100%;
            overflow-x: auto;
            padding-bottom: 20px;
        }

        .dropdown.action-dropdown {
            display: inline-block
        }

        .topbar .ps-2 {
            padding-left: .25rem !important;
        }

        .topbar .px-2 {
            padding-left: .25rem !important;
            padding-right: .25rem !important;
        }

        .topbar .pe-2 {
            padding-right: .25rem !important;
        }

.more-filters-panel {
    background: var(--n-0);
    border-top: none;
    border-bottom: none;
    padding: 0 14px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--dur-slow) var(--ease-expo), padding var(--dur-slow) var(--ease-expo);
}

            .more-filters-panel.open {
                max-height: 200px;
                padding-bottom: 4px;
                overflow: visible;
            }

        .userSec {
            margin: 10px 0 0 0;
            width: 100%;
            height: 71vh;
            overflow-y: auto;
            overflow-x: hidden;
            position: relative
        }
        /*.timelinePage #floating-panel .userSec::-webkit-scrollbar {
width: 4px;
}

.timelinePage #floating-panel .userSec::-webkit-scrollbar-track {
background-color: #fff;
}

.timelinePage #floating-panel .userSec::-webkit-scrollbar-thumb {
background: #0F172A;
width: 2px;
}*/

        .timelinePage #floating-panel .userSec::-webkit-scrollbar {
            width: 4px;
        }

        .timelinePage #floating-panel .userSec::-webkit-scrollbar-track {
            background-color: #ddd;
        }

        .timelinePage #floating-panel .userSec::-webkit-scrollbar-thumb {
            background: #0F172A;
            width: 2px
        }
        /*...............Scan table..warehouse .......*/

        .scantable {
            width: 100%;
            padding: 0;
            margin-top: 0;
            padding: 25px 0 0 0;
        }

            .scantable ul {
                margin: 0;
                padding: 0 4%;
                list-style-type: none;
                text-align: center;
                display: flex;
                align-items: center !important;
                -ms-flex-wrap: wrap;
                flex-wrap: wrap;
            }

                .scantable ul li {
                    background: #fff;
                    margin: 0;
                    flex: 0 0 100%;
                    max-width: 100%;
                    padding: 20px 35px;
                    box-shadow: 0px 7px 16px -10px rgba(0, 0, 0, .2);
                    margin-bottom: 20px;
                    border-radius: 10px;
                }



                    .scantable ul li .image-sec {
                        height: 280px;
                    }

                        .scantable ul li .image-sec .img_box {
                            display: inline-block;
                            padding: 0;
                            border-radius: 35px;
                            height: 280px;
                            width: 280px;
                            text-align: center;
                            position: relative;
                        }

                        .scantable ul li .image-sec .boxSec {
                            height: 100%;
                            width: 100%;
                            display: flex;
                            align-items: center !important;
                            text-align: center;
                            flex-wrap: wrap;
                            flex-direction: column;
                            justify-content: center;
                            position: relative;
                        }

                            .scantable ul li .image-sec .boxSec img {
                                max-height: 230px;
                                max-width: 100%;
                            }

                            .scantable ul li .image-sec .boxSec .number {
                                margin: 0;
                                position: absolute;
                                top: 57px;
                            }

                                .scantable ul li .image-sec .boxSec .number h3 {
                                    margin: 0;
                                    font-size: 2.5rem;
                                    color: #08b54d;
                                }

                    .scantable ul li.noshadow {
                        box-shadow: none !important;
                        background: transparent !important;
                    }

                        .scantable ul li.noshadow h5 {
                            font-size: 1.4rem;
                            font-weight: 500;
                        }

                        .scantable ul li.noshadow h6 {
                            font-size: 1rem;
                            color: #747474;
                            line-height: 45px;
                            font-weight: 800;
                        }


.sub-trips .mismatched {
    font-size: 11px;
    color: red;
    display: block;
}

.gallery-sec a {
    display: none;
}

    .gallery-sec a:first-of-type {
        display: block;
    }

        .gallery-sec a:first-of-type img {
            display: none
        }

.charges-sec .form-control {
    width: 100px
}

.fancybox__container {
    z-index: 99999 !important;
}


.profile {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-bottom: 1px solid #ebedf1;
    padding-bottom: 16px;
}


.option-action {
    position: absolute;
    right: 8px;
    top: 0;
}

    .option-action .action_btn {
        background: transparent;
    }

    .option-action ul li:not(:last-child) {
        margin-bottom: 10px
    }

    .option-action .dropdown-menu {
        min-width: 10rem;
        padding: 1rem 0.8rem;
        color: #0F172A;
    }

        .option-action .dropdown-menu a {
            color: #0F172A
        }

            .option-action .dropdown-menu a i {
                margin-right: 4px
            }

.profile .img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    position: relative
}

.option-action .dropdown-menu a:hover {
    color: #777
}

.profile .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 35px;
}

.profile .img span {
    width: 8px;
    height: 8px;
    background: #2ba24c;
    border-radius: 35px;
    display: block;
    position: absolute;
    right: -1px;
    top: 4px;
    opacity: 0;
}

    .profile .img span.live {
        opacity: 1;
    }

.profile h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0F172A;
    margin: 0;
}

.profile .proContent ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    justify-content: start;
    align-items: center
}

    .profile .proContent ul li {
        font-size: 12px;
        font-weight: 500;
        color: #777777;
        margin: 0 4px;
    }
#body-overlay.active {
    background: rgba(20, 18, 16, .32);
    backdrop-filter: blur(2px);
    opacity: 0.8;
}

#body-overlay.active {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #505050;
    opacity: .5;
    background: rgba(20, 18, 16, .32);
    backdrop-filter: blur(2px);
    opacity: 0.8;
}

.audit_pro {
    display: flex
}

    .audit_pro a {
        text-decoration: none;
        text-align: center;
        width: 150px
    }

    .audit_pro .proimg {
        width: 70px;
        height: 70px;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        border-radius: 50%;
        overflow: hidden;
        margin: 0 auto;
    }

    .audit_pro h5 {
        font-size: 18px;
        margin-bottom: 0;
    }

    .audit_pro p {
        margin: 0;
        font-size: 13px;
        color: #6a6a6a;
        font-weight: 500;
    }

.audit_form_modal .accordion-item {
    background-color: #fafaf9;
    border: 0;
    margin-bottom: 14px;
}

.audit_form_modal .accordion-button:not(.collapsed) {
    color: #2ba24c;
}

.audit_form_modal .accordion-button {
    color: #0F172A;
    font-size: 14px;
    font-weight: 800;
    padding: .75rem 1.25rem;
}

.documents-wrap {
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--n-150) transparent;
}
.versions-head {
    margin-bottom: 13px;
    background: #F8FAFC;
    padding: 10px;
}

    .versions-head h3 {
        font-weight: 600;
        font-size: 12px;
        margin-bottom: 0
    }

.dov-value {
    min-width: 22px;
    min-height: 22px;
    border-radius: 50%;
    font-size: 12px;
    color: #0F172A;
    background: #ededed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    position: absolute;
    right: 10px;
    top: 10px;
}

    .dov-value.ok {
        background: var(--g-50);
        color: var(--g-700);
    }

    .dov-value.bad {
        color: #ff5c5c;
        background-color: #ffd6d6;
    }
.select-max-w {
    max-width: 220px !important;
    min-width: 220px !important
}

.card-b-mh {
    min-height: 250px;
    max-height: 450px;
    overflow-y:auto;
    overflow-x:hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--n-150) transparent;
}

.empty-state {
    width: 460px;
    background: transparent;
    text-align: center;
    padding: 40px 30px;
    border-radius: 12px;
    margin: 0 auto;
}

    .empty-state .icon-box {
        width: 60px;
        height: 60px;
        margin: 0 auto 18px;
        background: var(--n-50);
        border: 1px solid var(--n-75);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .empty-state .icon {
        width: 34px;
        height: 34px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
    }

    .empty-state .title {
        font-size: var(--t-18);
        line-height: 1.2;
        color: var(--n-700);
        font-weight: var(--fw-md);
        margin-bottom: 4px;
        text-transform: capitalize;
    }

    .empty-state .description {
        font-size: var(--t-14);
        line-height: 1.4;
        color: var(--n-500);
        margin-bottom: 26px;
    }


    .empty-state .btn .arrow {
        font-size: 11px;
    }
    .empty-state  .btn {
        font-size: var(--t-sm);
        padding: 4px 12px !important;
        border-radius: var(--r-6);
    }

/* STEPS
═══════════════════════════════════════════════════════════════ */
.table-steps {
    display: flex;
    align-items: flex-start
}

    .table-steps  .step-col {
        display: flex;
        flex-direction: column;
        align-items: center
    }
    .table-steps.cus .step-col {
        display: flex;
        flex-direction: inherit;
        align-items: center
    }
    .table-steps.cus .step-lbl{padding-left:4px}
        .table-steps.cus .step-lbl span {
            text-align: left;
            color: var(--n-400)
        }
            .table-steps.cus .step-lbl span.step-label {
                color: var(--n-900);
                font-size: var(--t-12);
            }



            .table-steps .step-node {
                width: 26px;
                height: 26px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: var(--t-xs);
                font-weight: var(--w-semi);
                border: 2px solid var(--n-200);
                color: var(--n-400);
                background: var(--surface);
                box-shadow: var(--sh-xs);
                transition: all var(--dur-slow) var(--ease-out-quart);
                flex-shrink: 0;
                z-index: 1;
                position:relative
            }
        .table-steps .step-node svg {
            width:14px;
            height:14px
        }
            .table-steps .step-node svg.triangle {
                width: 12px;
                height: 12px;
                margin-top: -1px;
            }

        .table-steps .step-node.done {
            background: var(--g-50);
            color: var(--g-400) !important;
            border-color: var(--g-400) !important;
        }

        .table-steps .step-node.now {
            border-color: var(--n-200);
            color: var(--n-400);
            /*box-shadow: var(--focus-ring-n)*/
        }

    .table-steps  .step-conn {
        flex: 1;
        height: 1.5px;
        background: var(--n-150);
        margin: 12.25px 4px 0;
        transition: background var(--dur-slow)
    }

        .table-steps  .step-conn.done {
            background: var(--g-400)
        }

    .table-steps .step-node.ok {
        background: var(--g-50);
        color: var(--g-700);
        border-color: var(--g-400);
    }

    .table-steps .step-node.warn {
        background: var(--amber-50);
        color: var(--amber-600);
        border-color: var(--amber-400);
    }
.step-node.bad {
    background: var(--red-50);
    color: var(--red-600);
    border-color: var(--red-200);
}


    .table-steps  .step-lbl {
        font-size: 10px;
        font-weight: var(--w-medium);
        color: var(--n-400);
        margin-top: 5px;
        text-align: center;
        white-space: nowrap
    }

        .table-steps .step-lbl.now, .table-steps  .step-lbl.done {
            color: var(--n-700);
            font-weight: var(--fw-semi)
        }

.delete-icon {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: #fff;
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.meta.title .route-name {
    font-size: var(--t-11);
    max-width: 400px;
}


@media (max-width : 1440px) {
    .cards-grid {
        column-count: 3;
    }

    .t-search {
        max-width: 160px;
        min-width: 34px;
    }
}
        /*.....mobile....*/
        @media only screen and (min-width : 1024px) and (max-width : 1366px) {
            .select-max-w {
                max-width: 220px !important;
                min-width: 220px !important
            }
            .t-search {
                max-width: 154px
            }
            .t-search.cus {
                max-width: 114px
            }
                .t-search.cus.mr {
                    max-width: 82px;
                }

            .action-btn .btn-sm {
                font-size: var(--t-sm) 12px !important;
                padding: 4px 4px !important;
            }

            .topbar h1 {
                font-size: var(--t-16);
            }

            .table-live {
                max-height: 62vh;
            }

            .form-select {
                background-position: right 3px center;
                padding-right: 18px !important;
            }
            .kpi-box-sc .kpi-box .value {
                font-size: 20px;
            }





        }

