@charset "windows-1252";

#footer{
margin-top:130px;
bottom: 0;
height: 64px;
width: 100%;
            
}

#tooltip {
    position: relative;
    color: blue;
}

#tooltip #tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: #000;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    border-color:Black ;
    padding: 5px 2px;
    position: absolute;
    z-index: 1;
    margin-left: 20px;
}

#tooltip #tooltiptext::after {
    content: " ";
    position: absolute;
    top: 50%;
    right: 100%; /* To the left of the tooltip */
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent black transparent transparent;
}

#tooltip:hover #tooltiptext {
    visibility: visible;
}



