/* ===== BREADCRUMBS ===== */

ol.breadcrumb {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: block;
    clear: both;
    overflow: hidden;
}

ol.breadcrumb li {
    list-style: none;
    padding: 0px;
    margin: 0px;
    font-size: 18px;
    position: relative;
    float: left;
}

ol.breadcrumb li:first-child {
    font-weight: bold;
}

ol.breadcrumb li.breadcrumb-item:not(:last-child)::after {
    color: #0367c0;
    padding: 0px 10px;
    content: ">";
}

ol.breadcrumb a {
    color: #0367c0;
    text-decoration: none;
}

ol.breadcrumb a:hover {
    color: #d83c3d;
    text-decoration: none;
}

ol.breadcrumb .active {
    color: #0367c0;
    font-weight: bold;
}

@media all and (max-width: 640px) {
    ul.breadcrumb li {
        font-size: 14px;
    }
}