.adf-breadcrumb {
    display: flex;
    flex: 1;
    font: var(--mat-sys-body-medium);
    color: var(--mat-sys-on-surface);
    overflow: hidden;

    &-container {
        margin: 0;
        padding: 0;
        list-style-type: none;
        cursor: default;
        display: flex;
        overflow: hidden;
    }

    &-dropdown {
        &-path {
            width: 0;
            height: 0;
            overflow: hidden;
            margin-top: 35px;
        }

        &-trigger {
            cursor: pointer;
            padding: 0;
            border: none;
            background: transparent;
            width: 30px;
            margin-top: 2px;
            margin-right: 5px;

            &:focus {
                color: var(--mat-sys-primary);
                outline: none;
            }

            &-icon {
                position: relative;
            }

            &-arrow {
                font: var(--mat-sys-body-small);
                position: absolute;
                left: 4px;
                top: 4px;
                color: var(--mat-sys-on-secondary);
                z-index: 2;
            }

            &-arrow.adf-isRoot {
                visibility: hidden;
            }

            &-arrow.adf-focus {
                border: none;
            }
        }

        &-trigger.adf-isRoot {
            cursor: not-allowed;
        }
    }

    &-item {
        padding-right: 2px;
        overflow: hidden;
        display: flex;
        align-items: center;
        font: var(--mat-sys-body-medium);
        text-align: left;
        color: var(--mat-sys-on-secondary-container);
        flex: 0 1 auto;
        min-width: 35px;
        text-overflow: ellipsis;

        &.adf-active {
            color: var(--mat-sys-on-surface);
        }

        &-chevron {
            margin-top: 9px;
            font: var(--mat-sys-body-small);
        }

        &-anchor {
            box-sizing: border-box;
            color: inherit;
            text-decoration: none;
            display: inline-block;
            width: 100%;
            white-space: nowrap;
            text-overflow: ellipsis;
            overflow: hidden;
            flex: 0 1 auto;
            padding: 0;
            text-align: start;

            &:focus {
                outline: 1px solid var(--mat-sys-outline-variant);
                outline-offset: -1px;
            }
        }

        &-current {
            text-overflow: ellipsis;
            overflow: hidden;
            white-space: nowrap;
        }
    }
}
