/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-radius: 3px;
  background-color: #2222ff;
  color: #ffffff;
  text-align: center;
  padding-top: 1px;
  width: 14px;
  height: 13px;
  font-family: Times New Roman;
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 150px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: -23px;
  right: 150%;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  font-family: Verdana, Arial, Sans-serif;
}

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