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

.breadcrumbs {
    padding: 10px 0 2px;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #86868b;
    white-space: nowrap;
}

.breadcrumbs li:not(:last-child)::after {
    content: "\203A";
    color: #c7c7cc;
    font-size: 15px;
    margin-left: 4px;
}

.breadcrumbs a {
    color: #6e6e73;
    text-decoration: none;
    transition: color .2s;
}

.breadcrumbs a:hover {
    color: #0071e3;
}

.breadcrumbs li[aria-current="page"] {
    color: #1d1d1f;
    font-weight: 600;
    white-space: normal;
}

@media (max-width: 768px) {

    .breadcrumbs {
        padding: 8px 0 2px;
    }

    .breadcrumbs ol {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .breadcrumbs ol::-webkit-scrollbar {
        display: none;
    }

    .breadcrumbs li {
        font-size: 12.5px;
    }

    .breadcrumbs li[aria-current="page"] {
        white-space: nowrap;
    }
}
