/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/
@keyframes flash {
    0%, 50% { opacity: 1; visibility: visible; }
    51%, 100% { opacity: 0; visibility: hidden; }
}
/* Appliquer l'animation au <li> */
.radio_option.flash {
    animation: flash 0.5s 2 alternate; /* Clignotement 2x pendant 1 seconde */
}
