.breadcrumb {
	list-style: none;
	overflow: hidden;
	font: 20px "Gravity";
	font-weight: 300;
	margin:0;
	padding:0;
	height:44px;
  }
  .breadcrumb li {
	float: left;
  }
  .breadcrumb li a {
	color: white;
	text-decoration: none;
	padding: 10px 0 10px 45px;
	background: darkslategray; /* fallback color */
	background: hsla(180, 14%, 23%,1);
	position: relative;
	display: block;
	float: left;
  }
  .breadcrumb 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(180, 14%, 23%,1);
	position: absolute;
	top: 50%;
	margin-top: -50px;
	left: 100%;
	z-index: 2;
  }
  .breadcrumb li a::before {
	content: " ";
	display: block;
	width: 0;
	height: 0;
	border-top: 50px solid transparent;
	border-bottom: 50px solid transparent;
	border-left: 30px solid f5f5f5;
	position: absolute;
	top: 50%;
	margin-top: -50px;
	margin-left: 1px;
	left: 100%;
	z-index: 1;
  }
  .breadcrumb li:first-child a {
	padding-left: 10px;
  }
  .breadcrumb li:nth-child(2) a       { background:        hsla(180, 15%, 37%,1); }
  .breadcrumb li:nth-child(2) a:after { border-left-color: hsla(180, 15%, 37%,1); }
  .breadcrumb li:nth-child(3) a       { background:        hsla(180, 15%, 45%,1); }
  .breadcrumb li:nth-child(3) a:after { border-left-color: hsla(180, 15%, 45%,1); }
  .breadcrumb li:nth-child(4) a       { background:        hsla(180, 15%, 55%,1); }
  .breadcrumb li:nth-child(4) a:after { border-left-color: hsla(180, 15%, 55%,1); }
  .breadcrumb li:nth-child(5) a       { background:        hsla(180, 15%, 65%,1); }
  .breadcrumb li:nth-child(5) a:after { border-left-color: hsla(180, 15%, 65%,1); }
  .breadcrumb li:last-child a {
	background: transparent !important;
	color: black;
	pointer-events: none;
	cursor: default;
  }
  .breadcrumb li:last-child a::after {
	border: 0;
  }
  .breadcrumb li a:hover {
	background: hsla(180, 15%, 50%,1);
  }
  .breadcrumb li a:hover:after {
	border-left-color: hsla(180, 15%, 50%,1) !important;
  }