.point_of_sale{
    width: 100%;
    height: 100%;
    display: flex;
}
.sidebar{
    height: 100vh;
    width: 10%;
    background: red;
}
.cashier_profile{
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}
.cashier_profile p{
    color: white;
    width: 100%;
    text-align: center;
}
.prfl{
    height: 40px;
    width: 40px;
    border-radius: 50%;
    color: white;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    cursor: pointer;
}
.sidebar_icon{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    height: auto;
}
.sidebar_icon:hover{
    background: rgb(97, 9, 9);
}
.sidebar_icon i{
    font-size: 30px;
    color: white;
}
.sidebar_icon p{
    width: 100%;
    text-align: center;
    color: black;
    font-size: 13px;
}
.sidebar_logout{
    display: flex;
    position: absolute;
    bottom: 1px;
    left: 20px;
    color: black;
    cursor: pointer;
}
.sidebar_logout p{
    margin-left: 10px;
}
.main_bar{
    height: 100vh;
    width: 90%;
}
.navbar_icons{
    position: absolute;
    right: 60px;
    top: 10px;
}
.navbar_icons i{
    font-size: 25px;
    margin-left: 10px;
}
.navbar_icons small{
    height: 30px;
    width: 50px;
    border-radius: 50%;
    background: red;
    color: black;
    font-size: 10px;
    transform: translateY(-20px);
}
.dashlets{
    margin-top: 70px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.dashlet{
    width: 250px;
    background: linear-gradient(60deg, black, red);
    border-radius: 1px;
    height: 100px;
    margin: auto;
    text-align: center;
    font-weight: bold;
    color: black;
    overflow: hidden;
    font-family: Georgia, 'Times New Roman', Times, serif;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
.dashlet p{
    transform: translateY(5px);
}
.dashletdet{
    display: flex;
}
.dashletdet h6{
    color: white;
    width: 50%;
    text-align: right;
    font-size: 25px;
    font-weight: bold;
    font-family: 'Courier New', Courier, monospace;
}
.dashlet i{
    font-size: 50px;
    color: rgb(8, 8, 8, 0.3);
    width: 50%;
    text-align: right;
    transform: translateY( 0px);
}


.saleslist{
    margin-top: 20px;
    width: 100%;
    display: flex;
    border: 2px solid red;
}
.products_listings{
    width: 70%;
    height: auto;
    border: 2px solid red;
}
.products_listings input{
    height: 30px;
    width: 300px;
    border: 1px solid black;
}
.products_listings button{
    height: 30px;
    width: 50px;
    border: 1px solid red;
    background: red;
    border-radius: 0px 10px 10px 0px;
}
table { 
    width: 680px; 
    border-collapse: collapse; 
    margin: 50px auto;
}

/* Zebra striping */
tr:nth-of-type(odd) { 
    background: #eee; 
    }

th { 
    background: #00308F; 
    color: white; 
    font-weight: bold; 
    }

td, th { 
    padding: 10px; 
    border: 1px solid #ccc; 
    text-align: left; 
    font-size: 18px;
    }

@media 
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {

    table { 
        width: 100%; 
    }

    /* Force table to not be like tables anymore */
    table, thead, tbody, th, td, tr { 
        display: block; 
    }
    
    /* Hide table headers (but not display: none;, for accessibility) */
    thead tr { 
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    tr { border: 1px solid #ccc; }
    
    td { 
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee; 
        position: relative;
        padding-left: 50%; 
    }

    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;
        /* Label the data */
        content: attr(data-column);

        color: #000;
        font-weight: bold;
    }

}
.receipt{
    width: 30%;
    border: 2px solid red;
}
.receipt_doc{
    width: 100%;
    height: auto;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
#table table{
    width: 100%;
    border-collapse: collapse;
    margin-top: 0px;
}
td{
    padding: 5px 0 5px 15px;
    border: 1px solid #EEE
}
.tabletitle{
    padding: 5px;
    font-size: .5em;
    background: #EEE;
}
.service{border-bottom: 1px solid #EEE;}
.item{width: 24mm;}
.itemtext{font-size: .5em;}
