html, body { margin:0; padding:0; }
body{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

#center{
    position: absolute;
    top:20%;
    left: 50%;
    transform: translateX(-50% );
}

#search {
    width: 100%;
    max-width: 320px;
    padding:8px;
    border:1px solid blue;
}

#menu{
    /* border:1px dotted blue; */
    width: 450px;
    /* height: 250px; */
}

.selectable{
    background-color: gainsboro;
    margin: 1px;
    padding:8px;
}
.selectable:hover{
    color:white;
    background-color: blue;
    cursor:pointer;
}

#wrpMap {
     position:absolute;
     width: 100%;
     height:100%;
     z-index: 0;
    }
#map{
    width: 100%;
     height:100%;
}

@media screen and (max-width: 500px) {
    #center{
        position: relative;
        padding-top: 100px;
        margin:20px;
    }
    #search, #menu{
        width: 75%;
    }
}
