@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
    --primary-color: var(--primary-color);
    --primary-color: #F54E00;
    --secondary-color: #7d879a;
    --bs-modal-padding: 1.5rem !important;
    --nav-text-color: #474C50;
    --text-gray: #8898AA;
    --nav-text-color-active: #fff;
    --text-nav-color: #fff;
    --dash-item-bg: #F7F6F9;
    --tab-text: #8898AA;
    --tab-bg: #F7F6F9;
    --tab-text-active: #0B0D0F;
    --bs-btn-bg: #F54E00 !important;
    --bs-btn-border-color: #F54E00 !important;
    --bs-btn-hover-bg: #cf4302 !important;
    --bs-btn-hover-border-color: #cf4302 !important;
    --bs-btn-active-bg: #cf4302 !important;
    --bs-btn-active-border-color: #cf4302 !important;
    --bs-btn-disabled-border-color: #f19a72 !important;
}

body {
    font-family: "Bricolage Grotesque", sans-serif !important;
    font-size: 16px !important;
    font-weight: 400;
    line-height: 26px;
    color: #252432;
    background: #f8f4f2;
    padding: 0;
    margin: 0;
}

a:hover,
a:focus {
    text-decoration: none;
}

/** **/
.font-weight-600 {
    font-weight: 600;
}

.form-control,
.custom-select {
    font-size: 14px;
}

.custom-select {
    padding: 6px 16px 6px 8px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: right 6px center;
    background-size: 12px 12px;
    /* SVG chevron */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%238898AA' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 6l5 5 5-5'/%3E%3C/svg%3E");
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 10px; /* will apply more consistently with appearance: none */
}


.btn {
    box-shadow: none;
    font-size: 14px;
    transition: all 0.3s;
}

    .btn:focus {
        box-shadow: none;
    }

.main-btn {
    min-width: 100px;
    border-width: 2px;
}

.sub-btn {
    min-width: 100px;
}

.gray-btn {
    border-radius:11px;
    border-color: #888;
    background-color: #888;
    color: #fff;
}

    .gray-btn:hover {
        background-color: transparent;
        color: #888;
    }

.orange-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: var(--primary-color);
    border-radius: 10px;
    /* font-family: "Inter", sans-serif; */
    font-weight: 400;
    line-height: 1.2;
    font-size: 14px;
    color: #FFFFFF;
    /*    border: 1px solid var(--primary-color);*/
    min-height: 44px;
    padding: 0 20px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s linear;
}

    .orange-btn:hover {
        background-color: #f36827;
        color: #ffff;
    }

.green-btn {
    border-color: #22b14c;
    background-color: #22b14c;
    color: #fff;
}

    .green-btn:hover {
        background-color: transparent;
        color: #22b14c;
    }

.blue-btn {
    border-color: #00acd5;
    background-color: #00acd5;
    color: #fff;
}

    .blue-btn:hover {
        background-color: transparent;
        color: #00acd5;
    }

.green-btn {
    border-color: #41a914;
    background-color: #41a914;
    color: #fff;
}

    .green-btn:hover {
        background-color: transparent;
        color: #41a914;
    }

.bg-danger {
    background-color: #f46d7d !important;
}

.gray-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: var(--primary-color);
    border-radius: 10px;
    /* font-family: "Inter", sans-serif; */
    font-weight: 400;
    line-height: 1.2;
    font-size: 14px;
    color: #FFFFFF;
    border: 1px solid var(--primary-color);
    min-height: 44px;
    padding: 0 20px;
    text-decoration: none;
    cursor: pointer;
}

    .gray-link:hover {
        text-decoration: none;
        border: 1px solid var(--primary-color);
        background: white;
        color: var(--primary-color);
    }

.orange-outlite {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-radius: 10px;
    font-weight: 400;
    line-height: 1.2;
    font-size: 14px;
    border: 1px solid var(--primary-color);
    min-height: 44px;
    padding: 0 20px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s linear;
    background-color: transparent;
    color: var(--primary-color);
}
.orange-outlite-user {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-radius: 4px;
    font-weight: 400;
    line-height: 1.2;
    font-size: 14px;
    border: 1px solid #dee2e6;
    min-height: 36px;
    padding: 0 20px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s linear;
    background-color: transparent;
    color: var(--primary-color);
}

    .orange-outlite:hover {
        background: var(--primary-color);
        color: #FFFFFF;
    }

.lightred-btn {
    border-color: #f46d7d;
    background-color: #f46d7d;
    color: #fff;
}

    .lightred-btn:hover {
        background-color: transparent;
        color: #f46d7d;
    }


.btn.orange {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: var(--primary-color);
    border-radius: 10px;
    /* font-family: "Inter", sans-serif; */
    font-weight: 400;
    line-height: 1.2;
    font-size: 14px;
    color: #FFFFFF;
    /*    border: 1px solid var(--primary-color);*/
    min-height: 44px;
    padding: 0 20px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s linear;
}

.fa-plus-square:before, .fa-square-plus:before {
    content: "\f0fe";
}
/** Login Page ************/
.login-page {
    width: 100%;
    min-height: 100vh;
    background-image: url(../Images/login-bg.jpeg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

    .login-page .header {
        padding: 10px 15px;
    }

    .login-page .brand-logo img {
        height: 100px;
        width: auto;
    }
    /**/
    .login-page .login-box {
        padding: 0 15px;
    }

        .login-page .login-box .login-form {
            width: 100%;
            max-width: 400px;
            margin: 30px auto;
            padding: 20px;
            border-radius: 5px;
            background-color: #ffffff94;
            opacity: 1;
        }

    .login-page .login-form h2 {
        margin: 0 0 20px 0;
        color: #fff;
        text-align: center;
    }

    .login-page .login-form .form-control {
        height: 40px;
    }

.input-group {
    background: #e5e7eb;
    max-width: 350px;
    min-width: 320px;
    width: 100%;
}

.login-page .login-form .input-group .input-group-prepend .input-group-text {
    background-color: #fff;
}

.login-page .login-form .form-check label {
    font-size: 14px;
    color: #fff;
}

.login-page .login-form .forgot-pass {
    border-bottom: 1px solid transparent;
    font-size: 14px;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s;
}

    .login-page .login-form .forgot-pass:hover {
        border-bottom: 1px solid #ccc;
    }

.login-page .login-form .main-btn {
    font-size: 16px;
}
/**/
.login-page footer {
    padding: 20px 0;
}

    .login-page footer p {
        margin: 0;
        text-align: center;
        color: #fff;
        text-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
    }

/**********************
Inner pages
**********************/
.main-nav {
    padding: 10px 0;
}

    .main-nav .navbar-brand {
        padding: 0;
    }

        .main-nav .navbar-brand img {
            height: 50px;
            width: auto;
        }

    .main-nav .nav-middle {
        background-color: #f5f5f5;
        border-radius: 4px;
    }

    .main-nav .navbar-nav .nav-item .nav-link {
        padding: 10px 15px;
        font-weight: 500;
        transition: all 0.3s;
    }

    .main-nav .navbar-nav .active .nav-link,
    .main-nav .navbar-nav .show .dropdown-toggle,
    .main-nav .navbar-nav .dropdown-toggle.active {
        color: #ff9224;
    }



    .main-nav .navbar-nav .dropdown .dropdown-menu {
        margin: 0;
        padding: 4px 0;
        border: 0;
        background-color: #f5f5f5;
    }

    .main-nav .navbar-nav .dropdown .dropdown-item {
        padding: 4px 15px;
        font-size: 14px;
        font-weight: 500;
        color: rgba(0, 0, 0, 0.5);
        transition: all 0.3s;
    }

        .main-nav .navbar-nav .dropdown .dropdown-item:hover {
            background-color: transparent;
            color: rgba(0, 0, 0, 0.7);
        }

        .main-nav .navbar-nav .dropdown .dropdown-item.active {
            background-color: transparent;
            color: #ff9224;
        }

    .main-nav .navbar-nav .nav-item .logout-btn {
        margin-left: 10px;
        background-color: transparent;
        font-size: 27px;
        font-weight: 500;
        color: #ff9224;
        transition: all 0.3s;
    }

        .main-nav .navbar-nav .nav-item .logout-btn:hover {
            /*background-color: #ff9224;
            color: #fff;*/
        }
/**/
.main {
    min-height: calc(100vh - 160px);
    padding: 10px 0 20px 0;
}

.page-title {
    display: flex;
    justify-content: space-between;
    /*    align-items: center;*/
    width: 100%;
    font-size: 44px;
    font-weight: 600;
    line-height: 53px;
    color: #252432;
    margin-top: 0;
    margin-bottom: 28px;
}

    .page-title h6,
    .page-title h5 {
        margin: 0 0 15px 0;
    }

.page-breadcrumb .breadcrumb {
    margin: 0 0 5px 0;
    padding: 0 15px 5px 0;
    background-color: #fff;
    font-size: 16px;
}

    .page-breadcrumb .breadcrumb .breadcrumb-item a {
        color: #00acd5;
    }

/**/
.footer {
    padding: 5px 0;
    background-color: #1e2742;
}

    .footer .footer-logo {
        margin: 5px 0;
    }

        .footer .footer-logo img {
            height: 40px;
            width: auto;
        }

    .footer .copyright {
        margin: 0;
        padding-left: 15px;
        color: #fff;
        font-weight: 300;
    }

/** Inner Page *************************/
.filter-box {
    /* display: none !important; */
    margin-top: 20px;
    /* background: #202740; */
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.inner-page .filter-box .search-bar { 
    max-width: 250px;
}

.search-bar .btn {
    padding-right: 0px;
    color: #adb5bd;
    background-color: white;
}

.orange:hover {
    color: #fff;
    opacity: 0.8;
}

.fa-search {
    font-size: 20px;
}

.inner-page .filter-box .custom-select {
    min-width: 100px;
}
/*.input-group > .input-group-append > .btn, .input-group > .input-group-append > .input-group-text, .input-group > .input-group-prepend:not(:first-child) > .btn, .input-group > .input-group-prepend:not(:first-child) > .input-group-text, .input-group > .input-group-prepend:first-child > .btn:not(:first-child), .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}*/
.inner-page .filter-box .search-bar,
.inner-page .filter-box .custom-select,
.inner-page .filter-box .sub-btn {
    margin: 5px 0;
}
/**/
.inner-page .table-filter {
    padding: 5px 0;
}

    .inner-page .table-filter .show-txt {
        margin: 5px 0;
    }

    .inner-page .table-filter .row-select {
        margin: 5px 0;
    }

        .inner-page .table-filter .row-select .custom-select {
            margin: 0 5px;
            padding: 4px 14px 4px 4px;
            height: auto;
            min-width: 60px;
        }

    .inner-page .table-filter .pagination {
        margin: 5px 0;
    }
/**/
.pagination .page-item .page-link {
    color: #00acd5;
}

.pagination .page-item.active .page-link {
    background-color: #00acd5;
    border-color: #00acd5;
    color: #fff;
}

.pagination .page-item.disabled .page-link {
    color: #666;
}
/**/
.table thead th {
    font-weight: 600;
    vertical-align: middle;
}

.table tbody td {
    font-size:13px;
    vertical-align: middle;
}

.table .table-select {
    width: 30px;
    text-align: center;
}

.table .table-links {
    white-space: nowrap;
}

    .table .table-links .table-link {
        margin: 0px;
    }

.table .table-link {
/*    padding: 5px;*/
    box-shadow: none;
    border: 0;
    background-color: transparent;
    font-size: 14px;
    color: gray;
    transition: all 0.3s;
}


/*.table .text-btn {
    padding: 2px 6px;
    background-color: #fff;
    font-size: 12px;
    font-weight: 600;
    color: #434242;
}*/
.table .text-btn {
    padding: 0 !important;
    background-color: #fff;
    font-size: 12px;
    font-weight: 600;
    color: gray;
    /* border: 3px solid orange; */
    margin-right: 6px;
}

    .table .text-btn:hover {
        /*        background-color: #333;*/
        color: black;
    }

.table .table-img {
    height: 40px;
    width: 40px;
    object-fit: contain;
    object-position: center;
}
/** Modal **********/
.modal .main-btn {
    min-width: 60px;
    font-size: 14px;
}

/** Dashboard Page **************************/
.dashboard-page .dash-data {
    padding-bottom: 20px;
}

.dash-data .dash-list li {
    display: flex;
    align-items: center;
}

    .dash-data .dash-list li .color-box {
        margin-right: 10px;
        width: 20px;
        height: 15px;
    }

.dash-list .color-box.color1 {
    background-color: #8ea9db;
}

.dash-list .color-box.color2 {
    background-color: #ffd966;
}

.dash-list .color-box.color3 {
    background-color: #0088ce;
}

.dash-list .color-box.color4 {
    background-color: #ec7a07;
}

.dash-list .color-box.color5 {
    background-color: #3f9c35;
}
/**/
.dash-data .dash-chart {
    max-width: 300px;
}
/**/
.dash-data.dash-table-box {
    max-width: 250px;
    width: 250px;
}

.dash-data .dash-table td:first-child {
    padding-left: 0;
}

.dash-data .dash-table td:last-child {
    width: 120px;
    text-align: center;
}

.dash-data .dash-table td.table-total {
    border-top: 1px solid #000;
    font-weight: 500;
}

.multiselect {
    min-height: 44px;
    width: 100%;
    border-radius: 10px;
    border-color: #8898AA;
    color: #8898AA;
    background: #fff;
    padding: 12px;
    font-size: 13px;
}

span.multiselect-selected-text:after {
    content: '';
    border-color: orange;
    margin-left: 34px;
    margin-bottom: 2px;
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 1px solid #374151;
    border-bottom: 1px solid #374151;
    transform: rotate(45deg);
}
/** Inventory Page ************************/
.multiselect-filter .multiselect-container > .multiselect-option.dropdown-item {
    padding: 0px 12px;
    font-size: 14px;
    color: black;
}

    .multiselect-filter .multiselect-container > .multiselect-option.dropdown-item.active,
    .multiselect-filter .multiselect-container > .multiselect-option.dropdown-item:active {
        background-color: #fff;
    }

    .multiselect-filter .multiselect-container > .multiselect-option.dropdown-item:hover,
    .multiselect-filter .multiselect-container > .multiselect-all:hover {
        background: #f7f7f7 !important;
        color:black !important; 
    }


.print-barcode {
    cursor: pointer;
}

/** Orders Page ************************/
.filter-status li:first-child span {
    display: inline-block;
    margin-bottom: 5px;
    vertical-align: middle;
    font-weight: 600;
}

.filter-status li a {
    margin-bottom: 5px;
    padding: 3px 0px;
    border: 1px solid transparent;
    border-radius: 2px;
    font-size: 13px;
    color: #666666;
    transition: all 0.3s;
}

.filter-status .stat-dot {
    margin-right: 3px;
}

.stat-dot {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #000;
    vertical-align: middle;
}

    .stat-dot.stat-box {
        width: 15px;
        border-radius: 50%;
    }

    .stat-dot.stat-red {
        background-color: #f46d7d;
    }

    .stat-dot.stat-orange {
        background-color: #f99a58;
    }

    .stat-dot.stat-green {
        background-color: #22b14c;
    }

    .stat-dot.stat-blue {
        background-color: #00a2e8;
    }

    .stat-dot.stat-grey {
        background-color: #888;
    }

    .stat-dot.stat-purple {
        background-color: #d894d8;
    }

.bg-low-quantity {
    background-color: #f99a58 !important;
}

.bg-low-quantity-and-expired {
    background-color: #d894d8 !important;
}

.table .stat-box {
    padding: 3px;
    color: #fff;
}

    .table .stat-box .stat-dot {
        display: block;
        margin: 0 auto;
        border: 1px solid #fff;
    }

    .table .stat-box.stat-red {
        background-color: #f46d7d;
    }

    .table .stat-box.stat-blue {
        background-color: #00a2e8;
    }
/**/
.order-modal .order-details .table th {
    width: 202px;
    padding: 1px 10px 1px 0;
    font-weight: 600;
}

.order-modal .order-details .table td {
    padding: 1px 10px 1px 0;
}

.order-modal .order-review .comment-box {
    height: 100px;
}
/**/
/* .modal.show:nth-child(even) {
	z-index: 1060 !important;
} 
.shipped-modal,
.delivered-modal {
    z-index: 1060 !important;
}
  .modal-backdrop.show:nth-child(even) {
	z-index: 1055 !important;
}  
.modal-backdrop.show + .modal-backdrop.show {
    z-index: 1055 !important;
}
*/
/** Staging Page **************************/
.staging-page .box-option {
    -ms-flex: 0 0 280px;
    flex: 0 0 280px;
    max-width: 280px;
    margin: 10px;
    border-radius: 5px;
    background-color: #f2f2f2;
    transition: all 0.3s;
}

    .staging-page .box-option:hover {
        display: block;
        cursor: pointer;
        background-color: #00acd5;
    }

    .staging-page .box-option a {
        display: block;
        width: 100%;
        padding: 45px 30px;
        text-align: center;
    }

    .staging-page .box-option .option-img {
        width: 75px;
        height: 75px;
        padding: 15px;
        margin: 0 auto;
        border-radius: 50%;
        background-color: #fff;
    }

        .staging-page .box-option .option-img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
        }

    .staging-page .box-option h4 {
        margin: 0;
        padding-top: 15px;
        font-size: 20px;
        font-weight: 600;
        text-transform: uppercase;
        color: #333;
        transition: all 0.3s;
    }

    .staging-page .box-option:hover h4 {
        color: #fff;
    }
/**/
.staging-page .staging-steps {
    margin: 0 auto;
    padding: 10px;
    /*max-width: 600px;*/
}

    .staging-page .staging-steps .step-progress {
        margin: 0 auto 20px auto;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background-color: #ff9224;
    }

        .staging-page .staging-steps .step-progress h5 {
            font-size: 18px;
            font-weight: 400;
            line-height: 80px;
            color: #fff;
            text-align: center;
        }

    .staging-page .staging-steps .step-box .step-card:not(:first-of-type) {
        display: none;
    }

/** Store Settings Page **************************/
.store-settings .ss-option .nav-item {
    padding-bottom: 10px;
}

.store-settings .ss-option .nav-item {
    padding-bottom: 10px;
}

.store-settings .ss-option.nav-pills .nav-item {
    padding-left: 5px;
}


.store-settings .ss-option .nav-link {
    background-color: #aaa;
    color: #fff;
    text-align: center;
    transition: all 0.3s;
}

    .store-settings .ss-option .nav-link:hover {
        background-color: #ff9224;
    }

    .store-settings .ss-option .nav-link.active {
        background-color: #ff9224;
    }

.store-settings .single-table {
    min-width: 200px;
}

.store-settings .table th:last-child,
.store-settings .table td:last-child {
    text-align: center;
}

/** Settings Page **************************/

/** Warehouse Page **************************/
.warehouse-table {
    overflow: auto;
}

    .warehouse-table .table {
        table-layout: fixed;
    }

        .warehouse-table .table td {
            padding: 6px 4px;
            width: 140px;
            min-height: 36px;
            border-color: #000;
        }

            .warehouse-table .table td.red-box {
                background-color: #ff0000;
            }

            .warehouse-table .table td.yellow-box {
                background-color: #ffff00;
            }

            .warehouse-table .table td.black-box {
                background-color: #000;
            }
/* .warehouse-table .table td.text-vertical {
	writing-mode: vertical-rl;
	transform: rotate(-180deg);
} */
/* .warehouse-table .table td.all-border {
	border: 2px solid #000;
}
.warehouse-table .table td.right-border {
	border-right: 2px solid #000;
} */
/** Dashboard Page ************************/
.dashboard-page {
}

.tab-box .nav-tabs {
    border-bottom: 1px solid #ff9224;
}

    .tab-box .nav-tabs .nav-link {
        color: #ff9224;
        transition: all 0.3s;
    }

        .tab-box .nav-tabs .nav-link:hover {
            border-color: #ff9224;
        }

        .tab-box .nav-tabs .nav-link.active {
            border-color: #ff9224;
            background-color: #ff9224;
            color: #fff;
        }

.main #cs_formFooter {
    display: none !important;
}

.main #cs_divResults th {
    background-color: #343a40 !important;
    color: white;
}

.main #cs_searchForm input[type="submit"] {
    background-color: #00acd5 !important;
}

.main #cs_divResults h2 {
    color: #ff9224 !important;
}

.select2-selection__rendered {
    line-height: 31px !important;
}

.select2-container .select2-selection--single {
    height: 35px !important;
}

.select2-selection__arrow {
    height: 34px !important;
}
/***************
Media Query
****************/
@media screen and (min-width: 1400px) {
    .container-fluid {
        /*        max-width: 90%;*/
        margin: 0 auto;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
}

@media screen and (max-width: 991px) {
}

@media screen and (max-width: 767px) {
    .main-nav .navbar-nav {
        background-color: #f5f5f5;
    }

        .main-nav .navbar-nav .dropdown .dropdown-menu {
            padding: 0 0 4px 15px;
        }

        .main-nav .navbar-nav .logout-btn {
            margin: 10px 0;
        }
}


.main-nav .cart-btn {
    position: relative;
    margin: 15px 15px 15px 15px;
    padding: 0;
    border: 0;
    box-shadow: none;
    background-color: transparent;
}


    .main-nav .cart-btn img {
        height: 40px;
        width: 40px;
    }


    .main-nav .cart-btn .number-dot {
        position: absolute;
        left: -8px;
        top: -8px;
        height: 18px;
        min-width: 18px;
        border-radius: 15px;
        background-color: #ff9224;
        font-size: 12px;
        color: #fff;
        line-height: 16px;
        text-align: center;
    }


.pending-approval-dot {
    position: absolute;
    left: 84px;
    top: -2px;
    height: 18px;
    min-width: 18px;
    border-radius: 15px;
    background-color: #ff9224;
    font-size: 12px;
    color: #fff;
    line-height: 16px;
    text-align: center;
}

/** Cart Page ***************************/
.cart-page .cart-step .step-progress {
    padding-bottom: 15px;
}

    .cart-page .cart-step .step-progress span {
        position: relative;
        -ms-flex: 0 0 48%;
        flex: 0 0 48%;
        max-width: 48%;
        height: 30px;
        text-align: center;
        color: #bfbfbf;
    }

        .cart-page .cart-step .step-progress span::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 5px;
            background-color: #bfbfbf;
        }

        .cart-page .cart-step .step-progress span.on {
            color: #ff9224;
        }

            .cart-page .cart-step .step-progress span.on::after {
                background-color: #ff9224;
            }

.cart-page .cart-step .step-box .step-card:not(:first-of-type) {
    display: none;
}

.cart-page .cart-step .step-card .step-title {
    margin-bottom: 15px;
}

.cart-page .step-card .cart-item {
    padding-bottom: 25px;
}

.cart-page .cart-item .item-img {
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
    max-width: 100px;
    height: 100px;
}

    .cart-page .cart-item .item-img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }

.cart-page .cart-item .item-details {
    margin-bottom: 8px;
}

.cart-page .cart-item .item-cost {
    margin-bottom: 2px;
}

.cart-page .step-card .step-btns .btn {
    margin: 10px 0;
    min-width: 120px;
    height: 40px;
}

.cart-page .step-card .step-btns .next-step i {
    margin-left: 5px;
}

.cart-page .step-card .step-btns .previous-step i {
    margin-right: 5px;
}

.dropdown .active {
    color: #ff9224 !important;
}
/** Favorite page ***************************/


.main-btn {
    min-width: 100px;
    border: 2px solid #00acd5;
    background-color: #00acd5;
    color: #fff;
}

    .main-btn:hover {
        background-color: transparent;
        color: #00acd5;
    }

.gray-btn {
    border-color: #888;
    background-color: #888;
}

.main-btn.gray-btn:hover {
    color: #888;
}

.icon-color-black {
    color: #000 !important;
}

.invshipment {
    border:0px ;
    font-size: 12px;
}

    .invshipment tr {
        border-top: 1px solid #d6d6d6;
        border-bottom: 1px solid #d6d6d6;
    }
/*commented this class for sorting column name 'Action' along with svgs*/
/*.p0 {
    padding: 0 !important;
    text-align: center !important;
}*/

.red-attach, .red-attach:hover {
    color: #eb1a1a !important;
}

.black-attach, .black-attach:hover {
    color: #6d6b6b !important;
}

.small-width {
    width: 150px;
}

.dataTables_processing {
    padding: 0 !important;
    width: 0 !important;
}

.text-danger {
    color: #e3a1a7 !important;
}

a.text-danger:hover, a.text-danger:focus {
    color: #e3a1a7 !important;
}

.select-checkbox:before {
    vertical-align: middle !important;
    top: 40% !important;
    margin-top: 0 !important;
    position: relative !important;
}

.selected td.select-checkbox:before {
    vertical-align: middle !important;
    top: 40% !important;
    margin-top: -6px !important;
    position: relative !important;
}

.selected td.select-checkbox:after {
    vertical-align: middle !important;
    top: 40% !important;
    margin-bottom: 0px !important;
    margin-top: -17px !important;
    margin-left: -6px !important;
    padding-bottom: 10px !important;
    position: relative !important;
}

.custom-search {
    display: flex;
    align-items: center;
    border: 1px solid #ced4da;
    min-height: 51px;
    border-radius: 10px;
    background-color: #fff;
    width: 300px;
    padding: 0 10px; /* Optional: adds spacing inside */
}

    .custom-search a {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        margin-right: 8px; /* spacing between icon and input */
    }

        .custom-search a i {
            font-size: 18px;
            color: #8f9398;
            vertical-align: middle;
        }

    .custom-search input {
        border: none !important;
        flex: 1;
        height: 100%;
        padding: 10px 0;
        font-size: 16px;
    }
/* Right side drawer modal */
.modal.right .modal-dialog {
    position: fixed;
    margin: auto;
    width: 900px; /* apni requirement ke hisaab se width set karein */
    height: 100%;
    right: 0;
    top: 0;
    transform: translate3d(0, 0, 0);
}

.modal.right .modal-content {
    height: 100%;
    overflow-y: auto;
    border-radius: 0; /* drawer look ke liye corners straight */
}

.modal.right.fade .modal-dialog {
    transition: all 0.3s ease-out;
    transform: translate3d(100%, 0, 0); /* start off-screen */
}

.modal.right.fade.show .modal-dialog {
    transform: translate3d(0, 0, 0); /* slide in */
}
