.flex-container {
    display: flex;
    flex-direction: row;
}


.map-container {
    width: 100%;
    margin: auto;
    padding: 16px;
}


#tooltip {   
    position: absolute;           
    border: 1px;      
    border-radius: 2px;            
    margin: 5px;   
    background: lightsteelblue;   
    pointer-events: none;         
    text-align: center;
}


#tooltip h4 {
    margin: 5px;
    font: 14px sans-serif;
    font-weight: bold;
    color: white;
}


#tooltip {
    width: auto;
    padding:4px;
    border:1px solid grey;
    border-radius:5px;
    background:rgba(0,0,0,0.9);
    opacity:0;
    font-size:12px;
}


#tooltip table {
    table-layout: auto;
    margin: 5px;
    font: 12px sans-serif;    
    color: white;
}


@media only screen and (max-width: 700px) {
    .flex-container {
        flex-direction: column;
    }
}
