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

/* Tooltip text */
.tooltip .tooltiptext {
  display: none;
  border: 1px solid green;
  background-color: blue;
  overflow: visible;
  max-width: 200px;
  height: auto;
  word-wrap: break-word;

  position: absolute;
  top: 200px;
  /* display: none;
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  overflow: visible;
  */

  /* Position the tooltip text - see examples below! */
  z-index: 0;

  /* position: absolute;

  z
  z-index: 1;
  top: -50px;
  left: 5px; */
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  display:block;
  visibility: visible;
  color: red;
  z-index:20;
}
