/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 18 2026 | 12:11:23 */
body a {
	text-underline-offset: 4px;
	text-decoration: underline;
	transition: all 0.3s ease-in-out;
}


/* Puls animatie */
@keyframes pulseButton {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 190, 0.6);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 12px rgba(255, 255, 190, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 190, 0);
  }
}

/* Alleen deze specifieke knop */
.knoppulse {
  display: inline-block;
  animation: pulseButton 2s infinite;
  transition: transform 0.3s ease;
}






