/*
Barre d'alerte en haut de page -------------------------------------------------------------------------------------------------
*/

/* Barre placée en haut de l'écran */
#info-bar {
    position: fixed;
    width: 95%;
    max-width: 400px;
    min-height: 40px;
    border-radius: 10px;
    background-color: #E4EBF5;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    align-items: center;
    padding: 5px 40px 5px 10px;
    z-index: 2;
    display: none;
    cursor: pointer;
    font-weight: 400;
}

/* Construction de la croix dans la partie droite de l'alerte */
#info-bar:before,
#info-bar:after {
    position: absolute;
    right: 20px;
    content: ' ';
    height: 20px;
    width: 2px;
    background-color: #333;
}
#info-bar:before {
    transform: rotate(45deg);
}
#info-bar:after {
    transform: rotate(-45deg);
}

/* Couleurs d'alertes */
#info-bar.alert {
    display: flex;
    background-color: #edd8d8;
    color: #571f1f;
}

#info-bar.success {
    display: flex;
    background-color: #daedd8;
    color: #000000;
}
