#filters {
    position: relative; z-index: 1;
    font-size: 15px;
}

/*------------------------------------------------------------------------------------------*/

#filters > .selection {
    position: relative; z-index: 2; 
    display: flex; height: 60px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 70px 0 25px;
    
    border-radius: 30px;
    
    line-height: 60px;
}
.loaded #filters > .selection { transition: color .2s ease-out; }
#filters:hover > .selection { color: #FFF; }
#filters > .selection:before,
#filters > .selection:after {
    content: '';
    position: absolute; top: 50%; right: 10px; transform: translateY(-50%);
    display: block;
    
    border-radius: 50%;
}
#filters > .selection:before {
    height: 40px; width: 40px;
    border: solid 1px currentColor;
}
#filters > .selection:after {
    height: 41px; width: 41px;
    
    background-color: currentColor;
    
    -webkit-mask-image: url("../../images/icons/open.svg");
    mask-image: url("../../images/icons/open.svg");
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 40% auto;
    mask-size: 40% auto;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}
.loaded #filters > .selection:after { transition: transform .2s ease-out; }
#filters:hover > .selection:after { transform: translateY(-50%) rotate(45deg); }

/*------------------------------------------------------------------------------------------*/

#filters > .options {
    position: absolute; top: 0; right: 0; left: 0; z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 20px;
    padding: 70px 25px 25px;
    
    background-color: #1E1E1E;
    border-radius: 30px;
    
    color: #FFF;
    
    opacity: 0;
    pointer-events: none;
}
.loaded #filters > .options { transition: opacity .2s ease-out; }
#filters:hover > .options {
    opacity: 1;
    pointer-events: auto;
}
#filters > .options > .option {
    line-height: 14px;
    font-size: 18px;
    font-weight: 700;
}
.loaded #filters > .options > .option { transition: color .2s ease-out; }
#filters > .options > .option.selected,
#filters > .options > .option:hover { color: var(--main-color); }