/*
 * Copyright (c) 2017 - Reliance Smart Systems Ltd.
 * Author: Pieter-Jan De Boeck - All rights reserved.

 Reference / Attribution:
 Author: BY CHRIS COYIER ON NOVEMBER 1, 2010
 https://css-tricks.com/triangle-breadcrumbs/
 */


.breadcrumb-arrow {
    list-style: none;
    overflow: hidden;
    font: 18px Sans-Serif;
}
.breadcrumb-arrow li {
    float: left;
}
.breadcrumb-arrow li a {
    color: white;
    text-decoration: none;
    padding: 10px 0 10px 65px;
    background: brown; /* fallback color */
    background: hsla(34,85%,35%,1);
    position: relative;
    display: block;
    float: left;
}



/* BREADCRUMB ITEM SEPARATORS */

.breadcrumb-arrow li a::after {
    content: " ";
    display: block;
    width: 0;
    height: 0;
    border-top: 50px solid transparent; /* Go big on the size, and let overflow hide */
    border-bottom: 50px solid transparent;
    border-left: 30px solid hsla(34,85%,35%,1);
    position: absolute;
    top: 50%;
    margin-top: -50px;
    left: 100%;
    z-index: 2;
}

.breadcrumb-arrow li a::before {
    content: " ";
    display: block;
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    border-left: 30px solid white;
    position: absolute;
    top: 50%;
    margin-top: -50px;
    margin-left: 1px;
    left: 100%;
    z-index: 1;
}



/* COLORATIONS */
/*star custom*/
ul#test.breadcrumb-arrow li.inactive a {
    background: transparent !important;
    color: black;
    pointer-events: none;
    cursor: default;
}
/*end custom*/



.breadcrumb-arrow li:first-child a {
    padding-left: 10px;
}
.breadcrumb-arrow li:nth-child(2) a       { background:        hsla(34,85%,45%,1); }
.breadcrumb-arrow li:nth-child(2) a:after { border-left-color: hsla(34,85%,45%,1); }
.breadcrumb-arrow li:nth-child(3) a       { background:        hsla(34,85%,55%,1); }
.breadcrumb-arrow li:nth-child(3) a:after { border-left-color: hsla(34,85%,55%,1); }
.breadcrumb-arrow li:nth-child(4) a       { background:        hsla(34,85%,65%,1); }
.breadcrumb-arrow li:nth-child(4) a:after { border-left-color: hsla(34,85%,65%,1); }
.breadcrumb-arrow li:nth-child(5) a       { background:        hsla(34,85%,75%,1); }
.breadcrumb-arrow li:nth-child(5) a:after { border-left-color: hsla(34,85%,75%,1); }
.breadcrumb-arrow li:last-child a {
    background: transparent !important;
    color: black;
    pointer-events: none;
    cursor: default;
}
.breadcrumb-arrow li:last-child a::after {
    border: 0;
}




/*HOVER STATES*/

.breadcrumb-arrow li a:hover {
    background: hsla(34, 85%, 25%, 1);
}
.breadcrumb-arrow li a:hover:after {
    border-left-color: hsla(34, 85%, 25%, 1) !important;
}