body {
  background: var(--site-background-color);
}
body.has-offcanvas {
  overflow: hidden;
}
#page-container {
  min-height: 100vh;
  display: flex;
  flex-flow: column;
}
#content-wrapper {
  flex-grow: 1;
  margin-top: 150px;
}
#important-notice {
  background: var(--important-notice-background-color);
  color: var(--important-notice-text-color);
  text-align: center;
}
#important-notice .fourteen-forty {
  padding: 0.5em var(--gutter-x);
}
@media (max-width: 991px) {
  #site-menu {
    position: sticky;
    display: block;
    top: 0;
    z-index: 999;
    transition: top 200ms linear;
  }
}
@media (max-width: 991px) {
  #site-menu .container {
    padding: 0 !important;
  }
}
#site-menu .navbar {
  padding: 0.5rem var(--gutter-x);
}
@media (min-width: 992px) {
  #site-menu .navbar {
    margin-top: 6.5em;
    padding: 0;
  }
}
@media (min-width: 992px) and (max-width: 1460px) {
  #site-menu .navbar {
    /*margin-left: 0.5em;
    margin-right: 0.5em;*/
  }
}
#site-menu .dropdown-menu {
  --gutter-y: 0.75em;
}
body.scrolling-down #site-menu {
  top: -6em;
}
.navbar-header {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: var(--gutter-x);
  justify-content: space-between;
  /*background: var(--header-background-color);*/
  background: #f9fafc;
  color: var(--header-text-color);
  width: 100%;
}
@media (min-width: 768px) {
  .navbar-header {
    gap: var(--gutter-x);
  }
}
@media (min-width: 992px) {
  .navbar-header {
    position: absolute;
    top: -6rem;
    left: 0;
    right: 0;
    margin-bottom: var(--gutter-y);
    padding-left: 1em;
    padding-right: 1em;
  }
}
.navbar-header .fourteen-forty {
  display: inherit;
  flex-flow: inherit;
  gap: inherit;
  justify-content: inherit;
  align-items: inherit;
  padding-top: 0;
  padding-bottom: 0;
}
.navbar-header .logotype img {
  max-width: 150px;
  max-height: 32px;
}
.navbar-header .webwinkelkeurPopup img {
  max-width: 150px;
  max-height: 32px;
}
@media (min-width: 768px) {
  .navbar-header .logotype img {
    max-width: 250px;
    max-height: 80px;
  }
  .navbar-header .webwinkelkeurPopup img {
	  max-width: 250px;
    max-height: 50px;
  }
}
@media (min-width: 768px) {
  .navbar-header .logotype {
    width: auto;
  }
}
.navbar-header .navbar-brand {
  display: none;
  width: calc(var(--sidebar-width) + var(--gutter-x)/2);
  font-size: 17px;
}
.navbar-header .navbar-brand:hover,
.navbar-header .navbar-brand:focus {
  text-decoration: none;
}
.navbar-header .navbar-brand > img {
  display: block;
}
@media (min-width: 768px) {
  .navbar-header .navbar-brand {
    display: block;
  }
}
.navbar-header .navbar-search {
  flex: 1 1 auto;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .navbar-header .navbar-search {
    width: 100%;
    order: 999;
  }
}
@media (min-width: 992px) {
  .navbar-header .navbar-search {
    max-width: 600px;
  }
}
.navbar-header .navbar-icon {
  font-size: 1.5em;
}
#cart {
  position: relative;
  display: inline-block;
}
#cart > a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 4px;
  border: 1px transparent solid;
  border-radius: var(--border-radius);
  color: inherit;
  white-space: nowrap;
}
#cart > a:hover {
  border-color: var(--default-border-color);
  text-decoration: none;
}
#cart img {
  max-width: 2em;
  max-height: 2em;
}
@media (min-width: 768px) {
  #cart img {
    font-size: 1.5em;
  }
}
#cart .badge {
  background: #c90000;
  border-radius: 2rem;
  padding: 0.25em 0em;
  display: inline-block;
  text-align: center;
  color: #fff;
  position: absolute;
  left: 15px;
  top: 15px;
  width: 2em;
  animation: pulsating 1.5s linear infinite;
  font-size: 10px;
}
#cart .badge:empty {
  display: none;
}
@media (max-width: calc(768px - 1px)) {
  #cart .details {
    display: none;
  }
}
#content-wrapper .layout.row {
  margin: 0 0.5em;
}
@media (min-width: 1460px) {
  #content-wrapper .layout.row {
    margin: 0;
  }
}
#sidebar {
  position: relative;
  display: flex;
  flex-flow: column;
}

/* FOOTER GRID */
#footer {
  background-color: var(--footer-background-color);
  color: var(--footer-text-color);
  padding: var(--gutter-y) var(--gutter-x);
}
#footer a {
  color: inherit;
}
#footer .columns {
  display: grid;
  margin-bottom: 0;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: var(--gutter-x);
}
@media (min-width: 768px) {
  #footer .columns {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  #footer .columns {
    grid-template-columns: repeat(3, 1fr);
  }
}
#footer .title {
  font-size: 1.5em;
  margin: 0 0 0.75em 0;
  color: var(--footer-title-color);
  margin-top: 14px;
}
#footer ul.list-vertical li {
  padding: 0;
}
#copyright {
  /*background: var(--copyright-background-color);
  color: var(--copyright-text-color);*/
  background: rgba(0,0,0,0.7);
  color: #fff;
}
#copyright .container {
  padding: 0.75em var(--gutter-x);
}
#copyright .notice {
  text-align: center;
}
#copyright .notice a {
  color: inherit;
  text-decoration: underline;
}
#scroll-up {
  bottom: 30px;
  display: none;
  height: 48px;
  opacity: 0.3;
  position: fixed;
  right: 30px;
  width: 48px;
}
/* Boxes */
.box {
  margin-bottom: var(--gutter-y);
}
#box-filter .filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
#box-filter .filters > * {
  flex: 1 1 auto;
  min-width: fit-content;
}
#box-filter .filters [data-toggle="dropdown"] {
  cursor: pointer;
}
#box-filter .filters .dropdown-menu li {
  margin: 0.5em 1em;
}
#box-filter .filters .dropdown-menu .option {
  white-space: nowrap;
}
#box-filter .tokens:not(:empty) {
  padding-top: var(--gutter-y);
}
#box-filter .tokens .token {
  padding: 0.5em 1em;
  border-radius: 4px;
  cursor: default;
  margin-inline-end: 0.5em;
}
#box-filter .tokens .token[data-group="name"] {
  background: #cbe2b6;
}
#box-filter .tokens .token[data-group="manufacturer"] {
  background: #b6c2e2;
}
#box-filter .tokens .token[data-group^="attribute"] {
  background: #e2c6b6;
}
#box-filter .tokens .token .remove {
  padding-inline-start: 0.5em;
  color: inherit;
  font-weight: 600;
}
#box-cookie-notice {
  background: var(--cookie-notice-background-color);
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1em;
  backdrop-filter: saturate(200%) blur(5px);
  color: var(--cookie-notice-text-color);
  z-index: 999;
}
#box-cookie-notice .notice {
  margin-bottom: 1em;
}
#box-cookie-notice .notice a {
  color: inherit;
  text-decoration: underline;
}
#box-cookie-notice button {
  margin: 0 0.5em;
}
@media (min-width: 768px) {
  #box-cookie-notice {
    max-width: 480px;
    margin: 0 auto;
    bottom: var(--gutter-y);
    border-radius: var(--border-radius);
  }
}
#box-recently-viewed-products .link img {
  transition: all 100ms linear;
}
#box-recently-viewed-products .link img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.1);
}
@media (min-width: 992px) {
  #box-also-purchased-products {
    position: sticky;
    top: 0;
  }
}
#box-manufacturer-logotypes img {
  max-height: 60px;
}
#box-filter .manufacturers ul {
  max-height: 200px;
  overflow-y: auto;
}
#box-recently-viewed-products .listing {
  grid-template-columns: repeat(auto-fill, minmax(48px, 0.5fr));
}
.listing {
  display: grid;
  grid-gap: calc(var(--gutter-x)/2);
}
@media (min-width: 768px) {
  .listing {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
.listing.products.columns {
  grid-template-columns: repeat(auto-fill, minmax(125px, 1fr));
}
@media (min-width: 768px) {
  .listing.products.columns {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}
@media (min-width: 992px) {
  .listing.products.columns {
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  }
}
/* examples page */
.listing.products.columns.examples {
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
}
@media (min-width: 768px) {
  .listing.products.columns.examples {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
@media (min-width: 992px) {
  .listing.products.columns.examples {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
/****************************/
.listing.products.rows {
  grid-auto-flow: row;
  grid-template-columns: initial;
}
.listing.categories {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
@media (min-width: 768px) {
  .listing.categories {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}
.listing.manufacturers {
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
@media (min-width: 768px) {
  .listing.manufacturers {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
.listing h1,
.listing h2,
.listing h3 {
  padding-bottom: 0;
  border: none;
}
.listing a {
  color: inherit;
  text-decoration: none;
}
.listing .category,
.listing .manufacturer,
.listing .product {
  position: relative;
  overflow: hidden;
  background: var(--image-whitespace-color);
  border: 1px solid var(--default-border-color);
  border-radius: var(--border-radius);
  transform: scale(1);
  transition: all 100ms linear;
  color: inherit;
  text-decoration: none;
}
@media (min-width: 768px) {
  .listing .category:hover,
  .listing .manufacturer:hover,
  .listing .product:hover {
    box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.15);
    transform: scale(1.01);
  }
}
.listing .category {
  position: relative;
  background: var(--whitespace-color);
}
.listing .category .caption {
  background: var(--whitespace-color);
  padding: calc(var(--gutter-y)/2) var(--gutter-x);
  color: var(--default-text-color);
  text-align: center;
}
.listing .category .caption * {
  font-weight: normal;
  color: inherit;
  margin: 0;
}
.listing .manufacturer {
  position: relative;
  background: var(--whitespace-color);
}
.listing .manufacturer img {
  width: 100%;
  height: auto;
  padding: 1rem;
}
.listing .manufacturer .caption {
  margin: 0;
  padding: calc(var(--gutter-y)/2) var(--gutter-x);
  background: #f2f2f2;
  color: var(--default-text-color);
  text-align: center;
}
.listing .product {
  position: relative;
  background: var(--whitespace-color);
}
.listing .product .link {
  text-decoration: none;
}
.listing .product .image-wrapper {
  background: var(--image-whitespace-color);
}
.listing .product .image-wrapper .sticker {
  position: absolute;
  top: 20px;
  left: -32px;
  width: 125px;
  padding: 0.25rem 0;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-45deg);
}
.listing .product .image-wrapper .sticker.new {
  background: rgba(251, 184, 41, 0.9);
}
.listing .product .image-wrapper .sticker.sale {
  background: rgba(237, 60, 50, 0.9);
}
.listing .product .name {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  height: 40px;
  font-size: 1em;
  font-weight: 400;
  line-height: 115%;
  border-bottom: 0;
  margin: 0;
}
.listing .product .manufacturer-name {
  color: var(--default-text-color);
  font-size: 0.9em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 200%;
  opacity: 0.75;
}
.listing .product .description {
  max-width: 640px;
  text-align: left;
}
.listing .product .price-wrapper {
  font-size: 1.25em;
}
.listing .product .price-wrapper .price {
  font-weight: bold;
  white-space: nowrap;
}
.listing .product .price-wrapper .regular-price,
.listing .product .price-wrapper .recommended-price {
  color: var(--default-text-color);
  font-size: 0.75em;
  font-weight: normal;
  white-space: nowrap;
}
.listing .product .price-wrapper .campaign-price {
  font-weight: bold;
  color: #c00;
  white-space: nowrap;
}
.listing .product .preview {
  margin: 0 -1px -1px -1px;
  display: none;
  position: absolute;
  top: 1em;
  right: 1em;
  padding: var(--input-padding-y);
  width: 3em;
  box-shadow: none;
}
@media (min-width: 768px) {
  .listing .product:hover .preview {
    display: inline-block;
  }
}
.listing.columns .product .image {
  width: 100%;
  height: auto;
}
.listing.columns .product .info {
  padding: 0.5rem 0;
  text-align: center;
}
.listing.columns .product .description {
  display: none;
}
.listing.columns .product .price-wrapper {
  position: initial;
}
.listing.rows .product .link {
  display: flex;
  gap: var(--gutter-x);
  padding: var(--gutter-y) var(--gutter-x);
}
.listing.rows .product .info {
  flex: 1 1 auto;
}
.listing.rows .product .image-wrapper {
  width: 175px;
}
@media (min-width: 768px) {
  .listing.rows .product .image-wrapper {
    width: 160px;
  }
}
@media (min-width: 768px) {
  .listing.rows .product {
    height: auto;
  }
  .listing.rows .product .description {
    margin-bottom: 1em;
  }
}
#box-product form[name="buy_now_form"] {
  padding: var(--gutter-y) var(--gutter-x);
  margin: 1em 0;
  border: 1px solid var(--default-border-color);
  border-radius: var(--border-radius);
}
#box-product .images {
  margin-bottom: var(--gutter-y);
}
#box-product .main-image {
  position: relative;
  background: var(--whitespace-color);
  overflow: hidden;
}
#box-product .main-image .sticker {
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  top: 15px;
  left: -35px;
  padding: 0.25rem 0;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-45deg);
  width: 140px;
}
#box-product .main-image .sticker.new {
  background: rgba(251, 184, 41, 0.85);
}
#box-product .main-image .sticker.sale {
  background: rgba(237, 60, 50, 0.85);
}
#box-product .price-wrapper {
  font-size: 1.75em;
}
#box-product .price-wrapper .regular-price,
#box-product .price-wrapper .recommended-price {
  font-size: 0.75em;
}
#box-product .price-wrapper .campaign-price {
  color: #cc0000;
}
#box-product .tax {
  color: #999;
}
#box-product .stock-available .value {
  color: #009900;
}
#box-product .stock-partly-available .value {
  color: #ff9900;
}
#box-product .stock-unavailable .value {
  color: #cc0000;
}
#box-product .out-of-stock-notice {
  background: var(--default-background-color);
  border: 1px solid var(--default-border-color);
  padding: var(--gutter-y) var(--gutter-x);
  border-radius: var(--border-radius);
}
#box-product .stock-notice {
  margin-top: 1em;
  padding: 0.5em;
  border-radius: var(--border-radius);
  border: 1px #86cb00 solid;
  color: #86cb00;
  display: none;
}
#box-product .stock-notice:empty {
  display: none;
}
#box-product .stock-notice.warning {
  color: #c00;
  border-color: #c00;
  display: block;
}
#box-product .stock-notice .description {
  margin-top: 1em;
  font-size: 0.8em;
}
#box-product .social-bookmarks {
  font-size: 1.75em;
  margin-top: 1em;
}
#box-product .social-bookmarks a {
  margin: 0 0.25em;
}
#box-product .description p:first-child {
  margin-top: 0;
}
#box-product .description p:last-child {
  margin-bottom: 0;
}

/************ CUSTOM STYLING************/

section.head-title {
    margin-bottom: var(--gutter-y);
}
section#box-slides {
    margin-bottom: -50px;
	border-radius: 0;
	margin-top: -33px;
	max-height: 450px;
}
.head-title-text {
    position: relative;
    z-index: 2;
   
    margin: 0 auto;
    /*border-radius: 10px;*/
    padding: 20px 30px;
    background: var(--card-background-color);
	border-radius: var(--border-radius);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
.headtitle-1 {
	color: #BC1823;
}
.headtitle-2 {
	color: #545454;
}
.carousel-indicators {
	bottom: 50px !important;
}

@media (min-width: 992px) {
	.fixed {
	  position: fixed;
	  top:0; 
	  left:0;
	  width: 100%; 
	  z-index: 3;
	}
	
}
@media (max-width: 992px) {
	.navbar {
		background: #f9fafc !important;
	}
}
@media (max-width: 768px) {
	.headtitle-1 {
	  font-size: 20px;
	}
	.headtitle-2 {
		font-size: 16px;
	}
	.parallex-text {
		width: 70% !important;
	}
	section#box-slides {

		margin-bottom: -20px;
		margin-top: 0px;
	}
	
}

.carousel-inner > .item img {
	width: 100%;
	min-height: 200px;
	object-fit: cover;
}

img.footerlogo {
    max-height: 40px;
}
/* disable start-stop button tinyslider */
button.start-stop {
    display: none;
}
.fa-chevron-circle-left,
.fa-chevron-circle-right {
	color: #ddd;
}
button.chevron-left,
button.chevron-right {
	background: #fff;
	
}
.parallax-one {
	/*padding-top: 100px; 
	padding-bottom: 100px;*/
	overflow: hidden; 
	position: relative; 
	width: 100%; 
	background-image: url(../images/parallax-one.jpg); 
	background-attachment: fixed; 
	background-size: cover; 
	-moz-background-size: cover; 
	-webkit-background-size: cover; 
	/*background-repeat: no-repeat; */
	background-position: top center;
	border-radius: 0;
	/*height: 400px;*/
	
}
.parallex-text {
    background: rgba(255,255,255,0.1);
    padding: 10px;
    width: 40%;
    margin-left: 10%;
	text-align: center;
	margin-top: 100px;
	margin-bottom: 100px;
}
p.text-white {
	color: #fff;
	font-size: 20px;
	text-transform: uppercase;
	
}
a.btn.fb-button {
    background: #ddd;
	font-style: italic;
	color: #BC1823;
	font-weight: bold;
}
.offcanvas .offcanvas-header {
    background-color: #ddd !important;
	border-bottom: 1px solid #666666;
}
footer {
	text-align: center;
	background: #f9fafc;
}
footer section {
    border-right: 1px solid rgba(0,0,0,0.1);
}
footer section:last-child {
	border-right: none;
}
body {
	font-family: "Raleway", sans-serif !important;
}
.offcanvas .offcanvas-body {
    background: rgba(0,0,0,0.7);
	/*margin-top: -30px;*/
	
}
.navbar-nav .nav-link {
	color: #fff;
	/*font-weight: bold;*/
}
.navbar-nav .nav-link:hover {
	color: #ddd;
}
/* disable svg image arrow dropdown; use font-awesome in html instead */
.dropdown-nav [data-toggle="dropdown"] {
    background-image: none;
}
i.fa-solid.fa-angle-down {
	margin-left: 5px;
	top: 2px;
    position: relative;
}
i.fa.fa-user {
    margin-right: 5px;
}

.offcanvas-body {
    /*background-color: #ddd;*/
}
#footer {
    background-color: #f9fafc !important;
}
#copyright {
    /*background-color: #fff !important;*/
}
.input-group {
    border: 1px solid #ddd !important;
}

/* intro section */

#intro-one .columns {
  display: grid;
  margin-bottom: 30px;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: var(--gutter-x);
}
@media (min-width: 768px) {
  #intro-one .columns {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  #intro-one .columns {
    grid-template-columns: repeat(2, 1fr);
  }
  .offcanvas {
	  margin-top: -30px;
  }
}
@media (max-width: 992px) {
    #content-wrapper {	 
	  margin-top: 140px;
	}
	.offcanvas .offcanvas-body {
		background: #646464;
	}
	.dropdown .dropdown-menu > li > a, .dropdown .dropdown-menu > li > span, .dropdown .dropdown-menu > li > label {
		/*color: #fff;*/    
	}
	.offcanvas .offcanvas-header {
		background-color: #646464 !important;
		border-bottom: 1px solid #ddd;
	}
	.offcanvas-title {
		color: #fff;
	}
	
}
@media (max-width: 768px) {
  #intro-one .columns {
    grid-template-columns: repeat(1, 1fr);
  }
  #content-wrapper {	 
	  /*margin-top: 110px;*/
	}
}

i.intro-italic {
    font-size: 16px;
}

nav#site-menu {
    position: fixed;
    z-index: 3;
    width: 100%;
    background: #f9fafc;
	height: 68px;
}

section#intro-one {
    
    margin-left: auto;
    margin-right: auto;
}
/* tiny slider */
.tns-controls {
	display: none;
}
.intro-image {
	position: relative;
}
.phototext {
	position: absolute;
	
	padding: 10px 20px 10px 20px;
	background: rgba(0,0,0,0.3);
	width: 100%;
	bottom: 0px;
	text-align: center;
	
}
.text-white {
	color: #fff;
}
p.slider-text {
	text-align: center;
}

.btn.btn-success {
	background: #b9302f !important;
}
.btn.btn-success:hover {
	background-color: #b9302fc7 !important;
	color: #fff;;
}
/* slick slider  images */

span.slidercontent {
	text-align: center;
}
/* hover effect */
/*.sliderblock {
    position:relative;
    display:inline-block;
	margin: 0 auto;
	text-align: center;
    
}
.sliderlink {
    display:none;

	 

}

.sliderblock:hover .sliderlink {
    width: 100%;
    height: 50px;
    background:rgba(255,255,255,.6);
    top: 0;
	left: 0;
    position:absolute;
   
    display:inline-block;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box;
    text-align:center;
    color:#222;
 
	font-size: 28px;
	top: 60px;
	padding-top: 8px;
	font-weight: bold;


    
}
/*.sliderblock:hover .slidercontent {
	 width: 100%;
    height: 100%;
    background:rgba(0,0,0,.5);
    top: 175px;
	left: 0;
    position:absolute;
   
    display:inline-block;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box;
	color: #fff;
	margin: 0 auto;
}*/
/*i.fa-link {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #fff;
	color: #222;
	padding-top: 10px;
	font-weight: bold;
}*/


#parallax-one {
	border: none !important;
}
.slick-slide {
    height: auto;
    
}

.slick-slide img {
	display: block;
	margin: 0 auto;
	
}


.sliderblock img:hover {
	
	 /*background:rgba(0,0,0,.5);*/

	
	
}
/*.slidercontent {
	margin: 30px auto;
	width: 300px;
	padding: 10px;
	box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
	border: 1px solid #f6f6f6;
}

.slidercontent:hover {
	background-color: rgba(0,0,0,.7);
	color: #fff;
	box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.7);
}*/
.sliderblock {
	
}
.sliderimage img{
	padding-top: 50px;
	transform: scale(1.1);
	/*-webkit-transition: .5s ease-in-out;
	transition: .5s ease-in-out;*/
}
.sliderimage img:hover {
	/*transform: scale(1.3);
	-webkit-transition: .5s ease-in-out;
	transition: .5s ease-in-out;*/
}
.sliderblock-inner {
	box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
	width: 95%;
	padding: 0 15px 0px 15px;
	text-align: center;
	
	/*-webkit-transition: .5s ease-in-out;
	transition: .5s ease-in-out;*/
}
.sliderblock-inner:hover {
	/*background-color: rgba(0,0,0,0.7);
	box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.7);
	/*transform: scale(1.1);*/
	width: 95%;
	/*padding: 0 20px 0 15px;*/

	/*color: #fff;
	-webkit-transition: .5s ease-in-out;
	transition: .5s ease-in-out;*/
}
.slidercontent {
	margin-bottom: 10px;
	padding-top: 50px;
	padding-bottom: 50px;
	height: 260px;
}

i.fa-solid.fa-quote-left {
    font-size: 28px;

}
footer section:first-child {
    /*border: none;*/
}

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

.slick-slide
{
    height: inherit !important;
}

.form-group {
    margin-bottom: 10px !important;
}




[data-code="about"] {
	display:none;
}

/* Lightbox*/
.lightbox {
   /* height: 200px;
    width: 200px;
    float: left;
    margin: 10px;*/
}

.img-popup {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(38, 40, 52, 0.9);
    text-align: center;
    display: none;
    z-index: 9999999999999;
    animation: pop-in;
    animation-duration: 0.5s;
    -webkit-animation: pop-in 0.5s;
    -moz-animation: pop-in 0.5s;
    -ms-animation: pop-in 0.5s;

}

.img-popup img {
    position: absolute;
    top: 50%;
    max-width: 80%;
    max-height: 80vh;
    display: inline-block;
    transform: translate(-50%, -50%);
	border-radius: var(--border-radius);
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0px 15px;
    color: #fff;
    font-size: 35px;
    border: 2px solid #fff;
    border-radius: 50%;
    z-index: 99;
    cursor: pointer;
}
.lightboxfadeout{
    animation: fadeout;
    animation-duration: 0.5s;
    -webkit-animation: fadeout 0.5s;
    -moz-animation: fadeout 0.5s;
    -ms-animation: fadeout 0.5s;
}
img.lightbox {
	cursor: pointer;
}

/* checkout page font-size "bestel nu" */
.consent.text-center {
    font-size: 14px !important;
}
.alert {

	z-index: 999;


}

/*div#notices {
    position: absolute;
    top: 0px;
	left: 0px;
    z-index: 9;
	width: 100%;
}*/

/* iframe winkelkeur widget */
.wwk-widget__text {
	font-size: 16px !important;
}

img.image-slide,
img.intro-image,
img.wwreviews-image,
img.img-shadow {
	 /*box-shadow: 10px 10px 5px rgba(0,0,0,0.1);*/
	/*box-shadow: 0 0.5rem 0.5rem rgba(0,0,0,0.5);*/
	 box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
li.vmc_active img.image-slide {
	/*box-shadow: 0 0.3rem 0.3rem rgba(0,0,0,0.5);*/
	box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);	
}

/* Custom styling default js alert*/
.slit-in-vertical {
	-webkit-animation: slit-in-vertical 0.45s ease-out both;
	        animation: slit-in-vertical 0.45s ease-out both;
}

@-webkit-keyframes slit-in-vertical {
  0% {
    -webkit-transform: translateZ(-800px) rotateY(90deg);
            transform: translateZ(-800px) rotateY(90deg);
    opacity: 0;
  }
  54% {
    -webkit-transform: translateZ(-160px) rotateY(87deg);
            transform: translateZ(-160px) rotateY(87deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateZ(0) rotateY(0);
            transform: translateZ(0) rotateY(0);
  }
}
@keyframes slit-in-vertical {
  0% {
    -webkit-transform: translateZ(-800px) rotateY(90deg);
            transform: translateZ(-800px) rotateY(90deg);
    opacity: 0;
  }
  54% {
    -webkit-transform: translateZ(-160px) rotateY(87deg);
            transform: translateZ(-160px) rotateY(87deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateZ(0) rotateY(0);
            transform: translateZ(0) rotateY(0);
  }
}

/*---------------#region Alert--------------- */

#dialogoverlay{
  display: none;
  opacity: .8;
  position: fixed;
  top: 0px;
  left: 0px;
  background: #707070;
  width: 100%;
  z-index: 10;
}

#dialogbox{
  display: none;
  position: absolute;
  background: #fff;
  border-radius:5px; 
border: 1px solid #dddddd;
padding: 10px;
  transition: 0.3s;
  width: 40%;
  z-index: 10;
  top:0;
  left: 0;
  right: 0;
  margin: auto;
  
}



.pure-material-button-contained {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  border: none;
  border-radius: 1em;
  padding: 0 16px;
  min-width: 64px;
  height: 36px;
  vertical-align: middle;
  text-align: center;

  font-size: 14px;
  font-weight: 500;
  line-height: 36px;
  overflow: hidden;
  outline: none;
  cursor: pointer;
  background: #d9534f;
  color: #fff;

}
.pure-material-button-contained:hover {
	background: #de6764;
}


#dialogbox > div > #dialogboxbody{ 
  background: #fff; 
  padding:20px; 
  color:#000; 
  
}

#dialogbox > div > #dialogboxfoot{ 
  background: #fff; 
  padding:10px; 
  text-align:right; 
}


/*!
	By André Rinas, www.andrerinas.de
	Documentation, www.simplelightbox.com
	Available for use under the MIT License
	Version 2.14.2
*/
body.hidden-scroll {
  overflow: hidden;
}

.sl-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0,0,0,1.0);
  display: none;
  z-index: 1035;
}

.sl-wrapper {
  z-index: 1040;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: fixed;
}
.sl-wrapper * {
  box-sizing: border-box;
}
.sl-wrapper button {
  border: 0 none;
  background: transparent;
  font-size: 28px;
  padding: 0;
  cursor: pointer;
}
.sl-wrapper button:hover {
  opacity: 0.7;
}
.sl-wrapper .sl-close {
  display: none;
  position: fixed;
  right: 30px;
  top: 30px;
  z-index: 10060;
  margin-top: -14px;
  margin-right: -14px;
  height: 44px;
  width: 44px;
  line-height: 44px;
  font-family: Arial, Baskerville, monospace;
  color: #fff;
  font-size: 4rem;
}
.sl-wrapper .sl-counter {
  display: none;
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 10060;
  color: #000;
  font-size: 1rem;
}
.sl-wrapper .sl-download {
  display: none;
  position: fixed;
  bottom: 5px;
  width: 100%;
  text-align: center;
  z-index: 10060;
  color: #fff;
  font-size: 1rem;
}
.sl-wrapper .sl-download a {
  color: #fff;
}
.sl-wrapper .sl-navigation {
  width: 100%;
  display: none;
}
.sl-wrapper .sl-navigation button {
  position: fixed;
  top: 50%;
  margin-top: -22px;
  height: 44px;
  width: 22px;
  line-height: 44px;
  text-align: center;
  display: block;
  z-index: 10060;
  font-family: Arial, Baskerville, monospace;
  color: #000;
}
.sl-wrapper .sl-navigation button.sl-next {
  right: 5px;
  font-size: 2rem;
}
.sl-wrapper .sl-navigation button.sl-prev {
  left: 5px;
  font-size: 2rem;
}
@media (min-width: 35.5em) {
  .sl-wrapper .sl-navigation button {
    width: 44px;
  }
  .sl-wrapper .sl-navigation button.sl-next {
    right: 10px;
    font-size: 3rem;
	color: #fff;
  }
  .sl-wrapper .sl-navigation button.sl-prev {
    left: 10px;
    font-size: 3rem;
	color: #fff;
  }
}
@media (min-width: 50em) {
  .sl-wrapper .sl-navigation button {
    width: 44px;
  }
  .sl-wrapper .sl-navigation button.sl-next {
    right: 20px;
    font-size: 3rem;
  }
  .sl-wrapper .sl-navigation button.sl-prev {
    left: 20px;
    font-size: 3rem;
  }
}
.sl-wrapper.sl-dir-rtl .sl-navigation {
  direction: ltr;
}
.sl-wrapper .sl-image {
  position: fixed;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 10000;
}
.sl-wrapper .sl-image img {
  margin: 0;
  padding: 0;
  display: block;
  border: 0 none;
  width: 100%;
  height: auto;
}
@media (min-width: 35.5em) {
  .sl-wrapper .sl-image img {
    border: 0 none;
  }
}
@media (min-width: 50em) {
  .sl-wrapper .sl-image img {
    border: 0 none;
  }
}
.sl-wrapper .sl-image iframe {
  background: #000;
  border: 0 none;
}
@media (min-width: 35.5em) {
  .sl-wrapper .sl-image iframe {
    border: 0 none;
  }
}
@media (min-width: 50em) {
  .sl-wrapper .sl-image iframe {
    border: 0 none;
  }
}
.sl-wrapper .sl-image .sl-caption {
  display: none;
  padding: 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
  font-size: 1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.sl-wrapper .sl-image .sl-caption.pos-top {
  bottom: auto;
  top: 0;
}
.sl-wrapper .sl-image .sl-caption.pos-outside {
  bottom: auto;
}

.sl-spinner {
  display: none;
  border: 5px solid #333;
  border-radius: 40px;
  height: 40px;
  left: 50%;
  margin: -20px 0 0 -20px;
  opacity: 0;
  position: fixed;
  top: 50%;
  width: 40px;
  z-index: 1007;
  -webkit-animation: pulsate 1s ease-out infinite;
  -moz-animation: pulsate 1s ease-out infinite;
  -ms-animation: pulsate 1s ease-out infinite;
  -o-animation: pulsate 1s ease-out infinite;
  animation: pulsate 1s ease-out infinite;
}

.sl-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

.sl-transition {
  transition: -moz-transform ease 200ms;
  transition: -ms-transform ease 200ms;
  transition: -o-transform ease 200ms;
  transition: -webkit-transform ease 200ms;
  transition: transform ease 200ms;
}

@-webkit-keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
@keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
@-moz-keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
@-o-keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
@-ms-keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.clearfix {
	clear: both;
}




