

/* see https://www.w3schools.com/css/css_tooltip.asp */

/* Tooltip container */
.tooltip {
  position: relative;
/*   display: inline-block; */
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: visible;
  display: none;
  width: 30em;
  background-color: #4bb;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* hide it by default */
.disabled .tooltip .tooltiptext {
	visibility: visible;
	display: inline;
}

/* Show the tooltip text when you mouse over the tooltip'ped element*/
/* flickers?? In theory this should work I think */
.medication:hover .tooltip .tooltiptext {
  visibility: hidden;
}

.tooltip .tooltiptext {
  top: 0.2em;
  left: 10em;
}
