.quote-cart{

}

.quote-cart-items{

}
.quote-cart-item-amount{
    
}
.quote-cart-item-name{
    
}

/* Add this in your stylesheet or <style> block */


.quote-cart.flash-effect {
  animation: flash-shake 0.3s ease;
}

@keyframes flash-shake {
  0% { transform: scale(1); }
  25% { transform: scale(1.03); }
  50% { transform: scale(0.97); }
  75% { transform: scale(1.02); }
  100% { transform: scale(1); }
}
