/* * * Bread crumbs * * */
.b-path {
    margin: 0 0 10px;
    font: 400 14px/25px 'Roboto', sans-serif;
    color: #919191;
    cursor: default;
}

.b-path li {
    display: inline-block;
    position: relative;
    padding-right: 12px;
    margin-right: 4px;
    letter-spacing: normal;
}

.b-path li:after {
    position: absolute;
    top: 0;
    right: 0;
    color: #AAA;
    content: '/';
}

.b-path li:last-child:after {
    content: none;
}

.b-path a {
    text-decoration: none;
    color: #CCC;
}

.b-path a:hover {
    color: #1fa6a3;
}

@media (min-width: 768px) {

    .b-path {
        margin: 0 0 18px;
        /*font: 400 14px 'Roboto', sans-serif;*/
    }
}