@charset "utf-8";
/* CSS Document */

.tooltip {
    position: fixed;
    max-width: 118px;
    max-height: 35px;
    float: left;
    z-index: 3;
    padding-right: 4px;
}

.tooltip .tooltiptext {
min-width: 350px;
    max-width: 500px;
    visibility: hidden;
    color: #001c36;
    text-align: center;
    padding: 5px;
    position: fixed;
    z-index: 0;
    top: 100px;
    right: 100px !important;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

.tooltip:hover .tooltiptextleft {
    visibility: visible;
}

.tooltip .tooltiptextleft {
min-width: 350px;
    max-width: 500px;
    visibility: hidden;
    color: #001c36;
    text-align: center;
    padding: 5px;
    position: fixed;
    z-index: 0;
    top: 150px;
    left: 250px !important;
}


