#finder .active {
    display: flex;
}

.filters_nav_container {
    display: flex;
    align-items: center;
    flex-direction: column;
    row-gap: 2rem;
    margin-top: 3rem;
    width: 100%;
}



.filters_nav_container .second_filters_nav_container {
    width: 70%;
    justify-content: space-evenly;
    display: none;
}

.filters_nav_container .active {
    display: flex;
}

.second_filters_nav_container span {}

.second_filters_nav_container .selected {
    border: dotted var(--main-color) 2px;
}

.prime_filters_nav_container .selected {
    border-bottom: solid var(--main-color) 2px;
}



/* -------------- */
#side_filter_container {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 315px;
    height: 100%;
    background-color: antiquewhite;
    /*! column-gap: 1rem; */
    border: 1px solid;
    z-index: 1;
}

#side_filter_container .options_wrap {
    display: none;
    flex-direction: column;
    /*row-gap: 10px;*/
    overflow: scroll;
    height: 100%;
    margin-right: 1.5rem;
}

#side_filter_container .active {
    display: flex;
}

.side_filter_btn {
    border-bottom: 1px solid rgb(70, 69, 69);
    text-transform: capitalize;
    font-family: 'sans-serif';
    /*padding: 1rem;*/
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.side_filter_btn span {
    padding: 0.3rem;
    margin-left: 0.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    width: 100%;
}

.side_filter_btn span i {
    margin-left: 1rem;
}

#side_filter_btn_clean_wrap i {
    height: 100%;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: larger;
    border-left: solid 1px;
    border-right: solid 1px;
    cursor: pointer;
}


.options_wrap>span {
    width: 100%;
    min-height: 50px;
    max-height: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 0.5rem;
    border-bottom: 1px solid;
    cursor: pointer;
}

.options_wrap>span>input {
    margin-left: 1rem;
}

#open_filters_btn {
    font-weight: bold;
    font-size: larger;
    cursor: pointer;
    -webkit-text-stroke: #000 0.1px;
    margin-top: 2rem;
    margin-bottom: 2rem;
    width: 90%;
    text-align: end;
    color: var(--main-color);
    cursor: pointer;
    text-shadow: 2px 0 #000, -2px 0 #000, 0 2px #000, 0 -2px #000, 1px 1px #000, -1px -1px #000, 1px -1px #000, -1px 1px #000;
}

@media only screen and (max-width: 678px) {
    #side_filter_container {
        width: 100%;
        position: absolute;
    }
}