body{
    font-family: 'Cabin', sans-serif;
    font-size:12px;
}

.icon {
    font-family: FontAwesome;
    cursor: default;
}
#quackerHeader {
    width: 100%;
}
#uiPluginContainer {
    height: 100%;
    float: right;
}
.pluginButton {
    cursor: pointer !important;
    margin:2px;
}

.quackerHeading {
    font-size: 2.5em;
}

.quackerSubHeading {
    font-size: 1.5em;
    margin-left: 0.5em;
}
#quackerStatus {
    font-weight: bold;
    margin-left: 2em;
}
#passCount {
    padding: 2px;
    font-size: 1.5em;
    background-color: lightgreen;
}
#failCount {
    padding: 2px;
    font-size: 1.5em;
    background-color: red;
}

.tableHeader {
    font-color: darkgray;
}

.toggleable {
}
.toggledIn {
}
.toggledOut {
}
.hideableHidden {
    display: none !important;
}
.collapserState {
    cursor: pointer !important;
}
.fullWidth {
    max-width: 100% !important;
    width: 100% !important;
    display: block !important;
    margin: 0em !important;
}
.partialWidth {
    max-width: 45% !important;
    display: inline-block !important;
    margin: 0.3em !important;
}

/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    /*width: 120px;*/
    background-color: rgba(192,192,192,0.8);
    color: black;
    border: 1px solid darkgray;
    border-radius: 6px;
    text-align: center;
    padding: 2px;

    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
    width: 120px;
    /*
    top: 100%;
    left: 50%;
    margin-left: -60px;
    */
    top: -2px;
    right: 105%;
}
