/* Pulse Animation Effect */
@keyframes pulse-primary {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(13, 71, 161, 0.4); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(13, 71, 161, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(13, 71, 161, 0); }
}

.btn-pulse {
  animation: pulse-primary 2s infinite;
}
/*# sourceMappingURL=user.min.css.map */
