:root {
    --filter-highlight-color: rgb(244, 53, 53);
}

.filters-wrapper {
    position: fixed;
    top: 200px;
    left: 0px;
    height: 60vh;

    padding: 2px;
    z-index: 199;
    
    font-size: xx-small;
    color: black;

    display: flex;
    flex-direction: row;
    align-items:center;
  }

#filters-expander {
    width: 20px;
    height: 200px;
    margin-left: 0px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: #0f72ab;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    
    font-size: xx-small;
    display:block
}

#filters-expander:hover {
    background-color: #26c2f1;  
}

#filters-expander img{
    margin-top: 0px;
}

#filters-expander p{
    margin-top: 10px;
    margin-left: 4px;
    font-weight: 500;
}

#filters-expander button{
    background-color: rgb(204, 238, 238);
    border-radius: 20%;
    padding: 0px;
    width: 80%;
    height: 40px;
    cursor: pointer;
    margin-left: 1px;
}

#filters-expander button:hover{
    background-color: bisque;
}

#filters-expander button p{
    margin: 0px;
    color: black;
    font-size: xx-small;
}

.filters {
    height: 100%;
    max-width: 300px;
    min-width: 200px;  
    background-color: #ADD8E6;
    flex: 1;
    overflow-y: scroll;
    padding: 10px;
    display: none;
    border: 1px solid #0f72ab;
    border-radius: 3%;
}

.select-wrapper{
    border-radius: 5%;
    margin-top: 2px;
    padding: 2px;
    font-weight: 300;
}

.select-header{
    color: rgb(0, 0, 0);
}

.filters-wrapper .not-all{
    background-color: var(--filter-highlight-color);
}

.filters-wrapper #filters-expander.not-all{
    background-color: var(--filter-highlight-color);
}

.filters-wrapper .not-all .select-header{
    font-weight: 700;
    color: #fff;
}

.filters-wrapper .selection{
    padding: 0px;
}

:focus {
    outline: none;
    /* box-shadow: 0 0 0 1px #057af7; */
}
