/* Workflow stylesheet
 */

.WorkflowIconContainer {
    position: relative;
    padding-right: 20px;
}

.WorkflowIcon {
    position: relative;
    z-index: 1;
    padding-right: 20px;
    margin: 4px;
}

.WorkflowCount {
    position: absolute;
    display: inline-block;
    z-index: 1;
    background: white;
    border-radius: 4px;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 0.75em;
    color: black;
    left: 16px;
    top: 8px;
    padding-left: 2px;
    padding-right: 2px;
}

.WorkflowCount .WorkflowTooltip {
    visibility: hidden;
    width: 200px;            /* Select a value long enough to hold the tool tip message on one line */
    background-color: linen;
    color: black;
    text-align: center;
    padding: 5px 0;
    border: 1px solid black;
    /* border-radius: 6px; */

    position: absolute;
    z-index: 3;
}

.WorkflowCount:hover .WorkflowTooltip {
    visibility: visible;
}
