﻿@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700&display=swap');

/*:root {
    --bg-color : #1f1f1f;
    --card-bg-light:#3b3a3a;
    --card-bg-lighter:#373434;
    --text-color:#f2f2f2;
    --btn-color:#87a8de;
    --icon-color:#999898;
    --user-icon:#474444;
    --action-btn:#1a73e8;
    --action-btn-danger:#f44336;
    --success-btn:#28a745;
}
*/
:root {
    --bg-color: #f2f2f2;
    --card-bg-light: #fafafa;
    --card-bg-lighter: #f5f5f5;
    --text-color: #121212;
    --user-icon: #f1f1f1;
    --btn-color: #87a8de;
    --icon-color: #999898;
    --user-icon: #474444;
    --action-btn: #1a73e8;
    --action-btn-danger: #f44336;
    --success-btn: #28a745;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif !important;
    /*font-family: 'Manrope', sans-serif;*/
    background-color: var(--bg-color) !important;
    color: var(--text-color) !important;
}






.nav-search button {
    border: none;
    background: var(--color--white);
    color: var(--color--grey);
    height: 2.1rem;
    width: 2.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#wrapper {
    overflow-x: hidden;
}

.open-btn {
    background: var(--color--white);
    border: none;
    height: 2.5rem;
    width: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.3em;
    border-radius: 5px;
}

#sidebar-wrapper {
    min-height: 100vh;
    margin-left: -15rem;
    transition: margin 0.25s ease-out;
    background: #313a46;
}

    #sidebar-wrapper .sidebar-heading {
        padding: 0.875rem 1.25rem;
        font-size: 1.2rem;
    }

    #sidebar-wrapper .list-group {
        min-width: 15rem;
    }

#page-content-wrapper {
    min-width: 100vw;
    margin-top: 1em;
}

body.sb-sidenav-toggled #wrapper #sidebar-wrapper {
    margin-left: 0;
}

@media (min-width: 768px) {
    #sidebar-wrapper {
        margin-left: 0;
    }

    #page-content-wrapper {
        min-width: 0;
        width: 100%;
        margin-top: 1em;
    }

    body.sb-sidenav-toggled #wrapper #sidebar-wrapper {
        margin-left: -15rem;
    }
}

.active_link {
    position: relative;
    transition: 0.3s;
    /* background: var(--color--dark-blue); */
}



.list-group-flush a.nav_link {
    text-decoration: none;
    border-width: 0 0 1px;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 0.5rem 1rem;
    gap: 1rem;
}

    .list-group-flush a.nav_link:hover {
        color: #bccee4;
    }

.list-group-flush .list-group-item .material-icons-outlined {
    font-size: 2rem;
}

.material-symbols-outlined {
    font-size: 19px;
}
/* collapse-items */
.collapse-items {
    display: grid;
    gap: 0.5rem;
    margin-left: 1.3rem;
}

    .collapse-items li {
        list-style-type: none;
    }

        .collapse-items li a {
            color: #fff;
            text-decoration: none;
        }

            .collapse-items li a:hover {
                color: #bccee4;
            }

li.active > a {
    color: #ffc107;
    font-weight: 600;
} 

.side-icon svg {
    height: 1.25rem;
    width: 1.25rem;
    stroke:#fff;
}
/* Serch */
.search-bar {
    padding: 0.3em 0.3em 0.3em 1em;
    background: var(--color--white);
    border-radius: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .search-bar input {
        width: 100%;
        border: none;
        height: inherit;
        padding: 0.2em 0;
        outline: none;
    }

.search-btn {
    padding: 0.5em;
    background: var(--color--dark-blue);
    color: var(--color--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.card-wrapper {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card-item {
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.068);
    padding: 1rem;
}

    .card-item .icon {
        height: 3rem;
        width: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
    }

    .card-item:nth-child(1) .icon {
        background-color: #e68f505a;
    }

    .card-item:nth-child(2) .icon {
        background-color: #50e68559;
    }

    .card-item:nth-child(3) .icon {
        background-color: #8c50e653;
    }

    .card-item:nth-child(4) .icon {
        background-color: #d2e65059;
    }


.theme-switch input[type=checkbox] {
    display: none;
}

.form-control:focus {
    color: var(--text-color);
    background-color: transparent;
}

.form-control[readonly] {
    background: none;
}

.form-control:focus {
    border: solid 1.5px var(--text-color);
    box-shadow: none;
}

.opacity-25 {
    opacity: .5;
}

.godownTab .nav-link {
    border-radius: 4px;
    border: none;
    background: var(--card-bg-light);
    color: var(--text-color);
    padding: .3em .8em;
    font-weight: 600;
    border: solid lightgrey;
}

    .godownTab .nav-link.active {
        background: var(--btn-color);
        border: solid #78909c;
    }

.godownTab .nav-item:not(:last-child) .nav-link {
    margin-right: .5em;
}

#sales-bills .direction {
    display: flex;
    column-gap: 20px;
    align-items: center;
    margin-top: 10px;
}




.link-button {
    background: none !important;
    border: none;
    padding: 0 !important;
    /*optional*/
    font-family: arial, sans-serif;
    /*input has OS specific font-family*/
    color: #069;
    text-decoration: underline;
    cursor: pointer;
}




#sales-bills .one {
    align-items: center;
    margin-top: 20px;
}

#sales-bills .voucher-no h3 {
    margin-bottom: 0px;
    line-height: 25px;
    font-size: 24px;
}

#sales-bills .lbl-cls {
    font-size: 14px;
    color: #fff;
    margin: 0;
}

#sales-bills .two {
    display: flex;
    column-gap: 10px;
}

    #sales-bills .two .co6 {
        width: 100%;
    }

#sales-bills .three {
    display: flex;
    column-gap: 10px;
}

    #sales-bills .three .co6 {
        width: 50%;
    }

#sales-bills .four {
    display: flex;
    column-gap: 10px;
}

    #sales-bills .four .btn-srch {
        background-color: #ede7f6;
        color: var(--action-btn);
        font-weight: 600;
        border: none;
    }

#sales-bills .five {
    margin-top: 10px;
    /*display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;*/
}

    #sales-bills .five input[type=checkbox], input[type=radio] {
        vertical-align: middle;
    }

    #sales-bills .five label {
        font-size: 15px;
        padding-left: 5px;
        vertical-align: initial;
    }
/*#sales-bills .items details{
    border:solid 1px var(--action-btn);
    border-radius:4px;
    padding:5px 0;
}*/
#sales-bills .items summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

    #sales-bills .items summary .item-name {
        flex: auto;
    }

    #sales-bills .items summary .total-amt {
        color: #d1acff;
        font-weight: 700;
    }

    #sales-bills .items summary::-webkit-details-marker {
        display: none;
    }



#sales-bills .items .form-control {
    outline: none;
    box-shadow: none;
    border: none;
    padding-right: 0;
    background-color: var(--card-bg-light);
    margin-bottom: 0;
}

#sales-bills .discount-details summary:after {
    content: "\e145";
    font-family: "Material Icons Outlined";
    color: var(text-color);
    padding: 0 0 0 15px;
    /*margin:auto;*/
    height: 20px;
    float: right;
}

#sales-bills .discount-details details[open] summary:after {
    content: "\e15b";
}

#sales-bills #example {
    margin: 10px 0;
    border-radius: 4px;
}

    #sales-bills #example .list-item {
        background-color: var(--card-bg-light);
        border-radius: 4px;
        border: 1px solid #ced4da;
    }
/*.dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_paginate{
    display:none;
}*/
.dataTables_filter label {
    width: 100%;
    border-radius: 300px;
}

table.dataTable.no-footer {
    border: none;
}

@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {

    /* Force table to not be like tables anymore */
    .display, .display, .display thead, .display tbody, .display th, .list-item, .list {
        display: block;
    }

        /* Hide table headers (but not display: none;, for accessibility) */
        .display thead tr {
            position: absolute;
            top: -9999px;
            left: -9999px;
        }

        .display tr {
            border: none;
            margin-bottom: 10px;
            border-radius: 4px;
        }

        .display td {
            /* Behave  like a "row" */
            border: none;
            border-bottom: 1px solid #eee;
            position: relative;
            padding-left: 0%;
        }

            .display td:before {
                /* Now like a table header */
                position: absolute;
                /* Top/left values mimic padding */
                top: 6px;
                left: 6px;
                width: 45%;
                padding-right: 10px;
                white-space: nowrap;
            }

    .dataTables_wrapper .dataTables_length {
        display: none;
    }

    /*    table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd {
        border-radius: 4px;
        border: none;
        background-color: transparent;
    }

    table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.even {
        border-radius: 4px;
        border: none;
        background-color: transparent;
    }*/
}

/*table.dataTable tbody td {
    padding: 0px 10px;
}*/

.am-add-btn {
    background: var(--btn-color);
    color: #fff;
    font-weight: 600;
}

.add-item-modal .modal-dialog {
    margin: 0;
    height: 100%;
}

.add-item-modal .modal-content {
    height: 100%;
    border-radius: 0;
    border: none;
    background: var(--bg-color);
    color: var(--text-color);
}

.add-item-modal .modal-body {
    height: 80vh;
    overflow: scroll;
}

.close {
    color: var(--text-color);
}

.itemDetails-pop {
    padding: .5em;
    border-radius: 4px;
    border: solid .5px #ede7f6;
}

    .itemDetails-pop p {
        margin-bottom: .5rem;
    }

#sales-bills .items-det {
    margin: 20px 0;
}

    #sales-bills .items-det .items {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: solid .5px #ede7f6;
        padding: 5px 0;
    }

        #sales-bills .items-det .items .lbl {
            color: var(--text-color);
            text-transform: uppercase;
            font-size: 12px;
        }

        #sales-bills .items-det .items .field {
            font-weight: 600;
            color: var(--text-color);
        }

#sales-bills .discount-details .items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: solid .5px #ede7f6;
    padding: 5px 0;
}

    #sales-bills .discount-details .items .lbl {
        color: var(text-color);
        text-transform: uppercase;
        font-size: 12px;
    }

    #sales-bills .discount-details .items .field {
        font-weight: 600;
    }

#gst {
    margin: 20px 0;
}

    #gst .gst-det {
        background-color: var(--card-bg-light);
        border-radius: 4px;
        overflow: hidden;
    }

    #gst .gst-dtls {
        margin: 10px 0;
        /*background-color: #ede7f6;*/
        padding: 0 10px;
        border-radius: 4px;
    }

        #gst .gst-dtls .gst-flds {
            display: flex;
            justify-content: space-between;
            border-bottom: solid .5px #ede7f6;
            padding: 5px 0;
            align-items: center;
        }

        #gst .gst-dtls .noBrdr {
            border: none !important;
            padding: 5px 0 10px 0;
        }

        #gst .gst-dtls .gst-flds .lbl {
            color: #888;
            font-size: 12px;
        }

    #gst summary::-webkit-details-marker {
        display: none;
    }



    #gst details .form-control {
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        box-shadow: none;
        border: none;
        border-bottom: solid .5px #e0e0e0;
        border-radius: 0;
        background-color: var(--card-bg-light);
        color: var(--text-color);
    }

.blnc-ttl {
    display: flex;
    margin-bottom: 70px;
}

    .blnc-ttl .container {
        padding: 0;
    }

    .blnc-ttl label {
        font-size: 14px;
        margin: 0;
    }

.payment-details .position-relative {
    margin-bottom: 15px;
}

.pd-lbl {
    position: absolute;
    font-size: 10px;
    margin-bottom: 0;
    color: var(--text-color);
    background: var(--bg-color);
    padding: .1em .5em;
    left: 10px;
    top: -10px;
}

.prv-blnc, .grnd-ttl {
    padding: 0;
}

.prv-blnc {
    font-size: 28px;
    font-weight: 400;
}

.grndTtl {
    text-align: right;
}

.grnd-ttl {
    font-size: 28px;
    font-weight: 800;
    color: red;
}


/*Delete later*/
#add-new .add-btn .btn-new {
    height: 55px;
    width: 55px;
    background-color: var(--action-btn);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: fixed;
    right: 15px;
    bottom: 60px;
    color: #fff;
    text-decoration: none;
}

#save-btn {
    position: fixed;
    bottom: 15px;
    width: 100%;
    left: 0;
}

    #save-btn .sav-btn {
        width: 100%;
        padding: 7px;
        border: none;
        background: var(--btn-color);
        color: #fff;
        font-weight: 600;
        border-radius: 4px;
    }

#sign-in {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

    #sign-in .icon {
        display: flex;
        align-items: center;
    }

    #sign-in .image {
        display: flex;
        justify-content: center;
        margin: 20px 0;
    }

        #sign-in .image .log-img {
            height: 180px;
        }

    #sign-in .sign .usr-name, .password {
        padding: 9px 12px;
        margin-bottom: 10px;
        width: 100%;
        border: solid var(--action-btn);
        border-width: 0 0 2px 0;
        box-shadow: 0 0 0 0.5px lightgrey;
        color: var(--text-color);
        outline: none;
        background-color: transparent;
        border-radius: 4px;
    }


    #sign-in .sign h1 {
        margin-bottom: 20px;
        font-size: 30px;
        width: 75%;
    }

    #sign-in .sign-btn {
        margin-top: 15px;
    }

.log-btn {
    padding: 9px;
    width: 100%;
    border: none;
    background-color: var(--action-btn);
    color: #fff;
    border-radius: 4px;
}

#sign-in .icon {
    margin-bottom: 15px;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: var(--bg-color);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

#navigation {
    background: var(--bg-color);
    position: sticky;
    top: 0;
    width: 100%;
    margin: 0 auto .3em;
    display: block;
    transition: top 0.3s;
    z-index: 10;
    box-shadow: 0 1rem 3rem rgba(0,0,0,.05);
    padding: .3em 0;
}

.user-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--card-bg-light);
    border-radius: 50px;
    padding: 0 .3em 0 .5em;
}

.nav-top {
    display: flex;
    column-gap: 1em;
    align-items: center;
}

a.notification-info {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-color);
    position: relative;
}

.notificationDot {
    position: absolute;
    height: 8px;
    width: 8px;
    background: #007bff;
    border-radius: 50px;
    top: 0px;
    right: -1px;
}

a.notification-alert-message {
    font-size: 13px;
    display: block;
    background: #f3e5f5;
    padding: .5em 1em;
    border-radius: 10px;
    color: #0c1654;
    font-weight: 600;
    text-decoration: none;
}

.notif a.notification-alert-message:not(:last-child) {
    margin-bottom: 10px;
}

a.user-info {
    height: 30px;
    width: 30px;
    background: var(--user-icon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.1em;
    text-decoration: none;
}

.user-modal .modal-content {
    background-color: var(--card-bg-light);
    margin: 4em auto 0;
    width: 95%;
}

.user-card-tile {
    display: flex;
    column-gap: .5em;
}

#nameCard {
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #007bff;
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    text-transform: lowercase;
}

#user-name {
    font-size: 17px;
    margin-bottom: 0;
}

.user-mail {
    font-size: 12px;
}

.account-settings a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    column-gap: 1em;
    color: var(--text-color);
    font-size: 12px;
    font-weight: 600;
}

    .account-settings a .material-icons-outlined, a.logout-btn .material-icons-outlined {
        font-size: 16px;
        color: var(--icon-color);
    }

a.logout-btn {
    display: flex;
    align-items: center;
    column-gap: 1em;
    color: var(--text-color);
    text-decoration: none;
    font-size: 12px;
    width: fit-content;
}

.nav-item-side {
    display: flex;
    gap: .5em;
    margin-bottom: 1.5em;
    padding-left: 1.5em;
}

    .nav-item-side .material-icons-round {
        color: var(--icon-color);
        font-size: 19px;
    }

.sidenav a {
    text-decoration: none;
    color: var(--text-color);
    display: block;
    transition: 0.3s;
    font-size: 15px;
    position: relative;
    top: -3px;
}

.currentTheme {
    display: block;
    font-size: 10px;
    position: relative;
}

    .currentTheme:before {
        position: absolute;
        content: 'Dark';
        left: 0;
    }

.theme-switch input[type=checkbox]:checked + .currentTheme:before {
    content: 'Light';
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

        .sidenav a {
            font-size: 18px;
        }
}

#dashboard {
    margin-bottom: 20px;
}

#figures .fig {
    display: flex;
    column-gap: 10px;
    margin-bottom: 10px;
}

    #figures .fig .material-icons {
        font-size: 17px;
    }

#figures .fig-1 {
    height: 150px;
    background-color: #353535;
    border-radius: 4px;
    width: 50%;
    padding: 15px 10px;
    /*background: rgba( 255, 255, 255, 0.25 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );*/
    /*border: 1px solid rgba( 255, 255, 255, 0.18 );*/
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
    position: relative;
}

    #figures .fig-1 p {
        margin: 0 0 5px 0;
        text-transform: uppercase;
        color: #fff;
        font-weight: 700;
        font-size: 12px;
    }

    #figures .fig-1 a {
        color: #000;
        font-weight: 600;
        display: flex;
        align-items: center;
        column-gap: 7px;
        text-decoration: none;
        position: absolute;
        bottom: 15px;
        background-color: #dcedc8;
        padding: 2px 7px;
        border-radius: 4px;
        font-size: 13px;
        height: 35px;
        width: 35px;
        right: 15px;
        justify-content: center;
    }



#report .direction {
    display: flex;
    column-gap: 20px;
    align-items: center;
    margin-top: 10px;
}



    #report .direction a {
        color: #fff;
    }

#report .selection {
    display: flex;
    column-gap: 10px;
    margin-top: 20px;
}

    #report .selection .lbls {
        margin: 0;
    }

#report .from, .to, .Store {
    width: 100%;
}

#report .src-btn {
    margin-top: 15px;
}

    #report .src-btn .btn-btn {
        background-color: var(--action-btn);
        color: #fff;
        border: none;
        padding: 7px 0;
        width: 100%;
        border-radius: 4px;
        font-weight: 700;
    }

#report-det {
    margin-top: 20px;
}

#reports .voucher-det {
    background-color: #d4bff9;
    color: var(--action-btn);
    padding: 1px 16px;
    width: fit-content;
    border-radius: 300px;
    font-weight: 700;
}

#reports .list-item {
    background-color: transparent;
    display: flex;
    column-gap: 10px;
    align-items: center;
    padding: 0;
}

    #reports .list-item .icon {
        margin: auto 0;
    }

        #reports .list-item .icon .material-icons {
            font-size: 25px;
            margin-bottom: 20px;
        }

    #reports .list-item .total-amount {
        font-size: 20px;
        margin-bottom: 10px;
    }

#reports .list {
    border-radius: 4px;
    background-color: #fff;
    padding: 10px;
    border: none;
    border-bottom: none #bb86fc 4px;
    background-color: transparent;
    padding: 0;
}


#reports .list-item .card {
    background: var(--card-bg-light);
    color: var(--text-color);
    width: 100%;
    padding: 15px;
    border-bottom: #89b4f8 solid 5px;
}

    #reports .list-item .card .desc {
        display: flex;
        column-gap: 10px;
    }

#reports tbody > tr > td:last-child {
    border: 0;
}

#reports tbody > tr > td {
    border-top: 0;
}





#navigate {
    margin-top: 30px;
}

.dash-bg {
    background: var(--card-bg-light);
    border-radius: 8px;
    padding: .7em 0;
}

    .dash-bg .item-navgator:not(:last-child) {
        margin-bottom: 1em;
    }

#navigate .item-navgator {
    display: flex;
    column-gap: 10px;
}

#navigate a {
    color: var(--text-color);
    text-decoration: none;
    width: 100%;
    text-align: center;
}

#navigate .item-navgator .link-nav {
    width: 100%;
}

    #navigate .item-navgator .link-nav .icons {
        height: 40px;
        width: 40px;
        border-radius: 50%;
        background-color: var(--card-bg-lighter);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: auto;
        margin-bottom: .3em;
    }

    #navigate .item-navgator .link-nav .icon-tabler {
        height: 25px;
    }

    #navigate .item-navgator .link-nav .item-name {
        color: var(--text-color);
        font-size: 12px;
        display: flex;
        justify-content: center;
        max-width: 10ch;
        text-align: center;
        margin: auto auto 0;
    }


.head-lbl {
    margin: 0 0 25px 0;
    font-weight: 700;
}


#copm-creation .rdo-btn label {
    padding-left: 7px;
}

#copm-creation .crt-btn {
    display: flex;
    column-gap: 10px;
    margin: 15px 0;
}

    #copm-creation .crt-btn .updt-btn {
        padding: 7px;
        width: 100%;
        border: none;
        border-radius: 4px;
        background-color: var(--action-btn);
        color: #fff;
        font-weight: bold;
    }

    #copm-creation .crt-btn .dlt-btn {
        padding: 7px;
        width: 100%;
        border: none;
        border-radius: 4px;
        background-color: var(--action-btn-danger);
        color: #fff;
        font-weight: bold;
    }



#roles .role-btn {
    display: flex;
    column-gap: 10px;
    margin: 15px 0;
}

    #roles .role-btn .updt-btn {
        padding: 7px;
        width: 100%;
        border: none;
        border-radius: 4px;
        background-color: var(--action-btn);
        color: #fff;
        font-weight: bold;
    }

    #roles .role-btn .dlt-btn {
        padding: 7px;
        width: 100%;
        border: none;
        border-radius: 4px;
        background-color: var(--action-btn-danger);
        color: #fff;
        font-weight: bold;
    }

#roles-list .actions {
    display: flex;
    column-gap: 20px;
}

.edit-btn {
    color: var(--success-btn);
}

.dlt-btn {
    color: var(--action-btn-danger);
    font-weight: bold;
}

#roles-list .actions .edit-btn {
    color: var(--success-btn);
    font-weight: bold;
}

#roles-list .actions .dlt-btn {
    color: var(--action-btn-danger);
    font-weight: bold;
}

#user .user-btn {
    display: flex;
    column-gap: 10px;
    margin: 15px 0;
}

    #user .user-btn .updt-btn {
        padding: 7px;
        width: 100%;
        border: none;
        border-radius: 4px;
        background-color: var(--action-btn);
        color: #fff;
        font-weight: bold;
    }

    #user .user-btn .dlt-btn {
        padding: 7px;
        width: 100%;
        border: none;
        border-radius: 4px;
        background-color: var(--action-btn-danger);
        color: #fff;
        font-weight: bold;
    }

.actions {
    display: flex;
    column-gap: 20px;
}

    .actions .edit-btn {
        color: var(--success-btn);
        font-weight: bold;
    }

    .actions .dlt-btn {
        color: var(--action-btn-danger);
        font-weight: bold;
    }


#password-change .psswrd-btn {
    margin-top: 30px;
}

    #password-change .psswrd-btn .btn-paswrd {
        padding: 7px 12px;
        border: none;
        border-radius: 4px;
        background-color: var(--action-btn);
        color: #fff;
        font-weight: bold;
    }


#fncl-yr .yr-btn {
    margin-top: 30px;
}

    #fncl-yr .yr-btn .btn-yer {
        padding: 7px 12px;
        border: none;
        border-radius: 4px;
        background-color: var(--action-btn);
        color: #fff;
        font-weight: bold;
    }

#old {
    margin: 30px 0;
}


#fin-yr .clo-btn {
    margin-top: 30px;
}

    #fin-yr .clo-btn .btn-cls {
        padding: 7px 12px;
        border: none;
        border-radius: 4px;
        background-color: var(--action-btn);
        color: #fff;
        font-weight: bold;
    }

.rd-btn label {
    padding: 0 5px;
}

#acc-grp .btn {
    display: flex;
    column-gap: 10px;
    padding: 0;
    margin: 20px 0;
}

    #acc-grp .btn .sv-btn {
        padding: 7px 12px;
        border: none;
        border-radius: 4px;
        background-color: var(--action-btn);
        color: #fff;
        font-weight: bold;
    }

    #acc-grp .btn .nw-btn {
        padding: 7px 12px;
        border: none;
        border-radius: 4px;
        background-color: var(--success-btn);
        color: #fff;
        font-weight: bold;
    }

    #acc-grp .btn .del-btn {
        padding: 7px 12px;
        border: none;
        border-radius: 4px;
        background-color: var(--action-btn-danger);
        color: #fff;
        font-weight: bold;
    }

#acc-grp-list {
    margin: 10px 0 30px 0;
}

.box {
    display: flex;
    column-gap: 10px;
}



#contacts .cont-btn {
    display: flex;
    column-gap: 10px;
    margin: 30px 0;
}

    #contacts .cont-btn .sve-btn {
        padding: 7px 12px;
        border: none;
        border-radius: 4px;
        background-color: var(--action-btn);
        color: #fff;
        font-weight: bold;
    }

    #contacts .cont-btn .new-btn {
        padding: 7px 12px;
        border: none;
        border-radius: 4px;
        background-color: var(--success-btn);
        color: #fff;
        font-weight: bold;
    }

    #contacts .cont-btn .dlt-btn {
        padding: 7px 12px;
        border: none;
        border-radius: 4px;
        background-color: var(--action-btn-danger);
        color: #fff;
        font-weight: bold;
    }

#contact-list {
    margin: 10px 0 30px 0;
}

.edit-button {
    color: var(--success-btn);
}


#units .unit-btn {
    display: flex;
    column-gap: 10px;
    margin: 30px 0;
}

    #units .unit-btn .sve-btn {
        padding: 7px 12px;
        border: none;
        border-radius: 4px;
        background-color: var(--action-btn);
        color: #fff;
        font-weight: bold;
    }

    #units .unit-btn .new-btn {
        padding: 7px 12px;
        border: none;
        border-radius: 4px;
        background-color: var(--success-btn);
        color: #fff;
        font-weight: bold;
    }

    #units .unit-btn .dlt-btn {
        padding: 7px 12px;
        border: none;
        border-radius: 4px;
        background-color: var(--action-btn-danger);
        color: #fff;
        font-weight: bold;
    }



.ces {
    display: flex;
    column-gap: 10px;
}

#products .prd-btn {
    display: flex;
    column-gap: 10px;
    margin: 30px 0;
}

    #products .prd-btn .sve-btn {
        padding: 7px 12px;
        border: none;
        border-radius: 4px;
        background-color: var(--action-btn);
        color: #fff;
        font-weight: bold;
    }

    #products .prd-btn .new-btn {
        padding: 7px 12px;
        border: none;
        border-radius: 4px;
        background-color: var(--success-btn);
        color: #fff;
        font-weight: bold;
    }

    #products .prd-btn .dlt-btn {
        padding: 7px 12px;
        border: none;
        border-radius: 4px;
        background-color: var(--action-btn-danger);
        color: #fff;
        font-weight: bold;
    }

#roles-list .card label {
    font-size: 10px;
    color: darkgray;
    margin: 0;
}

#users-list .card label {
    font-size: 10px;
    color: darkgray;
    margin: 0;
}

#unit-lists .card label {
    font-size: 10px;
    color: darkgray;
    margin: 0;
}

.duo {
    display: flex;
    column-gap: 10px;
}

#payment .unit-btn {
    display: flex;
    column-gap: 10px;
    margin: 30px 0;
}

    #payment .unit-btn .sve-btn {
        padding: 7px 12px;
        border: none;
        border-radius: 4px;
        background-color: var(--action-btn);
        color: #fff;
        font-weight: bold;
    }

    #payment .unit-btn .new-btn {
        padding: 7px 12px;
        border: none;
        border-radius: 4px;
        background-color: var(--success-btn);
        color: #fff;
        font-weight: bold;
    }

    #payment .unit-btn .dlt-btn {
        padding: 7px 12px;
        border: none;
        border-radius: 4px;
        background-color: var(--action-btn-danger);
        color: #fff;
        font-weight: bold;
    }

.vno {
    display: flex;
    column-gap: 30px;
    font-size: 18px;
    font-weight: 700;
}

.accflx {
    display: flex;
    column-gap: 10px;
}

#pdc .unit-btn {
    display: flex;
    column-gap: 10px;
    margin: 30px 0;
}

    #pdc .unit-btn .sve-btn {
        padding: 7px 12px;
        border: none;
        border-radius: 4px;
        background-color: var(--action-btn);
        color: #fff;
        font-weight: bold;
    }

    #pdc .unit-btn .new-btn {
        padding: 7px 12px;
        border: none;
        border-radius: 4px;
        background-color: var(--success-btn);
        color: #fff;
        font-weight: bold;
    }

    #pdc .unit-btn .dlt-btn {
        padding: 7px 12px;
        border: none;
        border-radius: 4px;
        background-color: var(--action-btn-danger);
        color: #fff;
        font-weight: bold;
    }


.pdc-btn {
    border: none;
    width: 100%;
    border-radius: 4px;
    background-color: var(--action-btn);
    color: #fff;
    font-weight: 700;
    padding: 7px 0;
    margin: 20px 0;
}

.form-control {
    margin-bottom: 10px;
    background-color: var(--bg-color);
    color: var(--text-color);
    border: solid 1.5px var(--text-color);
    border-radius: 3px;
}

#purchase .flx {
    display: flex;
    column-gap: 10px;
}

#return .form-control {
    margin-bottom: 10px;
    background: var(--bg-color);
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
}



.prd-rtn {
    padding: 15px;
    background: var(--card-bg-light);
    border-radius: 4px;
    margin-bottom: 15px;
    box-shadow: 0 0 0 .5px grey;
}

    .prd-rtn label {
        font-size: 10px;
        color: #bdbdbd;
    }

    .prd-rtn .duo1 {
        display: flex;
        justify-content: space-between;
    }

#amt-det .duo1 {
    display: flex;
    justify-content: space-between;
    column-gap: 10px;
}


#amt-det .unit-btn {
    display: flex;
    column-gap: 10px;
    margin: 30px 0;
}

    #amt-det .unit-btn .sve-btn {
        padding: 7px 12px;
        border: none;
        border-radius: 4px;
        background-color: var(--action-btn);
        color: #fff;
        font-weight: bold;
    }

    #amt-det .unit-btn .new-btn {
        padding: 7px 12px;
        border: none;
        border-radius: 4px;
        background-color: var(--success-btn);
        color: #fff;
        font-weight: bold;
    }

    #amt-det .unit-btn .dlt-btn {
        padding: 7px 12px;
        border: none;
        border-radius: 4px;
        background-color: var(--action-btn-danger);
        color: #fff;
        font-weight: bold;
    }

#est-bills .srch {
    display: flex;
    column-gap: .5em;
}

    #est-bills .srch .sav-btn {
        padding: .375rem .75rem;
        border: none;
        border-radius: 4px;
        background-color: var(--action-btn);
        color: #fff;
        font-weight: bold;
        height: fit-content;
    }

.wht {
    border: .1px solid #fff;
}

.rnk {
    text-align: center;
    width: 100%;
}

.net-amt {
    margin-top: 40px;
}

    .net-amt .unit-btn {
        display: flex;
        column-gap: 10px;
        margin: 30px 0;
    }

.unit-btn .sve-btn {
    padding: 7px 12px;
    border: none;
    border-radius: 4px;
    background-color: var(--action-btn);
    color: #fff;
    font-weight: bold;
}

.unit-btn .new-btn {
    padding: 7px 12px;
    border: none;
    border-radius: 4px;
    background-color: var(--success-btn);
    color: #fff;
    font-weight: bold;
}

.unit-btn .dlt-btn {
    padding: 7px 12px;
    border: none;
    border-radius: 4px;
    background-color: var(--action-btn-danger);
    color: #fff;
    font-weight: bold;
}

#damg .srching {
    display: flex;
    column-gap: 5px;
}

.btn-serch {
    padding: .375rem .75rem;
    border: none;
    border-radius: 4px;
    background-color: var(--action-btn);
    color: #fff;
    font-weight: bold;
    height: fit-content;
}

#damg .unit-btn {
    display: flex;
    column-gap: 10px;
    margin: 30px 0;
}

    #damg .unit-btn .sve-btn {
        padding: 7px 12px;
        border: none;
        border-radius: 4px;
        background-color: var(--action-btn);
        color: #fff;
        font-weight: bold;
    }

    #damg .unit-btn .new-btn {
        padding: 7px 12px;
        border: none;
        border-radius: 4px;
        background-color: var(--success-btn);
        color: #fff;
        font-weight: bold;
    }

    #damg .unit-btn .dlt-btn {
        padding: 7px 12px;
        border: none;
        border-radius: 4px;
        background-color: var(--action-btn-danger);
        color: #fff;
        font-weight: bold;
    }

.add-prd {
    margin: 30px 0;
}

#manufcture summary::-webkit-details-marker {
    display: none;
}

#manufcture summary {
    display: flex;
    justify-content: space-between;
}

    #manufcture summary:after {
        content: url("img/down.svg");
        color: #000;
        padding: 0 0 0 15px;
        margin: auto 0;
        height: 20px;
        float: right;
    }

#manufcture details[open] summary:after {
    content: url("img/up.svg");
    /*margin:auto;*/
}

#manufcture .unit-btn {
    display: flex;
    column-gap: 10px;
    margin: 30px 0;
}

    #manufcture .unit-btn .sve-btn {
        padding: 7px 12px;
        border: none;
        border-radius: 4px;
        background-color: var(--action-btn);
        color: #fff;
        font-weight: bold;
    }

    #manufcture .unit-btn .new-btn {
        padding: 7px 12px;
        border: none;
        border-radius: 4px;
        background-color: var(--success-btn);
        color: #fff;
        font-weight: bold;
    }

    #manufcture .unit-btn .dlt-btn {
        padding: 7px 12px;
        border: none;
        border-radius: 4px;
        background-color: var(--action-btn-danger);
        color: #fff;
        font-weight: bold;
    }

.rpt-dou {
    display: flex;
    column-gap: 10px;
    margin-bottom: 15px;
}

    .rpt-dou a {
        color: #fff;
        text-decoration: none;
        width: 100%;
        height: auto;
    }

.r1 {
    border: 1px darkgray solid;
    border-radius: 4px;
    padding: 5px;
}

.srch-btn {
    border: none;
    border-radius: 4px;
    background-color: var(--action-btn);
    color: #fff;
    padding: 7px;
    width: 100%;
    font-weight: 700;
}

#sgr summary {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.mss summary::-webkit-details-marker {
    display: none;
}

summary:after {
    content: "\e5cc";
    font-family: "Material Icons Outlined";
    color: var(--text-color);
    padding: 0 0 0 15px;
    margin: auto 0;
    float: right;
}

details[open] summary:after {
    content: "\e5ce";
    font-family: "Material Icons Outlined";
}

.ttl p {
    color: var(--success-btn);
    font-size: 18px;
    font-weight: 700;
}

#pl .pl {
    display: flex;
    column-gap: 10px;
    margin-bottom: 15px;
}

#pl .src-btn {
    border: none;
    border-radius: 4px;
    background-color: var(--action-btn);
    color: #fff;
    width: 100%;
    font-weight: 700;
    padding: .375rem .75rem;
}


#pl summary::-webkit-details-marker {
    display: none;
}

#pl summary {
    display: flex;
    justify-content: space-between;
}



#pl hr {
    border: solid 1px #ede7f6;
    margin: 8px 0;
}

.tst {
    color: var(--success-btn);
}

.gt {
    text-align: center;
}

    .gt h4 {
        color: var(--success-btn);
        font-weight: bold;
    }

#tb .pl {
    display: flex;
    column-gap: 10px;
    margin-bottom: 15px;
}

#tb .src-btn {
    border: none;
    border-radius: 4px;
    background-color: var(--action-btn);
    color: #fff;
    width: 100%;
    font-weight: 700;
    padding: .375rem .75rem;
}


.tbl {
    overflow: auto;
}

.table {
    color: var(--text-color);
}

.ttlrow {
    font-weight: bold;
    color: var(--success-btn);
    font-size: 20px;
}

#cfr .form-control {
    background-color: #353535;
    border: none;
    color: #fff;
    box-shadow: none;
    margin-bottom: 5px;
    border-radius: 0;
}

.back {
    position: absolute;
    top: 20px;
}

    .back a {
        color: #FFF;
        text-decoration: none;
    }

#abt {
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
}

    #abt .desc {
        margin-top: 10px;
    }

        #abt .desc .onr {
            margin-bottom: 15px;
        }

.hplnk {
    display: flex;
    column-gap: 10px;
    align-items: center;
    justify-content: center;
}

    .hplnk a {
        color: var(--text-color);
        text-decoration: none;
        font-size: 18px;
        font-weight: bold;
    }

    .hplnk .material-icons-outlined {
        font-size: 10px;
        height: 18px;
        width: 18px;
        background-color: rebeccapurple;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

.wblink {
    margin-top: 20px;
}

    .wblink a {
        color: var(--success-btn);
        font-weight: 600;
        text-decoration: none;
    }

#btm-nav {
    position: sticky;
    bottom: 10px;
    width: 90%;
    margin: auto;
    transition: 0.3s;
}

    #btm-nav .nav-bt {
        display: flex;
        background: var(--card-bg-light);
        border-radius: 100px;
        justify-content: space-between;
        padding: 5px 15px;
        list-style-type: none;
    }

        #btm-nav .nav-bt a {
            color: var(--btn-color);
            display: grid;
            text-align: center;
            text-decoration: none;
        }

            #btm-nav .nav-bt a label {
                font-size: 12px;
                margin: 0;
            }

        #btm-nav .nav-bt .material-icons-round {
            font-size: 30px;
        }



.radio-contra td label {
    margin: 0 .5em;
}

.duo1 .rn1:nth-child(2) label {
    float: right;
    width: 100%;
    text-align: right;
}

.duo1 .rn1:nth-child(2) p {
    text-align: end;
}

.report-lists {
    display: flex;
    flex-wrap: wrap;
}

    .report-lists a {
        flex-grow: 1;
        width: 50%;
        padding: 5px;
        font-size: 12px;
        color: var(--text-color);
        text-decoration: none;
    }

.privileg-tab .nav-link {
    padding: .2em;
    border: none;
    border-radius: 4px;
    color: var(--text-color);
    background: var(--card-bg-lighter);
    margin: 0 .3em .2em 0;
}

.prv-chk tr {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.prv-chk label {
    padding: 0 .2em;
    font-size: 14px;
    vertical-align: top;
    color: var(--text-color);
}

.chk-privilage {
    padding: .5em;
    margin-top: 1em;
    box-shadow: 0 0 0 1px grey;
    border-radius: 4px;
}

.nav-top-btn {
    display: flex;
    align-items: center;
    column-gap: 1em;
    margin-bottom: .8em;
}

    .nav-top-btn a {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-color);
        text-decoration: none;
    }

.page-header {
    margin: 0;
    font-size: 1.2rem;
    color:#fff;
    font-weight: 600;
}

.prd-nm {
    font-size: 14px;
}
/*dataTable pdf downlod button style custom*/

.pdf-dwnld {
    background: #007bff;
    color: #fff;
    position: relative;
    margin-top: .5em;
    padding: .3em .4em;
    border-radius: 4px;
    border: none;
}

    .pdf-dwnld span {
        padding-left: 25px;
        font-size: 14px;
    }

    .pdf-dwnld:after {
        position: absolute;
        content: "\e2c4";
        font-family: "Material Icons Outlined";
        left: 0;
        padding: 0 10px;
        font-size: 16px;
    }


/* AutoComplete highlighted item */
.autocomplete_completionListElement {
    margin: 0px !important;
    z-index: 99999 !important;
    background-color: ivory;
    color: windowtext;
    border: buttonshadow;
    border-width: 1px;
    border-style: solid;
    cursor: default;
    overflow: auto;
    height: 200px;
    text-align: left;
    left: 0px;
    list-style-type: none;
}
/* AutoComplete highlighted item */
.autocomplete_highlightedListItem {
    z-index: 99999 !important;
    background-color: #ffff99;
    color: black;
    padding: 1px;
    cursor: auto;
}
/* AutoComplete item */
.autocomplete_listItem {
    z-index: 99999 !important;
    background-color: window;
    color: windowtext;
    padding: 1px;
    cursor: auto;
}

.grid {
    display: grid;
    gap: 1rem;
}

.grid-cols-2 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media only screen and (max-width: 768px) {
    .grid-cols-2 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

.w-fit {
    width: fit-content;
}


/*Home style*/
.tym--date {
    display: flex;
    column-gap: 15px;
}

.date--today {
    padding: .5em;
    background: #C9D8B6;
    color: #000;
    font-size: 20px;
    width: fit-content;
    margin-top: 1.5em;
    border-radius: 4px;
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.tyms {
    display: flex;
    column-gap: 10px;
}

    .tyms div:nth-child(1), .tyms div:nth-child(2) {
        position: relative;
    }

.inv-grp {
    display: flex;
    align-items: center;
}

.inv-lbl {
    min-width: 10rem;
}

#SearchPopup .modal-dialog {
    max-width: 70% !important;
}

@media only screen and (max-width: 768px) {
    #SearchPopup .modal-dialog {
        max-width: 100% !important;
    }
}

.grid-cols-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media only screen and (max-width: 768px) {
    .grid-cols-two {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

.grid-cols-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media only screen and (max-width: 768px) {
    .grid-cols-four {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

.grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

@media only screen and (max-width: 768px) {
    .grid-cols-5 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

.privileg-tab .nav-tabs .nav-link.active {
    background-color: #131313;
    color: #fff;
}

.password-view {
    right: .5rem;
    top: 2.4rem;
}

    .password-view input {
        display: none;
    }

    .password-view svg {
        height: 1rem;
    }

.gap-items tr {
    display: flex;
    gap: 1rem;
}

.h-fit {
    height: fit-content;
}

.rdo-flex tr {
    display: flex;
    gap: 1rem;
}

.scrollarea {
    height: 50vh;
    background-color: #f2f2f2;
    overflow-y: scroll;
    border: solid 1px #ccc
}
/*checklist alaign in reports*/
.cklist label {
    margin-bottom: 0;
}

.text-green {
    color: #446A46;
    font-weight: 500;
}

.red-600 {
    color: #b02a37;
}
/*Dropdown style*/
.dropdown-select {
    width: 100%;
    padding: 0.375rem 0.5rem;
    outline: none;
    border: 1px solid #ced4da;
    border-radius: .25rem;
}

/*Datatable media query*/

@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {

    /* Force table to not be like tables anymore */
    table.new_table, .new_table thead, .new_table tbody, .new_table th, .new_table td, .new_table tr {
        display: block;
    }

        /* Hide table headers (but not display: none;, for accessibility) */
        .new_table thead tr {
            position: absolute;
            top: -9999px;
            left: -9999px;
        }

    .new_table tr {
        background-color: #fff !important;
        color: #131313;
        padding: 1rem .5rem;
    }

    .new_table td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
    }
}

.new_table thead tr {
    background-color: #fff;
    box-shadow: 0 0 0 .5px #1f1f1f;
}

.vertical_line {
    border-left: 6px solid black;
    height: 200px;
    position: absolute;
    left: 10%;
}

.admin-link{
    display:flex;
    gap:1rem;
    flex-wrap:wrap;
}
.select2-container{
    width:100% !important;
}

/*spacing for label next to checkbox.*/
.check-lbl label{
    margin-left:.5rem;
}

.section-separator {
    background-color: #cbd6e1;
}

.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media only screen and (max-width: 768px) {
    .grid-cols-4 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

.card-grp-new{
    display:flex;
    gap:.75rem;
    flex-wrap:wrap;
}
.card-itm-sm {
    display: flex;
    gap: .5rem;
}
    .card-itm-sm:not(:last-child){
        border-right: solid 1px brown ;
        padding-right: .5rem;
    }

    .card-itm-sm label {
        color: brown;
    }
    .card-itm-sm span {
        font-weight: 600;
    }
.card-item-new{
    display:flex;
    font-size:.75rem;
}


.card-item-new svg{
    height:1rem;
}
.gray-text{
    color:gray;
}
.text-sm {
    font-size: .75rem;
}
.font-semibold{
    font-weight:600;
}
.text-blue-500{
    color:blue;
}

.text-green-500 {
    color: forestgreen;
}

.text-red-500{
    color:red;
}
.text-rose-500 {
    color: #F11A7B;
}
.icon-grp{
    display:flex;
    gap:.5rem;
}
.svg-width{
    width:1.5rem;
    height:1.5rem;
}