
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

    .breadcrumb span {
        display: flex;
        align-items: center;
        font-size: 14px;
        line-height: 1.5;
        color: #939393;
        font-weight: bold;
        position: relative;
    }

        .breadcrumb span:after {
            content: '/';
            margin: 0 5px;
            font-size: 14px;
            color: #939393;
        }

        .breadcrumb span:last-child:after {
            display: none;
        }

        .breadcrumb span a {
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: var(--color-primary);
        }

            .breadcrumb span a img {
                width: 35px;
                height: 35px;
                border-radius: 50%;
                overflow: hidden;
                margin-right: 15px;
            }


@media (min-width: 767px) {
    .breadcrumb span:after {
        margin: 0 10px;
    }
}
