.category-filter {
    margin-top: 5px;
    margin-bottom: 40px;
}

.category-filter__item {
    margin-top: 10px;

    &:first-child {
        margin-top: 0;
    }
}

.category-filter__input {
    display: none;
}

.category-filter__label {
    padding-left: 28px;
    font-size: 16px;
    color: var(--brand-grey-light);
    cursor: pointer;
    position: relative;

    &:before {
        content: '';
        display: block;
        width: 19px;
        height: 18px;
        border: 1px solid var(--brand-grey-light);
        position: absolute;
        left: 0;
        top: -2px;
    }

    &:after {
        content: '';
        display: block;
        width: 18px;
        height: 18px;
        background-image: url('../../../img/icons/linea/arrows_check.svg');
        background-position: center center;
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        top: -2px;
        left: 1px;
        opacity: 0;
    }

    span {
        font-size: 12px;
    }

    @media (min-width:992px) {
        font-size: 18px;
    }
}