#filter_steps {
    display: none;
}

#steps-filter {
    height: 100%;
    padding: 16px;
    background-color: #f7f7f7;
}

#steps-filter #filter-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
}

#steps-filter #filter-title:not(.collapsed) {
    margin-bottom: 16px;
}

#steps-filter #filter-title > span {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

@media all and (min-width: 768px) {

    #steps-filter #filter-title > span {
        font-size: 22px;
    }

}

@media all and (min-width: 1200px) {

    #steps-filter #filter-title > span {
        font-size: 24px;
    }

}

#steps-filter #filter-title > svg {
    width: 45px;
    height: 45px;
    fill: #484876;
    transition: all 0.3s ease;
}

#steps-filter #filter-title:not(.collapsed) > svg {
    transform: rotate(180deg);
}

@media all and (min-width: 768px) {

    #steps-filter #filter-title > svg {
        display: none;
    }

}

#steps-filter #filter-fields {
}

#steps-filter #filter-fields label {
    margin-bottom: 8px;
    font-size: 14px;
    color: #6d6d6d;
}

#steps-filter #filter-actions {
    margin-top: 32px;
}

#steps-filter #filter-actions > .btn_custom {
    display: flex;
    justify-content: center;
    align-items: center;
}