/* Initially hide the tooltip and add a smooth fade transition */
.ToolTip {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease;
}

.ToolTip.vp-tooltip-visible {
	opacity: 1;
	visibility: visible;
}
