
/* Tooltip container */
.mytooltip {
	cursor: pointer;
	position: relative;
	display: inline-block;
	border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
	margin-left: 5px;
}

/* Tooltip text */
.mytooltip .mytooltiptext {
	visibility: hidden;
	min-width: 30em;
	background-color: black;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 10px;

	/* Position the tooltip */
	position: absolute;
	z-index: 50 !important;
	bottom: 100%;
	left: 50%;
	margin-left: -5em;
}

/* Show the mytooltip text when you mouse over the mytooltip container */
.mytooltip.mytooltip-show .mytooltiptext {
	visibility: visible;
}


/* Tooltip container */
.myoverlay {
	cursor: pointer;
	position: relative;
	display: inline-block;
	border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
	margin-left: 5px;
}

/* Tooltip text */
.myoverlay .myoverlaytext {
	-webkit-transition-delay: 500ms;
	transition-delay: 500ms;
	visibility: hidden;
	/* width: 30em; */
	background-color: white;
	text-align: center;
	border-radius: 6px;
	border-style: solid;
	border-color: #900102;
	padding: 15px;

	/* Position the tooltip */
	position: absolute;
	z-index: 1;
	bottom: 100%;
	left: 50%;
	margin-left: -60%;
}

/* .myoverlay .myoverlaytext { */
/* 	top: 50%; */
/* 	left: 100%; */
/* } */

/* Show the myoverlay text when you mouse over the myoverlay container */
.myoverlay:hover .myoverlaytext {
	visibility: visible;
}

.myoverlaytext.desc-tooltip {
	font-size: 12px;
	padding: 5px;
	border-width: 1px;
	border-color: black;
	background-color: #fcffcf;
	opacity: 0.9;
}
