#breadcrumbs {background: #f8f9fa;}
#breadcrumbs ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}
#breadcrumbs ul li {
    list-style: none;
    padding: 0 38px 0 0;
    font-size: 13px;
    line-height: 13px;
    color: #aab3cd;
    font-family: 'Raleway', sans-serif;
    position: relative;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
    min-width: 70px;
}
#breadcrumbs ul li:not(:last-of-type) {margin : 0 28px 0 0;}
#breadcrumbs ul li:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    height: 40px;
    width: 8px;
    background: url(breadcrumbs-arrow.png) no-repeat;
    -webkit-background-size: 100%;
    background-size: 100%;
}
#breadcrumbs ul li a,
#breadcrumbs ul li a span {
    color: #487af4;
    height: 40px;
    font-size: 13px;
    line-height: 13px;
    display: inline-flex;
    align-items: center;
}
#breadcrumbs ul li a:hover,
#breadcrumbs ul li a span:hover {
    color: #dd153f;
    text-decoration: none;
}