.capzo-demo-recent-sales {
  align-items: center;
  color: #ff2a2a;
  display: flex;
  font-size: 15px;
  gap: 10px;
  line-height: 1.4;
  margin: 18px 0 16px;
}

.capzo-product-stock {
  align-items: center;
  color: #16864b;
  display: flex;
  font-size: 16px;
  gap: 9px;
  line-height: 1.4;
  margin: 16px 0 20px;
}

.capzo-product-stock.is-out-of-stock {
  color: #b42318;
}

.capzo-product-stock__icon {
  align-items: center;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  display: inline-flex;
  font-size: 11px;
  height: 19px;
  justify-content: center;
  width: 19px;
}

.capzo-demo-recent-sales__icon {
  animation: capzo-demo-flame-flicker .85s ease-in-out infinite;
  flex: 0 0 18px;
  height: 18px;
  transform-origin: 50% 100%;
  width: 18px;
}

.capzo-demo-recent-sales.is-updating strong {
  animation: capzo-demo-sales-roll .55s ease;
}

@keyframes capzo-demo-flame-flicker {
  0%, 100% { opacity: 1; transform: scale(1) rotate(-2deg); }
  45% { opacity: .68; transform: scale(.9, 1.08) rotate(2deg); }
  70% { opacity: .9; transform: scale(1.08, .96) rotate(-1deg); }
}

@keyframes capzo-demo-sales-roll {
  0% { opacity: .35; transform: translateY(3px); }
  100% { opacity: 1; transform: translateY(0); }
}
