.fields {
    float:right;
    width:76%;
}

.divRow {
    margin-left:10px;
    margin-right:10px;
}

/*TOOLTIP*/
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width:250px;
    background-color: #0054a4;
    color: #fff;
    text-align: center;
    border-radius: 3px;
    padding: 5px;
    opacity:0.85;
    margin-left:5px;
    font-size:12px;
    line-height:20px;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}