/* 
    Created on : 25 feb. 2026, 11:16:43
    Author     : mario_moreno
*/

.tool-tip {
    position: relative  !important;
    display: inline-block;
    border-bottom: 1px dotted black;
    cursor: pointer;
}

.tool-tip-text {
    visibility: hidden !important;
    width: 15.900rem;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    top: -3.1rem;
    
}

.tool-tip:hover .tool-tip-text {
    visibility: visible  !important;
}