

.container-rating{
    line-height: 22px;
    display: flex;
    padding-top: 20px;
}

.rating{
    margin-right: 5px;
    display: flex;
}
.rating span{
    font-weight: bold;
    line-height: 18px;
}

.star-rating {
    font-size: 0; /* Supprimer l'espacement entre les inline-blocks */
    direction: ltr; /* Assurer l'alignement gauche à droite */
    margin: 0 auto;
}

.star {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-color: transparent;
    background-image: url('/images/star.svg');
    background-size: cover;
    position: relative;
    box-shadow: none;
}

.container-rating.right{
    padding-top:20px;
    display: block;
}
.container-rating.small{
    padding-top:0;
    display: block;
}
.small .star{

    width: 24px;
    height: 24px;
}

.star:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/star-filled.svg');
    background-size: cover;
    clip-path: polygon(0 0, var(--fill) 0%, var(--fill) 100%, 0% 100%);
}
.testi p {
    font-size: 1.2em;
}