
.breadcrumbs {
    font-size: 14px;
    margin-bottom: 10px;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    color: #727d7f;
}

.breadcrumbs li + li::before {
    content: "-";
    margin: 0 6px;
    color: #999;
}

.breadcrumbs a {
    color: inherit;
    text-decoration: none;
    color: var(--main-dark-color);
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

