<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* filter styling */

#filter-popup-bg input[type=text]{
    background-color: transparent;
    border:none;
    outline:none;
    color:white;
    font-family: inherit;
    font-size:1em;
    flex:1;
    width:100%;
}


#filter-popup-bg{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

#filter-popup{
    background-color:#1A1B1E;
    position:absolute;
    border-radius: 0.5em;
    width:min(90% - 1em,300px);
    padding-top:0.2em;
}

#filter-listed {
    display: flex;
    margin:0.5em;
    border-radius: 0.5em;
    border: 2px solid var(--popup-clr);
    overflow: hidden;
}

#filter-listed &gt; div {
    flex: 1;
    padding:0.5em;
    cursor: pointer;
    text-align: center;
}

#filter-listed &gt; div.selected {
    background-color: var(--accent-clr)
}

/* tab section for filters */
#filter-tabs{
    border-bottom: 1px solid var(--secondary-bg);
    display:flex;
    padding:0 0.5em;
}

/* actual styling of the tabs */
#filter-tabs &gt; div{
    padding:0.5em;
    color:var(--subtle-font);
    cursor:pointer;
    min-width:4em;
    text-align:center;
}

#filter-tabs &gt; div:hover{
    color:white;
}

#filter-tabs &gt; .filter-tab-selected{
    color:white;
    border-bottom: 2px solid var(--accent-clr);
}


/* styling of the search bar  */
#filter-search{
    border:2px solid var(--tertiary-bg);
    margin: 0.5em 1em;
    display:flex;
    padding:0.5em;
    border-radius: 0.5em;
    gap:0.5em;
}

/* the div containing all the options for the maps/agents */
#filter-options{
    max-height: 15em;
    overflow: auto;
    overscroll-behavior: contain;
    padding-bottom:1em;
}

/* styling of the individual options in the list  */
.filters-options{
    height:2em;
    display:flex;
    align-items:center;
    padding:0em 1em;
    cursor: pointer;
}

.filters-options:hover{
    background-color: var(--primary-bg);
}

.filters-options &gt; img{
    height:1.5em;
    margin-right:0.5em;
}

@media (max-width:700px) {
    .filters-options{
        padding:0.5em 1em
    }
    #filter-popup-bg{
        z-index:3;
        background-color: rgba(0,0,0,0.7);
        position:fixed;
    }
    #filter-popup{
        position:fixed;
        left: 0 !important;
        width: 100% !important;
        bottom: 0 !important;
        top: auto !important;
    }
    #filter-options{
        max-height: 60vh;
    }
    .filters-options &gt; img{
        height:2em;
    }
}

#filters-full{
    display: flex;
    gap: 0.5em;
    flex-wrap: wrap;
}

/* the div containing all the added filters  */
#filters-list{
    display:flex;
    flex-wrap: wrap;
    gap:0.5em;
}

/* the children of #filters-list  */
.added-filter{
    background-color: var(--secondary-bg);
    border-radius: 0.5em;
    padding:0.25em 0.5em;
    display:flex;
    cursor: pointer;
    gap:0.5em;
}

@supports not (gap:0.5em){/*if flex gap isnt supported use set a margin (slightly worse but still good enough)*/
    .added-filter{
        margin-left: 0.5em;
    }
}

.added-filter &gt; img{
    height:1.5em;
    margin:auto;
}

.added-filter &gt; span{
    margin:0 0.5em;
    margin:auto;
}</pre></body></html>