.tooltip-v2 {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.tooltip-v2 .tooltip-v2-text {
  font-size: 12px;
  line-height: 1.17;
}
.tooltip-v2 .tooltip-v2-text:first-of-type {
  cursor: pointer;
}
.tooltip-v2 .tooltip-v2-text:last-of-type {
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  color: #000;
  padding: 6px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
}
.tooltip-v2 .tooltip-v2-text:last-of-type:not(:empty) {
  width: 205px;
  white-space: normal;
  text-align: center;
}
.tooltip-v2 .tooltip-v2-text:last-of-type::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}
.tooltip-v2:hover .tooltip-v2-text:last-of-type {
  opacity: 1;
  pointer-events: auto;
}