: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;
}
.legend {
    line-height: 22px;
    color: var(--darkGrey);
}
.legend i {
    width: 18px;
    height: 18px;
    float: left;
    margin-right: 8px;
    margin-left: 8px;
    opacity: 1;
    border-radius: 9px;
}
.legend p#flag-legend::before {
    content: "";
    background-image: url("mapflag.png");
    background-repeat: no-repeat;
    background-position: center center;
    height: 24px;
    width: 24px;
    background-size: contain;
    display: inline-block;
    margin-top: 4px;
    margin-right: 5px;
    vertical-align: top;
}
.legend p#flag-legend {
    margin-left: 5px
}
.legend p#flag-legend span {
    display: inline-block;
    width: 100px;
    line-height: 1.2em;
}
.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;
}