
   html, body {
        height: 100%;
        margin: 0;
        padding: 0;
      }
      #map {
        height: 100%;
      }

   .labels {
     color: black;
     background-color: yellow;
     font-family: "Roboto";
     font-size: 10px;
     font-weight: normal;
     text-align: center;
     line-height: 12px ;
     padding: 1px 2px 1px 2px;
     width: auto;
     height: auto;
     border: 0px solid gray;
     border-radius: 4px ;
     white-space: nowrap;
   }

#filter-dialog table {
    margin: 0;
}

#filter-dialog td {
    vertical-align: middle;
}

#filter-dialog {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    border: 1px solid gray;
    border-radius: 2px;
    padding: 22px 22px 10px 10px;
}

#filter-dialog .close {
    position: absolute;
    right: 3px;
    top: 3px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}
#filter-dialog .close:hover {
    opacity: 1;
}
#filter-dialog .close:before, 
#filter-dialog .close:after {
    position: absolute;
    left: 7px;
    content: ' ';
    height: 16px;
    width: 2px;
    background-color: gray;
}
#filter-dialog .close:before {
    transform: rotate(45deg);
}
#filter-dialog .close:after {
    transform: rotate(-45deg);
}

#filter-dialog .clear {
    position: absolute;
    right: 3px;
    top: 3px;
    cursor: pointer;
    margin-right: 20px;
    height: 16px;
    width: 16px;
    background: url(trash.png);
}

.filter-button {
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 1px 4px -1px rgba(0,0,0,.3);
    cursor: pointer;
    text-align: center;
    margin-left: 10px;
    margin-top: 10px;
}

.filter-icon {
    height: 32px;
    width: 32px;
    background: url(filter.png);
}

#filter-apply {
    float: right;
}
