
.breadcrumb a {
    text-decoration: none;
    outline: none;
    display: block;
    float: left;
    font-size: 12px;
    line-height: 25px;
    color: white;
    padding: 0 10px 0 25px;
    background: #666;
    position: relative;
}

    .breadcrumb a:first-child {
        padding-left: 10px;
        border-radius: 5px 0 0 5px;
    }

        .breadcrumb a:first-child:before {
            left: 14px;
        }

    .breadcrumb a:last-child {
        padding-right: 20px;
    }

    /*hover/active styles*/
    .breadcrumb a.active, .breadcrumb a:hover {
        background: #333;
    }

        .breadcrumb a.active:after, .breadcrumb a:hover:after {
            background: #333;
            background: linear-gradient(135deg, #333, #000);
        }

    .breadcrumb a:after {
        content: '';
        position: absolute;
        top: -2px;
        right: -8px;
        width: 20px;
        height: 20px;
        transform: scale(0.707) rotate(45deg);
        z-index: 1;
        background: #666;
        background: linear-gradient(135deg, #666, #333);
        box-shadow: 2px -2px 0 2px rgba(0, 0, 0, 0.4), 3px -3px 0 2px rgba(0, 0, 0);
        border-radius: 0 5px 0 50px;
    }

    .breadcrumb a:last-child:after {
        content: none;
    }



.flat a, .flat a:after {
    background: #06377b;
    color: white;
    transition: all 0.5s;
    margin-top: 5px;
}

    .flat a:before {
        background: white;
        box-shadow: 0 0 0 1px #ccc;
    }

    .flat a.active,
    .flat a.active:after {
        background-color: white;
        color: black;
    }

        .flat a.active:hover {
            background-color: white;
            color: black;
        }

    .flat a:hover {
        background-color: black;
    }

@media screen and (max-width: 992px) {
    .flat a.active {
        padding-left: 0px;
    }
}
