/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.cs-map-county-path {
    cursor: pointer;
}
.cs-map-county-path:hover {
    fill: #1f41bf;
}
.cs-map-county-tooltip {
    pointer-events: none;
    position: absolute;
    font-size: 18px;
    text-align: center;
    background: white;
    padding: 10px 15px;
    z-index: 5;
    /* height: 30px; */
    line-height: 30px;
    margin: 0 auto;
    color: #1f41bf;
    border-radius: 5px;
    box-shadow: 0 0 0 1px #eee;
    display: none;
    transform: translateX(-50%);
}
.cs-map-county-tooltip.active {
    display: block
}
.cs-map-county-tooltip:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 100%;
    width: 0;
    height: 0;
    margin-left: -10px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid white;
}

@media (min-width: 1000px) {
    .cs-chart-container {
        display: flex;
    }

    .cs-chart-pie {
        max-width: 70%;
        height: auto;
    }
}

.cs-chart-legend ul {
    list-style: none;
}
.cs-chart-legend li {
    font-size: 0.9em;
    margin-bottom: 0.5em;
}
.cs-chart-legend li span {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 5px;
}
.cs-title-small {
    margin-left: 5px;
    font-size: 75%;
    color: #000;
}
div + div.cs-field-source {
    margin-top: -20px;
}