﻿.tooltipx-wrapper {
    position: relative;
    display: inline-block;
    cursor: help;
}

.spanx {
    transition-delay: 1s;
    visibility: hidden;
    position: absolute;
    width: 120px;
    bottom: 150%;
    left: 50%;
    margin-left: -60px;
    background-color: antiquewhite;
    border: 2px solid darkslategray;
    color: black;
    font-family : TitilliumWeb;
    font-size: 10pt;
    font-weight: normal;
    font-style: normal;
    text-align: left;
    padding: 10px;
    border-radius: 5px;
    z-index: 1;
    box-shadow: 6px 6px 20px rgba(0,0,0,0.8);
}

    

.tooltipx-wrapper:hover span {
    visibility: visible;
}
