
.bread-crumb{
    padding: 5px 0 3px 0;
    ul {
        margin: 0;
        padding: 0;
        list-style: none;
        li {
            display: inline-block;
            font-size: 12.5px;
            position: relative;
            padding-right: 20px;
            margin-right: 7px;
            &:after {
                position: absolute;
                right: 0;
                top: 3px;
                content: "\e95b";
                font-family: 'icomoon' !important;
                color: $body-color;
                font-size: 9px;
            }
            &:last-child {
                &:after {
                    display: none;
                }
            }
            a{
                color: #a8a8a8;
                font-weight: $font-weight-light;
                &:hover {
                    color: $primary;
                }
            }
            &.active {
                a{
                    color: $gray-500;
                }
            }
        }
    }
}
