/*
Theme Name: All Up 2.0
Author: Niek Meinema
Company: Twinsense Online Brand Excitement
Author URI: http://www.twinsense.nl
Version: 1.11.6
*/

@keyframes fade {
  0% {
      opacity: 0;
  }

  100% {
      opacity: 1;
  }
}

.slider-container {
  position: absolute;
}

html {
  position: relative;
  min-height: 100%;
  scroll-behavior: smooth;
}

body{
	font-family: 'Ubuntu', sans-serif;
	color: #595959;
}

@media (min-width: 1400px) {
  .container{
    width: 1320px;
  }
}

h1 {
  color:#B92C29;
}

h1,h2,h3,h4,h5,p{
	margin-top: 0px;
	margin-bottom: 20px;
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 3px solid #595959;
}

.nopadding{
	padding-left: 0px;
	padding-right: 0px;
}

/* header */

/* Here's the new CSS to add... */
.admin-bar .top-menu {
  top: 32px;
}

.logo-holder{
	position: absolute;
	top: 0;
	left: 0;
  width:108px;
}

.logo-holder a{
  display: block;
}

.logo-holder a img{
	max-width: 100%;
	max-height: 50px;
	margin-right: 20px;
  width:100%;
}

.header-top{
	top: 0;
	width: 100%;
	position: relative;
	background-color: rgba(255,255,255,1);
	z-index: 999;
	padding: 10px 0;
}

.slider{
	position: relative;
	z-index: 10;
}

.slide{
	position: relative;
  height: 200px;
}

.slide img{
  object-fit: cover;
  object-position: 50%;
  height: 100%;
  width: 100%;
}

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {
	.slide{
		height: 200px;
	}

  .slider-on-top-image-wrapper {
    display: none;
  }
}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {
	.slide{
		height: 300px;
	}
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
	.slide{
		height: 350px;
	}
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
	.slide{
		height: 450px;
	}

  .slider-on-top-image-wrapper {
    display: block;
  }
}

/* =========================
   Header (scoped)
   ========================= */

.site-header {
  font-family: "Ubuntu", sans-serif;
}

/* ---------- Top bar (desktop) ---------- */

.site-header__top {
  background-color: #595858;
  color: #fff;
}

.site-header__top-inner {
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 0;
}

.site-header__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
}

.site-header__social li { margin: 0; padding: 0; }

.site-header__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #fff;
  background: transparent;
  border-radius: 50%;
  text-decoration: none;
}

.site-header__social a:hover {
  color: #bdbdbd;
}

.site-header__topnav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: flex-end;
  background-color: #595858;
  padding: 5px 0;
  margin: 10px 0;
  border-radius: 10px;
}

.site-header__topnav li { margin: 0; padding: 0; }

.site-header__topnav a {
  display: inline-block;
  padding: 6px 10px;
  color: #fff;
  text-decoration: none;
}

.site-header__topnav a:hover {
  color: #bdbdbd;
}

/* ---------- Navbar base ---------- */

.site-header__nav.navbar {
  margin-bottom: 0;
  border: 0;
  background: transparent;
  padding: 10px;
}

.site-header__header.navbar-header {
  display: flex;
  align-items: center;
}

/* Logo */
.site-header__brand.navbar-brand {
  height: auto;
  padding: 12px 0;
  line-height: 1;
}

.site-header__logo {
  display: block;
  height: 42px;
  width: auto;
}

/* Hamburger */
.site-header__toggle.navbar-toggle {
  margin: 14px 10px 14px 0;
  border: 0;
  background: transparent;
  color: #B92C29;
  font-size: 30px;
  line-height: 30px;
  transition: 0.25s ease;
  padding: 5px;
}

.site-header__toggle:hover,
.site-header__toggle:focus
{
  background: #B92C29!important;
  color: #fff;
  transition: 0.25s ease;
}

/* Quick actions (mobile right of logo) */
.site-header__quick {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ---------- Icon buttons (cart/search) ---------- */

.site-header__iconbtn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  color: #fff;
  background-color: #B92C29;

  border-radius: 50%;
  border: 0;
  text-decoration: none;

  transition: 0.2s ease;
  box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
}

.site-header__iconbtn:hover,
.site-header__iconbtn:focus {
  color: #fff;
  background-color: #595959;
  text-decoration: none;
}

.site-header__cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #595959;
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
}

/* ---------- Collapse base ---------- */

.site-header__collapse {
  /* Bootstrap bepaalt display via .collapse/.in */
}

/* Mobile top inside collapse */
.site-header__mobile-top {
  padding: 10px 0 6px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.site-header__topnav--mobile {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.site-header__topnav--mobile a {
  padding: 10px;
  color: #fff;
}

.site-header__social--mobile {
  margin-top: 8px;
}

.site-header__social--mobile a {
  background-color: #B92C29;
  color: #fff;
}

.site-header__social--mobile a:hover {
  background-color: #595959;
  color: #fff;
}

/* ---------- Primary menu ---------- */

.site-header__primary.navbar-nav {
  float: none;               /* we sturen float per breakpoint */
  margin: 0;
}

.site-header__primary.navbar-nav > li button{
  background-color: transparent;
  color: #777;
  border: none;
  width: 30px;
  height: 30px;
  transform: scale(1);
}

.site-header__primary.navbar-nav > li button:hover{
  background-color: transparent;
  color: #B92C29;
  border: none;
  transform: scale(1.2);
}

.site-header__primary > li > a {
  font-size: 18px;
  line-height: 30px;
  padding: 10px 0;
  display: inline-block;
  color: #777!important;
}

.site-header__primary > li > a:hover,
.site-header__primary > li > a:focus,
.site-header__primary > .active > a,
.site-header__primary > .active > a:hover,
.site-header__primary > .active > a:focus,
.site-header__primary > .open > a,
.site-header__primary > .open > a:hover,
.site-header__primary > .open > a:focus,
.site-header__primary > .current_page_ancestor > a {
  color: #B92C29!important;
  background: transparent!important;
  text-decoration: underline;
}

.site-header__primary > li.highlighted > a {
  background-color: #B92C29!important;
  color: #fff!important;
  border-radius: 5px;
  padding: 5px 15px;
  transform: scale(1);
  transition: 0.35s ease all;
}

.site-header__primary > li.highlighted > a:hover {
  background-color: #B92C29!important;
  color: #fff!important;
  border-radius: 5px;
  padding: 5px 15px;
  transform: scale(1.1);
  transition: 0.35s ease all;
}

/* Dropdown */
.site-header__nav .dropdown-menu {
  border: none;
  border-top: 4px solid #B92C29;
  border-radius: 0;
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.33);
  padding: 12px 16px;
  font-size: 16px;
}

.site-header__nav .dropdown-menu > li > a {
  display: block;
  padding: 5px!important;
  clear: both;
  font-weight: 400;
  line-height: 30px;
  color: #333;
  white-space: nowrap;
}

.site-header__nav .dropdown-menu li a .cat-icon {
  display: inline-flex;
  background-color: #B92C29;
  width: 30px;
  height: 30px;
  padding: 2px;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.site-header__nav .dropdown-menu li a .cat-icon img {
  max-width: 100%;
  height: 25px;
}

.site-header__nav .dropdown-menu > li > a:hover,
.site-header__nav .dropdown-menu > li.active > a,
.site-header__nav .dropdown-menu li.active a,
.site-header__nav .dropdown-menu li a:hover
{
  color: #B92C29;
  background-color: transparent;
}

.site-header__nav .dropdown-menu li a .cat-icon {
  display: inline-flex;
  background-color: #B92C29;
  width: 30px;
  height: 30px;
  padding: 2px;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

/* ---------- Desktop actions (rechts) ---------- */

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 18px;
}

/* =========================
   Breakpoints
   ========================= */

/* Mobile (<=767px): collapse stacked */
@media (max-width: 767px) {

  .site-header__collapse {
    border-top: 0;
  }

  .site-header__primary {
    margin-top: 6px;
  }

  .site-header__primary > li {
    float: none;
  }

  .site-header__primary > li > a {
    display: inline-block;
    padding: 12px 0;
  }

  /* dropdown in-flow op mobiel */
  .site-header__nav .dropdown-menu {
    position: static;
    float: none;
    box-shadow: none;
    border-top: 0;
    margin: 0;
    z-index: 1000;
    padding: 10px;
    font-size: 16px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: none;
    border-radius: 0px !important;
    border-top: 4px solid #B92C29 !important;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.33) !important;
  }
}

/* Tablet+ (>=768px): FIX layout: container is flex-rij */
@media (min-width: 768px) {

  /* Maak de navbar container de flex-rij */
  .site-header__nav > .container {
    display: flex;
    align-items: center;
  }

  /* Bootstrap 3 float gedrag uitzetten */
  .site-header__header.navbar-header {
    float: none !important;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
  }

  .site-header__collapse.navbar-collapse {
    float: none !important;
    width: 100% !important;
    display: flex !important;
    align-items: center;
    flex: 1 1 auto;
    padding-left: 0;
    padding-right: 0;
  }

  /* Logo spacing: BS3 navbar-brand heeft default padding */
  .site-header__brand.navbar-brand {
    padding: 0 !important;
    height: auto;
    line-height: 1;
    margin-right: 18px;
  }

  .site-header__logo {
    height: 52px!important;
  }

  /* Menu midden */
  .site-header__primary.navbar-nav {
    float: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    margin: 0 !important;
    padding: 0;
    gap: 6px;
  }

  .site-header__primary > li {
    float: none !important;
  }

  .site-header__primary > li > a {
    padding: 10px 15px;
    font-size: 14px;
  }

  /* Actions echt rechts */
  .site-header__actions {
    flex: 0 0 auto;
    margin-left: auto; /* dwingt naar rechts */
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .site-header__nav .dropdown-menu {
    margin-top: 12px;
  }
}

/* Desktop (>=992px): iets meer ruimte */
@media (min-width: 992px) {
  .site-header__primary.navbar-nav {
    gap: 10px;
  }

  .site-header__primary > li > a {
    padding: 10px 14px;
    font-size: 18px;
  }
}

/* =========================
   Sliding search
   ========================= */

.search-holder {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* Het paneel zelf */
.search-panel {
  position: absolute;
  right: 100%;              /* start links van de knop */
  top: 50%;
  transform: translateY(-50%) translateX(20px);
  opacity: 0;
  pointer-events: none;

  width: 200px;
  background: #fff;
  padding: 5px;
  border-radius: 10px;

  box-shadow: 0 4px 10px rgba(0,0,0,.2);

  transition:
    transform 0.35s ease,
    opacity 0.25s ease;
}

.search-form{
  display: flex;
  flex-direction: row;
  align-items: center;
}

.search-form .search-submit{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #fff;
  background-color: #B92C29;
  border-radius: 5px;
  border: 0;
  text-decoration: none;
  transition: 0.2s ease;
  box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
  aspect-ratio: 1/1;
  margin-right: 5px;
}

/* Actieve staat */
.search-holder.is-open .search-panel {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
  pointer-events: auto;
}

/* Zoekveld styling (optioneel maar aan te raden) */
.search-panel input[type="search"] {
  width: 100%;
  border: 1px solid #ccc;
  padding: 6px 10px;
  font-size: 15px;
  border-radius: 4px;
}

.search-panel input[type="submit"] {
  display: none; /* alleen enter */
}

/* content */

.category-holder{
  margin-top:-60px;
  position: relative;
  background-color:#EDEDED;
}

.category {
  background-color: #B92C29;
  margin: 10px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index:12;
  transition: 0.3s ease all;
}

.category-link{
	display: block;
	color: #fff;
	background-color: rgba(185,44,41,0);
	font-weight: 700;
	text-align: center;
	min-height: 70px;
  width: 100%;
	padding: 10px 0;
	transition: 0.3s ease all;
}

.category-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}

.category-link:hover,
.category-link:focus{
	color: #fff;
	background-color: rgba(185,44,41,1);
	transition: 0.3s ease all;
	text-decoration: none;
}

.category-link span{
	line-height: 20px;
	display: block;
}

.category-link img{
	height: 60px;
	width: auto;
}

.category-link i::before {
  height:60px;
  width:60px;
  display: block;
  font-size:50px;
}

.content{
	overflow-x: hidden;
}

.content.greybg{
	background-color:#EDEDED;
}

.content ul{
	padding-left: 15px;
}

.content img{
	max-width: 100%;
	height: auto;
}

.content p a{
	color: #B92C29;
}

.content object{
	width: 100%;
}

.content.padding{
	padding-top: 30px;
}

.content-block .inner{
	padding: 15px;
}

.content .col-md-4 .content-block {
  display: flex;
  align-items: center;
}
.content .col-md-4 .content-block.red {
  text-align: right;
}

.content .inhoud_wrapper {
  background-color: #fff;
  display: block;
  padding: 15px;
  align-items: center;
  gap:15px;
}

@media (min-width: 576px) {
  .content .inhoud_wrapper {
    display: flex;
  }

  .content .inhoud_wrapper > * {
    flex:1 1 0;
  }

  .content .inhoud_wrapper .afbeelding {
    margin-bottom:20;
  }
}

.content .inhoud_wrapper .afbeelding {
  height: 200px;
  width: 100%;
  margin-bottom:15px;
}

.content .inhoud_wrapper .afbeelding img{
  object-fit: cover;
  object-position: 50%;
  width: 100%;
  height: 100%;
}

.red{
	background-color: #B92C29;
	color: #fff;
	-webkit-box-shadow: inset 0px 0px 50px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: inset 0px 0px 50px 0px rgba(0,0,0,0.1);
	box-shadow: inset 0px 0px 50px 0px rgba(0,0,0,0.1);
	overflow: hidden;
}
.grey{
	background-color: #595959;
	color: #fff;
	-webkit-box-shadow: inset 0px 0px 50px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: inset 0px 0px 50px 0px rgba(0,0,0,0.1);
	box-shadow: inset 0px 0px 50px 0px rgba(0,0,0,0.1);
	overflow: hidden;
}

.merk{
	display: block;
	min-height: 150px;
	text-align: center;
	padding: 25px 0;
  max-height: 150px;
}

.merk img{
	max-width: 100%;
	height: auto;
  margin: 0 auto;
}

/* producten */

.product-item{
	display: block;
	/*-webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);*/
	margin-top: 20px;
	text-decoration: none;
	color:#595959;
}

.product-item:hover {
  text-decoration: none;
}

.product-image{
	aspect-ratio: 4/3;
	position: relative;
  overflow: hidden;
  margin-bottom: 15px;
}

.product-item .wrapper {
  padding:30px;
  text-align: center;
}

.product-item h3{
	margin-bottom:30px;
}

.product-item .btn-primary {
  color:#fff;
  display: inline-block;
}

.product-image img{
	width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50%;
}

.product-image-thumb{
	background-size: cover;
	background-position: center center;
	min-height: 200px;
	display: block;
	-webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
	margin-bottom: 20px;
}

.post-image-thumb{
	background-size: cover;
	background-position: center center;
	min-height: 360px;
	display: block;
	-webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
	margin-bottom: 20px;
}

.video-thumb{
	-webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
	margin-bottom: 20px;
}

.informatie-sectie{
	margin-bottom: 20px;
}

.informatie-sectie h4{
	color: #B92C29;
}

.informatie-sectie ul{
	padding-left: 15px;
	margin-bottom: 20px;
}

.informatie-sectie .bold{
	font-weight: 700;
}

.contact-section{
	color: #fff;
	text-align: center;
	padding: 40px;
	background-color: #B92C29;
	margin-top: 20px;
	-webkit-box-shadow: inset 0px 0px 50px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: inset 0px 0px 50px 0px rgba(0,0,0,0.1);
	box-shadow: inset 0px 0px 50px 0px rgba(0,0,0,0.1);
}

.ref{
	padding-left: 15px;
	padding-right: 15px;
}

/* buttons */

.btn {
    display: inline-block;
    padding: 10px 15px;
    margin-bottom: 3px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 3px solid transparent;
    border-radius: 0px;
    -webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
}

.btn-primary {
    color: #fff;
    background-color: #B92C29;
    border-color: #B92C29;
    transition: 0.3s ease all;
}

.btn-primary:hover {
    color: #fff;
    background-color: #595959;
    border-color: #595959;
    transition: 0.3s ease all;
}
.btn-primary.focus,
.btn-primary:focus {
    color: #fff;
    background-color: #595959;
    border-color: #595959;
    transition: 0.3s ease all;
}

.btn-secondary {
    color: #fff;
    background-color: #B92C29;
    border-color: #fff;
    transition: 0.3s ease all;
}

.btn-secondary:hover {
    color: #fff;
    background-color: #595959;
    border-color: #fff;
    transition: 0.3s ease all;
}
.btn-secondary.focus,
.btn-secondary:focus {
    color: #fff;
    background-color: #595959;
    border-color: #fff;
    transition: 0.3s ease all;
}

.btn-tertiairy {
    color: #fff;
    background-color: #FEA600;
    border-color: #FEA600;
    transition: 0.3s ease all;
}

.btn-tertiairy:hover {
    color: #fff;
    background-color: #595959;
    border-color: #595959;
    transition: 0.3s ease all;
}
.btn-tertiairy.focus,
.btn-tertiairy:focus {
    color: #fff;
    background-color: #595959;
    border-color: #595959;
    transition: 0.3s ease all;
}

/* news */

.news-holder {
	padding: 15px;
	background-color: #EDEDED;
	background-blend-mode: overlay;
}

.news-item{
	display: block;
	background-color: #EDEDED;
	color: #595959;
	margin-bottom: 20px;
	-webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
}

.news-item:hover {
  text-decoration: none;
}

.news-item h3{
	color: #B92C29;
}

.pagination-wrapper {
  padding:30px 0;
}

.pagination-wrapper .page-numbers {
  display: flex;
  justify-content: center;
  column-gap:5px;
}

.pagination-wrapper .page-numbers li {
  list-style: none;
}

.pagination-wrapper .page-numbers li span,
.pagination-wrapper .page-numbers li a {
  color:#000;
  font-size:18px;
}

.pagination-wrapper .page-numbers li span:hover,
.pagination-wrapper .page-numbers li a:hover {
  color: #B92C29;
}

.post-image{
	height: 175px;
  overflow: hidden;
}

.post-image img{
  object-fit: cover;
  object-position: 50%;
  width: 100%;
  height: 100%;
}

.post-content{
	position: relative;
	padding: 15px;
	padding-bottom: 35px;
}

.readmore{
	position: absolute;
	display: inline-block;
	padding: 5px 10px;
	background-color: #B92C29;
	color: #fff!important;
	font-weight: 700;
	left: 0;
	bottom: 0;
	margin-left: 15px;
	margin-bottom: 15px;
	-webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
	transition: 0.3s ease all;
}

.readmore:hover,
.readmore:focus{
	background-color: #595959;
	color: #fff!important;
	text-decoration: none;
	transition: 0.3s ease all;
}

.news-bottom{
	padding: 30px 0;
	text-align: center;
}

.news-slider .slick-track {
  display: flex!important;
}

.news-slider .slick-slide {
  opacity:0;
  transition: transform 0.3s;
  transition:opacity 0.3s ease;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
}

.news-slider .slick-current{
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease-in-out;
}

.news-slider .slick-active {
  opacity:1;
  transition: transform 0.3s ease-in-out;
}

.news-slider .slick-slide .post-content {
  min-height: 450px;
  max-height:450px;
}

@media (min-width: 992px) {
  .news-slider .slick-current{
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    transform: scale(1.2);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease-in-out;
  }

  .news-slider .slick-list { 
    padding:75px 60px !important;
    margin-left:30px !important;
  }
}

.category-holder-2{
	padding:15px;
	text-align: center;
  background-color:#fff;
  margin-bottom:50px;
}

/* Vacatures */

.vacature-item{
	display: block;
	background-color: #EDEDED;
	color: #595959;
	margin-bottom: 20px;
	-webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
}

.vacature-item h3{
	color: #B92C29;
}

.single-vacature .content .tekst-wrapper {
  margin-bottom:75px;
}

.single-vacature .post-afbeelding {
  min-height: 400px;
  height:100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.afbeelding-rechts-tekst, .afbeelding-links-tekst {
  position: relative;
  margin-bottom:75px;
}

.single-vacature .post-afbeelding.afbeelding-volle-breedte {
  margin-bottom:75px;
}

.afbeelding-rechts-tekst .tekst-wrapper, .afbeelding-links-tekst .tekst-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  height: 100%;
  margin-bottom: 50px;
}

/*.single-vacature .content .row {
  display: flex;
  flex-wrap: wrap;
}*/

.single-vacature .content .row .col-md-6 {
  flex:0 0 auto;
}

/* footer */

.footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	clear: both;
	background-color: #595959;
	min-height: 200px;
  	-webkit-box-shadow: inset 0px 0px 50px 0px rgba(0,0,0,0.1);
  	-moz-box-shadow: inset 0px 0px 50px 0px rgba(0,0,0,0.1);
	box-shadow: inset 0px 0px 50px 0px rgba(0,0,0,0.1);
}

.footer-section{
	padding: 25px 0;
}

.footer h2{
	font-size: 20px;
	color: #fff;
	margin-bottom: 20px;
	line-height: 20px;
}

.footer a{
	color: #fff;
	transition: 0.3s ease all;
}

.footer a:hover{
	color: #B92C29;
	transition: 0.3s ease all;
}

.footer p{
	color: #fff;
}

.footer ul{
	list-style: none;
	padding-left: 0px;
}

#contact-popup {
  position: fixed;
  right:50px;
  bottom:50px;
  display: block;
  z-index: 999;
}

#contact-popup #contact-cta {  
  width:250px;
  height:100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease all;
  scale: 1;
  animation-name: fade;
  animation-duration: .5s;
}

#contact-popup #contact-cta:hover {
  scale:1.1;
}

#contact-popup #contact-form {  
  display: block;
  animation-name: fade;
  animation-duration: .5s;
}

#contact-popup #contact-cta.hidden {
  display: none;
}

#contact-popup #contact-form.hidden {
  display: none;
}

#contact-popup #contact-cta .afbeelding {
  padding:15px;
  background-color:#fff;
}

#contact-popup #contact-cta .afbeelding img {
  width:75px;
}

#contact-popup #contact-cta .tekst {
  padding:15px;
  background-color: #B92C29;
  color:#fff;
}

#contact-popup #contact-cta .tekst p {
  margin-bottom:0;
}

#contact-form {
  background-color: #fff;
  border-radius: 25px;
  padding:30px;
  position: relative;
  z-index:9999;
}

#contact-form .close-btn {
  position: absolute;
  right:15px;
  top:15px;
  cursor: pointer;
}

#contact-form .close-btn i {
  font-size: 50px;
}

#contact-form .afbeelding {
  width:100%;
  text-align: center;
  margin-top:-75px;
  margin-bottom:30px;
}

#contact-form .afbeelding img {
  max-width: 150px;
}

#contact-form .details {
  display: flex;
  justify-content: space-between;
  margin-bottom:30px;
}

#contact-form .details a {
  color:#595959;
  text-decoration: none;
  font-size:18px;
}

#contact-form .details a:hover {
  text-decoration: none;
}

#contact-form .details a i {
  margin-right:10px;
}

@media only screen and (max-width : 576px) {
  #contact-popup {
    position: fixed;
    right:10px;
    bottom:10px;
    left:10px;
    display: flex;
    justify-content: flex-end;
  }

  #contact-popup #contact-cta {  
    width:200px;
    height:75px;
  }

  #contact-form .details a {
    font-size:16px;
  }

  #contact-form .details a i {
    margin-right:5px;
  }
  
  #contact-popup #contact-cta .afbeelding img {
    width:40px;
  }
  
  #contact-popup #contact-cta .tekst {
    padding:10px;
  }
}

#offerteformulier {
  display: flex;
  justify-content: center;
  align-items: center;
}

#offerteformulier .form-wrapper {
  width: 800px;
  max-width:100%;
  padding:75px 100px;
  background-color: #fff;
  position: relative;
}

#offerteformulier .form-wrapper .close-btn {
  color:#B92C29;
  position: absolute;
  right:25px;
  top:25px;
  left:unset;
  font-weight: bold;
  font-size: 24px;
  cursor:pointer;
}

#offerteformulier .form-wrapper h3 {
  font-weight: bold;
}

#offerteformulier .form-wrapper p {
  font-size:16px;
  font-weight: bold;
}

#offerteformulier .form-wrapper span {
  margin-top:5px;
}

@media only screen and (max-width : 576px) {
  #offerteformulier .form-wrapper {
    padding:50px;
  }
}

/* slider */

.slider-container {
  position: relative;
}

.category {
  flex: 1 0 50%;
}

.cta-button {
  display: none;
  align-items: center;
  width: 301px;
  justify-content: center;
  margin-top: 15px;
  margin-bottom: 15px;
  position: fixed;
  right:18px;
  top:20%;
  transform: rotate(-90deg) translate(0, 150.5px);
  z-index:999;
}

.btn.btn-primary.green {
  background: #99c241;
  border: none;
}

.btn.btn-primary.green:hover  {
  background-color: #595959;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .category {
    flex: 1 0 33.3%;
  }

  .cta-button {
    display: flex;
  }
}

@media (min-width: 992px) {
  .cta-button {
    width: auto;
    margin-top: inherit;
    margin-bottom: inherit;
    top:40%;
  }

  .category {
    flex: 1 0 12%;
  }

}

/* FAQ */
#faqAccordion .subject-wrapper {
  margin-bottom:2rem;
}

#faqAccordion .subject-wrapper .panel {
  box-shadow:none;
  border-radius: 0px;
  margin-bottom:2rem;
}

#faqAccordion .subject-wrapper .panel .panel-heading {
  padding:20px 30px;
  background-color: transparent;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

#faqAccordion .subject-wrapper .panel .panel-heading .panel-title {
  max-width:calc(100% - 30px);
  position: relative;
}

#faqAccordion .subject-wrapper .panel .panel-heading .panel-title::after {
  content:"";
  position: absolute;
  right:-30px;
  left:unset;
  top: 50%;
  background-image:url('../allup/images/chevron-right-red.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height:30px;
  width:30px;
  transition: 0.3s ease all;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center center;
}

#faqAccordion .subject-wrapper .panel .panel-heading.collapsed .panel-title::after {
  transform: translateY(-50%) rotate(0deg);
}

#faqAccordion .subject-wrapper .panel .panel-body {
  padding:20px 30px;
  max-width:calc(100% - 30px);
}

.panel-group .panel-heading+.panel-collapse>.panel-body {
  border-top:0px;
}

mark.__hl { background: #ffec99; padding:0 .1em; }

.search-wrapper {
  position: relative;
  display: flex;
  width: 100%;
  align-items:center;
  padding:0 10%;
  gap:1rem;
  margin-bottom:50px;
}

.search-wrapper .fa-search {
  position: absolute;
  left: calc(10% + 20px);
  top: 50%;
  transform: translateY(-50%);
  color: #000;
  pointer-events: none; /* klik gaat naar input */
}

.search-wrapper .fa-search::before {
  font-size:40px;
}

.search-wrapper input[type="search"] {
  padding-left: 100px; /* ruimte voor icoon */
  width: 100%;
  border: 1px solid #000;
  border-radius: 0;
  height: 58px;
  box-sizing: border-box;
  color:#000;
  font-size:16px;
}

.search-wrapper button {
  box-shadow: none;
  margin-bottom:0;
  height:58px;
  font-size:18px;
}

/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;
    bottom:unset;
    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    z-index: 20;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'FontAwesome';
    font-size: 25px;
    line-height: 1;

    opacity: .9;
    color: #000;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slider .slick-prev:before,
.slider .slick-next:before
{
  color: white;
}

.slider .slick-prev
{
    left: -300px;
    right:0;
    margin:0 auto;
}
[dir='rtl'] .slick-prev
{
    right: 25px;
    left: auto;
}
.slick-prev:before
{
    content: '\f053';
}
[dir='rtl'] .slick-prev:before
{
    content: '\f053';
}

.slider .slick-next
{
  right: -300px;
  left:0;
  margin:0 auto;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: 25px;
}
.slick-next:before
{
    content: '\f054';
}
[dir='rtl'] .slick-next:before
{
    content: '\f054';
}

.slider .slick-prev,
.slider .slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: unset;
    bottom:67px;
    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    z-index: 20;
}

.news-slider .slick-next,
.news-slider .slick-prev {
  top:50%;
  bottom:unset;
  margin:unset;
}

.news-slider .slick-next {
  right:-10px;
  left:unset;
}

.news-slider .slick-prev {
  left:-10px;
  right:unset;
}

.slick-next,
.slick-prev {
  top:50%;
  bottom:unset;
  margin:unset;
}

.slick-next {
  right:0px;
  left:unset;
}

.slick-prev {
  left:0px;
  right:unset;
}

@media (min-width: 768px) {
  .slick-next {
    right:-25px;
  }
  
  .slick-prev {
    left:-25px;
  }
}

@media (min-width: 992px) {
  .slick-next {
    right:-50px;
  }
  
  .slick-prev {
    left:-50px;
  }
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 0px;
}

.slick-dots
{
    position: absolute;
    bottom: 75px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'FontAwesome';
    font-size: 20px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '\f10c';
    text-align: center;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: 1;
    color: white;
    content: '\f111';
}

.embed-container{
	position: relative;
	padding-bottom: 45%;
	height: 100%;
	overflow: hidden;
	max-width: 100%;
	margin-bottom: 0px;
	-webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
}

.embed-container iframe,
.embed-container object,
.embed-container embed{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.single .embed-container {
  padding-bottom:56%;
}

.grecaptcha-badge{
	display: none;
}

.wpcf7{
    margin-bottom: 30px;
}

.wpcf7 br {
  display: none;
}
.wpcf7 p {
  margin: 0;
}

.wpcf7 label {
  width:100%;
}

.wpcf7 .screen-reader-response {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 1px;
  margin: 0;
  padding: 0;
  border: 0;
}

.wpcf7 form .wpcf7-response-output {
  margin: 0;
  margin-top: 10px;
  padding: 15px;
  border: 1px solid #00a0d2;
  /* Blue */
  border-radius: 10px;
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
  display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
  /* Red */
}

.wpcf7 form.spam .wpcf7-response-output {
  border-color: #f56e28;
  /* Orange */
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
  /* Yellow */
}

.wpcf7-form-control-wrap {
  display: block;
  position: relative;
  margin-bottom: 10px;
}
.wpcf7-form-control-wrap input {
  width: 100%;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid #CCCACA;
  transition: 0.3s ease all;
}

.zero-emission-form .wpcf7-form-control-wrap input{
  line-height: 40px;
  font-size: 20px;
  color: #C7C7C7;
}

.wpcf7-form-control-wrap textarea {
  width: 100%!important;
  padding: 10px 5px;
  border-radius: 5px;
  border: 1px solid #CCCACA;
  transition: 0.3s ease all;
}
.wpcf7-form-control-wrap select {
  width: 100%!important;
  padding: 10px 5px;
  border-radius: 5px;
  border: 1px solid #CCCACA;
  transition: 0.3s ease all;
}
.wpcf7-form-control-wrap textarea:focus,
.wpcf7-form-control-wrap input[type=text]:focus,
.wpcf7-form-control-wrap input[type=password]:focus,
.wpcf7-form-control-wrap input[type=datetime]:focus,
.wpcf7-form-control-wrap input[type=datetime-local]:focus,
.wpcf7-form-control-wrap input[type=date]:focus,
.wpcf7-form-control-wrap input[type=month]:focus,
.wpcf7-form-control-wrap input[type=time]:focus,
.wpcf7-form-control-wrap input[type=week]:focus,
.wpcf7-form-control-wrap input[type=number]:focus,
.wpcf7-form-control-wrap input[type=email]:focus,
.wpcf7-form-control-wrap input[type=url]:focus,
.wpcf7-form-control-wrap input[type=search]:focus,
.wpcf7-form-control-wrap input[type=tel]:focus,
.wpcf7-form-control-wrap input[type=color]:focus,
.wpcf7-form-control-wrap .uneditable-input:focus {
  border-color: rgba(33, 181, 243, 0.8);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(33, 181, 243, 0.8);
  outline: 0 none;
  transition: 0.3s ease all;
}

.zero-emission-form .wpcf7-form-control-wrap textarea:focus,
.zero-emission-form .wpcf7-form-control-wrap input[type=text]:focus,
.zero-emission-form .wpcf7-form-control-wrap input[type=password]:focus,
.zero-emission-form .wpcf7-form-control-wrap input[type=datetime]:focus,
.zero-emission-form .wpcf7-form-control-wrap input[type=datetime-local]:focus,
.zero-emission-form .wpcf7-form-control-wrap input[type=date]:focus,
.zero-emission-form .wpcf7-form-control-wrap input[type=month]:focus,
.zero-emission-form .wpcf7-form-control-wrap input[type=time]:focus,
.zero-emission-form .wpcf7-form-control-wrap input[type=week]:focus,
.zero-emission-form .wpcf7-form-control-wrap input[type=number]:focus,
.zero-emission-form .wpcf7-form-control-wrap input[type=email]:focus,
.zero-emission-form .wpcf7-form-control-wrap input[type=url]:focus,
.zero-emission-form .wpcf7-form-control-wrap input[type=search]:focus,
.zero-emission-form .wpcf7-form-control-wrap input[type=tel]:focus,
.zero-emission-form .wpcf7-form-control-wrap input[type=color]:focus,
.zero-emission-form .wpcf7-form-control-wrap .uneditable-input:focus {
  border-color: #fff;
  box-shadow: #fff;
}

.wpcf7-not-valid-tip {
  color: #721c24;
  background-color: #f8d7da;
  font-size: 1em;
  font-weight: normal;
  display: inline-block;
  margin-top: 5px;
  border: 1px solid #f5c6cb;
  padding: 5px 10px;
  border-radius: 5px;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
  position: relative;
  top: -2ex;
  left: 1em;
  z-index: 100;
  border: 1px solid #dc3232;
  background: #fff;
  padding: 0.2em 0.8em;
  width: 24em;
}

.wpcf7-list-item {
  display: inline-block;
  margin: 0 0 0 1em;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
  content: " ";
}

.wpcf7 .ajax-loader {
  visibility: hidden;
  display: inline-block;
  background-color: #23282d;
  /* Dark Gray 800 */
  opacity: 0.75;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 100%;
  padding: 0;
  margin: 0 24px;
  position: relative;
}

.wpcf7 form.submitting .ajax-loader {
  visibility: visible;
}

.wpcf7 .ajax-loader::before {
  content: "";
  position: absolute;
  background-color: #fbfbfc;
  /* Light Gray 100 */
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border: none;
  border-radius: 100%;
  transform-origin: 8px 8px;
  animation-name: spin;
  animation-duration: 1000ms;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
  .wpcf7 .ajax-loader::before {
    animation-name: blink;
    animation-duration: 2000ms;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes blink {
  from {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.wpcf7 input[type=file] {
  cursor: pointer;
}

.wpcf7 input[type=file]:disabled {
  cursor: default;
}

.wpcf7-checkbox{
    margin: 0;
}

.wpcf7-list-item{
    display: block;
    margin: 0;
}

.wpcf7-checkbox .wpcf7-list-item input{
    width: auto;
}

.wpcf7 .wpcf7-submit:disabled {
  cursor: not-allowed;
}

.wpcf7 input[type=url],
.wpcf7 input[type=email],
.wpcf7 input[type=tel] {
  direction: ltr;
}

/* breadcrumbs */

.breadcrumb{
	background-color: #fff;
	padding: 15px 0;
	line-height: 24px;
}

.breadcrumb i{
	margin: 0px 10px;
	vertical-align: bottom;
	line-height: 24px;
	color: #B92C29;
}

/* cart */

.woo_cart{
  position: relative;
	display: inline-block;
	color: #fff;
  background-color: #B92C29;
	transition: 0.3s ease all;
}

.woo_cart:hover{
	color: #fff;
  background-color: #595959;
	transition: 0.3s ease all;
}

.cart-count{
  position: absolute;
	display: inline-block;
	background-color: #000;
  border: 1px solid #ff0000;
	font-size: 12px;
  font-weight: 700;
	color: #ff0000;
	width: 16px;
	height: 16px;
	line-height: 14px;
	text-align: center;
	border-radius: 50%;
	margin-left:-4px;
  box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
}

#add_payment_method table.cart td.actions .coupon .input-text, 
.woocommerce-cart table.cart td.actions .coupon .input-text, 
.woocommerce-checkout table.cart td.actions .coupon .input-text {
  float: none;
  box-sizing: border-box;
  border: 1px solid #B92C29;
  padding: 6px 6px 5px;
  margin: 0 4px 0 0;
  outline: 0;
}

/** woocommerce **/

.woocommerce a{
  color: #B92C29;
}

.woocommerce .btn-primary,
.woocommerce .btn-secondary,
.woocommerce .social-icon-holder,
.woocommerce .footer a {
  color:#fff;
}

.product-categories{
	margin: 0;
}

.product-item{
	position: relative;
	margin-bottom: 10px;
	border: 1px solid #e7e7e7;
	/*-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.25);
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.25);*/
}

.product-item h2, .price{
	margin-bottom: 15px;
}

.product-item h2{
  margin-top: 15px;
	font-size: 20px;
}

.product-item a{
	display: block;
	color: #B92C29;
}

.product-item .price{
	display: block;
	margin-bottom: 15px;
}

.woocommerce .woocommerce-result-count, 
.woocommerce-page .woocommerce-result-count {
    float: none;
}

.woocommerce .woocommerce-ordering, 
.woocommerce-page .woocommerce-ordering {
    float: none;
}

.woocommerce .product-item {
  padding:15px;
}

.categories-holder{
	margin-bottom: 30px;
    background-color: rgba(185,44,41,0.8);
    -webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
    box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
    padding: 15px;
}

.product-categories{
	padding-left: 0px;
	list-style: none;
}

.product-categories li ul{
	padding-left: 15px;
	list-style: none;
}

.product-categories a{
  display: inline-block;
  font-weight: 400;
	color: #fff;
  margin-bottom: 5px;
}

.parent.active a{
	font-weight: 700;
	color: #fff;
}

.parent.active ul a{
	font-weight: 400;
}

.child.active a{
	font-weight: 700;
	color: #fff;
}

.woocommerce-pagination{
	margin-bottom: 20px;
}

.woocommerce nav.woocommerce-pagination ul li a, 
.woocommerce nav.woocommerce-pagination ul li span {
    margin: 0;
    text-decoration: none;
    padding: 0;
    line-height: 1;
    font-size: 18px;
    font-weight: 400;
    padding: .5em;
    min-width: 1em;
    display: block;
}

.form-row{
	display: block;
}

.woocommerce #respond input#submit.disabled, 
.woocommerce #respond input#submit:disabled, 
.woocommerce #respond input#submit:disabled[disabled], 
.woocommerce a.button.disabled, 
.woocommerce a.button:disabled, 
.woocommerce a.button:disabled[disabled], 
.woocommerce button.button.disabled, 
.woocommerce button.button:disabled, 
.woocommerce button.button:disabled[disabled], 
.woocommerce input.button.disabled, 
.woocommerce input.button:disabled, 
.woocommerce input.button:disabled[disabled] {
    color: #fff;
    cursor: not-allowed;
    opacity: .5;
    padding: 15px;
}

.woocommerce #respond input#submit.disabled:hover, 
.woocommerce #respond input#submit:disabled:hover, 
.woocommerce #respond input#submit:disabled[disabled]:hover, 
.woocommerce a.button.disabled:hover, 
.woocommerce a.button:disabled:hover, 
.woocommerce a.button:disabled[disabled]:hover, 
.woocommerce button.button.disabled:hover, 
.woocommerce button.button:disabled:hover, 
.woocommerce button.button:disabled[disabled]:hover, 
.woocommerce input.button.disabled:hover, 
.woocommerce input.button:disabled:hover, 
.woocommerce input.button:disabled[disabled]:hover {
    color: #fff;
    background-color: #595959;
}

.woocommerce #respond input#submit:hover, 
.woocommerce a.button:hover, 
.woocommerce button.button:hover, 
.woocommerce input.button:hover {
    background-color: #595959;
    text-decoration: none;
    background-image: none;
    color: #fff;
}

.woocommerce #respond input#submit, 
.woocommerce a.button, 
.woocommerce button.button, 
.woocommerce input.button {
    font-size: 100%;
    margin: 0;
        margin-bottom: 0px;
    line-height: 1;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    overflow: visible;
    padding: 15px;
    font-weight: 400;
    border-radius: 0px;
    left: auto;
    color: #fff;
    background-color: #B92C29;
    border: 0;
    display: inline-block;
    background-image: none;
    box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
    text-shadow: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.woocommerce #respond input#submit.alt, 
.woocommerce a.button.alt, 
.woocommerce button.button.alt, 
.woocommerce input.button.alt {
  background-color: #B92C29;
  color: #fff;
  -webkit-font-smoothing: antialiased;
}

.woocommerce #respond input#submit.alt:hover, 
.woocommerce a.button.alt:hover, 
.woocommerce button.button.alt:hover, 
.woocommerce input.button.alt:hover {
  background-color: #595959;
  color: #fff;
}

.woocommerce div.product p.price, 
.woocommerce div.product span.price {
  color: #B92C29;
  font-size: 18px;
}

.woocommerce div.product div.images.woocommerce-product-gallery {
  position: relative;
  margin-left: -15px;
  margin-right: -15px;
}

.woocommerce-product-gallery__image{
	margin: 15px;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
}

.woocommerce-message {
  border-top-color: #B92C29;
}

.woocommerce-message::before {
  content: "\e015";
  color: #B92C29;
}

.woocommerce span.onsale{
  min-width: 3.236em;
  padding: .502em;
  top: -.7em;
  left: -.7em;
  background-color: #99c241;
  color: #fff;
  font-size: .857em;
}

.product-stock{
  margin-bottom: 20px;
  font-weight: 700;
}

.instock_big{
  color: #99c241;
}

.not_instock_big{
  color: #B92C29;
}

.woocommerce-loop-product__link{
  margin-bottom: 15px;
}

/* zero emission template */

.zero-header{
  position: relative;
}

@media (min-width: 1600px) {
  .zero-header{
    position: relative;
  }
}

.zero-header .overlay{
  position: relative;
  background-color: rgba(0,0,0,0.6);
  padding-top: 100px;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.zero-header .logo-holder{
  position: relative;
  width: 100px;
  height: 55px;
}

.zero-header .logo-holder a{
  display: block;
  width: 100px;
  height: 55px;
}

@media (min-width: 992px) {
	.zero-header .logo-holder{
    position: relative;
    width: 174px;
    height: 95px;
  }
  
  .zero-header .logo-holder a{
    display: block;
    width: 174px;
    height: 95px;
  }
}

.zero-header .logo-holder a img{
  width: 100%;
  height: auto;
  max-height: 100%;
  margin: 0;
}

.zero-header .headerimg,
.zero-header video{
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: 50%;
  height: 100%;
  width: 100%;
  z-index: 0!important;
}

.page-template-zeroemission-page .container{
  position: relative;
}

@media (min-width: 1400px) {
  .page-template-zeroemission-page .container{
    width: 1320px;
  }
}

@media (min-width: 1560px) {
  .page-template-zeroemission-page .container{
    width: 1440px;
  }
}

@media (min-width: 1700px) {
  .page-template-zeroemission-page .container{
    width: 1600px;
  }
}

.zero-header .header-content{
  padding: 50px 20px;
  margin: 0px 25px;
  margin-top: 25px;
  border-left: 1px solid #3DBFF0;
}

@media (min-width: 992px) {
	.zero-header .header-content{
    padding: 100px 40px;
    margin: 0px 50px;
    margin-top: 50px;
    border-left: 1px solid #3DBFF0;
  }
}

.zero-header .header-content .social{
  position: relative;
  padding-top: 25px;
  width: 100%;
}

.zero-header .header-content .social .social-icon-holder{
  background-color: transparent;
  border: 2px solid #fff;
  margin-right: 10px;
  transition: 0.3s ease all;
  padding: 4px;
}

.zero-header .header-content .social .social-icon-holder:hover{
  background-color: #3DBFF0;
  border: 2px solid #3DBFF0;
  transition: 0.3s ease all;
}

@media (min-width: 992px) {
	.zero-header .header-content .social .social-icon-holder{
    width: 50px;
    line-height: 40px;
    font-size: 28px;
    margin-right: 15px;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
  }
}

.zero-header .header-content h1{
  font-size: 25px;
  line-height: 36px;
  margin-bottom: 25px;
  color: #fff;
}

@media (min-width: 992px) {
	.zero-header .header-content h1{
    font-size: 50px;
    line-height: 72px;
    margin-bottom: 50px;
    color: #fff;
  }
}

.zero-header .header-content h2{
  font-size: 20px;
  line-height: 31px;
  margin-bottom: 20px;
  color: #fff;
}

@media (min-width: 992px) {
	.zero-header .header-content h2{
    font-size: 40px;
    line-height: 62px;
    margin-bottom: 40px;
    color: #fff;
  }
}

.zero-header .header-content h3{
  font-size: 15px;
  line-height: 15px;
  margin-bottom: 20px;
  color: #3DBFF0;
}

@media (min-width: 992px) {
	.zero-header .header-content h3{
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 40px;
    color: #3DBFF0;
  }
}

.page-template-zeroemission-page img{
  position: relative;
  width: 100%;
  height: auto;
  z-index: 1;
}

.page-template-zeroemission-page .btn {
  display: inline-block;
  padding: 5px 5px;
  margin-bottom: 5px;
  margin-right: 5px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 18px;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 3px solid transparent;
  border-radius: 0px;
  -webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0);
  -moz-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0);
  box-shadow: 0px 5px 5px 0px rgba(0,0,0,0);
}

@media (min-width: 992px) {
	.page-template-zeroemission-page .btn {
    padding: 10px 10px;
    margin-bottom: 5px;
    margin-right: 5px;
    font-size: 21px;
    line-height: 24px;
  }
}

.page-template-zeroemission-page .btn2{
  padding: 10px 15px;
  font-size: 14px;
  line-height: 16px;
}

.page-template-zeroemission-page .btn-primary {
  color: #fff;
  background-color: #3DBFF0;
  border-color: #3DBFF0;
  transition: 0.3s ease all;
}

.page-template-zeroemission-page .btn-primary:hover {
  color: #3DBFF0;
  background-color: #fff;
  border-color: #3DBFF0;
  transition: 0.3s ease all;
}
.page-template-zeroemission-page .btn-primary.focus,
.page-template-zeroemission-page .btn-primary:focus {
  color: #3DBFF0;
  background-color: #fff;
  border-color: #3DBFF0;
  transition: 0.3s ease all;
}

.page-template-zeroemission-page .inline-text{
  border-radius: 0;
  border: 1px solid #fff;
}

.page-template-zeroemission-page .btn-inline-white{
  color: #000;
  background-color: #fff;
  padding: 11.5px 15px;
  transition: 0.3s ease all;
}

.page-template-zeroemission-page .btn-inline-white:hover{
  color: #fff;
  background-color: #000;
  transition: 0.3s ease all;
}

.page-template-zeroemission-page .section{
  padding: 35px 0;
  position: relative;
  -webkit-box-shadow: inset 0px 0px 50px 0px rgba(0,0,0,0);
  -moz-box-shadow: inset 0px 0px 50px 0px rgba(0,0,0,0);
  box-shadow: inset 0px 0px 50px 0px rgba(0,0,0,0);
}

@media (min-width: 992px) {
	.page-template-zeroemission-page .section{
    padding: 75px 0;
  }
}

.page-template-zeroemission-page .section.white{
  background-color: #fff;
  color: #000;
}

.page-template-zeroemission-page .section.grey{
  background-color: #F8F8F8;
  color: #000;
}

.page-template-zeroemission-page .section.blue{
  background-color: #3DBFF0;
  color: #fff;
}

.page-template-zeroemission-page .section .none{
  background-color: transparent;
  color: #000;
  padding: 0px;
}

.page-template-zeroemission-page .section .white{
  background-color: #fff;
  color: #000;
  padding: 20px;
}

@media (min-width: 992px) {
	.page-template-zeroemission-page .section .white{
    padding: 40px;
  }
}

.page-template-zeroemission-page .section .grey{
  background-color: #F8F8F8;
  color: #000;
  padding: 20px;
}

@media (min-width: 992px) {
	.page-template-zeroemission-page .section .grey{
    padding: 40px;
  }
}

.page-template-zeroemission-page .section .blue{
  background-color: #3DBFF0;
  color: #fff;
  padding: 40px;
}

.page-template-zeroemission-page .section .links{
  margin-right: 0px;
}

@media (min-width: 992px) {
	.page-template-zeroemission-page .section .links .none{
    width: calc(100% + 80px);
    margin-right: -80px;
  }
}

.page-template-zeroemission-page .section .links .white{
  padding-right: 20px;
}

@media (min-width: 992px) {
	.page-template-zeroemission-page .section .links .white{
    padding-right: 80px;
  }
}

.page-template-zeroemission-page .section .links .grey{
  padding-right: 20px;
}

@media (min-width: 992px) {
	.page-template-zeroemission-page .section .links .grey{
    padding-right: 80px;
  }
}

.page-template-zeroemission-page .section .links .blue{
  padding-right: 20px;
}

@media (min-width: 992px) {
	.page-template-zeroemission-page .section .links .blue{
    padding-right: 80px;
  }
}

.page-template-zeroemission-page .section .rechts{
  margin-left: 0px;
}


@media (min-width: 992px) {
	.page-template-zeroemission-page .section .rechts .none{
    width: calc(100% + 80px);
    margin-left: -80px;
  }
}

.page-template-zeroemission-page .section .rechts .white{
  padding-left: 20px;
}

@media (min-width: 992px) {
	.page-template-zeroemission-page .section .rechts .white{
    padding-left: 80px;
  }
}

.page-template-zeroemission-page .section .rechts .grey{
  padding-left: 20px;
}

@media (min-width: 992px) {
	.page-template-zeroemission-page .section .rechts .grey{
    padding-left: 80px;
  }
}

.page-template-zeroemission-page .section .rechts .blue{
  padding-left: 20px;
}

@media (min-width: 992px) {
	.page-template-zeroemission-page .section .rechts .blue{
    padding-left: 80px;
  }
}

@media (min-width: 992px) {
	.page-template-zeroemission-page .align-items-center{
    display: flex;
    flex-wrap: wrap;
    align-items: center !important;
  }
}

.page-template-zeroemission-page .align-items-center .last-item{
  margin-left: auto;
}

.page-template-zeroemission-page .section p{
  color: #000;
  font-size: 14px;
  line-height: 30px;
  margin-bottom: 20px;
}

.page-template-zeroemission-page .section p a{
  color: #3DBFF0;
}

.page-template-zeroemission-page .wpcf7 p{
  font-size: 14px!important;
  line-height: 1.42857143!important;
}

@media (min-width: 992px) {
	.page-template-zeroemission-page .section p{
    font-size: 18px;
    line-height: 40px;
    margin-bottom: 40px;
  }
}

.page-template-zeroemission-page .section h2{
  color: #3DBFF0;
  font-size: 20px;
  line-height : 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

@media (min-width: 992px) {
	.page-template-zeroemission-page .section h2{
    font-size: 40px;
    line-height : 50px;
    margin-bottom: 20px;
  }
}

.page-template-zeroemission-page .section.blue h2,
.page-template-zeroemission-page .section.blue h3,
.page-template-zeroemission-page .section.blue h4,
.page-template-zeroemission-page .section.blue p{
  color: #fff;
}

.page-template-zeroemission-page .section h3{
  color: #000;
  font-size: 20px;
  line-height : 36px;
  font-weight: 700;
  margin-bottom: 25px;
}

@media (min-width: 992px) {
	.page-template-zeroemission-page .section h3{
    font-size: 40px;
    line-height : 72px;
    margin-bottom: 50px;
  }
}

.page-template-zeroemission-page .section h3 span{
  color: #3DBFF0;
}

.page-template-zeroemission-page .uitgelicht-afbeelding{
  aspect-ratio: 16/9;
}

.page-template-zeroemission-page .uitgelicht-afbeelding img{
  object-fit: contain;
  object-position: 50%;
  height: 100%;
  width: 100%;
}

.aflever-item,
.machine-item{
  display: block;
}

.page-template-zeroemission-page .aflevering-afbeelding{
  aspect-ratio: 4/3;
  margin: 0px 10px;
}

.page-template-zeroemission-page .aflevering-afbeelding img{
  object-fit: cover;
  object-position: 50%;
  height: 100%;
  width: 100%;
}

.page-template-zeroemission-page .machine-afbeelding{
  position: relative;
  aspect-ratio: 1/1;
  margin: 0px 10px;
}

.page-template-zeroemission-page .machine-afbeelding img{
  object-fit: cover;
  object-position: 50%;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 0;
}

.page-template-zeroemission-page .machine-afbeelding .overlay{
  position: absolute;
  padding: 15px;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-template-zeroemission-page .slider-holder{
  position: relative;
  padding: 50px 0;
  width: 100%;
}

.page-template-zeroemission-page .slider-holder .slick-dots {
  position: absolute;
  bottom: -50px;
}

.slider-nav{
  position: relative;
}

.slider-nav .nav-btn{
  color: #3DBFF0;
  cursor: pointer;
  font-size: 40px;
  transition: 0.3s ease all;
  display: inline-block;
  margin-right: 10px;
}

.slider-nav .nav-btn:hover{
  color: #000;
  transition: 0.3s ease all;
}

.page-template-zeroemission-page .slider-holder .slick-dots li button::before{
  font-size: 15px;
  line-height: 20px;
  color:#707070;
  content: '\f111';
  opacity: 0.6;
}

.page-template-zeroemission-page .slider-holder .slick-dots li.slick-active button::before{
  opacity: 1;
}

.page-template-zeroemission-page .machine-slider{
  position: relative;
  width: 100%;
}

.page-template-zeroemission-page .machine-slider .slick-track{
  display: flex;
}

.page-template-zeroemission-page .machine-slider .slick-slide{
  height: auto;
}

.page-template-zeroemission-page .machine-slider .machine-slide{
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 10px;
  background-color: #fff;
}

.page-template-zeroemission-page .machine-slider .machine-slide .image{
  position: relative;
  flex-shrink: 0;
  height: 300px;
  background: #fff;
}

.page-template-zeroemission-page .machine-slider .machine-slide .image .icon{
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.25);
  color: #00C854;
  font-size: 20px;
  line-height: 1;
}

.page-template-zeroemission-page .machine-slider .machine-slide .image img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.page-template-zeroemission-page .machine-slider .machine-slide .machine-info{
  flex: 1 0 auto;
  padding: 15px;
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  text-align: left;
}

.page-template-zeroemission-page .machine-slider .machine-slide .machine-info p{
  line-height: 22px;
  margin-bottom:1rem;
}

.page-template-zeroemission-page .machine-slider .machine-slide .machine-info p.bold{
  font-weight:bold;
}

.page-template-zeroemission-page .machine-slider .machine-slide .machine-info li{
  position:relative;
  padding-left:1.6em;
  margin-bottom:6px;
  font-size:16px;
  line-height:1.6;
}

.page-template-zeroemission-page .machine-slider .machine-slide .machine-info li .fa{
  position:absolute;
  left:0;
  top:0;
  line-height:inherit;
}

.page-template-zeroemission-page .machine-slider .machine-slide .machine-button{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  width: 100%;
  padding: 12px 15px;
  background-color: #3DBFF0;
  color: #fff;
  text-decoration: none;
}

.page-template-zeroemission-page .machine-slider .machine-slide .machine-button span{
  font-weight: 700;
  font-size: 16px;
  text-align: left;
}

.page-template-zeroemission-page .machine-slider .machine-slide .machine-button .fa-chevron-right{
  flex-shrink: 0;
  font-size: 18px;
  color: #fff;
}

.page-template-zeroemission-page .zero-news-slider{
  position: relative;
  width: 100%;
}

.page-template-zeroemission-page .zero-news-slider .zero-news-item{
  position: relative;
  margin: 10px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
}

.page-template-zeroemission-page .zero-news-slider .zero-news-item .image{
  aspect-ratio: 4/3;
}

.page-template-zeroemission-page .zero-news-slider .zero-news-item .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50%;
}

.page-template-zeroemission-page .zero-news-slider .zero-news-item .info{
  padding: 15px;
  padding-bottom: 25px;
}

.page-template-zeroemission-page .zero-news-slider .zero-news-item .info-btn{
  padding: 15px;
  padding-bottom: 25px;
}

.page-template-zeroemission-page .zero-news-slider .zero-news-item .info h3{
  font-size: 16px;
  line-height: 30px;
  color: #3DBFF0;
}

@media (min-width: 992px) {
	.page-template-zeroemission-page .zero-news-slider .zero-news-item .info h3{
    font-size: 20px;
  line-height: 40px;
  }
}