/* #####################################################################################################
   Header styles
   ##################################################################################################### */

/*--- 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 -----*/
header {
  background: white;
  position: relative;
  height: 60px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999999999;
}
@media only screen and (min-width: 1024px) {
  header {
    height: 100px;
  }
}
header #header {
  height: 60px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
@media only screen and (min-width: 1024px) {
  header #header {
    height: 100px;
  }
}
header #header .logoWrapper {
  position: relative;
  max-width: 245px;
  display: inline-block;
  height: 60px;
  line-height: 60px;
}
@media only screen and (min-width: 1024px) {
  header #header .logoWrapper {
    line-height: 95px;
    height: 95px;
    margin-left: 15px;
  }
}
@media only screen and (min-width: 1920px) {
  header #header .logoWrapper {
    margin-left: 0;
  }
}
header #header .logoWrapper .openingTimes {
  line-height: 24px;
  height: 24px;
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #76b9af;
  font-size: 12px;
  text-align: center;
}
header #header .logoWrapper .openingTimes span {
  font-weight: 700;
}
header #header #logo {
  display: block;
  height: auto;
  width: auto;
  text-align: center;
  line-height: 60px;
  height: 60px;
  z-index: 0;
  max-width: 150px;
}
@media only screen and (min-width: 1024px) {
  header #header #logo {
    margin: 0;
    text-align: center;
    line-height: 56px;
    float: left;
    margin-top: 10px;
    max-width: 245px;
  }
}
header #header #logo img {
  margin: 12px 0 0 15px;
}
@media only screen and (min-width: 1024px) {
  header #header #logo img {
    margin: 0;
  }
}
header #header .hofleverancierHeader {
  display: none;
}
@media only screen and (min-width: 1427px) {
  header #header .hofleverancierHeader {
    display: flex;
    max-width: 90px;
    max-height: 90px;
  }
}
header #header .phoneNr {
  display: none;
  color: #313131;
  font-weight: 600;
  font-size: 14px;
}
@media only screen and (min-width: 768px) {
  header #header .phoneNr {
    display: flex;
  }
}
#menuToggle {
  width: 40px;
  max-width: 40px;
  height: 100%;
  overflow: hidden;
  color: #313131;
  font-size: 16px;
  line-height: 56px;
  text-align: center;
  position: absolute;
  top: 85px;
  bottom: 0;
  left: 5px;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: color 0 ease-in;
  transition: none;
  z-index: 99999999;
}
@media only screen and (min-width: 768px) {
  #menuToggle {
    top: 60px;
  }
}
#menuToggle:before {
  display: block;
  content: "\f0c9";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 20px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: auto;
  height: auto;
  line-height: auto;
}
.mobileNavPanel #menuToggle:before {
  content: "\f00d ";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 20px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: auto;
  height: auto;
  line-height: auto;
}
@media only screen and (min-width: 1024px) {
  #menuToggle {
    width: 40px;
    bottom: auto;
    height: 40px;
    left: 15px;
    top: 15px;
    border: 1px solid #e5e5e5;
  }
}
/* ++ Search Box ++ */

#searchNav {
  display: block;
  width: 30px;
  height: calc(100% - 3px);
  background: white;
  top: 0;
  right: 45px;
}
@media only screen and (min-width: 414px) {
  #searchNav {
    width: 45px;
  }
}
@media only screen and (min-width: 1024px) {
  #searchNav {
    display: block;
    max-width: none;
    width: 365px;
    height: 37px;
    top: 30px;
    right: 0;
    left: 0;
    bottom: auto;
    box-shadow: 0 3px 5px -1px #e5e5e5;
  }
}
#searchNav input {
  line-height: 27px;
  border: 1px solid #e5e5e5;
  width: 65%;
  height: 25px;
}
@media only screen and (max-width: 1023px) {
  #searchNav input {
    position: absolute;
    right: 50px;
  }
}
@media only screen and (min-width: 1024px) {
  #searchNav input {
    min-height: 0;
    height: 40px;
    width: calc(100% - 20px);
  }
}
#searchNav .bttn {
  width: 55px;
  min-width: 35px;
  height: 37px;
  text-indent: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 0 none;
  position: absolute;
  right: 0;
  top: 0;
  background: none;
  cursor: pointer;
  background: #76b9af;
  color: white;
  border-radius: 0 5px 5px 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  /*-moz-backface-visibility: hidden;*/

  float: right;
}
#searchNav .bttn:hover {
  background: #a69f94;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  /*-moz-backface-visibility: hidden;*/

}
#searchNav #searchToggle {
  width: 100%;
  height: 100%;
  color: #313131;
}
@media only screen and (min-width: 1024px) {
  #searchNav #searchToggle {
    display: none;
  }
}
#searchNav #searchToggle:before {
  content: "\f002";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 20px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 20px;
  height: 20px;
  line-height: 20px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
#searchNav #searchDropdown {
  position: fixed;
  left: 0;
  width: 100%;
  top: 85px;
  background: #f7f7f7;
  height: 55px;
  max-height: 55px;
}
@media only screen and (min-width: 768px) {
  #searchNav #searchDropdown {
    top: 60px;
  }
}
@media only screen and (min-width: 1024px) {
  #searchNav #searchDropdown {
    display: block !important;
    /* overwrite js toggle for mobile */
    background: white;
    padding: 0;
    border: 0 none;
    top: auto;
    left: auto;
    height: 35px;
    position: relative;
  }
}
@media only screen and (min-width: 1024px) {
  #searchNav #searchDropdown #searchBlock {
    height: 35px;
  }
}
#searchNav #searchDropdown #searchBlock input[type="search"] {
  margin-top: 9px;
  min-height: 25px;
  max-height: 35px;
  border-radius: 5px;
  border: 1px solid #76b9af;
}
@media only screen and (min-width: 1024px) {
  #searchNav #searchDropdown #searchBlock input[type="search"] {
    height: 25px;
    margin: 0;
  }
}
#searchNav #searchDropdown #searchBlock input[type="search"]:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #a69f94;
}
#searchNav #searchDropdown #searchBlock input[type="submit"] {
  margin-top: 9px;
}
@media only screen and (min-width: 1024px) {
  #searchNav #searchDropdown #searchBlock input[type="submit"] {
    margin: 0;
  }
}
#searchNav #searchDropdown .arrow {
  position: absolute;
  right: 75px;
  top: -28px;
}
@media only screen and (min-width: 1024px) {
  #searchNav #searchDropdown .arrow {
    display: none;
  }
}
.headerRightMenu {
  position: absolute;
  right: 5px;
  top: 0;
  bottom: 0;
  height: 55px;
  line-height: 60px;
  max-width: 135px;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .headerRightMenu {
    position: relative;
    max-width: 180px;
    top: auto;
    height: 35px;
    line-height: 35px;
  }
}
#memberNavMobile {
  height: 60px;
  width: 60px;
}
#memberNavMobile .personalLink {
  display: block;
  width: 60px;
  height: 60px;
  color: #313131;
  font-family: Century Gothic, sans-serif;
  font-size: 12px;
}
#memberNavMobile .personalLink:hover {
  color: #76b9af;
}
#memberNavMobile .personalLink:before {
  content: "";
  background: url('../images/user.svg') no-repeat center center;
  width: 18px;
  height: 18px;
  background-size: 100%;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  margin: auto;
}
#memberNavMobile .personalLink span {
  position: absolute;
  bottom: -20px;
}
#memberNav {
  margin-right: 25px;
  position: relative;
  max-width: 45px;
  display: inline-block;
  float: left;
}
@media only screen and (min-width: 1024px) {
  #memberNav {
    max-width: 120px;
  }
}
#memberNav #personalToggle:hover:after {
  background: url('../images/chevronDownHover.png') no-repeat center center;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  /*-moz-backface-visibility: hidden;*/

}
#memberNav #personalToggle.active:after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  /*-moz-backface-visibility: hidden;*/

}
#memberNav #personalToggle,
#memberNav .personalLink {
  display: block;
  width: 95px;
  height: 35px;
  padding-left: 25px;
  font-size: 16px;
  color: #313131;
  font-family: Century Gothic, sans-serif;
}
#memberNav #personalToggle:hover,
#memberNav .personalLink:hover {
  color: #76b9af;
}
#memberNav #personalToggle:before,
#memberNav .personalLink:before {
  content: "";
  background: url('../images/user.svg') no-repeat center center;
  width: 18px;
  height: 18px;
  background-size: 100%;
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  margin: auto;
}
#memberNav #personalToggle:after,
#memberNav .personalLink:after {
  content: "";
  background: url('../images/chevronDown.png') no-repeat center center;
  width: 12px;
  height: 7px;
  display: block;
  position: absolute;
  top: 14px;
  right: 5px;
  margin: auto;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  /*-moz-backface-visibility: hidden;*/

}
#memberNav #personalDropdown {
  position: absolute;
  top: 45px;
  right: 0;
  width: 150px;
  height: auto;
  padding: 15px;
  background-color: #fbfbfb;
  display: none;
  z-index: 999999;
}
#memberNav #personalDropdown span.arrow {
  position: absolute;
  top: -10px;
  border-bottom: solid 10px #76b9af;
  border-left: solid 10px transparent;
  border-right: solid 10px transparent;
  right: 30px;
}
#memberNav #personalDropdown span.arrow:before,
#memberNav #personalDropdown span.arrow:after {
  display: none;
}
#memberNav #personalDropdown.show {
  display: block;
}
#memberNav #personalDropdown ul li {
  margin-bottom: 7px;
}
#memberNav #personalDropdown ul li a {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  text-transform: uppercase;
  color: #313131;
}
#memberNav #personalDropdown ul li a:before {
  position: absolute;
  left: 2px;
  color: inherit;
  top: 2px;
}
#memberNav #personalDropdown ul li a:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  width: 0;
  height: 1px;
  background-color: #76b9af;
  color: white;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  /*-moz-backface-visibility: hidden;*/

}
#memberNav #personalDropdown ul li a:hover {
  color: #76b9af;
}
#memberNav #personalDropdown ul li a:hover:after {
  width: 100%;
}
#memberNav #personalDropdown ul li.favorites a:before {
  left: 0;
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url('../images/favorite.png') no-repeat center center;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  /*-moz-backface-visibility: hidden;*/

}
#memberNav #personalDropdown ul li.dashboard a:before {
  left: 0;
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url('../images/user.svg') no-repeat center center;
  background-size: 100%;
}
#memberNav #personalDropdown ul li.logout a:before {
  content: '\f08b';
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 14px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: auto;
  height: auto;
  line-height: auto;
}
#memberNav #personalDropdown ul li:last-child {
  margin-bottom: 0;
}
/* ++ Shopping bag  ++ */

#shoppingBag {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 70px;
  height: 100%;
}
@media only screen and (min-width: 768px) {
  #shoppingBag {
    bottom: 2px;
  }
}
@media only screen and (min-width: 1024px) {
  #shoppingBag {
    width: 35px;
    height: 35px;
    top: 0;
    margin: 0;
    max-width: none;
    right: 8%;
    width: 40px;
  }
}
@media only screen and (min-width: 1920px) {
  #shoppingBag {
    right: 0;
  }
}
#shoppingBag #ShoppingCart {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  text-align: center;
  max-width: 70px;
  font-size: 12px;
}
@media only screen and (min-width: 1024px) {
  #shoppingBag #ShoppingCart {
    width: 35px;
    height: 35px;
    text-indent: 0;
    background: none;
    text-align: right;
    border: none;
    max-width: none;
    text-decoration: none;
    max-width: 40px;
  }
  #shoppingBag #ShoppingCart #ShoppingCartCount {
    display: none;
    position: absolute;
    top: 10px;
    right: 0;
    background: #a69f94;
    color: white;
    font-family: Century Gothic, sans-serif;
    min-width: 20px;
    height: 20px;
    line-height: 19px;
    text-align: center;
    text-indent: 0;
    font-size: 13px;
    font-weight: 600;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    border-radius: 14px;
    -moz-background-clip: padding-box;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
  }
  #shoppingBag #ShoppingCart #ShoppingCartCountQualifier {
    display: none;
  }
}
#shoppingBag #ShoppingCart:before {
  content: "";
  background: url('../images/shoppingbag.png') no-repeat center center;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 0;
  right: 25px;
  bottom: 0;
  left: auto;
  margin: auto;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  /*-moz-backface-visibility: hidden;*/

}
@media only screen and (min-width: 1024px) {
  #shoppingBag #ShoppingCart:before {
    left: auto;
    right: 10px;
    background-size: auto;
  }
}
#shoppingBag #ShoppingCart:hover:before {
  background: url('../images/shoppingbagHover.png') no-repeat center center;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  /*-moz-backface-visibility: hidden;*/

}
#shoppingBag #ShoppingCart span {
  position: absolute;
  bottom: -20px;
  left: 0;
  font-family: Century Gothic, sans-serif;
}
@media only screen and (min-width: 1024px) {
  #shoppingBag #ShoppingCart span {
    display: none;
  }
}
@media only screen and (max-width: 1023px) {
  #shoppingBag #amountWrapper {
    display: block;
  }
  #shoppingBag #amountWrapper span {
    display: none;
  }
  #shoppingBag #amountWrapper ShoppingCartCountQualifier {
    display: none!important;
  }
  #shoppingBag #amountWrapper #ShoppingCartCount {
    display: none;
    position: absolute;
    top: 5px;
    right: 0;
    background: #a69f94;
    color: white;
    min-width: 19px;
    height: 19px;
    line-height: 19px;
    text-align: center;
    text-indent: 0;
    font-size: 12px;
    font-weight: 600;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    border-radius: 14px;
    -moz-background-clip: padding-box;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
  }
  #shoppingBag #amountWrapper #ShoppingCartCount.empty {
    display: none;
  }
}
.phoneBlock {
  background: #76b9af;
  color: white;
  height: 35px;
  line-height: 35px;
  width: 115px;
  font-size: 12px;
  text-align: center;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  /*-moz-backface-visibility: hidden;*/

  bottom: -90px;
  position: absolute;
  right: 0;
  left: auto;
}
.stick--filterButtonsFixed .phoneBlock {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .phoneBlock {
    position: absolute;
    top: auto;
    right: 0;
    bottom: -70px;
    left: auto;
    width: 190px;
  }
}
.phoneBlock span {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .phoneBlock span {
    display: inline-block;
  }
}
@media only screen and (min-width: 1024px) {
  .phoneBlock.phoneSticky {
    height: 3px;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    /*-moz-backface-visibility: hidden;*/
  
    bottom: -43px;
  }
}
@media only screen and (min-width: 1024px) {
  .phoneBlock.phoneSticky .questionCall,
  .phoneBlock.phoneSticky .phoneLink {
    display: none;
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    /*-moz-backface-visibility: hidden;*/
  
  }
}
.phoneBlock .phoneLink {
  color: white;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  /*-moz-backface-visibility: hidden;*/

  padding-left: 30px;
  position: relative;
  z-index: 99999999;
}
.phoneBlock .phoneLink:before {
  content: "";
  background: url(../images/phone.svg) no-repeat center center;
  width: 14px;
  height: 14px;
  display: inline-block;
  margin: 0 8px 0 8px;
  position: absolute;
  top: 2px;
  left: 0;
}
.phoneBlock .phoneLink:hover {
  color: #232629;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  /*-moz-backface-visibility: hidden;*/

}
.mobilenr {
  display: block;
  text-align: center;
  font-weight: bold;
  background: white;
  padding-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  .mobilenr {
    display: none;
  }
}
