:root {
    --ezlightgray: rgb(242, 242, 242);
    --ezgray: rgb(166,166,166);
    --ezlightmoregray: rgb(222,222,222);
    --ezlightblue: rgb(43, 175, 231);
}

.bg-black {
    background: rgb(0, 0, 0);
}

.bottom-0{
    bottom: 0px;
}

.m-header {
    background: var(--ezlightgray) !important;
    color: #000 !important;
    font-size: 12px;
    position: sticky;
    top: 0;
    z-index: 99999;
}

.m-header .navbar-brand{
    color: #000 !important;
    font-size: 16px;
}

.m-header .fa{
    font-size: 12px;
}

.m-header .search {
    position: relative;
    width: 100%;
    padding: 4px;
}

.m-header .search i {
    position: absolute;
    right: 20px;
    top: 16px;
    font-size: 20px;
}

.self-pickup-options, .payment-method-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 4px;
    margin-top: 8px;
}

.self-pickup-options div, .payment-method-options div {
    padding: 8px;
    background: var(--ezlightgray);
    border-radius: 8px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 4px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
}

.self-pickup-options div img {
    height: 24px;
    width: 24px;
    object-fit: contain;
}

.self-pickup-options div:hover, .payment-method-options div:hover {
    background: var(--ezgray);
}

.self-pickup-options div.active, .payment-method-options div.active {
    background: var(--ezgray);
}
.customer-info{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.customer-info .info {
    flex: 1;
    font-size: 12px;
}

.customer-info .info h6{
    font-size: 12px;
}

.customer-info .customer-icon {
    padding: 8px;
    background: var(--ezlightgray);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

    .customer-info .customer-icon img {
        width: 24px;
        height: 28px;
        object-fit: contain;
    }

    .customer-info .customer-icon span {
        font-size: 12px;
    }



.add-new-product {
    position: relative;
    padding: 4px 12px;
    background: #fff;
    border: none;
    border-radius: 8px;
    font-size: 11px;
    width: auto;
    font-weight: 500;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='12' ry='12' stroke='%23333' stroke-width='4' stroke-dasharray='14%2c 10' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
    border-radius: 12px;
}

.add-new-product img {
    position: relative;
    height: 24px;
    width: 24px;
}

.mobile-product-list {
    display: grid;
    grid-template-columns: 65% 33%;
    column-gap: 2px;
    margin-top: 8px;
    /*width: 59vh;*/
}

    .mobile-product-list .product-info{
        padding: 0.5rem;
    }

.mobile-industry-items {
    padding: 8px;
    background: var(--ezlightblue);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    margin-right: 6px;
    font-weight: 700;
    cursor: pointer;
    color: #fff;
}

.mobile-industry-items.active {
    background: var(--ezgray);
}


.mobile-categories-items {
    padding: 8px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    margin-right: 6px;
    cursor: pointer;
    font-weight: 700;
    color: #fff;
    background: var(--ezlightblue);
}

    .mobile-categories-items.active {
        background: var(--ezgray);
    }

    .mobile-industry-items:hover, .mobile-categories-items:hover {
        background: var(--ezgray);
    }

    @media screen and (max-width: 767px) {
        .mobile-industry-items, .mobile-categories-items {
        font-size: 12px;
    }


        .mobile-product-list .product-info {
            background: var(--ezlightgray);
            padding: 0.5rem;
            border-radius: 20px 0px 0px 20px;
        }
}




.mobile-product-list .product-info .product-name{
    font-size: 14px;
    font-weight: 700;

}

.mobile-product-list .product-info small {
    font-size: 12px;
}


.mobile-product-list .product-info .product-available-stock {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 4px;
}

.mobile-product-list .product-info .product-quantity-update, #searchTableDiv .product-quantity-update {
    display: flex;
    align-items: center;
    column-gap: 4px;
}

    .mobile-product-list .product-info .product-quantity-update .btn, .order-amount .btn, #searchTableDiv .product-quantity-update .btn {
        background: rgb(0,0,0);
        padding: 8px;
        color: rgb(255,255,255);
        font-size: 18px;
        margin: 0px;
    }


    .mobile-product-list .product-info .product-quantity-update .qty-btn, #searchTableDiv .product-quantity-update .qty-btn {
        border-radius: 50%;
        height: 24px;
        width: 24px;
        padding: 3px;
        font-size: 12px;
    }

    .mobile-product-list .product-info .product-quantity-update .qty-input, #searchTableDiv .product-quantity-update .qty-input {
        border: 1px solid #D9D9D9;
        padding: 4px;
        font-size: 14px;
        width: 4rem;
        text-align: center;
        background: transparent;
    }

    .menu-item-col .card-footer{
        background: none;
        border: none;
        padding: 0;
        border-radius: 0px;
    }

    .menu-item-col .card-footer .add-btn, #searchTableDiv .add-btn {
        background: rgb(0,0,0);
        padding: 8px;
        color: rgb(255,255,255);
        font-size: 18px;
        margin-top: 4px;
        width: 100%;
    }

    .mobile-product-list .product-info .add-btn {
        background: rgb(0,0,0);
        padding: 8px;
        color: rgb(255,255,255);
        font-size: 18px;
        margin-top: 4px;
        width: 100%;
    }
@media screen and (min-width:768px) {
    .mobile-product-list .product-info .product-name {
        font-size: 16px;
        font-weight: 700;
    }

    .mobile-product-list .product-info .product-available-stock {
        font-size: 14px;
        font-weight: 400;
    }

    .mobile-product-list .product-info .product-quantity-update, #searchTableDiv .product-quantity-update {
        display: flex;
        align-items: center;
        column-gap: 4px;
    }

        .mobile-product-list .product-info .product-quantity-update .btn, .order-amount .btn, #searchTableDiv .product-quantity-update .btn {
            background: rgb(0,0,0);
            padding: 4px 8px;
            color: rgb(255,255,255);
            font-size: 14px;
            margin: 0px;
        }

        .mobile-product-list .product-info .product-quantity-update .qty-btn, #searchTableDiv .product-quantity-update .qty-btn {
            border-radius: 50%;
            height: 24px;
            width: 24px;
            padding: 0px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .mobile-product-list .product-info .product-quantity-update .qty-input, #searchTableDiv .product-quantity-update .qty-input {
            border: 1px solid var(--ezgray);
            border-radius: 8px;
            padding: 4px 8px;
            font-size: 14px;
            width: 3rem;
        }
}
.mobile-product-list .price-info {
    background: var(--ezlightgray);
    padding: 4px;
    border-radius: 0px 20px 0px 0px;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.mobile-product-list .price-info strike {
    color: rgb(255,0,0);
    display: block;
    text-align: center;
}

.mobile-product-list .price-info .btn {
    background: rgb(0,0,0);
    padding: 8px;
    color: rgb(255,255,255);
    font-size: 16px;
    margin: 0px;
}

#cart-footer {
    position: fixed;
    bottom: 0;
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.footer-cart{
    position: relative;
    left: 0px;
    bottom: -2px;
    width: 100%;
}

.footer-cart .cart-summary {
    background: var(--ezgray);
    padding: 8px 1.5rem;
    font-size: 11px;
    color: rgb(255,255,255);
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 32px;
}

.footer-cart .cart-icon {
    background: rgb(0,0,0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0%);
    top: 0;
    height: 70px;
    width: 70px;
    border: none;
    outline: none;
}

.footer-cart .cart-icon i {
    font-size: 20px;
    color: #fff;
    position: relative;
}

.footer-cart .cart-icon div {
    position: absolute;
    color: #fff;
    top: 0px;
    right: 18px;
}

.footer-cart .cart-icon span {
    color: #fff;
    font-size: 14px;
}

.footer-cart .cart-icon.wait span {
    color: #fff;
    font-size: 12px;
}

.header-amount {
    font-weight: 700;
    color: rgb(0,0,0);
    border-bottom: 2px solid #000;
    padding-bottom: 2px;
    display: flex;
    justify-content:center;
    align-items: flex-end;
    font-size: 18px;
}

.header-orderid {
    font-weight: 700;
    color: rgb(0,0,0);
    font-size: 12px;
}

.cart-item-list.products {
    margin-top: -15px;
}

.cart-item-list div:first-child {
    border-radius: 24px 0px 0px 0px;
    padding-bottom: 10px;
}

.cart-item-list div:last-child {
    border-radius: 0px 24px 0px 0px;
    padding-bottom: 20px;
}

.cart-item-list.header div{
    background: rgb(0,0,0);
    padding: 4px 0px 20px 0px;
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 14px;
}


.bg-lightgray {
    background: var(--ezlightgray) !important;
}

.bg-lightmoregray {
    background: var(--ezlightmoregray) !important;
}



.footer-view-order .btn-group, .footer-payment .btn-group {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 100;
    column-gap: 2px;
}

.footer-view-order .btn-group .btn:first-child {
    border-radius: 20px 0px 0px 0px;
}

.footer-view-order .btn-group .btn:last-child {
    border-radius: 0px 20px 0px 0px;
}

.footer-view-order div .btn {
    background: rgb(0,0,0);
    padding: 8px;
    color: rgb(255,255,255);
    font-weight: 600;
    display:flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;
    width: 100%;
    font-size: 14px;
}


    .footer-view-order div .btn img {
        height: 32px;
        width: 32px;
        object-fit: contain;
    }


.order-amount div, .total-order-amount div {
    font-weight: 700;
    font-size: 14px;
}

.order-amount.list, .order-amount.header {
    margin-top: -16px;
}

.order-amount div:first-child, .total-order-amount div:first-child {
    border-radius: 24px 0px 0px 0px;
    padding-bottom: 20px;
    padding-top: 10px;
    padding-left: 2rem;
    text-align: left;
}

.order-amount div:last-child {
    border-radius: 0px 24px 0px 0px;
    padding-bottom: 20px;
    padding-top: 10px;
    text-align: right;
    padding-right: 1rem;
}


.order-amount.title div:last-child {
    border: 2px solid rgb(0,0,0);
    border-radius: 0px 24px 0px 0px;
    text-align: center;
    padding: 6px 0px 20px 0px;
}

.order-amount.header div, .total-order-amount div {
    background: rgb(0,0,0);
    color: rgb(255, 255, 255);
}

.total-order-amount div:first-child {
    border-end-start-radius: 20px;
    padding: 20px 0px 20px 2rem;
}

.total-order-amount div:last-child {
    background: rgb(0,0,0);
    color: rgb(255, 255, 255);
    font-size: 16px;
}

.order-amount .btn {
    padding: 4px 8px !important;
}

.footer-review-amount .btn {
    background: rgb(0,0,0);
    padding: 0.5rem;
    color: rgb(255,255,255);
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 20px 20px 0px 0px;
    margin: 0px;
    font-size: 16px;
}

    .footer-review-amount .btn img {
        height: 42px;
        width: 42px;
        object-fit: contain;
    }

.footer-payment div .btn {
    background: rgb(0,0,0);
    padding: 8px;
    color: rgb(255,255,255);
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 4px;
    font-size: 14px;
}


    .footer-payment div .btn img {
        height: 30px;
        width: 30px;
        object-fit: contain;
    }

.payment-entry{
    margin-bottom: 2rem;
}

.payment-method-options {
    column-gap: 4px;
    width: 100%;
}

.payment-method-options div{
    flex-direction: column;
}

.payment-method-options div img{
    height: 36px;
    width: 36px;
    object-fit: contain;
}

.payment-options-header {
    display: block;
    border-radius: 24px 24px 0px 0px;
    padding: 10px 2rem 20px 2rem;
    text-align: left;
    font-weight: 700;
    font-size: 16px;
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    margin-top: -16px;
}

.payment-options-body {
    display: block;
    border-radius: 24px 24px 0px 0px;
    padding: 10px 2rem 20px 2rem;
    text-align: left;
    font-weight: 700;
    font-size: 16px;
    background: var(--ezlightmoregray);
    margin-top: -16px;
}

.customer-info-page .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 4px;
}

.customer-info-page .header button {
    padding: 8px;
    width: 100%;
    border: 1px solid rgb(0,0,0);
    border-radius: 10px 10px 0px 0px;
    font-size: 11px;
    background: rgb(255,255,255);
}

.customer-info-page .header button.active {
    background: rgb(0,0,0);
    color: rgb(255,255,255);
}

.btn-black{
    background: rgb(0,0,0);
    color: rgb(255,255,255);
}

.customer-info-page label{
    font-size: 11px;
}

.customer-info-page input, .customer-info-page textarea, .previous-balance {
    padding: 16px 12px;
    height: auto;
    border-radius: 10px;
    border: 1px solid rgb(0,0,0);
    font-size: 12px;
}

.customer-info-page .btn {
    padding: 12px 12px;
    text-wrap: nowrap;
}
.more-info{
   padding: 20px 24px 20px 14px;
   border-radius: 20px 20px 0px 0px;
}
.add-opening-balance-btn {
    border: 2px solid #fff;
    border-radius: 10px;
    margin-bottom: 16px;
}

.more-info .rm-class {
    border: 2px solid #fff;
    border-radius: 10px;
    background: transparent;
    padding: 20px;
    color: #fff;
    margin-bottom: 16px;
}

.product-edit-popup-mobile{
    transform: translate(-2%, 0%);
}

@media screen and (max-width: 767px){
    .main-items-container {
        display: none;
    }
}

.add-new-product-form {
    font-size: 11px;
}

.add-new-product-form label{
    font-weight: 600;
}


/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.add-new-product-card {
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='12' ry='12' stroke='%23333' stroke-width='4' stroke-dasharray='14%2c 10' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
    border-radius: 12px;
    box-shadow: none;
    opacity: 0.8;
}


.blink-bg {
    color: #fff;
    padding: 10px;
    display: inline-block;
    border-radius: 5px;
    animation: blinkingBackground 2s infinite;
}

@keyframes blinkingBackground {
    0% {
        background-color: #10c018;
    }

    25% {
        background-color: #1056c0;
    }

    50% {
        background-color: #ef0a1a;
    }

    75% {
        background-color: #254878;
    }

    100% {
        background-color: #04a1d5;
    }
}

.desktop-product-list{
    display: block;
}

.desktop-product-list .product-info {
    padding: 0px;
}

#loadInvoice .modal-dialog {
    max-width: 90%;
    height: 100%;
    margin: 0px auto;
}

    #loadInvoice .modal-dialog .modal-content {
        height: 90%;
    }

#mobileSearch{
    font-size: 12px;
}

#searchTableDiv .product-quantity-update .qty-btn i{
    position: relative;
    font-size: 12px;
    right: 0px;
    top: 0px;
}

@media screen and (max-width: 576px){
    #searchTableDiv {
        padding: 10px 10px 0px 10px;
    }
}

.m-expense-view {
    height: 82vh;
    overflow: auto;
}

/*[ng-click]:active {
    background-color: var(--ezdarkkhaki) !important;
    color: #000 !important;
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
}*/

.wave-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 10000;
}

.wave {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transform: scale(0);
    animation: wave-animation 0.2s linear;
}

@keyframes wave-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.stky-position {
    top: 51px;
}


.statement-header {
    background-color: #FFFF00;

}
.statement-table th {
    background-color: #FFC200;
    border-radius: 5px;
    border: 4px solid #fff;
    color: black;
    padding: 4px;
    border-radius: 15px;
    text-align: center;
    font-weight: bold;
}

.statement-table td {
    border-radius: 5px;
    border: 4px solid #fff;
    color: black;
    padding: 4px;
    border-radius: 15px;
    text-align: center;
    
}

.statement-table tr:nth-child(even) {
    background: rgb(255, 255, 209);
    color: black;
}

.statement-table tr:nth-child(odd) {
    background: rgb(255, 255, 151);
    color: black;
}
.hideScrollbar::-webkit-scrollbar {
    display: none;
}
.review-amount {
    height: 98vh;
    overflow: auto;
}

.draft-order-list-card:hover{
    background: var(--ezlightgray);
}