/* Filter */
#filter-button{
    margin: 5px 0;
    width: 70px;
    align-self: center;
    position: relative;
}

#filter-window{
    display: none;
    flex-direction: column;
    position: absolute;
    z-index: 11;
    width: 500px;
    transform: translate(-50%, 10%);
    top: 0%;
    left: 50%;
}
#filter-window hr{
    color: var(--TEAL);
    margin: 5px 0;
}
.filter-header{
    font-size: 10px;
    color: #fff;
    display:flex;
    align-items: center;
    justify-content:space-between;
    background: var(--TEAL);
    border-bottom: 1px solid var(--TEAL);
    padding: 2px 5px 2px 5px;
}
.filter-body{
    display: flex;
    justify-content: center;
}
.filter-column{
    color: var(--TEAL);
    font-weight: bolder;
    display: flex;
    flex-direction: column;
    margin: 0 5px;
}
.filter-head{
    justify-content: left !important;
}
.filter-column div{
    display: flex;
    height: 30px;
    align-items: center;
    justify-content: center;
}
.filter-range{
    display: flex;
    align-items: center;
}
.filter-range input{
    width: 50px;
}
.filter-range select{
    min-width: 60px;
}
.filter-range span{
    margin: 0 5px;
}

.filter-conditions{
    color:var(--TEAL);
    font-weight: bolder;
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.filter-conditions select{
    margin-left: 15px;
    margin-right: 5px;
}
.filter-scroll{
    margin: 0 5px;
    background: rgba(196, 230, 255, 0.5);
    border: 4px double var(--TEAL);
    border-radius: 8px;
    height: 150px;
    overflow-y: scroll;
}
.filter-condition{
    font-size: 12px;
    font-weight: bolder;
    display: flex;
    height: 50px;
    align-items: center;
    justify-content: space-between;
}
.filter-condition span{
    color: #fff;
}
.filter-condition .unit-range{
    width: 55px;
    text-align: center;
}
.filter-condition button {
    margin: 5px;
}
.filter-label{
    text-align: left;
    color: #fff;
    display: flex;
    align-items: center;
    width: 150px;
    margin: 5px;
}
.filter-range label{
    color: #fff;
}
.filter-select{
    margin-right: 5px;
}
.filter-footer{
    margin: 5px;
    display:flex;
    align-items: center;
    justify-content: space-around;
}
i {
    pointer-events: none;
}