ul{
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  vertical-align: middle;
  margin: 0 auto;
  white-space: nowrap;
}

li {
  width: 205px;
  font-size: 24px;
  vertical-align: middle;
}

li > i {
  font-size: 30px;
}

li > span {
  font-size: 17px;
}

#breadcrumbs{
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
 
#breadcrumbs li{
  display: flex;
  margin: 0 .6em;
  justify-content: center;
  align-items: center;
}
 
#breadcrumbs li{
  background: #bbbbbb;
  padding: .5em .5em;
  text-decoration: none;
  color: #212529;
//  text-shadow: 0 1px 0 rgba(255,255,255,.5);
  position: relative;
}
 
#breadcrumbs li:not(:first-child)::before{
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -1.5em;
  border-width: 1.5em 0 1.5em 1em;
  border-style: solid;
  border-color: #bbbbbb #bbbbbb #bbbbbb transparent;
//  border-color: green blue red transparent;
  left: -1em;
}
 
#breadcrumbs li:not(:last-child)::after{
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -1.5em;
  border-top: 1.5em solid transparent;
  border-bottom: 1.5em solid transparent;
  border-left: 1em solid #bbbbbb;
  right: -1em;
}
 
#breadcrumbs li.step {
  color: #ffffff ;
  background: #2dbd9b ;

}

#breadcrumbs li.step:not(:first-child)::before{
  border-color: #2dbd9b #2dbd9b #2dbd9b transparent;

}

#breadcrumbs li.step:not(:last-child)::after{

  border-left: 1em solid #2dbd9b;
}

#breadcrumbs .current,
#breadcrumbs .current:hover{
  font-weight: bold;
  background: none;
}
 
#breadcrumbs .current::after,
#breadcrumbs .current::before{
  content: normal;
}
