.b-breadcrumbs {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 30px;
    margin-top: 20px;
}
.b-breadcrumbs__link {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    font-size: 14px;
    line-height: 17px;
    color: #a0a0a0;
    transition: color 0.25s;
    text-decoration: none;
}
@media screen and (pointer: fine) {
    a.b-breadcrumbs__link:hover {
        color: #00913d;
        transition: color 0.1s;
        text-decoration: underline;
    }
}
.b-breadcrumbs__link:after {
    margin: 0 10px;
    color: #a0a0a0;
    width: 6px;
    height: 8px;
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNiIgaGVpZ2h0PSI4IiB2aWV3Qm94PSIwIDAgNiA4IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMSAwLjVMNSA0TDEgNy41IiBzdHJva2U9IiNBMEEwQTAiLz4KPC9zdmc+Cg==") no-repeat;
    content: "";
}
.b-breadcrumbs__link.m-text:hover {
    color: #a0a0a0;
}
.b-breadcrumbs > li:last-child .b-breadcrumbs__link:after {
    display: none;
}