/* Tooltip container */

.toolt {
    position: relative;
    /*display: inline-block;*/
    /*border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

div.table-responsive {
    overflow: visible;
}


/* Tooltip text */

.toolt .tooltiptext {
    visibility: hidden;
    width: 100%;
    background-color: rgb(2 130 194 / 0.90);
    color: #fff;
    text-align: center;
    padding: 14px;
    border-radius: 6px;
    /* Position the toolt text */
    position: absolute;
    z-index: 1;
    bottom: 125%;
    margin-right: auto;
    margin-left: auto;
    /* Fade in toolt */
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 13px;
    left: 0;
}


/* Tooltip arrow */

.toolt .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    opacity: 0.9;
    border-color: rgb(2 130 194 / 0.90) transparent transparent transparent;
}


/* Show the toolt text when you mouse over the toolt container */

.toolt:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

@media screen and (max-width: 767px) {
    .toolt .tooltiptext {
        visibility: hidden;
        width: 150px;
        background-color: rgb(2 130 194 / 0.90);
        color: #fff;
        text-align: center;
        padding: 14px;
        border-radius: 6px;
        position: absolute;
        z-index: 1;
        bottom: 125%;
        left: 0%;
        margin-left: -70px;
        opacity: 0;
        transition: opacity 0.3s;
        font-size: 13px;
    }
}