:root {
    --darkBlue: #002D72;
    --midDarkBlue: #33568c;
    --midBlue: #68ACE5;
    --lightBlue: #A8D0F0;
    --lightTeal: #CCECC6;
    --teal: #009B77;
    --darkTeal: #007C5F;
    --lightGreen: #86a86c;
    --green: #719949;
    --darkGreen: #5a7a3a;
    --lightestGrey: #FAFAFA;
    --lightGrey: #D9D9D9;
    --darkGrey: #888888;
}
body {
    margin: 0;
    font-family: "Work Sans", sans-serif;
}
#viz {
    width: 100%;
    height: 100vh;
    position: relative;
}
.info {
    padding: 6px 8px;
    font: 14px/16px "Work Sans", sans-serif;
    background: var(--lightestGrey);
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    border-radius: 5px;
    margin-bottom: 20px !important;
}
.info h3 {
    margin: 0 0 5px;
    color: #000;
    width: 55px;
    position: absolute;
}
.legend {
    color: var(--darkGrey);
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px;
}
div#radiusLegend, div#colorLegend {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: nowrap;
}
.legend #radiusLegend .legend-entry {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
}
.legend #colorLegend .legend-entry {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.legend #radiusLegend .legend-entry .legend-circle {
    border: 2px solid #000;
    border-radius: 50%;
}
.legend #colorLegend .legend-entry .legend-color {
    border-radius: 50%;
    width: 12px;
    height: 12px;
    margin-right: 4px;
}
.legend .legend-entry p {
    margin: 0;
}
.leaflet-control.resetzoom {
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background-color: #fff;
    text-align: center;
    text-decoration: none;
    display: block;
    background-image: url("reset.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 70%;
}
div#viz .leaflet-popup-content p {
    margin: 0;
}