:root {
    /*    --main-color: #2e2960;*/
    --main-color: #DD5208FF;
    --main-txt: #333;
    --input-clr: #F6F6F6;
    --menu-bg: #F3F3F3;
    --menu-txt: #5C5C5C;
    --placeholder-txt: #9F9F9F47;
}

/*
    main color :#BC2D2D
    second color:#268905
    #b5530e
    2e2960
*/

body {
}

.bg-main {
    background-color: var(--main-color);
    color: #fff
}

    .bg-main:hover {
        background-color: var(--main-txt);
        color: #fff
    }

* {
    padding: 0;
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

a {
    text-decoration: none;
    color: #333
}

body {
    font-family: Cairo;
    font-size: 15px;
    font-weight: bolder;
    background: #eee;
}

.sec-styl {
    border-radius: 8px;
    box-shadow: 0 1px 6px #ddd;
    background-color: #fff;
}

/*  Header Style  */
.navbar {
    padding: 20px;
}

.nav-logo img {
    max-width: 100%;
}

.navbar i.fa-bell {
    font-size: 32px;
    color: var(--main-color);
    margin-right: 10px;
}

.cashier-full-w {
    display: flex;
}

.cashier {
    width:60%;
    margin-left: 15px;
    position: relative;
}

.cash-img {
    width: 72px;
    text-align: end;
    margin-right: 10px;
}

    .cash-img img {
        max-width: 60%;
    }

button.add-new {
    font-size: 12px;
    margin-left: 10px;
}

.cash-data p {
    margin: 0;
    color: var(--menu-txt);
    font-size: 12px;
}

.cash-data h5 {
    margin: 0;
}

.cashier span i {
    color: var(--main-color)
}

.cash-d-menu {
    position: absolute;
    top: 25px;
    right: 0;
    width: 100%;
    padding: 8px 10px;
    display: none;
    z-index: 4444;
}

    .cash-d-menu ul li {
        padding: 12px 8px;
    }

        .cash-d-menu ul li a {
            height: 100%;
            width: 100%;
            display: block;
        }

        .cash-d-menu ul li i {
            color: var(--main-color);
            margin-right: 8px;
        }

        .cash-d-menu ul li:hover {
            background-color: #f7f7f7;
        }

.cashier .drop-trigger:hover + .cash-d-menu {
    display: block;
}

.cash-d-menu:hover {
    display: block;
}

/*  Side menu Style  */
.side-menu {
    height: fit-content;
    padding: 20px;
}

    .side-menu li {
        width: 80px;
        height: 80px;
        padding: 10px;
        background-color: var(--menu-bg);
        border-radius: 8px;
        display: inline-block;
    }
#callCenterCounter {
    background: red;
    color: white;
    border-radius: 50%;
    padding: 12px 16px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    display: block;
    
}
.icon-row {
    /*display: flex;
    justify-content: space-around;*/
    display: flex;
    justify-content: space-around;
    flex-direction: column;
}

    .icon-row a {
        /*        background-color: var(--menu-bg);
        color: var(--menu-txt);
        padding: 8px;
        border-radius: 6px;
        height: 90px;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        margin: 10px 5px;
        font-size: 20px;
        transition: all 0.1s ease-in-out;*/
        background-color: var(--menu-bg);
        color: var(--menu-txt);
        padding: 8px;
        border-radius: 6px;
        height: 90px;
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: center;
        margin: 10px 5px;
        font-size: 20px;
        transition: all 0.1s ease-in-out;
    }

        .icon-row a.active, .icon-row a:hover {
            background-color: var(--main-color);
            color: #fff;
        }

        .icon-row a i {
            font-size: 22px;
            margin-bottom: 5px;
            padding-left:15px;
        }

/*  Customer list Style  */
.cust-list-title {
    font-weight: 600;
}

/*---------------------- mob view */
.mob-view {
    max-width: 992px;
}

.cash-mob {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

    .cash-mob .cash-img {
        margin-right: 0;
        width: 35%;
    }

    .cash-mob .cashier {
        margin-left: 0;
    }

.mob-view .navbar i.fa-bell {
    font-size: 25px;
    margin-right: 0;
}

.mob-view .navbar i.fa-bars {
    font-size: 25px;
    color: var(--main-color);
    cursor: pointer;
}

.mob-view .nav-logo {
    padding-left: 8px;
}

.cash-mob .cash-d-menu {
    width: 55vw;
}

    .cash-mob .cash-d-menu ul li {
        padding: 8px;
    }

.mob-view form.customer-list-srch {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .mob-view form.customer-list-srch button {
        width: 100%;
        margin: 8px auto 0 auto;
    }

.cust-list-data-sec {
    margin: auto;
    overflow: hidden;
}

.customer-list-data-left {
    background-color: #f7f7f7;
    padding: 12px;
    font-weight: 600;
}

.customer-list-data-right {
    padding: 12px 0;
}

.cust-list-data-sec ul li {
    padding: 5px 0;
}

.mob-side-menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    height: 100%;
    width: 100%;
    background-color: #000000db;
    padding-top: 10px;
    display: none;
}

.menu-list {
    position: absolute;
    transform: translateX(-300px);
    width: 80%;
    height: 100%;
    box-shadow: none;
    padding: 20px;
    overflow: hidden;
    transition: transform 0.3s
}

.mob-side-menu.show-m {
    display: block;
}

.menu-list.show-m {
    transform: translateX(0);
}

.menu-list > span {
    width: 100%;
    display: block;
    text-align: right;
    padding: 4px;
}

    .menu-list > span i {
        font-size: 18px;
        color: var(--main-color);
        cursor: pointer;
    }

.mob-side-menu ul {
    display: inline-block;
}

    .mob-side-menu ul li {
        padding: 10px;
        font-size: 18px;
    }

    .mob-side-menu ul.mmi li {
        color: #999;
    }

    .mob-side-menu ul li.active, .mob-side-menu ul li.active a {
        color: var(--main-color);
        font-weight: 600;
    }

.alert-box {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 400px;
    display: flex;
    align-items: center;
    padding: 15px;
    z-index: 100000;
}

    .alert-box p {
        margin-bottom: 0;
    }

    .alert-box i {
        margin-right: 10px;
    }

.alert-wrong {
    background-color: #efd7d7
}

    .alert-wrong p {
        color: rgb(110, 2, 2)
    }

    .alert-wrong i {
        color: rgb(155, 1, 1)
    }

.alert-suc {
    background-color: #cae1cf
}

    .alert-suc p {
        color: rgb(2 110 31)
    }

    .alert-suc i {
        color: rgb(2 110 31)
    }



.alert-warnning {
    background-color: #edbe7c
}

    .alert-warnning p {
        color: rgb(136.8, 96.6, 16.2)
    }

    .alert-warnning i {
        color: rgb(136.8, 96.6, 16.2)
    }



.loading-state {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 9999999999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .loading-state .childElement {
        position: absolute;
        top: 45%;
        left: 45%;
    }
#_SendordercallcentertoKitchen {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--input-clr);
    background-color: var(--main-color);
    padding: 10px;
    border-radius: 5px;
    position: relative;
}

.lv-circles.md {
    height: 138px;
    width: 100px;
}
.lv-circles div:before {
    content: "";
    display: block;
    margin: 0 auto;
    border-radius: 50%;
    background-color: var(--main-color);
    
}
@media only screen and (max-width: 1366px) and (min-width: 1024px) {
    .groubdiv{
        width: 100%;
 
    }
    .calcdiv {
        width: 100%;

    }
    .category-list{
        width: 100%;
     
    }
    .calcdivch{
        width: 100%;
        
    }
    .cashier {
        width: 100%;
        margin-left: 15px;
        position: relative;
    }
    #_SendordercallcentertoKitchen {
        font-size: 13px;
   
    }
    #contianerItems {
        margin-bottom: 10px;
    }
}
@media only screen and (max-width: 1024px) and (min-width: 768px) {
    .groubdiv {
        width: 100%;
    }

    .calcdiv {
        width: 100%;
    }

    .category-list {
        width: 100%;
    }

    .calcdivch {
        width: 100%;
    }

    .cashier {
        width: 100%;
        margin-left: 15px;
        position: relative;
    }

    #_SendordercallcentertoKitchen {
        font-size: 13px;
    }

    #contianerItems {
        margin-bottom: 10px;
    }
}








