.tooltip {
    max-width: 200px;
    margin-left: 30px;
    padding: 10px;
    position: fixed;
    z-index: 4;
    color:  #ffffff;
    font-size: 16px;
    background-color: #004994;
    display: none;
}
.tooltip::after{
    margin-top: -15px;
    position: absolute;
    top: 50%;
    right: 100%; /* To the left of the tooltip */
    content: " ";
    border-width: 15px;
    border-style: solid;
    border-color: transparent #004994 transparent transparent;
}