/*--- standard variables ---*/
/* Orange */
/* Black */
/* Light grey */
/* Medium grey */
/*--- product item ratio (thumb + content) ---*/
/* 1.77*/
/* set ProductImageRatio in productOverview! */
/*--- media queries. When using responsive ---*/
/*--- media queries. When using responsive: only mobile & desktop ---
@useResponsive:			false;
@breakPointLargePhone:	~"only screen and (min-width: 480px)";
@breakPointTablet:		~"only screen and (min-width: 999999999px)";
@breakPointTabletLand:	~"only screen and (min-width: 768px)";
@breakPointDesktop:		~"only screen and (min-width: 768px)";

@breakPointUpToTablet:	~"only screen and (max-width: 767px)";
@breakPointUpToDesktop:	~"only screen and (max-width: 767px)";
*/
/*--- media queries. When not using responsive ---
@useResponsive:			false;
@breakPointLargePhone:	~"only screen and (min-width: 1px)";
@breakPointTablet:		~"only screen and (min-width: 1px)";
@breakPointTabletLand:	~"only screen and (min-width: 1px)";
@breakPointDesktop:		~"only screen and (min-width: 1px)";

@breakPointUpToTablet:	~"only screen and (max-width: 1px)";
@breakPointUpToDesktop:	~"only screen and (max-width: 1px)";
*/
/*--- custom class functions ---*/
/*----- LESS functions -----*/
/*wordt vervangen door .border-radius
.rounded(@radius: 3px) {
	-webkit-border-radius:	@radius;
	-moz-border-radius:		@radius;
	border-radius:			@radius;
}*/
/*----- CSS3 Animation functions -----*/
/*wordt vervangen door .box-shadow
.inner-shadow(@horizontal:0, @vertical:1px, @blur:2px, @alpha: 0.4) {
	-webkit-box-shadow:	inset @horizontal @vertical @blur rgba(0, 0, 0, @alpha);
	-moz-box-shadow:	inset @horizontal @vertical @blur rgba(0, 0, 0, @alpha);
	box-shadow:			inset @horizontal @vertical @blur rgba(0, 0, 0, @alpha);
}*/
/*----- Buttons -----*/
/*----- Responsive functions -----*/
.stepBox {
  overflow: hidden;
  margin-bottom: 30px;
  width: 100%;
  padding-bottom: 10px;
}
.stepBox ul,
.stepBox ol {
  margin: 0;
  list-style: none;
  height: 57px;
  width: inherit;
  font-size: 0;
  text-align: right;
  background: #fafafa;
  border-bottom: 1px solid #dedede;
  background: white;
  background: -webkit-gradient(linear, left top, left bottom, color-start(0, white), color-stop(1, #f8fcff));
  background: -ms-linear-gradient(top, white, #f8fcff);
  background: -moz-linear-gradient(center top, white 0%, #f8fcff 100%);
  background: -o-linear-gradient(white, #f8fcff);
}
.stepBox ul li,
.stepBox ol li {
  display: none;
  width: 33.333333333%;
}
.stepBox ul li.active,
.stepBox ol li.active {
  display: inline-block;
}
.stepBox ul li[data-relative-step="-1"],
.stepBox ol li[data-relative-step="-1"],
.stepBox ul li[data-relative-step="1"],
.stepBox ol li[data-relative-step="1"] {
  display: inline-block;
}
.stepBox ul li.step-8,
.stepBox ol li.step-8,
.stepBox ul li.step-7,
.stepBox ol li.step-7,
.stepBox ul li.step-6,
.stepBox ol li.step-6 {
  display: none !important;
}
.stepBox ul li a,
.stepBox ol li a {
  display: block;
  padding: 15px 0 10px;
  line-height: 30px;
  text-align: center;
  position: relative;
  font-size: 12px;
  color: #666666;
  text-transform: uppercase;
}
.stepBox ul li a:after,
.stepBox ol li a:after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  margin-left: -6px;
  width: 10px;
  height: 10px;
  border: 1px solid #dedede;
  background: white;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.stepBox ul li.active a,
.stepBox ol li.active a {
  background: #f8981d;
  color: white;
}
.stepBox ul li.active a span,
.stepBox ol li.active a span {
  font-size: 16px;
  font-weight: bold;
}
.stepBox ul li.active a:after,
.stepBox ol li.active a:after {
  width: 16px;
  height: 16px;
  bottom: -9px;
  margin-left: -9px;
  -webkit-box-shadow: 0 0 3px #cccccc;
  -moz-box-shadow: 0 0 3px #cccccc;
  box-shadow: 0 0 3px #cccccc;
}
@media only screen and (min-width: 768px) {
  .stepBox ul li,
  .stepBox ol li {
    display: none;
    width: 20%;
    display: block;
    float: left;
  }
  .stepBox ul li.active,
  .stepBox ol li.active {
    display: inline-block;
  }
  .stepBox ul li[data-relative-step="-2"],
  .stepBox ol li[data-relative-step="-2"],
  .stepBox ul li[data-relative-step="2"],
  .stepBox ol li[data-relative-step="2"] {
    display: inline-block;
  }
  .stepBox ul li:first-child:nth-last-child(5),
  .stepBox ol li:first-child:nth-last-child(5),
  .stepBox ul li:first-child:nth-last-child(5) ~ li,
  .stepBox ol li:first-child:nth-last-child(5) ~ li {
    width: 20%;
  }
}
@media only screen and (min-width: 1024px) {
  .stepBox {
    overflow: hidden;
    padding: 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -moz-background-clip: padding-box;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
  }
  .stepBox ul,
  .stepBox ol {
    height: auto;
    border: 0 none;
    background: whitesmoke;
    background: -webkit-gradient(linear, left top, left bottom, color-start(0, whitesmoke), color-stop(1, #dfdfdf));
    background: -ms-linear-gradient(top, whitesmoke, #dfdfdf);
    background: -moz-linear-gradient(center top, whitesmoke 0%, #dfdfdf 100%);
    background: -o-linear-gradient(whitesmoke, #dfdfdf);
  }
  .stepBox ul li,
  .stepBox ol li {
    float: left;
    display: block;
    border: 0 none;
  }
  .stepBox ul li:first-child:nth-last-child(5),
  .stepBox ol li:first-child:nth-last-child(5),
  .stepBox ul li:first-child:nth-last-child(5) ~ li,
  .stepBox ol li:first-child:nth-last-child(5) ~ li {
    width: 20%;
  }
  .stepBox ul li a,
  .stepBox ol li a {
    padding: 0;
    line-height: 36px;
  }
  .stepBox ul li a:after,
  .stepBox ol li a:after {
    display: none;
  }
  .stepBox ul li.done a,
  .stepBox ol li.done a,
  .stepBox ul li.active a,
  .stepBox ol li.active a {
    background: #f8981d;
    color: white;
  }
  .stepBox ul li.done a span,
  .stepBox ol li.done a span,
  .stepBox ul li.active a span,
  .stepBox ol li.active a span {
    font-size: 12px;
  }
  .stepBox ul li.active :before,
  .stepBox ol li.active :before,
  .stepBox ul li.active :after,
  .stepBox ol li.active :after {
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    right: -14px;
    border: 9px solid transparent;
    border-width: 9px 7px;
    z-index: 2;
  }
  .stepBox ul li.active :before,
  .stepBox ol li.active :before {
    top: 0;
    border-left-color: white;
    border-bottom-color: white;
  }
  .stepBox ul li.active :after,
  .stepBox ol li.active :after {
    bottom: 0;
    border-top-color: white;
    border-left-color: white;
  }
  .stepBox ul li.active a:before,
  .stepBox ol li.active a:before,
  .stepBox ul li.active a:after,
  .stepBox ol li.active a:after {
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    right: 0;
    border: 9px solid transparent;
    border-width: 9px 7px;
  }
  .stepBox ul li.active a:before,
  .stepBox ol li.active a:before {
    top: 0;
    border-top-color: white;
    border-right-color: white;
  }
  .stepBox ul li.active a:after,
  .stepBox ol li.active a:after {
    bottom: 0;
    border-right-color: white;
    border-bottom-color: white;
    display: block;
    margin: 0;
    left: auto;
    top: auto;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -moz-background-clip: padding-box;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-box-shadow: 0 0 0 white;
    -moz-box-shadow: 0 0 0 white;
    box-shadow: 0 0 0 white;
  }
}
