.tooltip {
	white-space: nowrap;
  }
  
  /* Tooltip text */
  .tooltip .tooltiptext {
	background-color: rgba(0,0,0,0.6);
	color: #eee;
	text-align: center;
	padding: 5px 8px 6px;
	border-radius: 3px;   
	/* Position the tooltip text - see examples below! */
	position: absolute;
	font-size: 13px;
	z-index: 1;
  }
  
  .tooltip .tooltiptext::after {
	content: " ";
	position: absolute;
	top: 100%; /* At the bottom of the tooltip */
	right: calc( 50% - 6px );
	border-width: 6px;
	border-style: solid;
	border-color: rgba(0,0,0,0.6) transparent transparent transparent;
  }