/* TOOLTIP */
.tooltip {
	position: relative;
	display: inline-block;
	cursor: default;
}

.infoTooltip {
	border-bottom: none;
	color: #ad0470;
	font-size: 1.4em;
	cursor: help;
}

.tooltip .tooltiptext {
	visibility: hidden;
	width: 120px;
	background-color: #000000cc;
	color: #ffffff;
	text-align: center;
	padding: 6px 8px;
	border-radius: 6px;

	position: absolute;
	z-index: 1;
	top: -5px;
	right: 110%;
}

.tooltip:hover .tooltiptext {
	visibility: visible;
}

.tooltiptext {
	font-size: 12px;
}

.tooltiptext > ul {
	text-align: left;
	margin: 0px;
	padding: 0;
	margin-left: 16px;
}
