.service-breadcrumb {
    width: 100%;
    background-color: #F8F8F8;
    color: #AAA;
    font-size: 12px;
}

.service-breadcrumb__list {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    width: 100%;
    margin: 0;
    padding: 10px 20px 12px;
    list-style: none;
}

.service-breadcrumb__item {
    display: flex;
    align-items: baseline;
    min-width: 0;
    max-width: 100%;
    color: #AAA;
    overflow-wrap: anywhere;
}

.service-breadcrumb__item + .service-breadcrumb__item::before {
    box-sizing: border-box;
    content: "";
    align-self: center;
    flex: 0 0 6px;
    width: 6px;
    height: 6px;
    margin: 0 8px;
    border-top: 2px solid #AAA;
    border-right: 2px solid #AAA;
    transform: rotate(45deg);
}

.service-breadcrumb__link {
    display: flex;
    align-items: baseline;
    min-width: 0;
    color: #666;
    text-decoration: underline;
    overflow-wrap: anywhere;
}

.service-breadcrumb__link:hover {
    color: #666;
    text-decoration: underline;
}

.service-breadcrumb__home-icon {
    display: block;
    flex: 0 0 9px;
    width: 9px;
    height: 10px;
    margin-right: 4px;
}

.service-breadcrumb__current {
    color: #666;
}
