@import '../../_coreStyles.scss';
.bolt-breadcrumb-container {
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-left: 3px;
}

.bolt-breadcrumb-with-items {
    min-width: 50px;
}

.bolt-breadcrumb-divider-container {
    display: flex;
    align-items: center;
    align-self: stretch;
}

.bolt-breadcrumb-divider {
    width: 20px;
    height: 24px;
    text-align: center;
    padding: 0px 8px;
    color: $secondary-text;
}

.bolt-breadcrumb-forward-slash {
    font-size: 16px;
    cursor: default;
}

.bolt-breadcrumb-item {
    display: inline-flex;
    align-items: center;
    align-self: stretch;

    a {
        text-decoration: none;
    }

    a:hover {
        text-decoration: none;
    }
}

.bolt-breadcrumb-hidden-element {
    display: none;
}

.bolt-breadcrumb-item-text-container {
    display: flex;
    align-items: center;

    border-radius: 2px;

    &:hover {
        background-color: $transblack-6;
    }
    &:active {
        background-color: $transblack-8;
    }
}

.bolt-breadcrumb-list-item {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    position: relative;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
}

.bolt-breadcrumb-overflow {
    position: relative;
    display: flex;
    align-items: center;
}

.bolt-breadcrumb-overflow-visible {
    min-width: 50px;
}

.bolt-breadcrumb-item-text {
    color: $secondary-text;
    padding: 4px 8px;
    max-width: 200px;
    font-size: 14px;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
}