.info_icon {
  color: blue;
}

.icon:focus {
  outline: none;
}

.icon .tooltiptext {
  visibility: hidden;
  width: 80px;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  pointer-events: none;

  /* Position the tooltip */
  position: absolute;
  z-index: 100;
  right: 50%;
  top: 10%;
}

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