


.breadcrumb {
    display: inline-block;
    border-radius: 5px;
    padding: 0px !important;
    margin-bottom: 0rem !important;
    list-style: none !important;
    background-color: transparent !important;
    border-radius: 0px !important;
}

.breadcrumb-items li:last-child {
    /* color: #ff0 !important; */
    line-height: 2.2;
    font-weight: 600;
    /* text-decoration: none; */
    display: block;
    float: left;
    /* font-size: 13px; */
    line-height: 36px;
    color: white;
    padding: 0 10px 0 60px;
    padding-left: 33px;
    background: linear-gradient(#cd4900, #cd4900);
    position: relative;
    font-family: Poppins, sans-serif;
    letter-spacing: 0.5px;
}

.breadcrumb li:last-child::after {
    content: '';
    position: absolute;
    top: 0;
    right: -18px;
    width: 36px;
    height: 36px;
    transform: scale(0.707) rotate(45deg);
    z-index: 1;
    background: #666;
    background: linear-gradient(#cd4900, #cd4900);
    /*box-shadow: 2px -2px 0 2px rgba(255, 255, 255, 0.4), 3px -3px 0 2px rgba(255, 255, 255, 0.85);*/
    border-radius: 0 5px 0 50px;
}

.breadcrumb-item i {
    display: none;
}

.breadcrumb li {
    font-family: Poppins, sans-serif;
    letter-spacing: 0.5px;
    /* text-decoration: none; */
    /* outline: none; */
    display: block;
    float: left;
    /* font-size: 13px; */
    line-height: 35px;
    color: white;
    /*need more margin on the left of links to accomodate the numbers*/
    padding: 1px 10px 0 60px;
    padding-left: 60px;
    background: linear-gradient(#29468c, #1b1f54);
    position: relative;
}

/*since the first link does not have a triangle before it we can reduce the left padding to make it look consistent with other links*/
.breadcrumb li:first-child {
    padding-left: 32px;
    border-radius: 5px 0 0 5px;
}

.breadcrumb li a:last-child {
    border-radius: 0 5px 5px 0;
    /*this was to prevent glitches on hover*/
    padding-right: 20px;
}

.breadcrumb li a {
    color: #fff;
}

/*hover/active styles*/
.breadcrumb li a.active, .breadcrumb a:hover {
    color: #fff;
}

.breadcrumb li a.active:after, .breadcrumb a:hover:after {
    color: #fff;
}

/*adding the arrows for the breadcrumbs using rotated pseudo elements*/
.breadcrumb li:after {
    content: '';
    position: absolute;
    top: 0;
    right: -19px;
    width: 36px;
    height: 36px;
    transform: scale(0.707) rotate(45deg);
    z-index: 1;
    background: #666;
    background: linear-gradient(#29468c, #1e2962);
    box-shadow: 2px -2px 0 2px rgba(255, 255, 255, 0.4), 3px -3px 0 2px rgba(255, 255, 255, 0.85);
    border-radius: 0 5px 0 50px;
}

.breadcrumb li a:last-child:after {
    content: none;
}

.breadcrumb-items {
    list-style: none;
    padding-left: 10px
}

.breadcrumb ol li {
    display: inline !important;
}

.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    color: #6c757d;
    content: none !important;
}
