/* Add custom CSS styles below */ 


@keyframes scaleAnimation {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.text-red-500{
  animation: scaleAnimation 2s infinite;
  color: #1ca00e
}

html:not(.dark) .product-single .p-price.t-red, html:not(.dark) .product-single .total-price.t-red{
  color:#1ca00e
}