.map-tooltip {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 8px;
    position: fixed;
    background: rgba(230, 231, 232, 0.9);
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.25);
    max-width: 40vw;
    pointer-events: none;
    z-index: 1000;
}
.map-tooltip__title {
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 13px;
    leading-trim: NONE;
    line-height: 18px;
    letter-spacing: 0px;
    max-width: 200px;
    color: rgba(0, 21, 56, 1);
}
.map-tooltip__body {
    font-family: Inter;
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 20px;
    letter-spacing: 0px;
    max-width: 200px;
    color: rgba(0, 71, 152, 1);
}
.map-wrapper {
    /*background: silver;*/
}
.map-wrapper svg {
    width: 100%;
}
.map-wrapper .svg-polygon {
    fill: transparent;
}
.map-wrapper .svg-polygon__overlay {
    fill: white;
    transition: fill 0.15s ease;
}
.map-wrapper .svg-polygon__overlay--hover {
    fill: #004798;
}
.map-wrapper .svg-icon-group path {
    fill: #004798;
    transition: fill 0.15s ease;
}
.map-wrapper .svg-icon-group--hover path {
    fill: white;
}
