.world-map-wrapper {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.world-map-wrapper svg {
    width: 100%;
    display: block;
}

.country-in-list {
    fill: #97AFF6;
    stroke: #fff;
    stroke-width: 2px;
    cursor: pointer;
    transition: fill .25s ease;
}

.country-in-list:hover {
    fill: #00269A;
}

.map-tooltip {
    position: absolute;
    min-width: 220px;
    background: white;
    border: 1px solid #00269A;
    border-radius: 16px;
    padding: 12px 16px;
    color: #00269A;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease;
    pointer-events: none;
    z-index: 100;
}

.map-tooltip.show {
    opacity: 1;
    visibility: visible;
}