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

/*--- standard variables ---*/
/* @fontFamily1:        'PT Sans', sans-serif;*/
/*--- product item ratio (thumb + content) ---*/
/*--- media queries. When using responsive ---*/
/*--- media queries. When not using responsive ---
@useResponsive:			false;

@breakPointLargePhone:	~"only screen and (min-width : 1px)";
@breakPointTablet:		~"only screen and (min-width : 1px)";
@breakPointDesktop:		~"only screen and (min-width : 1px)";

@breakPointUpToTablet:	~"only screen and (max-width: 1px)";
@breakPointUpToTabletLand:~"only screen and (max-width: 1023px)";
@breakPointUpToDesktop:	~"only screen and (max-width: 1px)";
*/
/*--- media queries. When using responsive: only mobile & desktop ---
@useResponsive:			false;
@breakPointLargePhone:	~"only screen and (min-width : 480px) and (max-width: 768px )";
@breakPointTablet:		~"only screen and (min-width : 999999999px)";
@breakPointDesktop:		~"only screen and (min-width : 768px)";

@breakPointUpToTablet:	~"only screen and (max-width: 768px)";
@breakPointUpToDesktop:	~"only screen and (max-width: 768px)";
*/
/*--- custom class functions ---*/
/*----- Default functions -----*/
/*----- LESS functions -----*/
/*---{ page-navigation mobile }---------------------------------------------------------*/

#content .pagerDropDown {
  margin: 0;
  padding: 10px 0 20px;
  width: 100%;
}
#content .pagerDropDown ul {
  margin: 0;
  font-size: 0;
  line-height: 0;
  text-align: center;
}
#content .pagerDropDown ul li {
  margin: 0 5px;
  padding: 0;
  height: 30px;
  line-height: 30px;
  overflow: hidden;
  list-style: none;
  position: relative;
  display: inline-block;
  *display: inline;
  font-size: 14px;
}
#content .pagerDropDown ul li.pageSelect {
  display: inline-block;
  height: 30px;
  line-height: 30px;
  vertical-align: top;
  font-size: 14px;
  font-weight: bold;
  padding: 0;
  border-bottom: 2px solid #383838;
}
@media only screen and (min-width : 768px) {
  #content .pagerDropDown ul li.pageSelect {
    font-weight: normal;
    border: none;
  }
}
#content .pagerDropDown ul li.pageSelect:after {
  content: "\f078";
  position: absolute;
  top: 7px;
  left: 30px;
  display: block;
  color: #383838;
  width: 32px;
  text-align: center;
  font: normal normal normal 14px/1 FontAwesome;
}
#content .pagerDropDown ul li.pageSelect select {
  border: none;
  display: inline-block;
  position: relative;
  width: 56px;
  height: 30px;
  background: transparent;
  background-size: 15px;
  color: #383838;
  font-weight: bold;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0 20px 0 10px;
  z-index: 1;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (min-width : 768px) {
  #content .pagerDropDown ul li.pageSelect select {
    font-weight: normal;
  }
}
#content .pagerDropDown ul li a {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  overflow: hidden;
  color: #383838;
  padding: 0;
  text-decoration: none;
  vertical-align: middle;
}
#content .pagerDropDown ul li a.prev:before {
  content: "\f053";
  display: inline-block;
  color: #383838;
  width: 32px;
  text-align: center;
  font: normal normal normal 14px/1 FontAwesome;
}
#content .pagerDropDown ul li a.next:after {
  content: "\f054";
  display: inline-block;
  color: #383838;
  width: 32px;
  text-align: center;
  font: normal normal normal 14px/1 FontAwesome;
}
#content .pagerDropDown ul li a.disabled {
  opacity: 0.3;
  pointer-events: none;
}
/*
#content .pagerBar {
    > span {
        display: block;
    }

    ul {
        overflow: hidden;
        margin: 0;
        padding: 0;
        display: block;
        text-align: center;
        line-height: 36px;

        li {
            margin: 0 0 0 4px;
            padding: 0;
            list-style: none;
            position: relative;
            display: inline-block;
            *display: inline;

            &:first-child {
                margin-left: 0;
            }

            &:hover a,
            &.active a {
                &:not(.spacer) {
                    background-color: @color1;
                    color: @backgroundColor;
                }
            }

            &.spacer span {
                border: none;
            }

            &.prevDisabled {
                display: none;
            }

            span,
            a {
                line-height: 34px;
                min-width: 32px;
                height: 32px;
                color: @fontColor;
                text-align: center;
                display: block;
                overflow: hidden;
                .border-radius(16px, 16px, 16px, 16px)
            }
        }

        .prev,
        .next {
            cursor: pointer;

            a {
                padding: 0 8px;
            }

            &.disabled {
                display: none;
            }
        }

        @media @breakPointUpToTablet {
            li {
                margin: 0;
            }

            .spacer {
                width: 16px;

                span {
                    min-width: 16px;
                }
            }

            .prev {
                a {
                    width: 32px;
                    color: @backgroundColor;
                    padding: 0;

                    &:before {
                        content: "\f053";
                        display: inline-block;
                        color: @fontColor;
                        width: 32px;
                        text-align: center;
                        font: normal normal normal 14px/1 FontAwesome;
                    }
                }

                &:hover a,
                .active a {
                    background: @backgroundColor;
                }
            }

            .next {
                a {
                    width: 32px;
                    color: @backgroundColor;
                    padding: 0;

                    &:before {
                        content: "\f054";
                        display: inline-block;
                        color: @fontColor;
                        width: 32px;
                        text-align: center;
                        font: normal normal normal 14px/1 FontAwesome;
                    }
                }

                &:hover a,
                &.active a {
                    color: @backgroundColor;
                }
            }
        }
    }
}
    */

#topLogo {
  /* float: left; */
  /* margin-left: 25%; */
  text-align: center;
  width: 100%;
}
#topLogo img {
  width: 120px;
}
/*---{ social icons }---------------------------------------------------------*/

.fbIcon {
  margin: 7px 0;
  display: block;
  float: left;
  width: 36px;
  height: 36px;
  background: url(../../../images/facebook.png) no-repeat;
  background-size: 36px 36px;
}
.instaIcon {
  margin: 7px 0;
  display: block;
  float: left;
  width: 36px;
  height: 36px;
  background: url(../../../images/instagram.png) no-repeat;
  background-size: 36px 36px;
}
.ttIcon {
  margin: 7px 0;
  display: block;
  float: left;
  width: 36px;
  height: 36px;
  background: url(../../../images/tiktok.png) no-repeat;
  background-size: 36px 36px;
}
/*---{ payment icons }---------------------------------------------------------*/

.paymentIcon {
  display: block;
  height: 20px;
  background: transparent url(../../../images/paymentIcons.png) no-repeat 0 0;
  float: left;
  margin: 5px 5px;
}
.paymentIcon.iDeal {
  width: 24px;
  background-position: 0 0;
}
.paymentIcon.MasterCard {
  width: 34px;
  background-position: 0 -40px;
}
.paymentIcon.Visa {
  width: 62px;
  background-position: 0 -80px;
}
.paymentIcon.PayPal {
  width: 75px;
  background-position: 0 -120px;
}
.paymentIcon.AmericanExpress {
  width: 32px;
  background-position: 0 -160px;
}
.paymentIcon.MisterCash {
  width: 29px;
  background-position: 0 -200px;
  margin-left: 37px;
}
.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: 65px;
  background-position: 0 -440px;
}
.paymentIcon.Maestro {
  width: 34px;
  background-position: 0 -480px;
}
.paymentIcon.vPay {
  width: 18px;
  background-position: 0 -520px;
}
.paymentIcon.PostNL {
  width: 25px;
  height: 22px;
  background: url(../../../images/paymentPostNL.gif) no-repeat;
}
/*---{ 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;
  font-size: 13px;
  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 24px;
  padding: 15px 30px 20px 40px;
}
/*---{ dropdown minishoppingcart }---------------------------------------------------------*/

#basketPanel {
  display: none;
  position: fixed;
  left: 2%;
  width: 92%;
  top: 65px;
  z-index: 9999;
  padding: 2%;
  zoom: 1;
  border: 1px solid #dedede;
  background: white;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
#basketPanel .valuta {
  display: none;
  padding-right: 5px;
}
#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 .ContinueShopping {
  background: #dedede;
  color: black;
  min-width: 120px;
  cursor: pointer;
  margin-bottom: 8px;
}
#basketPanel #shoppingbagContents {
  overflow: hidden;
}
#basketPanel #shoppingbagEmpty {
  text-align: center;
  padding: 3% 0;
}
#basketPanel .itemList {
  max-height: 356px;
  overflow-y: auto;
}
#basketPanel .item {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 10px 0;
  padding-right: 5px;
  border-bottom: 1px solid #dedede;
}
#basketPanel .item .thumb {
  position: relative;
  float: left;
  width: 68px;
  height: 68px;
  padding: 0;
  margin: 0;
  background: white;
}
#basketPanel .item .thumb a {
  display: block;
}
#basketPanel .item .thumb td {
  vertical-align: middle;
  text-align: center;
}
#basketPanel .item .text {
  float: right;
  width: 220px;
  padding: 3px 0 3px 1px;
}
#basketPanel .item .text table {
  border: 0 none;
  padding: 0;
  margin: 0;
}
#basketPanel .item .text table td {
  padding: 0;
  margin: 0;
  line-height: 21px;
  font-size: 14px;
}
#basketPanel .item .text table td .offerPrice {
  position: relative;
}
#basketPanel .item .text table td .offerPrice:after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  right: 0;
  border-top: 1px solid;
  border-color: #454545;
  -webkit-transform: rotate(-8deg);
  -moz-transform: rotate(-8deg);
  -o-transform: rotate(-8deg);
  -ms-transform: rotate(-8deg);
  transform: rotate(-8deg);
}
#basketPanel .item .text td.greyTxt {
  color: #7d8483;
}
#basketPanel .item .text td.blackTxt {
  color: #333333;
}
#basketPanel .item .text td.leftAlign {
  text-align: left;
  padding-bottom: 10px;
}
#basketPanel .item .text td.rightAlign {
  text-align: right;
}
#basketPanel .item .text a {
  color: #333333;
  font-size: 14px;
  text-decoration: none;
}
#basketPanel .item .text a:hover {
  text-decoration: underline;
}
#basketPanel .item .text .deleteButton {
  float: left;
}
#basketPanel #bottom {
  line-height: 25px;
}
#basketPanel .shippingdiscountcosts,
#basketPanel .shippingcosts,
#basketPanel .paymentcosts,
#basketPanel .coupontotal,
#basketPanel .uitzoekkorting,
#basketPanel .subtotal {
  color: #333333;
  font-size: 12px;
  overflow: hidden;
  width: 100%;
}
#basketPanel .total {
  color: #333333;
  font-size: 14px;
  line-height: 16px;
  text-transform: initial;
  padding: 5px 0;
  font-weight: bold;
  overflow: hidden;
  width: 100%;
  border-top-color: #dedede;
  border-top-width: 1px;
  border-top-style: solid;
}
#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 #shippingFree,
#basketPanel #SubTotalPrice1,
#basketPanel #PreKortingPriceDrop,
#basketPanel #uitzoekkortingPrijsDrop,
#basketPanel #TotalPrice1 {
  float: right;
  display: block;
  width: 30%;
  text-align: right;
}
#basketPanel .PromotionDiscount1 .valuta,
#basketPanel #ShippingCost1 .valuta,
#basketPanel #shippingFree .valuta,
#basketPanel #SubTotalPrice1 .valuta,
#basketPanel #PreKortingPriceDrop .valuta,
#basketPanel #uitzoekkortingPrijsDrop .valuta,
#basketPanel #TotalPrice1 .valuta {
  display: none;
  padding-right: 5px;
}
#basketPanel .checkout {
  overflow: hidden;
  border-top: 1px solid #c2c2c2;
  text-align: right;
  width: 100%;
  padding: 5px 0 0;
}
#basketPanel .checkout a {
  font-size: 14px;
  width: 100%;
  padding: 0px;
}
@media only screen and (min-width : 768px) {
  #basketPanel {
    position: absolute;
    width: 350px;
    top: 55px;
    right: 0;
    left: auto;
    padding: 40%;
  }
  #basketPanel .arrow {
    right: 40px;
  }
  .MisterCash {
    width: 29px;
    background-position: 0 -200px;
    margin-left: 37px;
  }
}
/*---{ 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;
}
/* Sooqr */

#responsiveMaster .sooqrSearchContainer {
  top: 177px !important;
}
/*---{ 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: 12px;
}
/*---{ newsletter signup }---------------------------------------------------------*/

#newsletterSignup {
  background: white;
  width: 850px;
  margin: 34px auto 0;
  position: relative;
}
#newsletterSignup .siteForm {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  background-color: transparent;
  margin: 0;
  padding: 0;
}
#newsletterSignup .siteForm .row {
  min-height: initial;
  margin: 0;
}
#newsletterSignup .siteForm .row > label {
  display: none;
}
#newsletterSignup .errorTxt {
  position: absolute;
  top: 0;
  right: -440px;
  display: inline-block;
  border: 0;
  background-color: transparent;
}
#newsletterSignup input {
  border: 0 none;
  background: none;
  float: left;
  padding: 0 11px 0 14px;
  width: 70%;
}
#newsletterSignup input.NewsLetterInput {
  border-top: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
  border-left: 1px solid #dedede;
}
#newsletterSignup input.NewsLetterSubmit {
  width: 30%;
  color: white;
  font-size: 13px;
  font-family: 'Roboto', sans-serif;
  overflow: hidden;
  min-width: 0;
  background-color: #4ca950;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  letter-spacing: 1px;
}
.NewsletterText {
  text-align: center;
}
@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;
  }
}
@media only screen and (min-width : 1024px) {
  /*---{ Cookie notice }---------------------------------------------------------*/
  
  #cookieNotice p {
    padding: 1% 15% 1% 5%;
  }
  #cookieNotice .closeBtn {
    top: 0;
    padding: 1% 30px 1% 0;
    line-height: 18px;
    height: 18px;
    background-position: right center;
  }
  .MisterCash {
    width: 29px;
    background-position: 0 -200px;
    margin-left: 0px !important;
  }
  #basketPanel {
    position: absolute;
    width: 350px;
    top: 55px;
    right: 0;
    left: auto;
    padding: 20%;
  }
  #basketPanel .checkout a {
    font-size: 14px;
    width: 0px;
  }
}
