.breadcrumbs {
    display: flex;
    flex-flow: row nowrap;
    column-gap: 12px;
}

.breadcrumbs li a {
    transition: color .2s ease-in-out;
    color: #586181;
    font-family: 'GraphikLCG-Light', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    max-width: 340px;

}

.breadcrumbs li {
    cursor: pointer;
    position: relative;
    padding-right: 36px;
}

.breadcrumbs li:after {
    width: 24px;
    height: 24px;
    content: '';
    -webkit-mask: url("../arrow.svg") no-repeat 50% 50%;
    mask: url("../arrow.svg") no-repeat 50% 50%;
    -webkit-mask-size: cover;
    mask-size: cover;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: #586181;
    transition: background 0.2s ease-in;
}

.breadcrumbs li:last-child:after {
    display: none;
}

.breadcrumbs li:last-child {
    cursor: text;
}

.breadcrumbs li:last-child a {
    color: #98A1C3;
    pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
    .breadcrumbs li:hover:not(:last-child) a {
        color: #6B759A;
    }
    .breadcrumbs li:hover:not(:last-child):after {
        background: #6B759A;
    }
}
