.wm-container {
    position: relative;
    overflow: visible;
    /* allow tooltip to extend outside */
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1000 / 648;
    height: auto;
}

.wm-container .wm-map svg {
    width: 100%;
    height: 100%;
    display: block;
    background: hsla(210, 85%, 95%, 0.4);
}

.wm-container.is-loading .wm-map {
    opacity: 0;
}

.wm-container.is-ready .wm-map {
    opacity: 1;
    transition: opacity .15s ease;
}

.wm-country {
    fill: hsl(0, 0%, 90%);
    stroke: #ffffff;
    stroke-width: .5;
}

.wm-country:hover {
    fill: hsl(0, 0%, 85%);
}

.wm-tooltip {
    position: absolute;
    box-sizing: border-box;
    padding: .5rem;
    border-radius: .25rem;
    font: 0.8rem system-ui, sans-serif;
    z-index: 3;
    white-space: normal;
    max-width: 120px;
    word-break: break-word;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.wm-tooltip.poi {
    background: #404040d0;
    color: #fff;
}

.wm-tooltip.country {
    background: none;
    color: #3f3a3ad0;
}

.wm-credit {
    fill: #b5b3c7;
    font-size: 0.4rem;
    font-style: italic;
    font-family: sans-serif;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.wm-poi {
    cursor: pointer;
}

.wm-poi:focus {
    outline: none;
}

.wm-poi.is-selected path {
    fill: darkblue;
}

.wm-info {
    font-size: 0.8rem;
}