/* Sparkline SVGs
   ========================================================================== */
.sparkline-svg {
  width: 100%;
  height: 36px;
}

/* Pulse Animation
   ========================================================================== */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}
.pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #50cd89;
  animation: pulse 2s infinite;
}

.pulse.red {
  background: #f1416c;
}