
html,
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

header{
    padding: 0px 10px;
}
.main-area{
    padding: 10px;
}

.header-disclaimer{
    cursor: pointer;
}

input[type="checkbox"] {
    margin-right: 5px;
}

.container{
    height: 92vh;
}

.tooltip {
    display: none;
    position: absolute;
    background: #333;
    color: #fff;
    padding: 6px 8px;
    border-radius: 4px;
    font-size: 12px;
    max-width: 200px;
    z-index: 10;
}

.filter-header:hover .tooltip {
    display: block;
}


#map {
    width: 100%;
    height: 100%;
    max-height: 1500px;
}

.filter-header {
    font-weight: bold;
    margin: 10px 0px 5px 0px;
}



#fullscreen-btn {
    position: fixed;
    top: 110px;
    right: 15px;
    z-index: 1000;
    padding: 8px 12px;
    cursor: pointer;
    
}

#fullscreen-btn[isFull="true"] {
    top: 10px;
}
/* Stack on small screens */
/* @media (max-width: 688px) {

    #fullscreen-btn {
        top: 10px;
    }
} */