/*
 * Surcharge des couleurs par défaut (jaune #fbd600) de tarteaucitron.js pour
 * reprendre le dégradé cyclique de la charte du site (cf. @keyframes vousCycle
 * et .vous dans site.css, utilisé pour "Ensemble." sur la page d'accueil).
 * Chargée après la feuille de style de tarteaucitron.js (injectée dynamiquement
 * par la librairie) : les règles ci-dessous utilisent !important pour rester
 * prioritaires quel que soit l'ordre d'insertion des deux feuilles.
 */
@keyframes tarteaucitronCycle {
    0%   { background-color: #8CBF63; }
    14%  { background-color: #5FA6B8; }
    28%  { background-color: #C56F9E; }
    42%  { background-color: #F08D8D; }
    57%  { background-color: #F0A05F; }
    71%  { background-color: #E9C95C; }
    85%  { background-color: #7FB0C4; }
    100% { background-color: #8CBF63; }
}

#tarteaucitronAlertBig #tarteaucitronPersonalize,
#tarteaucitronAlertBig #tarteaucitronPersonalize2,
#tarteaucitronRoot .tarteaucitronCTAButton,
#tarteaucitronRoot .tarteaucitronDeny,
#tarteaucitronRoot .tarteaucitronAllow {
    background-color: #8CBF63 !important;
    animation: tarteaucitronCycle 9s linear infinite !important;
}
