.tooltip {
    position: absolute;
    width:140px;
    height: 40px;
    color: var(--white);
    background: var(--blue);
    line-height: 40px;
    text-align: center;
    font-size: 20px;
    font-weight: 300;
    border-radius: 6px;
    visibility: visible;
    opacity: 1;
    margin-top: -15px;
    margin-right: 15px;
    z-index: 999;
    -webkit-animation: fadein .2s ease-in-out;
    -moz-animation: fadein .2s ease-in-out;
    -o-animation: fadein .2s ease-in-out;
    animation: fadein .2s ease-in-out;
} 