/*--- standard variables ---*/
/*--- product item ratio (thumb + content) ---*/
/* set ProductImageRatio in productOverview! */
/*--- media queries. When using responsive ---*/
/* Range breakpoints */
/*--- media queries. When using responsive: only mobile & desktop ---
@responsive:	false;
@largePhone:	~"only screen and (min-width: 480px)";
@tablet:		~"only screen and (min-width: 999999999px)";
@tabletLand:	~"only screen and (min-width: 768px)";
@desktop:		~"only screen and (min-width: 768px)";

@upToTablet:	~"only screen and (max-width: 767px)";
@upToDesktop:	~"only screen and (max-width: 767px)";*/
/*--- media queries. When not using responsive ---
@responsive:	false;
@largePhone:	~"only screen and (min-width: 1px)";
@tablet:		~"only screen and (min-width: 1px)";
@tabletLand:	~"only screen and (min-width: 1px)";
@desktop:		~"only screen and (min-width: 1px)";

@upToTablet:	~"only screen and (max-width: 1px)";
@upToDesktop:	~"only screen and (max-width: 1px)";*/
/*----- Default functions -----*/
/*----- Default Crossbrowser functions -----*/
/*----- CSS3 functions -----*/
/*----- CSS3 Animation functions -----*/
/*----- Buttons -----*/
/*----- Responsive functions -----*/
.stepBox {
  margin: 0;
  padding: 10px 0 40px;
  width: auto;
  counter-reset: checkoutStep;
  display: block;
  background-color: white;
}
@media only screen and (min-width: 768px) {
  .stepBox {
    padding: 20px 0 30px;
  }
}
@media only screen and (min-width: 1024px) {
  .stepBox {
    padding: 30px 0 40px;
  }
}
.stepBox ul,
.stepBox ol {
  position: relative;
  height: 40px;
  margin: 0;
  list-style: none;
  width: inherit;
  font-size: 0;
  text-align: center;
}
.stepBox ul:before,
.stepBox ol:before {
  content: '';
  position: absolute;
  background: #333333;
  display: block;
  width: 100%;
  height: 2px;
  top: 12px;
}
@media only screen and (min-width: 768px) {
  .stepBox ul:before,
  .stepBox ol:before {
    top: 20px;
  }
}
.stepBox ul li,
.stepBox ol li {
  display: block;
  float: left;
  width: 33.33%;
}
.stepBox ul li.step-1,
.stepBox ol li.step-1,
.stepBox ul li.step-2,
.stepBox ol li.step-2,
.stepBox ul li.step-6,
.stepBox ol li.step-6,
.stepBox ul li.step-7,
.stepBox ol li.step-7 {
  display: none;
}
.stepBox ul li:not(.done) a,
.stepBox ol li:not(.done) a {
  pointer-events: none;
}
.stepBox ul li a,
.stepBox ol li a {
  text-align: center;
  position: relative;
  font-size: 14px;
  display: inline-block;
  font-weight: 700;
  line-height: 28px;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
  color: #777777;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .stepBox ul li a,
  .stepBox ol li a {
    background: white;
    line-height: 36px;
    padding: 0 20px;
  }
}
.stepBox ul li a span,
.stepBox ol li a span {
  position: relative;
  text-transform: lowercase;
}
.stepBox ul li a span:before,
.stepBox ol li a span:before {
  counter-increment: checkoutStep;
  content: counter(checkoutStep);
  position: relative;
  text-transform: none;
  display: block;
  background: white;
  border: 2px solid #333333;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
}
@media only screen and (min-width: 768px) {
  .stepBox ul li a span:before,
  .stepBox ol li a span:before {
    left: 0;
    transform: none;
    display: inline-block;
    margin: 0 8px 0 0;
  }
}
body.LANG_en-GB .stepBox ul li a span:before,
body.LANG_en-GB .stepBox ol li a span:before,
body.LANG_de-DE .stepBox ul li a span:before,
body.LANG_de-DE .stepBox ol li a span:before,
body.LANG_fr-FR .stepBox ul li a span:before,
body.LANG_fr-FR .stepBox ol li a span:before {
  content: counter(checkoutStep);
}
.stepBox ul li:not(.done) a,
.stepBox ol li:not(.done) a {
  cursor: default;
}
.stepBox ul li.active a span:before,
.stepBox ol li.active a span:before,
.stepBox ul li.step-2.active + .step-3 a span:before,
.stepBox ol li.step-2.active + .step-3 a span:before {
  background: black;
  border-color: black;
  color: white;
}
