

/* ------------------ Product Category & Scrollspy --------------------- */

.cat-list{
    position: -webkit-sticky; /* Safari */
    position: sticky; /* Supported in latest version of Chrome, Firefox, Safari, Opera and Edge browsers */
    top: 52px;
    height:612px;
    font-size:15px;
    overflow:auto;
    background:#f8f8ff;
}

.cat-items{
    padding-top: 52px;
}

/* :active MUST come after hover */
a.cat-item{
    color:black; 
    background:#f8f8fa; 
    padding:15px 4px; 
    border:1px solid #f5f5f5;
}


/* ======================== Product Item ======================== */
/* ----- Item Label ----- */
.cat-items-card{
    border:1px solid #f6f6f6; 
    border-radius:4px;
}

.item-card{
    border: 1px solid #fbfbfb; 
    border-radius: 5px;
    background-color: white;
}

.item-card:hover{
    cursor: pointer;
    background: #ffefef;
}

.item-image-list{
    display: inline-block;
    width: 80px;
    height: 80px;
    border-radius: 2px; 
    object-fit: cover;
    border: 1px solid #fffbf8;
}

.item-name-block{
    color:black; 
    height:28px;
}

.item-desc-block{
    height:26px; 
    padding-top:2px;
    font-weight: 300;
}

.item-price-block{
    height:26px;
}

.item-img-detail{
    display: inline-block;
    width: 100%;
    border-radius: 10px 10px 0px 0px; 
    object-fit: cover;
}

/* Set bill printing */
@media print {
    body {
        visibility: hidden;
    }
    #print_section {
        visibility: visible;
        position: absolute;
        left: 0;
        top: 0;
    }
    .page, .page-break { 
        break-after: page; 
    }
}