.wmhp-wrapper{
    background:#000;
    padding:40px;
}

.wmhp-map{
    position:relative;
    max-width:1200px;
    margin:auto;
}

.wmhp-map img{
    width:100%;
    display:block;
}

.wmhp-hotspot{
    position:absolute;
    transform:translate(-50%,-50%);
}

.wmhp-dot{
    width:22px;
    height:22px;
    background:red;
    border-radius:50%;
    display:block;
    cursor:pointer;
    box-shadow:0 0 0 10px rgba(255,0,0,.2);
    animation:pulse 2s infinite;
}

@keyframes pulse{
    0%{box-shadow:0 0 0 0 rgba(255,0,0,.5);} 
    70%{box-shadow:0 0 0 20px rgba(255,0,0,0);} 
    100%{box-shadow:0 0 0 0 rgba(255,0,0,0);} 
}

.wmhp-tooltip{
    position:absolute;
    left:35px;
    top:-20px;
    width:240px;
    background:#111;
    color:#fff;
    padding:15px;
    border-radius:10px;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:99;
}

.wmhp-hotspot:hover .wmhp-tooltip{
    opacity:1;
    visibility:visible;
}

.wmhp-tooltip img{
    width:100%;
    border-radius:8px;
    margin-bottom:10px;
}
