/* Div contenitore */
.suggerimento {
  position: relative;
  display: inline-block;
  border-bottom: 0px; /* If you want dots under the hoverable text */
    cursor: pointer;
    text-align: center;
}

/* Suggerimento Testo */
.suggerimento .suggerimentoTesto {
  visibility: hidden;
  width: 300px;
  background-color: #ffffff;
  color: #212529;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  border: 2px solid rgba(217, 40, 40, 0.70);
 
  /* Positione del Testo */
  position: absolute;
  z-index: 1;
    
  /* Positione Div contenitore */
   top: -5px;
  right: 105%;
}


.suggerimento:hover .suggerimentoTesto {
  visibility: visible;
}

/*
.suggerimento .suggerimentoTesto::after {
  content: " ";
  position: absolute;
  top: 100%; 
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #5cc3ee transparent transparent transparent;
}

*/




