.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dashed #000000;
  cursor: pointer;
}

.tooltip:hover {
	color: #AB2026;
}

.tooltip .tooltiptext {
  width: 220px;
  background-color: #AB2026;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 999;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  line-height: 150%;
  visibility: hidden;
}

.tooltip .tooltiptext[data-position="top"]::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #AB2026 transparent transparent transparent;
}

.tooltip .tooltiptext[data-position="bottom"]::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #AB2026 transparent;
}