/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  background: var(--black-color);
  border-radius: 20px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  font-size: 12px;
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 220px;
  background-color: var(--black-color);
  color: #fff;
  padding: 5px;
  border-radius: 13px;
  font-size: 10px;
  line-height: 12px;
  text-align: left;
  white-space: pre-line;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
  top: -5px;
  left: 115%;
}

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