/* custom css file */
/* Tooltip text */
.aislenumtextbox .stacktooltiptext, .callnumber .calltooltiptext {
    visibility: hidden;
    background-color: #F0E68C;
    color: #000;
    text-align: center;
    padding: 10px 0;
    font-size: x-small;
    border-style: solid;
    border-color: black;
    border-radius: 6px;
 
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.aislenumtextbox:hover .stacktooltiptext, .callnumber:hover .calltooltiptext {
    visibility: visible;
}

