@import url("./_static-variables.css");

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: .75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;

}

.breadcrumb-item+.breadcrumb-item {
    padding-left: .5rem
}

.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: .5rem;
    color: #6c757d;
    content: "/"
}

.breadcrumb-item+.breadcrumb-item:hover::before {
    text-decoration: none
}

.breadcrumb-item.active {
    color: #6c757d
}

#breadcrumb-wrapper {
    position: relative;
    overflow: hidden
}

#breadcrumb-wrapper #breadcrumb-left,#breadcrumb-wrapper #breadcrumb-right {
    position: absolute;
    top: -4px;
    cursor: pointer;
    background: #fff;
    z-index: 1;
    color: #f39500;
    display: none
}

#breadcrumb-wrapper #breadcrumb-left {
    left: 0;
    padding: 5px 25px 5px 0;
    background: linear-gradient(to right, #fff 0%, #fff 50%, rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#00ffffff', GradientType=1)
}

#breadcrumb-wrapper #breadcrumb-right {
    right: 0;
    padding: 5px 0px 5px 25px;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, #fff 50%, #fff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=1)
}

#breadcrumb-wrapper.scroll-left #breadcrumb-left,#breadcrumb-wrapper.scroll-right #breadcrumb-right {
    display: inline-block
}

#breadcrumb-wrapper .breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 0;
    display: block;
    white-space: nowrap;
    transform: translateX(0px);
    transition: 0.5s ease-in-out
}

#breadcrumb-wrapper .breadcrumb .breadcrumb-item {
    display: inline-block
}

#breadcrumb-wrapper .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    font-family: var(--bootstrap-icons-font-family);
    font-weight: 700;
    font-variant: normal;
    text-transform: none;
    vertical-align: text-top;
    font-style: normal;
    line-height: 1.5;
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: '\F285';
    font-size: 0.875rem;
    position: relative;
    top: 2px;
    color: #dcdcdc;
    padding-right: 10px;
    padding-left: 10px;
}

#breadcrumb-wrapper .breadcrumb .breadcrumb-item.active {
    color: #000
}

.theme-light-green .breadcrumb-icon, .theme-light-green a {
    color: #65ac1e
}

@media (min-width: 576px) {
    .container {
        max-width:755px
    }
}

@media (min-width: 768px) {
    .container {
        max-width:980px
    }
}