/* The responsive part */


.breadcrumb{
    font-size: 12px;
    padding: 0px;
    margin-bottom: 0px;
    color: #999999;
    border-radius: 0px;
    background-color: #fff;
}

.breadcrumbs_top{
	margin: 10px 0 10px 0;
}
.breadcrumb a{
    color: #777;
    font-weight: bold;
}

.breadcrumb > li + li::before {
    padding: 0 5px;
    color: #ccc;
    content: "\00bb ";
}

.breadcrumb > li {
    /* With less: .text-overflow(); */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.breadcrumb > *:nth-child(n+1) {
    display:none;
}

.invisible{display:none;}
/* === For phones =================================== */
@media (max-width: 767px) {
    .breadcrumb  > *:nth-last-child(-n+2) {
        display:inline;
    }
    .breadcrumb  > * {
        max-width: 60px;
    }
}

/* === For tablets ================================== */
@media (min-width: 768px) and (max-width:991px) {
    .breadcrumb  > *:nth-last-child(-n+4) {
        display:inline;
    }
    .breadcrumb  > * {
        max-width: 100px;
    }
}

/* === For desktops ================================== */
@media (min-width: 992px) {
    .breadcrumb  > *:nth-last-child(-n+6) {
        display:inline;
    }
    .breadcrumb  > * {
        max-width: 170px;
    }
}