/*
 Theme Name: GeneratePress Child
 Template: generatepress
 Text Domain: generatepress-child
*/

/* Blink animation for the icon */
/* Blink animation */
/* Smooth fade animation for the icon */
@keyframes blinkIconSmooth {
  0%   { opacity: 1; }
  50%  { opacity: 0.15; } /* how “faint” it gets */
  100% { opacity: 1; }
}

/* Make sure the whole button does NOT blink */
#blink-icon {
  animation: none;
}

/* Only the icon fades in/out smoothly */
#blink-icon .gb-shape svg {
  animation: blinkIconSmooth 2.2s ease-in-out infinite;
}

