#note {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

#note label {
    cursor: pointer;
    font-size: 24px; /* Ajustez la taille des étoiles selon vos besoins */
    position: relative;
}

#note input[type="radio"] {
    display: none;
}

#note input[type="radio"]:checked + label i,
#note input[type="radio"]:checked ~ input[type="radio"] + label i {
    color: gold; /* Change la couleur des étoiles sélectionnées */
}
.avis-contenaire{
    width:100%;
    position: relative;
    border:1px solid #666;
    border-radius: 20px;
    overflow: hidden;
    margin-top:20px
}
.avis-title{
    display: block;
    background-color:#0F2B38;
    color:#fff;
    font-size:24px;
    padding:20px;
    font-weight: bold;
}
.les-avis {
    position: relative;
    width: calc(100% - 80px);
    height:200px;
    overflow: hidden;
    font-size: 16px;
    margin: auto;
    text-align: center;
}
.les-avis .single-avis{
    position:absolute;
    top:0;
    left:100%;
    width:100%;
    height:100%;
    transition: left 0.5s ease-in-out;
    padding:20px 0 ;
}
.les-avis .single-avis.active{
    left: 0px;
}
.single-avis i{
    height: 150px;
    overflow-y:scroll;
    height:calc(100% - 30px);
}
.avis-contenaire button{
    position: absolute;
    top:calc(50% - 20px);
    width:30px;
    height:40px;
    font-size: 40px;
    padding: 0;
    line-height: 40px;
}
.avis-contenaire #prev{
    left:0px;
}
.avis-contenaire #next{
    right:0px;
}
@media only screen and (max-width: 960px) {
	.les-avis{
		height:300px
	}
}