/* stepListWrapper
-------------------------------*/
.stepListWrapper {
  margin: 0 0 50px 0;
  display: table;
  width: 100%;
}

.stepListWrapper li {
  position: relative;
  display: table-cell;
  height: 80px;
  vertical-align: middle;
  width: 33.33%;
  margin-bottom: 50px;
  color: #bfbfbf;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.2;
  text-align: left;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  counter-increment: numeber;
  background: #eeeeee;
  border-left: 1px solid #FFF;
  position: relative;
  text-align: center;
}

.stepListWrapper li:before {
  content: counter(numeber);
  font-size: 30px;
  font-size: 3rem;
  font-weight: bold;
  display: block;
  margin: 0 auto;
}

.stepLabel.pass {
  color: #FFF;
  background: #000;
  position: relative;
}

.stepLabel.pass:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -10px;
  display: block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #000 transparent transparent transparent;
}

.cart-right .stepLabel.pass:after {
  display: none;
}

.stepLabel.pass .border {
  display: none;
}

.stepLabel.border {
  border-bottom: 2px solid #A5A5A5;
}

ol.stepList li .stepNumber {
  width: 50px;
}

ol.stepList li p {
  position: absolute;
  top: 17px;
  right: -9px;
}

.stepListWrapper p.border {
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 15px;
  text-align: center;
}

.stepListWrapper p.border span {
  display: inline-block;
  height: 15px;
  width: 80%;
  margin: 0 auto;
  border-bottom: 2px solid #A5A5A5;
}

@media only screen and (max-width: 750px) {
  .stepListWrapper {
    margin: 0 0 30px 0;
  }

  .stepListWrapper li {
    height: inherit;
    margin-bottom: 0;
    font-size: 12px;
    font-size: 1.2rem;
    padding: 8px 0 13px;
    text-align: center;
  }

  .stepListWrapper li:before {
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 5px;
  }
}
