#Breadcrumb1 {
  display: inline-block;
  position: relative;
  font-family: Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1em;
}
#Breadcrumb1 ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}
#Breadcrumb1 ul li {
  position: relative;
  width: 120px;
}
#Breadcrumb1 ul li:before,
#Breadcrumb1 ul li:after {
  display: inline-block;
  background-color: #007c46;
}
#Breadcrumb1 ul li:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 120px;
  height: 5px;
}
#Breadcrumb1 ul li:after {
  counter-increment: step;
  content: counters(step, '');
  display: inline-block;
  position: relative;
  right: 50%;
  width: 25px;
  height: 25px;
  line-height: 25px;
  font-size: 15px;
  font-weight: bold;
  margin-top: 10px;
  color: white;
  text-align: center;
  border-radius: 100%;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
  z-index: 1;
}
#Breadcrumb1 ul li:first-child:before {
  display: none;
}
#Breadcrumb1 ul li.active:before,
#Breadcrumb1 ul li.active:after {
  background-color: #afd236;
}
#Breadcrumb1 ul li.active a {
  color: #191919;
}
#Breadcrumb1 ul li a {
  position: relative;
  box-sizing: border-box;
  display: block;
  color: #666666;
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
  transition: 0.2s;
}
#Breadcrumb1 ul li a:hover {
  color: #191919;
}
#Breadcrumb1 ul li a i {
  -webkit-transform: scale(1.4);
  -ms-transform: scale(1.4);
  transform: scale(1.4);
}

.breadcrumb2 {
	/*centering*/
	display: inline-block;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.35);
	overflow: hidden;
	border-radius: 5px;
	/*Lets add the numbers for each link using CSS counters. flag is the name of the counter. to be defined using counter-reset in the parent element of the links*/
	counter-reset: flag; 
	padding:0px;
	margin:0px;
}

.breadcrumb2 li {
	text-decoration: none;
	outline: none;
	display: block;
	float: left;
	font-size: 12px;
	line-height: 36px;
	color: white;
	/*need more margin on the left of links to accomodate the numbers*/
	padding: 0 10px 0 60px;
	background: #666;
	background: linear-gradient(#666, #333);
	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*/
.breadcrumb2 li:first-child {
	padding-left: 46px;
	border-radius: 5px 0 0 5px; /*to match with the parent's radius*/
}
.breadcrumb2 li:first-child:before {
	left: 14px;
}
.breadcrumb2 li:last-child {
	border-radius: 0 5px 5px 0; /*this was to prevent glitches on hover*/
	padding-right: 20px;
}

/*hover/active styles*/
.breadcrumb2 li.active, .breadcrumb li:hover{
	background: #333;
	background: linear-gradient(#333, #000);
}
.breadcrumb2 li.active:after, .breadcrumb li:hover:after {
	background: #333;
	background: linear-gradient(135deg, #333, #000);
}

/*adding the arrows for the breadcrumbs using rotated pseudo elements*/
.breadcrumb2 li:after {
	content: '';
	position: absolute;
	top: 0; 
	right: -18px; /*half of square's length*/
	/*same dimension as the line-height of .breadcrumb a */
	width: 36px; 
	height: 36px;
	/*as you see the rotated square takes a larger height. which makes it tough to position it properly. So we are going to scale it down so that the diagonals become equal to the line-height of the link. We scale it to 70.7% because if square's: 
	length = 1; diagonal = (1^2 + 1^2)^0.5 = 1.414 (pythagoras theorem)
	if diagonal required = 1; length = 1/1.414 = 0.707*/
	transform: scale(0.707) rotate(45deg);
	/*we need to prevent the arrows from getting buried under the next link*/
	z-index: 1;
	/*background same as links but the gradient will be rotated to compensate with the transform applied*/
	background: #666;
	background: linear-gradient(135deg, #666, #333);
	/*stylish arrow design using box shadow*/
	box-shadow: 
		2px -2px 0 2px rgba(0, 0, 0, 0.4), 
		3px -3px 0 2px rgba(255, 255, 255, 0.1);
	/*
		5px - for rounded arrows and 
		50px - to prevent hover glitches on the border created using shadows*/
	border-radius: 0 5px 0 50px;
}
/*we dont need an arrow after the last link*/
.breadcrumb2 li:last-child:after {
	content: none;
}
/*we will use the :before element to show numbers*/
.breadcrumb2 li:before {
	content: counter(flag);
	counter-increment: flag;
	/*some styles now*/
	border-radius: 100%;
	width: 20px;
	height: 20px;
	line-height: 20px;
	margin: 8px 0;
	position: absolute;
	top: 0;
	left: 30px;
	background: #444;
	background: linear-gradient(#444, #222);
	font-weight: bold;
}


.flat li, .flat li:after {
	background: white;
	color: black;
	transition: all 0.5s;
	box-shadow: 0 0 0 0px;
}
.flat li:before {
	background: white;
	box-shadow: 0 0 0 1px #ccc;
}
.flat li:hover, .flat li.active, 
.flat li:hover:after, .flat li.active:after{
	background: #9EEB62;
}

$blue-gray 			    : #34495e;
$blue-gray-darken 	: #2c3e50;
$blue 				      : #3498db;
$blue-darken 		    : #2980b9;
$green 				      : #1abc9c;
$green-darken 		  : #16a085;

.breadcrumb3{
  list-style:none;
  display: inline-block;
  
  .icon{
    font-size: 14px;
  }
  
  li{
    float:left;
    a{
      color:#FFF;
      display:block;
      background: $blue;
      text-decoration: none;
      position:relative;
      height: 40px;
      line-height:40px;
      padding: 0 10px 0 5px;
      text-align: center;
      margin-right: 23px;
    }
    &:nth-child(even){
      a{
        background-color: $blue-darken;
        
        &:before{
          border-color:$blue-darken;
          border-left-color:transparent;
         }
        &:after{
          border-left-color:$blue-darken;
        }
      }
    }
    &:first-child{
      a{
        padding-left:15px;
        &:before{
          border:none;
         }
      }
    }
    &:last-child{
      a{
        padding-right:15px;
        &:after{
          border:none;
         }
      }
    }
    
    a{   
      &:before,
      &:after{
        content: "";
        position:absolute;
        top: 0;
        border:0 solid $blue;
        border-width:20px 10px;
        width: 0;
        height: 0;
      }
      &:before{
        left:-20px;
        border-left-color:transparent;
      }
      &:after{
        left:100%;
        border-color:transparent;
        border-left-color:$blue;
      }
      &:hover{
        background-color: $green;
        
        &:before{
          border-color:$green;
          border-left-color:transparent;
         }
        &:after{
          border-left-color:$green;
        }
      }
      &:active{
        background-color: $green-darken;
        
        &:before{
          border-color:$green-darken;
          border-left-color:transparent;
         }
        &:after{
          border-left-color:$green-darken;
        }
      }
    }
  }
}

.breadcrumb4 { 
  list-style: none; 
  overflow: hidden; 
  font: 18px Helvetica, Arial, Sans-Serif;
  margin: 40px;
  padding: 0;
}
.breadcrumb4 li { 
  float: left; 
}
.breadcrumb4 li a {
  color: white;
  text-decoration: none; 
  padding: 10px 0 10px 55px;
  background: brown; /* fallback color */
  background: hsla(34,85%,35%,1); 
  position: relative; 
  display: block;
  float: left;
}
.breadcrumb4 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; 
}   
.breadcrumb4 li a:before { 
  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 white;
  position: absolute;
  top: 50%;
  margin-top: -50px; 
  margin-left: 1px;
  left: 100%;
  z-index: 1; 
}   
.breadcrumb4 li:first-child a {
  padding-left: 10px;
}
.breadcrumb4 li:nth-child(2) a       { background:        hsla(34,85%,45%,1); }
.breadcrumb4 li:nth-child(2) a:after { border-left-color: hsla(34,85%,45%,1); }
.breadcrumb4 li:nth-child(3) a       { background:        hsla(34,85%,55%,1); }
.breadcrumb4 li:nth-child(3) a:after { border-left-color: hsla(34,85%,55%,1); }
.breadcrumb4 li:nth-child(4) a       { background:        hsla(34,85%,65%,1); }
.breadcrumb4 li:nth-child(4) a:after { border-left-color: hsla(34,85%,65%,1); }
.breadcrumb4 li:nth-child(5) a       { background:        hsla(34,85%,75%,1); }
.breadcrumb4 li:nth-child(5) a:after { border-left-color: hsla(34,85%,75%,1); }
.breadcrumb4 li:last-child a {
  background: transparent !important;
  color: black;
  pointer-events: none;
  cursor: default;
}
.breadcrumb4 li:last-child a:after { border: 0; }
.breadcrumb4 li a:hover { background: hsla(34,85%,25%,1); }
.breadcrumb4 li a:hover:after { border-left-color: hsla(34,85%,25%,1) !important; }


.breadcrumb5 {
  margin: 40px;
  padding: 0;
  overflow: hidden;
}
.breadcrumb5 a {
  color: white;
  text-decoration: none;
}
.breadcrumb5 em {
  display: block;
  font-size: 1.1em;
  font-weight: bold;
}
.breadcrumb5 li {
  float: left;
  margin-left: 0;
  width: 150px; /* 100 / number of steps */
  height: 70px; /* total height */
  list-style-type: none;
  padding: 5px 5px 5px 30px; /* padding around text, last should include arrow width */
  border-right: 3px solid white; /* width: gap between arrows, color: background of document */
  position: relative;
}
/* remove extra padding on the first object since it doesn't have an arrow to the left */
.breadcrumb5 li:first-child {
  padding-left: 5px;
}
/* white arrow to the left to "erase" background (starting from the 2nd object) */
.breadcrumb5 li:nth-child(n+2)::before {
  position: absolute;
  top:0;
  left:0;
  display: block;
  border-left: 25px solid white; /* width: arrow width, color: background of document */
  border-top: 40px solid transparent; /* width: half height */
  border-bottom: 40px solid transparent; /* width: half height */
  width: 0;
  height: 0;
  content: " ";
}
/* colored arrow to the right */
.breadcrumb5 li::after {
  z-index: 1; /* need to bring this above the next item */
  position: absolute;
  top: 0;
  right: -25px; /* arrow width (negated) */
  display: block;
  border-left: 25px solid #7c8437; /* width: arrow width */
  border-top: 40px solid transparent; /* width: half height */
  border-bottom: 40px solid transparent; /* width: half height */
  width:0;
  height:0;
  content: " ";
}

/* Setup colors (both the background and the arrow) */

/* Completed */
.breadcrumb5 li { background-color: #7C8437; }
.breadcrumb5 li::after { border-left-color: #7c8437; }

/* Current */
.breadcrumb5 li.current { background-color: #C36615; }
.breadcrumb5 li.current::after { border-left-color: #C36615; }

/* Following */
.breadcrumb5 li.current ~ li { background-color: #EBEBEB; }
.breadcrumb5 li.current ~ li::after { border-left-color: #EBEBEB; }

/* Hover for completed and current */
.breadcrumb5 li:hover {background-color: #696}
.breadcrumb5 li:hover::after {border-left-color: #696}



.breadcrumb6 { white-space: nowrap; }
.breadcrumb6 li {
    display: inline-block;
    line-height: 26px;
    margin: 0 9px 0 -10px;
    padding: 0 20px;
    position: relative;
}
.breadcrumb6 li::before,
.breadcrumb6 li::after {
    border-right: 1px solid #666666;
    content: '';
    display: block;
    height: 50%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: -1;
    transform: skewX(45deg);   
}
.breadcrumb6 li::after {
    bottom: 0;
    top: auto;
    transform: skewX(-45deg);
}

.breadcrumb6 li:last-of-type::before, 
.breadcrumb6 li:last-of-type::after { 
    display: none; 
}

.breadcrumb6 li a { 
   font: bold 24px Sans-Serif;  
   letter-spacing: -1px; 
   text-decoration: none;
}

.breadcrumb6 li:nth-of-type(1) a { color: hsl(0, 0%, 70%); } 
.breadcrumb6 li:nth-of-type(2) a { color: hsl(0, 0%, 65%); } 
.breadcrumb6 li:nth-of-type(3) a { color: hsl(0, 0%, 50%); } 
.breadcrumb6 li:nth-of-type(4) a { color: hsl(0, 0%, 45%); }


.breadcrumb7{
    display: inline-block;
    padding: 0;
    margin: 0;
    background: transparent;
    overflow: hidden;
}
.breadcrumb7 li{
    float: left;
    padding: 8px 15px 8px 50px;
    background: #fdec82;
    font-size: 14px;
    font-weight: bold;
    color: #777;
    position: relative;
}
.breadcrumb7 li:first-child{ background: #fdf9cc; }
.breadcrumb7 li:last-child{
    background: #fddc05;
    margin-right: 18px;
}
.breadcrumb7 li:before{ display: none; }
.breadcrumb7 li:after{
    content: "";
    display: block;
    border-left: 18px solid #fdec82;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    position: absolute;
    top: 0;
    right: -18px;
    z-index: 1;
}
.breadcrumb7 li:first-child:after{ border-left-color: #fdf9cc; }
.breadcrumb7 li:last-child:after{ border-left-color: #fddc05; }
.breadcrumb7 li a{
    font-size: 14px;
    font-weight: bold;
    color: #777;
}
@media only screen and (max-width: 479px){
    .breadcrumb7 li{ padding: 8px 15px 8px 30px; }
}
