#myBtn {
    display: none;
    position: fixed;
    height: 100px;
    bottom: -30px;
    right: 30px;
    z-index: 99;
  }
  
  #myBtn img {
    width: 50px; /* Ajustez la taille de l'image selon vos besoins */
    height: 50px; /* Ajustez la taille de l'image selon vos besoins */
    border-radius: 50%; /* Assurez-vous que l'image est de forme ronde */
    border: none;
    transition: all 0.3s;
  }
  
  #myBtn:hover img {
    opacity: 0.8; /* Opacité réduite au survol */
    transform: scale(.95);
    
  }

  #myBtn.show {
    display: inline-block;
}
  

/* Class Ajoutee par le JS */
.reveal{
    opacity: 0;
    transform: translateY(30px);
}

.reveal-visible{
    opacity: 1;
    transform: translateY(0);
    transition: 1s cubic-bezier(.5, 0, 0, 1);
}




.avis{
  width: 30%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  border-radius: 5px;
}

.avis img{
  height: 50px;
  cursor: pointer;
}
.avis img:hover{
    transform: scale(.95);
}


.avis span {
  color: white;
  font-weight: bold;
}






@media(max-width: 800px){
    #myBtn img {
        width: 35px; /* Ajustez la taille de l'image selon vos besoins */
        height: 35px; /* Ajustez la taille de l'image selon vos besoins */
        right: 10px;
      }

      .avis img{
        height: 40px;
      }
}


@media(max-width: 500px){
    .avis img{
      height: 35px;
    }

    .avis{
      width: 40%;
      height: 50px;
    }
}