.liste-avis{
    display: flex;
    flex-direction: column;
    gap:48px;
}

.liste-avis .avis{
    background: #F2F7F7;
    border-radius: 35px;
    padding:28px 25px;
    position: relative;
}

.liste-avis .avis:not(.moyenne) > .wrapper{
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.liste-avis .avis:not(.moyenne) > .wrapper.photo > div{
    width: calc(100% - 102px);
}

.liste-avis .avis .quote{
    position: absolute;
    right: 30px;
    bottom: 0;
    transform: translateY(65%);
}

.liste-avis .avis .quote-right{
    right: auto;
    left:40px;
}

.liste-avis .avis:nth-child(even) .quote-left{
    display: none;
}

.liste-avis .avis:nth-child(odd) .quote-right{
    display: none;
}

.liste-avis .avis:not(.moyenne):has(.wrapper img){
    padding-top: 15px;
}

.liste-avis .avis img{
    width: 86px;
    height: 86px;
    border-radius: 100%;
    object-fit: cover;
}

.liste-avis .avis.moyenne{
    padding:20px 25px;
    width: fit-content;
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap:20px;
}

.liste-avis .avis h3{
    font-size:14px;
    font-weight: bold;
    color:#00312D;
    margin:0;
}

.liste-avis .avis.moyenne h3{
    font-size:16px;
    color:#005045;
    max-width: 200px;
}

.liste-avis .avis h3 span{
    font-weight: 300;
}

.liste-avis .avis .date{
    color:#3F8882;
    font-size: 12px;
}

.liste-avis .avis .note{
    margin-top: 5px;
    display: flex;
    gap:7px;
}

.liste-avis .avis.moyenne .note{
    margin-top: 15px;
}

.liste-avis .avis .note div{
    width: 25px;
    height: 25px;
    background: #A0C1C0;
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.liste-avis .avis.moyenne .note div{
    background: rgba(255, 219, 10, 0.46);
}

.liste-avis .avis.moyenne .note div.active{
    background: #FFDB0A;
}

.liste-avis .avis .note div.active{
    background: #00AC45;
}

.liste-avis .avis .note div svg{
    width: 10px;
}

.liste-avis .avis .note div svg path{
    fill: #fff;
}

.liste-avis .avis.moyenne .note-valeur span:first-child{
    font-size: 50px;
    color:#FFDB0A;
    font-weight: bold;
}

.liste-avis .avis.moyenne .note-valeur span:last-child{
    color:#00312D;
    font-size: 16px;
}

.liste-avis .avis .commentaire{
    margin-top: 16px;
}

.liste-avis .avis .commentaire,
.liste-avis .avis .commentaire p{
    font-size: 14px;
    color:#00312D;
    font-style: italic;
    font-weight: 500;
}

@media screen and (min-width: 992px){

    .liste-avis .avis:nth-child(even):not(:last-child){
        margin-left: 40px;
    }

    .liste-avis .avis.moyenne{
        align-items: center;
    }
}