/*Estilização do btn de feedback para coleta de dados do usuário*/
div.feedback button {
    position: fixed !important;
    bottom: 20px !important;
    right: 40px !important;
    margin: 0px !important;
  
}

.btn-feedback{
 display: flex;
 gap: 10px; 
 justify-content: center; 
 margin-top: 10px;
}

@media only screen and (max-width: 600px) {
   .btn-feedback {
       display: flex;
       flex-direction: column;
       justify-content: center;
    }

    .btn-feedback button {
       display: flex;
       flex-direction: column;
       align-items: center;
       text-align: center;
  
    }

    .btn-feedback button i{
       margin: 10px;
  
    }

}


