:root {
    --ef-free: #44a13f;
    --ef-mostly-free: #A6ce39;
    --ef-moderately-free: #ffd408;
    --ef-mostly-unfree: #f58229;
    --ef-repressed: #ce231e;
    --ef-na: #58595b;

    --ef-white: #fff;
    --ef-black: #111d22;

    --ef-background-gray-vlight: #fcfcfc;
    --ef-background-gray-light: #f3f3f3;
    --ef-background-gray-medium-light: #e2e2e2;
    --ef-background-gray-medium: #c8c8c8;
    --ef-background-gray-dark: #9a9a9a;

    --ef-dv-higher: #0093d0;
    --ef-dv-lower: #ed1651;
}

/* Pointer lines */
.ef-dv-pointer-lines {
    stroke-width: 1px;
    stroke: var(--ef-background-gray-dark);
    fill: none;
}

/* Pointer box frames */
.ef-dv-pointer-box-frames {
    stroke: var(--ef-background-gray-dark);
    stroke-width: 1;
    fill: var(--ef-white);
}

/* Tooltip */
#tooltip {
    position: absolute;
    text-align: center;
    pointer-events: none;
    color: var(--ef-black);
    background: var(--ef-white);
    border: .03125rem solid rgba(0, 0, 0, .25);
    border-radius: .1875rem;
    width: 120px;
    height: auto;
    padding: .5em;
    opacity: 0;
    z-index: 999;
    -webkit-box-shadow: 0 10px 6px -6px rgba(0, 0, 0, .25);
    -moz-box-shadow: 0 10px 6px -6px rgba(0, 0, 0, .25);
    box-shadow: 0 10px 6px -6px rgba(0, 0, 0, .25);
}

#tooltip p {
    font-size: .875rem;
    margin: 0;
}

.tooltipBold {
    font-weight: 700;
}