<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#map{
    height: 600px;
    width: 900px;
}



.filter-icon {
    float: right;
    position: relative;
    top: 4px;
}

.filter-icon.tall {
    top: 0;
}

#filter-icon {
    background-image: url('../images/filter.png');
    border-right: solid 1px #eee;
    border-bottom: none;
}

#slider { 
    position: absolute; 
    margin-left: auto;
    margin-right: auto;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 999;
    width: 50%;
    display: none;
}

@media only screen and (max-width: 480px) {
    #slider {
        width: 35%;
    }
}

#dropdown-container {
    background-color: white;
    height: fit-content;
    display: flex;
    flex-direction: column;
    font-size: 0.7rem;
}
.leaflet-control-container {
    height: 100%;
}
.leaflet-top.leaflet-right {
    height: 92.5%;
}

.leaflet-bar {
    margin-right: 5px;
    margin-top: 5px;
}
.leaflet-bar:not(.leaflet-control-zoom) {
    max-width: 200px;
    background-color: #eee;
    height: fit-content;
    overflow-y: auto;
    max-height: 100%;
}
.checkbox-container {
    padding: 2px 5px;
    border-bottom: solid 1px #eee;
}
.checkbox-container input {
    position: relative;
    top: 1.5px;
    margin-right: 3px;
}
input:disabled+label{
    color: gray;
}

input:disabled:hover, input:disabled+label:hover {
    cursor: not-allowed;
}
.filter__closed .checkbox-container {
    display: none;
}

.hide {
    display: none;
}

.filter__label:after {
    content: "\f103";
    font-family: "Font Awesome 6 Free";
    font-size: .8em;
    border-radius: 100px;
    position: relative;
    bottom: -1px;
    right: 4px;
    font-weight: 900;
    float: right;
    color: black;
}

.filter__label {
    background-color: #f9f9f9;
    padding: 4px 5px;
    border-bottom: solid 1px lightgray;
    border-top: solid 1px lightgray;
    color: black;
}

.filter__label span {
    display: inline-block;
    width: 90%;
}

.filter__label:hover {
    cursor: pointer;
}

hr.key_line { 
    display: inline-block;
    margin-top:1em;
    margin-bottom: 0.2em;
    margin-left: auto;
    margin-right: auto;
    width: 1rem;
    border-width: 4px;
    opacity: 0.8;
} </pre></body></html>