.tooltip {
    border-bottom: 0.25rem;     //4px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    background-color: gray;
    color: #fff;
    text-align: center;
    padding: 0rem 0.625rem;               //1px 10px;
    border-radius: 0.375rem;              // 6px;
    left: 0rem;                           // 0px;
    top: 5.6rem;                          // 90px; 
    position: fixed; 
    font: 90% calibri, sans-serif;        // 40px calibri, sans-serif;
    width: 37rem;                         // 600px;
    z-index: 1;
    //transition: 3s;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:focus .tooltiptext {
    visibility: visible;
}

.tooltipimage {
}


/* Tooltip text */
.tooltipimage .tooltiptextimage {
    visibility: hidden;
    width: 18.75rem;                     // 300px;
    background-color: gray;
    color: #fff;
    text-align: center;
    padding: 0.3rem 0rem;                // 5px 0;
    border-radius: 0.375rem;             // 6px;

 
    /* Position the tooltip text */
    position: relative;
    z-index: 1;
    left: 0rem;                           // 0px;
    top: -3.125rem;                       // -50px;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltipimage:hover .tooltiptextimage {
    visibility: visible;
}
/* Show the tooltip text when you mouse over the tooltip container */
.tooltipimage:focus .tooltiptextimage {
    visibility: visible;
}

