/* Wrapper des Progress Trackers */

#lista-estado {
  width: 745px;
  height: 38px;
  border-top: 1px solid #609cec;
  border-bottom: 1px solid #609cec;
  overflow: hidden;
  font-size: 11px;
  /*font-family: '"Helvetica Neue",Helvetica,Arial,sans-serif';*/
  margin: 0px 0px 20px 0px;
}


/* UL der Tracker Positionen */

.basketProgressTracker {
  background-color: transparent;
  padding: 0;
  margin: 0;
  height: 36px;
  margin-top: 0px;
  font-weight: bold;
}


/* Die einzelnen Punkte */

.basketProgressTrackerPos {
  display: inline-block;
  /* inline-block hat einen default margin-left von 4px 
  dieser wird hierdurch entfernt somit reihen sich die 
  Elemente direkt aneinander */
  margin-left: -4px;
  line-height: 36px;
  box-sizing: border-box;
  position: relative;
  padding-left: 10px;
  padding-right: 15px;
}

.basketProgressTrackerPos:first-child {
  padding-left: 5px;
}


/* der Counter der einzelnen Punkte */

.basketProgressTrackerPos span[data-pos]:before {
  content: attr(data-pos);
  margin-left: 9px;
  margin-right: 5px;
  background-color: #ccc;
  display: block;
  float: left;
  margin-top: 8px;
  text-align: center;
  line-height: 20px;
  vertical-align: middle;
  height: 20px;
  width: 20px;
  border-radius: 10px;
  font-weight: bold;
  color: #FFF;
}


/* Alles in den spans in großbuchstaben  */

.basketProgressTrackerPos > span {
  /*text-transform: uppercase;*/
}


/* Setzt die Hintergrundfarbe des activen Zahlenkreises auf Orange */

.active.basketProgressTrackerPos > span[data-pos]:before {
  background-color: #96bef2;
}


/* Setzt die Schriftfarbe der aktiven Position auf Orange */

.active.basketProgressTrackerPos > span {
  color: #fff;
}


/* Entfernt die Border des ersten und des letzten Punktes */

.basketProgressTrackerPos:last-child:after,
.basketProgressTrackerPos:last-child:before {
  border: 0;
}


/* Erzeugt die Spitze auf der rechten Seite */

.basketProgressTrackerPos:after {
  content: '';
  position: absolute;
  top: 8px;
  left: 100%;
  border: 10px solid #ddd;
  border-left-width: 6px;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-right-color: transparent;
  /*z-index: -2;*/
  z-index: 5;
}


/* Hierdurch wird die spitze zu einer art Icon */

.basketProgressTrackerPos:before {
  content: '';
  position: absolute;
  top: 8px;
  border: 10px solid #fff;
  border-left-width: 6px;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-right-color: transparent;
  left: 100%;
  margin-left: -2px;
  z-index: -1;
}


/* Entfernt die -4px margin beim ersten Listen-Element siehe .basketProgressTrackerPos */

.basketProgressTrackerPos:first-child {
  margin-left: 0;
}


/* Erstellt den Signpost effekt wenn das Element aktiv ist */

.active.basketProgressTrackerPos:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: 100%;
  top: 0;
  border: 18px solid #609cec;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-right-color: transparent;
  border-left-width: 10px;
}


/* Erstellt den Signpost effekt wenn das Element aktiv ist */

.active.basketProgressTrackerPos:before {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  border: 18px solid #609cec;
  border-left-color: #fff;
  border-left-width: 10px;
  border-top-color: #609cec;
  border-top-width: 18px;
  border-bottom-color: #609cec;
  border-right-color: transparent;
  z-index: 1;
}

.active.basketProgressTrackerPos {
  background-color: #609cec;
}

.done.basketProgressTrackerPos > span[data-pos]:before {
  content: '\f00c';
  /*font-family: '"Helvetica Neue",Helvetica,Arial,sans-serif' !important;*/
  background-color: #99bb5f;
  font-weight: 100;
  line-height: 22px;
}