@CHARSET "UTF-8";

.tooltip {
	position: relative;
	background: rgba(0, 0, 0, 1);
	border-radius: 4px;
	color: white;
	font-size: 9pt;
	font-family: auto;
	font-weight: bold;
	text-align: left;
	padding: 4px 8px;
	opacity: 0.6;
	white-space: nowrap;
}
.tooltip-measure {
	/*   opacity: 1; */
	background-color: #ff0101; /* #ffcc33 */
	/*   color: black; */
	color: white;
	font-size: 9pt;
	font-family: auto;
	font-weight: bold;
	border: 1px solid white;
	opacity: 0.7;
}
.tooltip-static {
	background-color: #ff0101; /* #ffcc33 */
	/*   color: black; */
	color: white;
	font-size: 9pt;
	font-family: auto;
	border: 1px solid white;
	opacity: 0.7;
}
.tooltip-measure:before,
.tooltip-static:before {
	border-top: 6px solid rgba(0, 0, 0, 1);
	border-right: 6px solid transparent;
	border-left: 6px solid transparent;
	content: "";
	position: absolute;
	bottom: -6px;
	margin-left: -7px;
	left: 50%;
}
.tooltip-static:before {
	border-top-color: #ff0101; /* #ffcc33 */
}
