#wmp-map-container{

    width:100%;
    height:700px;

    background:#f7f7f7;

    border-radius:12px;

    overflow:auto;

    border:1px solid #ddd;

}

#wmp-map-container svg{

    width:100%;
    height:auto;

}

.country{

    fill:#d9d9d9;

    stroke:#ffffff;

    stroke-width:.6;

    cursor:pointer;

    transition:.25s;

}

.country:hover{

    fill:#dbdbdb;

}

.wmp-pin{

    cursor:pointer;

    transition:all .25s ease;

    transform-origin:center;

}

.wmp-pin:hover{

    filter:drop-shadow(0 6px 10px rgba(0,0,0,.25));

}

.wmp-marker{

cursor:pointer;

transition:.25s;

transform-origin:center;

}

.wmp-marker:hover{

transform:scale(1.15);

filter:drop-shadow(0 6px 12px rgba(0,0,0,.35));

}

