/* Tooltip container */
.tooltip2 {
    position: relative;
    display: inline-block;
    border-bottommm: 1px dotted black; /* If you want dots under the hoverable text */
	width: 100%;
}

/* Tooltip text */
.tooltip2 .tooltiptext {
    visibility: hidden;
    width: 100%;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
	
	top: 100%;
    left:0;
    margin-leftttt: -60px; /* Use half of the width (120/2 = 60), to center the tooltip */
 
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
}

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

