body {
    background-color: #eee
}

.card {
    border: none;
    border-radius: 10px
}

.c-details span {
    font-weight: 300;
    font-size: 13px
}

.icon {
    width: 50px;
    height: 50px;
    background-color: #eee;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 39px
}

.badge span {
    background-color: #0188DF;
    font-size: 1.75rem;
    width: 150px;
    height: 25px;
    padding-bottom: 3px;
    border-radius: 5px;
    display: flex;
    color: #FFF;
    justify-content: center;
    align-items: center
}

.badge_down span {
    background-color: #0188DF;
    width: 120px;
    height: 25px;
    padding-bottom: 3px;
    border-radius: 5px;
    display: flex;
    color: #FFF;
    justify-content: center;
    align-items: center
}

.size_sdt span {
    font-size: 1.5rem;
}

.size {
    font-size: 2.25rem;
}

.progress {
    height: 10px;
    border-radius: 10px
}

.progress div {
    background-color: grey;
}

.text1 {
    font-size: 14px;
    font-weight: 600
}

.text2 {
    color: #a5aec0
}

/* Par défaut, une étoile est en gris,
   avec un padding et un curseur en forme de main. */
.fa-star {
    color: #DDD;
    cursor: pointer;
    padding: 0.0625rem;
}
/* Si elle porte en plus la classe '.gold', elle sera en jaune. */
.fa-star.gold {
    color: #ffdc0f;
}

/* Le parent global '.rating' positionne le groupe des étoiles et le lien en colonne */
.rating {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Le groupe '.stars' positionne les étoiles
     les unes à côté des autres sans espacements. */
.stars {
    display: inline-flex;
    justify-content: center;
    font-size: 3em;
}

/**
 * Et là opère la magie du ':hover' !
 */

/* A l'état :hover sur le parent '.rating',
     on force TOUTES les étoiles à passer en jaune. */
.stars:hover .fa-star {
    color: #ffdc0f;
}
/* Et si la souris survole une étoile en particulier,
     on sélectionne toutes les étoiles qui sont APRÈS celle-ci
     grâce à l'opérateur '~' et on les force en GRIS */
.stars .fa-star:hover ~ .fa-star {
    color: gray;
}