﻿/* Tooltip container */
.tooltipak {
    position: absolute;
    display: inline-block;
    /*width: 130px;*/
    /* border-bottom: 1px dotted black; */
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 5px 10px;
    font-size: 13px;
    border-radius: 5px;
}

    /* Tooltip text */
    .tooltipak .tooltiptextak {
        display: none;
        width: fit-content;
        background-color: black;
        color: #fff;
        text-align: center;
        padding: 5px 0;
        border-radius: 6px;
        /* Position the tooltip text - see examples below! */
        position: absolute;
        left: 110%;
        top: 0;
        z-index: 1;
        text-align: left;
        font-size: 13px;
        padding: 10px;
        line-height: 20px;
        height: fit-content;
    }

    /* Show the tooltip text when you mouse over the tooltip container */
    .tooltipak:hover .tooltiptextak {
        display: block;
    }
