.svg-container {
    display: inline-block;
    position: relative;
    width: 100%;/* aspect ratio */
    text-align: center;
    max-width: 556px;
}
.svg-content-responsive {
    display: inline-block;
    position: inherit;//absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.county {
    fill: #fff;
}
.subunit-boundary {
    fill: none;
    stroke-width: 1px;
    stroke: #777;
    stroke-dasharray: 2, 2;
    stroke-linejoin: round;
}
.place, .place-label {
    fill: #444;
    font-size: 12px;
}
.county {
    -webkit-transition: all 150ms ease-in-out;
            transition: all 150ms ease-in-out;
    fill: #fff;
}
.county:hover {
    fill-opacity: 0.8;
}
.selectedCounty {
    background: rgba(255, 255, 255, 1);
    border: 0 solid;
    display: block;
    font-weight: bold;
    padding: 10px 5px;
    -webkit-box-shadow: 0px 2px 0px 0px rgba(111, 111, 113, 0.75);
    -moz-box-shadow: 0px 2px 0px 0px rgba(111, 111, 113, 0.75);
    box-shadow: 0px 2px 0px 0px rgba(111, 111, 113, 0.75);
    width: 300px;
    color: #6F6F71;
    padding-left: 5px;
    background-size: 140px;
    background-position: left;
    background-repeat: no-repeat;
    display: flex;
    flex-wrap: wrap;
}
.selectedCounty img{
    width: 130px;
}
.selectedCounty h4{
    width: 140px;
    display: inline-block;
    margin-left: 10px;
}
