
/* Tooltip container */
.tooltip2 {
  position: relative;
  display: inline-block;
  
}

/* Tooltip text */
.tooltip2 .tooltiptext {
  visibility: hidden;
  font-family:verdana;
  background-color: #73AD21;
  color: #FFFFFF;
  border: 1px solid grey;
  padding: 10px;
  font-size: 12px;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%; 
  width:300px;
  text-align:justify;
  opacity: 0;
  transition: opacity 2s;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip2:hover .tooltiptext {
  visibility: visible;
	opacity: 1;
}
