.tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #373e48;
    border: 2px solid #80808026;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 5px;
    font-size: medium;

  /* Position the tooltip */
   position: absolute;
    z-index: 1;
}

.tooltiptextRight {
    visibility: hidden;
    width: 120px;
    background-color: #373e48;
    border: 2px solid #80808026;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 5px;
    font-size: medium;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  Right: 7%;
}


.fa-info-circle:hover .tooltiptext {
    visibility: visible;
  }

  .fa-info-circle:hover .tooltiptextRight {
    visibility: visible;
  }
