/*
 Theme Name:   Astra Child
 Theme URI:    http://example.com
 Description:  Child theme for Astra
 Author:       Your Name
 Author URI:   http://example.com
 Template:     astra
 Version:      1.0.0
*/


#wpforms-submit-6 {
    background: #ffab3f!important;
}
/* Blink any element with class="myhighlight" */
.myhighlight {
  animation: myBlink 1s linear infinite;
  will-change: opacity;
}

@keyframes myBlink {
  50% { opacity: 0; }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .myhighlight { animation: none; }
}

