.cus-tooltip .tooltip-text {
  visibility: hidden;
  min-width: 120px;
  top: 40px;
  font-size: 14px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 5px 0;
  position: absolute;
  z-index: 10;
}


.medium.tooltip-text { 
  width: 150px;
}

.long.tooltip-text {
  width: 200px;
}

.longest.tooltip-text {
  width: 250px;
}

.long-300.tooltip-text {
  width: 300px;
}

.cus-tooltip .tooltip-text.right {
  top: 30px;
  right: 5px;
  font-size: 10px;
  min-width: 80px;
}

.cus-tooltip .tooltip-text.up {
  top: -30px;
  right: 5px;
  min-width: 110px;
}

.cus-tooltip:hover .tooltip-text {
  visibility: visible;
  transition-delay:1s;
}
