/*
Theme Name:     Sidat
Theme URI:      https://www.gilles.dev/
Author:         Gilles Hoarau
Author URI:     https://www.gilles.dev/
Description:  	Theme for Sidat
Version:      	44.20.0
*/


/* Badge "Nouvelle procédure" sur le 2e lien de téléchargement retours */
@keyframes badge-pulse {
      0% { opacity: 1; }   /* visible */
  5% { opacity: 0; }  /* invisible */
  10% { opacity: 1; } /* visible */
15% { opacity: 0; }
20% { opacity: 1; }
}
section.mb-5:first-of-type .list-group .list-group-item:nth-child(2)::after {
    content: "Nouvelle procédure";
    color: red;
	font-size: 15px;
	font-weight: 600;
	padding-left: 12px;
	padding-right: 12px;
	border: 2px solid red;
	border-radius: 5px;
	animation: badge-pulse 3s infinite;
}
section.mb-5:first-of-type .list-group .list-group-item:nth-child(2){
	display: flex;
	justify-content: space-between;
}