
.map-feed-container {
    padding: 10px;
    font-size: 16px;
}

.map-canvas-container {
    width: 100%;
    padding-top: 65.96%;
    position: relative;
}

.map-canvas-container .map-canvas {
    width: 100%;
    position: absolute;    
    left: 0;
    top: 0;
}

.map-canvas-container .map-canvas svg {
    width: 100%!important;
    height: 100%!important;
}

.map-canvas-container .map-popup {
    position: absolute;
    left: -100000px;
    top: 0;
    width: 150px;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 1px 4px 8px rgba(0, 0, 0, 0.5);
    background-color: #fff;
}

.map-canvas-container .map-popup h5 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    color: #000;
    margin: 0;
}

.map-canvas-container .map-popup var {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    font-style: inherit;
    margin-right: 5px;
}

.map-canvas-container .map-canvas svg > path:not(#labels) {
    fill: var(--map--feed--color);
    stroke: var(--map--feed--border--color);
    cursor: pointer;
}

.map-canvas-container .map-canvas svg > path:not(#labels).highlight {
    fill: var(--map--feed--highlight--color);
}

.map-canvas-container .map-canvas svg > path:not(#labels):hover,
.map-canvas-container .map-canvas svg > path:not(#labels):active {
    fill: var(--map--feed--hover--color)!important;
}