.anchor-prez {
    z-index: 10000;
    color: white;
    margin-bottom: 0;
    height: 80px;
    display: flex;
    align-items: flex-end;
}

.anchor-prez.left::before {
    content: '';
    background-image: url(/map/index.php/view/media/getMedia?repository=public&project=QuietudeAttitude&path=media%2Fthemes%2FQuietudeAttitude%2Fcss%2F/svg/back-drawn-arrow-svgrepo-com.svg);
    background-size: 80px;
    background-repeat: no-repeat;
    width: 90px;
    height: 58px;
}

.anchor-prez.right::after {
    content: '';
    background-image: url(/map/index.php/view/media/getMedia?repository=public&project=QuietudeAttitude&path=media%2Fthemes%2FQuietudeAttitude%2Fcss%2F/svg/back-drawn-arrow-svgrepo-com.svg);
    background-size: 80px;
    background-repeat: no-repeat;
    width: 90px;
    height: 58px;
    transform: scaleX(-1);
}

.anchor-prez.hide {
    display: none!important;
}


/*******************/
/* AJOUTS ZEBRAGEO */
/*******************/

/* Surcharge des variables de couleurs */
:root {
    --color-primary: #133B58;
    --color-primary-light: #6ea3c9;
    --color-primary-hover: #9FAC66;
    --color-secondary: #9FAC66;
    --color-secondary-light: #d5e29f;
    --color-secondary-hover: #6ea3c9;
    --color-ternary: #a9a9a9;
    --color-ternary-light: #d9d9d9;
    --color-ternary-hover: #828282;
    --color-contrasted-elements: #133B58;
    --color-contrasted-elements-light: #c5ce9d;
}

/* En tête */
#header {
    background-color: var(--color-primary);
}

/* Remplacer du logo général de l'entête */
#header #logo {
    background: url(/map/index.php/view/media/getMedia?repository=public&project=QuietudeAttitude&path=media%2Fthemes%2FQuietudeAttitude%2Fcss%2F/logo/logo_entete_qa_white.png) no-repeat;
    background-size: contain;
    min-width: 200px;
}

/* Masquer le(s) titre(s) de l'entête */
#header #title > h1 {
    display: none;
}

/* Adaptation pour écran mobile */
@media only screen and ( min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx), only screen and (max-height: 640px), only screen and (max-device-height: 640px) {
    #header #logo {
        min-width: 100px;
    }
    #header #title {
        top: 60%;
        font-size: .5rem;
        max-width: 40%;
    }
}