/*---{ responsive zoomer }---------------------------------------------------------*/

/*--- 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 -----*/
#dividezoom.fixed {
  position: fixed;
  background: #454545;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
}
#dividezoom.fixed #dividezoom-image-container {
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  height: 500px;
  width: 300px;
  border: 5px solid white;
  background: white;
}
#dividezoom.fixed #dividezoom-image-container .overflow {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#dividezoom.fixed #dividezoom-image-container .close {
  position: absolute;
  top: -40px;
  right: -20px;
  text-decoration: none;
  height: 40px;
  display: block;
  overflow: hidden;
  width: 40px;
  color: white;
  line-height: 40px;
  text-align: center;
}
#dividezoom.fixed #dividezoom-image-container img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}
#dividezoom.fixed #dividezoom-image-container img.portrait {
  width: auto;
  height: 100%;
}
/*end #dividezoom.fixed*/

#dividezoom.responsive {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 900;
}
@media only screen and (max-width: 767px) {
  #dividezoom.responsive .thumbnails.imgThumbList {
    display: none;
  }
}
#dividezoom.responsive #dividezoom-image-container {
  position: relative;
  height: 100%;
  text-align: center;
}
#dividezoom.responsive #dividezoom-image-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
  /* Adjusts for spacing */

}
#dividezoom.responsive #dividezoom-image-container:after {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 100;
}
#dividezoom.responsive #dividezoom-image-container .overflow {
  width: 100%;
  height: 90%;
  z-index: 110;
  width: 90%;
  position: relative;
  margin: 0 auto;
  max-width: 900px;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  background: white;
}
#dividezoom.responsive #dividezoom-image-container .close {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 46px;
  width: 46px;
  line-height: 42px;
  color: white;
  background: #f8981d;
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 32px;
  font-weight: normal;
  text-align: center;
  text-decoration: none;
  z-index: 120;
}
#dividezoom.responsive #dividezoom-image-container img {
  width: 100%;
  height: auto;
  z-index: 110;
  position: relative;
  display: block;
}
#dividezoom.responsive #dividezoom-image-container img.portrait {
  height: 100%;
  width: auto;
}
#dividezoom.responsive #dividezoom-image-container .overflow #divideZoomButton {
  position: absolute;
  right: 0px;
  z-index: 130;
  bottom: 10px;
}
#dividezoom.responsive #dividezoom-image-container .overflow #divideZoomButton a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: block;
  color: white;
  text-decoration: none;
  font-size: 12px;
  text-indent: -9999em;
  position: relative;
}
#dividezoom.responsive #dividezoom-image-container .overflow #divideZoomButton a:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -16px 0 0 -16px;
  width: 32px;
  height: 32px;
  display: block;
}
#dividezoom.responsive #dividezoom-image-container .overflow #divideZoomButton a.up:after {
  background: url(../../../images/zoomIcons.png) no-repeat -32px 0;
}
#dividezoom.responsive #dividezoom-image-container .overflow #divideZoomButton a.down {
  margin: 0 0 10px 0;
}
#dividezoom.responsive #dividezoom-image-container .overflow #divideZoomButton a.down:after {
  background: url(../../../images/zoomIcons.png) no-repeat 0 0;
}
#dividezoom.responsive #dividezoom-image-container .overflow #divideZoomNav a {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  height: 100%;
  z-index: 119;
}
#dividezoom.responsive #dividezoom-image-container .overflow #divideZoomNav a:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -31px 0 0 -9px;
  width: 18px;
  height: 62px;
  background: url(../../../images/zoomNav.png) no-repeat 0 0;
  text-indent: -99999em;
  margin-top: -44px;
}
#dividezoom.responsive #dividezoom-image-container .overflow #divideZoomNav a.prev {
  left: 0;
}
#dividezoom.responsive #dividezoom-image-container .overflow #divideZoomNav a.prev:after {
  background-position: 0 0;
}
#dividezoom.responsive #dividezoom-image-container .overflow #divideZoomNav a.next {
  right: 0;
}
#dividezoom.responsive #dividezoom-image-container .overflow #divideZoomNav a.next:after {
  background-position: -18px 0;
}
