/* #####################################################################################################
   Utilities
   ##################################################################################################### */

/*--- standard variables ---*/
/*--- product item ratio (thumb + content) ---*/
/* 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 -----*/
/*---{ payment icons }---------------------------------------------------------*/

.paymentIcon {
  display: block;
  height: 20px;
  background: transparent url("../../images/paymentIcons.png") no-repeat 0 0;
  float: left;
  margin: 0 5px 5px;
}
.paymentIcon.iDeal {
  width: 24px;
  background-position: 0 0;
}
.paymentIcon.MasterCard {
  width: 34px;
  background-position: 0 -40px;
}
.paymentIcon.Visa {
  width: 35px;
  background-position: 0 -80px;
}
.paymentIcon.PayPal {
  width: 75px;
  background-position: 0 -120px;
}
.paymentIcon.AmericanExpress {
  width: 25px;
  height: 25px;
  margin-bottom: 0;
  background-position: 0 -160px;
}
.paymentIcon.MisterCash {
  width: 29px;
  background-position: 0 -200px;
}
.paymentIcon.Belfius {
  width: 32px;
  background-position: 0 -240px;
}
.paymentIcon.KBC {
  width: 25px;
  background-position: 0 -280px;
}
.paymentIcon.CBC {
  width: 26px;
  background-position: 0 -320px;
}
.paymentIcon.INGhomepay {
  width: 71px;
  background-position: 0 -360px;
}
.paymentIcon.giroPay {
  width: 41px;
  background-position: 0 -400px;
}
.paymentIcon.AfterPay {
  width: 32px;
  background: url("../../images/paymentIcons/riverty.svg") no-repeat;
  background-size: auto 20px;
}
.paymentIcon.Maestro {
  width: 34px;
  background-position: 0 -480px;
}
.paymentIcon.vPay {
  width: 18px;
  background-position: 0 -520px;
}
.paymentIcon.MasterPass {
  width: 71px;
  background-position: 0 -760px;
}
.paymentIcon.VVV {
  width: 50px;
  background: url("../../images/paymentIcons/vvv-giftcard.png");
  background-size: auto 20px;
}
/*---{ Cookie notice }---------------------------------------------------------*/

#cookieNotice {
  background: url("../../images/transpBG80.png") repeat 0 0;
  width: 100%;
  z-index: 1005;
  position: fixed;
  bottom: 0;
}
#cookieNotice p {
  display: block;
  padding: 4% 4% 60px;
  margin: 0;
  color: white;
}
#cookieNotice .closeBtn {
  color: white;
  position: absolute;
  right: 4%;
  bottom: 0;
  height: 35px;
  line-height: 35px;
  display: block;
  background: url("../../images/btn_close.gif") no-repeat right 29px;
  padding: 15px 30px 20px 40px;
}
/*---{ dropdown minishoppingcart }---------------------------------------------------------*/

#basketPanel {
  display: none;
  position: fixed;
  left: 2%;
  width: 88%;
  top: 60px;
  z-index: 9999999;
  padding: 3% 4%;
  zoom: 1;
  border: 1px solid #e5e5e5;
  border-top: 18px solid #deeae8;
  background: white;
}
#basketPanel #basketPanelTitle {
  text-transform: uppercase;
  font-size: 18px;
  margin: 3% 5%;
}
#basketPanel:before {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: -9000%;
  background: transparent;
  content: "";
  z-index: -1;
}
#basketPanel .arrow {
  position: absolute;
  right: 28px;
  top: -28px;
}
#basketPanel #basketTitle {
  margin: 0 0 5px;
  height: 14px;
  display: block;
  font-size: 14px;
  color: #333333;
  width: 106px;
}
#basketPanel #basketSubTitle {
  height: 13px;
  margin: 0 0 10px;
}
#basketPanel #shoppingbagContents {
  overflow: hidden;
}
#basketPanel #shoppingbagEmpty {
  text-align: center;
  padding: 3% 0;
}
#basketPanel .itemList {
  max-height: 170px;
  overflow-y: auto;
  border-bottom: 1px solid #e5e5e5;
}
#basketPanel .item {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 10px 0;
}
#basketPanel .item .thumb {
  position: relative;
  float: left;
  width: 40%;
  height: 68px;
  padding: 0;
  margin: 0;
  background: white;
}
#basketPanel .item .thumb a {
  display: block;
  width: 100%;
  text-align: left;
}
#basketPanel .item .thumb td {
  vertical-align: middle;
  text-align: center;
}
#basketPanel .item .text {
  float: left;
  width: 60%;
  padding: 3px 0 3px;
}
#basketPanel .item .text table {
  border: 0 none;
  padding: 0;
  margin: 0;
}
#basketPanel .item .text table td {
  padding: 0;
  margin: 0;
  line-height: 14px;
  font-size: 12px;
}
#basketPanel .item .text table td .price {
  margin-right: 10px;
}
#basketPanel .item .text td.greyTxt {
  color: #7d8483;
}
#basketPanel .item .text td.blackTxt {
  color: #333333;
}
#basketPanel .item .text td.leftAlign {
  text-align: left;
}
#basketPanel .item .text td.rightAlign {
  text-align: right;
}
#basketPanel .item .text a {
  color: #333333;
  text-decoration: none;
}
#basketPanel .item .text a.title {
  margin-bottom: 5px;
  display: block;
  float: left;
  margin-right: 3px;
}
#basketPanel .item .text a:hover {
  text-decoration: underline;
}
#basketPanel .item .text .deleteButton {
  float: right;
}
#basketPanel #bottom {
  line-height: 25px;
}
#basketPanel .shippingdiscountcosts,
#basketPanel .shippingcosts,
#basketPanel .paymentcosts,
#basketPanel .coupontotal,
#basketPanel .uitzoekkorting,
#basketPanel .subtotal {
  color: #333333;
  font-size: 11px;
  overflow: hidden;
  width: 100%;
}
#basketPanel .total {
  color: #333333;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  padding: 5px 0;
  font-weight: bold;
  overflow: hidden;
  width: 100%;
  border-top: 1px solid #e5e5e5;
}
#basketPanel .CouponPriceText,
#basketPanel .ShippingCostsText,
#basketPanel .PaymentCostsText,
#basketPanel .SubTotalPriceText,
#basketPanel .UitZoekKortingText,
#basketPanel .TotalPriceText {
  float: left;
  display: block;
  width: 70%;
  padding: 0 0 0 0px;
}
#basketPanel .PromotionDiscount1,
#basketPanel #ShippingCost1,
#basketPanel #SubTotalPrice1,
#basketPanel #PreKortingPriceDrop,
#basketPanel #uitzoekkortingPrijsDrop,
#basketPanel #TotalPrice1 {
  float: right;
  display: block;
  width: 30%;
  text-align: right;
}
#basketPanel .SubTotalPriceText,
#basketPanel #SubTotalPrice1 {
  line-height: 45px;
  margin: 0 10px;
  width: auto;
}
#basketPanel .checkout {
  overflow: hidden;
  text-align: right;
  width: 100%;
}
#basketPanel .checkout .bttn {
  margin-top: 15px;
}
#basketPanel .checkout a {
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  #basketPanel {
    position: absolute;
    width: 320px;
    right: 0;
    left: auto;
    padding: 10%;
  }
  #basketPanel .arrow {
    right: 40px;
  }
}
/*---{ Triangulair arrow icon }---------------------------------------------------------*/

.arrow:after,
.arrow:before {
  bottom: 100%;
  border: solid transparent;
  content: " ";
  top: 0;
  left: 0;
  position: absolute;
  pointer-events: none;
}
.arrow:after {
  border-width: 13px;
  top: 2px;
  left: 1px;
  border-bottom-color: white;
}
.arrow:before {
  border-width: 14px;
  border-bottom-color: #dddddd;
}
/*---{ maps styles }---------------------------------------------------------*/

#responsiveMaster .gm-style .gm-style-iw,
#responsiveMaster .gm-style .gm-style-iw a,
#responsiveMaster .gm-style .gm-style-iw span,
#responsiveMaster .gm-style .gm-style-iw label,
#responsiveMaster .gm-style .gm-style-iw div {
  font-weight: normal;
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 13px;
}
/*---{ newsletter signup }---------------------------------------------------------*/

#newsletterBlock {
  padding: 30px 20px 30px 35px;
  color: white;
  text-align: center;
  font-size: 14px;
}
#newsletterBlock #newsletterSignup {
  background: white;
  margin-top: 25px;
  border: 1px solid #e5e5e5;
  height: 43px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#newsletterBlock #newsletterSignup input {
  border: 0 none;
  background: none;
  float: left;
  padding: 0 5% 0 10%;
  width: 45%;
  line-height: 43px;
  height: 43px;
}
#newsletterBlock #newsletterSignup input[type="submit"] {
  width: 40%;
  padding: 0;
  background: #313131;
  min-width: 0;
  color: white;
  font-family: 'Adamina', serif;
  font-size: 14px;
  text-transform: none;
}
.socialBlock {
  background: white;
  padding: 20px 0;
}
.socialBlock ul {
  overflow: hidden;
  width: 220px;
  margin: 0 auto;
  display: flex;
  gap: 11px;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .socialBlock ul {
    justify-content: flex-start;
  }
}
.socialBlock ul li a,
.socialBlock ul li a svg {
  display: block;
  width: 36px;
  height: 36px;
}
@media only screen and (min-width: 768px) {
  /*---{ Cookie notice }---------------------------------------------------------*/
  
  #cookieNotice p {
    padding: 2% 15% 2% 3%;
  }
  #cookieNotice .closeBtn {
    padding: 0 30px 0 0;
    top: 15px;
    right: 2%;
    bottom: auto;
    background-position: right center;
  }
  #newsletterBlock {
    padding: 12px 30px;
    height: 45px;
    z-index: 1;
    position: relative;
    max-width: 1310px;
    margin: 0 auto;
  }
  #newsletterBlock #newsletterText {
    float: left;
    width: 41%;
    text-align: left;
    margin: 5px 10% 5px 0;
  }
  #newsletterBlock #newsletterSignup {
    float: left;
    width: 48%;
    margin: 0;
  }
}
@media only screen and (min-width: 1024px) {
  /*---{ Cookie notice }---------------------------------------------------------*/
  
  #basketPanel {
    top: 30px;
  }
  #basketPanel .itemList {
    max-height: none;
  }
  #basketPanel .item .thumb {
    width: 30%;
  }
  #basketPanel .item .text {
    width: 70%;
  }
  #cookieNotice p {
    padding: 1% 15% 1% 5%;
  }
  #cookieNotice .closeBtn {
    top: 5px;
  }
  #newsletterBlock #newsletterText {
    line-height: 35px;
  }
}
@media only screen and (min-width: 1427px) {
  #newsletterWrapperDesktop {
    background: #76b9af;
  }
  #newsletterWrapperDesktop #newsletterWrapper {
    max-width: 1310px;
    margin: 0 auto;
    position: relative;
  }
  #newsletterWrapperDesktop #newsletterWrapper #newsletterBlock {
    max-width: none;
    width: 75%;
    margin: 0;
  }
  #newsletterWrapperDesktop #newsletterWrapper .socialBlock {
    float: right;
    background: none;
    padding: 16px 30px 16px 0;
    position: absolute;
    right: 0;
    top: 0;
  }
}
/*loader*/

.blocker,
.spinner {
  display: none;
}
.loading > .blocker {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: white;
  z-index: 998;
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  -webkit-opacity: 0.7;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
.loading > .spinner {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -9px 0 0 -35px;
  width: 70px;
  text-align: center;
  z-index: 999;
}
.loading > .spinner > div {
  width: 18px;
  height: 18px;
  background-color: #76b9af;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
  animation: bouncedelay 1.4s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.loading > .spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loading > .spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
@-webkit-keyframes bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes bouncedelay {
  0%, 80%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  40% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
