/* Tooltip container */
.tooltip2 {
    position: relative;
}
/* Tooltip text */
.tooltip2 .tooltiptext {
    visibility:  hidden;
    width: 160px;
    background-color: black;
    color: #999999;
    text-align: center;
    padding: 5px 1px;
    border-radius: 6px;
    position: absolute;
    font-size: 1.2rem;
    z-index: 1;
    left: 50%;
    margin-left: -80px;
    bottom: 80%;
}

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

table.plans .tooltip2 .tooltiptext {
    font-size: 1.7rem;
    font-weight: bold;
}

.tooltip2 .tooltiptext::after {
  content: " ";
  position: absolute;
  top: 100%; /* At the bottom of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}
