﻿/*:root {
    --bs-primary: #3EB992;
}*/

:root {
    --bs-primary: #2047ac;
}

a {
    text-decoration: none;
}

html {
    font-size: 14px;
}

a {
    color: var(--bs-primary)
}

body {
}

hr {
    border: 0;
    border-top: 1px solid #bab3b3;
    margin: 20px 0;
    background: none;
}

.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-base {
    font-size: 1rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-5xl {
    font-size: 3rem;
}

.text-6xl {
    font-size: 3.75rem;
}

.text-7xl {
    font-size: 4.5rem;
}

.text-8xl {
    font-size: 6rem;
}

.text-9xl {
    font-size: 8rem;
}

div.dts div.dataTables_scrollBody {
    background: #fff;
}

.fw-medium {
    font-weight: 500;
}

.navbar-nav {
    flex-direction: row !important;
}

    .navbar-nav a:hover {
        color: var(--bs-primary) !important
    }

.form-control {
    font-size: 14px;
    line-height: 24px;
    min-height: 36px;
    padding: 5px 12px;
}

.main-wrapper {
    display: flex;
    overflow: hidden;
    background: #f6f6f7;
    padding-top: 56px;
}

    .main-wrapper .page-wrapper {
        min-height: 100vh;
        width: 100%;
        margin-left: 0;
        display: flex;
        flex-direction: column;
        -webkit-transition: margin .1s ease, width .1s ease;
        transition: margin .1s ease, width .1s ease;
    }

.menu-opened .main-wrapper .page-wrapper {
    width: calc(100% - 240px);
    margin-left: 240px;
}

.main-wrapper .page-wrapper .page-content {
    flex-grow: 1;
    padding: 25px;
    position: relative;
}

.main-wrapper .page-wrapper.full-page {
    width: 100%;
    margin-left: 0;
}

    .main-wrapper .page-wrapper.full-page .page-content {
        margin-top: 0;
    }

.main-wrapper .page-wrapper .page-content {
    flex-grow: 1;
    padding: 20px 32px;
}

.main-wrapper .page-wrapper .wrapper-sm {
    max-width: 1040px;
    padding: 0 30px;
    margin: auto;
}

.main-wrapper .page-wrapper .wrapper-xs {
    max-width: 800px;
    padding: 0 30px;
    margin: auto;
}


.nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.navbar {
    height: 56px;
    padding: 0 10px;
    background: #ffffff;
    border-bottom: 1px solid #f2f4f9;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 2px -1px rgba(0,0,0, 0.15);
    transition: width .1s ease, left .1s ease;
}

    .navbar .navbar-content .navbar-nav {
        display: flex;
        flex-direction: row;
        margin-left: auto;
    }

        .navbar .navbar-content .navbar-nav .nav-item {
            position: relative;
            margin-left: 5px;
            margin-right: 5px;
            min-width: 30px;
            display: flex;
            align-items: center;
        }

            .navbar .navbar-content .navbar-nav .nav-item .nav-link {
                color: #535353;
                padding: 0;
                position: relative;
                margin-left: auto;
                margin-right: auto;
            }

                .navbar .navbar-content .navbar-nav .nav-item .nav-link:hover, .navbar .navbar-content .navbar-nav .nav-item .nav-link[aria-expanded="true"] {
                    color: var(--bs-primary);
                }

                .navbar .navbar-content .navbar-nav .nav-item .nav-link::after {
                    display: none;
                }

                .navbar .navbar-content .navbar-nav .nav-item .nav-link svg {
                    width: 20px;
                    height: 20px;
                }

                .navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator {
                    position: absolute;
                    top: 0px;
                    right: 2px;
                }

                    .navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator .circle {
                        background: var(--bs-primary);
                        width: 7px;
                        height: 7px;
                        border-radius: 50%;
                    }

                        .navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator .circle::before {
                            background-color: var(--bs-primary);
                            content: "";
                            display: table;
                            border-radius: 50%;
                            position: absolute;
                        }

            .navbar .navbar-content .navbar-nav .nav-item.nav-profile .nav-link img {
                width: 30px;
                height: 30px;
                border-radius: 50%;
            }

    .navbar .navbar-content .dropdown-menu {
        left: auto;
        right: 0;
        padding: 0;
    }

        .navbar .navbar-content .dropdown-menu .nav-item {
            list-style-type: none;
            padding: 7px 10px;
            margin: 0;
            width: 100%;
            display: block;
            border-bottom: 1px solid #eee;
        }

            .navbar .navbar-content .dropdown-menu .nav-item .nav-link svg {
                height: 15px;
                width: 15px;
                margin: 0 5px 0 0;
            }

    .navbar .navbar-content .navbar-nav .dropdown-menu {
        position: absolute;
    }


.branding {
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 0 5px;
    z-index: 999;
    -webkit-transition: width .1s ease;
    transition: width .1s ease;
}

    .branding img {
        width: 110px;
    }

    .branding .brand-name {
        font-weight: 600;
        font-size: 1rem;
        color: #100;
        margin-left: 0.75rem;
    }

.menu-toggler {
    height: 28px;
    width: 28px;
    margin-left: 20px;
    cursor: pointer;
    text-align: center;
    line-height: 28px;
    background: #fff;
    color: #000;
}

    .menu-toggler span {
        line-height: 28px;
    }

    .menu-toggler:hover {
        background: #eee;
    }


.sidebar {
    width: 240px;
    height: 100%;
    position: fixed;
    left: 0;
    top: 56px;
    -webkit-transition: width .1s ease, margin .1s ease-in-out;
    transition: width .1s ease, margin .1s ease-in-out;
    z-index: 999;
}

    .sidebar .sidebar-body {
        max-height: calc(100% - 56px);
        position: relative;
        border-right: 1px solid #e1e3e5;
        height: 100%;
    }

        .sidebar .sidebar-body .nav {
            display: flex;
            flex-direction: column;
            padding: 15px 0 50px;
        }

            .sidebar .sidebar-body .nav .nav-item {
                position: relative;
                margin: 0 0px 2px;
                padding: 0 8px;
            }

                .sidebar .sidebar-body .nav .nav-item.active:before {
                    content: '';
                    width: 3px;
                    height: 32px;
                    border-top-right-radius: 3px;
                    border-bottom-right-radius: 3px;
                    position: absolute;
                    background: var(--bs-primary);
                    left: 0;
                }

                .sidebar .sidebar-body .nav .nav-item.active .nav-link > .link-title {
                    color: var(--bs-primary);
                }

                .sidebar .sidebar-body .nav .nav-item.active .nav-link .link-icon {
                    color: var(--bs-primary);
                }

                .sidebar .sidebar-body .nav .nav-item .nav-link {
                    display: flex;
                    align-items: center;
                    padding: 0 12px;
                    height: 32px;
                    white-space: nowrap;
                    color: #000;
                    border-radius: 2px;
                }

                    .sidebar .sidebar-body .nav .nav-item .nav-link:hover {
                        background-color: #f1f2f3;
                    }

                        .sidebar .sidebar-body .nav .nav-item .nav-link:hover * {
                            color: var(--bs-primary) !important;
                        }

                    .sidebar .sidebar-body .nav .nav-item .nav-link .link-title {
                        margin-left: 30px;
                        font-size: 14px;
                        font-weight: 600;
                        -webkit-transition: all .2s ease-in-out;
                        transition: all .2s ease-in-out;
                    }

                    .sidebar .sidebar-body .nav .nav-item .nav-link .link-icon {
                        width: 18px;
                        height: 18px;
                        font-size: 20px;
                        position: absolute;
                        color: #5c5f62;
                    }

                    .sidebar .sidebar-body .nav .nav-item .nav-link .link-arrow {
                        width: 14px;
                        height: 14px;
                        margin-left: auto;
                        -webkit-transition: all .3s ease;
                        -webkit-transition: all .3s ease-in-out;
                        transition: all .3s ease-in-out;
                        color: inherit;
                    }

                .sidebar .sidebar-body .nav .nav-item.dropdown:after {
                    content: '';
                    width: 18px;
                    height: 18px;
                    display: block;
                    top: 7px;
                    right: 10px;
                    position: absolute;
                    background: url(../images/arrow.svg);
                    background-repeat: no-repeat;
                    background-position: center;
                    background-size: 15px;
                }

                .sidebar .sidebar-body .nav .nav-item.dropdown.active:after {
                    transform: rotate(180deg);
                }

                .sidebar .sidebar-body .nav .nav-item.active .collapse {
                    display: block;
                }

                .sidebar .sidebar-body .nav .nav-item .sub-menu {
                    padding: 2px 0 10px 20px
                }

                    .sidebar .sidebar-body .nav .nav-item .sub-menu a {
                        font-weight: 500;
                        font-size: 14px;
                        color: #6d7175;
                    }





.sidebar {
    position: fixed;
    background: #fff;
    top: 0;
    left: -240px;
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
}

.menu-opened .sidebar {
    left: 0;
}

.menu-toggler {
    display: block;
}

.sidebar .menu-toggler {
    position: absolute;
    top: 12px;
    left: 100%;
    background: #fff;
}

.menu-opened .sidebar .menu-toggler {
    display: block !important;
    margin-left: 10px;
}




/* CARD */
.card {
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 0 5px rgba(23,24,24,0.05), 0 1px 2px rgba(0,0,0,0.15);
    outline: 1px solid transparent;
    border: 0;
}

.card-header {
    background: #fff;
    border-radius: 0.5rem 0.5rem 0 0 !important;
    padding: 8px 10px;
    color: #100;
    border-bottom: 1px solid #e1e3e5;
}

    .card-header .title {
        font-weight: 600;
        font-size: 1.1rem;
        padding: 0.1rem 0.35rem;
    }

    .card-header .nav {
        margin: -8px -10px;
        padding: 0 8px;
    }

        .card-header .nav a:before {
            content: "";
            position: absolute;
            background: transparent;
            bottom: 0;
            left: 3px;
            right: 3px;
            height: 3px;
            border-top-left-radius: 3px;
            border-top-right-radius: 3px;
        }

        .card-header .nav a {
            padding: 15px 20px;
            position: relative;
            font-size: 14px;
            color: #6d7175;
        }

            .card-header .nav a:hover {
                color: #2047ac;
            }

                .card-header .nav a:hover:before {
                    background: #b0b5bb;
                }

            /*.card-header .nav a.active:before {
                background: var(--bs-primary);
            }*/
            .card-header .nav a.active:before {
                background: #2047ac;
            }

            .card-header .nav a.active {
                color: #2047ac;
            }

.card-body {
    padding: 2rem;
}

.card.disabled {
    opacity: 0.5;
    overflow: hidden;
}

.card.closed .card-body, .card.closed .card-footer {
    display: none;
}

.card.card-lg .card-header {
    padding: 15px;
}

    .card.card-lg .card-header .title {
        font-size: 1.2rem;
    }


/* BUTTONS */
.btn:not(.btn-sm, .btn-outline-primary) {
    font-weight: 500;
    border-color: transparent;
    box-shadow: 0 1px 0 rgba(0,0,0,0.05), inset 0 -2px 0 rgba(0,0,0,0.2);
    border-radius: 4px;
    padding: 0 16px 2px;
    line-height: 32px;
    min-height: 36px;
    min-width: 80px;
}

.btn-primary {
    background: var(--bs-primary);
}

    .btn-primary:hover {
        background: #36af89;
        border-color: transparent;
        color: #fff;
        text-decoration: none;
    }

.secondary-button {
    background: transparent;
    font-weight: 500;
    border-color: transparent;
    color: #1a1a1a;
    border-radius: 4px;
    padding: 7px 16px;
    min-height: 36px;
    min-width: 36px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.btn-check + .btn-sm {
    height: 20px;
    line-height: 18px;
    padding: 0 6px;
}

.btn.btn-bordered {
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    box-shadow: none !important;
    line-height: 34px;
    color: #555;
    font-weight: 500;
}


/* PAGE HEADER */
.page-header {
    display: flex;
    justify-content: space-between;
    margin: 0 0 20px;
    align-items: center;
}

    .page-header .page-title h1 {
        font-weight: 600;
        font-size: 20px;
        line-height: 28px;
        margin: 0;
    }

    .page-header .page-actions {
        text-align: right;
    }

/* PAGE ELEMENTS */
.back-btn {
    border: 0;
    background: transparent;
    padding: 0;
    outline: 0;
    cursor: pointer;
    vertical-align: middle;
    margin: 0 5px 0 0;
}

    .back-btn:focus {
        outline: 0;
    }

.close-btn {
    border: 0;
    height: 36px;
    background: #ffdede;
    border: 1px solid #f8b8b8;
    border-radius: 4px;
}

    .close-btn span {
        font-size: 18px;
        line-height: 34px;
        color: #ae4747;
    }

    .close-btn:hover {
        background: #f8b8b8;
    }

    .close-btn:focus {
        outline: 0;
    }




/* TABLES */
.table-wrap .table {
    width: 100%;
    min-width: 590px;
    border-collapse: collapse;
}

    .table-wrap .table.dataTable {
        width: 100%;
        min-width: 750px;
    }

.table th, .table td {
    font-size: 14px;
    vertical-align: middle;
}

.table th {
    font-weight: 500;
}

.table td {
    padding-top: 16px;
    padding-bottom: 16px;
}

.table:not(.table-bordered) tr:last-child td {
    border: 0;
}

.table thead th {
    border-bottom: 1px solid #eee !important;
}

.table .preview-img {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    border: 1px solid #c9cccf;
    background: #fff;
}

    .table .preview-img svg {
        width: 20px;
        height: 20px;
        opacity: 0.45;
    }

.table .details-control {
    cursor: pointer;
}

    .table .details-control.shown {
        font-weight: bold;
    }

    .table .details-control:before, .table .details-control1:before {
        content: '+';
        background: #eee;
        border: 2px solid #9a9a9a;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        display: inline-block;
        vertical-align: middle;
        margin: 0 5px 0 0;
        line-height: 0;
        padding: 6px 2px;
        text-align: center;
        font-weight: bold;
        font-size: 16px;
        cursor: pointer;
        color: #555;
    }

    .table .details-control.shown:before {
        content: '-';
    }

.table tr.sub-row {
    display: none;
}

    .table tr.sub-row td {
        background: #f7f7f7;
    }

.table th:first-child, .table td:first-child {
    padding-left: 18px;
}

.table.valign-top td {
    vertical-align: top;
}



/* DATATABLE */
/* .dataTable tr:hover td, .dataTable tr:hover th {background:#edf4fe;} */
.dataTables_wrapper > .row:nth-child(1), .dataTables_wrapper > .row:nth-child(3) {
    padding-left: 18px;
    padding-right: 18px;
}

    .dataTables_wrapper > .row:nth-child(1) > * {
        width: 100%;
    }

.dataTables_wrapper .dataTable.table {
    margin: 0 0 15px 0 !important;
}

.dataTables_wrapper .dataTables_filter {
    position: relative;
    margin: 0;
}

    .dataTables_wrapper .dataTables_filter label {
        display: block;
        font-size: 0;
    }

.dataTables_filter input {
    background: url(../images/icon-search.svg) no-repeat;
    background-position: left 8px center;
    border: 1px solid #c9ccd0;
    border-radius: 4px;
    width: 100% !important;
    margin: 0 !important;
    line-height: 24px;
    padding: 5px 10px 5px 35px;
}

    .dataTables_filter input:focus, .dataTables_filter input:active {
        border-color: #888;
        outline: 0;
    }

.dataTables_length {
    display: none;
}

    .dataTables_length select {
        border: 1px solid #c9ccd0;
        border-radius: 4px;
        line-height: 24px;
        padding: 5px 10px;
        min-width: 80px;
        height: auto;
    }

        .dataTables_length select:focus, .dataTables_length select:active {
            border-color: #888;
            outline: 0;
        }

.dataTables_info {
    width: 50%;
    float: left;
    padding: 0 0;
    text-align: left !important;
}

.dataTables_paginate {
    width: 50%;
    float: right;
    padding: 0 15px;
    text-align: right;
}

table.dataTable > thead .sorting:before, table.dataTable > thead .sorting:after, table.dataTable > thead .sorting_asc:before, table.dataTable > thead .sorting_asc:after, table.dataTable > thead .sorting_desc:before, table.dataTable > thead .sorting_desc:after, table.dataTable > thead .sorting_asc_disabled:before, table.dataTable > thead .sorting_asc_disabled:after, table.dataTable > thead .sorting_desc_disabled:before, table.dataTable > thead .sorting_desc_disabled:after {
    bottom: 0.55em !important
}

th.no-sort:before, th.no-sort:after {
    display: none !important;
}

th.no-sort {
    padding: 6px 5px !important;
}

.billing-transaction-grid .table {
    min-width: 900px;
}

.dataTable .even td {
    background: #f0f4f4;
}

.dataTable tr td table .even td {
    background: #efefef;
}

.dataTable tr td table table th {
    background: #bfbfbf;
}

.dataTable tr td table table .even td {
    background: #dadada;
}

/* MISC */
.card.hide-block .card-body, .actions.hide-block {
    display: none;
}

.card.hide-block {
    opacity: 0.4;
}


.billing-transaction-grid .dataTables_filter {
    width: 70%;
    width: calc(100% - 300px);
}

.billing-transaction-grid .warehouse-filter {
    position: absolute;
    right: 15px;
}

    .billing-transaction-grid .warehouse-filter select {
        width: 275px;
        height: 36px;
    }

.modal-dialog {
    max-width: 600px;
    width: 95%;
}

.tooltip-help {
    display: inline-block;
}

    .tooltip-help:before {
        content: 'info';
        font-family: 'Material Icons';
        font-weight: normal;
        font-style: normal;
        color: #98aebe;
        cursor: pointer;
    }

.tooltip.show {
    opacity: 1;
}

.tooltip-inner {
    max-width: 280px;
    padding: 0.85rem;
    text-align: left;
    background: #374055;
}

.tooltip {
    background: white !important;
    margin-top: 5px !important;
}

.tooltip-arrow {
    transform: translate(115px, -6px) !important;
}

    .tooltip-arrow:before {
        border-bottom-color: white !important;
    }


.tooltip-inner h6 {
    color: #01987a;
    font-size: 16px;
    margin-bottom: 3px;
}

.tooltip-inner p {
    color: #9f9d9d;
}

.tooltip-inner img {
    width: 100%;
}

.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before, .bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #374055;
}

.tooltip {
    color: #fff;
    padding: 7px;
    border: 0px;
    border-radius: 5px;
    width: 240px;
    box-shadow: 0px 1px 2px rgba(128,138,157,0.12),0px 8px 32px rgba(128,138,157,0.24);
}

    .tooltip p {
        margin: 0;
    }

    .tooltip img {
        max-width: 100%;
        margin: 5px 0;
    }



/* PRIMARY COLOR */
.btn-outline-primary {
    color: var(--bs-primary);
    border-color: var(--bs-primary);
}

    .page-item.active .page-link, .btn-check:active + .btn-outline-primary, .btn-check:checked + .btn-outline-primary, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show, .btn-outline-primary:active {
        background: var(--bs-primary);
        border-color: var(--bs-primary);
    }

.text-primary {
    color: var(--bs-primary);
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--bs-primary);
}



/* REGISTER PAGE */
.signin-form-wrapper {
    max-width: 400px;
    padding: 20px;
    min-height: 100vh;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* REPORT TABLE */

.report-wrap .dataTables_wrapper .row {
    padding: 0;
    margin: 0 -15px 10px;
}

.report-wrap table {
    margin: 0;
}

.report-wrap table {
    width: 100% !important;
    background: #fff;
    font-size: 12px;
    margin-bottom: 1rem;
    color: #212529;
    vertical-align: top;
    caption-side: bottom;
    border-collapse: collapse;
}

    .report-wrap table thead {
        background: #dfdfdf;
        vertical-align: bottom;
        font-size: 12px;
        text-align: center;
    }

        .report-wrap table thead th {
            padding-top: 5px;
            padding-bottom: 5px;
        }

    .report-wrap table td {
        padding: 5px;
        vertical-align: middle;
    }

    .report-wrap table > tbody > tr.even td {
        background: #f7f7f7;
    }

.report-wrap .details > td {
    padding: 10px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    background: rgb(247,247,247);
    background: -moz-linear-gradient(top, rgba(247,247,247,1) 0%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(top, rgba(247,247,247,1) 0%,rgba(255,255,255,1) 100%);
    background: linear-gradient(to bottom, rgba(247,247,247,1) 0%,rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#ffffff',GradientType=0 );
}


/* Overview Grid */
.overview-grid {
    overflow-x: auto;
    margin: 0 0 35px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #dee2e6;
}

    .overview-grid table {
        margin: 0 !important;
        width: 100%;
        background: #fff;
        color: #212529;
        vertical-align: top;
        caption-side: bottom;
        border-collapse: collapse;
    }

        .overview-grid table thead {
            background: #2b385a;
            vertical-align: bottom;
        }

        .overview-grid table th {
            vertical-align: middle;
            font-weight: bold;
            padding: .75rem .75rem;
            border-left: 1px solid #2047ac;
            color: #fff;
            font-size: 14px;
            text-align: center;
        }

        .overview-grid table tbody {
            border-right: 1px solid #dee2e6
        }

        .overview-grid table td {
            border-bottom: 1px solid #dee2e6;
            padding: .75rem .75rem;
            font-size: 13px;
            white-space: nowrap;
            text-align: right;
            vertical-align: middle;
        }

        .overview-grid table tr:last-child td {
            border-bottom: 0;
        }

        .overview-grid table td:first-child, .overview-grid table td:nth-child(2) {
            text-align: left;
        }

        .overview-grid table td thead {
            background: #dee2e6;
        }

            .overview-grid table td thead th {
                color: #212529;
                padding: 0.4rem;
                border: 1px solid #ccc;
            }

.stats-table {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 0 0 10px;
}

    .stats-table table td {
        border: 0 !important;
    }


.finance-wrapper {
}

    .finance-wrapper table {
        margin: 0;
    }

    .finance-wrapper .main-table {
        border-radius: 8px;
        overflow: hidden;
        margin-top: 0 !important;
    }

    .finance-wrapper table {
        width: 100%;
        background: #fff;
        margin-bottom: 1rem;
        color: #212529;
        vertical-align: top;
        caption-side: bottom;
        border-collapse: collapse;
    }

        .finance-wrapper table thead {
            background: #2b385a;
            vertical-align: bottom;
        }

        .finance-wrapper table th {
            font-weight: bold;
            padding: .75rem .5rem;
            border-left: 1px solid #2047ac;
            color: #fff;
            font-size: 14px;
            text-align: center;
        }

        .finance-wrapper table tbody {
            border-right: 1px solid #dee2e6
        }

        .finance-wrapper table td {
            border: 1px solid #dee2e6;
            padding: .5rem .5rem;
            font-size: 13px;
            white-space: nowrap;
            text-align: right;
            vertical-align: middle;
        }

            .finance-wrapper table td:first-child, .finance-wrapper table td:nth-child(2) {
                text-align: left;
            }

    .finance-wrapper tr.subgrid-wrap {
        display: none;
        background: #f7f7f7;
    }

        .finance-wrapper tr.subgrid-wrap > td {
            padding: 20px;
            border: 1px solid #dee2e6 !important;
        }

    .finance-wrapper table td thead {
        background: #dee2e6;
    }

        .finance-wrapper table td thead th {
            color: #212529;
            padding: 0.4rem;
            border: 1px solid #ccc;
        }

    .finance-wrapper .toggle, .finance-wrapper .subtoggle {
        margin: -5px auto;
        width: 20px;
        height: 20px;
        text-align: center;
        line-height: 17px;
        font-size: 14px;
        background: #fff;
        border-radius: 50%;
        border: 1px solid #ddd;
        cursor: pointer;
    }

        .finance-wrapper .toggle:hover, .finance-wrapper .subtoggle:hover {
            background: #f7f7f7;
        }

        .finance-wrapper .toggle:before, .finance-wrapper .subtoggle:before {
            content: '+';
            font-weight: normal;
        }

    .finance-wrapper .collapsed .toggle:before {
        content: '-';
    }

    .finance-wrapper .toggle.open:before, .finance-wrapper .subtoggle.open:before {
        content: '-';
    }


.groupheader {
    cursor: pointer;
}

    .groupheader .toggle {
        margin: -5px auto;
        width: 20px;
        height: 20px;
        text-align: center;
        line-height: 17px;
        font-size: 14px;
        background: #fff;
        border-radius: 50%;
        border: 1px solid #ddd;
        cursor: pointer;
    }

        .groupheader .toggle:hover {
            background: #f7f7f7;
        }

        .groupheader .toggle:before {
            content: '+';
            font-weight: normal;
        }

    .groupheader .collapsed .toggle:before {
        content: '-';
    }

    .groupheader .toggle.open:before {
        content: '-';
    }

.summary-table {
    overflow-x: auto;
    margin: 0 0 35px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #dee2e6;
}

    .summary-table .main-table {
        border-radius: 8px;
        overflow: hidden;
        margin: 0 !important;
    }

    .summary-table table {
        width: 100%;
        background: #fff;
        margin-bottom: 1rem;
        color: #212529;
        table-layout: fixed;
        vertical-align: top;
        caption-side: bottom;
        border-collapse: collapse;
    }

        .summary-table table thead {
            background: #2b385a;
            vertical-align: bottom;
        }

        .summary-table table th {
            font-weight: bold;
            padding: .75rem .5rem;
            border-left: 1px solid #2047ac;
            color: #fff;
            font-size: 14px;
            text-align: center;
        }

        .summary-table table tbody {
            border-right: 1px solid #dee2e6
        }

        .summary-table table td {
            border-right: 1px solid #dee2e6;
            border-bottom: 1px solid #dee2e6;
            padding: .5rem .5rem;
            font-size: 13px;
            vertical-align: middle;
        }

            .summary-table table td:last-child {
                border-right-color: transparent;
            }

        .summary-table table tr:last-child td {
            border-bottom: 0;
        }

.yellow-row > td {
    background: #fffff1
}

.blue-row > td {
    background: #f3feff
}

.green-row > td {
    background: #f0ffdc
}

.header-nav .nav-link {
    color: #212529;
    border-radius: 4px;
    padding: 8px 10px !important;
}

    .header-nav .nav-link.active {
        background: #eaf9f6;
        color: var(--bs-primary)
    }

.dropdown-item.active, .dropdown-item:active {
    background: var(--bs-primary);
    color: #fff !important;
}

    .dropdown-item.active:hover, .dropdown-item:active:hover {
        color: #fff !important;
    }

.table-scrollable {
    overflow: auto;
}



/* ********************************** */
/* **********  RESPONSIVE  ********** */
/* ********************************** */

@media (max-width:1400px) {
    .finance-detail-grids .col-xl-6 {
        width: 100%;
    }
}

@media (max-width:1200px) {
    .main-wrapper .page-wrapper .wrapper-sm {
        margin: 0 -30px;
        max-width: 1200px;
    }

    .table-wrap {
        overflow-x: auto;
        overscroll-behavior-x: contain;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    /* PALLET ITEM */
    .pallets-item__wrapper .pallets-item .dimension label {
        white-space: nowrap;
    }

    .overview-grid {
        overflow: auto;
    }
}

@media (max-width:992px) {



    .billing-transaction-grid .warehouse-filter {
        position: static;
        padding: 0 18px 18px;
    }

        .billing-transaction-grid .warehouse-filter select {
            width: 100%;
        }

    .billing-transaction-grid .dataTables_filter {
        width: 100%;
    }

    .overview-grid {
        overflow: auto;
    }
}

@media (max-width:768px) {
    html {
        font-size: 13px;
    }


    .card-body {
        padding: 1rem;
    }

        .card-body .table-wrap.grid-wrap {
            margin-left: -1rem !important;
            margin-right: -1rem !important;
        }



    .page-header {
        flex-direction: column;
        align-items: start;
    }

        .page-header .page-title h1 {
            margin: 0 0 10px;
        }

    .dataTables_wrapper > .row:last-child > * {
        width: 100%;
    }

    .dataTables_wrapper .dataTables_info {
        float: none;
        margin: 0 auto 10px;
        width: 100% !important;
        text-align: center !important;
    }

    .dataTables_wrapper div.dataTables_paginate {
        margin: 0 auto !important;
        float: none;
    }

    div.dataTables_wrapper div.dataTables_paginate ul.pagination {
        justify-content: center !important;
        margin: auto !important;
    }


    .table-responsive-column table {
        display: block;
        width: 100% !important;
        min-width: 0 !important;
    }

        .table-responsive-column table tbody, .table-responsive-column table tr {
            display: block;
            width: 100% !important;
        }

        .table-responsive-column table td {
            display: block;
            width: 100% !important;
            border-bottom: 1px solid #eee;
        }

    .finance-wrapper, .overview-grid {
        overflow: auto;
    }
}

#payrollgrid {
    width: 100% !important;
}

.badge {
    background-color: gray;
    cursor: pointer;
    color: white;
}

    .badge.active {
        background-color: #2b385a;
    }

table.dataTable tr.dtrg-group td {
    background-color: #f2f2f2 !important;
}

.finance-wrapper table#payrollgrid td:nth-child(2) {
    text-align: right !important;
}

.report-filters-link td {
    padding: 10px 0;
}

.report-filters-link span {
    border-bottom: 1.5px solid #000; /* margin: 0 12px 0 0; */
    display: inline-block;
    cursor: pointer;
}

    .report-filters-link span:hover {
        color: gray;
        border-color: gray;
    }

    .report-filters-link span.active {
        color: #fff;
        border-color: #2b385a;
    }


.export-btn {
    float: right;
}

.btn.edit-text-button.material-icons, .btn.edit-dropdown-button.material-icons, .btn.edit-date-button.material-icons {
    font-weight: 500;
    min-width: 20px !important;
    min-height: 20px !important;
    font-size: 11px;
    color: white;
    background: #2b385a;
}

.dataTables_filter {
    display: none;
}

.filter-area {
    position: absolute;
    top: 50%;
    z-index: 9;
    right: 5px;
    transform: translateY(-50%);
}

.child_table .filter-area {
    z-index: 8;
}

.finance-wrapper .main-table {
    overflow: unset;
}

.filter-area .custom-filter {
    display: none;
    background: white;
    color: #2b385a;
    padding: 0;
    border-radius: 5px;
    margin-top: 20px;
    min-width: 270px;
    box-shadow: 0px 7px 8px 1px rgba(0,0,0,0.2);
    overflow: hidden;
    position: absolute;
    top: 5px;
}

.btn-success {
    background-color: #A39558;
}
    .btn-success:hover {
        background-color: #A39558;
    }

table thead th:last-child .filter-area .custom-filter {
    right: 0;
}

.filter-area .custom-filter > p {
    background: #f1f1f1;
    padding: 6px;
    margin: 0;
}

.filter-area .custom-filter .filters {
    overflow-y: scroll;
    overflow-x: hidden;
    max-height: 200px;
    padding: 5px;
}

.filter-area .custom-filter input[type="text"] {
    margin: 5px;
    width: 96%;
}

.custom-filter > div::-webkit-scrollbar {
    width: 5px;
}

.custom-filter > div::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

.custom-filter > div::-webkit-scrollbar-thumb {
    background-color: #2b385a;
    outline: 1px solid slategrey;
}

.custom-filter.open {
    display: block;
}

.custom-adv-filter-head, .custom-filter-head {
    position: relative !important;
    vertical-align: middle;
}

.custom-adv-filter-head,
.custom-filter-head {
    padding-right: 32px !important;
}

.filter-area > .fa {
    font-size: 16px;
    cursor: pointer;
}

.filter-area > .fa-times {
    font-size: 14px;
    margin-right: 5px;
}

.filter-area .fa.fa-times {
    margin-left: 10px;
}

.chart-area {
    position: relative;
}

#btnDisplayPid {
    position: absolute;
    z-index: 1;
    right: 0;
    top: 12px;
    min-height: 30px;
    max-height: 30px;
    line-height: 10px;
}

.custom-filter.open label {
    width: 50%;
    text-align: left;
    float: left;
    font-weight: 500;
    padding: 3px;
}

    .custom-filter.open label input {
        margin-right: 5px;
    }

.sorting-option > span > p {
    text-align: left;
    padding: 5px;
    margin: 0;
    cursor: pointer;
}

    .sorting-option > span > p > i {
        margin-right: 5px;
    }

.filter-btn-group {
    padding: 5px;
    text-align: right;
}

    .filter-btn-group .btn {
        margin-left: 5px;
    }

.editabledropdown select {
    appearance: auto;
}


td.details-control:before,
td.details-control1:before,
td.details-control2:before {
    content: '+';
    font-weight: normal;
    margin: -5px auto;
    width: 20px;
    height: 20px;
    display: block;
    text-align: center;
    line-height: 17px;
    font-size: 14px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #ddd;
    cursor: pointer;
}

td.details-control,
td.details-control1,
td.details-control2 {
    cursor: pointer
}

tr.shown td.details-control:before,
tr.shown td.details-control1:before,
tr.shown td.details-control2:before {
    content: '-';
}

.export-buttons {
    padding-bottom: 5px;
    padding-left: 5px;
}

.tooltip-arrow {
    bottom: 3px;
}

.tooltip.bs-tooltip-top {
    color: black;
    background: white;
}

.tooltip-inner {
    padding: 0;
    background: white;
    color: black;
}

.tooltip-arrow {
    bottom: -7px !important;
}

.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: white !important;
}

.breadcrumb a:hover {
    color: #37856c;
}

.breadcrumb {
    border: 1px solid rgb(0 0 0 / 9%);
    background: white;
    padding: 10px;
    border-radius: 4px;
    margin: 0 0 15px;
}

li.breadcrumb-item {
    font-size: 16px;
    position: relative;
    padding-right: 25px;
    font-weight: 500;
}

    li.breadcrumb-item.active {
        font-weight: 600;
        font-size: 16px;
    }

.breadcrumb-item + .breadcrumb-item::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 42px;
    height: 42px;
    top: -9px;
    right: 50px;
    left: -46px;
    background-color: transparent;
    border-top-right-radius: 5px;
    transform: scale(0.707) rotate(45deg);
    box-shadow: 0.5px -0.5px rgb(0 0 0 / 25%);
    z-index: 1;
}

.tooltip-inner a, .tooltip-inner a:hover {
    color: #01987a;
}

.negative-number {
    color: #d74343;
}

    .negative-number:before {
        content: '\f0d7';
        font: normal normal normal 14px/1 FontAwesome;
        margin-right: 7px;
        color: #d74343;
    }

.positive-number {
    color: #2ba53a;
}

    .positive-number:before {
        content: '\f0d8';
        font: normal normal normal 14px/1 FontAwesome;
        margin-right: 7px;
        color: #2ba53a;
    }

td.dataTables_empty {
    padding: 20px !important;
    text-align: center !important;
}

    td.dataTables_empty .reloadFinancialGrid {
        height: 30px;
        border: 1px solid #999;
        background: #f7f7f7;
        color: #222;
        border-radius: 3px;
        margin: 0 0 0 10px;
    }

        td.dataTables_empty .reloadFinancialGrid:hover {
            background: #222;
            color: #fff;
        }

.btn.btn-secondary.active {
    background: #A39558;
}

.center-1 .page-title, .center-1 .title {
    width: 100%;
    display: block;
        text-align: left;
}

.project-overview-card {
    background-color: #f0f4f4 !important;border: 1px solid #d9d9d9;border-bottom: 4px solid #2047ac;border-radius: 7px; box-shadow: 0 1px 0 rgb(0 0 0 / 5%);
}



.btn-check:active+.btn-success, .btn-check:checked+.btn-success, .btn-success.active, .btn-success:active, .show>.btn-success.dropdown-toggle, .btn-check:focus+.btn-success, .btn-success:focus{ background-color: #A39558; }


html body {
        background: #e3e3e3;
    }

    .main-wrapper {
        background-color: transparent;
        overflow: unset;
    }

   .page.login-page{ background-color: white; }


/* scroll css start */
  .scroll::-webkit-scrollbar-track{ box-shadow: inset 0px 0px 1px rgba(0,0,0,0.1);  border-radius: 0px; background-color: transparent;display:none;}
  .scroll::-webkit-scrollbar{  width: 0;   background-color: transparent;display:none;}
  .scroll::-webkit-scrollbar:hover{width:0;}
  .scroll::-webkit-scrollbar-thumb{  border-radius: 0;   box-shadow:0 0 1px rgba(0,0,0,0.1); background-color: transparent;}
/* scroll css close */

/* scroll-bar css start */
  .scroll-bar::-webkit-scrollbar-track{ box-shadow: inset 0px 0px 1px rgba(0,0,0,0.1);  border-radius: 0px; background-color: transparent;}
  .scroll-bar::-webkit-scrollbar{  width: 7px;   background-color: transparent;}
  .scroll-bar::-webkit-scrollbar:hover{width:7px;}
  .scroll-bar::-webkit-scrollbar-thumb{  border-radius: 0;   box-shadow:0 2px 3px rgba(0,0,0,0.3); background-color: #fff;}
/* scroll-bar css close */




.mw-30{ min-width: 30px !important; }
.mw-50{ min-width: 50px !important; }
.mw-70{ min-width: 70px !important; }
.mw-100{ min-width: 100px !important; }
.mw-120{ min-width: 120px !important; }
.mw-150{ min-width: 150px !important; }
.mw-170{ min-width: 170px !important; }
.mw-200{ min-width: 200px !important; }
.mw-220{ min-width: 220px !important; }
.mw-250{ min-width: 250px !important; }
.mw-270{ min-width: 270px !important; }
.mw-300{ min-width: 200px !important; }
.mw-320{ min-width: 320px !important; }
.mw-350{ min-width: 350px !important; }

/* max-width css start */
.max-width-30{ max-width: 30px !important; }
.max-width-50{ max-width: 50px !important; }
.max-width-70{ max-width: 70px !important; }
.max-width-100{ max-width: 100px !important; }
.max-width-120{ max-width: 120px !important; }
.max-width-150{ max-width: 150px !important; }
.max-width-170{ max-width: 170px !important; }
.max-width-200{ max-width: 200px !important; }
.max-width-220{ max-width: 220px !important; }
.max-width-250{ max-width: 250px !important; }
.max-width-270{ max-width: 270px !important; }
.max-width-300{ max-width: 300px !important; }
.max-width-320{ max-width: 320px !important; }
.max-width-350{ max-width: 350px !important; }


/* barcode font family */
.barcode-font{ font-family: 'Libre Barcode 128', cursive !important;user-select: none;cursor: pointer; }
.menu-dropdown-btn{ display: none; }


.account-dropdown .dropdown-toggle{ display: flex;width: 40px;height: 40px;flex-wrap: wrap;align-items: center;overflow: hidden; }
.account-dropdown .dropdown-toggle:after{ content:"";display: none; }

.notification-dropdown .dropdown-notification-btn{ display: flex;width: 40px;height: 40px;flex-wrap: wrap;align-items: center;overflow: hidden;cursor: pointer; }
.notification-dropdown .dropdown-notification-btn:after{ content:"";display: none; }

.account-dropdown .dropdown-menu{ width: 100%;min-width: 300px;max-width: 300px;padding: 0px;cursor: pointer; }
.dropdown-toggle{ min-width: auto;width: 40px;height: 40px;margin: 0 10px;cursor: pointer; }
.customer-info a{ padding: 12px 15px; }
.customer-info .profile{ display: inline-block;border-radius: 50%; position: relative; overflow: hidden; height:40px;width: 40px; }
.customer-info .content{ display: inline-block;width: calc(100% - 40px);padding: 4px 5px; }
.account-dropdown .nav.nav-tabs .nav-link{ position: relative; }
.account-dropdown .nav.nav-tabs .nav-link.active:after{ content: "";width: 80%;border-bottom: 1px solid #333;display: block;position: absolute;bottom: -1px;left: 10px;right: 10px; }

.ui-icon.ui-icon-gripsmall-diagonal-se.left-side{transform: rotate(90deg);bottom: 0;left: 0px; }

.notification-dropdown .dropdown-menu{ max-width: unset;min-width: 400px;left: auto !important;right: 0 !important; }
.notification-dropdown .dropdown-menu.parent-notify-dropdown{min-height: 200px; height: 500px; overflow: hidden;}
.notify-list { list-style: none;position: relative;max-height: 80vh;overflow: hidden;overflow-y: auto;}
.notify-list li{ cursor: pointer; }
.notify-list a{ padding: 2px; }

.dropdown-item.nav-link.active .dropdown-todo-btn{ color: #333; }

.popout-notify-nav .nav-link.active{ background-color: var(--bs-primary);color: #fff; }
.notification-info.bg-light{ background-color: #f0f4f4 !important; }

.group-list-li ul li.notification-info:first-child{ display: block; }
.group-list-li ul li.notification-info{display: none;}
.group-list-li.show { background-color: #c4e6e6; }
.group-list-li.show ul li{display: block;}
.expand-more-btn{ transition: 0.1s; }
.group-list-li.show .expand-more-btn{ transform: rotate(-180deg); }
.expand-more-btn{ min-width: auto !important;cursor: pointer; }

.group-list-li.show  .notification-info.bg-light{ background-color: #c4e6e6 !important; }

.navbar-nav .nav-link{ margin: 0px; }

.search-option{position: relative;display: flex;align-items: center;}
.search-control-wrap{ position: relative;display: flex;align-items: center;width: 100%;border: 1px solid #d9d9d9;border-radius: 30px;z-index: 3; }
.search-option input{min-height: 39px;min-width: 200px;font-size: 14px;border: none;outline: none !important;box-shadow: none !important;border-radius: 30px;padding: 3px 17px;}
.search-option .search-project-btn{display: flex;height: 40px;min-width: 40px;padding: 0px;align-content: center;justify-content: center;align-items: center;box-shadow: none;border: 0px;flex-wrap: wrap;}
.searchbox-sheet { top: 40px;position: absolute;transition: 0s;display: none;flex-wrap: wrap;width: 100%;min-height: 70px;max-height: 230px;overflow: hidden;overflow-y: auto; background-color: #fff;border-radius: 0 0 20px 20px;border: 1px solid #d9d9d9;box-shadow: 0 2px 3px rgb(0 0 0 / 7%); }
.searchbox-sheet ul{ list-style: none;padding: 0px; width: 100%; }
.searchbox-sheet ul li{ width: 100%; }
.searchbox-sheet ul li a{ display: flex;align-items: center; gap: 5px; transition: 0.2s; padding: 7px 15px;font-size: 15px;text-decoration: none; border-bottom: 1px solid #d9d9d9;width: 100%; }
.searchbox-sheet ul li a .project-search-icon{min-height: 35px;min-width: 35px;display: flex;flex-wrap: wrap;align-items: center;justify-content: center; border-radius: 50%;color: #fff;font-size: 20px;justify-content: center; }
.searchbox-sheet ul li a .project-search-text{ user-select: none;font-weight: 500; overflow: hidden; text-overflow: ellipsis;position: relative;white-space: nowrap; }
.searchbox-sheet ul li a:not(.nodata):hover { background-color: #1e89ff; }
.searchbox-sheet ul li a:not(.nodata):hover .project-search-text{ color: #fff; }

.searchbox-sheet ul li a.nodata { justify-content: center;padding: 10px 15px; }
.searchbox-sheet ul li a.nodata { color: #333;font-weight: 500;  }

.search-option.open .search-control-wrap{ border-radius: 15px 15px 0 0; }
.search-option.open .searchbox-sheet{ display: flex;border-radius: 0 0 15px 15px;box-shadow: 0 4px 4px rgb(0 0 0 / 4%); }

.btn-primary:hover{ background-color:#0d6efd; }

.copy-element{display: none;position: absolute;cursor: pointer;bottom: 0px;right: -3px;border-radius: 50%;padding: 5px;box-shadow: 0 3px 4px rgba(0,0,0,0.1);}
table td{ position: relative; }
table td:hover .copy-element{ display: inline-block; }
.copy-element:hover{background-color: #f7f7f7;}

/* open order status report page css start */
.openorderstatus-modal .row .vendor-col-sec .status-points { background-color: #fff !important; }
.status-points:after { content: "";display: block;width: 85%;position: absolute;top: 30px;left: 0px;right: 0px;height: 5px;margin: 0 auto;background-color: #d9d9d9;}
.its-vendor-point .status-points:before { content: "";display: block;width: 0%;position: absolute;top: 30px;left: 40px;right: auto;height: 5px;margin: 0 auto;background-color: #4c8bf5;z-index: 99;}
.its-vendor-point .status-points.tasrqst-success.vendntfd-success:before { width: 30%;}
.its-vendor-point .status-points.tasrqst-success.vendntfd-success.vendresp-success:before {width: 57%;}
.its-vendor-point .status-points.tasrqst-success.vendntfd-success.vendresp-success.poupdate-success:before {width: 80%;}
.its-vendor-point .status-points.tasrqst-success.vendntfd-success.vendresp-success.poupdate-error:after {background-color: red;}
.status-points {display: flex;flex-wrap: wrap;justify-content: space-between;align-items: center;width: 100%;position: relative;}
.status-points .point { display: flex;align-content: center;justify-content: center;align-items: center;flex-wrap: wrap;width: 100%;max-width: 100px;position: relative;}
.status-points .point-ball { display: block;width: 23px;height: 23px;border: 2px solid #fff;background-color: #d9d9d9;position: relative;border-radius: 50%;z-index: 99;}
.status-points .point-text { width: 100%;margin: 5px auto;display: block;font-size: 14px;text-align: center;}
.status-points.oa-success .point.oa .point-ball { background-color: #00bc61;}
.status-points.four-wk-success .point.wk-4 .point-ball {background-color: #00bc61;}
.status-points.two-wk-success .point.wk-2 .point-ball {background-color: #00bc61;}
.status-points.poa-success .point-ball {background-color: #00bc61 !important;}
.status-points.poa-success:after {content: "";background-color: #00bc61 !important;}
/*.its-vendor-point .status-points.rrdv-success .point.rrdv .point-ball{ background-color: #00ea7d; }
.its-vendor-point .status-points.vend-success .point.vend .point-ball{ background-color: #00ea7d; }
.its-vendor-point .status-points.pourdd-success .point.pourdd .point-ball{ background-color: #00ea7d; }
.its-vendor-point .status-points.rrdv-success.vend-success.pourdd-success:after{ content:"";background-color: #00ea7d !important; }*/
.its-vendor-point .status-points.tasrqst-success .point.tasrqst .point-ball {background-color: #4c8bf5;}
.its-vendor-point .status-points.vendntfd-success .point.vendntfd .point-ball {background-color: #4c8bf5;}
.its-vendor-point .status-points.vendresp-success .point.vendresp .point-ball { background-color: #4c8bf5; }
.its-vendor-point .status-points.poupdate-success .point.poupdate .point-ball {background-color: #4c8bf5;}
.its-vendor-point .status-points.tasrqst-success.vendntfd-success.poupdate-success:after {content: "";background-color: #4c8bf5 !important;}
.its-vendor-point .status-points.poupdate-error .point.poupdate .point-ball {background-color: red;}
.point-ball.blue-bg {background-color: #00ea7d;}



.tasks-status-points .status-points{ flex-wrap: nowrap;max-width: 1300px;margin:0 auto;padding: 0 15px; }
.tasks-status-points .status-points .point{ max-width: 60px; }
.tasks-status-points .status-points:before,
.tasks-status-points .status-points:after{ width: auto;left: 40px;right: 40px; }
.tasks-status-points .status-points:before{ width: 0px;margin: 0px; }

.font-size-0:not(th){ font-size: 0px !important; }
.md-width:not(th){ min-width: 650px !important; }
.confirm-action-box .ConfirmData-btn{ display: none; }
.confirm-action-box.show .ConfirmData-btn{ display: inline-block; }

.vendor-delivery-nav .nav-link{ background-color: #fff;color: #333; }
.vendor-delivery-nav .nav-link.active{ background-color: #0d6efd; }

/* The checkbox-button */
.checkbox-button {display: block;position: relative;padding:0px;margin: 0px auto;cursor: pointer;width:100%;font-size: 15px;-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none; }
/* Hide the browser's default checkbox */
.checkbox-button input { position: absolute;opacity: 0; cursor: pointer;z-index: -1;left:0px; }
/* Create a custom checkbox */
.checkmark {position: relative;min-height: 25px;border: 1px solid #ccc;background-color: #fff;padding: 1px 4px;display: block;text-align: center;}
.checkmark span{ text-align: center;font-weight: 500; }
/* On mouse-over, add a grey background color */
.checkbox-button:hover input ~ .checkmark { border-color: #ccc; }
/* When the checkbox is checked, add a blue background */
.checkbox-button input:checked ~ .checkmark {border-color: #2196F3; }
.checkbox-button input:checked ~ .checkmark span{ color: #2196F3; }
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after { content: "";position: absolute;display: none; }
/* Show the checkmark when checked */
.checkbox-button input:checked ~ .checkmark:after { display: block; }

/* just-checkbox css start */
.just-checkbox input{ position: unset;opacity: unset; z-index: 1; }

.table-th-p-0{ padding: 0px !important; }

.main-wrapper .page-header{ transition: 0.1s; }
.main-wrapper.fixed-second-header .page-header{ position: fixed;top:55px;left:0px;right: 0px;width:100%;background-color:#fff;z-index:99; }
.main-wrapper.fixed-second-header .page-header .page-title{ padding: 10px 37px; }

.main-wrapper .page-header .ConfirmAllData-btn{ display: none; }
.main-wrapper .page-header.show .ConfirmAllData-btn{ display: inline-block; }

.remove-pagging .dataTables_paginate{ display: none !important; }

.bg-orange{ background-color: #ffa500; }

.onlysort .group-option-div,
.onlysort .group-options,
.onlysort .filters,
.onlysort .filter-btn-group{ display: none !important; }

.close-search-project-btn{ display: none; }

/* zoom-in-animation css start */
.zoom-in-animation { animation-name: zoomInAnimation;animation-duration: 0.5s;animation-delay: 0s;animation-iteration-count: 1;animation-direction: alternate;transform: none;transition: 0.1s }
@keyframes zoomInAnimation { 0% { transform: scale(0.0); } }
/* zoom-in-animation css close */

/* fromtop-animation css start */
.fromtop-animation { animation-name: fromTopAnimation;animation-duration: 0.2s;animation-delay: 0s;animation-iteration-count: 1;animation-direction: alternate;transform: none;transition: 0.1s }
@keyframes fromTopAnimation { 0% { top: -50%; } }
/* fromtop-animation css close */

/* float-animation css start */
@keyframes float {
    0% {
        text-shadow: 0 5px 10px 0px rgba(0,0,0,0.6);
        transform: translatey(0px);
    }

    50% {
        text-shadow: 0 20px 10px 0px rgba(0,0,0,0.2);
        transform: translatey(-10px);
    }

    100% {
        text-shadow: 0 5px 10px 0px rgba(0,0,0,0.6);
        transform: translatey(0px);
    }
}
/* float-animation css close */


.skeleton-loading{ position: relative;overflow: hidden;min-height:20px;min-width: 50%;background-color: #f7f7f7 !important;font-size: 0px !important; }
.skeleton-loading div,
.skeleton-loading span,
.skeleton-loading p{ visibility: hidden; }
.skeleton-loading:before{content:"";position: absolute;top: 0px;bottom: 0px;left: 0px;display: block;width: 100%;height:100%;background-color: #f7f7f7 !important;z-index: 9;}
.skeleton-loading:after {content:"";z-index: 11;opacity: 0;top: 0px;bottom: 0px;left: -50%; min-width: 60%;height: 100%;display: block;position: absolute;background-color: #d9d9d9;animation-name: skeletonLoadingAnimation;animation-duration: 0.5s;animation-delay: 1s;animation-iteration-count: infinite;animation-direction: alternate;transform: none;transition: 0s;}
@keyframes skeletonLoadingAnimation { 0% { left: 100%; box-shadow: 0 3px 3px rgba(0,0,0,0.3); opacity: 1; }  }


/* scroll-bar css start */
.scroll-bar::-webkit-scrollbar-track { box-shadow: inset 0px 0px 1px rgba(0,0,0,0.1);border-radius: 0px;background-color: transparent; }
.scroll-bar::-webkit-scrollbar { width: 7px;background-color: transparent; }
.scroll-bar::-webkit-scrollbar:hover { width: 7px; }
.scroll-bar::-webkit-scrollbar-thumb { border-radius: 0;box-shadow: 0 2px 3px rgba(0,0,0,0.1);background-color: #d9d9d9; }
/* scroll-bar css close */


.main-table tbody .bg-danger {background-color: red !important;color: #fff;}
.main-table tbody .bg-light-danger {background-color: #feeceb !important;font-weight: 700;color: #b27d83;}
.main-table tbody .bg-light-yellow {background-color: #fff0bf !important;font-weight: 700;color: #b27d83;}
.main-table tbody .bg-light-blue {background-color: #c2e6ff !important;}


.mark-urgent-checkbox-btn .checkmark{ min-height: 36px; }
.mark-urgent-checkbox-btn .checkmark,
.mark-urgent-checkbox-btn .checkmark:hover{ color: red;border: 1px solid red !important; }
.mark-urgent-checkbox-btn input:checked ~ .checkmark{ color: #fff;background-color: red; }
.mark-urgent-checkbox-btn input:checked ~ .checkmark span{ color: #fff !important; }

.hot-topic-a.nav-link.active{ background: red; }
.hot-topic-a.nav-link span{ color: red; }
.hot-topic-a.nav-link.active span{ color: #fff; }

td.white-space-wrap{ white-space: normal !important; }

.attachment-span-element,
.attachment-span-element span{ cursor: pointer !important; }

.grid-loader {position:relative;}
.grid-loader:after { content: '';background: url(/Themes/TAS/Content/images/ajax-loader-small.gif) rgb(255 255 255 / 72%) center center no-repeat;display: block;position: absolute;z-index: 99;inset: 0;}

.hvh-100{ height: 100vh; }
.mx-hpr-100{ max-height: 100%; }

td.green-overlay-bg{ background-color: #009688 !important;color: #fff; }
td.orange-overlay-bg{ background-color: #f4511e !important;color: #fff; }
td.blue-overlay-bg{ background-color: #039be5 !important;color: #fff; }

td.light-purple-overlay-bg{ background-color: #ddebf7 !important; }
td.light-green-overlay-bg{ background-color: #E2EFD8 !important; }
td.light-red-overlay-bg{ background-color: #fce4d6 !important; }


/* custom datatable search css start */
.custom-datatable-clear-btn{ display: none; }
.custom-datatable-search.dirty .custom-datatable-clear-btn{ display: inline-block }

.main-table { position: relative; }
.main-table thead.sticky { display: none; }
.main-table thead.sticky.scroll { display: table;width: 100%;position: absolute;transition: 0s !important;z-index: 9999 }

/* virtualization css start */
.virtualization.material-wrapper.overview-grid{ overflow: hidden; }


/* .dataTables_scroll css start */
.dataTables_scroll .dataTables_scrollHead{ background: #2b385a; overflow: unset !important; }
.dataTables_scroll .dataTables_scrollHeadInner{ padding-left: 0px !important; padding-right: 0px !important;transition: 0s !important; }
.dataTables_scroll .dataTables_scrollHead::-webkit-scrollbar-track { background-color: transparent; width: 0px; }
.dataTables_scroll .dataTables_scrollHead::-webkit-scrollbar { background-color: transparent; width: 0px; }
.dataTables_scroll .dataTables_scrollHead::-webkit-scrollbar:hover { background-color: transparent; width: 0px; }
.dataTables_scroll .dataTables_scrollHead::-webkit-scrollbar-thumb { background-color: transparent; width: 0px; }
.dataTables_scroll .dataTables_scrollBody .main-table thead{ visibility: hidden !important; }


/* refresh-grid-remainder css start */
.refresh-grid-remainder{position: sticky;top: 58px;left: 0px;right: 0px;z-index: 100;display: flex;flex-wrap: nowrap;justify-content: space-between;align-items: center;padding: 5px;width: 100%;background-color: #039be5;color: #2047ac;} 
.refresh-grid-remainder .refresh-grid-remainder-wrap{ display: flex;flex-wrap: nowrap;justify-content: space-between;align-items: center; max-width: 1850px;width: 100%;margin: 0px auto; }
.refresh-grid-remainder .title{ font-size: 15px;font-weight: 500;color: #fff; }
.refresh-grid-button{background-color: #ffffff;color: #039be5 !important;font-weight: 600 !important;padding: 5px 10px !important;min-height: unset !important;min-width: 110px !important;line-height: normal !important;border-radius: 5px !important;box-shadow: 0 3px 4px rgba(0,0,0,0.2) !important;}


    .print-label-input[readonly]{ outline: none !important;box-shadow: none !important; }


/*  custom-confirm-popup-modal css start */
.custom-confirm-popup-modal{ z-index: 1200 !important; }



    
    /* popup-modal css start */
    .max-width-xxl.modal-dialog{ max-width: 1770px; }
    .max-width-xl.modal-dialog{ max-width: 1550px; }
    .max-width-lg.modal-dialog{ max-width: 1440px; }
    .max-width-md.modal-dialog{ max-width: 1200px; }
    .max-width-sm.modal-dialog{ max-width: 900px; }
    .blue-header { background-color: #2b385a;color: #fff; }
    .blue-header .btn-close{ font-size: 20px;color: #fff !important;opacity: unset;background-image: unset; }
    .light-gray-bg{ background-color: #f7f7f7; }
    .data-loaded:after{ display: none !important; }
    .custom-modal-stratch .modal-content{ height: calc(100vh - 100px);margin-top:30px;}
    .custom-modal-rounded .modal-content{ border: 1px solid #fff;border-radius: 12px;}


/* openorderreport css start ------------------------ */


    /* history-popup-modal css start */
    .history-popup-modal .modal-header { max-height: 40px;height: 100%;border-radius: 10px 10px 0 0;}
    .history-popup-modal .modal-header .btn-close{ font-size: 20px;color: #fff !important;opacity: unset;background-image: unset; }
    .history-popup-modal .modal-header .modal-title .title-span { display: block;font-size: 16px; }
    .history-popup-modal .modal-content{ height: calc(100vh - 100px);margin-top:30px;border: 1px solid #fff;border-radius: 12px; }
    
    /* chatbox-wrapper css start */
    .chatbox-wrapper .chatbox-messages{ overflow: hidden;overflow-y: auto;scroll-behavior: smooth; }
    .message-content-wrap{ max-width: 75%; }
    /* .chat-control css start */
    .chat-control { position: relative;border: 1px solid #d9d9d9;border-radius: 30px;margin: 0 auto;padding: 10px; }
    .chat-control textarea { display: flex;outline: none;font-size: 17px;line-height: normal;padding: 0px 10px;border-radius: 30px 30px 30px 30px;align-items: center;min-height: 30px;max-height: 200px; }
    .chat-control .chatbox-send-btn,
    .chat-control .OpenOrderStatusPopUp { margin: 0px;min-width: 30px;min-height: 30px;border-radius: 30px;font-size: 22px;display: none;padding: 0px 7px;align-items: center;justify-content: center; }
    .chat-control .OpenOrderStatusPopUp { display: flex;background-color: rgba(0,0,0,0.6); }
    .chat-control textarea:valid ~ .chatbox-send-btn { display: flex; }
    .chat-control.addingnote textarea,
    .chat-control.addingnote .chatbox-send-btn { opacity: 0.6;pointer-events: none;cursor: not-allowed; }
    /* mark-as-public-dropdown-menu .mark-as-public-dropdown-button css start */
    .chatbox-message-item .mark-as-public-dropdown-button{ border: none;margin: 0px;width: auto;height: auto;min-width: 30px !important;min-height: 30px !important;box-shadow: none !important;background-color: #d9d9d9 !important;border-radius: 50%; }
    .chatbox-message-item .mark-as-public-dropdown-button:after{ display: none !important; }
    /* .chatbox-message-item css start */
    .chatbox-message-item .message-avatar{ display: flex; align-items: center; justify-content: center; border: 1px solid #d9d9d9; border-radius: 50%; background-color: red; min-width: 40px; min-height: 40px;max-width: 40px; max-height: 40px;overflow: hidden; }
    .chatbox-message-item .message-content{ position: relative; min-width: 50px; display: flex;flex-wrap: wrap;justify-content: center;align-content: center;align-items: stretch; background-color:  #d9d9d9; border: 3px solid #d9d9d9;padding: 5px;color: #000; }
    .chatbox-message-item .message-content,
    .chatbox-message-item .message-inner-content { border-radius: 20px; border-top-left-radius: 0px; min-height: 40px;min-width: 55px; }
    .chatbox-message-item .message-content:after{ content: "";position: absolute;top: -3px;left: -15px;border-top: 7px solid  gray;border-right: 7px solid  gray;border-left: 7px solid transparent;border-bottom: 7px solid transparent; }
    .chatbox-message-item .message-content-time{ min-width: 70px; }
    /* .you.chatbox-message-item css start */
    .you.chatbox-message-item .message-content,
    .you.chatbox-message-item .message-inner-content { border-top-left-radius: 25px; border-bottom-left-radius: 0px; }
    .you.chatbox-message-item .message-content:after{ top: auto;bottom: -3px; }
    .you.chatbox-message-item{ flex-direction: row-reverse; }
    .you.chatbox-message-item .message-wrap{ justify-content: flex-end; }
    .you.chatbox-message-item .message-user-name,
    .you.chatbox-message-item .message-avatar{ display: none !important; }
    .you.chatbox-message-item .message-content:after{border-top-color: transparent !important;}
    /* red message */
    .chatbox-message-item.red .message-content{background-color:  red; border-color: red;}
    .chatbox-message-item.red .message-content .message-inner-content{ background-color:  red; color: #fff; }
    .chatbox-message-item.red .message-content:after{border-top-color: red;border-right-color: red;}
    .you.chatbox-message-item.red .message-content:after{border-bottom-color: red;}
    /* green message */
    .chatbox-message-item.green .message-content{background-color:  #00bc61; border-color: #00bc61;}
    .chatbox-message-item.green .message-content .message-inner-content{ background-color:  #00bc61; color: #fff; }
    .chatbox-message-item.green .message-content:after{border-top-color: #00bc61;border-right-color: #00bc61;}
    .you.chatbox-message-item.green .message-content:after{border-bottom-color: #00bc61;}
    /* blue message */
    .chatbox-message-item.blue .message-content{background-color:  #4c8bf5; border-color: #4c8bf5;}
    .chatbox-message-item.blue .message-content .message-inner-content{ background-color:  #4c8bf5; color: #fff; }
    .chatbox-message-item.blue .message-content:after{border-top-color: #4c8bf5;border-right-color: #4c8bf5;}
    .you.chatbox-message-item.blue .message-content:after{border-bottom-color: #4c8bf5;}
    /* danger-border message */
    .chatbox-message-item.danger-border .message-content{ border-color: red !important;}
    .chatbox-message-item.danger-border .message-content:after{border-top-color: red !important;border-right-color: red !important;}
    .you.chatbox-message-item.danger-border .message-content:after{border-bottom-color: red !important;border-top-color: transparent !important;}
    /* success-border message */
    .chatbox-message-item.success-border .message-content{ border-color: #00bc61 !important;}
    .chatbox-message-item.success-border .message-content:after{border-top-color: #00bc61 !important;border-right-color: #00bc61 !important;}
    .you.chatbox-message-item.success-border .message-content:after{border-bottom-color: #00bc61 !important;border-top-color: transparent !important;}

    /* order-status-report css start */
    .order-status-report:after{  content: "Loading...";position: absolute;display: flex;background-color: rgb(247 247 247);font-size: 20px;width: 100%;height: 100vh;top: 0px;bottom: 0px;right: 0px;left: 0px;z-index: 2000;flex-wrap: wrap;align-content: center;justify-content: center;align-items: center; }

    /* subway-map css start */
    .order-status-report .subway-map{display: flex;align-items: center;width: 100%;min-height: 100px;padding: 10px 35px 25px 35px;flex-wrap: nowrap;justify-content: center;background-color: #fff;box-shadow: 0 3px 4px rgba(0,0,0,0.2);border-radius: 4px;position: relative;}
    .order-status-report .point{min-width: 25px;min-height: 25px;display: flex;flex-wrap: wrap;align-items:center;background-color: #d9d9d9;border: 2px solid #fff;border-radius: 50%;}
    .order-status-report .point-line{width: 100%;min-height: 5px;display: flex;flex-wrap: wrap;align-items:center;background-color: #d9d9d9;}
    .order-status-report .point-title{position: absolute;bottom: 20px;margin: 0px auto;}

    /* is-vendor css start */
    .is-vendor.subway-map{ padding: 10px 35px 45px 35px; }
    .is-vendor .point-title{ bottom: 10px; }
    .is-vendor.subway-map .error-poupdate .point.poupdate,
    .is-vendor.subway-map .error-poupdate .point-line.poupdate{ background-color: red !important;  }

    /* subway-map active */
    .subway-map.success .active,
    .subway-map.success .temp-active{ background-color: #00bc61; }
    .subway-map.primary .active,
    .subway-map.primary .temp-active{ background-color: #4c8bf5; }
    
    .subway-map .point.deactive,
    .subway-map .point-line.deactive,
    .subway-map .point.active.deactive,
    .subway-map .point-line.active.deactive{ background-color: red !important; }

    /* status-list-group */
    .status-list-group .list-group-item .buttons,
    .status-list-group .list-group-item .delete-button{ margin: 0px;cursor: pointer; }
    .status-list-group .list-group-item,
    .status-list-group .list-group-item p,
    .status-list-group .list-group-item span,
    .status-list-group .list-group-item .buttons span,
    .status-list-group .list-group-item .delete-button span{ cursor: pointer; }
    .status-list-group .buttons > span{ border-radius: 50%;}

    /* not-vendor css start */
    .not-vendor.status-list-group .buttons > span{ box-shadow: 0 2px 3px rgba(0,0,0,0.2); }

    /* status-list-group active or hover */
    .status-list-group.success .active.list-group-item{background-color: #00bc61;border:none;color: #fff !important; }
    .status-list-group.success .active.list-group-item .p-text{color: #fff !important;}
    .status-list-group.success .list-group-item:hover{background-color: #00bc61;border:none;color: #fff !important; }
    .status-list-group.success .list-group-item:hover .p-text{color: #fff !important;}

    .status-list-group.primary .active.list-group-item{background-color: #4c8bf5;border:none;color: #fff !important; }
    .status-list-group.primary .active.list-group-item .p-text{color: #fff !important;}
    .status-list-group.primary .list-group-item:hover{background-color: #4c8bf5;border:none;color: #fff !important; }
    .status-list-group.primary .list-group-item:hover .p-text{color: #fff !important;}

    .status-list-group .deactive.list-group-item,
    .status-list-group .deactive.active.list-group-item{ background-color: red !important; }

    /* week-popup-modal css start */
    .week-popup-modal .modal-header .btn-close{ font-size: 20px;color: #fff !important;opacity: unset;background-image: unset; }
    .week-popup-modal .modal-header .modal-title .title-span { display: block;font-size: 16px; }
    .week-popup-modal .modal-content{ height: calc(100vh - 100px);margin-top:30px;border: 1px solid #fff;border-radius: 12px; }
    .week-popup-modal .modal-body{ padding: 0px;overflow: hidden; }
    .week-popup-modal .modal-footer{ padding:0px; }
    .week-popup-modal .week-table-list{ overflow: hidden;overflow-y: auto;scroll-behavior: smooth; }
    
    /* week-popup-table css start */
    .week-popup-table tbody tr:nth-child(odd) { background: #f0f4f4; }
    .week-popup-table tr th:first-child,
    .week-popup-table tr td:first-child { width: 55px;text-align: center;padding: 0px;padding-right: 0px !important; }

    /* upload-attachment-drop css start */
    .upload-attachment-drop{ width: 100%;min-height: 300px;height: 100px;border: 2px #d9d9d9 dashed;text-align: center;font-size: 25px;display: flex;flex-wrap: wrap;align-items: center;align-content: center;justify-content: center; }
    .upload-attachment-drop:before { content: "Drag and Drop Your File Here or Upload.";margin: 0 0 15px 0;display: block;width: 100%; }
    .upload-attachment-drop .drop-file-span { display: flex;flex-wrap: wrap;justify-content: center; gap: 15px; }
    .upload-attachment-drop .preview-file-text { width: 100%;display: none;text-align: center;margin: 20px auto 0 auto;font-size: 17px; }
    .upload-attachment-drop .preview-file { display: none;flex-wrap: wrap;width: 100%;max-width: 170px;min-height: 150px;border: none;align-items: center;justify-content: center;position: relative; }
    .upload-attachment-drop .close-icon { display: none;transition: 0.1s;padding: 5px;border-radius: 50%;cursor: pointer;position: absolute;right: 0px;top: 0; }
    .upload-attachment-drop .upload-ajax-button { display: none; }
    .upload-attachment-drop .preview-file .file-icon { font-size: 185px; }
    .upload-attachment-drop .preview-file .file-type { position: absolute;border-radius: 30px 0 0 30px;background-color: #222 !important;color: #fff;bottom: 0;right: 0px;padding: 0px 13px 0 22px;font-size: 35px;z-index: 99; }
    .upload-attachment-drop.already-full .preview-file { display: flex; }
    .upload-attachment-drop.already-full .preview-file-text {display: block; }
    .upload-attachment-drop.already-full .close-icon { display: inline-block; }
    .upload-attachment-drop.already-full .drop-file-span { display: none; }
    .upload-attachment-drop.already-full:before { content: "" !important;display: none !important; }
    .upload-attachment-drop.already-full { border: 1px solid #f7f7f7; }
    .upload-attachment-drop.already-full .upload-ajax-button{ display: flex; }
    .upload-attachment-drop.highlightDropArea:before { content: "Drop Your File To Upload";color: #005dff;}
    .upload-attachment-drop.highlightDropArea .upload-button {display: none;}
    .upload-attachment-drop .load-file-wrap{ display: none; }
    .upload-attachment-drop .load-file-wrap .load-icon{ height: 25px;line-height: normal;}
    .upload-attachment-drop.loading .preview-file,
    .upload-attachment-drop.loading .preview-file-text,
    .upload-attachment-drop.loading .drop-file-span,
    .upload-attachment-drop.loading .upload-ajax-button{ display: none; }
    .upload-attachment-drop.loading .load-file-wrap{ display: flex;flex-direction: column; }
    .upload-attachment-drop.loading:before{ display: none; }
    .highlightDropArea { border: 3px #005dff dashed; }

    /* attachment-render-data css start */
    .dropdown-toggle.material-icons { min-width: auto;}
    .file-item-wrap .file-name { overflow: hidden;text-overflow: ellipsis;white-space: nowrap; }
    .attachment-icon .icon-label { background-color: #333;position: absolute;bottom: 0;right: 20%;min-width: 80px;padding: 5px 10px;color: #fff;font-size: 20px;border-radius: 30px;text-align: center;transition: 0.1s; }
    .download-icon { display: none;transition: 0.1s;text-shadow: 0 5px 10px 0px rgba(0,0,0,0.2);transform: translatey(0px);animation: float 1s ease-in-out infinite;}
    .attachment-icon:not(.upload-file):hover .material-icons-outlined { display: none; }
    .attachment-icon:not(.upload-file):hover .download-icon { display: block;color: #333;font-size: 120px; }
    .attachment-icon:not(.upload-file):hover .icon-label { font-size: 0px;border-radius: 30px;padding: 3px 15px 3px 15px;left: auto;right: auto;bottom: -10px; }
    .attachment-icon:not(.upload-file):hover .icon-label:after { content: "Download";position: relative;font-size: 14px; }
    .file-item.docs .material-icons, .file-item.docs .material-icons-outlined, .file-item.doc .material-icons, .file-item.doc .material-icons-outlined { color: #0d4eb4; }
    .file-item.xlsx .material-icons, .file-item.xlsx .material-icons-outlined, .file-item.xls .material-icons, .file-item.xls .material-icons-outlined { color: #077a3d; }
    .file-item.pdf .material-icons, .file-item.pdf .material-icons-outlined { color: #cb0606; }
    .file-item .dropdown-toggle::after{ display: none !important; }
    .attach-new-file { transition: 0.3s; }
    .attach-new-file .attachment-icon .icon-label { transition: 0.3s;min-width: 50px;min-height: 50px;font-size: 30px !important;display: flex;padding: 0px;justify-content: center;align-items: center;cursor: pointer; }
    .attach-new-file:hover { background-color: #A39558; }
    .attach-new-file:hover .attachment-icon { color: #fff; }
    .attach-new-file:hover .attachment-icon .icon-label { right: 0px;left: 0px;top: 0px;max-width: 120px;height: 120px;max-height: 120px;border-radius: 50%;background-color: #fff;color: #555;font-size: 60px !important;margin: 0 auto; }
    .attach-new-file:hover .btn { background-color: #fff;color: #A39558; }    

    /* attachment-render-data css start */
    .attachment-render-data{overflow: hidden;overflow-y: auto;scroll-behavior: smooth;}



    
@media (max-width:1100px) {
        
    .header-menu-wrapper .menu-dropdown-btn{display: flex;line-height: normal;min-height: auto;align-items: center;}
    .header-menu-wrapper{ justify-content: end; }
    .header-menu-wrapper .navbar-nav { display: none;position: absolute;background-color: #fff;border-radius: 10px;border: 1px solid #d9d9d9;box-shadow: 0 2px 3px rgba(0,0,0,0.2);top: 45px; }
    .header-menu-wrapper.show-dropdown .navbar-nav{ display: block; }
    .header-menu-wrapper.show-dropdown .menu-dropdown-btn{ transform: rotate(-90deg); }

    .header-nav.nav{ justify-content: end;gap: 5px; }
    .header-nav .search-option .search-control-wrap{ border: none; }
    .header-nav .search-option .search-control-wrap .form-control{ display: none; }

    .open-search-option .other-option-nav,
    .open-search-option .other-option-nav .nav-item{width: 100%;}
    .open-search-option .other-option-nav .close-search-project-btn{display: inline-flex;box-shadow: none;border: none;padding: 0px;margin: 0 4px;min-width: 40px;min-height: 40px;justify-content: center;align-items: center; }    .open-search-option .search-option .search-control-wrap .form-control{ display: block;width: 100%; }
    .open-search-option .search-option .search-control-wrap{ border: 1px solid #d9d9d9; }
    .open-search-option .header-linkes,
    .open-search-option .header-menu-wrapper,
    .open-search-option .logo{ display:none !important; }

    .open-search-option .search-option.open .searchbox-sheet{ position: fixed;padding: 0px;top: 55px;left: 0px;right: 0px;min-height: calc(100vh - 55px);}
    .open-search-option .search-option.open .searchbox-sheet ul li a{ padding: 7px 22px; }   
    .open-search-option .search-option.open .searchbox-sheet{border-radius: 0px; }
    .search-option.open .search-control-wrap{ border-radius: 30px; }
    #exportbtnarea{ display: flex;  gap: 10px; }
    #opevsExportButton{ padding: 0px !important; }

    .custom-datatable-searchbox{ min-width: unset !important;width: 100% !important; }

}
@media (max-width:1200px) { 

    .main-wrapper .page-wrapper .page-content{ padding: 3px; }
    .search-bar-box{ min-width: 100% !important; }

    .card .material-wrapper.overview-grid{ overflow: auto; }

    .popup-grid-modal{ padding: 0px !important; }
    .popup-grid-modal .modal-content{ min-height: 100%; max-height: 100vh;    border-radius: 0px !important; }
    .popup-grid-modal .modal-dialog{ top: 0px !important;padding: 0px !important;margin: 0px auto;height: 100%;width: 100%;max-width: 100% !important; }
    .popup-grid-modal .custom-datatable-search{ max-width: 100% !important; } 
    #popUpGridCards .material-wrapper.overview-grid{ overflow: auto; } 
    .popup-grid-modal .short-table td{ font-size: 13px; }

    .confirm-action-box{ flex-wrap: nowrap !important; }
    .custom-datatable-search{ width: 100%; }

    

}
@media (max-width:780px) { 


   

}
@media (max-width:500px) {
        
    .navbar-nav .dropdown-menu{ position: absolute;right: 20px; }
    .vendor-title{ font-size: 14px !important;min-width: 210px; align-items: center; display: flex; }

    .some-tab-content button,
    .some-tab-content select,
    .some-tab-content span{ min-width: 100%;width: 100%; }
    .some-tab-content a{ min-width: 50%;width: 50%; }

}
@media (max-width:440px) {

    .confirm-action-box{ flex-wrap: wrap !important; }

}
