.tooltip {
  position: relative;
  display: inline-block;
  color: #fff;
  background-color: #00b3a7;
  border-radius: 50%;
  width: 1.1rem;
  height: 1.1rem;
  font-size: 0.8rem;
  text-align: center;
}

.tooltip .tooltiptext {
  visibility: hidden;
  font-size: 1rem;
  width: 200px;
  background-color: #343a40;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  top: -5px;
  right: 105%;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}
