.listcategories {
    width: 100%;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.listcategories li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    padding: 12px 0;
}
.listcategories li span {
    opacity: 0.5;
}
.listcategories li:not(:last-child) {
    border-bottom: solid 1px #ddd;
}