/* Ce fichier a été copié depuis le projet Commun. */
/* Ne pas éditer ce fichier directement; l'éditer depuis le projet Commun. */

thermometre.body {
    background: #CCCCCC;
}

.note-thermometre {
    background: #EEEEEE;
    width: 225px;
    height: 15px;
    border-radius: 50px;
    box-sizing: border-box;
    margin: 10px 0;
    padding: 5px;
}

.total {
    height: 100%;
    border-radius: 50px;
    margin-right: 10px;
    float: left;
    transition: width 0.4s ease-in-out;
}

.nombre {
    font-family: 'Arial', sans-serif;
    color: rgba(0, 0, 0, 0.6);
    height: 30px;
    width: 40px;
    padding: 7px 0 0 0;
    text-align: center;
    background: #FFFFFF;
    border-radius: 20px;
    margin-top: 12px;
    float: left;
    display: none;
    font-size: 12px;
    font-weight: 600;
    box-sizing: border-box;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.45);
}

.boite-termometre:hover .nombre {
    display: block;
    margin-bottom: 20px;
}