/*
---

name: Progress

description: Progress Bar

provides: [CSS.Progress]

...
*/
.confirmation .progress ul {
  border-color: #AAA;
}

.progress {
  margin: 0 0 34px;
}
.progress ul {
  border-bottom: 4px solid #DDD;
}
.progress ul:after {
  clear: both;
  content: "";
  display: table;
}
.progress li {
  color: #C3C3C3;
  float: left;
  font-family: Arial,Helvetica,sans-serif;
  font-size: 1.2em;
  font-weight: bold;
  line-height: 1.3334;
  list-style: none;
  margin: 0 0 -4px;
  padding: 0;
  text-transform: uppercase;
  width: 16.94915%;
  border-right: 1px solid #FFF;
}
.progress li:first-child {
  position: relative;
  width: 16.10169%;
}
.progress li > span {
  display: block;
  text-align: center;
  position: relative;
}
.progress li > span:after {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 8px solid #DDD;
  content: '';
  height: 0;
  left: 50%;
  margin: 18px 0 0 -7px;
  position: absolute;
  width: 0;
}
.progress li.last {
  width: 16.10169%;
  border-right: 0;
}
.progress .current > span, .progress .complete > span {
  border-bottom: 4px solid #AAA;
  color: #2C2C2C;
  padding-bottom: 10px;
}
.progress li.current > span:after, .progress li.complete > span:after {
  border-bottom-color: #AAA;
}
.progress li span span {
  left: -1000em;
  position: absolute;
}
.progress li span span + span {
  position: static;
}
