/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
    margin-bottom:20px;
    font-size:20px;
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    margin: 5px;
    padding: 5px 20px 5px 20px;
    width: 120px;
    background-color: #005580;
    font-family: 'Open Sans';
    font-size: 13px;
    color: #fff;
    text-align: center;
    border-radius: 3px;
 
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 50%;
    margin-left: -60px;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
}

label {
    font-family:'Open Sans';
}
th{
    font-family: 'Open Sans';
}

/*
[data-tooltip]:before {
    position: absolute;
    bottom:100%;
    padding: 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background-color: #005580;
    color: #fff;
    content: "asdf";
    text-align: center;
    font-size: 14px;
    line-height: 1.2;
}

[data-tooltip]:before, [data-tooltip]:after {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

[data-tooltip]:after {
    position: absolute;
    bottom: 150%;
    left: 50%;
    margin-left: -5px;
    width: 0;
    border-top: 5px solid #000;
    border-top: 5px solid hsla(0, 0%, 20%, 0.9);
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    font-size: 0;
    line-height: 0;
}
[data-tooltip]:before, [data-tooltip]:after {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}
*/