
/* ======================== Store ======================== */
.store-logo{
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 1px solid #fafafa;
    border-radius: 2px; 
    object-fit: cover;
}

.store-card{
    border:1px solid #f8f8f8; 
    border-radius:6px;
    background-color: white;
}
.store-card:hover{
    /* background: #ffefef; */
    background: #ffffff;
}

.cart-store-card{
    background-color:#f8f8f8; 
    border:1px solid #efefef; 
    border-radius:6px;
}




/* ======================== Orders ======================== */

.blink {
    animation: blinker 2s linear infinite;
}
  
@keyframes blinker {
    50% {
        opacity: 0;
    }
}

/* Product Qty Input - 1 + */
 /* span {cursor:pointer; }  */


/* ------------------ Scroll Bar Style --------------------- */


/* ------------------ User Profile Style --------------------- */
.user-avatar {
    display: inline-block;
    width: 150px;
    height: 150px;
    border: 1px solid #fffafa;
    border-radius: 6px; 
    object-fit: cover;
}  

.user-details{
    max-width:600px; 
    max-height:600px; 
    position:fixed; 
    bottom:300px; 
    left:50%; 
    transform:translateX(-50%); 
    z-index:102; 
    background:#fffdf8;
}
