.breadcrumb{
    display: inline-block;
    background: #fff;
    margin: 10px 0;
    padding: 0 !important;
    border: 1px solid #d6d4d4;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
}

.breadcrumb  a{
    padding: 5px 0;
    color: #2a3331;
}

/* Breadcrumbs from http://bootsnipp.com/snippets/featured/triangle-breadcrumbs-arrows */
.btn-breadcrumb .btn:not(:last-child):after{
    content: " ";
    display: block;
    width: 0;
    height: 0;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    border-left: 10px solid white;
    position: absolute;
    top: 50%;
    margin-top: -17px;
    left: 100%;
    z-index: 3;
}
.btn-breadcrumb .btn:not(:last-child):before {
    content: " ";
    display: block;
    width: 0;
    height: 0;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    border-left: 10px solid rgb(173, 173, 173);
    position: absolute;
    top: 50%;
    margin-top: -17px;
    margin-left: 1px;
    left: 100%;
    z-index: 3;
}

.btn-breadcrumb .btn {
    padding:7px 12px 6px 24px;
}
.btn-breadcrumb .btn:first-child {
    padding:7px 6px 6px 10px;
}
.btn-breadcrumb .btn:last-child {padding:7px 18px 6px 24px;}

.btn-breadcrumb .btn:hover{text-decoration: underline;}

.btn-breadcrumb a.activeCrumb.btn{
    margin-left:0;
}

.btn-breadcrumb .btn:hover {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}



.breadcrumb .activeCrumb{
    background: #f6f6f6;
    padding: 2px 20px 2px 0;
    color: #919392;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}

.breadcrumb .activeCrumb:hover{text-decoration: none;}
.breadcrumb .home{border: none;}
.breadcrumb .home:hover{background-color:#fff;}


/** Default button **/
.btn-breadcrumb .btn.btn-default:not(:last-child):after {
    border-left: 10px solid #fff;
}
.btn-breadcrumb .btn.btn-default:not(:last-child):before {
    border-left: 10px solid #ccc;
}
.btn-breadcrumb .btn.btn-default:hover:not(:last-child):after {
    border-left: 10px solid #fff;
}
.btn-breadcrumb .btn.btn-default:hover:not(:last-child):before {
    border-left: 10px solid #ccc;
}

/* The responsive part */

.btn-breadcrumb > * > div {
    /* With less: .text-overflow(); */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* === For phones =================================== */
@media (max-width: 767px) {
    .btn-breadcrumb > *:nth-last-child(-n+2) {
        display:block;
    }
    .btn-breadcrumb > * div {
        max-width: 60px;
    }
}

/* === For tablets ================================== */
@media (min-width: 768px) and (max-width:991px) {
    .btn-breadcrumb > *:nth-last-child(-n+4) {
        display:block;
    }
    .btn-breadcrumb > * div {
        max-width: 100px;
    }
}

/* === For desktops ================================== */
@media (min-width: 992px)  and (max-width:1199px) {
    .btn-breadcrumb > *:nth-last-child(-n+6) {
        display:block;
    }
    .btn-breadcrumb > * div {
        max-width: 170px;
    }
}

@media (min-width: 1200px) {
    .btn-breadcrumb > *:nth-last-child(-n+8) {
        display:block;
    }
    .btn-breadcrumb > * div {
        max-width: 240px;
    }
}

