html {
    font-size: 14px;
}

@font-face {
    font-family: Poppins;
    src: url(../font/Poppins/Poppins-Regular.ttf);
    font-weight: 400;
}

@font-face {
    font-family: Poppins;
    src: url(../font/Poppins/Poppins-Bold.ttf);
    font-weight: 800;
}

body {
    font-weight: 400;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

html, body {
    height: 100%;
    overflow: hidden;
    /*    overflow-y: auto;*/
}


.container-right {
    width: 100%;
    max-width: calc(100% - 200px);
    /*    height: 100%;*/
    float: right;
    background-color: #fafafa;
    padding: 0 24px 24px;
    /*    overflow: auto;*/
    font-family: "Poppins";
    padding-right: 0;
    padding-left: 0;
    height: calc(100% - 65px);
}

header {
    position: sticky;
    top: 0;
    z-index: 90;
}

.header {
    width: 100%;
    height: 64px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgb(228, 228, 228);
    font-family: "Poppins";
}

.logo {
    margin-left: 26px;
}

    .logo img.header-logo {
        width: 145px;
        height: 44px;
    }

.profile {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-right: 26px;
}

    .profile .bell-icon {
        width: 20px;
        height: 20px;
    }

    .profile .avatar {
        width: 24px;
        height: 24px;
    }



.sidebar {
    width: 200px;
    height: 100%;
    position: fixed;
    left: 0;
    background: #fff;
    padding: 20px 13px;
    border-right: 1px solid rgb(228, 228, 228);
    font-family: "Poppins";
}

    .sidebar h2 {
        text-align: center;
        margin-bottom: 20px;
    }

    .sidebar .tab-btn {
        display: flex;
        gap: 8px;
        align-items: center;
        padding: 4px 12px;
        text-align: left;
        border: none;
        background: none;
        width: 100%;
        cursor: pointer;
        font-size: 13px;
        font-weight: 400;
        color: #333;
        line-height: 28px;
    }

        .sidebar .tab-btn.active {
            background-color: #ffecec;
            color: #ff0000;
            font-weight: 400;
            border-radius: 35px;
        }

        .sidebar .tab-btn img {
            width: 16px;
            height: 16px;
        }

        .sidebar .tab-btn p {
            margin-bottom: 0;
        }

.newFulfilmemt-heading {
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 26px;
    font-family: "Poppins";
}

.fulfilmentWrapper {
    width: 100%;
    height: 100%;
    padding: 25px;
    background-color: #FFFFFF;
    border: 1px solid #EDEDED;
    border-radius: 8px;
    /*    overflow-y: auto;*/
    /*    max-height: calc(100vh - 150px);*/
}

.row {
    width: 100%;
    max-width: 760px;
}

.textbox {
    margin-bottom: 12px;
}

    .textbox input {
        border: 1px solid #ced4da;
        border-radius: 16px;
        padding-block: 11.2px;
        width: 100%;
        padding-inline: 10px;
    }

    .textbox select {
        border: 1px solid #ced4da;
        border-radius: 16px;
        padding-block: 11.2px;
        width: 100%;
        padding-inline: 10px;
    }

.text-area textarea {
    width: 365px;
    height: 108px;
    border-radius: 16px;
    resize: none;
}

.rowWrapper {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 0;
}

    .rowWrapper .row label {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
    }

.action-checkBtn {
    width: 365px;
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.form-switch {
    padding: 0;
}

.actionBtn {
    display: flex;
    gap: 12px;
    margin-left: 0;
}

.action-checkBtn div {
    width: fit-content;
}

.action p {
    font-size: 14px;
}

.actionBtn .add-btn {
    border-radius: 16px;
    padding: 11.2px 48px;
    border: 1px solid #ED1C24;
    font-size: 16px;
    background: #ED1C24;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
}

.actionBtn .cancel-btn {
    border-radius: 16px;
    padding: 11.5px 35.5px;
    border: 1px solid #ED1C24;
    font-size: 16px;
    background: transparent;
    color: #ED1C24;
    display: flex;
    justify-content: center;
    width: auto;
    align-items: center;
}

.file-box {
    position: relative;
    border: 1px solid #ccc;
    border-radius: 16px;
    padding: 16px;
    background-color: #fff;
    cursor: pointer;
    margin-top: 5px;
    min-height: 50px;
}

    .file-box .fileName {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        white-space: normal;
    }

    .file-box input[type="file"] {
        opacity: 0;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        cursor: pointer;
        border-radius: 16px;
    }

.upload-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.form-check-input {
    border: none;
}

    .form-check-input:focus {
        box-shadow: none;
    }

.form-control:focus {
    border-color: #ced4da;
    box-shadow: none;
}


.cl-toggle-switch {
    position: relative;
    padding-right: 0;
}

.cl-switch {
    position: relative;
    display: inline-block;
}

    .cl-switch > input {
        appearance: none;
        -moz-appearance: none;
        -webkit-appearance: none;
        z-index: -1;
        position: absolute;
        right: 6px;
        top: -8px;
        display: block;
        margin: 0;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        background-color: rgb(0, 0, 0, 0.38);
        outline: none;
        opacity: 0;
        transform: scale(1);
        pointer-events: none;
        transition: opacity 0.3s 0.1s, transform 0.2s 0.1s;
    }

    .cl-switch > span::before {
        content: "";
        float: right;
        display: inline-block;
        margin: 5px 0 5px 10px;
        border-radius: 7px;
        width: 36px;
        height: 14px;
        background-color: rgb(0, 0, 0, 0.38);
        vertical-align: top;
        transition: background-color 0.2s, opacity 0.2s;
    }

    .cl-switch > span::after {
        content: "";
        position: absolute;
        top: 2px;
        right: 16px;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        background-color: #fff;
        box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
        transition: background-color 0.2s, transform 0.2s;
    }

    .cl-switch > input:checked {
        right: -10px;
        background-color: #85b8b7;
    }

        .cl-switch > input:checked + span::before {
            background-color: #ffecec;
        }

        .cl-switch > input:checked + span::after {
            background-color: #ed1c24;
            transform: translateX(16px);
        }

    .cl-switch:hover > input {
        opacity: 0.04;
    }

    .cl-switch > input:focus {
        opacity: 0.12;
    }

    .cl-switch:hover > input:focus {
        opacity: 0.16;
    }

    .cl-switch > input:active {
        opacity: 1;
        transform: scale(0);
        transition: transform 0s, opacity 0s;
    }

        .cl-switch > input:active + span::before {
            background-color: #8f8f8f;
        }

    .cl-switch > input:checked:active + span::before {
        background-color: #85b8b7;
    }

    .cl-switch > input:disabled {
        opacity: 0;
    }

        .cl-switch > input:disabled + span::before {
            background-color: #ddd;
        }

    .cl-switch > input:checked:disabled + span::before {
        background-color: #bfdbda;
    }

    .cl-switch > input:checked:disabled + span::after {
        background-color: #61b5b4;
    }


.container {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    overflow: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.form-container {
    width: 100%;
    height: 100vh;
    /*    background-image: url(../images/background-image.png);
    background-size: cover;
    background-position: center;*/
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1100;
    position: relative;
}

.form {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #EDEDED;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    padding-bottom: 30px;
    padding-top: 47px;
    box-sizing: border-box;
    margin-inline: 20px;
}

    .form .form-field {
        width: 100%;
        padding-left: 40px;
        padding-right: 40px;
    }

.form-logo {
    padding-bottom: 28px;
}

    .form-logo img {
        width: 227px;
        height: 69px;
    }

.form-field .user-box {
    display: flex;
    flex-direction: column;
    position: relative;
}

.user-box label {
    font-size: 14px;
    padding-bottom: 8px;
    font-weight: 400;
}

.password-toggle-icon {
    position: absolute;
    top: 70%;
    right: 14px;
    transform: translateY(-50%);
    cursor: pointer;
}

    .password-toggle-icon .bi-eye {
        display: none;
    }

.form-field a {
    font-size: 14px;
    color: black;
    text-decoration: none;
    display: block;
    text-align: right;
}

.form-field form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.login .login-btn {
    padding: 12px;
    border: none;
    border-radius: 16px;
    color: white;
    background-color: #ED1C24;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}

.user-box input {
    border: 1px solid #D2D2D2;
    border-radius: 16px;
    height: 48px;
    padding: 16px;
}

    .user-box input:focus {
        border: 1px solid black;
        box-shadow: none;
    }

    .user-box input:focus-visible {
        border-color: none;
        box-shadow: none;
    }


.table-container {
    overflow-x: auto;
    margin-top: 10px;
    border: 1px solid #EDEDED;
    border-radius: 8px;
    background-color: white;
    /*    overflow-y: auto;*/
    /*    max-height: 500px;*/
}

    .table-container .dt-search {
        display: none;
    }

table {
    font-size: 13px;
    width: 100%;
    white-space: nowrap;
    margin-bottom: 0;
}

thead th span img {
    width: 16px;
    height: 16px;
}

thead th {
    font-weight: 600;
    padding: 13px;
}

tbody tr td button {
    background: transparent;
    border: 1px solid #ED1C24;
    border-radius: 7px;
    padding: 4px 8px;
}

    tbody tr td button img {
        width: 16px;
        height: 16px;
    }


table td a {
    font-weight: 500;
    font-size: 13px;
    text-decoration: none;
}

.#ED1C24-txt {
    font-weight: 400;
    font-size: 13px;
    color: #ED1C24;
}

.yellow-status {
    font-weight: 500;
    font-size: 12px;
    color: #F5984C;
}

.green-status {
    font-weight: 500;
    font-size: 12px;
    color: #47D15E;
}

.blue-status {
    font-weight: 500;
    font-size: 12px;
    color: #52ABFF;
}

.table-dropdown {
    position: static;
}

    .table-dropdown .dropdown-menu {
        z-index: 100;
        border: none;
        border-radius: 6px;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
        margin-top: 5px;
    }

    .table-dropdown .dropdown-toggle::after {
        display: none;
    }

    .table-dropdown .dropdown-menu li .dropdown-item:hover {
        color: #ED1C24;
        background-color: #ffecec;
    }

    .table-dropdown .dropdown-menu li a {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        padding: 8px 16px;
    }

table tr td {
    padding: 13px;
}

td.pad-bottom-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.table-dropdown button {
    background: transparent;
    border: 1px solid #ED1C24;
    border-radius: 7px;
    padding: 4px 8px;
    box-shadow: none;
}

    .table-dropdown button:hover {
        background: transparent;
        border: 1px solid #ED1C24;
        border-radius: 7px;
        padding: 4px 8px;
        box-shadow: none;
    }

    .table-dropdown button:focus {
        background: transparent;
        border: 1px solid #ED1C24;
        box-shadow: none;
    }

    .table-dropdown button:active:focus {
        background: transparent;
        border: 1px solid #ED1C24;
        box-shadow: none;
    }

.status-dropdown {
    position: static;
}

    .status-dropdown button {
        border: none;
        padding: unset;
        background: transparent;
    }

    .status-dropdown .dropdown-menu {
        z-index: 100;
        border: none;
        border-radius: 6px;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    }

        .status-dropdown .dropdown-menu li a {
            font-size: 14px;
            font-weight: 400;
            line-height: 20px;
            padding: 8px 16px;
        }

        .status-dropdown .dropdown-menu li .dropdown-item:hover {
            color: #ED1C24;
            background-color: #ffecec;
        }

    .status-dropdown button p {
        margin-bottom: 4px;
    }

    .status-dropdown button:hover {
        background: transparent;
        box-shadow: none;
    }

    .status-dropdown button:focus {
        background: transparent;
        box-shadow: none;
    }

    .status-dropdown button:active:focus {
        background: transparent;
        box-shadow: none;
    }

    .status-dropdown button:after {
        display: none;
    }

    .status-dropdown .dropdown-item:hover {
        color: unset;
        background-color: #e9e9e9;
    }


.tab-header {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    align-items: center;
}

.search-section {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 12px;
    width: 100%;
}

.form-floating {
    width: 100%;
    max-width: 328px;
}

    .form-floating input {
        border-radius: 16px;
        border: 1px solid #d2d2d2;
        padding: 0 .75rem;
        height: 100%;
        min-height: 48px;
    }

        .form-floating input:focus {
            border-color: unset;
            box-shadow: none;
        }

    .form-floating label {
        padding: 1.2rem .75rem;
        font-size: 14px;
        font-weight: 400;
        color: #878787;
    }

.tab-heading {
    width: 100%;
    display: flex;
    align-items: end;
    padding-bottom: 27px;
}

    .tab-heading h2 {
        /*        margin: 0;*/
        font-weight: 400;
        font-size: 20px;
        line-height: 30px;
    }

.newOrder button img {
    width: 14px;
    height: 14px;
}

.newOrder button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #ED1C24;
    color: white;
    border: none;
    padding: 12px 22.5px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
}

.newOrder .addNew-btn {
    width: 118px;
    height: 40px;
}


.dt-layout-row .dt-start {
    display: none;
}

.dt-layout-row:last-child {
    display: none;
}

.table > :not(:last-child) > :last-child > * {
    border-bottom-color: #ededed;
}

.row {
    width: 100%;
    max-width: 100%;
}

form .form-group select,
form .form-group input {
    border: 1px solid #ced4da;
    border-radius: 16px;
    padding-block: 11.2px;
    width: 100%;
    padding-inline: 10px;
}

.actionBtn {
    margin-top: 14px;
}

.modal-dialog {
    max-width: 388px;
    margin: 5rem auto;
    filter: drop-shadow(0px 15px 40px rgba(0, 0, 0, 0.3));
}

.coupon-modal-content {
    padding: 26px 30px 38px 30px !important;
    border-radius: 8px;
}

.modal-header {
    border-bottom: none;
    padding: 0;
    margin-bottom: 32px;
}

.modal-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
}

.modal-body {
    padding: 0;
}

.fade {
    background: rgba(0, 0, 0, 0.5);
}

.modal-header button {
/*    background: transparent;*/
    border: none;
}

    .modal-header button img {
        width: 14px;
        height: 14px;
    }

.addCoupon-btn {
    padding: 12px;
    border: none;
    border-radius: 16px;
    color: white;
    background-color: #ED1C24;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}

.modal-actionSwitch {
    display: flex;
    justify-content: space-between;
}

    .modal-actionSwitch label {
        font-size: 14px;
        font-weight: 400;
    }

.table-container table tr {
    border: 1px solid #ededed;
}

table {
    border-bottom: 1px solid #ededed;
}


/*danial new css start*/

div.dataTables_wrapper div.dataTables_filter {
    position: absolute;
    top: 11px;
    right: 156px;
}

.table-container .dataTables_wrapper {
    position: inherit;
}

.main-page-wrapper {
    position: relative;
}

div.dataTables_wrapper div.dataTables_filter input {
    background: #fff;
    border-radius: 16px;
    padding: 12.7px;
    border: 1px solid #D2D2D2;
    min-width: 328px;
}

.table-container .dataTables_wrapper .col-sm-12 {
    padding: 0;
}

.table-container .dataTables_wrapper .row {
    margin: 0 auto;
}

table.dataTable > tbody > tr td:first-child {
    color: #2371FB;
}

.dataTables_scrollHead .dataTables_scrollHeadInner {
    width: 100% !important;
}

table.dataTable thead > tr > th.sorting:before {
    border: solid black;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 2px;
    content: '' !important;
    opacity: 1;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    border-radius: 1px;
}

table.dataTable thead > tr > th.sorting:after {
    border: solid black;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 2px;
    content: '' !important;
    opacity: 1;
    border-radius: 1px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    margin: 0 5px;
    padding: 0 !important;
    border: 0 !important;
}

div.dataTables_wrapper div.dataTables_paginate ul.pagination {
    padding: 10px;
}

.dataTables_wrapper .dataTables_paginate .pagination .paginate_button:hover {
    border: 0;
    background: none;
}

.dataTables_wrapper .dataTables_paginate .pagination .paginate_button a.page-link {
    color: #ff0000;
    border-radius: 4px;
    box-shadow: none;
}

.dataTables_wrapper .dataTables_paginate .pagination .paginate_button.active a.page-link {
    background-color: #ff0000;
    color: #fff;
    border-color: #ff0000;
}

table.dataTable > thead > tr > th,
.dataTables_wrapper.no-footer .dataTables_scrollBody {
    border-bottom: 1px solid #ededed !important;
}

table.dataTable.no-footer {
    border-bottom: 1px solid #ededed !important;
}

#couponTable {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

form .form-group {
    margin-bottom: 22px;
}

    form .form-group label {
        display: block;
        margin: 0;
        padding-bottom: 4px;
    }

        form .form-group label.form-label {
            padding: 11.2px 12px;
            min-height: 48px;
            background: #ced4da6e;
            border-radius: 16px;
            display: flex;
            align-items: center;
            font-size: 16px;
        }

.save-trackingNo {
    border-radius: 12px;
    border: 1px solid #ED1C24;
    font-size: 14px;
    background: #ED1C24;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px 12px;
}

.close-trackingNo {
    border-radius: 12px;
    padding: 7px 12px;
    border: 1px solid #ED1C24;
    font-size: 14px;
    background: transparent;
    color: #ED1C24;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-field input {
    width: 100%;
    height: 48px;
    border-radius: 16px;
    border: 1px solid #a0a0a0;
    padding-inline: 12px;
}

.main-page-wrapper .tab-heading {
    padding: 0;
}

.trackingNo-modalBody {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    .trackingNo-modalBody .user-box {
        display: flex;
        flex-direction: column;
        position: relative;
    }

        .trackingNo-modalBody .user-box span.fa {
            position: absolute;
            right: 12px;
            bottom: 15px;
            top: 46px;
        }

.modal-content {
    padding: 0;
}

.trackingNo-modalContent {
    padding: 30px 40px;
}

.trackingNo-modalFooter {
    padding: 20px 0 0 0;
    /*    padding: 0;*/
    border-top: 0;
}

.text-field p {
    margin-bottom: 0.5rem;
    font-size: 14px;
}

.trackingNo-modalHeader {
    margin-bottom: 23px;
}

.newUser-row {
    /*    margin-bottom: 28px;*/
}


.upload-field {
    position: relative;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 12px 40px 12px 12px;
    background-color: #fff;
    cursor: pointer;
    margin-top: 5px;
    overflow: hidden;
    white-space: nowrap;
}

    .upload-field input[type="file"] {
        opacity: 0;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        cursor: pointer;
        z-index: 2;
    }

.file-name {
    position: relative;
    z-index: 1;
    color: #555;
    pointer-events: none;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    font-size: 12px;
}

.upload-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
}
/*checkbox*/

.checkbox-wrapper {
    display: block;
    margin-bottom: 10px;
}

    .checkbox-wrapper input {
        padding: 0;
        height: initial;
        width: initial;
        margin-bottom: 0;
        display: none;
        cursor: pointer;
    }

    .checkbox-wrapper label {
        position: relative;
        cursor: pointer;
    }

        .checkbox-wrapper label:before {
            content: '';
            -webkit-appearance: none;
            background-color: transparent;
            border: 2px solid #ed1c24;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
            padding: 10px;
            display: inline-block;
            position: relative;
            vertical-align: middle;
            cursor: pointer;
            margin-right: 5px;
        }

    .checkbox-wrapper input:checked + label:after {
        content: '';
        display: block;
        position: absolute;
        top: 2px;
        left: 9px;
        width: 6px;
        height: 14px;
        border: solid #ed1c24;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }
/*Radio*/
[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

    [type="radio"]:checked + label,
    [type="radio"]:not(:checked) + label {
        position: relative;
        padding-left: 28px;
        cursor: pointer;
        line-height: 20px;
        display: inline-block;
        color: #666;
    }

        [type="radio"]:checked + label:before,
        [type="radio"]:not(:checked) + label:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 18px;
            height: 18px;
            border: 1px solid #6c6c6c;
            border-radius: 100%;
            background: #fff;
        }

        [type="radio"]:checked + label:after,
        [type="radio"]:not(:checked) + label:after {
            content: '';
            width: 12px;
            height: 12px;
            background: #ed1c23;
            position: absolute;
            top: 3px;
            left: 3px;
            border-radius: 100%;
            -webkit-transition: all 0.2s ease;
            transition: all 0.2s ease;
        }

        [type="radio"]:not(:checked) + label:after {
            opacity: 0;
            -webkit-transform: scale(0);
            transform: scale(0);
        }

        [type="radio"]:checked + label:after {
            opacity: 1;
            -webkit-transform: scale(1);
            transform: scale(1);
        }



/*view user*/
.dataTables_filter label {
    font-size: 0;
}

.dataTables_filter input {
    font-size: initial;
}

    .dataTables_filter input::placeholder {
        font-size: 14px;
    }

.was-validated input.form-control:invalid {
    background: none;
}

div.dataTables_wrapper div.dataTables_length select {
    background: #ED1C24 !important;
    color: #fff !important;
    border: none;
    border-radius: 5px;
    display: inline-block;
}

    div.dataTables_wrapper div.dataTables_length select option {
        background: #fff;
        color: black;
    }

.dataTables_wrapper .dataTables_length {
    padding-top: 20px;
    padding-left: 10px;
}

.form-select:focus {
    box-shadow: none;
}

.swal2-modal {
    border-radius: 16px !important;
}

    .swal2-modal .swal2-styled {
        border-radius: 12px !important;
        background: #ED1C24 !important;
    }

.swal2-icon.swal2-success .placeholder {
    background: transparent !important;
}

.trackingNo-modalContent {
    border-radius: 8px;
}

div.dataTables_wrapper div.dataTables_length select.form-select {
    -webkit-appearance: auto;
}

.form-control.is-valid, .was-validated .form-control:valid {
    border: 1px solid #ced4da;
}

.was-validated .form-select:valid:focus {
    border-color: #ced4da !important;
    box-shadow: none !important;
}

.logo img.hamburger-icon {
    width: 25px;
    /*    display: none;*/
    cursor: pointer;
    margin-right: 10px;
}


.sidebar {
/*    color: white;*/
    transition: transform 0.3s ease;
    z-index: 100;
}

#closeSidebarBtn {
    display: none
}

.sidebar-logo {
/*    display: none;*/
    padding-bottom: 15px;
}

/*.sidebar-overlay {
    background-color: rgba(0, 0, 0, 0.536);
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
    z-index: 95;
    display: none;
}*/

#screenList {
    padding: 0;
}

.was-validated .form-control:valid {
    background-image: unset;
}


.header .dropdown ul {
    z-index: 100;
    border: none;
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

    .header .dropdown ul li a {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        padding: 8px 16px;
        color: black;
    }

    .header .dropdown ul li .dropdown-item:hover {
        color: #ED1C24;
        background-color: #ffecec;
    }

.dataTables_paginate .disabled {
    opacity: 0.5;
    pointer-events: none;
}

.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
    overflow-y: auto;
    max-height: calc(100vh - 190px);
}

.table-container .bottom {
    padding-bottom: 45px;
}

#openDrawer-btn {
    position: absolute;
    right: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: #6c757d;
    border: 1px solid #d2d2d2;
    padding: 12px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
    cursor: pointer;
}


/*new*/
/*.drawerWrapper {
    overflow: hidden;
    height: 0;
    visibility: hidden;
}*/

.drawerWrapper {
    max-height: 0;
    overflow: auto;
    transition: max-height 0.5s ease, padding 0.5s ease;
    visibility: hidden;
    padding: 0;
}

    .drawerWrapper.open {
        max-height: 490px;
        padding: 25px;
        visibility: visible;
        margin-top: 12px;
        /*        overflow-y: auto;*/
        padding-inline: 0;
    }

.exportBtn-wrapper {
    width: 100%;
    display: flex;
    justify-content: end;
    padding: 10px;
}

.exportData-btn {
    background: #ED1C24 !important;
    color: white !important;
    border: none !important;
    padding: 12px 18px !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    line-height: 16px !important;
    font-weight: 500;
}

#btn_DefaultDiv, #btn_otpDiv {
    text-align: center;
}

.form-field .login {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.test {
    border: 1px solid #db1d1d !important;
    border-radius: 16px !important;
}

.test2 {
    border: 1px solid #28a745 !important;
    border-radius: 16px !important;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #ced4da !important;
    border-radius: 16px !important;
    padding-block: 11.2px !important;
    padding-inline: 10px !important;
    min-height: 48px;
}

    .select2-container--default .select2-selection--single .select2-selection__arrow {
        top: 12px !important;
        right: 8px !important;
    }

.select2-container {
    width: 100%;
}

span.select2-container.select2-container--default {
    width: 100% !important;
}

    span.select2-container.select2-container--default.select2-container--open {
        z-index: 9999;
    }

#trackingModal .modal-header button {
    background: transparent url(transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat);
}


.flowChart-Wrapper {
    margin-block: 22px;
}
.flowChart {
    width: 33.3%;
    border: 1px solid #ed1c24;
    border-radius: 10px;
    padding: 15px;
    background-color: white;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
    .flowChart h5 {
        margin-bottom: 24px;
    }
.orderStatus {
    background-color: white;
    border: 1px solid #ed1c24;
    border-radius: 10px;
    padding: 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.orderStatus p {
    margin: 0;
    font-size: 14px;
}
    .orderStatus h3 {
        font-size: 28px;
        font-weight: 500;
    }

.modal-actionSwitch {
    height: 100%;
    align-items: center;
}


.sidebar {
    position: fixed;
    top: 0;
    left: -250px; 
    width: 200px;
    height: 100%;
    padding-top: 60px;
    transition: left 0.3s ease;
    z-index: 1005;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 18px;
}
.sidebar.active {
    left: 0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

    .sidebar-overlay.active {
        opacity: 1;
        pointer-events: all;
    }

.all-result-modal {
    width: 100%;
    max-width: max-content;
}


.table-dropdown .dropdown-menu {
    position: fixed !important;
    z-index: 9999 !important;
}

.cuopon-btn {
    position: relative;
}
    .cuopon-btn button {
        position: absolute;
        top: 0;
        right: 0;
        padding: 12.5px 8px;
        border: 1px solid #ED1C24;
        font-size: 14px;
        background: #ED1C24;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        width: auto;
        border-top-right-radius: 16px;
        border-bottom-right-radius: 16px;
    }


@media only screen and (max-width: 375px) {
    .form {
            padding-top: 34px;
        }

            .form .form-field {
                width: 100%;
                padding-left: 20px;
                padding-right: 20px;
            }

        .form-field form {
            gap: 15px;
        }

        .login .login-btn {
            font-size: 13px;
            border-radius: 14px;
            padding: 10px;
        }

        .form-logo img {
            height: auto;
            width: 175px;
        }

        .form-field a {
            font-size: 13px;
        }

        .user-box input {
            height: 40px;
            border-radius: 14px;
        }

        .form-logo {
            padding-bottom: 20px;
        }

        .form-field .user-box span.fa {
            position: absolute;
            right: 12px;
            bottom: 11px;
        }
    }



    @media only screen and (max-width: 1426px) {

        div.dataTables_wrapper div.dataTables_filter {
            position: absolute;
            top: 11px;
        }
    }

    @media only screen and (max-width: 1266px) {

        div.dataTables_wrapper div.dataTables_filter input {
            min-width: 140px;
            border-radius: 12px;
            padding: 8px;
        }

        div.dataTables_wrapper div.dataTables_filter {
            position: absolute;
            top: 15px;
        }

        #openDrawer-btn {
            position: absolute;
            right: 390px;
        }
    }

    @media only screen and (max-width: 1242px) {

        div.dataTables_wrapper div.dataTables_filter {
            position: absolute;
            top: 15px;
        }
    }

    @media only screen and (max-width: 1024px) {

        div.dataTables_wrapper div.dataTables_filter {
            position: absolute;
            top: 15px;
        }
    }

    @media only screen and (max-width: 953px) {

        div.dataTables_wrapper div.dataTables_filter {
            position: absolute;
            top: 15px;
        }

        div.dataTables_wrapper div.dataTables_filter {
            position: absolute;
            top: 60px;
            right: 0;
        }

        .fulfilment-tabHeader {
            margin-bottom: 58px;
        }

        #openDrawer-btn {
            position: absolute;
            right: 146px;
            top: 15px;
        }
    }

    @media only screen and (max-width: 768px) {
        div.dataTables_wrapper div.dataTables_paginate ul.pagination {
            justify-content: flex-end !important;
        }

        .logo img.header-logo {
            display: none;
        }

        .logo img.hamburger-icon {
            display: block;
        }

        .sidebar {
            transform: translateX(-100%);
            height: 100%;
            position: fixed;
            top: 0;
            left: 0;
        }

            .sidebar.active {
                transform: translateX(0);
            }

        .container-right {
            max-width: 100%;
        }

        #closeSidebarBtn {
            display: block;
        }

        .sidebar-logo {
            display: block;
        }

        .dataTables_wrapper .dataTables_length {
            position: absolute;
            bottom: 22px;
            left: 25%;
            right: 25%;
        }

        .table-container .dataTables_wrapper .row:last-child {
            padding-bottom: 45px;
        }

        .actionBtn {
            flex-direction: column;
            width: 100%;
        }
    }


    @media only screen and (max-width: 425px) {

        .newOrder button {
            font-size: 12px;
            padding: 12px 16px;
        }

        .row {
            --bs-gutter-x: auto !important;
        }
        /*    .actionBtn {
    flex-direction: column;
    width: 100%;
    }*/


        .modal-dialog {
            max-width: 290px;
        }

        .coupon-modal-content {
            padding: 26px 18px 30px 18px !important;
        }

        .user-box input {
            border: 1px solid #D2D2D2;
            border-radius: 14px;
            height: 40px;
        }

        .form-field form {
            gap: 18px;
        }

        #openDrawer-btn {
            position: absolute;
            right: 122px;
            top: 15px;
        }
    }

    @media only screen and (max-width: 1160px) {

        .custom-col {
            flex: 0 0 100%;
            max-width: 100%;
        }

            .custom-col label,
            .custom-col select,
            .custom-col input {
                font-size: 13px !important;
            }
    }


.newUser-row .form-group.is-invalid-group .invalid-feedback {
    display: block;
}