.tooltip {
	display: inline-flex;
	align-items: center;
  position: fixed;
  z-index: 99999;
  pointer-events: none;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(0,0,0,0.85);
  color: #fff;
  font-size: 12px;
  font-weight: normal;
  line-height: 1;
  white-space: nowrap;
  transform: translate(12px, 12px);
  opacity: 0;
  transition: opacity 0.12s ease;
  justify-content: center;
  gap: 4px; 
}

.tooltip.is-on {
  opacity: 1;
}

.tooltip img {
	width:15px;
	height:15px;
	align-items:center;
	justify-content: center;
}