/************************************************

Stylesheet: Global Stylesheet

*************************************************/
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@400;500;700;800&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;800&display=swap');

body {
    font-family: 'Roboto'!important;
}


/* font-family: 'Mulish', sans-serif; */

.grecaptcha-badge {
	display:none;
}

body{
  font-family: 'Roboto', sans-serif;
  margin:0;
  overflow-x: hidden;
}

a{
  color:#E3051A;
  font-weight:600;
  text-decoration: none;
}

p{
  line-height:1.5;
}

article h2{
  margin-top:32px;
}

.btn{
    background-color: #E3051A;
    color: white;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 4px;
    margin-top: 6px;
    font-size:0.8rem;
}

.btn:hover{
  cursor:pointer;
  transform:scale(0.98);
}

.wp-block-button__link{
  margin-top:8px;
  margin-bottom:8px;
}

.wp-block-button__link:hover{
  transform:scale(0.98);
}

/***** NAVIGATIE *****/
.top-bar{
  display:flex;
  justify-content:space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

@media (max-width:1000px) {
  .top-bar {
    justify-content: center;
  }
}


.logo{
  max-width:243px;
}

.afval-container, .solliciteer-container, .contact-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  margin: 0 4px;
} 

.winkelwagen-knop{
	margin: 12px;
	line-height: 1;
	cursor: pointer;
	position: relative;
	text-decoration: none;
	overflow: visible;
	padding: .618em 1em;
	font-weight: 700;
	border-radius: 3px;
	color: #515151;
	background-color: #ebe9eb;
	display: inline-block;
}

.winkelwagen-knop:hover{
	background-color:#d8d8d8;
}


.oranje-blok{
  max-width:154px;
  color:white;
  background-color:#E3051A;
  padding:0.8rem;
  padding-top: 0.6rem;
  border-radius:8px;
  height: fit-content;
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  text-align:center;
}

.zwart-blok{
  max-width:154px;
  color:white;
  background-color:#000;
  padding:0.8rem;
  padding-top: 0.6rem;
  border-radius:8px;
  height: fit-content;
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  text-align:center;
}


.webshop-keurmerk{
	padding-top:20px;
}
.webshop-keurmerk img{
	max-width: 154px;
    padding: 0.8rem;
    padding-top: 0.6rem;
    height: fit-content;
    text-align: center;
}

.logo-afvalcontainer img{
  max-width:206px;
}

.rol-container{
  display:flex;
  align-items: center;
}

.logo-rolcontainer img{
  max-width:206px;
}

.menu-balk{
  background-color:#E3051A;
  position:relative;
  min-height: 53px;
  margin-bottom:-2px;
}

.menu-balk ul{
  display:flex;
  justify-content: center;
  padding-inline-start: 0px;
  list-style:none;
  margin:0 auto;
}

.menu-balk li a{
  color:white;
  display:flex;
  font-weight:600;
  padding: 1rem 1.75rem 1rem 0rem;
  font-size: 13px;
  text-transform:uppercase;
  text-decoration:none;
  white-space: nowrap;
}

.menu-balk li a:hover{
  color:black;
}



ul.menu{
  display:none;
  position: absolute;
  top: 39px;
  border: 1px solid white;
  z-index: 3;
  flex-direction: column;
  background: #E3051A;
  padding: 16px 30px;
  z-index:3;
}

#main-nav ul.menu li a{
  padding:8px 0px;
}
.menu-item-has-children:hover ul.menu,
.menu-item-has-children.menu-item-active ul.menu {display: block;}

.menu-item-has-children > a {
  display: inline-block;
  position: relative;
}
.menu-item-has-children > a:after {
  display: inline-block;
  transform: rotate(90deg);
  right: 1em;
  position: absolute;
}

.menu-item-has-children:hover > a:after ,
.menu-item-has-children.menu-item-active > a:after {
  transform: rotate(0deg);
}
@media only screen and (max-width: 1000px) {
  .menu-item-has-children > a {
    width: 100%;
  }
  .menu-item-has-children > a:after {
    content: '';
    background-image: url('../images/chevron-right-solid.svg');
    height: 1em;
    width: 1em;
    background-repeat: no-repeat;
    filter: brightness(0.3);
    background-position: center;
  }
}

/*********** RESPONSIVE NAV ************/
.mobile-top-bar{
  display:none;
}

.nav-btn{
  display:none;
}

.nav-btn.open-btn{
   background-color: #0e0e0e;
    padding: 14px;
    border: 2px solid #0e0e0e;
    position: initial;
    top:0px;
    margin-left:-2px;
    z-index: 2;
    color: white;
    cursor: pointer;
}

.nav-btn.open-btn img{
  width:24px;
  height:18px;
}

.nav{
  position:fixed;
  top:0;
  left:0;
  height:100vh;
  transform:translateX(-100%);
  transition:transform 0.3s ease-in-out;
  z-index:3;
}

.nav.visible{
  transform:translateX(0);
}

.nav-black{
  background-color:rgb(34,31,31);
  width:60%;
  max-width:480px;
  min-width:320px;
  transition-delay: 0.4s;
}

.nav-black.visible{
  transition-delay: 0s;
}

.nav-red{
  background-color:rgb(186,25,22);
  width:95%;
  transition-delay:0.2s;
}

.nav-red.visible{
  transition-delay: 0.2s;
}

.nav-white{
  background-color:rgb(255,255,255);
  width:95%;
  padding:40px 0px;
  height: calc(100% - 80px);
  position:relative;
  transition-delay:0s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-white.visible{
  transition-delay: 0.4s;
}

.close-btn{
  position:absolute;
  top:24px;
  right:0px;
  border:none;
  cursor:pointer;
  background:transparent;
  opacity:0.45;
}

.nav-btn.close-btn img{
  width:24px;
  height:24px;
}

.close-btn:hover{
  opacity:0.9;
}

.close-btn:focus, .open-btn:focus{
  outline:0;
}

.nav ul{
  list-style-type:none;
}

.nav ul li{
  margin:12px 0;
}

.nav li a{
  color:rgb(34,31,31);
  text-transform:uppercase;
  font-size:0.9rem;
}

.nav li a:hover{
  color:rgb(186,25,22);
}

/** sub menu lijst **/
.nav ul .menu {
  padding-left:20px;
}

.nav .nav-mobile-links {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-right: 40px;
}
.nav .nav-mobile-links li {
  margin: 3px 0;
}
.nav .nav-mobile-links li a.btn, .nav .nav-mobile-links li a.btn:hover  {
  color: white;
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  font-size: 0.8rem;
}

.nav .nav-mobile-links li a.btn.btn-grey {
  background-color: #a9a9a9;
}



/**** MAX WIDTHS MARGINS PADDINGS ***/
.mx-auto{
  margin-left:auto;
  margin-right:auto;
}

.mw-900{
  max-width:900px;
}

.mw-1000{
  max-width:1000px;
}

.mw-1200{
  max-width:1200px;
}

.mw-1400{
  max-width:1400px;
}

.px-1{
  padding-left:1rem;
  padding-right:1rem;
}

.px-2{
  padding-left:2rem;
  padding-right:2rem;
}

.py-1{
  padding-top:1rem;
  padding-bottom:1rem;
}

.py-2{
  padding-top:2rem;
  padding-bottom:2rem;
}

.py-4{
  padding-top:4rem;
  padding-bottom:4rem;
}

.mb-32{
  margin-bottom:32px;
}

.mt-32{
  margin-top:32px;
}

/*********** PAGE STYLES ***********/
.hero{
  background-size:cover;
  padding-top:5rem;
  padding-bottom:5rem;
  min-height:14vh;
  position:relative;
}

.hero::before{
  background-color:rgba(0,0,0,0.3);
  content:'';
  width:100%;
  height:100%;
  position:absolute;
  top:0;
  left:0;
  z-index:0;
}

.hero h1{
  color:White;
  position:relative;
  text-align: center;
  font-size:2.5rem;
  margin-bottom:0.5rem;
}

.hero h3{
  margin-top:0.5rem;
  color:white;
  position:relative;
  text-align:center;
}

/*** HOMEPAGE SLIDER ***/
/* Slideshow container */

.blog-slider__container {
  max-width: 100%;
  position: relative;
  margin: auto;
  height: 400px;

}

.blogSlides img{
  object-fit: cover;
  width: 100%;
  height: 400px;
}



/* Next & previous buttons */

.vorige,
.volgende {
  cursor: pointer;
  position: absolute;
  top: 0;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
	background-color: #E3051A;
}

/* Position the "next button" to the right */

.volgende {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */

.vorige:hover,
.volgende:hover {
  background-color: #E3051A;
}

/* Caption text */

.blog-slider__text h2 {
  background-color: rgba(0,0,0,0.66);
      max-height: fit-content;
  max-width: fit-content;
  padding: 14px 24px;
  border-radius: 5px;
  color: #fff;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  margin:auto;
  font-size: 2rem;
  top: 40%;
    left: 0;
    bottom: 0;
    right: 0;
}

.blogSlides .btn{
  position:absolute;
  top:55%;
  margin:auto;
  left: 0;
  bottom: 0;
  right: 0;
  max-height: fit-content;
    max-width: fit-content;
}


/* The dots/bullets/indicators */


/* Fading animation */

.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}


.bg-image-darker{
  min-height:26vh;
  background-position:center center;
  background-size:cover;
  transition:0.4s ease;
  position:relative;
  display:flex;
  align-items: center;
  justify-content: center;
}

.bg-image-darker::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color:rgba(0,0,0,0.6);
}

.slider-container{
  box-shadow:0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  width:100vw;
  height:400px;
  margin:30px;
  position:relative;
}

.slide{
  opacity:0;
  height:100%;
  width:100%;
  background-size:cover;
  background-position:center center;
  position:absolute;
  transition:0.4s ease;
  z-index:1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align:center;
}

.inside-slide{
  opacity:1;
  background-color: rgba(0,0,0,0.66);
  width: fit-content;
  padding: 14px 24px;
  border-radius: 5px;
  z-index:3;
  display:block;
  position:absolute;
}


.slide h2{
  color: white;
  margin:0;
  font-size: 2rem;
}

.slide.active{
  opacity:1;
}


.arrow{
  background-color:#E3051A;
  padding:20px;
  border:2px solid #E3051A;
  position:absolute;
  z-index:2;
  color:white;
  top:50%;
  transform:translateY(-50%);
  cursor:pointer;
}

.arrow img{
  width:15px;
}

.arrow:focus{
  outline:0;
}

.left-arrow{
  left:-30px;
}

.right-arrow{
  right:-30px;
}


.vac-blok-bg{
  background-size: cover;
  background-attachment: fixed;
}

.reclame-blok{
  text-align:Center;
    margin:32px;
      box-shadow: 0 2px 10px rgb(0 0 0 / 20%);
}

.reclame-blok h3{
  margin:0 auto;
  color:white;

}

.reclame-blok img{
  width:100%;
}

.cert-holder{
	display:flex;
	justify-content: space-between;
	flex-direction: row;
}

.cert-holder img{
	max-width:120px;
	margin:0 auto;
}


/********* Card *********/
.cards-container {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}
.card{
  box-shadow:0 2px 10px rgba(0,0,0,0.2);
  overflow:hidden;
  margin-bottom:1em;
  border-radius:3px;
  background-color:#0e0e0e;
  flex: 1 0 21%;
  max-width: 23%;
}

.card-header img{
  width:100%;
  object-fit: cover;
  object-position: center;
  height:auto;
  aspect-ratio: 3/2;
}

.card-content{
  padding:20px;
  position: relative;
}

.card-content a:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.card-title{
  margin:0;
}

.card-excerpt{
  color:#777;
  margin:10px 0 20px;
}

@media (max-width: 1000px) {
  .cards-container {
    justify-content: center;
  }
  .card {
    flex: 1 0 47%;
    max-width: 47%;
  }
}
@media (max-width: 600px) {
  .card {
    flex: 1 0 100%;
    max-width: none
  }
}

.author{
  display:flex;
}

.author img{
  width:100%;
}

.profile-img{
  border-radius:50%;
  overflow:hidden;
  height:40px;
  width:40px;
}

.author-info{
  display:flex;
  flex-direction:column;
  justify-content: space-around;
  width:100px;
}

.author-info small{
  color:#aaa;
  margin-top:5px;
}


/***** Locatie template ****/
.page-template-page-locatie .card{
  border-radius:0px;
  margin-top:12px;
  max-width: none;
}

.map-responsive{
    margin-top:32px;
    overflow: hidden;
    padding-bottom: 320px;
    position: relative;
    height: 0;
}


.afvalproducten-wrapper{
  display:flex;
}

/*** Afvalstromen ***/
.half{
  background-color:white;
  width:50%;
  min-height:200px;
}

.single-afvalstromen .byline, .single-containers .byline, .single-afvalproducten .byline{
  display:none;
}


/*****  Onze mensen kaarten ********/
.mensenblok.card{
  display:inline-block;
  background-color:White;
  margin-bottom:16px;
  max-width: none;
  width: 32%;
  margin-right: 1.5%;
}
.textwidget .mensenblok.card {
  width: 100%;
}

.mensenblok.card:nth-child(3n+1) {
  margin-right: 0;
}

.mensenblok .card-sub-title{
  color:grey;
  margin:5px auto;
  font-weight:500;
}

@media (max-width: 880px) {
  .mensenblok.card {
      width: 49%;
      margin-right: 1%;
  }

  .mensenblok.card:nth-child(2n + 1) {
      margin-right: 0;
  }
}

@media (max-width: 600px) {
  .mensenblok.card {
      width: 100%;
      margin: auto;
      margin-bottom: 1em;
  }
}

.wp-block-pdf-viewer-block-standard{
	max-width: 576px;
}

/**** CONTACT FORM *******/
.form-wrapper{
  max-width:360px;
  padding:20px;
  background-color:#e8e8e8;
  border-radius:10px;
  margin-top:12px;
}

.wp-block-contact-form-7-contact-form-selector{
    background-color: #f3f3f3;
    padding: 7px 16px;
    border-radius: 6px;
    max-width: 360px;
}

input{
  padding: 6px;
border: 1px solid rgb(204, 204, 204);
border-radius: 4px;
margin-top: 7px;
}

input[type="submit" i]{
  background-color: #292929;
  color: white;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 600;
  border: 0px;
}

input[type="submit" i]:hover{
  transform:scale(.98);
  cursor:pointer;
}

textarea {
	padding: 6px;
	border: 1px solid rgb(204, 204, 204);
	border-radius: 4px;
	margin-top: 7px;
}

.wpcf7-list-item {
    margin: 0px;
}

/**** SOLLICITEER FORM *******/
.form-wrapper input:not([type="checkbox"]), .form-wrapper textarea {
    width: 100%;
    padding: 6px;
    box-sizing: border-box;
}
@media only screen and (min-width: 810px) {
  .solliciteer-form .wp-block-contact-form-7-contact-form-selector, .solliciteer-form .wp-block-contact-form-7-contact-form-selector .form-wrapper {
      max-width: 100%;
  }
  .split-container-1 {
    width: 100%;
  }
}


/*** NEWS PAGINA **/
.pagination{
  list-style: none;
      display: flex;
}

.pagination li{
  background-color: #e4e4e4;
    padding: 10px 14px;
        border: 1px solid lightgrey;
}


/*********************
POSTS & CONTENT STYLES
*********************/
.page-title .vcard {
  border: 0px;
  padding: 0px; }

.byline {
  color: #999; }

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

.entry-content .alignleft, .entry-content img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left; }

.entry-content .alignright, .entry-content img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right; }

.entry-content .aligncenter, .entry-content img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both; }

.entry-content video, .entry-content object {
  max-width: 100%;
  height: auto; }

.entry-content pre {
  background: #eee;
  border: 1px solid #cecece;
  padding: 10px; }

.wp-caption {
  max-width: 100%;
  background: #eee;
  padding: 5px; }
  .wp-caption img {
    max-width: 100%;
    margin-bottom: 0;
    width: 100%; }
  .wp-caption p.wp-caption-text {
    font-size: 0.85em;
    margin: 4px 0 7px;
    text-align: center; }

.post-password-form input[type="submit"] {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  font-family: inherit;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #1779ba;
  color: #fefefe; }
  [data-whatinput='mouse'] .post-password-form input[type="submit"] {
    outline: 0; }
  .post-password-form input[type="submit"]:hover, .post-password-form input[type="submit"]:focus {
    background-color: #14679e;
    color: #fefefe; }


/************
			WOOCOMMERCE STYLES
					*********************/
li.product-type-variable td  {
		float: left;
		width: 100%;
}

#main li.product input {
		float: none;
}

.woocommerce ul.products li.product .price{
	display:inline-block;
}

.single-product tr{
	display:grid;
}

.single-product h1{
	color:#ba1916;
}

.single-product p.price {
    color: #77a464;
    font-size: 1rem !important;
    line-height: 1 !important;
}
.single-product.woocommerce .variations {
  text-align: left;
}
.single-product.woocommerce  div.product form.cart div.quantity {
  float: none;
}
.single-product.woocommerce .quantity .qty {
    width: 3.631em;
    height: 22px;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 1.6em;
    width: calc(100% - 1em);
    text-align: left;
}

.single-product .woocommerce-variation.single_variation{
	margin-bottom: 16px;
    margin-left: 5px;
}

.woocommerce-variation-price::after{
	content:'per maand';
	color: #49ba16;
    font-size: 14px;
    margin-left: 4px;
    font-weight: 600;
}

.woocommerce-variation-price .price{
	font-size: 1.1rem !important;
	color: #49ba16 !important;
	font-weight: 700 !important;
	margin-top: 7px;
	display:none !important;
}

.woocommerce-variation-price{
	display:none !important;
}

th.product-price, td.product-price,th.product-subtotal, td.product-subtotal, td.product-total, th.product-total, tr.cart-subtotal, tr.woocommerce-shipping-totals,
tr.tax-rate, tr.order-total{
	display:none;
}

.cart_totals .shop_table.shop_table_responsive, .cart_totals h2 {
	display:none;
}

.meer-containers{
	position:absolute !important;
}

.sku_wrapper{display:none;}

.woocommerce .woocommerce-breadcrumb {
	display:none;
}

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

.woocommerce-result-count{display:none;}
.woocommerce-ordering{display: none;}

.container-usps{
	display: flex;
  justify-content: space-around;
}
@media (max-width: 767px) {
  .container-usps {
    flex-wrap: wrap;
  }
}

.container-usps div{
	display:flex;
	width: -webkit-fill-available;
  justify-content: center;
}

.woocommerce ul.products li.product .price {
    margin-left: 8px;
		font-weight: 600;
    font-size: .925em;
}

.container-usps img{
	max-width:24px;
	display:inline-block;
	margin-right:10px;
}

.container-usps h4{
	display:inline-block;
}

 .woocommerce button.button.alt.disabled, .woocommerce button.button.alt.disabled:hover{
	 background-color: #ba1916;
 }

.woocommerce button.button.alt{
	 background-color: #49ba16;
}

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

.archive .label{
	font-weight: 600;
	margin-bottom: 3px;
margin-top: 5px;
}

.archive .value select{
		width: 100%;
    height: 34px;
    padding: 0px 4px;
    border-radius: 4px;
		border-color: #c5c5c5;
		background-color: #fdfdfd;
		    font-size: 14px;
}

.woocommerce div.product form.cart .variations select {
    width: 100%;
    height: 34px;
    padding: 0px 6px;
		font-size:14px;
    border-radius: 4px;
    border-color: #c5c5c5;
    background-color: #fdfdfd;
}

.reset_variations{display:none !important;}

.woocommerce ul.products li.product .woocommerce-loop-product__title{
	font-size:1.25rem;
	margin-top:-24px;
}

.woocommerce div.product .product_title {
  margin-bottom: 0.33rem;
}

.woocommerce_subtitle {
  margin: 0;
  color: #ba1916;
}

.variations_form.cart{
		background-color: #f5f5f5;
    border-radius: 8px;
    max-width: 342px;
    padding: 10px 16px 16px 12px;
}


.single-product.woocommerce div.product div.images img {
    width: 80% !important;
}

.related.products{
	display:block;
	width:100%;
	float:left;
}

.related.products h2{
	margin-bottom:42px;
}

.woocommerce-message::before {
    color: #49ba16;
}

 .woocommerce-cart table.cart img{
	 width:64px;
 }

 .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
    background-color: #49ba16;
	}

.page-description{
	max-width: 1200px;
	margin: 0 auto;
}

.woocommerce-checkout #payment div.payment_box::before {
	border: 1em solid #fff;
border-right-color: transparent;
border-left-color: transparent;
border-top-color: transparent;
 }
  .woocommerce-checkout #payment div.payment_box {
     background-color: #ffffff;
		 font-weight:600;
 }

.quantity::before{
	content:'Aantal';
	display:inline-block;
	font-size:15px;
	font-weight: 600;
margin-bottom: .5em;
margin-top: 7px;
margin-left:3px;
margin-right:8px;
}

.woocommerce-order-overview__total.total{display:none;}
.woocommerce-order-received tfoot{display:none;}

/*********************
IMAGE GALLERY STYLES
*********************/
.gallery {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-right: -15px;
  margin-left: -15px; }

.gallery::before, .gallery::after {
  content: ' ';
  display: table; }

.gallery::after {
  clear: both; }

.gallery.gallery-columns-1 > dl {
  width: 100%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .gallery.gallery-columns-1 > dl {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .gallery.gallery-columns-1 > dl:last-child:not(:first-child) {
    float: right; }

.gallery.gallery-columns-2 > dl {
  width: 50%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .gallery.gallery-columns-2 > dl {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .gallery.gallery-columns-2 > dl:last-child:not(:first-child) {
    float: right; }

.gallery.gallery-columns-3 > dl {
  width: 33.33333%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .gallery.gallery-columns-3 > dl {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .gallery.gallery-columns-3 > dl:last-child:not(:first-child) {
    float: right; }

.gallery.gallery-columns-4 > dl {
  width: 25%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .gallery.gallery-columns-4 > dl {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .gallery.gallery-columns-4 > dl:last-child:not(:first-child) {
    float: right; }

.gallery.gallery-columns-5 > dl {
  width: 20%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .gallery.gallery-columns-5 > dl {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .gallery.gallery-columns-5 > dl:last-child:not(:first-child) {
    float: right; }

.gallery.gallery-columns-6 > dl {
  width: 16.66667%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .gallery.gallery-columns-6 > dl {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .gallery.gallery-columns-6 > dl:last-child:not(:first-child) {
    float: right; }

.gallery.gallery-columns-7 > dl {
  width: 14.28571%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .gallery.gallery-columns-7 > dl {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .gallery.gallery-columns-7 > dl:last-child:not(:first-child) {
    float: right; }

.gallery.gallery-columns-8 > dl {
  width: 12.5%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .gallery.gallery-columns-8 > dl {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .gallery.gallery-columns-8 > dl:last-child:not(:first-child) {
    float: right; }

.gallery dl {
  width: 100%;
  float: left;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem; }

.gallery dl:last-child:not(:first-child) {
  float: right; }

/*********************
PAGE NAVI STYLES
*********************/
.page-navigation {
  margin-top: 1rem; }

/*********************
COMMENT STYLES
*********************/
#comments .commentlist {
  margin-left: 0px; }

#respond ul {
  margin-left: 0px; }

.commentlist li {
  position: relative;
  clear: both;
  overflow: hidden;
  list-style-type: none;
  margin-bottom: 1.5em;
  padding: 0.7335em 10px; }
  .commentlist li:last-child {
    margin-bottom: 0; }
  .commentlist li ul.children {
    margin: 0; }

.commentlist li[class*=depth-] {
  margin-top: 1.1em; }

.commentlist li.depth-1 {
  margin-left: 0;
  margin-top: 0; }

.commentlist li:not(.depth-1) {
  margin-left: 10px;
  margin-top: 0;
  padding-bottom: 0; }

.commentlist .vcard {
  margin-left: 50px; }
  .commentlist .vcard cite.fn {
    font-weight: 700;
    font-style: normal; }
  .commentlist .vcard time {
    float: right; }
    .commentlist .vcard time a {
      color: #999;
      text-decoration: none; }
      .commentlist .vcard time a:hover {
        text-decoration: underline; }
  .commentlist .vcard img.avatar {
    position: absolute;
    left: 10px;
    padding: 2px;
    border: 1px solid #cecece;
    background: #fff; }

.commentlist .comment_content p {
  margin: 0.7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em; }

.commentlist .comment-reply-link {
  float: right; }

/*********************
COMMENT FORM STYLES
*********************/
.respond-form {
  margin: 1.5em 10px;
  padding-bottom: 2.2em; }
  .respond-form form {
    margin: 0.75em 0; }
    .respond-form form li {
      list-style-type: none;
      clear: both;
      margin-bottom: 0.7335em; }
      .respond-form form li label,
      .respond-form form li small {
        display: none; }
    .respond-form form input[type=text],
    .respond-form form input[type=email],
    .respond-form form input[type=url],
    .respond-form form textarea {
      padding: 3px 6px;
      background: #efefef;
      border: 2px solid #cecece;
      line-height: 1.5em; }
      .respond-form form input[type=text]:focus,
      .respond-form form input[type=email]:focus,
      .respond-form form input[type=url]:focus,
      .respond-form form textarea:focus {
        background: #fff; }
      .respond-form form input[type=text]:invalid,
      .respond-form form input[type=email]:invalid,
      .respond-form form input[type=url]:invalid,
      .respond-form form textarea:invalid {
        outline: none;
        border-color: #fbc2c4;
        background-color: #f6e7eb;
        -ms-box-shadow: none;
        box-shadow: none; }
    .respond-form form input[type=text],
    .respond-form form input[type=email],
    .respond-form form input[type=url] {
      max-width: 400px;
      min-width: 250px; }
    .respond-form form textarea {
      resize: none;
      width: 97.3%;
      height: 150px; }

#comment-form-title {
  margin: 0 0 1.1em; }

#allowed_tags {
  margin: 1.5em 10px 0.7335em 0; }

.nocomments {
  margin: 0 20px 1.1em; }

/*********************
SIDEBARS & ASIDES
*********************/
.sidebar li {
  list-style: none; }

.widget ul {
  margin: 0; }

/*********************
FOOTER STYLES
*********************/
.footer {
  background-color:#888;
  clear: both;

}

.inner-footer{
  font-size:0.9rem;
  color:white;
  justify-content: space-between;
}

.footer-widget{
  display:inline-flex;
  max-width:254px;
  vertical-align: top;
}

.footer .onder-balk{
  background-color:#ba1916;
  padding: 4px 1rem;
}

.footer .onder-balk p{
  font-size:13px;
  color:#f1f1f1;
}

.onderfooter{
  display:Flex;
  justify-content:space-between;
  flex-direction:row;
  align-items: center;
}

/*********************
VISUAL EDITOR STYLES
*********************/
body#tinymce {
  margin: 20px; }

/*********************
PLUGIN STYLES
*********************/
.gform_body ul {
  list-style: none outside none;
  margin: 0; }




@media only screen and (max-width: 1200px) {

	.hoofdnav {
		padding-left:1rem;
	}

  #main-nav ul.menu{
    position: relative;
    top: 0px;
    border: 0px solid white;
    z-index: 3;
    flex-direction: column;
    background: #fff;
    padding: 0px 0px;
  }

  #main-nav ul.menu li a{
    padding:8px 20px;
  }

}

@media only screen and (max-width:1000px){
	.hoofdnav {
		display: none;
	}
	.nav-btn{
		display:block;
	}
}


@media only screen and (max-width:800px){
  .afvalproducten-wrapper{
    display:block;
  }
  .half{
    width:100%;
  }
  .blog-slider__container {
    height: 300px;
  }

  .blogSlides img{
    height: 300px;
  }

  .blog-slider__text h2{
    font-size:1.5rem;
    border-radius:0px;
    top:-100px;
  }
  .blogSlides .btn{
    top:24px;
  }
	.oranje-blok, .zwart-blok{
		display:none;
	}
	.webshop-keurmerk{
		display:none;
	}
	.meer-containers{
		position:relative !important;
	}

}


@media only screen and (max-width: 640px) {
  .onderfooter{
    flex-direction:column;
  }
  .logo-afvalcontainer img {
    display: none;
  }
  .logo-rolcontainer img {
    display:none;
  }
  .hero {
    padding-top: 3rem;
    padding-bottom: 3rem;
    min-height: 10vh;
  }
  .slide{
    align-items:flex-end;
  }
  .vac-blok-bg{
    background-size: cover;
    background-attachment: unset;
  }
  .mobile-top-bar{
    display:block;
    padding:0.5rem 1rem;
    background-color:#f6f6f6;
    text-align:center;
    font-size:14px;
    color:grey;
  }
  .reclame-blok{
    margin-left:0px;
  }
	.cert-holder{
		text-align: center;
		display:flex;
		justify-content: space-between;
		flex-direction: column;
	}
	.cert-holder img{
		margin-bottom:14px;
	}
}

.mobile-only-button {
  max-width: 154px;
  color: white;
  background-color: #ba1916;
  padding: 0.8rem;
  padding-top: 0.6rem;
  border-radius: 8px;
  height: fit-content;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  display: none;
}
.nav li.mobile-only-button a:hover {
  color: rgb(34,31,31);
}
.nav li.mobile-only-button a {
  color: #fff;
}

.btn-new-style {
margin: 10px 0;
    position: relative;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    padding: 13px 31px;
}
										

@media only screen and (max-width: 640px) {
  .mobile-only-button {
    display: inline-block;
  }
}

@media only screen and (max-width: 1000px) {
  .menu-balk {
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .nav {
    z-index: 3000;
  }
  .afval-container, .solliciteer-container, .contact-container {
    display: none;
  }
}

.logo-container {
  display: flex;
    justify-content: center;
    align-items: center;
}