#steps-filter {
    background-color: #f7f7f7;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 16px 0;
}

@media all and (min-width: 768px) {

    #steps-filter {
        padding: 16px 0;
        border: 1px solid #dad7d7;
    }

}

#steps-filter #filter-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 16px 8px;
    border-bottom: 1px solid #dad7d7;
}

@media all and (min-width: 768px) {

    #steps-filter #filter-title {
        display: none;
    }

}

#steps-filter #filter-title > span {
    flex: 0 0 auto;
    margin-right: 16px;
    font-size: 18px;
    font-weight: bold;
}

#steps-filter #filter-title > .btn_custom {
    margin: 0;
}

#steps-filter #filter-fields {
    max-width: 100%;
}

@media all and (min-width: 768px) {

    #steps-filter #filter-fields {
        padding: 0;
        width: 100%;
    }

}

#steps-filter #filter-fields .form-group > label {
    margin: 0 0 16px;
    color: #e50000;
    font-size: 16px;
    font-weight: 500;
    text-decoration: underline;
}

@media all and (min-width: 768px) {

    #steps-filter #filter-fields .form-group > label {
        margin: 0 16px 20px;
        font-size: 18px;
    }

}

#steps-filter #filter-fields .form-group > select {
    cursor: pointer;
}

#steps-filter #filter-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

@media all and (min-width: 768px) {

    #steps-filter #filter-actions {
        flex-direction: row;
    }

}

#steps-filter #filter-actions .btn_custom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 75%;
    max-width: 75%;
    font-size: 14px;
    font-weight: 400;
    max-height: 45px;
}

@media all and (min-width: 768px) {

    #steps-filter #filter-actions .btn_custom {
        flex: 0 0 25%;
        max-width: 25%;
        max-height: initial;
    }

    #steps-filter #filter-actions .btn_custom + .btn_custom {
        margin-left: 16px;
    }

}