.collection {
    h1 {
        i {
            cursor: pointer;
        }
    }
    .filters {
        display: flex;
        justify-content: end;
        padding: 0.5rem 0;

        .field {
            padding: 0 0.5rem;

            select {
                width: auto;
            }

            @include respond-to("small-up") {
                width: 33%;
                &:last-child {
                    padding-right: 0;
                }
            }
        }

        @include respond-to("small") {
            flex-direction: column;
        }
    }

    .showMoreFilters {
        cursor: pointer;

        .up::before {
            transform: rotate(90deg);
        }
        .down::before {
            transform: rotate(270deg);
        }
    }

    .list{
        .title {
            .icon-trash {
                cursor: pointer;
                color: $danger-color;
                @include transition() {}

                &:hover {
                    color: $danger-color-hl;
                }
            }
        }
    }

    .total {
        margin: 0.75rem 0;
    }
}