 /* Tooltip container */
.td-tooltip {
    position: relative;
}

/* Tooltip text */
.td-tooltip .td-tooltiptext {
    visibility: hidden;
    width: auto;
	white-space: nowrap;
    background-color: rgba(0,0,0,0.8);
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;

    /* Position the tooltip text */
    position: absolute;
    z-index: 1;
    bottom: 5px;
    right: 65px;
	padding: 5px 10px;
    margin-left: -60px;

    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 1s;
}

/* Tooltip arrow */
.td-tooltip .td-tooltiptext::after {
    content: "";
    position: absolute;
    top: 35%;
    left: 100%;
    margin-left: 0;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(0,0,0,0.8);
}

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