/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  background-color: #2ea3f2;
  color: #fff;
  text-align: center;
  padding: 5px 10px 12px 10px;
  border-radius: 6px;
  font-size: 18px;
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
  line-height: 1.1;
  min-width: 500px;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}