.show-breadcrumb{
    overflow: auto;
}
.show-breadcrumb::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 0!important;
}
.breadcrumbs{
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.08);
    background: #fff;
    margin-bottom: 20px;
    position: relative;
}
.breadcrumb {
    margin-bottom: 0px;
    padding: 9px 0;
    background: none;
    display: flex;
    width: max-content;
}
.breadcrumb .fl-left {
    margin: 2px  0;
    border-radius: 5px;
    font-size: 12px;
}
.breadcrumbs_sepa {
    background: url("../images/right_arrow.png") no-repeat scroll left center ;
    float: left;
    margin: 0 5px;
    padding: 4px ;
    text-indent: -999px;
}
.breadcrumb a {
    color: rgba(0, 0, 0, 0.87);
    font-size: 12px;
    font-weight: normal;
}
.breadcrumb a span{
    color: rgba(0, 0, 0, 0.6);
}
.breadcrumb .fl-left:last-child a span{
    color: rgba(0, 0, 0, 0.87);
}

@media (max-width:960px) {
    .breadcrumb .fl-left{
        margin: 0;
    }
    .breadcrumb{
        padding: 4px 0;
    }
    .show-breadcrumb{
        overflow: unset;
    }
    .breadcrumb{
        overflow-x: auto;
        width: 100%;
        flex-wrap: nowrap;
        white-space: nowrap;
    }
}