/* ==========================================
   Breadcrumbs
========================================== */

.me-breadcrumbs,
.breadcrumbs {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;

    margin: 0 0 28px;
    padding: 12px 20px;

    background: rgba(255,255,255,.95);
    border: 1px solid #dfe7f0;
    border-radius: 999px;

    box-shadow: 0 8px 24px rgba(15,36,64,.06);

    font-size: 14px;
    font-weight: 700;
    color: #6b7c90;
}

.me-breadcrumbs a,
.breadcrumbs a {
    display: flex;
    align-items: center;
    gap: 6px;

    color: #0b63b6;
    text-decoration: none;
    transition: .2s;
}

.me-breadcrumbs a:hover,
.breadcrumbs a:hover {
    color: #d12427;
}

.me-breadcrumbs span,
.breadcrumbs span {
    width: 26px;
    height: 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #edf5ff;
    color: #0b63b6;

    border-radius: 50%;

    font-size: 12px;
    font-weight: 900;
}

.me-breadcrumbs strong,
.breadcrumbs strong {
    color: #1c2a3a;
    font-weight: 800;
}

/* ==========================================
   Breadcrumb
========================================== */

.breadcrumb {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;

    margin: 0 0 28px;
    padding: 12px 20px;

    background: #fff;
    border: 1px solid #dfe7f0;
    border-radius: 999px;

    box-shadow: 0 8px 24px rgba(15,36,64,.06);

    color: #1c2a3a;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.breadcrumb a {
    color: #0b63b6;
    text-decoration: none;
    transition: .2s ease;
}

.breadcrumb a:hover {
    color: #d12427;
}

.breadcrumb i {
    width: 24px;
    height: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #edf5ff;
    color: #0b63b6;

    border-radius: 50%;
    font-size: 11px;
    flex-shrink: 0;
}