@charset "utf-8";
/* CSS Document */

.tooltip {
	position: relative;
	display: inline-block;
	/*border-bottom: 1px dotted black;*/
}

.tooltip .tooltiptext {
	font-family: 'Montserrat', sans-serif; font-weight: 500;
	visibility: hidden;
	width: auto;
	background-color: #000;
	color: #fff;
	text-align: center;
	border-radius: 20px;
	padding: 5px 15px;

	/* Position the tooltip */
	position: absolute;
	z-index: 1;
}

.tooltip:hover .tooltiptext {
	visibility: visible;
}