
.categories {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.categories .category:hover {
    background-color: #efd7c5;
}

.categories .category span {
    float: right;
    font-size: 13px;
}

.categories .category b {
    margin-right: 10px;
}

.categories .category > * {
    display: inline-block;
    vertical-align: middle;
}

.categories .category {
    background-color: #f8e4d5;
    font-size: 15px;
    padding: 0 15px 3px 20px;
    text-transform: uppercase;
    margin: 0 10px 10px 0;
    color: #475669;
    border-radius: 5px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    position: relative;
    line-height: 45px;
    min-width: 195px;
}

@media screen and (max-width: 1300px) {
    .page .categories .category {
        font-size: 14px;
        padding: 0 15px;
        min-width: auto;
    }
}

@media screen and (max-width: 767px) {
    .page .categories .category {
        font-size: 13px;
        line-height: 35px;
        margin: 0 7px 7px 0;
    }

    .categories .category span {
        font-size: 10px;
    }
}