
body.noscroll{
    overflow: hidden;
}
.bottom-bar-container {
    position: fixed;
    z-index: 100;
    /* background: #00000063;     */
    width: 100vw;
    height: 100%;    
    transition: all .75s;
}
.display-bottom-bar {
    top: 0%;
    /* animation: bounceIn .5s ease-out forwards;  */
}

@keyframes bounceIn {
    0% {
        top: 100%; 
    }
    60% {
        top: -5%; 
    }
    75% {
        top: 3%; 
    }
    90% {
        top: -2%; 
    }
    100% {
        top: 0%; 
    }
}



.hide-bottom-bar {
    top:100%;
    /* animation: bounceOut .5s ease forwards;  */
}

/* Keyframes for the bounce animation */
@keyframes bounceOut {
    0% {
        top: 0%;
    }     
    75% {
        top: 75%;
    }
    100% {
        top: 100%; /* Final position */
    }
}
.bottom-bar{
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 16px 0px 16px 0px;
    background: white;
    margin-top: 130px;
    height: 100%;
}
.bottom-bar .header{
    padding: 0px 0 9px 9px;
    text-transform: capitalize;
    font-size: 17px;
    font-family: system-ui;
    display: block;
    width: 100%;
    border-bottom: 2px solid #d3d3d35e;
    margin: 0px 4px 0px 4px;
}
.bottom-bar-child{
    display: flex;         
}
.bottom-bar-child .left-side {
    overflow: scroll;
    width: 21%;
    height: calc(100vh - 235px);
    border-right: 2px solid #efefef;
    scrollbar-width: none;
    padding-top: 10px;
}
.bottom-bar-child .right-side{            
    width: 79%;  
    position: relative;          
}
.bottom-bar-child .side-list{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.bottom-bar-child .side-list li{
    /* padding: 2px 6px 3px 3px; */
    text-align: center;            
    display: flex;
    justify-content: center;
}
.bottom-bar-child .side-list li a{
    border-right:3px solid rgb(255, 255, 255);
    display: ruby;
    color: grey;
    width: 100%;
}        
.category-card-list a.active{
    border-right:3px solid green!important;
    color: black!important;
}     
.category-image{
    
}   
.bottom-bar-child .side-list li a .img-container{
    /* background: #d3d3d378;
    height: 65px;
    border-radius: 100%;
    width: 65px; */
    position: relative;            
}
.bottom-bar-child .side-list li a img {
    /* position: absolute; */
    /* top: 14px; */
    /* left: 0px; */
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 0;
    /* background: red; */
}
.bottom-bar-child .side-list li a p{
    width: 100%;
}
.productCards {
    /* padding: 8px 5px 5px 5px; */
    min-height: 183px;
    /* background: #e1e1e161; */
    /* box-shadow: 0 0 2px 0; */
    margin: 5px;
    position: relative;
    cursor: pointer;
    box-shadow: 0 0 6px 0 #a7a7a7;
    /* border-top-left-radius: 16px; */
    /* border-top-right-radius: 16px; */
    padding-bottom: 10px;
    border-radius: 16px;
    background: #f5ffdf;
}
.productCards img{
    width: 100%;
    border-radius: 17px;
}
.productCards .name {
    margin: 0;
    font-size: clamp(13px, 2vw, 15px);
    font-family: system-ui;
    font-weight: 600;
    text-align: left;
    margin-bottom: 10px;
    padding-left: 10px;
}
.productCards .price {
    margin: 0;
    color: #000000;
    font-weight: 900;
    font-family: sans-serif;
    font-size: 18px;
    padding-left: 10px;
}
.productCards .price span {
    color: red;
    text-decoration: line-through;
    padding-left: 10px;
}
.productCards .quick-add-btn {
    background: #f9ec28;
    color: #000000;
    border: 1px solid #f9ec28;
    padding: 7px 11px;
    border-radius: 12px;
    font-weight: bold;
    box-shadow: 0px 0px 5px 1px #5d5b5b73;
    position: absolute;
    bottom: 3px;
    right: 3px;
}
.productCards .modify-qty {
    display: flex;
    position: absolute;
    bottom: 3px;
    right: 3px;
    background: #f9ec28;
    color: #190000;
    height: 39px;
    margin: auto;
    /* padding: 9px 0; */
    border-radius: 12px;
}
.productCards .modify-qty p {
    display: inline-block;
    width: 29px;
    text-align: center;
    padding: 9px 8px 8px 8px;
    font-weight: 600;
    font-size: 18px;
}
.productCards .modify-qty p i {    
    cursor: pointer;
}

.cross-btn{
    position: absolute;
    top: 53px;
    left: 50%;
    background: white;
    font-size: 35px;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    text-align: center;
    align-items: center;
    display: grid;
    transform: translateX(-25px);
    transform: translateY(-25px);
}
.filter-div {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    width: 79vw;
    max-width: 108vw;
    gap: 10px;
    padding: 10px;
    box-sizing: border-box;
    scrollbar-width: none;
}
.applied-filter-name{
    display: inline-block;
}
/* Hide scrollbar in WebKit-based browsers (Chrome, Safari) */
.filter-div::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.filter-div span{
    border: 1px solid #efefef;
    padding: 6px 9px;
    border-radius: 7px;
    height: 34px;
    font-size: 15px;
    cursor: pointer;
}
.filter-div span.active{
    background-color: #d3d3d387;
}
.filter-div span img{
    width: 15px;
    height: 15px;
}
.filter-div span i{
    padding-left: 4px;
}


/* Cross */
.cross-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 50%;
    background: #0000006b;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    transform: translate(-25px, 0px) rotate(45deg);
    z-index: 101;
    transition: all .75s;
}
.black-bg{
    position: fixed;
    height: 152px;
    background: #00000054;
    top: 0px;
    z-index: 100;
    width: 100%;
    transition: all .75s;
}
/* Styling for horizontal and vertical bars */
.bar {
    position: absolute;
    background-color: rgb(255, 255, 255); /* Cross color */
}

/* Horizontal bar */
.horizontal {
    width: 19px;
    height: 3px;
}

/* Vertical bar */
.vertical {
    width: 3px;
    height: 19px;
}

.display-cross-btn {
    top: 50px;
}
.hide-cross-btn {
    top:-100px;
}
.display-black-bg {
    top: 0px;
}
.hide-black-bg {
    top:-152px;
}
.right-div{
    max-height: calc(100vh - 290px) !important;
    overflow: scroll;
    padding-bottom: 40px;
}
#loadMore{
    background: red;
    color: white;
    border: none;
    padding: 7px 24px;
    font-weight: bold;
    border-radius: 3px;
    position: absolute;
    /* bottom: 15px; */
    width: 95%;
    margin: 0 10px;
    text-align: center;
    z-index: 1000000;
    top: calc(100% + 20px);
}
.filter-sidebar{
    position: absolute;
    width: 150px;
    overflow: hidden;
    min-height: 150px;
    z-index: 1;
    background: #fcfcfc;
    box-shadow: 0 0 2px 0 #00000082;
    padding: 11px 0 0 10px;
    margin-left: -100%;
    transition: all .5s;
    top: 46px;
    left: 11px;
    border-radius: 5px;
}
.show-filter-sidebar{
    margin-left: 0!important;
}
.filter-sidebar .filter-header{
    font-weight: bold;
    font-size: clamp(13px , 2vw, 17px);
    margin-bottom: 9px;
}
.filter-sidebar ul{
    list-style: none;
    padding: 0;
}
.filter-sidebar ul li{
    
}
.filter-sidebar ul li div{

}
.filter-sidebar ul li div input{
    margin-right: 10px;
}
.filter-sidebar ul li div span{
    font-size: clamp(10px, 2vw, 14px);
}
.noRecordFound{
    padding-top: 20vh;
    text-align: center;
    display: block;
    color: red;
    font-size: clamp(15px, 2vw, 20px);
}
#search-filtered-product{
    position: absolute;
    right: 9px;
    top: 10px;
    border: 1px solid #c4c4c4;
    font-size: 15px;
    padding: 5px;
    border-radius: 6px;
}
#search-filtered-product:focus{
    border: 1px solid #c4c4c4;    
}