.tooltip {
    position: relative;
   
    display: inline-block;
    border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}
.tooltip .label
{
    color:white;
    font-weight:900;
}
/* Tooltip text */
.tooltip .tooltiptext {
    display:none;
    /*width: 30%;
    */
    left:-50%;
    color: #fff;
    text-align: left;
    padding: 5px;
    border-radius: 6px;
    border: 2px solid #333333;
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
}

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

.tooltiptext
{
    width:200px;
}