﻿

/*----------------------------------------------------dashboard------------------------------------*/



.sidebar-menu li a.active {
    background-color: #fbbd00;
    color: #231f20;
}



.task-card {
    /* background: #fff; */
    /* padding: 20px; */
    border-radius: 12px;
    /* box-shadow: 0 4px 15px rgba(0,0,0,0.08); */
    position: relative;
}

.task-header h6 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.task-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.task-col {
    width: 23%;
}

.task-box {
    position: relative;
    padding: 20px;
    border-radius: 18px;
    overflow: hidden;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .task-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

.shape-img {
    position: absolute;
    left: 0;
    bottom: 0;
}

.task-title {
    display: block;
    font-size: 15px;
    margin-bottom: 20px;
    color: #fff;
}

.task-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .task-footer h5 {
        font-size: 22px !important;
        margin: 0;
        color: #fff;
    }


.task-icon img {
    opacity: .25;
    height: 35px;
    width: 100%;
}


.task-icon {
    font-size: 25px; /* opacity:0.3; */
    height: 60px;
    width: 60px;
    background-color: rgb(255 255 255 / 18%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #ffffff33;
}


    .task-icon i {
        color: #fff;
    }

/*.task-box:hover .task-icon {
    opacity: 1;
    transform: scale(1.1);
    transition: 0.3s;
}*/

.dash-wrapper {
    background: #ffffff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(26, 23, 64, 0.08), 0 4px 20px rgba(26, 23, 64, 0.05);
    border: 1px solid #dddaf0;
}

.custom-table thead th {
    color: #000000 !important;
    background-color: #ffc107 !important;
    padding: 16px 10px;
    border: 1px solid #000;
}

.table-img {
    max-height: 80px;
    max-width: 150px;
    object-fit: contain;
    border-radius: 6px;
}


.custom-table .btn {
    margin-right: 5px;
}

.custom-table tbody tr:hover {
    background: #f9fafb;
}


.brand-img {
    max-height: 60px;
    max-width: 60px;
    object-fit: contain;
    border-radius: 6px;
}


.custom-table .btn {
    margin-right: 5px;
    /* background: #012a5c; */
    border-radius: 40px;
    border: none;
}


.custom-table tbody tr:hover {
    background: #f9fafb;
}

@media (max-width:992px) {
    .task-col {
        width: 48%;
    }
}

@media (max-width:576px) {
    .task-col {
        width: 100%;
    }
}

/*----------------------------------------------end--------------------------------------*/


/*--------------------------------------------banner master-----------------------------*/

.custom-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px 20px;
    background: #f9fafb;
    border-bottom: 1px solid #eee;
    border-radius: 8px 8px 0 0;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}


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


.custom-select {
    height: 38px;
    padding: 7px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
    cursor: pointer;
    width: 60px;
}


.header-right {
    display: flex;
    align-items: center;
}


.search-box {
    position: relative;
}

    .search-box input {
        height: 38px;
        padding: 0 35px 0 10px;
        border: 1px solid #ddd;
        border-radius: 8px;
        outline: none;
        font-size: 14px;
    }

.search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 14px;
}


.search-box input:focus,
.custom-select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37,99,235,0.1);
}

@media (max-width:576px) {
    .custom-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-right {
        width: 100%;
    }

    .search-box input {
        width: 100%;
    }
}



.custom-pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.pagination-info {
    font-size: 14px;
    color: #666;
}

.custom-pagination {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 0;
}

    .custom-pagination li a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 8px;
        background: #f1f5f9;
        color: #555;
        text-decoration: none;
        font-size: 14px;
        transition: 0.3s;
    }

        .custom-pagination li a:hover {
            background: #2563eb;
            color: #fff;
        }

        .custom-pagination li a.active {
            background: #2563eb;
            color: #fff;
            background: linear-gradient(90deg, #fba31c 0%, #fbbd00 100%);
        }

@media (max-width:576px) {
    .custom-pagination-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
}

/*---------------------------------------------------end---------------------------------------*/


/*-------------------------------------------------user report---------------------------------*/


.img-preview{
    width:60px;
    height:60px;
    object-fit:cover;
    border-radius:6px;
    display:block;
    margin-bottom:6px;
    background:#f1f1f1;
}

.file-input{
    width:100%;
    font-size:12px;
}

.upload-status{
    font-size:12px;
    margin-top:4px;
}

.status{
    padding:4px 10px;
    border-radius:20px;
    font-size:12px;
    font-weight:600;
}
.status.active{
    background:#d1fae5;
    color:#065f46;
}



.custom-col{
    margin-bottom:20px;
}

.custom-label{
    font-weight:600;
    display:block;
    margin-bottom:10px;
}

.radio-group{
    display:flex;
    gap:20px;
}

.radio-box{
    display:flex;
    align-items:center;
    cursor:pointer;
    position:relative;
}

.radio-box input{
    position:absolute;
    opacity:0;
}

.radio-custom{
    width:18px;
    height:18px;
    border:2px solid #2563eb;
    border-radius:50%;
    margin-right:8px;
    position:relative;
    transition:0.3s;
}

.radio-custom::after{
    content:'';
    width:10px;
    height:10px;
    background:#2563eb;
    border-radius:50%;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%) scale(0);
    transition:0.3s;
}

.radio-box input:checked + .radio-custom::after{
    transform:translate(-50%, -50%) scale(1);
}


.radio-text{
    font-size:14px;
}
/*----------------------------------------------------end--------------------------------------*/
.form-control::placeholder{
    font-size:14px !important;
}


.badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.badge.yes {
    background: #dcfce7;
    color: #16a34a;
}

.badge.no {
    background: #fee2e2;
    color: #dc2626;
}


.custom-check {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    gap: 6px;
}

.custom-check input {
    display: none;
}


.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ffc107;
    border-radius: 4px;
    position: relative;
    background: #fff;
}

.custom-check input:checked + .checkmark {
    background: #22c55e;
    border-color: #22c55e;
}

.custom-check input:checked + .checkmark::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}


.custom-check:hover .checkmark {
    border-color: #22c55e;
}



/*------------------------------------------------question report-------------------------*/

.child-row {
    display: none;
    background: #f8fafc;
}


.toggle-btn {
    cursor: pointer;
    font-weight: bold;
    color: #164b5d !important;
}


.inner-table {
    background: #fff;
    margin: 10px 0;
}

.option-img {
    width: 90px;
    height: auto;
    object-fit: contain;
}

.parent-row:hover {
    background: #eef2ff;
}



/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 18px;
}

.toggle-switch input {
    display: none;
}

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

.slider::before {
    content: "";
    position: absolute;
    height: 14px;
    width: 14px;
    left: 2px;
    bottom: 2px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s;
}

.toggle-switch input:checked + .slider {
    background: #ffc107;
}

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


.qr-img {
    max-height: 40px;
    max-width: 100px;
    object-fit: contain;
    border-radius: 6px;
    border: 1px solid #ddd;
    padding: 3px;
}


/*-------------------------------------------------end------------------------------------*/




/*----------------------------------------------menu permssion-----------------------------*/
.permission-master-wrapper {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.permission-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.permission-tree,
.permission-tree ul {
    list-style: none;
    padding-left: 0;
}

.menu-title {
    font-weight: 500;
    margin-bottom: 12px;
    color: #333;
}

.permission-tree ul {
    margin-left: 15px;
    border-left: 2px dashed #ffa307;
    padding-left: 15px;
}

.permission-tree ul li {
    position: relative;
    margin-bottom: 10px;
}

.permission-tree ul li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: -15px;
    width: 12px;
    height: 2px;
    background: #ffa307;
}

.pm-check {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    font-size: 14px;
}

.pm-check input {
    position: absolute;
    opacity: 0;
}

.pm-box {
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    border: 2px solid #ffa307;
    border-radius: 4px;
    background: #fff;
}

.pm-check input:checked ~ .pm-box {
    background: #28a745;
    border-color: #28a745;
}

.pm-box::after {
    content: "";
    position: absolute;
    display: none;
}

.pm-check input:checked ~ .pm-box::after {
    display: block;
}

.pm-box::after {
    left: 4px;
    top: 0px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .pm-check {
        font-size: 13px;
    }
}




.admin-box {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.admin-label {
    font-size: 14px;
    color: #3c3c3c;
    font-weight: 500;
}


.dropdown-menu.to-top {
    min-width: 150px;
    padding: 8px 0;
    border: none;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.dropdown-header-custom {
    display: flex;
    justify-content: flex-end;
    padding: 5px 8px;
}

.close-btn {
    border: none;
    background: transparent;
    color: #999;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    color: #dc3545;
}

.to-top-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.to-top-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 8px;
    font-size: 12px;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}

.to-top-list li a:hover {
    background: #f5f5f5;
    color: #dc3545;
}
/*-------------------------------------------------end-------------------------------------*/


/*---------------------------------------------login---------------------------------------*/

/* ===== Layout ===== */
.auth-section {
    min-height: 100vh;
    position:relative;
}

.auth-left {
    display: none; 
    position: relative; 
}

.auth-left-content {
    height: 100%;
}

.auth-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auth-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 20px 80px;
}

.overlay-title {
    font-size: 36px !important;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.overlay-subtitle {
    font-size: 18px;
}

.auth-right {
    background-color: #fff;
    padding: 50px 30px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container {
    max-width: 400px;
    width: 100%;
}

.logo-link .logo-image {
    max-width: 240px;
    margin-bottom: 30px;
}

.auth-title {
    font-size: 24px !important;
    margin-bottom: 10px;
}

.auth-subtitle {
    font-size: 16px;
    color: #777;
    margin-bottom: 30px;
}

.auth-form .form-group {
    position: relative;
    margin-bottom: 20px;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
}

.form-input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #a7a6a6;
    border-radius: 12px;
    font-size: 14px;
    outline: none;
}

.password-group .toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 20px;
    height: 20px;
    background-image: url('assets/images/eye-icon.svg');
    background-size: cover;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
}

.forgot-password {
    font-size: 14px;
    color: #0066ff;
    text-decoration: none;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background-color: #0066ff;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s;
    text-align: center;
    background: linear-gradient(90deg, #fba31c 0%, #ef5734 100%);
}

.btn-submit:hover {
    background-color: #0051cc;
}

@media (min-width: 992px) {
    .auth-left {
        display: block;
    }
}

@media (max-width: 991px) {
    .auth-right {
        padding: 40px 20px;
    }
}
/*----------------------------------------------end----------------------------------------*/


/*--------------------------------------------responsive-----------------------------------*/


@media (max-width: 767px){
    .sidebar-logo img {
    max-height: 2.4375rem;
}
}



.dropdown, .dropdown-center, .dropend, .dropstart, .dropup, .dropup-center {
    position: relative;
    /* border-bottom: 1px solid #ffc10757; */
}



.custom-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    /* border-radius: 18px; */
    overflow: hidden;
    width: fit-content;
    /* border: 1px solid #d9d9d9; */
}

.custom-icon-box .icon-item {
    width: 59px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.custom-icon-box .icon-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0px;
    width: 1px;
    height: 45px;
    background: #d6d6d6;
}

.custom-icon-box .icon-item i {
    font-size: 18px;
    color: #0a3c87;
    transition: 0.3s ease;
}

.custom-icon-box .icon-item:hover i {
    transform: scale(1.1);
}



/*---------------------------------------------shipment chart-----------------------------*/

.shipment-dashboard-section {
    /* background: #ffffff; */
    /* padding: 20px; */
}

.shipment-card {
    background: #fff;
    border: 1px solid #d7d7d7;
    border-radius: 24px;
    padding: 22px;
    height: 100%;
}

.shipment-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.shipment-card-header h3 {
    font-size: 18px !important;
    font-weight: 600;
    color: #00264d;
    position: relative;
    display: inline-block;
    margin: 0;
    padding-bottom: 10px;
}

.shipment-card-header h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 150px;
    height: 2px;
    background: #002f6c;
}

.custom-select-box {
    border: none;
    background: #f1f1f1;
    padding: 6px 22px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    outline: none;
}

.chart-area {
    height: 303px;
}

.status-title {
    justify-content: flex-start;
}

.shipment-status-list {
    margin-top: 10px;
}

.status-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #ececec;
}

.status-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.status-left i {
    font-size: 15px;
    color: #002f6c;
    width: 30px;
}

.status-left span {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.status-item h5 {
    margin: 0;
    font-size: 17px !important;
    font-weight: 700;
    color: #000;
}

.border-0 {
    border-bottom: none !important;
}


@media (max-width: 991px) {
    .shipment-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .shipment-card-header h3 {
        font-size: 26px;
    }

    .status-left span {
        font-size: 18px;
    }

    .status-item h5 {
        font-size: 22px;
    }
}
/*-------------------------------------------end------------------------------------------*/


/*--------------------------------------------dashboard card-------------------------------*/

.dashboard-cards-section {
    /*background: #efefef;
    padding: 20px;*/
    position:relative;
}

.dashboard-card {
    background: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 28px;
    padding: 20px;
    height: 100%;
    min-height: 280px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.card-heading {
    font-size: 18px !important;
    font-weight: 600;
    color: #00264d;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    padding-bottom: 8px;
}

.card-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 115px;
    height: 2px;
    background: #032b68;
}

.card-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e5e5e5;
}

.card-list-item span {
    font-size: 16px;
    color: #000;
    font-weight: 500;
}

.card-list-item strong {
    font-size: 17px;
    color: #000;
    font-weight: 700;
}

.card-column {
    display: block;
}

.card-column strong {
    display: block;
    margin-top: 0px;
}

.no-border {
    border-bottom: none;
}

.text-danger-custom {
    color: #ef3340 !important;
}

.text-success-custom {
    color: #28a745 !important;
}

.text-primary-custom {
    color: #032b68 !important;
}

@media (max-width: 991px) {
    .dashboard-card {
        min-height: auto;
    }

    .card-heading {
        font-size: 20px;
    }

    .card-list-item span {
        font-size: 16px;
    }

    .card-list-item strong {
        font-size: 20px;
    }
}

/*---------------------------------------------end----------------------------------------*/

/*-----------------------------------------client risk------------------------------------*/
.dashboard-table-card {
    background: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 28px;
    padding: 30px;
    min-height: 520px;
}

.dashboard-title {
    font-size: 18px !important;
    font-weight: 600;
    color: #00264d;
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
    padding-bottom: 8px;
}

.dashboard-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 118px;
    height: 2px;
    background: #032b68;
}


.client-table {
    width: 100%;
    /* min-width: 850px; */
    /* border-collapse: collapse; */
    border: 1px solid #00264d;
}

.client-table thead th {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    border-bottom: 1px solid #00264d;
    padding: 16px 18px;
    white-space: nowrap;
    background: #ffc107;
}

.client-table tbody td {
    font-size: 15px;
    font-weight: 500;
    color: #000;
    padding: 12px;
    border-bottom: 1px solid #00264d;
    vertical-align: middle;
    white-space: nowrap;
}

.client-table tbody td strong {
    font-weight: 700;
    color: #000;
}

.client-table tbody tr:last-child td {
    border-bottom: none;
}
.custom-dashboard-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 750px;
}

.custom-dashboard-table thead th {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    padding: 14px 18px;
    border-bottom: 1px solid #d9d9d9;
    white-space: nowrap;
}

.custom-dashboard-table tbody td {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    padding: 16px 18px;
    border-bottom: 1px solid #e7e7e7;
    white-space: nowrap;
}

.custom-dashboard-table tbody tr:last-child td {
    border-bottom: none;
}

.danger-text {
    color: #ef3340 !important;
    font-weight: 700;
}

.top-client-table {
    min-width: 850px;
}

@media (max-width: 991px) {
    .dashboard-table-card {
        padding: 20px;
    }

    .dashboard-title {
        font-size: 20px;
    }
}

/*--------------------------------------------end----------------------------------------*/



.order-id {
    color: #2d7fe3;
    font-weight: 600;
    text-decoration: none;
}

.company-name {
    color: #2d7fe3;
    margin: 4px 0 0;
}

.payment-badge {
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.prepaid {
    background: #bfd0df70;
    color: #0a4c8b;
}

.cod {
    background: #bfd0df;
    color: #0a4c8b;
}

.amount-text {
    margin: 0;
    font-size: 16px;
}

.show-details-btn,
.view-address {
    color: #214eff;
    font-weight: 600;
    text-decoration: underline;
}

.address-tooltip-box {
    position: relative;
    display: inline-block;
}

.address-tooltip {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    max-width: 280px;
    width: max-content;
    background: #5a5a5a;
    color: #fff !important;
    padding: 12px 15px;
    border-radius: 10px;
    text-align: center;
    display: none;
    z-index: 9999;
    line-height: 1.6;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.address-tooltip-box:hover .address-tooltip {
    display: block;
}
.custom-table,
.custom-table th,
.custom-table td {
    border: 1px solid #000;
}


/*-------------------------------------------------order page------------------------------*/

.sb-top-actions{
    display:flex;
    justify-content:flex-end;
    gap:16px;
    margin-bottom:28px;
    flex-wrap:wrap;
}

.sb-action-btn{
    height: 44px;
    padding: 0 16px;
    border-radius: 12px;
    border:1.5px solid #002b5c;
    background:#ffffff;
    color:#002b5c;
    font-size: 14px;
    font-weight:600;
    transition:0.3s;
}

.sb-action-btn:hover{
    background:#002b5c;
    color:#ffffff;
}

.sb-filter-active{
    background:#002b5c;
    color:#ffffff;
}

.sb-section-title{
    font-size: 18px;
    font-weight:600;
    color:#6f7d94;
    margin-bottom:14px;
}

.sb-tab-wrapper{
    border:1.5px solid #002b5c;
    border-radius: 12px;
    overflow:hidden;
    background:#ffffff;
    width:fit-content;
}

.sb-custom-nav{
    border:none;
    flex-wrap:nowrap;
}

.sb-custom-nav .nav-item{
    border-right:1px solid #d9dde5;
}

.sb-custom-nav .nav-item:last-child{
    border-right:none;
}

.sb-custom-nav .nav-link{
    border:none !important;
    border-radius:0 !important;
    background:#ffffff;
    color:#333333;
    padding:18px 22px;
    font-size:18px;
    font-weight:500;
    display:flex;
    align-items:center;
    gap:10px;
    white-space:nowrap;
}

.sb-custom-nav .nav-link.active{
    background:#002b5c !important;
    color:#ffffff !important;
}
.sb-count-badge{
    background:#f8d7da;
    color:#002b5c;
    padding:4px 12px;
    border-radius:10px;
    font-size:16px;
    font-weight:700;
}

.sb-more-btn{
    margin-right: 13px;
}

@media(max-width:991px){

    .sb-main-row{
        row-gap:24px;
    }

    .sb-tab-wrapper{
        overflow-x:auto;
        width:100%;
    }

    .sb-custom-nav{
        flex-wrap:nowrap;
    }

}


.shipment-tabs{
    /* border:1px solid #0b376d; */
    border-radius: 12px;
    /* overflow:hidden; */
    display:inline-flex;
    background:#fff;
}

.shipment-tabs .nav-item{
    border-right:1px solid #d9d9d9;
}

.shipment-tabs .nav-item:last-child{
    border-right:none;
}

.shipment-tabs .nav-link{
    border:none !important;
    border-radius:0 !important;
    background:#fff;
    color:#2d2d2d;
    padding: 8px 14px;
    font-size: 15px;
    font-weight:500;
    display:flex;
    align-items:center;
    gap:10px;
    /* border-radius: 0px !important; */
}

.shipment-tabs .nav-link.active{
    background:#002b5c !important;
    color:#fff !important;
}


.shipment-count{
    background:#f7d7dc;
    color:#002b5c;
    /* padding:4px 12px; */
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
}


.tab-pane-custom{
    padding:25px;
    background:#fff;
    border-radius:12px;
    margin-top:20px;
    border:1px solid #e4e4e4;
}

/*------------------------------------------------end--------------------------------------*/


.sb-more-dropdown .sb-action-btn{
    height:56px;
    padding:0 24px;
    border-radius:18px;
    border:1.5px solid #002b5c;
    background:#ffffff;
    color:#002b5c;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.sb-more-dropdown .sb-action-btn:hover{
    background:#002b5c;
    color:#ffffff;
}

.sb-dropdown-menu{
    min-width: 210px;
    border:none;
    border-radius:18px;
    padding:12px 0;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
    overflow:hidden;
}

.sb-dropdown-menu .dropdown-item{
    padding: 8px 18px;
    font-size: 15px;
    font-weight:500;
    color:#2d2d2d;
    display:flex;
    align-items:center;
    justify-content:space-between;
    transition:.3s;
}

.sb-dropdown-menu .dropdown-item:hover{
    background:#f4f7ff;
    color:#002b5c;
}

.order-tab-count{
    background:#f7d7dc;
    color:#002b5c;
    min-width: 33px;
    height: 28px;
    padding:0 10px;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight: 600;
}


.sb-more-dropdown .dropdown-menu{
    right:0 !important;
    left:auto !important;
}


/*----------------------------------------right offcanvas-----------------------------*/
.sb-filter-canvas{
    width: 400px !important;
    border:none;
    background: #ffffff;
}

.sb-canvas-header{
    padding: 18px 20px;
    border-bottom:1px solid #e9edf3;
    background:#ffffff;
}

.sb-canvas-header .offcanvas-title{
    font-size: 20px !important;
    font-weight: 600;
    color:#002b5c;
}

.sb-canvas-body{
    padding: 14px 20px;
}

.sb-filter-group{
    margin-bottom:24px;
}

.sb-filter-label{
    display:block;
    font-size: 14px;
    font-weight: 600;
    color:#1d1d1d;
    margin-bottom:10px;
}

.sb-filter-input{
    height: 44px !important;
    border-radius: 8px;
    border:1px solid #d8dee8;
    padding:12px 18px;
    font-size:15px;
    box-shadow:none !important;
}

.sb-filter-input:focus{
    border-color:#002b5c;
}

.sb-radio-row{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    align-items: center;
}
.sb-radio-row .form-check{
     display:flex;
    align-items: center;
}

.sb-canvas-footer{
    padding:20px 28px;
    border-top:1px solid #e9edf3;
    background:#ffffff;
    display:flex;
    justify-content:end;
    gap:14px;
}

.sb-reset-btn{
    height:52px;
    min-width:120px;
    border-radius:14px;
    background:#edf1f5;
    color:#333;
    font-weight:600;
}

.sb-apply-btn{
    height:52px;
    min-width:140px;
    border-radius:14px;
    background:#002b5c;
    color:#ffffff;
    font-weight:600;
}

.sb-apply-btn:hover{
    background:#001c3d;
    color:#ffffff;
}

@media(max-width:767px){

    .sb-filter-canvas{
        width:100% !important;
    }

}

.sb-top-check{
    display:flex;
    gap:10px;
}



.custom-modal {
  border-radius: 18px;
  padding: 20px;
  border: none;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.modal-title-custom {
  font-weight: 700;
  color: #555;
  margin-bottom: 10px;
}

.modal-subtitle {
  color: #777;
  font-size: 15px;
  margin-bottom: 20px;
}

.custom-check {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
  font-size: 15px;
  color: #444;
}

.custom-check input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.modal-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn-cancel {
  background: #e53935;
  border: none;
  padding: 8px 24px;
  border-radius: 8px;
  font-weight: 600;
}

.btn-no {
  background: #2d7ff9;
  border: none;
  padding: 8px 28px;
  border-radius: 8px;
  font-weight: 600;
}

.btn-cancel:hover {
  background: #d32f2f;
}

.btn-no:hover {
  background: #1e6fe8;
}
/*-----------------------------------------end-----------------------------------------*/


/*-------------------------------------create bulk order-------------------------------*/
  .cbo-wrapper{
      padding:40px 0;
    }

    .cbo-page-title{
      font-size:34px;
      font-weight:700;
      color:#022c5c;
      margin-bottom:30px;
    }

    .cbo-card{
      background:#fff;
      border-radius:18px;
      padding:30px;
      margin-bottom:30px;
      box-shadow:0 2px 8px rgba(0,0,0,0.05);
    }

    .cbo-section-title{
      font-size: 18px !important;
      font-weight:600;
      margin-bottom:20px;
      position:relative;
      display:inline-block;
      color:#111;
    }

    .cbo-section-title::after{
      content:"";
      position:absolute;
      left:0;
      bottom:-8px;
      width:100%;
      height: 2px;
      background:#0d3b66;
      border-radius:10px;
    }

    .cbo-label{
      font-size: 16px;
      font-weight:600;
      margin-bottom:10px;
      color:#111;
    }

    .cbo-select,
    .cbo-input{
      height: 40px;
      border-radius: 12px;
      border:1px solid #dcdcdc;
      /* padding:0 18px; */
      font-size: 15px;
      box-shadow:none !important;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      padding-left: 8px;
      padding-right: 20px;
    }

    .cbo-select:focus,
    .cbo-input:focus{
      border-color:#0d3b66;
    }

    .cbo-pickup-details{
      border-left:1px solid #dcdcdc;
      padding-left:40px;
    }

    .cbo-pickup-title{
      font-size: 16px;
      font-weight:700;
      margin-bottom:18px;
      color:#111;
    }

    .cbo-pickup-text{
      font-size: 15px;
      line-height:1.8;
      color:#333;
    }

    .cbo-sample-btn{
      border:1px solid #0d3b66;
      color:#0d3b66;
      background:#fff;
      border-radius: 12px;
      padding: 10px 18px;
      font-size: 14px;
      font-weight:600;
      transition:0.3s;
    }

    .cbo-sample-btn:hover{
      background:#0d3b66;
      color:#fff;
    }

    .cbo-submit-btn{
      background:#022c5c;
      color:#fff;
      border:none;
      border-radius: 12px;
      padding: 10px 50px;
      font-size: 15px;
      font-weight:600;
      transition:0.3s;
      margin-top: 20px;
    }

    .cbo-submit-btn:hover{
      background:#001f42;
    }

    .cbo-select2{
    width:100% !important;
}

.select2-container{
    width:100% !important;
}

.select2-container .selection{
    width:100% !important;
}

.select2-container--default .select2-selection--single{
    width:100% !important;
    height: 45px !important;
    border-radius:16px !important;
    border:1px solid #dcdcdc !important;
    display:flex !important;
    align-items:center !important;
    line-height: 45px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow{
    height:100% !important;
    position:absolute;
    top:0 !important;
    right:6px !important;
    width:20px !important;
    display:flex;
    align-items:center;
    justify-content:center;
}

.select2-selection__rendered{
    line-height: 45px !important;
}
    @media(max-width:768px){

      .cbo-pickup-details{
        border-left:none;
        padding-left:0;
        margin-top:30px;
      }

      .cbo-sample-btn{
        margin-top:20px;
      }

      .cbo-page-title{
        font-size:28px;
      }
    }

/*-----------------------------------------end------------------------------------------*/


/*---------------------------------------zone setting-----------------------------------*/


        .sc-label{
            font-size: 14px;
            font-weight:600;
            color:#022c5c;
            margin-bottom:12px;
            display:block;
        }

        .sc-select{
            height: 45px;
            border:1px solid #d8d8d8;
            border-radius: 12px;
            padding: 0 18px;
            font-size: 15px;
            font-weight:500;
            color:#111;
            background-color:#fff;
            box-shadow:none !important;
            line-height: 45px;
        }

        .sc-select:focus{
            border-color:#022c5c;
            box-shadow:none;
        }
     
        .sc-zone-btn{
            height: 40px;
            padding: 0 24px;
            border: 1.3px solid #022c5c;
            border-radius: 12px;
            background:#fff;
            color:#022c5c;
            font-size: 14px;
            font-weight:600;
            transition:all 0.3s ease;
            line-height: 40px;
        }

        .sc-zone-btn:hover{
            background:#022c5c;
            color:#fff;
        }

        .sc-divider{
            border-top:1px solid #dddddd;
            margin-top:30px;
        }

        @media(max-width:768px){

            .sc-zone-btn{
                width:100%;
                margin-top:20px;
            }

        }



        table.dataTable>thead>tr>th, table.dataTable>thead>tr>td {
            padding: 16px;
            border-bottom: 1px solid rgb(0 0 0);
        }



.zm-modal-content{
    border-radius:18px;
    border:none;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.zm-header{
    background:#022c5c;
    color:#fff;
    padding: 14px 22px;
}

.zm-title{
    font-size: 20px !important;
    font-weight:600;
    color: #fff;
    margin-bottom: 0px;
}

.zm-close{
    filter:invert(1);
}

.zm-body{
    padding:22px;
}

.zm-field{
    margin-bottom:18px;
}

.zm-label{
    display:block;
    font-weight:600;
    font-size:14px;
    margin-bottom:8px;
    color:#222;
}

.zm-input,
.zm-select{
    width:100%;
    height: 45px;
    border-radius:12px;
    border:1px solid #dcdcdc;
    padding:0 14px;
    font-size:15px;
    outline:none;
}

.zm-input:focus,
.zm-select:focus{
    border-color:#022c5c;
}

.zm-help{
    font-size:12px;
    color:#777;
    margin-top:6px;
    display:block;
}

.zm-footer{
    border-top:1px solid #eee;
    padding:15px 20px;
    display:flex;
    justify-content:flex-end;
    gap:10px;
}

.zm-btn-save{
    background:#022c5c;
    color:#fff;
    border:none;
    padding:10px 22px;
    border-radius:10px;
    font-weight:600;
}

.zm-btn-save:hover{
    background:#011a3a;
}

.zm-btn-cancel{
    background:#f1f1f1;
    color:#333;
    border:none;
    padding:10px 22px;
    border-radius:10px;
}

.select2-container{
    width:100% !important;
}

.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple{
    height: 45px;
    border-radius:12px !important;
    border:1px solid #dcdcdc !important;
    display:flex;
    align-items:center;
}

.select2-selection--multiple{
    min-height: 45px !important;
    padding:5px;
}


.icon-round{
    width: 32px;
    height: 32px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size: 13px;
    text-decoration:none;
    transition:0.2s ease;
}

.icon-edit{
    background: #c3dbff75;
    color: #3170cc;
}

.icon-edit:hover{
    background:#0d6efd;
    color:#fff;
    transform:scale(1.05);
}

.icon-delete{
    background:#ffe7e7;
    color:#dc3545;
}

.icon-delete:hover{
    background:#dc3545;
    color:#fff;
    transform:scale(1.05);
}
/*-----------------------------------------end------------------------------------------*/


/*-----------------------------------------create rate card-----------------------------*/
.rb-header{
    padding:10px 0;
}

.rb-title{
    font-size:22px;
    font-weight:700;
    color:#111;
}

.rb-btn-back{
    background:#f1f1f1;
    color:#333;
    padding:8px 14px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    font-size: 14px;
}

.rb-btn-back:hover{
    background:#e2e2e2;
}

.rb-btn-add{
    background:#022c5c;
    color:#fff;
    border:none;
    padding:8px 16px;
    border-radius:10px;
    font-weight:600;
}

.rb-btn-add:hover{
    background:#011a3a;
}

.rb-label{
    font-weight:600;
    margin-bottom: 12px;
    display:block;
    color:#222;
    font-size: 14px;
}

.rb-input{
    height:50px;
    border-radius:10px;
    border:1px solid #dcdcdc;
}

.rb-input:focus{
    border-color:#022c5c;
    box-shadow:none;
}

.rb-section-title {
    font-weight: 600;
    font-size: 15px !important;
    border-bottom: 1px solid #eee;
    padding: 12px 0px;
}
.rb-shipping-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 0;
    border-bottom:1px solid #eee;
}

.rb-shipping-name{
    font-weight:600;
    color:#222;
    font-size: 15px;
}

.rb-select{
    height: 36px;
    border-radius:8px;
}

.select2-container{
    width:auto !important;
}

.select2-container--default .select2-selection--single{
    height:40px;
    border-radius:8px;
    border:1px solid #dcdcdc;
    display:flex;
    align-items:center;
}

#rate_weight_table thead{
    background:#f8f9fa;
    font-weight:600;
}

#rate_weight_table th{
    font-size:13px;
    white-space:nowrap;
}

#rate_weight_table td{
    vertical-align:middle;
    padding:10px;
}

#rate_weight_table input{
    min-width:70px;
    background-color: #fff;
    border-radius: 12px;
}


  .rc-wrapper{
      position:relative;
      padding:40px 0px;
    }

  .rc-save-btn{
      background:#032b5c;
      color:#fff;
      border:none;
      border-radius:14px;
      padding:12px 28px;
      font-size: 15px;
      font-weight: 500;
    }

    .rc-save-btn:hover{
      background:#021f44;
    }

    .rc-title{
      font-size: 20px !important;
      font-weight: 600;
      color:#000;
      margin-bottom:20px;
    }

    .rc-info-box{
      background:#f3f5f7;
      border:1px solid #d9dee5;
      border-radius:8px;
      padding:18px 20px;
      margin-bottom: 15px;
    }

    .rc-info-content{
      display:flex;
      align-items:center;
      gap:14px;
    }

    .rc-info-icon{
      font-size:18px;
      color:#374151;
    }

    .rc-info-text{
      font-size: 15px;
      color:#374151;
      margin:0;
    }

    .rc-card{
      background:#fff;
      border:1px solid #d9dee5;
      border-radius:20px;
      padding: 16px 16px;
      margin-bottom: 15px;
    }

    .rc-card-title{
      font-size: 16px;
      font-weight:600;
      color: #000000;
      margin-bottom: 6px;
    }

    .rc-card-text{
      font-size: 15px;
      color: #000000;
      margin:0;
    }

    .rc-switch-row{
      display:flex;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
    }

    .rc-switch{
      width:46px;
      height:24px;
      cursor:pointer;
    }

    @media(max-width:768px){

      .rc-title{
        font-size:26px;
      }

      .rc-save-btn{
        width:100%;
      }

      .rc-switch-row{
        align-items:flex-start;
      }

    }
/*-------------------------------------------end---------------------------------------*/

/*---------------------------------------rate card group-------------------------------*/
.sc-filter-bar {
    gap: 10px 0;
}

.sc-form-group label.sc-label {
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 6px;
    color: #333;
}

.sc-select {
    height: 42px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    font-size: 14px;
    box-shadow: none !important;
}

.sc-select:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 0.15rem rgba(79, 70, 229, 0.15);
}



.select2-container {
    width: 100% !important;
}

.select2-container--default .select2-selection--single {
    height: 38px !important;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    padding: 6px 12px;
    font-size: 14px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    right: 10px;
    top: 0;
}

.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #4f46e5;
    box-shadow: 0 0 0 0.15rem rgba(79, 70, 229, 0.15);
}

.select2-container--open {
    z-index: 1 !important;
}
/*-------------------------------------------end----------------------------------------*/


/*-----------------------------------------calculator----------------------------------*/
.rate-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background: #fff;
}

.rate-topbar{
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 15px;
    margin-bottom: 18px;

    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 15px;
    flex-wrap: wrap;
}

.section-box{
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 18px;
}

.form-label{
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.form-control,
.form-select{
    height: 38px !important;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
    transition: 0.2s ease;
}

.form-control:focus,
.form-select:focus{
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74,144,226,0.15);
}

.row.g-3 > div{
    margin-bottom: 5px;
}

.btn-primary{
    background: #2f6fd6;
    border: none;
    border-radius: 10px;
    padding: 10px 18px;
    font-weight: 600;
}

.btn-primary:hover{
    background: #2459b3;
}

.btn-light{
    border-radius: 10px;
    padding: 10px 18px;
}


.d-flex.justify-content-end{
    /* margin-top: 10px; */
}


@media (max-width: 768px){
    .rate-topbar{
        flex-direction: column;
        align-items: stretch;
    }

    .sc-zone-btn{
        width: 100%;
        text-align: center;
    }
}
/*--------------------------------------------end--------------------------------------*/

.payment-badge{
    font-size:11px;
    font-weight:600;
}

.payment-badge.prepaid{
    color:#2f6fd6;
}

.status-badge.undelivered{
    color:#d63031;
    font-weight:600;
}

.status-text{
    font-size:11px;
    color:#666;
}

.main-cont1-2 p{
    margin:0;
    font-size:12px;
    line-height:1.4;
}


/*---------------------------------------------zip code-----------------------------------------*/
.zipcode-modal .zipcode-modal__content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

.zipcode-modal .zipcode-modal__header {
    border-bottom: 1px solid #eee;
    padding: 14px 18px;
    background-color: #022c5c;
    color: #fff;
}

.zipcode-modal .zipcode-modal__title {
    font-size: 17px !important;
    font-weight: 600;
    color: #fff;
}

.zipcode-modal .zipcode-modal__body {
    padding: 18px;
}

.zipcode-modal__group {
    margin-bottom: 14px;
}

.zipcode-modal__group label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    font-weight: 500;
}

.zipcode-modal__group label span {
    color: red;
}

.zipcode-modal__input {
    width: 100%;
    padding: 9px 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    outline: none;
    transition: 0.2s;
}

.zipcode-modal__input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.15rem rgba(13,110,253,0.15);
}

.zipcode-modal .zipcode-modal__footer {
    border-top: 1px solid #eee;
    padding: 12px 18px;
}

.zipcode-modal__btn {
    border-radius: 8px;
    padding: 8px 16px;
    font-weight: 500;
}

.zipcode-modal__btn--primary {
    background: #0d6efd;
    color: #fff;
    border: none;
}

.zipcode-modal__btn--primary:hover {
    background: #0b5ed7;
}

.zipcode-modal__btn--light {
    background: #f5f5f5;
    border: 1px solid #ddd;
}

.rc-search-btn {
    background: #032b5c;
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 8px 24px;
    font-size: 15px;
    font-weight: 500;
}
/*---------------------------------------------end---------------------------------------------*/


/*-------------------------------------------pickup request-------------------------------------*/


.pickup-request-modal-content {
    border-radius: 18px;
    border: none;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.pickup-request-header {
    padding: 14px 22px;
    background: #022c5c;
}

.pickup-request-title {
    font-size: 20px !important;
    font-weight: 700;
    color: #ffffff;
}

.pickup-request-close {
    font-size: 28px;
    color: #888;
    opacity: 1;
    border: none;
    background: transparent;
}

.pickup-request-close:hover {
    color: #000;
}

.pickup-request-body {
    padding: 10px 25px 20px;
}

.pickup-request-group {
    margin-bottom: 18px;
}

.pickup-request-label {
    font-size: 14px;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
    display: block;
}

.pickup-request-input {
    height: 48px;
    border-radius: 12px;
    border: 1px solid #dcdcdc;
    padding: 10px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: none;
}

.pickup-request-input:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

.pickup-request-footer {
    padding: 15px 25px 25px;
}

.pickup-request-btn-close {
    background: #f1f1f1;
    color: #333;
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: 600;
}

.pickup-request-btn-close:hover {
    background: #ddd;
}

.pickup-request-btn-save {
    background: #022c5c;
    color: #fff;
    border-radius: 10px;
    padding: 10px 22px;
    font-weight: 600;
    border: none;
}

.pickup-request-btn-save:hover {
    background: #4338ca;
}
/*-----------------------------------------------end--------------------------------------------*/

.pickup-request-heading {
    font-size: 20px;
    color: #222;
    padding: 0px 2px;
}


.bulkImportContent {
  border-radius: 10px;
  border: none;
  overflow: hidden;
}

.bulkImportHeader {
  border-bottom: 1px solid #e5e5e5;
}

.bulkImportClose {
  background: transparent;
  border: none;
  font-size: 22px;
}

.bulkImportBody {
  padding-top: 20px;
}

.bulkImportInput {
  border-radius: 6px;
  border: 1px solid #dcdcdc;
}

.bulkImportDownload {
  background: #fa5c18;
  color: #fff;
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 4px;
  text-decoration: none;
}

.bulkImportDownload:hover {
  background: #e14f14;
  color: #fff;
}

.bulkImportNote {
  font-size: 12px;
  margin-top: 6px;
  display: block;
}

.bulkImportFooter {
  justify-content: center;
  border-top: none;
}

.bulkImportBtn {
  background: #28a745;
  color: #fff;
  border: none;
  padding: 8px 25px;
  border-radius: 6px;
}

.bulkImportBtn:hover {
  background: #218838;
}





.add-new-role-modal__content {
  border-radius: 12px;
  overflow: hidden;
  border: none;
}

.add-new-role-modal__header {
  background: #022c5c;
  /* border-bottom: 1px solid #e5e5e5; */
  color: #fff;
  padding: 14px 22px;
}

.add-new-role-modal__title {
  font-weight: 600;
  font-size: 20px !important;
  font-weight: 600;
  color: #fff;
}

.add-new-role-modal__body {
  background: #fff;
  padding: 20px;
}

.add-new-role-modal__input,
.add-new-role-modal__select {
  border-radius: 8px;
  box-shadow: none;
}

.add-new-role-modal__table-wrap {
  margin-top: 10px;
}

.add-new-role-modal__table {
  font-size: 14px;
}

.add-new-role-modal__thead {
  background: #f1f3f5;
}

.add-new-role-modal__row td {
  vertical-align: middle;
}

.add-new-role-modal__footer {
  border-top: none;
  padding: 15px 20px;
}

.add-new-role-modal__btn {
  background: #022c5c;
  color: #fff;
  border-radius: 8px;
  padding: 8px 20px;
}

.add-new-role-modal__btn:hover {
  background: #0b5ed7;
}


.style-check .form-check-input.row-check {
    width: 14px;
    height: 14px;
    cursor: pointer;
    border: 1.5px solid #cccccc;
}

.style-check {
  gap: 6px;
}




.create-new-staff-modal .modal-content {
  border-radius: 14px;
  border: none;
  overflow: hidden;
}

.create-new-staff-header {
  background: #022c5c;
  color: #fff;
  padding: 14px 18px;
}

.create-new-staff-header .btn-close {
  filter: invert(1);
}

.create-new-staff-body {
  padding: 20px;
  background: #f9fafb;
}

.custom-input {
  border-radius: 8px;
  border: 1px solid #d0d7de;
  padding: 10px 12px;
  transition: 0.2s;
}

.custom-input:focus {
  border-color: #2f3e46;
  box-shadow: 0 0 0 0.15rem rgba(47, 62, 70, 0.2);
}

.create-new-staff-footer {
  border-top: none;
  background: #f9fafb;
  padding: 15px 20px;
}

.custom-submit-btn {
  background: #022c5c;
  color: #fff;
  padding: 8px 18px;
  border-radius: 8px;
  border: none;
}

.custom-submit-btn:hover {
  background: #1f2a30;
}

.btn-blues {
    border-color: #15A7DD;
    color: #15A7DD;   
}

/*------------------------------------------------general setting----------------------------------*/
.general-heading {
   position:relative;
}

.general-heading .wrapper {
    max-width: 1200px;
    margin: auto;
}

.general-heading .heading-title {
    font-size: 22px !important;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #000000;
    display: inline-block;
}

.general-heading .custom-tabs {
    border: none;
    margin-bottom: 30px;
}

.general-heading .custom-tabs .nav-link {
    border: none;
    color: #555;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 8px 8px 0px 0px;
    font-size: 15px;
}

.general-heading .custom-tabs .nav-link.active {
    background: #f8d7da;
    color: #012a5c;
    border-bottom: 3px solid #012a5c;
}

.general-heading .card-box {
    margin-bottom: 20px;
}

.general-heading .card-box h5 {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 18px !important;
}

.general-heading .form-control,
.general-heading .form-select {
    border-radius: 10px;
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
}

.general-heading .form-control:focus,
.general-heading .form-select:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 0.15rem rgba(79,70,229,0.15);
}

.general-heading label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.general-heading .preview-img {
    width: 70px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 10px;
    border: 1px solid #ddd;
}

.general-heading .btn-save {
    background: #00264d;
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
}

.general-heading .btn-save:hover {
    background: #3730a3;
}


/*------------------------------------------end----------------------------------------------------*/

/*----------------------------------------------label setting--------------------------------------*/
.label-settings {
    position:relative;
}

.label-settings .wrapper {
    max-width: 1400px;
    margin: auto;
}
.label-settings .page-title {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #4f46e5;
    display: inline-block;
}

.label-settings .section-box {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
    margin-bottom: 20px;
}

.label-settings .section-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.label-settings .radio-card {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 35px 30px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    min-width: 230px;
}

.label-settings .radio-card:hover {
    border-color: #4f46e5;
    box-shadow: 0 0 10px rgba(79,70,229,0.15);
}

.label-settings .radio-card i {
    font-size: 24px;
    margin-bottom: 8px;
}

.label-settings .upload-box {
    background: #f2f6fa;
    border: 1px dashed #ccc;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.label-settings .form-control {
    border-radius: 10px;
}

.label-settings .form-control:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 0.15rem rgba(79,70,229,0.15);
}

.label-settings .form-check {
    margin-bottom: 10px;
}

.label-settings .btn-save {
    background: #032b5c;
    color: #fff;
    border: none;
    padding: 8px 25px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
}

.label-settings .btn-save:hover {
    background: #3730a3;
}

.label-settings .preview-box {
    background: #f2f6fa;
    padding: 20px;
    border-radius: 14px;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: auto;
}


/*----------------------------------------------end-----------------------------------------------*/


.shipping-modal-content {
  border-radius: 14px;
  border: none;
  overflow: hidden;
}

.shipping-modal-header {
  background: #022c5c;
  color: #fff;
  padding: 14px 18px;
  border-bottom: none;
}

.shipping-modal-title {
  font-weight: 600;
  font-size: 20px !important;
  color: #fff;
}

.shipping-close {
  color: #fff;
  opacity: 1;
  font-size: 20px;
}

.shipping-modal-body {
  padding: 20px;
  background: #f9fafc;
}

.shipping-modal-body label {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 5px;
}

.shipping-modal-footer {
  background: #fff;
  border-top: 1px solid #eee;
  padding: 12px 20px;
}

.shipping-submit-btn {
  background: #022c5c;
  color: #fff;
  padding: 8px 20px;
  border-radius: 8px;
  border: none;
  transition: 0.2s;
}

.shipping-submit-btn:hover {
  background: #1f6fe0;
}

.shipping-modal-header .btn-close {
    filter: brightness(0) invert(1);
}






.panel-box{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:10px;
    padding:18px;
}

.cm-input{
    height:43px;
    border-radius:8px;
    border:1px solid #d1d5db;
    font-size:14px;
}

.cm-input:focus{
    border-color:#6366f1;
    box-shadow:0 0 0 0.15rem rgba(99,102,241,.15);
}

.cm-btn{
    height: 38px;
    min-width:43px;
    border-radius:8px;
    border:none;
    font-size:18px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}

.cm-btn-danger{
    background:#ffe4e6;
    color:#dc2626;
}

.cm-btn-primary{
    background:#dcfce7;
    color:#16a34a;
}

.cm-btn-submit{
    background: #00264d;
    color:#fff;
    padding:0 22px;
    font-size:15px;
}





.cod-header {
  padding: 15px 10px;
  background: #fff;
}

.new-CSM-title {
  font-weight: 600;
  font-size: 18px !important;
  color: #2c3e50;
}

.cod-subtitle {
  font-size: 14px;
  color: #6c757d;
}

.btn-main {
  background: #6c757d;
  color: #fff;
  border: none;
  padding: 8px 14px;
  font-size: 14px;
  border-radius: 6px;
  transition: 0.3s ease;
  margin-left: 8px;
}

.btn-main:hover {
  background: #5a6268;
  color: #fff;
}


.btn-group-custom {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 991px) {
  .btn-group-custom {
    justify-content: flex-start;
  }
}



.cod-remittance-holidays .modal-content {
    border-radius: 10px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}



.cod-remittance-holidays .close {
    outline: none;
    opacity: 0.7;
}

.cod-remittance-holidays .close:hover {
    opacity: 1;
}

.cod-remittance-holidays .btn-primary {
    background-color: #4a69bd;
    border-color: #4a69bd;
}

.cod-remittance-holidays .btn-primary:hover {
    background-color: #3b5aa0;
    border-color: #3b5aa0;
}

.cod-remittance-holidays table {
    background: #fff;
}





.term-modal .term-modal-content {
    border-radius: 12px;
    overflow: hidden;
    border: none;
}

.term-modal .term-modal-close {
    outline: none;
    border: none;
    background: transparent;
    font-size: 22px;
}

.term-modal .term-modal-body {
    padding: 20px;
}

.term-modal .term-modal-footer {
    padding: 15px 20px;
    background: #fafafa;
}

.btn-apply {
    background: #022c5c;
    color: #fff;
    border-radius: 6px;
    padding: 6px 14px;
}

.btn-apply:hover {
    background: #0b5ed7;
}

.btn-reset {
    border-radius: 6px;
}


/*----------------------------------------------whatapps setting---------------------------------------*/
.wx-shell{
  position:relative;
}


.wx-title{
    margin:0;
    font-size: 18px !important;
    font-weight: 600;
}

.wx-subtitle{
    margin:5px 0 0;
    font-size:13px;
    opacity:0.85;
}

.wx-label{
    font-size:13px;
    font-weight:600;
    color:#374151;
    margin-bottom:6px;
}

.wx-label span{
    color:#ef4444;
}

.wx-input{
    border-radius:10px;
    border:1px solid #d6d9e6;
    padding:10px 12px;
    background:#fafbff;
    transition:0.2s;
}

.wx-input:focus{
    border-color:#4f46e5;
    box-shadow:0 0 0 0.2rem rgba(79,70,229,0.15);
    background:#fff;
}

.wx-switch-box{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 14px;
    background:#f9fafb;
    border:1px solid #eceef5;
    border-radius:12px;
}

.wx-switch-title{
    font-weight:600;
    font-size:14px;
}

.wx-switch-sub{
    font-size:12px;
    color:#6b7280;
}

.wx-switch{
    position:relative;
    width:46px;
    height: 22px;
}

.wx-switch input{
    display:none;
}

.wx-slider{
    position:absolute;
    inset:0;
    background:#cbd5e1;
    border-radius:50px;
    cursor:pointer;
    transition:0.3s;
}

.wx-slider:before{
    content:"";
    position:absolute;
    height: 16px;
    width: 16px;
    left:3px;
    top:3px;
    background:#fff;
    border-radius:50%;
    transition:0.3s;
}

.wx-switch input:checked + .wx-slider{
    background:#4f46e5;
}

.wx-switch input:checked + .wx-slider:before{
    transform:translateX(22px);
}

.wx-btn{
    background: #00264d;
    color:#fff;
    border-radius:10px;
    font-weight:600;
    transition:0.2s;
    padding: 8px 22px;
}

.wx-btn:hover{
    background:#4338ca;
    transform:translateY(-1px);

}



.fs-wrapper{
    /* background:#f6f8fb; */
    /* padding:20px; */
    border-radius:12px;
}

.fs-title{
    font-size: 18px !important;
    font-weight: 600;
    color:#1e293b;
}

.fs-card{
    background:#fff;
    border:1px solid #e6e8ef;
    border-radius:12px;
    padding:16px;
    margin-bottom:12px;
    transition:0.2s;
}

.fs-card:hover{
    transform:translateY(-2px);
    box-shadow:0 6px 18px rgba(0,0,0,0.06);
}

.fs-info{ cursor:pointer; }

.fs-name{
    font-size: 15px !important;
    font-weight:600;
    margin-bottom:4px;
    color:#111827;
}

.fs-desc{
    font-size:13px;
    color:#6b7280;
    margin:0;
}

.fs-badge{
    font-size:11px;
    background:#e0f2fe;
    color:#0284c7;
    padding:3px 8px;
    border-radius:20px;
    margin-left:8px;
}

.fs-price{
    font-weight: 500;
    color:#16a34a;
    font-size: 14px;
}

.fs-btn-edit{
    background:#f1f5f9;
    border:1px solid #e2e8f0;
    padding: 3px 16px;
    border-radius: 30px;
    cursor:pointer;
    font-size: 14px;
}

.fs-btn-edit:hover{
    background:#e2e8f0;
}

.fs-switch{
    position:relative;
    width: 44px;
    height: 22px;
    display:inline-block;
}

.fs-switch input{ display:none; }

.fs-slider{
    position:absolute;
    inset:0;
    background:#cbd5e1;
    border-radius:20px;
    transition:0.3s;
}

.fs-slider:before{
    content:"";
    position:absolute;
    height: 16px;
    width: 16px;
    left:3px;
    top:3px;
    background:#fff;
    border-radius:50%;
    transition:0.3s;
}

.fs-switch input:checked + .fs-slider{
    background:#22c55e;
}

.fs-switch input:checked + .fs-slider:before{
    transform:translateX(20px);

}
/*------------------------------------------------end---------------------------------------------------*/


/*----------------------------------------------status mapping------------------------------------------*/
.tskr-wrapper-001{
        padding:50px 0;
    }

    .tskr-card-001{
        /* background:#ffffff; */
        /* border-radius:28px; */
        /* padding:35px; */
        /* border:1px solid #e6ebf3; */
        /* box-shadow:0 15px 50px rgba(0,0,0,0.06); */
    }

    .tskr-top-flex{
        display:flex;
        justify-content:space-between;
        align-items:flex-start;
        gap:20px;
        margin-bottom:30px;
        flex-wrap:wrap;
    }

    .tskr-main-title{
        font-size: 20px !important;
        font-weight: 600;
        color:#0f172a;
        margin-bottom:10px;
    }

    .tskr-sub-text{
        font-size:14px;
        color:#64748b;
        line-height:1.7;
        margin-bottom:18px;
    }

    .tskr-badge-wrap{
        display:flex;
        flex-wrap:wrap;
        gap:10px;
    }

    .tskr-badge-item{
        padding: 7px 19px;
        border-radius:100px;
        background: #e6f6ff;
        color: #0284c7;
        font-size:13px;
        font-weight: 500;
        /* border:1px solid #c7d2fe; */
    }

    .tskr-save-btn{
        border:none;
        background: #fff;
        color: #032b5c;
        border-radius:16px;
        padding: 8px 26px;
        font-size: 14px;
        font-weight:600;
        transition:0.3s ease;
        /* box-shadow:0 12px 25px rgba(37,99,235,0.25); */
        border: 1.5px solid #032b5c;
    }

    .tskr-save-btn:hover{
        transform:translateY(-3px);
        background:linear-gradient(135deg,#1d4ed8,#4338ca);
    }

  
    .tskr-head-row{
        /* background:#f8fafc; */
        /* border:1px solid #e2e8f0; */
        border-radius:18px;
        /* padding:18px 20px; */
        margin-bottom:22px;
    }

    .tskr-head-title{
        font-size: 14px;
        text-transform:uppercase;
        letter-spacing:0.8px;
        color:#475569;
        font-weight:700;
    }

    .tskr-status-row{
        /* background:#ffffff; */
        /* border:1px solid #edf2f7; */
        /* border-radius:22px; */
        /* padding:20px; */
        margin-bottom: 25px;
        /* transition:0.3s ease; */
    }

    .tskr-status-row:hover{
        border-color:#c7d2fe;
        box-shadow:0 10px 30px rgba(79,70,229,0.08);
    }

    .tskr-input{
        height:56px;
        border-radius: 10px;
        border:1px solid #dbe3ee;
        padding:14px 18px;
        font-size:15px;
        transition:0.3s;
        box-shadow:none !important;
    }

    .tskr-input:focus{
        border-color:#4f46e5;
        box-shadow:0 0 0 5px rgba(79,70,229,0.10) !important;
    }

    .tskr-readonly{
        background-co+: #ffffff;
        color:#0f172a;
        font-weight:600;
        background-color: #fff !important;
    }

   
    @media(max-width:768px){

        .tskr-card-001{
            /* padding: 0px; */
        }

        .tskr-main-title{
            font-size:24px;
        }

        .tskr-save-btn{
            width:100%;
        }

        .tskr-status-row{
            /* padding: 0px; */
        }

    }


/*-------------------------------------------------end--------------------------------------------------*/

/*---------------------------------------------------weight dimension-----------------------------------*/
.weight-dimension-modal .modal-content {
    border-radius: 16px;
    border: none;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.weight-dimension-modal .modal-header {
    background: #022c5c;
    color: #fff;
    padding: 14px 18px;
    border-bottom: none;
}

.weight-dimension-modal .modal-title {
    font-size: 20px !important;
    font-weight: 600;
    color: #fff;
}

.weight-dimension-modal .btn-close {
    filter: brightness(0) invert(1);
    opacity: 1;
}

.weight-dimension-modal .modal-body {
    padding: 25px;
    background: #f8f9fa;
}

.weight-dimension-modal .form-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.weight-dimension-modal .save-btn {
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s ease;
}

.weight-dimension-modal .save-btn:hover {
    background: #0b5ed7;
    transform: translateY(-1px);
}

/*-------------------------------------------------end--------------------------------------------------*/


/*------------------------------------------------responsive---------------------------------------------*/
@media (max-width: 767px){
    .sb-top-check {
    flex-wrap: wrap;
    justify-content: center;
}
    .sb-top-actions {
    justify-content: center;
    flex-wrap: wrap;
}
    .basic-data-table .dt-layout-row .dt-search {
    justify-content: flex-start;
}
    .sc-label {
    margin-top: 12px;
}
    .rb-label {
    margin-top: 12px;
}
    .rc-search-btn {
    margin-top: 16px;
}
    div.dt-container .dt-paging {
    justify-content: center;
    margin-top: 15px;

}
    .label-settings .btn-save {
    margin-bottom: 16px;
}
    .fs-btn-edit {
    margin: 15px 0px;
}
}


/*-------------------------------------------------end---------------------------------------------------*/






/*-------------------------------------------------order create------------------------------------------*/
.pickup-box__input {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.pickup-box__select {
    flex: 1;
    border: 1px solid #ced4da;
    border-radius: 6px;
    padding: 0px 12px;
    font-size: 14px;
    outline: none;
    height: 40px;
    line-height: 40px;
}

.pickup-box__btn {
    width: 45px;
    height: 42px;
    border: none;
    border-radius: 6px;
    background: #0a3c87;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

    .pickup-box__btn:hover {
        background: #0b5ed7;
    }


.erp-label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    color: #333;
}

.erp-group {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.erp-select {
    height: 44px;
    border-radius: 10px !important;
    font-size: 14px;
    flex: 1;
}

.erp-btn {
    width: 44px;
    height: 40px;
    border-radius: 8px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
}

    .erp-btn.primary {
        background: #0a3c87;
        color: #fff;
    }

        .erp-btn.primary:hover {
            background: #081f44;
        }

    .erp-btn.outline {
        background: #fff;
        border: 1px solid #0b2a5b;
        color: #0b2a5b;
    }

        .erp-btn.outline:hover {
            background: #0b2a5b;
            color: #fff;
        }

@media (max-width:768px) {
    .erp-group {
        flex-direction: row;
    }
}



.erp-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-top: 15px;
}


.erp-header {
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

    .erp-header h5 {
        margin: 0;
        font-weight: 700;
        font-size: 18px !important;
        padding-bottom: 10px;
    }

.erp-label {
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 6px;
    display: block;
    color: #333;
}

.erp-input {
    height: 42px;
    border-radius: 10px;
    font-size: 13px;
}

.erp-btn {
    height: 42px;
    border-radius: 10px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
}

    .erp-btn.primary {
        background: #0b2b5a;
        color: #fff;
    }

        .erp-btn.primary:hover {
            background: #081f44;
        }

.product-row {
    padding-bottom: 10px;
    border-bottom: 1px dashed #ddd;
    margin-bottom: 15px;
}

.number-only::-webkit-outer-spin-button,
.number-only::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

@media (max-width:768px) {
    .erp-btn {
        width: 100%;
    }
}
/*-------------------------------------------------end---------------------------------------------------*/

.log-heading {
    font-size: 22px !important;
    font-weight: 600;
    color: #012a5c;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e9ecef;
    letter-spacing: 0.3px;
}

.signin-btn {
    background: #022c5c;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 10px 50px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
    margin-top: 20px;
}
