/*--- DARK MODE ---*/
body[data-theme = "darkmode"] {
    --blue-color : #FFF;
    --white-color : #041821;
    --grey2-color : #041821;
}

body[data-theme = "darkmode"] header {
    background: var(--white-color);
    border-color: rgba(255, 255, 255, .1);
}

body[data-theme = "darkmode"] .filtres a.active {
    color: #FFF;
    background: var(--green-color);
}

