/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}
.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}
.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0!important;
  font: inherit;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.owl-height {
  transition: height 0.5s ease-in-out;
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 0.1s ease;
}
.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.4s ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none;
}
.pswp * {
  box-sizing: border-box;
}
.pswp img {
  max-width: none;
}
/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}
.pswp--open {
  display: block;
}
.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}
.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}
.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}
/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}
.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.pswp__container,
.pswp__zoom-wrap {
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  transform-origin: left top;
  /* for open/close transition */
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}
.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}
.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  transition: none;
}
.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden;
}
.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}
.pswp__img {
  position: absolute;
  width: auto;
  height: auto!important;
  top: 0;
  left: 0;
}
/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden;
}
/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222;
}
.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0;
}
/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC;
}
.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline;
}

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*

	1. Buttons

 */
/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  transition: opacity 0.2s;
  box-shadow: none;
}
.pswp__button:focus,
.pswp__button:hover {
  opacity: 1;
}
.pswp__button:active {
  outline: none;
  opacity: 0.9;
}
.pswp__button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1;
}
.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(/webshop/images/default-skin/default-skin.png) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px;
}
@media (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
    background-image: url(/webshop/images/default-skin/default-skin.svg);
  }
  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: none;
  }
}
.pswp__button--close {
  background-position: 0 -44px;
}
.pswp__button--share {
  background-position: -44px -44px;
}
.pswp__button--fs {
  display: none;
}
.pswp--supports-fs .pswp__button--fs {
  display: block;
}
.pswp--fs .pswp__button--fs {
  background-position: -44px 0;
}
.pswp__button--zoom {
  display: none;
  background-position: -88px 0;
}
.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}
.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0;
}
/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden;
}
/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute;
}
.pswp__button--arrow--left {
  left: 0;
}
.pswp__button--arrow--right {
  right: 0;
}
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: '';
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute;
}
.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px;
}
.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px;
}
/*

	2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  user-select: none;
}
.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}
.pswp__share-modal--hidden {
  display: none;
}
.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  transform: translateY(6px);
  transition: transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}
.pswp__share-tooltip a {
  display: block;
  padding: 8px 12px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  line-height: 18px;
}
.pswp__share-tooltip a:hover {
  text-decoration: none;
  color: #000;
}
.pswp__share-tooltip a:first-child {
  /* round corners on the first/last list item */
  border-radius: 2px 2px 0 0;
}
.pswp__share-tooltip a:last-child {
  border-radius: 0 0 2px 2px;
}
.pswp__share-modal--fade-in {
  opacity: 1;
}
.pswp__share-modal--fade-in .pswp__share-tooltip {
  transform: translateY(0);
}
/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px;
}
a.pswp__share--facebook:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none;
}
a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF;
}
a.pswp__share--facebook:hover:before {
  border-bottom-color: #3E5C9A;
}
a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF;
}
a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D;
}
a.pswp__share--download:hover {
  background: #DDD;
}
/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px;
}
/*

	4. Caption

 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px;
}
.pswp__caption small {
  font-size: 11px;
  color: #BBB;
}
.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC;
}
.pswp__caption--empty {
  display: none;
}
/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden;
}
/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr;
}
.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px;
}
.pswp__preloader--active {
  opacity: 1;
}
.pswp__preloader--active .pswp__preloader__icn {
  /* We use .gif in browsers that don't support CSS animation */
  background: url(preloader.gif) 0 0 no-repeat;
}
.pswp--css_animation .pswp__preloader--active {
  opacity: 1;
}
.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
  animation: clockwise 500ms linear infinite;
}
.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
  animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
}
.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0;
}
.pswp--css_animation .pswp__preloader__cut {
  /*
			The idea of animating inner circle is based on Polymer ("material") loading indicator
			 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
		*/
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden;
}
.pswp--css_animation .pswp__preloader__donut {
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right;
  }
}
@keyframes clockwise {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes donut-rotate {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(-140deg);
  }
  100% {
    transform: rotate(0);
  }
}
/*

	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550;
}
/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%;
}
.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}
/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible;
}
.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5);
}
/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3);
}
/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0;
}
.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0;
}
/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001;
}
/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none;
}
.pswp__element--disabled {
  display: none !important;
}
.pswp--minimal--dark .pswp__top-bar {
  background: none;
}

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}
/**
 * Remove default margin.
 */
body {
  margin: 0;
}
/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}
/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}
/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}
/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}
/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}
/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}
/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}
/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}
/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}
/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}
/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}
/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}
/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}
/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}
/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}
/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. CUSTOM FOR WEBFLOW: Removed the input[type="submit"] selector to reduce
 *    specificity and defer to the .w-button selector
 */
button,
html input[type="button"],
input[type="reset"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}
/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}
/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}
/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. CUSTOM FOR WEBFLOW: changed from `textfield` to `none` to normalize iOS rounded input
 * 2. CUSTOM FOR WEBFLOW: box-sizing: content-box rule removed
 *    (similar to normalize.css >=4.0.0)
 */
input[type="search"] {
  -webkit-appearance: none;
  /* 1 */
}
/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}
/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}
/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}

@font-face {
  font-family: 'webflow-icons';
  src: url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBiUAAAC8AAAAYGNtYXDpP+a4AAABHAAAAFxnYXNwAAAAEAAAAXgAAAAIZ2x5ZmhS2XEAAAGAAAADHGhlYWQTFw3HAAAEnAAAADZoaGVhCXYFgQAABNQAAAAkaG10eCe4A1oAAAT4AAAAMGxvY2EDtALGAAAFKAAAABptYXhwABAAPgAABUQAAAAgbmFtZSoCsMsAAAVkAAABznBvc3QAAwAAAAAHNAAAACAAAwP4AZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpAwPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAQAAAAAwACAACAAQAAQAg5gPpA//9//8AAAAAACDmAOkA//3//wAB/+MaBBcIAAMAAQAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEBIAAAAyADgAAFAAAJAQcJARcDIP5AQAGA/oBAAcABwED+gP6AQAABAOAAAALgA4AABQAAEwEXCQEH4AHAQP6AAYBAAcABwED+gP6AQAAAAwDAAOADQALAAA8AHwAvAAABISIGHQEUFjMhMjY9ATQmByEiBh0BFBYzITI2PQE0JgchIgYdARQWMyEyNj0BNCYDIP3ADRMTDQJADRMTDf3ADRMTDQJADRMTDf3ADRMTDQJADRMTAsATDSANExMNIA0TwBMNIA0TEw0gDRPAEw0gDRMTDSANEwAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFVz+fAGEAAAAAAL//f+9BAMDwwAEAAkAABcBJwEXAwE3AQdpA5ps/GZsbAOabPxmbEMDmmz8ZmwDmvxmbAOabAAAAgAA/8AEAAPAAB0AOwAABSInLgEnJjU0Nz4BNzYzMTIXHgEXFhUUBw4BBwYjNTI3PgE3NjU0Jy4BJyYjMSIHDgEHBhUUFx4BFxYzAgBqXV6LKCgoKIteXWpqXV6LKCgoKIteXWpVSktvICEhIG9LSlVVSktvICEhIG9LSlVAKCiLXl1qal1eiygoKCiLXl1qal1eiygoZiEgb0tKVVVKS28gISEgb0tKVVVKS28gIQABAAABwAIAA8AAEgAAEzQ3PgE3NjMxFSIHDgEHBhUxIwAoKIteXWpVSktvICFmAcBqXV6LKChmISBvS0pVAAAAAgAA/8AFtgPAADIAOgAAARYXHgEXFhUUBw4BBwYHIxUhIicuAScmNTQ3PgE3NjMxOAExNDc+ATc2MzIXHgEXFhcVATMJATMVMzUEjD83NlAXFxYXTjU1PQL8kz01Nk8XFxcXTzY1PSIjd1BQWlJJSXInJw3+mdv+2/7c25MCUQYcHFg5OUA/ODlXHBwIAhcXTzY1PTw1Nk8XF1tQUHcjIhwcYUNDTgL+3QFt/pOTkwABAAAAAQAAmM7nP18PPPUACwQAAAAAANciZKUAAAAA1yJkpf/9/70FtgPDAAAACAACAAAAAAAAAAEAAAPA/8AAAAW3//3//QW2AAEAAAAAAAAAAAAAAAAAAAAMBAAAAAAAAAAAAAAAAgAAAAQAASAEAADgBAAAwAQAAJ0EAP/9BAAAAAQAAAAFtwAAAAAAAAAKABQAHgAyAEYAjACiAL4BFgE2AY4AAAABAAAADAA8AAMAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADQAAAAEAAAAAAAIABwCWAAEAAAAAAAMADQBIAAEAAAAAAAQADQCrAAEAAAAAAAUACwAnAAEAAAAAAAYADQBvAAEAAAAAAAoAGgDSAAMAAQQJAAEAGgANAAMAAQQJAAIADgCdAAMAAQQJAAMAGgBVAAMAAQQJAAQAGgC4AAMAAQQJAAUAFgAyAAMAAQQJAAYAGgB8AAMAAQQJAAoANADsd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzVmVyc2lvbiAxLjAAVgBlAHIAcwBpAG8AbgAgADEALgAwd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzUmVndWxhcgBSAGUAZwB1AGwAYQByd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzRm9udCBnZW5lcmF0ZWQgYnkgSWNvTW9vbi4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==") format('truetype');
  font-weight: normal;
  font-style: normal;
}
[class^="w-icon-"],
[class*=" w-icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'webflow-icons' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.w-icon-slider-right:before {
  content: "\e600";
}
.w-icon-slider-left:before {
  content: "\e601";
}
.w-icon-nav-menu:before {
  content: "\e602";
}
.w-icon-arrow-down:before,
.w-icon-dropdown-toggle:before {
  content: "\e603";
}
.w-icon-file-upload-remove:before {
  content: "\e900";
}
.w-icon-file-upload-icon:before {
  content: "\e903";
}
* {
  box-sizing: border-box;
}
html {
  height: 100%;
}
body {
  margin: 0;
  min-height: 100%;
  background-color: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #333;
}
img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}
html.w-mod-touch * {
  background-attachment: scroll !important;
}
.w-block {
  display: block;
}
.w-inline-block {
  max-width: 100%;
  display: inline-block;
}
.w-clearfix:before,
.w-clearfix:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.w-clearfix:after {
  clear: both;
}
.w-hidden {
  display: none;
}
.w-button {
  display: inline-block;
  padding: 9px 15px;
  background-color: #3898ec;
  color: white;
  font-weight: 500;
  border: 0;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
  border-radius: 2px;
  /*-webkit-box-shadow: 0px 2px 2px 0px rgba(17,115,186,1);*/
  /*-moz-box-shadow: 0px 2px 2px 0px rgba(17,115,186,1);*/
  /*box-shadow: 0px 2px 2px 0px rgba(17,115,186,1);*/
  box-shadow: inset 0px -2px 1px 0px #1173ba;
}
.w-button.w-button-small {
  padding: 5px 20px;
}
input.w-button {
  -webkit-appearance: button;
}
html[data-w-dynpage] [data-w-cloak] {
  color: transparent !important;
}
.w-webflow-badge,
.w-webflow-badge * {
  position: static;
  left: auto;
  top: auto;
  right: auto;
  bottom: auto;
  z-index: auto;
  display: block;
  visibility: visible;
  overflow: visible;
  overflow-x: visible;
  overflow-y: visible;
  box-sizing: border-box;
  width: auto;
  height: auto;
  max-height: none;
  max-width: none;
  min-height: 0;
  min-width: 0;
  margin: 0;
  padding: 0;
  float: none;
  clear: none;
  border: 0 none transparent;
  border-radius: 0;
  background: none;
  background-image: none;
  background-position: 0% 0%;
  background-size: auto auto;
  background-repeat: repeat;
  background-origin: padding-box;
  background-clip: border-box;
  background-attachment: scroll;
  background-color: transparent;
  box-shadow: none;
  opacity: 1.0;
  transform: none;
  transition: none;
  direction: ltr;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-style: inherit;
  font-variant: inherit;
  text-align: inherit;
  letter-spacing: inherit;
  text-decoration: inherit;
  text-indent: 0;
  text-transform: inherit;
  list-style-type: disc;
  text-shadow: none;
  font-smoothing: auto;
  vertical-align: baseline;
  cursor: inherit;
  white-space: inherit;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
}
.w-webflow-badge {
  position: fixed !important;
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 2147483647 !important;
  top: auto !important;
  right: 12px !important;
  bottom: 12px !important;
  left: auto !important;
  color: #AAADB0 !important;
  background-color: #fff !important;
  border-radius: 3px !important;
  padding: 6px 8px 6px 6px !important;
  font-size: 12px !important;
  opacity: 1.0 !important;
  line-height: 14px !important;
  text-decoration: none !important;
  transform: none !important;
  margin: 0 !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  white-space: nowrap;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.w-webflow-badge > img {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  vertical-align: middle !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  margin-bottom: 10px;
}
h1 {
  font-size: 38px;
  line-height: 44px;
  margin-top: 20px;
}
h2 {
  font-size: 31px;
  line-height: 36px;
  margin-top: 20px;
}
h3 {
  font-size: 24px;
  line-height: 30px;
  margin-top: 20px;
}
h4 {
  font-size: 18px;
  line-height: 24px;
  margin-top: 10px;
}
h5 {
  font-size: 14px;
  line-height: 20px;
  margin-top: 10px;
}
h6 {
  font-size: 12px;
  line-height: 18px;
  margin-top: 10px;
}
p {
  margin-top: 0;
  margin-bottom: 10px;
}
blockquote {
  margin: 0 0 10px 0;
  padding: 10px 20px;
  border-left: 5px solid #E2E2E2;
  font-size: 18px;
  line-height: 22px;
}
figure {
  margin: 0;
  margin-bottom: 10px;
}
figcaption {
  margin-top: 5px;
  text-align: center;
}
ul,
ol {
  margin-top: 0px;
  margin-bottom: 10px;
  padding-left: 40px;
}
.w-list-unstyled {
  padding-left: 0;
  list-style: none;
}
.w-embed:before,
.w-embed:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.w-embed:after {
  clear: both;
}
.w-video {
  width: 100%;
  position: relative;
  padding: 0;
}
.w-video iframe,
.w-video object,
.w-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}
button,
html input[type="button"],
input[type="reset"] {
  border: 0;
  cursor: pointer;
  -webkit-appearance: button;
}
.w-form {
  margin: 0 0 15px;
}
.w-form-done {
  display: none;
  padding: 20px;
  text-align: center;
  background-color: #dddddd;
}
.w-form-fail {
  display: none;
  margin-top: 10px;
  padding: 10px;
  background-color: #ffdede;
}
label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.w-input,
.w-select {
  display: block;
  width: 100%;
  height: 38px;
  padding: 8px 12px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #333333;
  vertical-align: middle;
  background-color: #ffffff;
  border: 1px solid #cccccc;
}
.w-input:-moz-placeholder,
.w-select:-moz-placeholder {
  color: #999;
}
.w-input::-moz-placeholder,
.w-select::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.w-input:-ms-input-placeholder,
.w-select:-ms-input-placeholder {
  color: #999;
}
.w-input::-webkit-input-placeholder,
.w-select::-webkit-input-placeholder {
  color: #999;
}
.w-input:focus,
.w-select:focus {
  border-color: #3898EC;
  outline: 0;
}
.w-input[disabled],
.w-select[disabled],
.w-input[readonly],
.w-select[readonly],
fieldset[disabled] .w-input,
fieldset[disabled] .w-select {
  cursor: not-allowed;
  background-color: #eeeeee;
}
textarea.w-input,
textarea.w-select {
  height: auto;
}
.w-select {
  background-color: #f3f3f3;
}
.w-select[multiple] {
  height: auto;
}
.w-form-label {
  display: inline-block;
  cursor: pointer;
  font-weight: normal;
  margin-bottom: 0px;
}
.w-radio {
  display: block;
  margin-bottom: 5px;
  padding-left: 20px;
}
.w-radio:before,
.w-radio:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.w-radio:after {
  clear: both;
}
.w-radio-input {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
  float: left;
  margin-left: -20px;
}
/*.w-radio-input {*/
/*  margin-top: 3px;*/
/*}*/
.w-file-upload {
  display: block;
  margin-bottom: 10px;
}
.w-file-upload-input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -100;
}
.w-file-upload-default,
.w-file-upload-uploading,
.w-file-upload-success {
  display: inline-block;
  color: #333333;
}
.w-file-upload-error {
  display: block;
  margin-top: 10px;
}
.w-file-upload-default.w-hidden,
.w-file-upload-uploading.w-hidden,
.w-file-upload-error.w-hidden,
.w-file-upload-success.w-hidden {
  display: none;
}
.w-file-upload-uploading-btn {
  display: flex;
  font-size: 14px;
  font-weight: normal;
  cursor: pointer;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid #cccccc;
  background-color: #fafafa;
}
.w-file-upload-file {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  margin: 0;
  padding: 8px 9px 8px 11px;
  border: 1px solid #cccccc;
  background-color: #fafafa;
}
.w-file-upload-file-name {
  font-size: 14px;
  font-weight: normal;
  display: block;
}
.w-file-remove-link {
  margin-top: 3px;
  margin-left: 10px;
  width: auto;
  height: auto;
  padding: 3px;
  display: block;
  cursor: pointer;
}
.w-icon-file-upload-remove {
  margin: auto;
  font-size: 10px;
}
.w-file-upload-error-msg {
  display: inline-block;
  color: #ea384c;
  padding: 2px 0;
}
.w-file-upload-info {
  display: inline-block;
  line-height: 38px;
  padding: 0 12px;
}
.w-file-upload-label {
  display: inline-block;
  font-size: 14px;
  font-weight: normal;
  cursor: pointer;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid #cccccc;
  background-color: #fafafa;
}
.w-icon-file-upload-icon,
.w-icon-file-upload-uploading {
  display: inline-block;
  margin-right: 8px;
  width: 20px;
}
.w-icon-file-upload-uploading {
  height: 20px;
}
.w-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 940px;
}
.w-container:before,
.w-container:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.w-container:after {
  clear: both;
}
.w-container .w-row {
  margin-left: -10px;
  margin-right: -10px;
}
.w-row:before,
.w-row:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.w-row:after {
  clear: both;
}
.w-row .w-row {
  margin-left: 0;
  margin-right: 0;
}
.w-col {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.w-col .w-col {
  padding-left: 0;
  padding-right: 0;
}
.w-col-1 {
  width: 8.33333333%;
}
.w-col-2 {
  width: 16.66666667%;
}
.w-col-3 {
  width: 25%;
}
.w-col-4 {
  width: 33.33333333%;
}
.w-col-5 {
  width: 41.66666667%;
}
.w-col-6 {
  width: 50%;
}
.w-col-7 {
  width: 58.33333333%;
}
.w-col-8 {
  width: 66.66666667%;
}
.w-col-9 {
  width: 75%;
}
.w-col-10 {
  width: 83.33333333%;
}
.w-col-11 {
  width: 91.66666667%;
}
.w-col-12 {
  width: 100%;
}
.w-hidden-main {
  display: none !important;
}
@media screen and (max-width: 991px) {
  .w-container {
    max-width: 728px;
  }
  .w-hidden-main {
    display: inherit !important;
  }
  .w-hidden-medium {
    display: none !important;
  }
  .w-col-medium-1 {
    width: 8.33333333%;
  }
  .w-col-medium-2 {
    width: 16.66666667%;
  }
  .w-col-medium-3 {
    width: 25%;
  }
  .w-col-medium-4 {
    width: 33.33333333%;
  }
  .w-col-medium-5 {
    width: 41.66666667%;
  }
  .w-col-medium-6 {
    width: 50%;
  }
  .w-col-medium-7 {
    width: 58.33333333%;
  }
  .w-col-medium-8 {
    width: 66.66666667%;
  }
  .w-col-medium-9 {
    width: 75%;
  }
  .w-col-medium-10 {
    width: 83.33333333%;
  }
  .w-col-medium-11 {
    width: 91.66666667%;
  }
  .w-col-medium-12 {
    width: 100%;
  }
  .w-col-stack {
    width: 100%;
    left: auto;
    right: auto;
  }
}
@media screen and (max-width: 767px) {
  .w-hidden-main {
    display: inherit !important;
  }
  .w-hidden-medium {
    display: inherit !important;
  }
  .w-hidden-small {
    display: none !important;
  }
  .w-row,
  .w-container .w-row {
    margin-left: 0;
    margin-right: 0;
  }
  .w-col {
    width: 100%;
    left: auto;
    right: auto;
  }
  .w-col-small-1 {
    width: 8.33333333%;
  }
  .w-col-small-2 {
    width: 16.66666667%;
  }
  .w-col-small-3 {
    width: 25%;
  }
  .w-col-small-4 {
    width: 33.33333333%;
  }
  .w-col-small-5 {
    width: 41.66666667%;
  }
  .w-col-small-6 {
    width: 50%;
  }
  .w-col-small-7 {
    width: 58.33333333%;
  }
  .w-col-small-8 {
    width: 66.66666667%;
  }
  .w-col-small-9 {
    width: 75%;
  }
  .w-col-small-10 {
    width: 83.33333333%;
  }
  .w-col-small-11 {
    width: 91.66666667%;
  }
  .w-col-small-12 {
    width: 100%;
  }
}
@media screen and (max-width: 479px) {
  .w-container {
    max-width: none;
  }
  .w-hidden-main {
    display: inherit !important;
  }
  .w-hidden-medium {
    display: inherit !important;
  }
  .w-hidden-small {
    display: inherit !important;
  }
  .w-hidden-tiny {
    display: none !important;
  }
  .w-col {
    width: 100%;
  }
  .w-col-tiny-1 {
    width: 8.33333333%;
  }
  .w-col-tiny-2 {
    width: 16.66666667%;
  }
  .w-col-tiny-3 {
    width: 25%;
  }
  .w-col-tiny-4 {
    width: 33.33333333%;
  }
  .w-col-tiny-5 {
    width: 41.66666667%;
  }
  .w-col-tiny-6 {
    width: 50%;
  }
  .w-col-tiny-7 {
    width: 58.33333333%;
  }
  .w-col-tiny-8 {
    width: 66.66666667%;
  }
  .w-col-tiny-9 {
    width: 75%;
  }
  .w-col-tiny-10 {
    width: 83.33333333%;
  }
  .w-col-tiny-11 {
    width: 91.66666667%;
  }
  .w-col-tiny-12 {
    width: 100%;
  }
}
.w-widget {
  position: relative;
}
.w-widget-map {
  width: 100%;
  height: 400px;
}
.w-widget-map label {
  width: auto;
  display: inline;
}
.w-widget-map img {
  max-width: inherit;
}
.w-widget-map .gm-style-iw {
  text-align: center;
}
.w-widget-map .gm-style-iw > button {
  display: none !important;
}
.w-widget-twitter {
  overflow: hidden;
}
.w-widget-twitter-count-shim {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 28px;
  height: 20px;
  text-align: center;
  background: white;
  border: #758696 solid 1px;
  border-radius: 3px;
}
.w-widget-twitter-count-shim * {
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}
.w-widget-twitter-count-shim .w-widget-twitter-count-inner {
  position: relative;
  font-size: 15px;
  line-height: 12px;
  text-align: center;
  color: #999;
  font-family: serif;
}
.w-widget-twitter-count-shim .w-widget-twitter-count-clear {
  position: relative;
  display: block;
}
.w-widget-twitter-count-shim.w--large {
  width: 36px;
  height: 28px;
}
.w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 18px;
}
.w-widget-twitter-count-shim:not(.w--vertical) {
  margin-left: 5px;
  margin-right: 8px;
}
.w-widget-twitter-count-shim:not(.w--vertical).w--large {
  margin-left: 6px;
}
.w-widget-twitter-count-shim:not(.w--vertical):before,
.w-widget-twitter-count-shim:not(.w--vertical):after {
  top: 50%;
  left: 0;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.w-widget-twitter-count-shim:not(.w--vertical):before {
  border-color: rgba(117, 134, 150, 0);
  border-right-color: #5d6c7b;
  border-width: 4px;
  margin-left: -9px;
  margin-top: -4px;
}
.w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
  border-width: 5px;
  margin-left: -10px;
  margin-top: -5px;
}
.w-widget-twitter-count-shim:not(.w--vertical):after {
  border-color: rgba(255, 255, 255, 0);
  border-right-color: white;
  border-width: 4px;
  margin-left: -8px;
  margin-top: -4px;
}
.w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
  border-width: 5px;
  margin-left: -9px;
  margin-top: -5px;
}
.w-widget-twitter-count-shim.w--vertical {
  width: 61px;
  height: 33px;
  margin-bottom: 8px;
}
.w-widget-twitter-count-shim.w--vertical:before,
.w-widget-twitter-count-shim.w--vertical:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.w-widget-twitter-count-shim.w--vertical:before {
  border-color: rgba(117, 134, 150, 0);
  border-top-color: #5d6c7b;
  border-width: 5px;
  margin-left: -5px;
}
.w-widget-twitter-count-shim.w--vertical:after {
  border-color: rgba(255, 255, 255, 0);
  border-top-color: white;
  border-width: 4px;
  margin-left: -4px;
}
.w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 22px;
}
.w-widget-twitter-count-shim.w--vertical.w--large {
  width: 76px;
}
.w-widget-gplus {
  overflow: hidden;
}
.w-background-video {
  position: relative;
  overflow: hidden;
  height: 500px;
  color: white;
}
.w-background-video > video {
  background-size: cover;
  background-position: 50% 50%;
  position: absolute;
  margin: auto;
  width: 100%;
  height: 100%;
  right: -100%;
  bottom: -100%;
  top: -100%;
  left: -100%;
  object-fit: cover;
  z-index: -100;
}
.w-background-video > video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}
.w-slider {
  position: relative;
  height: 300px;
  text-align: center;
  background: #dddddd;
  clear: both;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}
.w-slider-mask {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
  left: 0;
  right: 0;
  height: 100%;
  white-space: nowrap;
}
.w-slide {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: 100%;
  white-space: normal;
  text-align: left;
}
.w-slider-nav {
  position: absolute;
  z-index: 2;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  padding-top: 10px;
  height: 40px;
  text-align: center;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}
.w-slider-nav.w-round > div {
  border-radius: 100%;
}
.w-slider-nav.w-num > div {
  width: auto;
  height: auto;
  padding: 0.2em 0.5em;
  font-size: inherit;
  line-height: inherit;
}
.w-slider-nav.w-shadow > div {
  box-shadow: 0 0 3px rgba(51, 51, 51, 0.4);
}
.w-slider-nav-invert {
  color: #fff;
}
.w-slider-nav-invert > div {
  background-color: rgba(34, 34, 34, 0.4);
}
.w-slider-nav-invert > div.w-active {
  background-color: #222;
}
.w-slider-dot {
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  margin: 0 3px 0.5em;
  transition: background-color 100ms, color 100ms;
}
.w-slider-dot.w-active {
  background-color: #fff;
}
.w-slider-dot:focus {
  outline: none;
  box-shadow: 0px 0px 0px 2px #fff;
}
.w-slider-dot:focus.w-active {
  box-shadow: none;
}
.w-slider-arrow-left,
.w-slider-arrow-right {
  position: absolute;
  width: 80px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  cursor: pointer;
  overflow: hidden;
  color: white;
  font-size: 40px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  user-select: none;
}
.w-slider-arrow-left [class^='w-icon-'],
.w-slider-arrow-right [class^='w-icon-'],
.w-slider-arrow-left [class*=' w-icon-'],
.w-slider-arrow-right [class*=' w-icon-'] {
  position: absolute;
}
.w-slider-arrow-left:focus,
.w-slider-arrow-right:focus {
  outline: 0;
}
.w-slider-arrow-left {
  z-index: 3;
  right: auto;
}
.w-slider-arrow-right {
  z-index: 4;
  left: auto;
}
.w-icon-slider-left,
.w-icon-slider-right {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 1em;
  height: 1em;
}
.w-slider-aria-label {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.w-slider-force-show {
  display: block !important;
}
.w-dropdown {
  display: inline-block;
  position: relative;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  z-index: 900;
}
.w-dropdown-btn,
.w-dropdown-toggle,
.w-dropdown-link {
  position: relative;
  vertical-align: top;
  text-decoration: none;
  color: #222222;
  padding: 20px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
}
.w-dropdown-toggle {
  -webkit-user-select: none;
  user-select: none;
  display: inline-block;
  cursor: pointer;
  padding-right: 40px;
}
.w-dropdown-toggle:focus {
  outline: 0;
}
.w-icon-dropdown-toggle {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  margin-right: 20px;
  width: 1em;
  height: 1em;
}
.w-dropdown-list {
  position: absolute;
  background: #dddddd;
  display: none;
  min-width: 100%;
}
.w-dropdown-list.w--open {
  display: block;
}
.w-dropdown-link {
  padding: 10px 20px;
  display: block;
  color: #222222;
}
.w-dropdown-link.w--current {
  color: #0082f3;
}
.w-dropdown-link:focus {
  outline: 0;
}
@media screen and (max-width: 767px) {
  .w-nav-brand {
    padding-left: 10px;
  }
}
/**
 * ## Note
 * Safari (on both iOS and OS X) does not handle viewport units (vh, vw) well.
 * For example percentage units do not work on descendants of elements that
 * have any dimensions expressed in viewport units. It also doesn’t handle them at
 * all in `calc()`.
 */
/**
 * Wrapper around all lightbox elements
 *
 * 1. Since the lightbox can receive focus, IE also gives it an outline.
 * 2. Fixes flickering on Chrome when a transition is in progress
 *    underneath the lightbox.
 */
.w-lightbox-backdrop {
  color: #000;
  cursor: auto;
  font-family: serif;
  font-size: medium;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-height: normal;
  list-style: disc;
  text-align: start;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, Ubuntu, "Segoe UI", Verdana, sans-serif;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 300;
  text-align: center;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  outline: 0;
  /* 1 */
  opacity: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-transform: translate(0, 0);
  /* 2 */
}
/**
 * Neat trick to bind the rubberband effect to our canvas instead of the whole
 * document on iOS. It also prevents a bug that causes the document underneath to scroll.
 */
.w-lightbox-backdrop,
.w-lightbox-container {
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.w-lightbox-content {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.w-lightbox-view {
  position: absolute;
  width: 100vw;
  height: 100vh;
  opacity: 0;
}
.w-lightbox-view:before {
  content: "";
  height: 100vh;
}
/* .w-lightbox-content */
.w-lightbox-group,
.w-lightbox-group .w-lightbox-view,
.w-lightbox-group .w-lightbox-view:before {
  height: 86vh;
}
.w-lightbox-frame,
.w-lightbox-view:before {
  display: inline-block;
  vertical-align: middle;
}
/*
 * 1. Remove default margin set by user-agent on the <figure> element.
 */
.w-lightbox-figure {
  position: relative;
  margin: 0;
  /* 1 */
}
.w-lightbox-group .w-lightbox-figure {
  cursor: pointer;
}
/**
 * IE adds image dimensions as width and height attributes on the IMG tag,
 * but we need both width and height to be set to auto to enable scaling.
 */
.w-lightbox-img {
  width: auto;
  height: auto;
  max-width: none;
}
/**
 * 1. Reset if style is set by user on "All Images"
 */
.w-lightbox-image {
  display: block;
  float: none;
  /* 1 */
  max-width: 100vw;
  max-height: 100vh;
}
.w-lightbox-group .w-lightbox-image {
  max-height: 86vh;
}
.w-lightbox-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: .5em 1em;
  background: rgba(0, 0, 0, 0.4);
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.w-lightbox-embed {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.w-lightbox-control {
  position: absolute;
  top: 0;
  width: 4em;
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  transition: all .3s;
}
.w-lightbox-left {
  display: none;
  bottom: 0;
  left: 0;
  /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-20 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0 0h5v23h23v5h-28z" opacity=".4"/><path d="m1 1h3v23h23v3h-26z" fill="#fff"/></g></svg> */
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg==");
}
.w-lightbox-right {
  display: none;
  right: 0;
  bottom: 0;
  /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0-0h28v28h-5v-23h-23z" opacity=".4"/><path d="m1 1h26v26h-3v-23h-23z" fill="#fff"/></g></svg> */
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+");
}
/*
 * Without specifying the with and height inside the SVG, all versions of IE render the icon too small.
 * The bug does not seem to manifest itself if the elements are tall enough such as the above arrows.
 * (http://stackoverflow.com/questions/16092114/background-size-differs-in-internet-explorer)
 */
.w-lightbox-close {
  right: 0;
  height: 2.6em;
  /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 18 17" width="18" height="17"><g transform="rotate(45)"><path d="m0 0h7v-7h5v7h7v5h-7v7h-5v-7h-7z" opacity=".4"/><path d="m1 1h7v-7h3v7h7v3h-7v7h-3v-7h-7z" fill="#fff"/></g></svg> */
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=");
  background-size: 18px;
}
/**
 * 1. All IE versions add extra space at the bottom without this.
 */
.w-lightbox-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 1vh;
  line-height: 0;
  /* 1 */
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}
/*
 * 1. We use content-box to avoid having to do `width: calc(10vh + 2vw)`
 *    which doesn’t work in Safari anyway.
 * 2. Chrome renders images pixelated when switching to GPU. Making sure
 *    the parent is also rendered on the GPU (by setting translate3d for
 *    example) fixes this behavior.
 */
.w-lightbox-item {
  display: inline-block;
  width: 10vh;
  padding: 2vh 1vh;
  box-sizing: content-box;
  /* 1 */
  cursor: pointer;
  -webkit-transform: translate3d(0, 0, 0);
  /* 2 */
}
.w-lightbox-active {
  opacity: .3;
}
.w-lightbox-thumbnail {
  position: relative;
  height: 10vh;
  background: #222;
  overflow: hidden;
}
.w-lightbox-thumbnail-image {
  position: absolute;
  top: 0;
  left: 0;
}
.w-lightbox-thumbnail .w-lightbox-tall {
  top: 50%;
  width: 100%;
  transform: translate(0, -50%);
}
.w-lightbox-thumbnail .w-lightbox-wide {
  left: 50%;
  height: 100%;
  transform: translate(-50%, 0);
}
/*
 * Spinner
 *
 * Absolute pixel values are used to avoid rounding errors that would cause
 * the white spinning element to be misaligned with the track.
 */
.w-lightbox-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  border: 5px solid rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  animation: spin .8s infinite linear;
}
.w-lightbox-spinner:after {
  content: "";
  position: absolute;
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
  border: 3px solid transparent;
  border-bottom-color: #fff;
  border-radius: 50%;
}
/*
 * Utility classes
 */
.w-lightbox-hide {
  display: none;
}
.w-lightbox-noscroll {
  overflow: hidden;
}
@media (min-width: 768px) {
  .w-lightbox-content {
    height: 96vh;
    margin-top: 2vh;
  }
  .w-lightbox-view,
  .w-lightbox-view:before {
    height: 96vh;
  }
  /* .w-lightbox-content */
  .w-lightbox-group,
  .w-lightbox-group .w-lightbox-view,
  .w-lightbox-group .w-lightbox-view:before {
    height: 84vh;
  }
  .w-lightbox-image {
    max-width: 96vw;
    max-height: 96vh;
  }
  .w-lightbox-group .w-lightbox-image {
    max-width: 82.3vw;
    max-height: 84vh;
  }
  .w-lightbox-left,
  .w-lightbox-right {
    display: block;
    opacity: .5;
  }
  .w-lightbox-close {
    opacity: .8;
  }
  .w-lightbox-control:hover {
    opacity: 1;
  }
}
.w-lightbox-inactive,
.w-lightbox-inactive:hover {
  opacity: 0;
}
.w-richtext:before,
.w-richtext:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.w-richtext:after {
  clear: both;
}
.w-richtext[contenteditable="true"]:before,
.w-richtext[contenteditable="true"]:after {
  white-space: initial;
}
.w-richtext ol,
.w-richtext ul {
  overflow: hidden;
}
.w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:after,
.w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:after {
  outline: 2px solid #2895f7;
}
.w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div,
.w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
  outline: 2px solid #2895f7;
}
.w-richtext figure.w-richtext-figure-type-video > div:after,
.w-richtext figure[data-rt-type="video"] > div:after {
  content: '';
  position: absolute;
  display: none;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.w-richtext figure {
  position: relative;
  max-width: 60%;
}
.w-richtext figure > div:before {
  cursor: default!important;
}
.w-richtext figure img {
  width: 100%;
}
.w-richtext figure figcaption.w-richtext-figcaption-placeholder {
  opacity: 0.6;
}
.w-richtext figure div {
  /* fix incorrectly sized selection border in the data manager */
  font-size: 0px;
  color: transparent;
}
.w-richtext figure.w-richtext-figure-type-image,
.w-richtext figure[data-rt-type="image"] {
  display: table;
}
.w-richtext figure.w-richtext-figure-type-image > div,
.w-richtext figure[data-rt-type="image"] > div {
  display: inline-block;
}
.w-richtext figure.w-richtext-figure-type-image > figcaption,
.w-richtext figure[data-rt-type="image"] > figcaption {
  display: table-caption;
  caption-side: bottom;
}
.w-richtext figure.w-richtext-figure-type-video,
.w-richtext figure[data-rt-type="video"] {
  width: 60%;
  height: 0;
}
.w-richtext figure.w-richtext-figure-type-video iframe,
.w-richtext figure[data-rt-type="video"] iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.w-richtext figure.w-richtext-figure-type-video > div,
.w-richtext figure[data-rt-type="video"] > div {
  width: 100%;
}
.w-richtext figure.w-richtext-align-center {
  margin-right: auto;
  margin-left: auto;
  clear: both;
}
.w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div,
.w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
  max-width: 100%;
}
.w-richtext figure.w-richtext-align-normal {
  clear: both;
}
.w-richtext figure.w-richtext-align-fullwidth {
  width: 100%;
  max-width: 100%;
  text-align: center;
  clear: both;
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.w-richtext figure.w-richtext-align-fullwidth > div {
  display: inline-block;
  /* padding-bottom is used for aspect ratios in video figures
      we want the div to inherit that so hover/selection borders in the designer-canvas
      fit right*/
  padding-bottom: inherit;
}
.w-richtext figure.w-richtext-align-fullwidth > figcaption {
  display: block;
}
.w-richtext figure.w-richtext-align-floatleft {
  float: left;
  margin-right: 15px;
  clear: none;
}
.w-richtext figure.w-richtext-align-floatright {
  float: right;
  margin-left: 15px;
  clear: none;
}
.w-nav {
  position: relative;
  background: #dddddd;
  z-index: 1000;
}
.w-nav:before,
.w-nav:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.w-nav:after {
  clear: both;
}
.w-nav-brand {
  position: relative;
  float: left;
  text-decoration: none;
  color: #333333;
}
.w-nav-link {
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  color: #222222;
  padding: 20px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}
.w-nav-link.w--current {
  color: #0082f3;
}
.w-nav-menu {
  position: relative;
  float: right;
}
[data-nav-menu-open] {
  display: block !important;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #C8C8C8;
  text-align: center;
  overflow: visible;
  min-width: 200px;
}
.w--nav-link-open {
  display: block;
  position: relative;
}
.w-nav-overlay {
  position: absolute;
  overflow: hidden;
  display: none;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
}
.w-nav-overlay [data-nav-menu-open] {
  top: 0;
}
.w-nav[data-animation="over-left"] .w-nav-overlay {
  width: auto;
}
.w-nav[data-animation="over-left"] .w-nav-overlay,
.w-nav[data-animation="over-left"] [data-nav-menu-open] {
  right: auto;
  z-index: 1;
  top: 0;
}
.w-nav[data-animation="over-right"] .w-nav-overlay {
  width: auto;
}
.w-nav[data-animation="over-right"] .w-nav-overlay,
.w-nav[data-animation="over-right"] [data-nav-menu-open] {
  left: auto;
  z-index: 1;
  top: 0;
}
.w-nav-button {
  position: relative;
  float: right;
  padding: 18px;
  font-size: 24px;
  display: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  user-select: none;
}
.w-nav-button:focus {
  outline: 0;
}
.w-nav-button.w--open {
  background-color: #C8C8C8;
  color: white;
}
.w-nav[data-collapse="all"] .w-nav-menu {
  display: none;
}
.w-nav[data-collapse="all"] .w-nav-button {
  display: block;
}
.w--nav-dropdown-open {
  display: block;
}
.w--nav-dropdown-toggle-open {
  display: block;
}
.w--nav-dropdown-list-open {
  position: static;
}
@media screen and (max-width: 991px) {
  .w-nav[data-collapse="medium"] .w-nav-menu {
    display: none;
  }
  .w-nav[data-collapse="medium"] .w-nav-button {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .w-nav[data-collapse="small"] .w-nav-menu {
    display: none;
  }
  .w-nav[data-collapse="small"] .w-nav-button {
    display: block;
  }
  .w-nav-brand {
    padding-left: 10px;
  }
}
@media screen and (max-width: 479px) {
  .w-nav[data-collapse="tiny"] .w-nav-menu {
    display: none;
  }
  .w-nav[data-collapse="tiny"] .w-nav-button {
    display: block;
  }
}
.w-tabs {
  position: relative;
}
.w-tabs:before,
.w-tabs:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.w-tabs:after {
  clear: both;
}
.w-tab-menu {
  position: relative;
}
.w-tab-link {
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  padding: 9px 30px;
  text-align: left;
  cursor: pointer;
  color: #222222;
  background-color: #dddddd;
}
.w-tab-link.w--current {
  background-color: #C8C8C8;
}
.w-tab-link:focus {
  outline: 0;
}
.w-tab-content {
  position: relative;
  display: block;
  overflow: hidden;
}
.w-tab-pane {
  position: relative;
  display: none;
}
.w--tab-active {
  display: block;
}
@media screen and (max-width: 479px) {
  .w-tab-link {
    display: block;
  }
}
.w-ix-emptyfix:after {
  content: "";
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.w-dyn-empty {
  padding: 10px;
  background-color: #dddddd;
}
.w-dyn-hide {
  display: none !important;
}
.w-dyn-bind-empty {
  display: none !important;
}
.w-condition-invisible {
  display: none !important;
}

.w-layout-grid {
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}
.w-checkbox {
  display: block;
  margin-bottom: 5px;
  padding-left: 20px;
}
.w-checkbox::before {
  content: ' ';
  display: table;
  grid-column-end: 2;
  grid-column-start: 1;
  grid-row-end: 2;
  grid-row-start: 1;
}
.w-checkbox::after {
  content: ' ';
  display: table;
  grid-column-end: 2;
  grid-column-start: 1;
  grid-row-end: 2;
  grid-row-start: 1;
  clear: both;
}
.w-checkbox-input {
  float: left;
  margin-bottom: 0px;
  margin-left: -20px;
  margin-right: 0px;
  margin-top: 4px;
  line-height: normal;
}
.w-checkbox-input--inputType-custom {
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-color: #ccc;
  border-bottom-color: #ccc;
  border-left-color: #ccc;
  border-right-color: #ccc;
  border-top-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-right-style: solid;
  width: 12px;
  height: 12px;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  border-top-color: #3898ec;
  border-bottom-color: #3898ec;
  border-left-color: #3898ec;
  border-right-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0px 0px 3px 1px #3898ec;
}
.w-form-formradioinput--inputType-custom {
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-color: #ccc;
  border-bottom-color: #ccc;
  border-left-color: #ccc;
  border-right-color: #ccc;
  border-top-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-right-style: solid;
  width: 12px;
  height: 12px;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
}
.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0px 0px 3px 1px #3898ec;
}
.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-top-width: 4px;
  border-bottom-width: 4px;
  border-left-width: 4px;
  border-right-width: 4px;
  border-top-color: #3898ec;
  border-bottom-color: #3898ec;
  border-left-color: #3898ec;
  border-right-color: #3898ec;
}
body {
  background-color: #001427;
  font-family: Karla, sans-serif;
  color: #001427;
  font-size: 14px;
  line-height: 20px;
}
.button-gtid {
  max-width: 450px;
  margin-top: 10px;
  margin-right: auto;
  margin-left: auto;
  grid-template-rows: auto;
}
.button-gtid.top-margin {
  max-width: none;
  margin-top: 20px;
}
.button-gtid.top-margin {
  margin-top: 20px;
}
.container {
  position: relative;
  max-width: 1100px;
}
.basic-section-heading {
  display: block;
  margin-top: 0px;
  margin-bottom: 0px;
  font-family: Poppins, sans-serif;
  color: #000;
  font-size: 33px;
  line-height: 40px;
  font-weight: 600;
}
.basic-section-heading._2 {
  margin-bottom: 5px;
  font-weight: 600;
}
.top-bar-link-text {
  position: relative;
  top: 1px;
  display: inline-block;
  margin-left: 4px;
  font-family: Poppins, sans-serif;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.top-bar-link-text._2 {
  font-size: 12px;
}
.omschrijving-description,
.large-paragraph {
  margin-bottom: 13px;
  color: #000;
  font-size: 15px;
  line-height: 22px;
}
.large-content-section {
  position: relative;
  padding: 25px 18px 80px;
  background-color: #f7f7f7;
  background-image: linear-gradient(180deg, rgba(247, 247, 247, 0.97), rgba(247, 247, 247, 0.97)), url('/webshop/images/Woodstpe-zwart.svg');
  background-position: 0px 0px, 150% 50%;
  background-size: auto, 1060px;
  background-repeat: repeat, no-repeat;
}
.large-content-section.winkelwagen {
  background-image: linear-gradient(180deg, rgba(247, 247, 247, 0.98), rgba(247, 247, 247, 0.98)), url('/webshop/images/Woodstpe-zwart.svg');
  background-position: 0px 0px, 260% 50%;
}
.shop-content-block {
  padding-right: 0px;
  padding-left: 15px;
}
.shop-content-heading-wrapper {
  margin-bottom: 7px;
}
.shop-content-combi-deal-block {
  margin-top: 0px;
  margin-bottom: 80px;
  /*padding: 45px 50px;*/
  border-radius: 2px;
  /*background-color: #fff;*/
  /*box-shadow: 13px 13px 50px -40px rgba(0, 0, 0, 0.14);*/
}
.shop-content-usp {
  position: relative;
  display: block;
  margin-top: 17px;
  justify-content: space-between;
}
.usp-list {
  display: block;
  margin-right: 0px;
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 22px;
  background-image: url('/webshop/images/001-check.svg');
  background-position: 0% 49%;
  background-size: 15px;
  background-repeat: no-repeat;
  font-family: Poppins, sans-serif;
  color: #000;
  font-size: 14px;
  font-weight: 500;
}
.usp-list.check-list {
  padding-top: 3px;
  padding-bottom: 3px;
  background-image: url('/webshop/images/001-check_1.svg');
}
.usp-list._2 {
  margin-right: 0px;
  font-weight: 500;
}
.usp-list.small {
  font-size: 12px;
}
.usp-list.hero {
  display: inline-block;
}
.large-price {
  display: inline;
  margin-top: 0px;
  margin-right: 6px;
  margin-bottom: 0px;
  color: #000000;
  font-size: 42px;
  line-height: 32px;
  font-weight: 700;
}
.large-price.small {
  font-size: 16px;
}
span.large-price.detail-price {
  font-family: "Karla";
  font-size: 42px;
  line-height: 42px;
  color: #fb8402;
  display: inline-block;
  font-weight: 700;
}
span.large-price.detail-price sup {
  font-size: 20px;
  margin-left: -4px;
}
span.large-price.detail-price small {
  margin-left: 5px;
  font-weight: 500;
}
.per-m2 {
  display: inline;
  font-size: 13px;
}
.content-price-grid {
  display: grid;
  grid-column-gap: 0px;
  grid-template-columns: 0.9fr 1fr;
  grid-template-rows: auto;
}
.green-semi-bold {
  margin-left: 5px;
  padding: 3px 6px;
  border-radius: 2px;
  background-color: rgba(39, 201, 122, 0.26);
  color: #00b97c;
  font-size: 15px;
  font-weight: 600;
}
.green-semi-bold._0 {
  margin-left: 0px;
}
.shop-content-image-wrapper {
  /*position: -webkit-sticky;*/
  /*position: sticky;*/
  /*top: 50px;*/
  position: relative;
}
.odd-icon {
  position: relative;
  top: 1px;
  width: 19px;
  margin-right: 0px;
  margin-left: 4px;
}
.odd-icon._2 {
  top: 0px;
  margin-left: 7px;
}
.section-tint {
  position: relative;
  padding: 45px 18px;
  background-color: #f1f1f1;
}
.section-tint.last {
  padding-bottom: 60px;
}
.section-tint._100vh {
  height: 100vh;
}
.section-tint._1 {
  background-image: linear-gradient(180deg, rgba(241, 241, 241, 0.98), rgba(241, 241, 241, 0.98));
  background-position: 0px 0px;
  background-size: auto;
  background-repeat: repeat;
}
.specificatie-grid {
  max-width: 600px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  grid-template-rows: auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.specificatie-grid.final {
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom-style: none;
}
.productspecificatie-tekst-first {
  font-size: 15px;
  font-weight: 700;
}
.productspecificatie-tekst-final {
  margin-left: -10px;
  padding-left: 10px;
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 15px;
}
.usp-link-text {
  display: inline;
  color: #fff;
  text-decoration: none;
}
.bold-text-4 {
  color: #fff;
}
.coming-soon-tag {
  position: relative;
  top: -1px;
  display: inline-block;
  margin-left: 10px;
  padding-top: 1px;
  padding-right: 10px;
  padding-left: 10px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  font-size: 8px;
  line-height: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.usp-link-block {
  margin-right: 8px;
  margin-left: 8px;
  flex-direction: row;
  color: #000;
  text-decoration: none;
}
.relative-block {
  position: relative;
}
.relative-block.center-flex {
  display: flex;
  justify-content: center;
}
.usp-grid-large {
  margin-bottom: 25px;
  grid-template-columns: 0.5fr 1fr;
  grid-template-rows: auto;
}
.small-usp-logo {
  position: relative;
  top: -2px;
  width: 16px;
  margin-right: 8px;
  filter: brightness(0%) invert(100%) grayscale(100%);
}
.footer-title {
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
}
.footer-link {
  display: block;
  margin-top: 13px;
  font-family: Poppins, sans-serif;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
}
.footer-link:hover {
  color: #b80102;
}
.final-footer-divider {
  position: absolute;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
  padding-top: 18px;
  padding-bottom: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-block-left {
  padding-right: 0px;
}
.footer-block-left._1 {
  position: relative;
  left: 45px;
}
.green-bold {
  color: #00b67a;
}
.trustpilot-link {
  transition: all 200ms ease;
  color: #0c0f21;
}
.trustpilot-link:hover {
  color: #00b67a;
}
.final-footer-text {
  display: inline-block;
  font-family: Poppins, sans-serif;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.final-footer-text.white {
  color: #fff;
  font-size: 18px;
}
.final-footer-text.responsive {
  color: #001427;
  font-size: 15px;
}
.final-footer-text.show-block {
  color: #001427;
  font-size: 17px;
}
.final-footer-link {
  display: inline-block;
  font-family: Poppins, sans-serif;
  color: rgba(255, 255, 255, 0.27);
  font-size: 11px;
  text-decoration: none;
}
.final-footer-link._2 {
  margin-left: 8px;
}
.trustpilot-logo {
  position: relative;
  top: -3px;
  width: 93px;
  margin-left: 3px;
}
.footer .trustpilot-logo {
  width: 70px;
}
.klantenservice-closed,
.klantenservice-open {
  position: relative;
  top: 1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-radius: 100%;
  background-color: #27c97a;
}
.klantenservice-closed {
  background-color: #c92727;
}
.dropdown-klantenservice {
  display: block;
}
.dropdown-toggle-klantenservice {
  width: 100%;
  padding-left: 58px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-family: Poppins, sans-serif;
  font-weight: 600;
}
.dropdown-toggle-klantenservice.final {
  border-bottom-style: none;
}
.klantenservice-section .icon-wrapper-klantenservice-mini {
  position: absolute;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: 0%;
  display: flex;
  width: 45px;
  height: 45px;
  margin-top: 7px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding: 10px;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  background-color: rgba(152, 28, 31, 0.07);
  text-align: center;
}
.klantenservice-dropdown-list.w--open {
  position: relative;
  background-color: transparent;
}
.klantenservice-dropdown-link {
  padding-left: 30px;
  background-color: #fff;
  background-image: url('/website/images/right-arrow.svg');
  background-position: 10px 50%;
  background-size: 8px;
  background-repeat: no-repeat;
}
.klantenservice-dropdown-link:hover {
  border-radius: 2px;
  background-color: #f7f7f7;
}
.left-mini-klantenservice {
  position: relative;
  margin-top: 0px;
  padding: 18px;
  border-radius: 3px;
  background-color: #fff;
  box-shadow: 7px 7px 20px -20px rgba(0, 0, 0, 0.29);
}
.klantenservice-antwoord-section {
  position: relative;
  padding: 0px 18px 100px;
  background-color: #f7f7f7;
  background-image: linear-gradient(180deg, rgba(247, 247, 247, 0.97), rgba(247, 247, 247, 0.97)), url('/website/images/Woodstpe-zwart.svg');
  background-position: 0px 0px, 150% 50%;
  background-size: auto, 1060px;
  background-repeat: repeat, no-repeat;
}
.veelgestelde-vragen-main-grid {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: auto;
}
.faq-main-item-wrapper {
  display: flex;
  padding: 24px 17px;
  flex-direction: column;
  align-items: center;
  border-radius: 3px;
  background-color: #fff;
  box-shadow: 7px 7px 20px -20px rgba(0, 0, 0, 0.29);
  transition: all 200ms ease;
}
.faq-main-item-wrapper:hover {
  box-shadow: 7px 7px 20px -16px rgba(0, 0, 0, 0.87);
}
.faq-item-icon {
  display: block;
  width: 50px;
  height: 50px;
  margin-bottom: 14px;
}
.faq-main-item-text {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  text-align: center;
  color: #001427;
}
.right-col-grid-showroom {
  height: 100%;
  grid-column-gap: 0px;
  grid-row-gap: 10px;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto auto auto;
  box-shadow: -2px 10px 20px -20px rgba(0, 0, 0, 0.29);
}
.basic-white-block {
  padding: 24px 30px;
  border-radius: 3px;
  background-color: #fff;
  box-shadow: 7px 7px 20px -20px rgba(0, 0, 0, 0.29);
}
.block-heading {
  margin-top: 0px;
  margin-bottom: 14px;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  line-height: 32px;
}
.footer-link-block-copy {
  display: block;
  margin-bottom: 0px;
  padding-left: 0px;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
}
.usp-wrapper {
  padding-top: 23px;
  padding-bottom: 19px;
}
.usp-grid {
  display: flex;
  justify-content: flex-start;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
}
.usp-grid._2 {
  justify-content: flex-end;
}
.footer-block {
  margin-right: 0px;
  margin-bottom: 20px;
  font-family: Poppins, sans-serif;
  color: #fff;
  font-size: 13px;
}
.footer-block.alt {
  filter: invert();
}
.footer-grid-new {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: auto;
}
.footer-link-wrapper-copy {
  width: 100%;
  margin-bottom: 10px;
  margin-left: 0px;
  padding: 10px;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.04);
  text-decoration: none;
}
.footer-link-wrapper-copy:hover {
  background-color: rgba(255, 255, 255, 0.08);
}
.basic-2-grid {
  grid-template-rows: auto;
}
.footer-link-title {
  display: inline-block;
  color: #fff;
  font-weight: 400;
}
.footer {
  position: relative;
  padding: 50px 18px 75px;
  background-color: #001427;
  background-image: linear-gradient(180deg, rgba(0, 20, 39, 0.98), rgba(0, 20, 39, 0.98));
  background-position: 0px 0px;
  background-size: auto;
  background-repeat: repeat;
}
.openingstijden-block {
  margin-bottom: 4px;
  justify-items: start;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-columns: 1fr 0.75fr;
  grid-template-rows: auto;
}
.top-bar {
  padding: 12px 16px;
  background-color: #001427;
  border-bottom: 4px solid #981915;
}
.left-menu-block {
  display: flex;
  align-items: center;
}
.large-menu-grid {
  grid-template-columns: 1fr 0.5fr;
  grid-template-rows: auto;
}
.trustpilot-link-white {
  position: relative;
  top: 1px;
  transition: all 200ms ease;
  color: #fff;
}
.trustpilot-link-white:hover {
  color: #00b67a;
}
.nav-menu {
  display: flex;
  justify-content: center;
}
.dropdown-list-assortiment.w--open {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: 9999;
  max-width: 100vw;
  margin-top: 105px;
  margin-left: 0px;
  padding: 0px 18px;
  border-top: 1px solid rgba(12, 15, 33, 0.07);
  border-radius: 1px;
  background-color: #f7f7f7;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
}
.dropdown-list-assortiment.relatibe.w--open {
  /*height: 100%;*/
  margin-top: 120px;
  /*border-top-style: none;*/
  /*background-color: rgba(0, 20, 39, 0.74);*/
}
.nav-link-title {
  position: relative;
  top: 2px;
  z-index: 10;
  display: inline-block;
  padding: 0px;
  border-bottom: 1px solid transparent;
  transition: border 200ms ease;
  font-family: Poppins, sans-serif;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}
.nav-link-title:hover {
  border-bottom-color: transparent;
  text-decoration: none;
}
.nav-link-title.w--current {
  color: #11093d;
  text-decoration: underline;
}
.nav-link-title._2 {
  top: 0px;
  color: #001427;
  font-size: 14px;
  font-weight: 600;
}
.nav-link-title._2.green {
  color: #00b97c;
  font-size: 14px;
  font-weight: 600;
}
.menu-heading-item {
  margin-top: 0px;
  margin-bottom: 4px;
  font-family: Poppins, sans-serif;
  color: #fff;
  font-size: 29px;
  line-height: 30px;
  font-weight: 600;
}
.top-bar-link-wrapper {
  margin-left: 8px;
  padding: 10px 12px;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.04);
  text-decoration: none;
}
.top-bar-link-wrapper:hover {
  background-color: rgba(255, 255, 255, 0.08);
}
.top-bar-link-wrapper.search-hide {
  display: none;
}
.menu-text {
  font-family: Poppins, sans-serif;
  color: rgba(163, 163, 163, 0.94);
  font-size: 14px;
  font-weight: 500;
}
.menu-text:hover {
  color: #001427;
}
.dropdown-icon-dark {
  top: 3px;
  display: block;
}
.navbar-new {
  padding: 0px 16px;
  background-color: #ffffff;
}
.two-col-image-right {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 100%;
}
.block-overlay {
  position: absolute;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
  padding: 38px 38px 18px 18px;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.57), rgba(83, 83, 83, 0));
}
.basic-3-grid {
  grid-template-columns: 0.5fr 0.9fr 0.5fr;
  grid-template-rows: auto;
}
.nav-link-block {
  height: 100%;
  margin-right: 0px;
  margin-left: 0px;
  padding: 20px 20px 12px;
  border-bottom: 3px solid transparent;
  transition: all 200ms ease;
  text-decoration: none;
}
.nav-link-block.active,
.nav-link-block.w--open,
.nav-link-block:hover {
  border-bottom-color: #981915;
}
.nav-link-block.cart {
  padding: 17px 15px 16px 6px;
}
.nav-link-block.combi {
  padding: 21px 0 12px;
}
.menu-link-item {
  display: block;
  margin-bottom: 9px;
  padding-left: 0px;
  font-family: Poppins, sans-serif;
  color: #000;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}
.menu-link-item:hover {
  opacity: 1;
}
.nav-link-wrapper {
  margin-right: 0px;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 20px;
  float: none;
  background-color: #981915;
  color: #fff;
  text-align: center;
  text-decoration: none;
}
.nav-link-wrapper:hover {
  text-decoration: none;
}
.nav-link-wrapper.w--current {
  color: #4f30f1;
}
.two-grid-menu-block {
  position: relative;
  padding: 0px;
}
.top-menu-sticky {
  position: sticky;
  top: 0px;
  z-index: 999;
}
.two-grid-menu-block-right {
  position: relative;
  max-width: 330px;
  padding: 0px;
  text-align: center;
}
.small-menu-heading {
  margin-top: 0px;
  margin-bottom: 9px;
  font-family: Poppins, sans-serif;
  color: #000000;
  font-size: 19px;
  line-height: 28px;
  font-weight: 600;
}
.search-bar {
  padding: 10px 10px 10px 18px;
  border-radius: 2px;
  background-color: #fff;
  display: block;
  width: 100%;
  border: 0;
  line-height: 20px;
}
.search-bar::placeholder {
  color: #c9c9c9;
}
.search-text {
  font-family: Poppins, sans-serif;
  font-size: 12px;
}
.search-text.highlight {
  color: #001427;
}
.mini-heading {
  position: relative;
  display: inline-block;
  margin-bottom: 0px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}
.green-block-show .mini-heading .green-semi-bold,
.green-block-show .mini-heading .productTotalPrice {
  font-size: 16px;
}
.mini-heading.center {
  color: #001427;
}
.mini-heading._1 {
  right: 16px;
  white-space: nowrap;
}
.mini-heading._2 {
  right: -7px;
}
.mini-heading._3 {
  right: 5px;
}
.mini-heading.margin-right {
  margin-right: 12px;
}
.content-wrapper {
  height: 100%;
}
.lightbox-image {
  height: auto;
  border-radius: 2px;
}
.plint-block {
  height: 100%;
}
.double-grid {
  margin-bottom: 14px;
  padding-bottom: 14px;
  grid-template-columns: 0.4fr 1.5fr 0.9fr;
  grid-template-rows: auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.full-green-button-copy {
  width: 220px;
  margin-top: 0px;
  padding: 10px 18px 9px;
  border-radius: 2px;
  background-color: rgba(163, 163, 163, 0.63);
  transition: opacity 150ms ease-out, background-color 150ms ease-in;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  text-decoration: none;
}
.full-green-button-copy:hover {
  background-color: #a3a3a3;
  color: #fff;
}
.full-green-button-copy.full {
  width: 100%;
  margin-top: 0px;
  order: 1;
  background-color: #1db87e;
  text-align: center;
  box-shadow: inset 0px -2px 1px 0px #047f51;
  padding: 9px 10px 10px;
  border-radius: 5px;
}
.full-green-button-copy.gray {
  background-color: #ebebeb;
  box-shadow: inset 0px -2px 1px 0px #c7c4c4;
}
.full-green-button-copy.gray .button-right-text {
  color: #757575;
}
.full-green-button-copy.full.padding {
  margin-bottom: 10px;
}
.product-gallery__featured,
.large-woodstep-slider {
  height: 500px;
  margin-bottom: 20px;
}
.large-woodstep-slider.border {
  border-style: solid;
  border-width: 1px;
  border-color: rgba(163, 163, 163, 0.17);
  border-radius: 4px;
  background-color: transparent;
}
.mini-slider {
  left: 0%;
  top: 0%;
  right: auto;
  bottom: auto;
  margin-top: 12px;
  margin-left: 12px;
  padding-top: 0px;
  font-size: 5px;
}
.mini-slider.inv {
  opacity: 0.45;
  filter: invert(100%);
}
.arrow-right {
  display: none;
  width: 35px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.63);
}
.top-right-woodstep-slider-block {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: 8;
  display: none;
  margin-right: 34px;
  padding: 11px;
  background-color: rgba(0, 0, 0, 0.63);
  color: #fff;
  font-weight: 500;
}
.large-woodstep-slide {
  z-index: 1;
}
.mask-2 {
  border-radius: 3px;
}
.section-image-copy {
  position: relative;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  width: 100%;
  height: 498px;
  border-radius: 2px;
  text-align: center;
  object-fit: cover;
  object-position: 50% 100%;
}
.arrow-icon {
  color: #ffffff;
  font-weight: bold;
  font-size: 24px;
}
.arrow-left {
  display: none;
  width: 35px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.63);
}
.image-grid-small {
  position: sticky;
  top: 50px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: auto;
}
.line-button {
  position: relative;
  display: flex;
  min-height: 46px;
  margin-left: 0px;
  padding: 6px 12px;
  justify-content: center;
  align-items: center;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(0, 20, 39, 0.09);
  border-radius: 3px;
  background-color: transparent;
  transition: all 200ms ease;
  font-family: Poppins, sans-serif;
  color: #001427;
  font-size: 13px;
  text-decoration: none;
}
.line-button:hover {
  border-color: #001427;
}
.line-button._2 {
  margin-top: 14px;
}
.large-content-grid {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
}
.large-container {
  max-width: 1200px;
}
.large-container._75 {
  margin-bottom: 75px;
}
.circle-grijs {
  position: relative;
  z-index: 2;
  display: flex;
  width: 25px;
  height: 25px;
  margin-right: 8px;
  padding: 6px;
  justify-content: center;
  align-items: center;
  border-style: solid;
  border-width: 1px;
  border-color: #fff;
  border-radius: 100%;
  background-color: #001427;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
.circle-grijs._2 {
  padding: 0px;
}
.heading-block-combi {
  position: relative;
  display: flex;
  margin-bottom: 0px;
  align-items: center;
}
.m2-grid {
  grid-template-columns: 0.5fr 1fr;
  grid-template-rows: auto;
}
.large-block-combi {
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 2px;
}
.color-block {
  position: relative;
  padding: 12px;
  background-color: rgba(163, 163, 163, 0.09);
}
.color-block.selected {
  /*border-top: 1px solid rgba(0, 0, 0, 0.05);*/
  border-radius: 2px;
}
/*.color-block.final {*/
/*  border-top: 1px solid rgba(0, 0, 0, 0.05);*/
/*}*/
/*.color-block.selected-2 {*/
/*  border-top: 1px solid rgba(0, 0, 0, 0.05);*/
/*  border-radius: 2px;*/
/*}*/
.color-block.selected-3 {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 2px;
}
.m2-form {
  position: relative;
  display: flex;
  width: 100%;
  height: 35px;
  padding: 0px 30px;
  justify-content: flex-start;
  align-items: center;
  border-style: solid;
  border-width: 1px;
  border-color: #d8d8d8;
  border-radius: 2px;
  background-color: #fff;
  font-size: 16px;
  line-height: 30px;
}
.m2-form.orange {
  border-color: #ff9c1e;
}
.m2-form.odd {
  padding-left: 15px;
}
.small-paragraph {
  color: #000;
  font-size: 14px;
  line-height: 27px;
  text-decoration: none;
}
.min {
  position: absolute;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: 0%;
  display: flex;
  height: 35px;
  margin-left: 10px;
  align-items: center;
  opacity: 0.5;
  color: #001427;
  font-size: 20px;
}
.min:hover {
  opacity: 1;
}
.placeholder-tekst-dark {
  display: inline-block;
  color: #001427;
  font-size: 14px;
}
.placeholder-tekst-dark.white {
  color: #fff;
}
.plus {
  position: absolute;
  left: auto;
  top: 0%;
  right: 50px;
  bottom: 0%;
  display: flex;
  height: 35px;
  margin-left: 0px;
  align-items: center;
  opacity: 0.5;
  color: #001427;
}
.plus:hover {
  opacity: 1;
}
.plus._2 {
  margin-left: 145px;
}
.plus.aantal {
  right: 65px;
}
.winkelwagen-select-block .plus.aantal {
  right: 40px;
}
.right-m2-block {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: 0%;
  display: flex;
  width: 40px;
  justify-content: center;
  align-items: center;
  background-color: #d8d8d8;
}
.right-m2-block.orange {
  background-color: #ff9c1e;
}
/*.m2-form-variable .right-m2-block.aantal {*/
/*  width: 65px;*/
/*}*/
.button-right-text {
  position: relative;
  top: 1px;
  display: inline-block;
  margin-right: 4px;
  margin-left: 0px;
  font-family: Poppins, sans-serif;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.edit-icon {
  position: relative;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: 0%;
  height: 19px;
  margin-top: 0px;
  margin-right: 0px;
  opacity: 1;
}
.extra-item-image {
  width: 50px;
  height: 50px;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.03);
  border-radius: 2px;
  object-fit: cover;
}
.mini-list {
  margin-bottom: 0px;
  padding-left: 15px;
}
.small-paragraph-list {
  margin-bottom: 0px;
  color: #000;
  font-size: 14px;
  line-height: 22px;
}
.small-paragraph-list.final {
  font-size: 12px;
  text-decoration: none;
}
.small-list-item {
  line-height: 16px;
}
.icon-button-orange {
  display: flex;
  min-height: 43px;
  margin-left: 0px;
  padding: 6px 12px;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ff9c1e;
  text-decoration: none;
  box-shadow: inset 0px -2px 1px 0px #cd7700;
}
.icon-button-orange:hover {
  background-color: #ff9c1e;
}
.icon-button-orange.alt {
  margin-top: 6px;
}
.icon-button-orange._2 {
  margin-bottom: 9px;
}
.icon-button-orange.green {
  background-color: #00b97c;
}
.error-box {
  padding: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background-color: rgba(163, 163, 163, 0.09);
}
.error-text {
  margin-top: 7px;
  padding: 13px;
  border-radius: 2px;
  background-color: #e7baba;
  color: #d83636;
  font-weight: normal;
}
.success-text {
  margin-top: 7px;
  padding: 13px;
  border-radius: 2px;
  background-color: #ccebcf;
  color: #009f6a;
  font-weight: normal;
}
.error-text.afrekenen {
  position: relative;
  top: -14px;
}
.mini-heading-tab {
  position: relative;
  display: inline-block;
  margin-bottom: 0px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.overzicht-grid {
  margin-bottom: 8px;
  grid-template-columns: 1fr 3.25fr 1fr 1fr 1fr;
  grid-template-rows: auto;
}
.overzicht-grid.summary {
  grid-template-columns: 1fr 3.25fr 1fr;
}
.overzicht-grid.top {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.overzicht-grid.top.final {
  margin-bottom: 16px;
  padding-bottom: 0px;
  border-bottom-style: none;
}
.final-overzicht-text {
  margin-left: 0px;
}
.overzicht-text {
  margin-bottom: 0px;
  color: #000;
  font-size: 14px;
  line-height: 22px;
}
.overzicht-text {
  text-align: right;
}
.fill {
  width: 0px;
  height: 0px;
  margin-left: 0px;
}
.text-span {
  text-decoration: line-through;
}
.shop-content-below {
  margin-top: 50px;
}
.omschrijving-block {
  margin-right: 0px;
  margin-left: 0px;
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid rgba(0, 20, 39, 0.09);
  border-bottom: 1px none rgba(0, 20, 39, 0.09);
}
.omschrijving-block.center {
  margin-right: 0px;
  margin-bottom: 50px;
  margin-left: 0px;
  border-top-style: none;
  border-bottom-style: none;
  border-radius: 2px;
  background-color: #e9e9e9;
  background-image: linear-gradient(180deg, rgba(233, 233, 233, 0.97), rgba(233, 233, 233, 0.97)), url('/webshop/images/Woodstpe-zwart.svg');
  background-position: 0px 0px, 140% 50%;
  background-size: auto, 700px;
  background-repeat: repeat, no-repeat;
  text-align: center;
}
.omschrijving-block.green-cta {
  margin-right: 0px;
  margin-bottom: 26px;
  margin-left: 0px;
  padding-right: 14px;
  padding-left: 14px;
  border-top-style: none;
  border-bottom-style: none;
  border-radius: 2px;
  background-color: #00b97c;
  background-image: linear-gradient(180deg, rgba(0, 185, 124, 0.91), rgba(0, 185, 124, 0.91)), url('/webshop/images/Woodstep-Wit.svg');
  background-position: 0px 0px, 140% 50%;
  background-size: auto, 700px;
  background-repeat: repeat, no-repeat;
  text-align: center;
}
.omschrijving-block.cateogry-item {
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  border-top-style: none;
  border-bottom-style: none;
  border-radius: 2px;
  background-color: #e9e9e9;
  background-image: linear-gradient(180deg, rgba(233, 233, 233, 0.97), rgba(233, 233, 233, 0.97)), url('/webshop/images/Woodstpe-zwart.svg');
  background-position: 0px 0px, 140% 50%;
  background-size: auto, 700px;
  background-repeat: repeat, no-repeat;
  text-align: center;
}
.specificatie-heading {
  margin-top: 0px;
  margin-bottom: 12px;
  font-family: Poppins, sans-serif;
  color: #000000;
  font-size: 22px;
  line-height: 24px;
  font-weight: 600;
}
.omschrijving-block-wrapper {
  overflow: hidden;
}
.omschrijving-description {
  overflow: hidden;
  margin-top: 0px;
  padding-top: 0px;
}
.text-block {
  position: absolute;
  left: 0;
  top: 0;
  right: auto;
  bottom: auto;
  z-index: 5;
  display: inline-block;
  margin-top: 9px;
  margin-left: 10px;
  margin-bottom: 6px;
  padding: 9px 13px;
  border-radius: 2px;
  background-color: #ff9c1e;
  font-family: Poppins, sans-serif;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
}
.omschrijving-icon {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: 0%;
  width: 11px;
  margin-top: 12px;
  margin-right: 4px;
  transform: rotate(90deg);
}
.voorraad-usp {
  display: block;
  margin-right: 0px;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 22px;
  background-image: url('/webshop/images/001-check_2.svg');
  background-position: 0% 49%;
  background-size: 15px;
  background-repeat: no-repeat;
  font-family: Poppins, sans-serif;
  color: #000000;
  /*color: #00b97c;*/
  font-size: 14px;
  font-weight: 500;
}
.voorraad-usp.small {
  padding-left: 18px;
  background-size: 11px;
  font-size: 12px;
}
.voorraad-usp.small.levertijd {
  background-image: url('/webshop/images/001-clock.svg');
  color: #001427;
}
.voorraad-usp.exclamation {
  background-image: url('/webshop/images/001-exclamation.svg');
  color: #000000;
}
.voorraad-usp.larg {
  background-position: 0% 17%;
}
.div-block {
  margin-top: 18px;
}
.prijs-block {
  position: relative;
}
.prijs-m2-first {
  display: inline-block;
  margin-right: 12px;
  color: #7e7e7e;
  font-size: 16px;
  font-weight: 300;
}
.prijs-m2-first .old-price {
  /*display: block;*/
  /*font-size: 19px;*/
  /*margin-bottom: 10px;*/
  text-decoration: line-through;
}
.prijs-m2-first.small {
  font-size: 16px;
}
.wijzigen {
  display: inline-block;
  margin-right: 5px;
  opacity: 1;
  color: #000;
  font-size: 12px;
}
.wijzigen-item {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: auto;
  margin-top: 3px;
  margin-right: 15px;
  opacity: 0.22;
  display: none;
}
.wijzigen-item:hover {
  opacity: 0.55;
}
.combiStep .wijzigen-item {
  display: inline-block;
}
.combideal-steps__item--active .wijzigen-item {
  display: none;
}
.usp-heading-wrapper-center {
  max-width: 590px;
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
  color: #0c0f21;
  text-align: center;
}
.usp-heading-wrapper-center._2 {
  margin-top: 0px;
  margin-bottom: 30px;
}
.usp-heading-wrapper-center._2._404 {
  margin-top: 30px;
  margin-bottom: 50px;
}
.usp-heading-wrapper-center._3 {
  margin-bottom: 40px;
}
.usp-heading-wrapper-center.gegevens {
  margin-bottom: 30px;
}
.basic-section-heading-item {
  margin-top: 0px;
  font-family: Poppins, sans-serif;
  color: #000;
  font-size: 31px;
  line-height: 40px;
  font-weight: 600;
}
.basic-section-heading-item.coupon {
  font-size: 33px;
}
.basic-section-heading-item.smaller {
  font-size: 22px;
}
.breadcrumb-wrapper {
  position: relative;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: 10;
  margin-right: 6px;
  margin-bottom: 0px;
  text-align: left;
}
.breadcrumb-link {
  margin-right: 6px;
  opacity: 0.5;
  color: #fff;
  text-decoration: none;
}
.breadcrumb-link.w--current {
  opacity: 1;
  text-decoration: underline;
}
.breadcrumb-home-icon {
  position: relative;
  top: 0px;
  width: 14px;
  filter: invert(100%);
}
.breadcrumb-arrow {
  height: 7px;
  margin-top: 2px;
  margin-right: 6px;
  opacity: 0.5;
  filter: invert(100%);
}
.breadcrumb-text {
  position: relative;
  top: 2px;
  color: #000;
}
.top-bread-trust {
  margin-bottom: 25px;
  grid-template-columns: 1fr 0.75fr;
  grid-template-rows: auto;
}
.trustpilot-logo-2 {
  position: relative;
  top: -3px;
  width: 70px;
  margin-left: 3px;
}
.trustpilot-text {
  display: inline-block;
  font-family: Poppins, sans-serif;
  color: #001427;
  font-size: 13px;
  font-weight: 400;
}
.trustpilot-text.white {
  color: #fff;
}
.contact-grid {
  grid-template-columns: 0.75fr 1fr;
  grid-template-rows: auto;
}
.showroom-text-block {
  position: relative;
  max-width: 430px;
  margin-bottom: 0px;
}
.large-paragraph-white {
  color: #fff;
  font-size: 17px;
  line-height: 27px;
}
.basic-section-heading-image {
  margin-top: 0px;
  font-family: Poppins, sans-serif;
  color: #fff;
  font-size: 33px;
  line-height: 47px;
  font-weight: 600;
}
.mini-contact-item {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
}
.large-dropdown {
  width: 100%;
}
.large-dropdown-toggle {
  width: 100%;
  padding: 0px;
}
.large-dropdown-list.w--open {
  position: relative;
  background-color: transparent;
}
.large-dropdown-list.open {
  position: relative;
  display: block;
  background-color: transparent;
}
.faq-dropdown {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 20, 39, 0.09);
}
.faq-dropdown-toggle {
  display: flex;
  width: 100%;
  padding: 0px;
  justify-content: flex-start;
  align-items: center;
}
.faq-dropdown-icon-wrapper {
  display: flex;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  padding: 6px;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  background-color: rgba(255, 156, 30, 0.15);
}
.faq-dropdown-icon {
  width: auto;
}
.small-faq-icon {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: 0%;
  width: 13px;
  margin-top: 10px;
  margin-right: 4px;
  opacity: 0.28;
}
.faq-dropdown-list.w--open {
  position: relative;
  padding-top: 13px;
  background-color: transparent;
}
.image-section-overlay {
  position: relative;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  width: 100%;
  height: 100%;
  padding: 60px 18px 120px;
  background-image: linear-gradient(180deg, rgba(152, 28, 31, 0.88), rgba(152, 28, 31, 0.88));
}
.bot {
  position: absolute;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
  height: 60px;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: rgba(0, 0, 0, 0.05);
}
.image-section {
  position: relative;
  height: auto;
  padding: 0px;
  background-color: #fff;
}
.usp-list-2 {
  display: inline-block;
  margin-right: 20px;
  padding-top: 9px;
  padding-bottom: 9px;
  padding-left: 22px;
  background-image: url('/webshop/images/001-check.svg');
  background-position: 0% 49%;
  background-size: 15px;
  background-repeat: no-repeat;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 600;
}
.usp-list-2.w {
  color: #fff;
}
.section-image {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  width: 100%;
  height: 100%;
  text-align: center;
  object-fit: cover;
  object-position: 50% 100%;
}
.combi-deal-small-price {
  margin-bottom: 8px;
  margin-right: 10px;
  color: #000;
  font-size: 14px;
  line-height: 22px;
  display: inline-block;
  text-decoration: line-through;
}
.combi-deal-small-price.no-offer {
  text-decoration: none;
  margin-bottom: 3px;
}
.combi-deal-small-price.odd {
  margin-bottom: 0px;
  margin-left: 0px;
  text-decoration: none;
}
.alle-specificaties-link-block {
  text-decoration: none;
}
.ondervloer-popup-wrapper {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 99999;
  display: none;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 20, 39, 0.75);
}
.large-image-text {
  position: relative;
  z-index: 100;
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 50px 35px;
  border-radius: 2px;
  background-color: #fff;
  box-shadow: -3px 18px 50px -14px rgba(0, 0, 0, 0.14);
}
.large-image-text._2 {
  max-width: 480px;
}
.large-image-text.gegevens {
  max-width: 600px;
  width: 600px;
  padding-top: 35px;
  padding-bottom: 35px;
}
.div-block-2 {
  margin-bottom: 13px;
}
.trustpilot-stars {
  display: block;
  width: 110px;
}
.trustpilot-image {
  width: 45px;
  height: 45px;
  margin-right: 16px;
}
.trustpilot-name {
  display: inline-block;
  color: #666;
}
.trustpilot-wrap {
  padding: 17px 24px;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  background-color: #fafafa;
  box-shadow: none;
  transition: all 200ms ease;
}
.trustpilot-wrap:hover {
  box-shadow: none;
}
.triple-grid-review {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
}
.large-paragraph-popup {
  color: #000;
  font-size: 15px;
  line-height: 27px;
}
.trustpilot-heading {
  font-family: Poppins, sans-serif;
  font-size: 16px;
}
.popup-grid {
  height: 100%;
  margin-right: 53px;
  margin-left: 53px;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto;
}
.filter-wrap {
  margin-bottom: 17px;
}
.filter-item {
  display: inline-block;
  margin-right: 3px;
  margin-left: 3px;
  padding: 9px;
  border-radius: 2px;
  background-color: rgba(216, 216, 216, 0.19);
  font-family: Karla, sans-serif;
  color: #001427;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
}
.filter-item.selected {
  background-color: #ff9c1e;
  color: #fff;
}
.filter-icon {
  width: 13px;
  margin-right: 7px;
  margin-left: 0px;
}
.filter-text {
  display: inline-block;
  color: #fff;
}
.filter-heading {
  display: inline-block;
  margin-right: 6px;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 500;
}
.usp-heading-wrapper {
  max-width: 590px;
  margin-bottom: 20px;
  color: #0c0f21;
  text-align: left;
}
.popup-slider {
  max-height: 290px;
  background-color: transparent;
}
.popup-slider._2 {
  max-height: none;
  height: auto;
}
.popup-slide-arrow {
  width: 30px;
  height: 30px;
  margin-left: 0px;
  border-style: solid;
  border-width: 2px;
  border-color: rgba(0, 20, 39, 0.05);
  border-radius: 100%;
  background-color: #f8f8f8;
  color: #ff9c1e;
  font-size: 14px;
}
.slide-nav {
  display: none;
  margin-right: auto;
  margin-left: auto;
  color: #001427;
}
.popup-slide-link-block {
  display: flex;
  padding: 14px 13px 10px;
  flex-direction: column;
  justify-content: space-between;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.03);
  border-radius: 2px;
  background-color: rgba(163, 163, 163, 0.09);
}
.extra-item-image-large {
  display: block;
  height: 80px;
  margin-right: auto;
  margin-bottom: 5px;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.03);
  border-radius: 2px;
}
.odd-icon-alt {
  position: relative;
  top: 1px;
  width: 14px;
  margin-right: 4px;
  margin-left: 0px;
}
.combi-deal-small-price-popup {
  margin-bottom: 3px;
  margin-left: 0px;
  color: #000;
  font-size: 14px;
  line-height: 22px;
  text-decoration: line-through;
  display: inline-block;
  margin-right: 7px;
}
.combi-deal-small-price-popup.no-offer {
  text-decoration: none;
}
.cross-close {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: auto;
  margin-top: 50px;
  margin-right: 35px;
}
.cross-close.gegevens {
  margin-top: 35px;
}
.popup-cross {
  position: relative;
  top: -1px;
  width: 14px;
}
.popup-sluiten-text {
  display: inline-block;
  margin-right: 7px;
  font-family: Poppins, sans-serif;
  color: #001427;
  font-size: 12px;
}
.open-block-2 {
  overflow: hidden;
}
.large-menu-grid-dropdown {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  background-color: #f7f7f7;
  grid-auto-flow: column;
}
.dropdown-menu-left {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #ffffff;
  border-right: 1px solid #e6e6e6;
  /*background-image: -webkit-gradient(linear, left top, left bottom, from(hsla(0, 0%, 94.1%, 0.99)), to(hsla(0, 0%, 94.1%, 0.99))), url('/webshop/images/Woodstpe-zwart.svg');*/
  /*background-image: linear-gradient(180deg, hsla(0, 0%, 94.1%, 0.99), hsla(0, 0%, 94.1%, 0.99)), url('/webshop/images/Woodstpe-zwart.svg');*/
  /*background-position: 0px 0px, 50% 90%;*/
  /*background-size: auto, 1190px;*/
  /*background-repeat: repeat, no-repeat;*/
}
.dropdown-item-right {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-columns: 1fr 0.5fr;
  grid-template-rows: auto;
}
.dropdown-menu-link-block {
  display: flex;
  width: 100%;
  height: auto;
  margin-bottom: 6px;
  padding: 9px 0 9px 0;
  align-items: center;
  text-decoration: none;
}
.dropdown-item-right .dropdown-grid-cat {
  padding: 20px 20px 20px 0;
}
.dropdown-menu-link-block.highlight {
  height: auto;
  padding-top: 9px;
  padding-bottom: 9px;
  background-color: #f0f0f0;
  text-decoration: none;
}
.dropdown-item-right .dropdown-menu-link-block,
.dropdown-item-right .dropdown-menu-link-block.highlight {
  padding: 15px 0 15px 69px;
}
.small-menu-heading-dropdown {
  margin-top: 0px;
  margin-bottom: 0px;
  font-family: Poppins, sans-serif;
  color: #2c2c2c;
  font-size: 14px;
  line-height: 28px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}
.dropdown-aanbieding-grid {
  grid-auto-flow: row;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
}
.dropdown-item-right .dropdown-grid-cat {
  padding: 0 20px 0 0;
  grid-column-gap: 0;
}
.dropdown-item-right .two-grid-menu-block {
  margin-top: 20px;
}
.dropdown-item-right .two-grid-menu-block.border-left {
  border-left: 1px solid #f0f0f0;
}
.dropdown-grid-cat.show-responsive {
  display: none;
}
.shop-direct-text {
  display: inline-block;
  font-family: Poppins, sans-serif;
  color: #fff;
}
.shop-direct-icon {
  position: relative;
  left: 4px;
  top: -1px;
  height: 17px;
}
.woodstep-logo {
  width: 158px;
}
.nav-link-title-winkelwagen {
  position: relative;
  top: 2px;
  z-index: 10;
  display: inline-block;
  padding: 0px;
  border-bottom: 1px solid transparent;
  transition: border 200ms ease;
  font-family: Poppins, sans-serif;
  color: #001427;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}
.nav-link-title-winkelwagen:hover {
  border-bottom-color: transparent;
  text-decoration: none;
}
.nav-link-title-winkelwagen.w--current {
  color: #11093d;
  text-decoration: underline;
}
.winkelwagen-inline {
  position: relative;
  display: inline-block;
}
.winkelwagne-mini {
  position: absolute;
  left: auto;
  top: 4px;
  font-weight: 500;
  right: -1px;
  bottom: auto;
  display: flex;
  width: 18px;
  height: 18px;
  padding-left: 0px;
  justify-content: center;
  align-items: center;
  border-radius: 170%;
  background-color: #ff9c1e;
  color: #fff;
  font-size: 10px;
}
.keuze-woodstep {
  position: relative;
  width: 9px;
  margin-right: 4px;
}
.text-keuze-woodstep {
  display: inline-block;
  color: #fff;
  font-size: 12px;
}
.keuze-woodstep-block {
  position: relative;
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 7px;
  border-radius: 2px;
  background-color: #00b97c;
}
.klantenservice-section .right-menu-link-block-showroom {
  padding: 11px 25px 11px 85px;
  align-items: flex-start;
  text-align: left;
  flex-direction: column;
}
.klantenservice-section .right-menu-link-block-showroom p {
  line-height: 15px;
}
.right-menu-link-block-showroom {
  position: relative;
  display: flex;
  padding: 11px 25px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-style: none;
  border-width: 1px;
  border-color: rgba(155, 155, 155, 0.28);
  border-radius: 2px;
  background-color: #fff;
  color: #1f1f1f;
  text-align: center;
  text-decoration: none;
}
.right-menu-link-block-showroom:hover {
  transform: translate(0px, 0px);
}
.menu-item-heading {
  margin-top: 0px;
  margin-bottom: 0px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 600;
}
.right-menu-description {
  margin-bottom: 0px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}
.icon-wrapper-klantenservice {
  position: absolute;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: auto;
  display: flex;
  width: 45px;
  height: 45px;
  margin-top: 31px;
  margin-bottom: 0px;
  margin-left: 20px;
  padding: 10px;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  background-color: rgba(152, 28, 31, 0.07);
  text-align: center;
}
.klantenservice-section .icon-wrapper-klantenservice,
.klantenservice-section .icon-wrapper-klantenservice.odd {
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0px;
}
.icon-wrapper-klantenservice.odd {
  position: relative;
  margin-top: 13px;
  margin-bottom: 8px;
  margin-left: 0px;
}
.klantenservice-section .icon-wrapper-klantenservice.odd {
  position: absolute;
  margin-bottom: 0px;
  margin-left: 20px;
}
.usp-icon {
  width: 35px;
  height: 35px;
  object-fit: fill;
}
.large-grid-products {
  grid-column-gap: 15px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto;
}
.klantenservice-top-grid {
  margin-bottom: 20px;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-columns: 1fr 0.45fr;
  grid-template-rows: auto;
}
.klantenservice-section {
  position: relative;
  padding: 40px 18px;
  background-color: #f7f7f7;
  background-image: linear-gradient(180deg, rgba(247, 247, 247, 0.97), rgba(247, 247, 247, 0.97)), url('/website/images/Woodstpe-zwart.svg');
  background-position: 0px 0px, 150% 50%;
  background-size: auto, 1060px;
  background-repeat: repeat, no-repeat;
}
.klantenservice-triple-grid {
  grid-column-gap: 20px;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
}
@media screen and (min-width: 768px) {
  .klantenservice-triple-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
  .search-grid-wrapper.category {
    padding: 8px;
  }
}
@media screen and (min-width: 991.1px) {
  .klantenservice-triple-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .werkgebied-top-grid aside {
    height: 100%;
    max-height: 490px;
  }
}
.klantenservice-triple-grid p {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 27px;
}
.klantenservice-section .icon-wrapper-klantenservice-small {
  position: absolute;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: auto;
  display: flex;
  width: 45px;
  height: 45px;
  margin-top: 20px;
  margin-bottom: 0px;
  margin-left: 20px;
  padding: 10px;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  background-color: rgba(152, 28, 31, 0.07);
  text-align: center;
}
.klantenservice-block {
  position: relative;
  padding: 24px 20px;
  border-radius: 3px;
  background-color: #fff;
  box-shadow: 7px 7px 20px -20px rgba(0, 0, 0, 0.29);
}
.klantenservice-block.antwoord {
  padding-right: 32px;
  padding-left: 32px;
}
.klantenservice-link {
  display: block;
  margin-bottom: 5px;
  color: #001427;
  font-size: 15px;
  text-decoration: none;
}
.extra-large-paragraph {
  margin-bottom: 10px;
  color: #000;
  font-size: 17px;
  line-height: 27px;
}
.center-heading-block {
  max-width: 575px;
  margin-right: auto;
  margin-bottom: 40px;
  margin-left: auto;
  text-align: center;
}
.hero-image-block-wrapper {
  position: relative;
  overflow: visible;
  height: 470px;
  border-radius: 3px;
}
.hero-image-block-wrapper.large {
  height: 490px;
}
.category-block {
  position: relative;
  display: block;
  overflow: hidden;
  width: auto;
  height: auto;
  max-width: 300px;
  grid-auto-columns: 1fr;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  border-radius: 1px;
  background-color: #fff;
  box-shadow: 0 6px 14px -16px #000;
  text-decoration: none;
}
.category-image {
  display: block;
  width: 100%;
  height: 205px;
  border-bottom: 1px solid rgba(163, 163, 163, 0.17);
  object-fit: cover;
  object-position: 50% 100%;
}
.category-block-wrapper {
  padding: 14px;
}
.category-heading {
  position: relative;
  display: inline-block;
  margin-bottom: 8px;
  font-family: Poppins, sans-serif;
  color: #001427;
  font-size: 15px;
  font-weight: 600;
}
.prijs-m2-first-small {
  display: inline-block;
  margin-right: 12px;
  color: #001427;
  font-size: 15px;
  text-decoration: line-through;
}
.prijs-m2-first.no-offer {
  text-decoration: none;
}
.prijs-m2-first-small.no-offer {
  color: #001427;
  font-size: 20px;
  text-decoration: none;
  display: block;
}
.no-combi-item .no-combi-selected-label,
.large-price-small {
  display: inline;
  margin-top: 0px;
  margin-right: 6px;
  margin-bottom: 0px;
  padding: 6px 9px;
  border-radius: 3px;
  background-color: rgba(39, 201, 122, 0.21);
  color: #00b97c;
  font-size: 17px;
  line-height: 33px;
  font-weight: 500;
}
.large-price-small.combi {
  font-size: 15px;
}
.center-review-wrapper {
  max-width: 550px;
  margin: 40px auto 80px;
  text-align: center;
}
.section-image-final {
  position: relative;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  height: 50px;
  max-width: none;
  border: none;
  /*border-style: solid;*/
  /*border-width: 1px;*/
  /*border-color: rgba(0, 0, 0, 0.03);*/
  /*border-radius: 2px;*/
  text-align: center;
  object-fit: cover;
  object-position: 50% 100%;
}
.section-right-top-image {
  position: relative;
  padding: 45px 18px;
  background-color: #f7f7f7;
  background-image: linear-gradient(180deg, rgba(247, 247, 247, 0.98), rgba(247, 247, 247, 0.98)), url('/webshop/images/Woodstpe-zwart.svg');
  background-position: 0px 0px, 150% 50%;
  background-size: auto, 1060px;
  background-repeat: repeat, no-repeat;
}
.section-right-top-image._2 {
  background-color: #f1f1f1;
}
.section-right-top-image.first {
  padding-top: 60px;
}
.large-content-section-category.no-bg,
.small-footer.no-bg,
.section-right-top-image.no-bg {
  background-image: none;
}
.samenstellen-icon {
  position: relative;
  top: 1px;
  width: 19px;
  margin-right: 0px;
  margin-left: 4px;
  transform: rotate(-90deg);
}
.basic-section-heading-small {
  margin-top: 0px;
  margin-bottom: 11px;
  font-family: Poppins, sans-serif;
  color: #ff9c1e;
  font-size: 17px;
  line-height: 40px;
  font-weight: 600;
  text-align: left;
}
.basic-section-heading-small.center {
  color: #001427;
  text-align: left;
}
.triple-grid-alt {
  display: grid;
  margin-left: 17px;
  grid-auto-columns: 1fr;
  grid-column-gap: 6px;
  grid-row-gap: 0px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
}
.banner-small-below {
  position: fixed;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
  z-index: 999;
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 15px 40px;
  border-radius: 2px;
  background-color: #fff;
  box-shadow: 13px 13px 50px -40px rgba(0, 0, 0, 0.14);
}
.slide-bar-grid {
  grid-template-columns: 0.25fr 1fr 0.65fr 0.85fr;
  grid-template-rows: auto;
}
.basic-section-heading-smaller {
  position: relative;
  left: -21px;
  display: block;
  margin-top: 0px;
  margin-bottom: 0px;
  font-family: Poppins, sans-serif;
  color: #000;
  font-size: 15px;
  line-height: 21px;
  font-weight: 600;
}
.documentatie-item {
  display: flex;
  margin-bottom: 10px;
  justify-content: flex-start;
  align-items: center;
  color: #001427;
}
.bespaar-button {
  display: inline-block;
  margin-top: 12px;
  padding: 9px 16px;
  border-radius: 2px;
  background-color: #00b97c;
  font-family: Poppins, sans-serif;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.bespaar-button.right-top {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: auto;
  margin-right: 12px;
}
.mini-paragraph-wrapper {
  display: flex;
  margin-top: 10px;
}
.combideal-mini-paragraph {
  margin-bottom: 0px;
  align-self: center;
  color: #000;
  font-size: 11px;
  line-height: 16px;
  text-decoration: none;
}
.combideal-mini-paragraph._2 {
  font-size: 14px;
}
.switch-wrapper {
  margin-right: 9px;
  align-self: center;
}
.switch {
  display: flex;
  width: 52px;
  height: 22px;
  padding-right: 4px;
  padding-left: 4px;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  background-color: #001427;
  font-family: Poppins, sans-serif;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
}
.switch.uit {
  padding-left: 7px;
  background-color: rgba(163, 163, 163, 0.63);
}
.switch.off {
  padding-right: 7px;
}
.switch-cricle {
  width: 14px;
  height: 14px;
  margin-right: 2px;
  border-radius: 100%;
  background-color: #fff;
  color: #fff;
}
.switch-cricle.right {
  width: 14px;
  height: 14px;
  margin-right: 0px;
  margin-left: 2px;
}
.combi-deal-final-price {
  margin-bottom: 3px;
  margin-left: 0px;
  color: #000;
  font-size: 14px;
  line-height: 22px;
  text-align: right;
}
.deco-span {
  text-decoration: line-through;
}
.alternatief-text {
  position: relative;
  top: 1px;
  display: inline-block;
}
.keuze-woodstep-large {
  position: relative;
  top: -2px;
  width: 13px;
  margin-right: 1px;
}
.full-section {
  display: flex;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
}
.block-wrapper {
  max-width: 500px;
}
.white-heading {
  margin-top: 0px;
  font-family: Poppins, sans-serif;
  color: #fff;
  font-size: 20px;
}
.temp-button {
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 1px;
  background-color: rgba(255, 255, 255, 0.09);
  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 400;
}
.temp-button.finished {
  background-color: #00b97c;
}
.temp-button.linked {
  background-color: rgba(255, 255, 255, 0.36);
}
.large-grid-categorie {
  grid-template-columns: 0.33fr 1fr;
  grid-template-rows: auto;
}
.triple-grid-category {
  margin-top: 26px;
  margin-bottom: 0px;
  grid-column-gap: 16px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto;
}
.seo-category-block {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 230px;
  padding: 0px;
  border-radius: 1px;
  text-align: center;
}
.menu-heading-item-seo {
  display: inline-block;
  margin-top: 0px;
  margin-bottom: 4px;
  flex: 0 0 auto;
  font-family: Poppins, sans-serif;
  color: #fff;
  font-size: 17px;
  line-height: 30px;
  font-weight: 600;
  text-align: left;
}
.shop-direct-icon-seo {
  position: relative;
  left: 6px;
  top: -1px;
  height: 17px;
}
.block-overlay-seo {
  position: absolute;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
  padding: 38px 13px 22px 22px;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.57), rgba(83, 83, 83, 0));
  text-align: left;
}
.product-category-wrapper {
  margin-top: 0px;
}
.product-wrapper-grid {
  grid-template-columns: 1fr 1fr 1fr;
}
.combideal-button {
  position: absolute;
  left: 0;
  top: 0;
  right: auto;
  bottom: auto;
  display: inline-block;
  margin-top: 12px;
  margin-left: 12px;
  padding: 6px 12px;
  border-radius: 2px;
  background-color: #ff9c1e;
  font-family: Karla, sans-serif;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.combideal-button.nieuw-product {
  left: auto;
  top: 0%;
  right: 0%;
  bottom: auto;
  margin-right: 12px;
  margin-left: 12px;
  text-align: center;
}
.dropdown-category-filter {
  border-style: solid;
  border-width: 1px;
  border-color: rgba(0, 20, 39, 0.09);
  border-radius: 3px;
  font-family: Poppins, sans-serif;
  font-size: 13px;
}
.dropdown-category-filter-toggle {
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 14px;
}
.dropdown-category-filter-wrapper {
  display: grid;
  margin-bottom: 26px;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
}
.product-filter-text {
  margin-left: 16px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
}
.category-filter-flex {
  display: flex;
  align-items: center;
}
.paginate-wrapper {
  display: flex;
  justify-content: center;
}
.paginate-wrapper.cat-low {
  margin-top: 26px;
  margin-right: 12px;
}
.square-link {
  display: flex;
  margin-left: 12px;
  justify-content: center;
  align-items: center;
  border-style: none;
  border-width: 1px;
  border-color: #dbdbdb;
  border-radius: 3px;
  font-family: Poppins, sans-serif;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.square-link.large {
  width: auto;
}
.square-link.current {
  color: #ff9c1e;
}
.mini-arrow {
  position: relative;
  top: -1px;
  width: 9px;
  margin-left: 7px;
  transform: rotate(90deg);
}
.mini-arrow.revert {
  position: relative;
  top: -1px;
  width: 9px;
  margin-left: 0;
  margin-right: 7px;
  transform: rotate(-90deg);
}
.seo-heading-h2 {
  margin-top: 0px;
  font-family: Poppins, sans-serif;
  color: #001427;
  font-weight: 600;
}
.large-content-section-category {
  position: relative;
  padding: 25px 18px 80px;
  background-color: #f7f7f7;
  background-image: linear-gradient(180deg, rgba(247, 247, 247, 0.98), rgba(247, 247, 247, 0.98)), url('/webshop/images/Woodstpe-zwart.svg');
  background-position: 0px 0px, 210% -300px;
  background-size: auto, 1060px;
  background-repeat: repeat, no-repeat;
}
.large-content-section-category.large {
  padding-top: 40px;
}
.price-range-wrap {
  position: relative;
  margin-top: 8px;
  margin-bottom: 10px;
}
.form-block-2 {
  margin-bottom: 0px;
  padding: 0px 20px 10px;
}
.form-block-2._2 {
  padding-top: 10px;
}
.price-range-2 {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 3;
  width: 12px;
  height: 12px;
  margin-top: -4px;
  margin-left: 0px;
  border-style: solid;
  border-width: 1px;
  border-color: #f4f4f4;
  border-radius: 100%;
  background-color: #001427;
  cursor: pointer;
}
.mini-grid-small-2 {
  margin-top: 6px;
  margin-bottom: 11px;
  grid-column-gap: 8px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
}
.price-range-1 {
  position: absolute;
  left: 0%;
  right: auto;
  bottom: auto;
  z-index: 3;
  width: 12px;
  height: 12px;
  margin-top: -4px;
  margin-left: 0px;
  border-style: solid;
  border-width: 1px;
  border-color: #f4f4f4;
  border-radius: 100%;
  background-color: #001427;
  cursor: pointer;
}
.text-block-14 {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  text-align: right;
}
.text-block-14._1 {
  justify-content: flex-start;
}
.checkbox-field-new {
  margin-bottom: 0px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 0px;
}
.fake-inputfield {
  position: relative;
  display: flex;
  height: 46px;
  padding-right: 10px;
  padding-left: 10px;
  align-items: center;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(3, 20, 39, 0.09);
  border-radius: 2px;
}
.fake-inputfield.samller {
  height: 40px;
  justify-content: space-between;
}
.price-range-line {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 4px;
  margin-top: 4px;
  border-radius: 7px;
  background-color: rgba(3, 9, 15, 0.17);
}
.filtrrgrouphead {
  position: relative;
  margin-bottom: 0px;
  padding: 0px 20px 10px;
}
.price-range-line-2 {
  position: absolute;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: 0%;
  width: 100%;
  height: 4px;
  background-color: #001427;
}
.checkbox-label-3 {
  position: relative;
  top: 0px;
  margin-bottom: 0px;
  font-size: 15px;
  font-weight: 600;
}
.filter-wrapper-desktop-tablet {
  position: relative;
  top: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 0px;
  border-radius: 2px;
  background-color: #fff;
  box-shadow: 13px 13px 50px -40px rgba(0, 0, 0, 0.14);
}
.filter-heading-small {
  font-family: Poppins, sans-serif;
  color: #001427;
  font-size: 14px;
  font-weight: 600;
}
.filter-dropdown-small {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}
.filter-dropdown-toggle {
  width: 100%;
}
.filter-dropdown-list.w--open {
  position: relative;
  /*border-top: 1px solid hsla(0, 0%, 63.9%, 0.63);*/
  border-top: none;
  background-color: transparent;
}
.filter-dropdown-link-cat:hover {
  color: #ff9c1e;
}
.fake-checkbox {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  margin-left: 0px;
  float: right;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.29);
}
.fake-checkbox.checked {
  border-color: #ff9c1e;
  background-color: #ff9c1e;
  background-image: url('/webshop/images/Check-white.svg');
  background-position: 50% 50%;
  background-size: 10px;
  background-repeat: no-repeat;
}
.fake-dropdown-wrapper {
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}
.fake-dropdown-heading {
  position: relative;
  padding: 20px;
}
.checkbox-span-fake {
  color: rgba(0, 0, 0, 0.29);
}
.div-block-3 {
  margin-bottom: 26px;
}
/*.div-block-4 {*/
/*  max-width: 700px;*/
/*}*/
.login-grid {
  grid-template-rows: auto;
}
.login-block {
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 45px 50px;
  border-radius: 2px;
  background-color: #fff;
  box-shadow: 13px 13px 50px -40px rgba(0, 0, 0, 0.14);
}
.login-block._2 {
  padding-top: 31px;
  padding-bottom: 31px;
}
.modal-advies-popup .total-form-mini-block {
  height: auto;
  flex-wrap: wrap;
  border: none;
  padding-left: 0;
  padding-right: 0;
}
.total-form-mini-block {
  display: flex;
  width: 100%;
  height: 43px;
  padding: 0px 12px 0px 16px;
  justify-content: flex-start;
  align-items: center;
  border-style: solid;
  border-width: 1px;
  border-color: #d8d8d8;
  border-radius: 2px;
  font-size: 16px;
  line-height: 30px;
}
.total-form-mini-block.afrekenen {
  position: relative;
  background-color: #fff;
}
.total-form-mini-block.afrekenen.final {
  margin-bottom: 15px;
}
.placeholder-tekst {
  display: inline-block;
  color: #8b8b8b;
  font-size: 16px;
}
.placeholder-tekst.filled {
  color: rgba(0, 20, 39, 0.25);
}
.placeholder-tekst.filled {
  color: #0c0f21;
  font-size: 16px;
}
.basic-section-heading-login {
  display: block;
  margin-top: 0px;
  margin-bottom: 11px;
  font-family: Poppins, sans-serif;
  color: #000;
  font-size: 28px;
  line-height: 40px;
  font-weight: 600;
}
.login-heading {
  margin-top: 0px;
  margin-bottom: 2px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 600;
}
.login-block-wrapper {
  height: auto;
  margin-bottom: 5px;
}
.login-grid-page {
  margin-bottom: 13px;
  grid-column-gap: 10px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
}
.disclaimer-text {
  margin-top: 9px;
  margin-bottom: 0px;
  color: #000;
  font-size: 12px;
  line-height: 16px;
  text-decoration: none;
}
.basic-link {
  color: #001427;
  font-weight: 400;
}
.main-block-responsive {
  display: none;
}
.rekentool-block {
  position: relative;
  padding: 15px;
  background-color: rgba(163, 163, 163, 0.09);
}
.rekentool-grid {
  margin-bottom: 12px;
  grid-template-columns: 1fr 0.25fr 1fr;
  grid-template-rows: auto;
}
.small-bespaar-grid {
  margin-right: auto;
  margin-left: auto;
  grid-row-gap: 10px;
  grid-template-columns: 1fr 0.45fr;
}
.pak-prijs {
  font-size: 17px;
  display: inline-block;
  vertical-align: top;
  font-weight: 500;
  line-height: 21px;
}
.double-tool-grid {
  margin-bottom: 12px;
  grid-template-columns: 0.75fr 1fr;
  grid-template-rows: auto;
}
.aantal-right-block {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: 0%;
  display: flex;
  width: 65px;
  justify-content: center;
  align-items: center;
  background-color: #d8d8d8;
}
.filter-wrapper-responsive {
  position: absolute;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: auto;
  display: none;
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 0px;
  border-radius: 2px;
  background-color: #fff;
  box-shadow: 13px 13px 50px -40px rgba(0, 0, 0, 0.14);
}
.filter-link {
  display: none;
  margin-right: 16px;
  padding: 15px 20px;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(0, 20, 39, 0.09);
  border-radius: 3px;
  font-family: Poppins, sans-serif;
  color: #001427;
  text-decoration: none;
}
.filter-button-text {
  display: inline-block;
  margin-right: 10px;
}
.filter-icon-button {
  width: 13px;
  margin-right: 0px;
  margin-left: 0px;
}
.green-block-show {
  margin-bottom: 12px;
  padding: 16px 14px;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(0, 185, 124, 0.22);
  border-radius: 2px;
  background-color: rgba(39, 201, 122, 0.2);
}
.winkelwagen-grid {
  margin-bottom: 60px;
  grid-template-columns: 0.75fr 0.25fr;
  grid-template-rows: auto;
}
.bestel-block {
  position: relative;
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 31px 25px;
  border-radius: 2px;
  background-color: #fff;
  box-shadow: 13px 13px 50px -40px rgba(0, 0, 0, 0.14);
}
#cartOverviewTable .bestel-block {
  padding-top: 50px;
}
.winkelwagen-select-block {
  margin-top: 24px;
}
.winkelwagen-grid-wrapper {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.winkelwagen-grid-wrapper.final {
  overflow: visible;
  margin-bottom: 12px;
  padding-bottom: 0px;
  border-bottom-style: none;
}
.winkelwagen-grid-wrapper.final-search {
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom-style: none;
}
.winkelwagen-block-grid {
  grid-template-columns: 1fr 1.75fr 0.5fr 1.2fr 0.5fr;
  grid-template-rows: auto;
}
.extra-item-image-winkelwagen {
  width: 70px;
  min-width: 70px;
  height: 50px;
  margin-right: 12px;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.03);
  border-radius: 2px;
  object-fit: cover;
}
.winkelwagen-left-block {
  display: inline-block;
  align-self: center;
}
.div-block-6 {
  display: flex;
}
.winkelwagen-price-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.plus-winkelwagen {
  position: absolute;
  left: auto;
  top: 0%;
  right: 48px;
  bottom: 0%;
  display: flex;
  height: 42px;
  margin-left: 70px;
  align-items: center;
  opacity: 0.5;
  color: #001427;
}
.plus-winkelwagen:hover {
  opacity: 1;
}
.plus-winkelwagen._2 {
  right: 70px;
}
.mini-heading-winkelwagen {
  position: relative;
  display: block;
  margin-bottom: 8px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}
.winkelwagen-price-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
.grid-wrapper {
  margin-top: 40px;
}
.right-bestel-block {
  position: sticky;
  top: 0px;
  margin-top: 0px;
}
.right-question-link {
  position: absolute;
  left: auto;
  top: -3%;
  right: 10%;
  bottom: auto;
  display: block;
  margin-top: 0px;
  margin-right: 0px;
}
.right-question-link._2 {
  right: 4%;
}
.right-question-link._3 {
  right: -15%;
}
.right-question-link-image {
  width: 14px;
  height: 14px;
}
.question-answer {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: 2;
  width: 330px;
  margin-top: -75px;
  margin-right: 0px;
  margin-left: -209px;
  padding: 5px 9px;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 5px 8px -9px #000;
  color: rgba(3, 20, 39, 0.91);
}
.question-answer-text {
  color: #0c0f21;
  font-size: 12px;
  font-weight: 400;
}
.subtotaal-grid-mini {
  margin-bottom: 12px;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-columns: 1fr 0.5fr;
  grid-template-rows: auto;
}
.small-basic-heading-block {
  display: block;
  margin-top: 0px;
  margin-bottom: 0px;
  font-family: Poppins, sans-serif;
  color: #000;
  font-size: 16px;
  line-height: 30px;
  font-weight: 600;
}
.mijn-gegevens-grid {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
}
.text-wrapper-gegevens {
  margin-bottom: 12px;
}
.content-grid-text {
  grid-template-columns: 1fr 1.5fr;
  grid-template-rows: auto;
}
.login-heading-first {
  margin-top: 0px;
  margin-bottom: 2px;
  font-family: Poppins, sans-serif;
  color: #7c7c7c;
  font-size: 14px;
  font-weight: 600;
}
.gegevens-block {
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 35px 28px;
  border-radius: 2px;
  background-color: #fff;
  box-shadow: 13px 13px 50px -40px rgba(0, 0, 0, 0.14);
}
.gegevens-block.afrekenen {
  margin-top: -26px;
  margin-bottom: 0px;
  padding-top: 27px;
  padding-bottom: 27px;
}
.circle-green {
  position: relative;
  z-index: 2;
  display: flex;
  width: 25px;
  height: 25px;
  margin-right: 8px;
  padding: 6px;
  justify-content: center;
  align-items: center;
  border-style: solid;
  border-width: 1px;
  border-color: #fff;
  border-radius: 100%;
  background-color: #00b97c;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
.bestelling-block-grid {
  grid-template-columns: 2fr 0.65fr 0.35fr 0.5fr;
  grid-template-rows: auto;
}
.recente-bestelling-block {
  margin-top: 0px;
}
.mini-heading-tab-status {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: 0%;
  display: inline-block;
  margin-bottom: 0px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 600;
}
.recente-bestelling-block-large {
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 2px;
}
.recente-bestelling-block-large.final {
  margin-bottom: 0px;
}
.recente-bestelling-heading-block {
  position: relative;
  padding: 15px;
  background-color: rgba(163, 163, 163, 0.09);
}
.recente-bestelling-item {
  position: relative;
  padding: 15px;
  background-color: rgba(163, 163, 163, 0.09);
}
.recente-bestelling-item.selected {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 2px;
}
.soft-grey {
  color: #7c7c7c;
}
.navigatie-link {
  display: block;
  margin-bottom: 8px;
  font-family: Poppins, sans-serif;
  color: rgba(0, 0, 0, 0.71);
  text-decoration: none;
}
.navigatie-link:hover {
  color: #000;
}
.basic-3-grid-afrekenen {
  grid-template-columns: 0.25fr 0.75fr 0.25fr;
  grid-template-rows: auto;
}
.quad-grid-numbers {
  max-width: 700px;
  margin-right: auto;
  margin-bottom: 60px;
  margin-left: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto;
}
.no-payment .quad-grid-numbers {
  grid-template-columns: 1fr 1fr 1fr;
}
.circle-wrap {
  font-family: Poppins, sans-serif;
  color: #a3a3a3;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}
.circle-wrap.w--current {
  color: #001427;
}
.circle-wrap.dark.w--current {
  color: #001427;
}
.circle {
  position: relative;
  z-index: 2;
  width: 22px;
  height: 22px;
  margin-right: auto;
  margin-bottom: 4px;
  margin-left: auto;
  border-style: solid;
  border-width: 1px;
  border-color: #fff;
  border-radius: 100%;
  background-color: #32b85e;
  background-image: url('/webshop/images/Check-white.svg');
  background-position: 49.5% 50%;
  background-size: 11px;
  background-repeat: no-repeat;
}
.circle._2 {
  border-style: solid;
  border-width: 1px;
  border-color: #fff;
  background-color: #a3a3a3;
  background-image: none;
}
.circle._2.dark {
  background-color: #001427;
}
.green-tekst {
  font-family: Poppins, sans-serif;
  color: #32b85e;
  font-size: 12px;
}
.small-offerte-block {
  position: relative;
  margin-bottom: 8px;
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
}
.icon {
  margin-right: 10px;
  color: #a3a3a3;
}
.icon._1 {
  color: #001427;
}
._0afrekenen-heading {
  display: block;
  margin-top: 0px;
  margin-bottom: 14px;
  font-family: Poppins, sans-serif;
  color: #000;
  font-size: 21px;
  line-height: 30px;
  font-weight: 700;
}
.form-radio {
  display: inline-block;
  margin-right: 17px;
  font-size: 16px;
}
.small-radio-buttion {
  margin-top: 5px;
  margin-right: 0px;
}
.field-label-heading {
  position: relative;
  display: inline-block;
  margin-bottom: 8px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 600;
}
.field-label-heading._0 {
  margin-bottom: 0px;
}
.afrekenen-grid {
  grid-column-gap: 50px;
  grid-template-columns: 1fr 0.75fr;
  grid-template-rows: auto;
}
.dropdown-form {
  width: 100%;
  height: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 2px;
  background-color: #fff;
}
.dropdown-form-toggle {
  display: flex;
  min-height: 35px;
  line-height: 35px;
  padding: 0px 0px 0px 16px;
  justify-content: flex-start;
  align-items: center;
}
.dropdown-list-form.w--open {
  overflow: hidden;
  border: 1px solid #d8d8d8;
  border-radius: 2px;
  background-color: #e8ecf0;
  box-shadow: 0 4px 10px -5px #000;
}
.dropdown-list-form-link {
  padding: 7px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 14px;
}
.dropdown-list-form-link:hover {
  background-color: #e3e6e9;
}
.dropdown-list-form-link.final {
  border-bottom-style: none;
}
.small-offerte-block-larger {
  position: relative;
  margin-bottom: 8px;
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  grid-template-columns: 1fr 1fr 0.5fr;
  grid-template-rows: auto;
}
.correct-icon-afrekenen {
  position: absolute;
  left: auto;
  top: 13px;
  right: 15px;
  bottom: 0%;
  width: 15px;
  z-index: 900;
}
.product__quantity .correct-icon-afrekenen {
  top: 14px;
  right: 35px;
}
.afrekenen-mini-grid {
  grid-auto-columns: 1.25fr;
  grid-template-columns: 2fr 0.5fr;
  grid-template-rows: auto;
}
.afrekenen-bestelling-img {
  width: 30px;
  height: 30px;
  margin-right: 12px;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.03);
  border-radius: 2px;
  object-fit: cover;
}
.jouw-bestelling-text {
  position: relative;
  display: inline-block;
  margin-bottom: 0px;
  font-family: Karla, sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-align: left;
}
.gray-span {
  margin-left: 2px;
  color: #a3a3a3;
  font-size: 10px;
}
.behind-line {
  position: relative;
  top: 16px;
  right: 76px;
  width: 350px;
  height: 0px;
  margin-top: 0px;
  margin-right: 0px;
  margin-left: auto;
  border-style: dashed;
  border-width: 1px;
  border-color: #a3a3a3;
  background-color: transparent;
}
.behind-line.green {
  position: relative;
  left: 88px;
  top: 14px;
  width: 180px;
  margin-left: 0px;
  border-color: #00b97c;
}
.no-payment .behind-line.green {
  left: 122px;
  width: 220px;
}
.behind-line.green.large {
  width: 350px;
}
.behind-line.green.fulll {
  width: 540px;
}
.no-payment .behind-line.green.fulll {
  width: 456px;
}
.no-payment .behind-line {
  width: 232px;
  right: 112px;
}
.behind-line.basic {
  top: 12px;
  right: 0px;
  width: 520px;
  margin-right: auto;
  margin-left: auto;
}
.no-payment .behind-line.basic {
  width: 456px;
}
.behind-line._3-4 {
  width: 190px;
}
.grid {
  margin-bottom: 20px;
  grid-template-columns: 1fr 0.5fr;
  grid-template-rows: auto;
}
.hero-slider-wrapper {
  margin-bottom: 35px;
}
.hero-slider {
  height: auto;
}
.triple-grid-hero {
  margin-bottom: 0px;
  grid-column-gap: 10px;
  grid-row-gap: 8px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
}
.combideal-wrapper-block {
  position: relative;
  height: 196px;
}
.hero-right-block-image {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.hero-right-block-image._2 {
  object-position: 50% 70%;
}
.large-image-item-overlay {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  background-image: linear-gradient(180deg, transparent 10%, rgba(0, 14, 27, 0.27) 50%, rgba(0, 20, 39, 0.76));
}
.large-slide-bot-block {
  position: absolute;
  left: 0;
  top: auto;
  right: 0;
  bottom: 0%;
  padding: 0px 24px;
  font-family: Poppins, sans-serif;
  color: #fff;
  font-weight: 600;
  text-align: center;
}
.large-slide-heading {
  margin-top: 0px;
  margin-bottom: 4px;
  font-size: 28px;
  font-weight: 600;
}
.fake-button {
  position: relative;
  bottom: -10px;
  display: inline-block;
  width: 100%;
  margin-bottom: -65px;
  padding: 13px 14px;
  border-radius: 2px;
  background-color: #fff;
  box-shadow: -1px 5px 12px -8px rgba(0, 0, 0, 0.24);
  color: #0c0f21;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}
.fake-button:hover {
  transform: translate(0px, 0px);
}
.right-block-link {
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 14px;
  background-image: url('/webshop/images/002-right-arrow.svg');
  background-position: 0% 50%;
  background-size: 8px;
  background-repeat: no-repeat;
  color: #fff;
  font-size: 16px;
  line-height: 23px;
  font-weight: 400;
  text-decoration: none;
}
.right-block-paragraph {
  display: inline;
  margin-bottom: 0px;
  font-size: 16px;
  line-height: 28px;
}
.shop-content-usp-homepage {
  display: flex;
  margin-top: 0px;
  margin-bottom: 20px;
  justify-content: start;
  column-gap: 25px;
}
.basic-quad {
  max-width: 1300px;
  margin-right: auto;
  margin-left: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto;
}
.large-image-item {
  position: relative;
  overflow: visible;
  width: 100%;
  height: 380px;
  border-radius: 2px;
  background-image: linear-gradient(220deg, rgba(152, 28, 31, 0) 37%, #981c1f);
  box-shadow: 0 10px 50px -9px rgba(0, 0, 0, 0.14);
  margin-bottom: 23px;
}
.large-image-category {
  width: 100%;
  height: 100%;
  border-radius: 2px;
  object-fit: cover;
}
.large-image-item-overlay-2 {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  width: 100%;
  height: 100%;
  border-radius: 2px;
}
.large-slide-bot-block-2 {
  position: absolute;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
  padding: 0px 24px;
  font-family: Poppins, sans-serif;
  color: #fff;
  font-weight: 600;
  text-align: center;
}
.large-slide-heading-2 {
  margin-top: 0px;
  margin-bottom: 4px;
  font-size: 22px;
  font-weight: 600;
}
.large-paragraph-2 {
  color: #000;
  font-size: 17px;
  line-height: 27px;
}
.large-paragraph-intro {
  color: #000;
  font-size: 17px;
  line-height: 27px;
}
.large-paragraph-intro._2 {
  margin-bottom: 30px;
}
.category-description {
  font-weight: 400;
}
.bestseller-grid {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto;
}
.large-woodstep-slider-2 {
  height: 490px;
}
.icon-button {
  display: flex;
  min-height: 46px;
  margin-left: 0px;
  padding: 6px 12px;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  background-color: #001427;
  text-decoration: none;
}
.icon-button:hover {
  background-color: #0c0f21;
}
.large-image-text-2 {
  position: relative;
  z-index: 100;
  margin-top: -105px;
  margin-bottom: 0px;
  padding: 30px 35px;
  border-radius: 2px;
  background-color: #fff;
  box-shadow: -3px 18px 50px -14px rgba(0, 0, 0, 0.14);
}
.large-image-text-2.klanten {
  margin-top: 55px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.basic-section-heading-2 {
  margin-top: 0px;
  font-family: Poppins, sans-serif;
  color: #000;
  font-size: 33px;
  line-height: 40px;
  font-weight: 700;
}
.usp-heading-wrapper-center-2 {
  max-width: 650px;
  margin-right: auto;
  margin-bottom: 40px;
  margin-left: auto;
  color: #0c0f21;
  text-align: center;
}
.usp-heading-wrapper-center-2._2 {
  margin-top: 60px;
}
.section-image-copy-2 {
  position: relative;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  width: 100%;
  height: 490px;
  text-align: center;
  object-fit: cover;
  object-position: 50% 100%;
}
.section-image-copy-2._2 {
  object-position: 50% 50%;
}
.section-image-copy-2._1 {
  object-position: 50% 80%;
}
._2-grid-block {
  margin-top: 60px;
  grid-template-rows: auto;
}
.top-bar-link-icon {
  width: 19px;
  margin-right: 4px;
}
4 .section-tint-2 {
  position: relative;
  padding: 75px 18px;
  background-color: #f1f1f1;
}
.container-section {
  padding: 75px 0px;
}
.cta-description {
  color: #fff;
  font-size: 13px;
}
._2-col-grid {
  grid-template-rows: auto;
}
.cta-section-text {
  margin-top: 0px;
  margin-bottom: 0px;
  font-family: Poppins, sans-serif;
  color: #fff;
  font-weight: 600;
}
.usp-bar {
  padding: 20px 18px;
  background-color: #001427;
  background-image: linear-gradient(180deg, rgba(0, 20, 39, 0.96), rgba(0, 20, 39, 0.96)), url('/webshop/images/Woodstep-Wit.svg');
  background-position: 0px 0px, 0% 50%;
  background-size: auto, 1000px;
  background-repeat: repeat, no-repeat;
}
.button-full {
  width: 100%;
  margin-top: 0px;
  margin-right: 10px;
  padding: 10px 18px 9px;
  border-radius: 2px;
  background-color: #ff9c1e;
  transition: opacity 150ms ease-out, background-color 150ms ease-in;
  font-family: Poppins, sans-serif;
  font-weight: 600;
}
.button-full._2.green,
.button-full.green {
  background-color: #00b97c;
  box-shadow: inset 0px -2px 1px 0px #047f51;
}
.button-full:hover {
  background-color: #b3906d;
  color: #fff;
}
.button-full._2 {
  width: auto;
  margin-right: 0px;
  background-color: #ff9c1e;
}
.large-link-image {
  width: 60px;
  margin-right: 8px;
}
.assortiment-grid {
  max-width: 690px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  grid-column-gap: 10px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
}
.large-link {
  display: flex;
  padding: 12px;
  align-items: center;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(168, 168, 168, 0.28);
  border-radius: 2px;
  background-color: #fff;
  box-shadow: 0 5px 16px -12px rgba(0, 0, 0, 0.6);
  color: #001427;
  text-decoration: none;
}
.large-link:hover {
  box-shadow: 0 5px 16px -9px rgba(0, 0, 0, 0.6);
}
.category-text {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.mini-usp-heading-paragraph {
  color: #000;
  font-size: 17px;
}
.assortiment-grid-hero {
  width: 100%;
  max-width: 690px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  grid-column-gap: 10px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
}
.usp-block {
  position: relative;
  display: flex;
  text-decoration: none;
  white-space: nowrap;
}
.icon-wrapper-mini {
  display: flex;
  width: 42px;
  height: 42px;
  margin-right: 10px;
  margin-bottom: 0px;
  padding: 9px;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  background-color: rgba(152, 28, 31, 0.07);
  text-align: center;
}
.usp-heading {
  display: inline-block;
  margin-top: 0px;
  margin-bottom: 0px;
  align-self: center;
  font-family: Poppins, sans-serif;
  color: #2c2c2c;
  font-size: 14px;
  font-weight: 500;
}
.paragraph-usp {
  margin-bottom: 0px;
  font-family: Poppins, sans-serif;
  color: #858585;
  font-size: 13px;
}
.usp-block-right {
  display: inline-block;
}
.small-arrow {
  position: relative;
  top: -2px;
  width: 15px;
  margin-left: 6px;
}
.image-section-overlay-copy {
  position: relative;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  width: 100%;
  height: 100%;
  padding: 60px 18px 120px;
  background-image: linear-gradient(180deg, rgba(152, 28, 31, 0.88), rgba(152, 28, 31, 0.88));
}
.slider-nav {
  font-size: 8px;
}
.hero-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.left-arrow {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 20, 39, 0.07);
  font-size: 15px;
}
.left-arrow:hover {
  background-color: rgba(0, 20, 39, 0.18);
}
.right-arrow {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 20, 39, 0.07);
  font-size: 15px;
}
.right-arrow:hover {
  background-color: rgba(0, 20, 39, 0.18);
}
.gegevens-item {
  position: relative;
  margin-bottom: 30px;
}
.gegevens-text._2 {
  margin-top: 30px;
}
.edit-icon-wrapper {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: auto;
  height: auto;
  margin-top: 0px;
  /*opacity: 0.15;*/
}
.edit-icon-wrapper:hover {
  opacity: 1;
}
.edit-icon-2 {
  width: 17px;
  margin-left: 5px;
}
.agenda-placeholder {
  display: flex;
  height: 200px;
  margin-bottom: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ff9c1e;
  color: #fff;
}
.payment-radio {
  display: inline-block;
  margin-right: 17px;
  margin-bottom: 0px;
  font-size: 16px;
}
.payment-wrapper {
  margin-bottom: 8px;
  padding: 8px 9px;
  border-radius: 2px;
  background-color: #fff;
  box-shadow: 13px 13px 50px -40px rgba(0, 0, 0, 0.14);
}
.payment-wrapper.selected {
  border: 1px solid #ff9c1e;
}
.radio-button-payment {
  margin-bottom: 0px;
}
.payment-icons {
  margin-right: 10px;
}
.payment-radio-button {
  margin-top: 5px;
  margin-right: 10px;
  margin-left: -10px;
}
.dropdown-form-2 {
  width: 100%;
  height: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 2px;
}
.placeholder-tekst-2 {
  display: inline-block;
  color: #001427;
  font-size: 14px;
}
.payment-dropdown {
  display: inline-block;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(0, 20, 39, 0.1);
  border-radius: 2px;
  background-color: rgba(163, 163, 163, 0.23);
  font-weight: normal;
}
.payment-dropdown-toggle {
  display: flex;
  min-height: 37px;
  padding: 0px 48px 0px 16px;
  justify-content: flex-start;
  align-items: center;
}
.assortiment-grid-sidebar {
  max-width: 690px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  grid-column-gap: 16px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
}
.upsell-grid {
  margin-bottom: 60px;
  grid-template-columns: 0.75fr 0.25fr;
  grid-template-rows: auto;
}
.login-block-copy {
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 45px 50px;
  border-radius: 2px;
  background-color: #fff;
  box-shadow: 13px 13px 50px -40px rgba(0, 0, 0, 0.14);
}
.login-block-copy._2 {
  padding-top: 31px;
  padding-bottom: 31px;
}
.triple-product-grid {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
  grid-column-gap: 8px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
}
.pay-icons {
  margin-top: 17px;
  justify-content: space-between;
}
.pay-icon {
  margin-right: 10px;
}
.extra-winkelwagen-grid {
  margin-top: 10px;
  grid-template-rows: auto;
}
.verder-winkelen-link {
  font-family: Poppins, sans-serif;
  color: #001427;
  font-size: 12px;
  text-decoration: none;
}
.step-wrapper {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
}
.text-block-15 {
  display: inline-block;
  color: #a3a3a3;
}
.small-footer {
  position: relative;
  padding: 0px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background-color: #001427;
  background-image: linear-gradient(180deg, rgba(0, 20, 39, 0.98), rgba(0, 20, 39, 0.98)), url('/webshop/images/Woodstep-Wit.svg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, 1300px;
  background-repeat: repeat, no-repeat;
}
.final-footer-divider-small {
  position: absolute;
  left: 0%;
  top: 0;
  right: 0%;
  bottom: 0%;
  padding-top: 18px;
  padding-bottom: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.small-usp-heading {
  margin-top: 0px;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  color: #000;
  font-size: 23px;
  line-height: 40px;
  font-weight: 700;
  text-align: center;
}
.right-question-link-copy {
  position: relative;
  left: auto;
  top: -1px;
  bottom: auto;
  display: block;
  margin-top: 0px;
  margin-right: 0px;
  margin-left: 7px;
}
.right-question-link-copy._2 {
  right: 4%;
}
.alle-specificaties-popup {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 99999;
  display: none;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 20, 39, 0.75);
}
.extra-specificaties-grid {
  grid-template-columns: 0.5fr 1fr;
  grid-template-rows: auto;
}
.image-wrapper-extra-specificaties {
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.11);
  border-radius: 2px;
}
.specificatie-prijs-block {
  position: relative;
  margin-top: 20px;
}
.dropdown-grid-triple {
  margin-bottom: 8px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
}
.bestel-dropdown {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 2px;
}
.bestel-dropdown-toggle {
  width: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 2px;
}
.search-results {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: 9999;
  margin-top: 44px;
  padding: 27px 8px;
  border-radius: 2px;
  background-color: #fff;
  box-shadow: -1px 5px 19px -16px #000;
}
.winkelwagen-block-grid-copy {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-columns: 0.25fr 1.75fr 1.25fr;
  grid-template-rows: auto;
}
.search-image {
  width: 40px;
  height: 40px;
  margin-right: 12px;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.03);
  border-radius: 2px;
  object-fit: cover;
}
.search-price-new {
  position: relative;
  display: inline-block;
  margin-right: 7px;
  margin-bottom: 0px;
  padding: 5px 8px;
  border-radius: 3px;
  background-color: rgba(39, 201, 122, 0.21);
  font-family: Karla, sans-serif;
  color: #00b97c!important;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
}
.search-price-new.center {
  color: #001427;
}
.search-price-new._1 {
  right: 8px;
  white-space: nowrap;
}
.search-price-new._2 {
  right: -7px;
}
.search-price-new._3 {
  right: 4px;
}
.search-price-new.margin-right {
  margin-right: 12px;
}
.search-price-old {
  position: relative;
  display: inline-block;
  margin-bottom: 0px;
  font-family: Karla, sans-serif;
  color: #001427;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  text-decoration: line-through;
}
.search-price-wrapper .search-price-old {
  margin-right: 7px;
}
.search-price-old.center {
  color: #001427;
}
.search-price-old._1 {
  right: 8px;
  white-space: nowrap;
}
.search-price-old._2 {
  right: -7px;
}
.search-price-old._3 {
  right: 4px;
}
.search-price-old.margin-right {
  margin-right: 12px;
}
.search-price-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.basic-search-price {
  position: relative;
  display: inline-block;
  margin-bottom: 0px;
  font-family: Karla, sans-serif;
  color: #001427;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  text-decoration: none;
}
.basic-search-price.center {
  color: #001427;
}
.basic-search-price._1 {
  right: 8px;
  white-space: nowrap;
}
.basic-search-price._2 {
  right: -7px;
}
.basic-search-price._3 {
  right: 4px;
}
.basic-search-price.margin-right {
  margin-right: 12px;
}
.search-grid-wrapper {
  margin-bottom: 0px;
  padding: 12px 8px;
}
.search-divider {
  margin: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.search-grid-wrapper:hover {
  background-color: rgba(236, 236, 236, 0.66);
}
.search-grid-wrapper.final {
  overflow: visible;
  margin-bottom: 12px;
  padding-bottom: 0px;
  border-bottom-style: none;
}
.search-grid-wrapper.final-search {
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom-style: none;
}
.kortingscode-popup-wrapper {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 99999;
  display: none;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 20, 39, 0.75);
}
.error-text-kortingscode {
  margin-top: 10px;
  padding: 13px;
  border-radius: 2px;
  background-color: #e7baba;
  color: #d83636;
}
.error-text-kortingscode.afrekenen {
  position: relative;
  top: -14px;
}
.bestelling-dropdown-toggle {
  width: 100%;
  padding: 0px;
}
.bestelling-dropdown {
  width: 100%;
}
.bestelling-dropdown-list.w--open {
  position: relative;
  background-color: transparent;
}
.gegevens-wijzigen-popup {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 99999;
  display: none;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 20, 39, 0.75);
}
.gegevens-grid {
  margin-bottom: 12px;
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  grid-template-rows: auto;
}
.gegevens-grid-triple {
  margin-bottom: 8px;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
}
.wachtwoord-vergeten-block {
  max-width: 591px;
  margin: 0px auto;
  padding: 45px 50px;
  border-radius: 2px;
  background-color: #fff;
  box-shadow: 13px 13px 50px -40px rgba(0, 0, 0, 0.14);
}
.wachtwoord-vergeten-block._2 {
  padding-top: 31px;
  padding-bottom: 31px;
}
.large-grid-shop-de-look {
  grid-template-columns: 1fr 1fr;
}
.shop-de-look-image-wrapper {
  position: relative;
  height: 420px;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  object-fit: cover;
}
.shop-the-look-image {
  width: 100%;
  height: 100%;
  border-radius: 2px;
  top: 0;
  object-fit: cover;
  object-position: 50% 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
.shop-the-look-block {
  position: absolute;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
}
.shop-de-look-circle {
  width: 13px;
  height: 13px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 100%;
  background-color: #fff;
}
.circle-pulse {
  position: absolute;
  width: 13px;
  height: 13px;
  border-style: solid;
  border-width: 2px;
  border-color: #fff;
  border-radius: 101%;
}
.sdlwrap {
  position: relative;
  display: block;
  width: auto;
  height: auto;
  padding-left: 61px;
  align-items: center;
  text-align: left;
}
/*.shop-de-look-circle-wrapper {*/
/*  position: absolute;*/
/*  left: auto;*/
/*  top: auto;*/
/*  right: 22%;*/
/*  bottom: 20%;*/
/*}*/
/*.shop-de-look-circle-wrapper._2 {*/
/*  right: -7%;*/
/*  bottom: 3%;*/
/*}*/
.shop-de-look-item-wrap {
  position: relative;
  z-index: 2;
  max-width: 220px;
  margin-bottom: 6px;
  padding: 14px;
  border-radius: 3px;
  background-color: #fff;
  box-shadow: 0 4px 4px -6px #000;
  transition: all 200ms ease;
  color: #031427;
  text-align: center;
}
.shop-de-look-item-wrap:hover {
  background-color: #fff;
  box-shadow: 0 5px 11px -3px rgba(0, 0, 0, 0.56);
  color: #031427;
}
.sdl-description {
  font-size: 12px;
}
.shop-de-look-mini-arrow {
  position: absolute;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: -2%;
  width: 17px;
  height: 17px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 2px;
  background-color: #fff;
  transform: rotate(45deg);
}
.shop-de-look-mini-arrow:hover {
  z-index: 1;
}
.shop-de-look-circle-wrp {
  position: relative;
  display: flex;
  width: 40px;
  height: 40px;
  margin-right: auto;
  margin-left: auto;
  justify-content: center;
  align-items: center;
}
.text-block-11 {
  font-size: 12px;
}
.sdl-heading {
  margin-bottom: 8px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
}
.shop-de-look-mini {
  position: relative;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: 0%;
  width: 100%;
  height: 100px;
  margin-bottom: 8px;
  border-radius: 3px;
}
.hero {
  position: relative;
  padding: 25px 18px 45px;
  background-color: #f7f7f7;
  background-image: linear-gradient(180deg, rgba(247, 247, 247, 0.98), rgba(247, 247, 247, 0.98));
  background-position: 0px 0px;
  background-size: auto;
  background-repeat: repeat;
}
.hero.large {
  padding-top: 40px;
}
.div-block-7 {
  margin-top: 30px;
}
.link {
  color: #000;
  font-weight: 600;
}
.menu-bar-gegevens {
  margin-bottom: 0px;
  text-align: center;
}
.menu-item-icon {
  display: inline-block;
  margin-right: 9px;
  margin-left: 0px;
  padding: 9px;
  border-radius: 2px;
  font-family: Karla, sans-serif;
  color: #001427;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
}
.menu-item-icon.selected {
  background-color: #ff9c1e;
  color: #fff;
}
.menu-icon {
  position: relative;
  top: -2px;
  width: 19px;
  margin-right: 6px;
  margin-left: 0px;
}
.menu-icon._2 {
  top: 0px;
  margin-left: 7px;
}
.gegevens-block-menu {
  margin-top: 0px;
  margin-bottom: 11px;
  padding: 0px 28px;
  border-radius: 2px;
  background-color: #fff;
  box-shadow: 13px 13px 50px -40px rgba(0, 0, 0, 0.14);
}
.gegevens-block-menu.afrekenen {
  margin-top: -26px;
  margin-bottom: 0px;
  padding-top: 27px;
  padding-bottom: 27px;
}
.assortiement {
  margin-top: 26px;
  margin-bottom: 0px;
  grid-column-gap: 16px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto;
}
.category-block-item {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 270px;
  padding: 0px;
  border-radius: 1px;
  text-align: center;
}
.category-block-overlay {
  position: absolute;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 22px 13px 22px 22px;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  background-image: linear-gradient(180deg, rgba(0, 20, 39, 0.09), rgba(0, 20, 39, 0.09));
  text-align: center;
}
.section-slider {
  height: 80px;
  background-color: transparent;
}
.merken-slide {
  width: 19%;
  height: 80px;
  margin-right: 14px;
}
.merken-slide-mask {
  height: 80px;
}
.left-arrow-2 {
  display: none;
}
.right-arrow-2 {
  display: none;
  margin-right: auto;
  margin-left: auto;
}
.slider-link-block {
  display: flex;
  width: 100%;
  height: 80px;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  background-color: #fff;
}
.slide-nav-2 {
  display: none;
}
.slider-link-block-image {
  max-width: 150px;
}
.menu-heading {
  display: inline-block;
  margin-top: 0px;
  margin-bottom: 0px;
  flex: 0 0 auto;
  font-family: Poppins, sans-serif;
  color: #fff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  text-align: left;
}
.hero-slide-overlay {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  width: 100%;
  height: 100%;
}
.button-full-hero {
  position: absolute;
  left: 200px;
  top: auto;
  right: auto;
  bottom: 7%;
  margin-top: 0px;
  margin-right: 10px;
  padding: 10px 18px 9px;
  border-radius: 2px;
  background-color: #ff9c1e;
  transition: opacity 150ms ease-out, background-color 150ms ease-in;
  font-family: Poppins, sans-serif;
  font-weight: 600;
}
.button-full-hero:hover {
  background-color: #b3906d;
  color: #fff;
}
.button-full-hero._2 {
  width: auto;
  margin-right: 0px;
  background-color: #ff9c1e;
}
.mini-menu-navblock {
  width: 278px;
  height: 100%;
  margin-right: 0px;
  margin-left: 0px;
  padding: 21px 20px 12px;
  border-bottom: 3px solid transparent;
  transition: all 200ms ease;
  color: #001427;
  text-decoration: none;
}
.mini-menu-navblock:hover {
  border-bottom-color: #ff9c1e;
}
.mini-menu-navblock.highlight {
  padding-top: 19px;
}
.mini-menu-navblock.combi {
  padding-top: 21px;
  padding-bottom: 12px;
}
.filter-text-heading {
  display: inline-block;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 600;
}
.usp-slider {
  display: none;
}
.radio-button-label {
  font-size: 16px;
}
.korting-aanvraag-popup-wrapper {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 99999;
  display: none;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 20, 39, 0.75);
}
@media screen and (max-width: 991px) {
  .container.combideal {
    padding-right: 18px;
    padding-left: 18px;
  }
  .top-bar-link-text {
    display: inline;
  }
  .large-content-section {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .large-content-section.product-page {
    padding-right: 0px;
    padding-left: 0px;
  }
  .shop-content-combi-deal-block {
    padding: 18px;
  }
  .content-price-grid {
    grid-row-gap: 8px;
    grid-template-columns: 1fr;
  }
  .section-tint {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .coming-soon-tag {
    top: -2px;
    margin-left: 6px;
    padding-top: 0px;
    padding-right: 5px;
    padding-left: 5px;
    font-size: 5px;
    line-height: 13px;
  }
  .usp-link-block.hide {
    display: none;
  }
  .relative-block.responsive-hide {
    display: block;
  }
  .usp-grid-large {
    grid-template-columns: 0.75fr 1fr;
  }
  .final-footer-divider {
    padding-right: 18px;
    padding-left: 18px;
  }
  .footer-block-left._1 {
    left: 0px;
  }
  .final-footer-text.white {
    font-size: 14px;
    line-height: 30px;
  }
  .final-footer-text.show-block {
    font-size: 12px;
  }
  .footer-grid-new {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .large-menu-grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr 1fr;
  }
  .dropdown-list-assortiment.w--open {
    padding-right: 0px;
  }
  .dropdown-list-assortiment.relatibe.w--open {
    padding-left: 0px;
  }
  .nav-link-title {
    top: 5px;
    font-size: 14px;
  }
  .nav-link-title._2 {
    font-size: 13px;
  }
  .nav-link-title._2.green {
    font-size: 13px;
  }
  .menu-heading-item {
    font-size: 17px;
    line-height: 23px;
  }
  .top-bar-link-wrapper.search-hide {
    display: none;
  }
  .menu-text {
    font-size: 14px;
    font-weight: 400;
  }
  .dropdown-icon-dark {
    top: 2px;
    right: 0px;
    margin-right: 12px;
  }
  .navbar-new {
    padding-right: 0px;
    padding-left: 0px;
  }
  .block-overlay {
    padding-top: 0px;
    padding-right: 10px;
    padding-left: 10px;
  }
  .basic-3-grid {
    grid-column-gap: 18px;
    grid-template-columns: 0.5fr 1.5fr 1fr;
  }
  .nav-link-block {
    padding-right: 10px;
    padding-left: 10px;
    white-space: nowrap;
  }
  .nav-link-block.highlight {
    margin-right: 16px;
  }
  .nav-link-wrapper {
    display: block;
    height: 100%;
    margin-right: 0px;
    margin-left: 0px;
    padding: 14px 36px 14px 16px;
    border-bottom: 1px none rgba(149, 145, 170, 0.13);
    color: #fff;
    font-size: 15px;
  }
  .nav-link-wrapper:hover {
    color: #fff;
  }
  .nav-link-wrapper.w--current {
    color: #a798f5;
  }
  .two-grid-menu-block {
    padding-bottom: 0px;
  }
  .menu-button {
    padding: 14px;
    float: right;
  }
  .small-menu-heading {
    margin-bottom: 0px;
    font-size: 16px;
  }
  .double-grid {
    grid-template-columns: 0.25fr 1fr 0.75fr;
  }
  .product-gallery__featured,
  .large-woodstep-slider {
    height: 400px;
  }
  .section-image-copy {
    height: 400px;
  }
  .large-content-grid {
    grid-template-columns: 0.75fr 1fr;
  }
  .m2-grid {
    grid-template-columns: 0.75fr 1fr;
  }
  .min {
    font-size: 14px;
  }
  .placeholder-tekst-dark {
    font-size: 13px;
  }
  .plus {
    margin-left: 66px;
    font-size: 14px;
  }
  .plus.aantal {
    margin-left: 44%;
  }
  .button-right-text {
    display: inline;
  }
  .small-triple-grid-center-block {
    margin-left: 0px;
  }
  .omschrijving-block.green-cta {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .breadcrumb-wrapper {
    position: relative;
    top: -3px;
    margin-right: 0px;
    margin-bottom: 0px;
    text-align: left;
  }
  .breadcrumb-text {
    font-size: 12px;
  }
  .top-bread-trust {
    padding-right: 18px;
    padding-left: 18px;
    grid-template-columns: 1fr 0.5fr;
  }
  .top-bread-trust._0 {
    padding-right: 0px;
    padding-left: 0px;
    grid-template-columns: 1fr 1fr;
  }
  .trustpilot-text {
    font-size: 12px;
  }
  .mini-contact-item {
    grid-template-columns: 1fr;
  }
  .image-section-overlay {
    padding-bottom: 50px;
  }
  .bot {
    display: none;
  }
  .ondervloer-popup-wrapper {
    padding: 8px 18px;
  }
  .popup-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .filter-item {
    margin-bottom: 3px;
  }
  .filter-item.selected {
    margin-bottom: 6px;
  }
  .filter-text {
    font-size: 12px;
  }
  .popup-slide-link-block.responsive-hide {
    display: none;
  }
  .large-menu-grid-dropdown {
    grid-template-columns: 0.25fr 1fr;
  }
  .dropdown-menu-link-block {
    margin-bottom: 0px;
    padding-top: 9px;
    padding-bottom: 9px;
    padding-left: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .dropdown-menu-link-block.highlight {
    border-bottom-style: none;
  }
  .small-menu-heading-dropdown {
    font-size: 14px;
    line-height: 27px;
  }
  .dropdown-grid-cat {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 30px;
  }
  .nav-link-title-winkelwagen {
    font-size: 13px;
  }
  .right-menu-link-block-showroom {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
  }
  .icon-wrapper-klantenservice {
    margin-right: 20px;
  }
  .large-grid-products {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .category-block.hide-responsive {
    display: none;
  }
  .category-block.hide-tablet {
    display: none;
  }
  .prijs-m2-first-small {
    display: inline-block;
  }
  .prijs-m2-first-small._9 {
    margin-left: 9px;
  }
  .center-review-wrapper {
    margin-bottom: 40px;
  }
  .section-right-top-image {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .triple-grid-alt {
    grid-template-columns: 1fr 1fr;
  }
  .banner-small-below {
    padding-right: 18px;
    padding-left: 18px;
  }
  .basic-section-heading-smaller {
    left: 0px;
    line-height: 23px;
  }
  .full-section {
    padding-right: 18px;
    padding-left: 18px;
  }
  .triple-grid-category {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .seo-category-block.hide-responsive {
    display: none;
  }
  .menu-heading-item-seo {
    display: inline;
    font-size: 14px;
    line-height: 10px;
  }
  .block-overlay-seo {
    padding: 12px 15px 18px;
  }
  .product-wrapper-grid {
    grid-template-columns: 1fr 1fr;
  }
  .dropdown-category-filter-wrapper {
    grid-template-columns: 1.5fr 1fr;
  }
  .large-content-section-category {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .login-grid {
    grid-template-columns: 1fr;
  }
  .login-block {
    padding: 23px;
  }
  .winkelwagen-grid {
    grid-template-columns: 1fr;
  }
  .bestel-block {
    padding: 23px;
  }
  .plus-winkelwagen {
    margin-left: 66px;
    font-size: 14px;
  }
  .question-answer {
    z-index: 10;
    display: block;
    width: 250px;
  }
  .mijn-gegevens-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gegevens-block {
    padding: 23px;
  }
  .gegevens-block.hide {
    display: none;
  }
  .bestelling-block-grid {
    grid-template-columns: 1.25fr 0.5fr 0.3fr 0.5fr;
  }
  .basic-3-grid-afrekenen {
    grid-template-columns: 1fr 1fr;
  }
  .quad-grid-numbers {
    max-width: 640px;
  }
  .afrekenen-grid {
    grid-column-gap: 10px;
    grid-template-columns: 1fr 1fr;
  }
  .afrekenen-mini-grid {
    grid-template-columns: 1.25fr 0.5fr;
  }
  .behind-line {
    width: 510px;
  }
  .behind-line.green {
    left: 98px;
    width: 170px;
  }
  .behind-line.green.fulll {
    left: 78px;
    right: 0px;
    width: 520px;
  }
  .no-payment .behind-line.green.fulll {
    left: 122px;
    width: 456px;
  }
  .behind-line.basic {
    width: 500px;
  }
  .behind-line._3 {
    right: 96px;
    width: 330px;
  }
  .no-payment .behind-line._3 {
    right: 134px;
    width: 208px;
  }
  .grid {
    grid-template-columns: 1.25fr 0.5fr;
  }
  .large-slide-bot-block {
    padding: 0 12px;
  }
  .shop-content-usp-homepage {
    /*display: -ms-grid;*/
    /*display: grid;*/
    /*grid-auto-columns: 1fr;*/
    /*grid-column-gap: 16px;*/
    /*grid-row-gap: 16px;*/
    /*-ms-grid-columns: 1fr 1fr 1fr;*/
    /*grid-template-columns: 1fr 1fr 1fr;*/
    /*-ms-grid-rows: auto auto;*/
    /*grid-template-rows: auto auto;*/
    flex-flow: row wrap;
    overflow: hidden;
    height: 25px;
  }
  .shop-content-usp-homepage .basic-quad {
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
  }
  .bestseller-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .large-image-text-2.klanten {
    padding: 24px;
  }
  .container-section,
  .section-tint-2 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  ._2-col-grid {
    grid-template-columns: 0.75fr 0.5fr;
  }
  .large-link-image {
    width: 40px;
  }
  .assortiment-grid {
    grid-template-columns: 1fr 1fr;
  }
  .large-link {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .assortiment-grid-hero {
    grid-template-columns: 1fr 1fr;
  }
  .icon-wrapper-mini {
    margin-right: 20px;
  }
  .image-section-overlay-copy {
    padding-bottom: 50px;
  }
  .assortiment-grid-sidebar {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    grid-template-columns: 1fr 1fr;
  }
  .upsell-grid {
    grid-template-columns: 1fr;
  }
  .login-block-copy {
    padding: 23px;
  }
  .triple-product-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .final-footer-divider-small {
    padding-right: 18px;
    padding-left: 18px;
  }
  .small-usp-heading {
    font-size: 20px;
  }
  .alle-specificaties-popup {
    padding: 8px 18px;
  }
  .kortingscode-popup-wrapper {
    padding: 8px 18px;
  }
  .gegevens-wijzigen-popup {
    padding: 8px 18px;
  }
  .wachtwoord-vergeten-block {
    padding: 23px;
  }
  .hero {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .menu-item-icon {
    margin-bottom: 3px;
  }
  .menu-item-icon.selected {
    margin-bottom: 6px;
  }
  .gegevens-block-menu {
    padding: 23px;
  }
  .gegevens-block-menu.hide {
    display: none;
  }
  .assortiement {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .category-block-item.hide-responsive {
    display: none;
  }
  .category-block-overlay {
    padding: 12px 15px 18px;
  }
  .merken-slide {
    width: 24%;
    margin-right: 0.5px;
    margin-left: 0.5%;
  }
  .menu-heading {
    display: inline;
    font-size: 14px;
    line-height: 10px;
  }
  .mini-menu-navblock {
    padding-right: 10px;
    padding-left: 10px;
    white-space: nowrap;
  }
  .mini-menu-navblock.highlight {
    margin-right: 16px;
  }
  .filter-text-heading {
    font-size: 12px;
  }
  .korting-aanvraag-popup-wrapper {
    padding: 8px 18px;
  }
  .klantenservice-top-grid {
    grid-template-columns: 1fr;
  }
  .klantenservice-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .klantenservice-section .icon-wrapper-klantenservice {
    margin-right: 20px;
  }
  .klantenservice-section .icon-wrapper-klantenservice-small {
    margin-right: 20px;
  }
  .klantenservice-section .icon-wrapper-klantenservice-mini {
    margin-right: 20px;
  }
  .left-mini-klantenservice {
    margin-top: 0px;
  }
  .klantenservice-antwoord-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .right-col-grid-showroom {
    grid-column-gap: 10px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    box-shadow: none;
  }
  .dropdown-item-right .dropdown-menu-link-block,
  .dropdown-item-right .dropdown-menu-link-block.highlight {
    padding: 15px 0 15px 20px;
  }
  .dropdown-item-right {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .button-gtid {
    max-width: none;
    margin-left: 0px;
  }
  .basic-section-heading {
    margin-bottom: 6px;
  }
  .top-bar-link-text {
    font-size: 12px;
  }
  .top-bar-link-text.hide-zoek-tekst {
    display: none;
  }
  .shop-content-block {
    padding-left: 0px;
  }
  .responsive-hide {
    display: none!important;
  }
  .shop-content-usp {
    display: grid;
    grid-auto-columns: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .usp-list {
    margin-right: 0px;
    margin-left: 0px;
    font-size: 12px;
  }
  .shop-content-price-wrapper.responsive-hide {
    display: none;
  }
  .per-m2._2 {
    font-size: 8px;
  }
  .shop-content-image-wrapper {
    position: relative;
    top: 0px;
  }
  .odd-icon.search-icon {
    margin-left: 0px;
  }
  .container-section,
  .section-tint {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .coming-soon-tag {
    display: none;
    font-size: 8px;
  }
  .relative-block.responsive-hide {
    display: none;
  }
  .usp-grid-large {
    grid-row-gap: 10px;
    grid-template-columns: 1fr;
  }
  .footer-title {
    margin-bottom: 10px;
  }
  .footer-link {
    display: inline-block;
    margin-right: 13px;
  }
  .footer-block-left {
    padding-right: 0px;
    padding-left: 0px;
  }
  .final-footer-text.white {
    display: block;
    line-height: 26px;
  }
  .final-footer-text.responsive {
    color: #001427;
    font-size: 13px;
  }
  .trustpilot-logo.banner {
    top: -1px;
    width: 70px;
  }
  .usp-wrapper {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .usp-grid._2 {
    justify-content: center;
  }
  .footer-block {
    width: 100%;
    padding-right: 0px;
    padding-left: 0px;
  }
  .footer-grid-new {
    grid-template-columns: 1fr;
  }
  .footer {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .trustpilot-link-white {
    display: none;
    width: 100%;
    text-decoration: none;
  }
  .trustpilot-link-white.show {
    display: block;
  }
  .nav-menu {
    display: block;
    height: calc(100vh - 116px) !important;
    background-color: rgba(0, 20, 39, 0.71);
  }
  .dropdown-list-assortiment.w--open {
    margin-top: 105px;
    padding-top: 14px;
    padding-bottom: 14px;
    box-shadow: none;
  }
  .dropdown-list-assortiment.relatibe.w--open {
    position: relative;
    margin-top: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .nav-link-title {
    top: 3px;
  }
  .top-bar-link-wrapper.search-hide {
    display: inline-block;
  }
  .dropdown-icon-dark {
    display: block;
    font-size: 13px;
  }
  .navbar-new {
    padding-right: 0px;
    padding-left: 0px;
  }
  .basic-3-grid {
    grid-template-columns: 0.5fr 1fr;
  }
  .nav-link-block {
    display: block;
    height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background-color: #f7f7f7;
    text-align: left;
  }
  .nav-link-block.highlight {
    padding-top: 15px;
    padding-bottom: 14px;
  }
  .nav-link-block.combi {
    border-top-style: none;
  }
  .nav-link-wrapper {
    width: 100%;
    padding: 15px 18px 15px 14px;
    text-align: left;
  }
  .nav-link-wrapper.w--open {
    border-bottom: 0px none transparent;
  }
  .two-grid-menu-block {
    margin-bottom: 6px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
  }
  .menu-button {
    display: flex;
    padding-top: 10px;
    padding-bottom: 15px;
    float: left;
    align-items: center;
    background-color: #981915;
  }
  .dropdown {
    width: 100%;
    border-bottom: 1px none rgba(0, 0, 0, 0.12);
  }
  .two-grid-menu-block-right {
    display: none;
  }
  .product-gallery__featured,
  .large-woodstep-slider {
    height: 250px;
  }
  .section-image-copy {
    height: 250px;
    object-fit: cover;
    object-position: 50% 50%;
  }
  .large-content-grid {
    grid-template-columns: 1fr;
  }
  .placeholder-tekst-dark {
    font-size: 12px;
  }
  .button-right-text {
    font-size: 12px;
  }
  .shop-content-below {
    margin-top: 25px;
  }
  .omschrijving-block.center {
    margin-bottom: 25px;
  }
  .voorraad-usp {
    margin-right: 0px;
    margin-left: 0px;
  }
  .div-block {
    margin-top: 0px;
  }
  .prijs-block._2 {
    width: 100%;
  }
  .basic-section-heading-item {
    font-size: 22px;
  }
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .showroom-text-block {
    max-width: 100%;
    margin-bottom: 14px;
  }
  .image-section-overlay {
    padding-bottom: 60px;
  }
  .usp-list-2 {
    margin-right: 10px;
    margin-left: 10px;
  }
  .triple-grid-review {
    grid-template-columns: 1fr;
  }
  .large-paragraph-popup {
    font-size: 15px;
  }
  .popup-grid {
    margin-right: 0px;
    margin-left: 0px;
    grid-template-columns: 1fr 1fr;
  }
  .filter-heading {
    font-size: 13px;
  }
  .popup-slider {
    max-height: 270px;
  }
  .popup-slide-arrow {
    left: auto;
    top: -14%;
    right: 0%;
    bottom: auto;
    width: 26px;
    height: 26px;
    font-size: 11px;
  }
  .popup-slide-arrow._2 {
    right: 9%;
  }
  .popup-slide-link-block.responsive-hide-2 {
    display: none;
  }
  .large-menu-grid-dropdown {
    grid-template-columns: 1fr;
  }
  .dropdown-menu-left {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .dropdown-item-right {
    grid-template-columns: 1fr;
  }
  .dropdown-item-right.hide-responsive {
    display: none;
  }
  .dropdown-menu-link-block {
    background-color: #fff;
  }
  .dropdown-aanbieding-grid {
    display: none;
  }
  .dropdown-grid-cat {
    display: block;
  }
  .dropdown-grid-cat.show-responsive {
    display: grid;
    grid-auto-columns: 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .nav-link-title-winkelwagen {
    color: #0c0f21;
  }
  .large-grid-products {
    grid-column-gap: 8px;
    grid-template-columns: 1fr 1fr;
  }
  .category-block.hide-tablet {
    display: block;
  }
  .prijs-m2-first-small {
    display: inline-block;
  }
  .prijs-m2-first-small._9 {
    display: inline-block;
  }
  .basic-section-heading-small {
    font-size: 15px;
  }
  .triple-grid-alt {
    margin-left: 6px;
  }
  .slide-bar-grid {
    grid-template-columns: 0.25fr 0.75fr 1fr;
  }
  .basic-section-heading-smaller {
    font-size: 11px;
  }
  .bespaar-button {
    display: block;
    text-align: center;
  }
  .switch {
    padding-right: 5px;
    font-size: 10px;
  }
  .large-grid-categorie {
    grid-template-columns: 1fr;
  }
  .triple-grid-category {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .seo-category-block {
    display: block;
    height: 60px;
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .menu-heading-item-seo {
    line-height: 20px;
  }
  .block-overlay-seo {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    display: flex;
    padding-top: 0px;
    padding-bottom: 0px;
    align-items: center;
  }
  .paginate-wrapper.hide-top {
    display: none;
  }
  .large-content-section-category.large {
    background-image: linear-gradient(180deg, null, null), url('/webshop/images/Woodstpe-zwart.svg');
    background-position: 0px 0px, 100% 0%;
  }
  .filter-wrapper-desktop-tablet {
    display: none;
  }
  .main-block-responsive {
    display: block;
    margin-bottom: 12px;
  }
  .menu-hamburger-text {
    position: relative;
    top: -1px;
    display: inline-block;
    font-family: Poppins, sans-serif;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
  }
  .hamburger-icon {
    position: relative;
    top: 5px;
    display: inline-block;
    margin-right: 5px;
    color: #fff;
  }
  .hide-responsive-block {
    display: none;
  }
  .filter-wrapper-responsive {
    position: fixed;
    max-height: 100vh;
    overflow: auto;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: auto;
    z-index: 9999;
    display: block;
  }
  .filter-link {
    display: block;
  }
  .filter-icon-button {
    position: relative;
    top: -1px;
    margin-right: 8px;
  }
  .filter-sluiten {
    padding: 20px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
    background: #981915;
  }
  .filter-sluiten .filter-heading-small {
    color: #ffffff;
  }
  .filter-sluiten-icon {
    position: absolute;
    top: 23px;
    right: 20px;
    height: 13px;
    margin-right: 5px;
  }
  .winkelwagen-grid-wrapper.hide {
    display: none;
  }
  .mijn-gegevens-grid {
    grid-template-columns: 1fr;
  }
  .gegevens-block.afrekenen {
    margin-top: 0px;
  }
  .bestelling-block-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .basic-3-grid-afrekenen {
    grid-template-columns: 0.5fr 1fr;
  }
  .afrekenen-grid {
    grid-template-columns: 1fr;
  }
  .afrekenen-mini-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .behind-line {
    width: 430px;
    margin-top: 0px;
  }
  .no-payment .behind-line._3 {
    width: 35%;
    right: 15%;
  }
  .no-payment .behind-line.green {
    left: 15%;
    width: 35%;
  }
  .behind-line.green {
    left: 84px;
    width: 140px;
  }
  .behind-line.green.fulll {
    left: 38px;
    width: 440px;
  }
  .no-payment .behind-line.green.fulll {
    left: auto;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
  .behind-line.basic {
    width: 420px;
  }
  .behind-line._3 {
    right: 61px;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .hero-slider {
    height: auto;
  }
  .large-slide-bot-block {
    padding-right: 16px;
    padding-left: 16px;
  }
  .fake-button {
    font-size: 12px;
  }
  .shop-content-usp-homepage {
    display: grid;
    margin-bottom: 40px;
    grid-auto-columns: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .shop-content-usp-homepage.hide {
    display: none;
    margin-right: auto;
    margin-left: auto;
  }
  .large-slide-bot-block-2 {
    padding-right: 16px;
    padding-left: 16px;
  }
  .bestseller-grid {
    grid-template-columns: 1fr 1fr;
  }
  .large-woodstep-slider-2 {
    height: 300px;
  }
  .section-image-copy-2 {
    height: 300px;
  }
  ._2-grid-block {
    grid-template-columns: 1fr;
  }
  .section-tint-2 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .cta-section-text {
    font-size: 20px;
  }
  .usp-block {
    padding-top: 2px;
    padding-bottom: 2px;
    justify-content: center;
    align-items: center;
  }
  .image-section-overlay-copy {
    padding-bottom: 60px;
  }
  .placeholder-tekst-2 {
    font-size: 12px;
  }
  .assortiment-grid-sidebar {
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .triple-product-grid {
    grid-column-gap: 8px;
    grid-template-columns: 1fr 1fr;
  }
  .small-footer {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .small-usp-heading {
    font-size: 22px;
  }
  .extra-specificaties-grid {
    overflow: scroll;
    height: 450px;
    grid-template-columns: 1fr;
  }
  .specificatie-prijs-block._2 {
    width: 100%;
  }
  .search-grid-wrapper.hide {
    display: none;
  }
  .large-grid-shop-de-look {
    grid-template-columns: 1fr 1fr;
  }
  .hero.large {
    background-image: linear-gradient(180deg, null, null), url('/webshop/images/Woodstpe-zwart.svg');
    background-position: 0px 0px, 100% 0%;
  }
  .menu-icon.search-icon {
    margin-left: 0px;
  }
  .gegevens-block-menu.afrekenen {
    margin-top: 0px;
  }
  .assortiement {
    grid-template-columns: 1fr 1fr;
  }
  .category-block-item {
    display: block;
    height: 150px;
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .category-block-overlay {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    display: flex;
    padding-top: 0px;
    padding-bottom: 0px;
    align-items: center;
  }
  .merken-slide {
    width: 50%;
  }
  .menu-heading {
    line-height: 20px;
  }
  .mini-menu-navblock {
    display: block;
    height: auto;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background-color: #fff;
    text-align: left;
  }
  .mini-menu-navblock.highlight {
    padding-top: 15px;
    padding-bottom: 14px;
  }
  .mini-menu-navblock.combi {
    border-top-style: none;
  }
  .usp-slider {
    display: block;
    height: auto;
    margin-top: -15px;
    background-color: transparent;
  }
  .left-arrow-3 {
    display: none;
  }
  .right-arrow-3 {
    display: none;
  }
  .slide-nav-3 {
    display: none;
  }
  .usp-slider-mask {
    height: auto;
  }
  .usp-slide-1 {
    height: auto;
  }
  .dropdown-grid-cat.w--open {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
}
@media screen and (max-width: 679px) {
  .no-payment .behind-line.basic {
    width: 70%;
  }
}
@media screen and (max-width: 479px) {
  .button-gtid.top-margin {
    margin-top: 12px;
    margin-right: 0px;
    grid-column-gap: 8px;
    grid-row-gap: 12px;
  }
  .basic-section-heading {
    font-size: 20px;
    line-height: 27px;
  }
  .top-bar-link-text {
    font-size: 11px;
  }
  .top-bar-link-text.hide-final-responsive {
    display: none;
  }
  .large-paragraph {
    font-size: 15px;
  }
  .shop-content-combi-deal-block {
    padding-right: 13px;
    padding-left: 13px;
    margin-bottom: 0;
  }
  .shop-content-usp {
    grid-template-columns: 1fr;
  }
  .usp-list {
    margin-bottom: 6px;
    padding-top: 0px;
    padding-bottom: 0px;
    background-position: 0% 11%;
  }
  .per-m2._2 {
    font-size: 12px;
  }
  .odd-icon {
    width: 16px;
  }
  .section-tint {
    padding-right: 18px;
    padding-left: 18px;
  }
  .usp-grid-large {
    grid-template-columns: 1fr;
  }
  .footer-title {
    font-size: 17px;
  }
  .footer-link {
    margin-top: 7px;
  }
  .final-footer-text.white {
    font-size: 13px;
    text-align: left;
  }
  .final-footer-text.responsive {
    display: inline;
    font-size: 12px;
  }
  .trustpilot-logo {
    top: -2px;
    width: 70px;
  }
  .usp-grid._2 {
    display: block;
    text-align: center;
  }
  .basic-2-grid {
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }
  .footer {
    padding-bottom: 69px;
  }
  .trustpilot-link-white {
    display: none;
  }
  .trustpilot-link-white.show {
    display: block;
  }
  .nav-menu {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: auto;
    margin-top: 0px;
    text-align: left;
  }
  .dropdown-list-assortiment.relatibe.w--open {
    position: relative;
    margin-top: 0px;
    background-color: #fff;
  }
  .nav-link-title {
    font-size: 13px;
  }
  .top-bar-link-wrapper.hiode {
    display: inline-block;
  }
  .dropdown-icon-dark {
    display: block;
  }
  .basic-3-grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr 1fr;
  }
  .top-bar .basic-3-grid {
    grid-template-columns: 0.6fr 1fr;
  }
  .nav-link-block {
    width: 100%;
    padding-left: 14px;
  }
  .nav-link-block.highlight {
    margin-right: 0px;
  }
  .nav-link-block.cart {
    padding: 13px 15px 12px 6px;
    border-bottom: 0px;
  }
  .nav-link-wrapper {
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 14px;
    border-bottom-style: solid;
    text-align: left;
  }
  .menu-button {
    padding-top: 10px;
    padding-bottom: 14px;
    background-color: #981915;
  }
  .menu-button.w--open {
    color: #001427;
  }
  .mini-heading._1 {
    right: 0px;
  }
  .mini-heading._2 {
    right: 0px;
    display: block;
    text-align: left;
  }
  .mini-heading._3 {
    right: 0px;
  }
  .double-grid {
    margin-bottom: 12px;
    padding-bottom: 12px;
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    grid-template-columns: 0.25fr 1fr;
  }
  .product-gallery__featured,
  .large-woodstep-slider {
    height: 280px;
  }
  .section-image-copy {
    height: 280px;
  }
  .heading-block-combi {
    flex-direction: row;
  }
  .m2-grid {
    grid-template-columns: 1fr 1fr;
  }
  .color-block.final {
    width: 100%;
  }
  .color-block.selected-2 {
    padding: 12px;
  }
  .m2-form {
    padding-right: 10px;
    padding-left: 10px;
  }
  .small-paragraph {
    font-size: 14px;
  }
  .placeholder-tekst-dark {
    font-size: 14px;
  }
  .placeholder-tekst-dark.first {
    margin-left: 16px;
  }
  .plus._2 {
    left: auto;
    top: 0%;
    right: 51px;
    bottom: 0%;
    margin-left: 0px;
  }
  .plus.aantal {
    left: auto;
    top: 0%;
    /*right: 77px;*/
    bottom: 0%;
  }
  /*.button-right-text {*/
  /*  font-size: 11px;*/
  /*}*/
  .small-paragraph-list {
    font-size: 15px;
  }
  .overzicht-grid,
  .overzicht-grid.summary {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
  .overzicht-grid.top {
    justify-items: start;
    grid-template-columns: 0.5fr 1.5fr 0.5fr;
    grid-template-rows: auto;
  }
  .final-overzicht-text.hide {
    display: none;
  }
  .overzicht-text {
    font-size: 15px;
  }
  .overzicht-text.hide {
    display: none;
  }
  .fill {
    display: none;
  }
  .fill.hide {
    display: none;
  }
  .omschrijving-block {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .omschrijving-block.center {
    padding-right: 9px;
    padding-left: 9px;
  }
  .omschrijving-block.cateogry-item {
    padding-right: 16px;
    padding-left: 16px;
  }
  .specificatie-heading {
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 16px;
    line-height: 18px;
    padding-bottom: 15px;
  }
  .omschrijving-icon {
    width: 8px;
    margin-top: 14px;
  }
  .voorraad-usp {
    margin-bottom: 4px;
    padding-top: 0px;
    padding-bottom: 0px;
    background-position: 0% 11%;
  }
  .voorraad-usp.small {
    background-position: 0% 50%;
  }
  .prijs-block._2 {
    text-align: right;
  }
  .wijzigen {
    display: none;
  }
  .basic-section-heading-item {
    font-size: 20px;
    line-height: 30px;
  }
  .breadcrumb-wrapper {
    font-size: 12px;
  }
  .breadcrumb-text {
    display: inline-block;
  }
  .trustpilot-logo-2 {
    top: -2px;
    width: 70px;
  }
  .trustpilot-logo-2._2 {
    margin-left: 0px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .large-paragraph-white {
    font-size: 15px;
  }
  .basic-section-heading-image {
    font-size: 28px;
  }
  .image-section-overlay {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .usp-list-2 {
    margin-bottom: 4px;
    padding-top: 0px;
    padding-bottom: 0px;
    background-position: 0% 11%;
  }
  .large-image-text {
    padding: 20px;
  }
  .large-image-text.gegevens {
    padding-top: 0px;
  }
  .large-paragraph-popup {
    font-size: 15px;
  }
  .popup-grid {
    grid-template-columns: 1fr;
  }
  .popup-slider {
    height: 340px;
    max-height: none;
  }
  .popup-slide-link-block.responsive-hide-3 {
    display: none;
  }
  .odd-icon-alt {
    width: 16px;
  }
  .combi-deal-small-price-popup {
    font-size: 15px;
  }
  .cross-close {
    position: absolute;
    margin-top: 20px;
    margin-right: 20px;
  }
  .popup-sluiten-text {
    display: none;
  }
  .dropdown-grid-cat.show-responsive {
    padding-left: 14px;
    grid-row-gap: 8px;
    grid-template-columns: 1fr;
  }
  .nav-link-title-winkelwagen {
    font-size: 13px;
  }
  .large-grid-products {
    grid-template-columns: 1fr;
  }
  .category-block {
    max-width: none;
  }
  .prijs-m2-first-small {
    display: inline-block;
  }
  .prijs-m2-first-small._9 {
    font-size: 18px;
  }
  .large-price-small._0 {
    margin-right: 0px;
    font-size: 18px;
  }
  .section-right-top-image {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .samenstellen-icon {
    width: 16px;
  }
  .basic-section-heading-small {
    font-size: 17px;
  }
  .triple-grid-alt {
    margin-left: 0px;
    grid-template-columns: 1fr;
  }
  .slide-bar-grid {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    grid-template-columns: 1fr 0.75fr 1fr;
    grid-template-rows: auto auto;
  }
  .basic-section-heading-smaller {
    font-size: 28px;
  }
  .bespaar-button {
    text-align: left;
  }
  .combi-deal-final-price {
    font-size: 15px;
  }
  .combi-price-wrapper.hide {
    display: none;
  }
  .alternatief-text {
    display: inline;
    font-size: 12px;
    text-align: left;
  }
  .triple-grid-category {
    grid-template-columns: 1fr;
  }
  .product-wrapper-grid {
    grid-template-columns: 1fr;
  }
  .dropdown-category-filter {
    width: 100%;
  }
  .dropdown-category-filter-wrapper {
    grid-template-columns: 1fr;
  }
  .product-filter-text {
    margin-left: 0px;
    font-size: 11px;
  }
  .category-filter-flex {
    display: grid;
    width: 100%;
    grid-auto-columns: 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 8px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .large-content-section-category {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .filtrrgrouphead {
    margin-bottom: 3px;
  }
  .filter-heading-small {
    font-size: 15px;
  }
  .total-form-mini-block {
    padding-right: 10px;
    padding-left: 10px;
  }
  .placeholder-tekst {
    font-size: 14px;
  }
  .placeholder-tekst.filled {
    font-size: 12px;
    line-height: 21px;
  }
  .basic-section-heading-login {
    font-size: 28px;
  }
  .basic-section-heading-login.gegevens {
    padding-left: 23px;
    font-size: 21px;
  }
  .div-block-5 {
    margin-right: 27px;
  }
  .rekentool-grid {
    grid-template-columns: 1fr 0.5fr 0.5fr;
  }
  .filter-link {
    width: 100%;
  }
  .filter-icon-button {
    position: relative;
  }
  .green-block-show {
    padding-right: 12px;
    padding-left: 12px;
  }
  .winkelwagen-block-grid {
    grid-auto-columns: 1.25fr;
    grid-template-columns: 2fr 2fr;
  }
  .question-answer {
    width: 220px;
    margin-left: -138px;
  }
  .small-basic-heading-block {
    margin-bottom: 5px;
    font-size: 21px;
  }
  .gegevens-block.bestellingen {
    padding-right: 0px;
    padding-left: 0px;
  }
  .bestelling-block-grid {
    grid-template-columns: 1fr 0.25fr;
  }
  .bestelling-block-grid.final-block {
    grid-template-columns: 1fr 1fr;
  }
  .mini-heading-tab-status {
    position: relative;
    display: block;
  }
  .recente-bestelling-item.selected {
    background-color: #fff;
  }
  .basic-3-grid-afrekenen {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr 1fr;
  }
  .quad-grid-numbers {
    margin-bottom: 30px;
  }
  .circle-wrap {
    font-size: 9px;
  }
  .green-tekst {
    font-size: 9px;
  }
  .small-offerte-block {
    margin-bottom: 5px;
    grid-template-columns: 1fr;
  }
  .icon {
    margin-right: 5px;
  }
  ._0afrekenen-heading {
    font-size: 28px;
  }
  .small-offerte-block-larger {
    margin-bottom: 5px;
    grid-template-columns: 1fr;
  }
  .afrekenen-mini-grid {
    grid-template-columns: 2.25fr 1fr;
  }
  .behind-line {
    width: 250px;
  }
  .behind-line.green {
    left: 35px;
    width: 100px;
  }
  .behind-line.green.fulll {
    width: 300px;
  }
  .behind-line.basic {
    width: 330px;
  }
  .behind-line._3 {
    right: 27px;
    width: 210px;
  }
  .hero-slider {
    height: auto;
  }
  .large-slide-bot-block {
    left: 0%;
    top: auto;
    right: 0%;
    bottom: 0%;
  }
  .shop-content-usp-homepage {
    grid-template-columns: 1fr;
  }
  .basic-quad {
    grid-template-columns: 1fr;
  }
  .large-image-item {
    /*height: 390px;*/
    height: 200px;
  }
  .large-slide-bot-block-2 {
    left: 0%;
    top: auto;
    right: 0%;
    bottom: 0%;
  }
  .large-paragraph-2 {
    font-size: 15px;
  }
  .large-paragraph-intro {
    font-size: 15px;
  }
  .bestseller-grid {
    grid-template-columns: 1fr;
  }
  .large-woodstep-slider-2 {
    /*height: 280px;*/
  }
  .large-image-text-2.klanten {
    padding-right: 15px;
    padding-left: 15px;
  }
  .basic-section-heading-2 {
    font-size: 28px;
  }
  .section-image-copy-2 {
    height: 280px;
  }
  .top-bar-link-icon {
    width: 16px;
  }
  .section-tint-2 {
    padding-right: 18px;
    padding-left: 18px;
  }
  ._2-col-grid {
    justify-items: center;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .assortiment-grid {
    grid-template-columns: 1fr;
  }
  .mini-usp-heading-paragraph {
    font-size: 15px;
  }
  .usp-block {
    margin-bottom: 7px;
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .image-section-overlay-copy {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .payment-radio {
    width: 100%;
    margin-right: 0px;
  }
  .payment-radio._1 {
    width: auto;
    margin-right: 13px;
  }
  .payment-wrapper {
    display: grid;
    grid-auto-columns: 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
  }
  #paymentMethod.w-dropdown {
    margin: 0;
    width: 100%;
  }
  .placeholder-tekst-2 {
    font-size: 14px;
  }
  .assortiment-grid-sidebar {
    grid-row-gap: 10px;
    grid-template-columns: 1fr 1fr;
  }
  .triple-product-grid {
    grid-template-columns: 1fr;
  }
  .extra-winkelwagen-grid {
    grid-template-columns: 0.5fr 1fr;
  }
  .small-footer {
    padding-bottom: 69px;
  }
  .hide-block {
    display: none!important;
  }
  .small-usp-heading {
    font-size: 20px;
    line-height: 30px;
  }
  .specificatie-prijs-block._2 {
    text-align: right;
  }
  .winkelwagen-block-grid-copy {
    grid-auto-columns: 1.25fr;
    grid-template-columns: 2fr 2fr;
  }
  .search-price-new._1 {
    right: 0px;
  }
  .search-price-new._2 {
    right: 0px;
    display: block;
    text-align: left;
  }
  .search-price-new._3 {
    right: 0px;
  }
  .search-price-old._1 {
    right: 0px;
  }
  .search-price-old._2 {
    right: 0px;
    display: block;
    text-align: left;
  }
  .search-price-old._3 {
    right: 0px;
  }
  .basic-search-price._1 {
    right: 0px;
  }
  .basic-search-price._2 {
    right: 0px;
    display: block;
    text-align: left;
  }
  .basic-search-price._3 {
    right: 0px;
  }
  .gegevens-wijzigen-popup {
    display: none;
  }
  .gegevens-grid {
    grid-template-columns: 1fr 1fr;
  }
  .shop-de-look-circle-wrapper,
  .shop-de-look-circle-wrapper._2 {
    right: 18%;
  }
  .hero {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .menu-icon {
    width: 16px;
  }
  .gegevens-block-menu.bestellingen {
    padding-right: 0px;
    padding-left: 0px;
  }
  .assortiement {
    grid-template-columns: 1fr;
  }
  .category-block-overlay {
    background-image: linear-gradient(180deg, rgba(0, 20, 39, 0.25), rgba(0, 20, 39, 0.25));
  }
  .menu-heading {
    font-size: 16px;
  }
  .button-full-hero {
    left: 0px;
    margin-right: auto;
    margin-left: 20px;
  }
  .mini-menu-navblock {
    width: 100%;
    padding-left: 14px;
  }
  .mini-menu-navblock.highlight {
    margin-right: 0px;
  }
  .klantenservice-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .klantenservice-block {
    padding-right: 20px;
    padding-left: 20px;
  }
  .left-mini-klantenservice {
    padding-right: 20px;
    padding-left: 20px;
  }
  .klantenservice-antwoord-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .faq-main-item-wrapper {
    padding-right: 20px;
    padding-left: 20px;
  }
  .right-col-grid-showroom {
    grid-template-columns: 1fr;
  }
  .hero-image-block-wrapper {
    height: 180px;
  }
  .basic-white-block {
    padding-right: 20px;
    padding-left: 20px;
  }
  .top-bread-trust {
    margin-bottom: 0;
  }
  .content-grid-text {
    grid-template-columns: 1fr;
    grid-row-gap: 0;
    margin-bottom: 8px;
  }
  .category-image {
    height: 240px;
  }
}
#w-node-_9903d3a8-d681-5c8b-5ed7-1eebce8a6835-451f433e {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-ab09e35a-79cb-970f-a89a-73efc9853aa0-451f433e {
  align-self: center;
}
/*#w-node-_0438f2fe-4a62-8691-b011-dbb4723bdaba-451f433e {*/
/*  -webkit-align-self: start;*/
/*  -ms-flex-item-align: start;*/
/*  -ms-grid-row-align: start;*/
/*  align-self: start;*/
/*}*/
#w-node-f5f24a9c-b88f-af1b-2922-2dbe2cffc334-451f433e {
  -ms-grid-column-align: start;
  justify-self: start;
}
#w-node-f5f24a9c-b88f-af1b-2922-2dbe2cffc335-451f433e {
  -ms-grid-column-align: start;
  justify-self: start;
}
#w-node-f5f24a9c-b88f-af1b-2922-2dbe2cffc336-451f433e {
  -ms-grid-column-align: start;
  justify-self: start;
}
#w-node-f5f24a9c-b88f-af1b-2922-2dbe2cffc337-451f433e {
  -ms-grid-column-align: start;
  justify-self: start;
}
#w-node-_401a039f-1e88-7592-f319-49e8878053f5-451f433e {
  -ms-grid-column-align: start;
  justify-self: start;
}
#w-node-_06d732cf-51f1-d36d-4de6-83eec06ca145-451f433e {
  -ms-grid-column-align: auto;
  justify-self: auto;
  align-self: auto;
}
#w-node-cd5cac01-4aaf-3923-a337-b6cb8b04330b-451f433e {
  align-self: center;
}
#w-node-d1e97b51-d956-96ea-ff99-ace349e50313-451f433e {
  align-self: center;
}
#w-node-ec8d143d-e9c3-d6ba-6e4f-7284f1169a38-451f433e {
  align-self: center;
}
#w-node-ec8d143d-e9c3-d6ba-6e4f-7284f1169a3b-451f433e {
  align-self: center;
}
#w-node-_22968ea6-6e01-fbc8-3ee3-60e449655e8b-451f433e {
  align-self: center;
}
#w-node-_22968ea6-6e01-fbc8-3ee3-60e449655e8e-451f433e {
  align-self: center;
}
#w-node-c07e7fa3-2016-5f6c-7230-43bcb8395ddd-451f433e {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-c07e7fa3-2016-5f6c-7230-43bcb8395de0-451f433e {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-c07e7fa3-2016-5f6c-7230-43bcb8395de3-451f433e {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-c07e7fa3-2016-5f6c-7230-43bcb8395de7-451f433e {
  align-self: center;
}
#w-node-f1b105cd-eebe-0b8d-137e-be18a9836a32-451f433e {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-c07e7fa3-2016-5f6c-7230-43bcb8395dee-451f433e {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-f73a3473-68d2-543c-b619-13c469584a75-451f433e {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-e4b24746-f855-27da-688f-1759ebe77bd6-451f433e {
  align-self: center;
}
#w-node-e4b24746-f855-27da-688f-1759ebe77bda-451f433e {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-e4b24746-f855-27da-688f-1759ebe77bde-451f433e {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-e4b24746-f855-27da-688f-1759ebe77be1-451f433e {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-a5444812-c5f9-5479-d23c-3984874af7a6-451f433e {
  align-self: center;
}
#w-node-a5444812-c5f9-5479-d23c-3984874af7aa-451f433e {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-a5444812-c5f9-5479-d23c-3984874af7ae-451f433e {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-a5444812-c5f9-5479-d23c-3984874af7b1-451f433e {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_3e18543a-a373-6308-f12e-f6d056722105-451f433e {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_0f9e1ad0-e8e9-8765-4564-ca1a5e00614a-451f433e {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_8a38eea9-096f-f0b7-ca7e-8d8ea3c8b30e-451f433e {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_36bfec29-1038-a0b0-6122-9e93a32ff7af-451f433e {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-e762c5a7-f23c-a250-a54c-eaf3f480d28f-451f433e {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-e762c5a7-f23c-a250-a54c-eaf3f480d292-451f433e {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-c07e7fa3-2016-5f6c-7230-43bcb8395e31-451f433e {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 2;
  grid-column-end: span 2;
}
#w-node-_06d732cf-51f1-d36d-4de6-83eec06ca182-451f433e {
  align-self: center;
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-bddb2692-0a33-2ab1-0755-b43167f0e90f-451f433e {
  align-self: center;
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-d41b0f80-98e1-2de3-5b52-a18b394c5b46-451f433e {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-d41b0f80-98e1-2de3-5b52-a18b394c5b69-451f433e {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-d41b0f80-98e1-2de3-5b52-a18b394c5b6f-451f433e {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-d41b0f80-98e1-2de3-5b52-a18b394c5b76-451f433e {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-d41b0f80-98e1-2de3-5b52-a18b394c5b7d-451f433e {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-d41b0f80-98e1-2de3-5b52-a18b394c5b81-451f433e {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-d41b0f80-98e1-2de3-5b52-a18b394c5b84-451f433e {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-_9f36d581-8a69-7ad1-f153-d2b28723551f-451f433e {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 3;
  grid-column-end: span 3;
}
#w-node-_9f36d581-8a69-7ad1-f153-d2b287235520-451f433e {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 3;
  grid-column-end: span 3;
}
#w-node-defbe00c-1003-0dd6-785b-13b58fa90c9d-451f433e {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-defbe00c-1003-0dd6-785b-13b58fa90ca3-451f433e {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-_9df9add7-7fae-0941-7a12-6b71a321146a-451f433e {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-_9df9add7-7fae-0941-7a12-6b71a321148d-451f433e {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-_9df9add7-7fae-0941-7a12-6b71a3211493-451f433e {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-_1494765c-477e-5cb2-39ba-62a17c0e0e88-451f433e {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-_2839ee0b-0397-ad32-54b8-16aea716c50e-451f433e {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-db9ec807-e1f5-0ebd-819f-7a6564392fe3-451f433e {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-_9df9add7-7fae-0941-7a12-6b71a321149a-451f433e {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-_9df9add7-7fae-0941-7a12-6b71a32114a1-451f433e {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-_9df9add7-7fae-0941-7a12-6b71a32114a5-451f433e {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-_9df9add7-7fae-0941-7a12-6b71a32114a8-451f433e {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-ca624301-ef38-521a-4c44-e755820fec40-451f433e {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-_64e6f245-17f5-909f-a726-7eda4c3ebe9c-451f433e {
  align-self: center;
  -ms-grid-column-align: center;
  justify-self: center;
}
#w-node-_3d0fe6a7-548c-e450-965f-1b2f44293034-451f433e {
  align-self: center;
  -ms-grid-column-align: start;
  justify-self: start;
}
#w-node-bcf7b860-7605-06f7-76a2-0be1e1c5da74-e1c5da71 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
  align-self: center;
}
#w-node-_6ed77934-d6f9-d661-d814-f46cb9d151e5-c6907912 {
  align-self: stretch;
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 2;
  grid-column-end: span 2;
}
#w-node-bcf7b860-7605-06f7-76a2-0be1e1c5da9f-e1c5da71 {
  -ms-grid-column-align: start;
  justify-self: start;
}
#w-node-bcf7b860-7605-06f7-76a2-0be1e1c5daa4-e1c5da71 {
  -ms-grid-column-align: start;
  justify-self: start;
}
#w-node-bcf7b860-7605-06f7-76a2-0be1e1c5daa9-e1c5da71 {
  -ms-grid-column-align: start;
  justify-self: start;
}
#w-node-bcf7b860-7605-06f7-76a2-0be1e1c5daae-e1c5da71 {
  -ms-grid-column-align: start;
  justify-self: start;
}
#w-node-bcf7b860-7605-06f7-76a2-0be1e1c5dab3-e1c5da71 {
  -ms-grid-column-align: start;
  justify-self: start;
}
#w-node-bcf7b860-7605-06f7-76a2-0be1e1c5dab8-e1c5da71 {
  -ms-grid-column-align: start;
  justify-self: start;
}
#w-node-bcf7b860-7605-06f7-76a2-0be1e1c5dabd-e1c5da71 {
  -ms-grid-column-align: start;
  justify-self: start;
}
#w-node-bcf7b860-7605-06f7-76a2-0be1e1c5dabf-e1c5da71 {
  -ms-grid-column-align: start;
  justify-self: start;
}
#w-node-bcf7b860-7605-06f7-76a2-0be1e1c5dad1-e1c5da71 {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-bcf7b860-7605-06f7-76a2-0be1e1c5dae9-e1c5da71 {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-bcf7b860-7605-06f7-76a2-0be1e1c5dafe-e1c5da71 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-bcf7b860-7605-06f7-76a2-0be1e1c5db19-e1c5da71 {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_7acc6884-013d-b11b-7cd3-5aae955b9edd-955b9ecf {
  -ms-grid-column-align: auto;
  justify-self: auto;
  align-self: center;
}
#w-node-_7acc6884-013d-b11b-7cd3-5aae955b9ee4-955b9ecf {
  align-self: center;
}
#w-node-_7acc6884-013d-b11b-7cd3-5aae955b9ee5-955b9ecf {
  align-self: start;
}
#w-node-_7acc6884-013d-b11b-7cd3-5aae955b9eed-955b9ecf {
  align-self: start;
}
#w-node-_7acc6884-013d-b11b-7cd3-5aae955b9ef5-955b9ecf {
  align-self: start;
}
#w-node-ca6ee3e1-e51b-6434-93a4-45acb6aa3e4d-b6aa3e49 {
  align-self: center;
}
#w-node-ca6ee3e1-e51b-6434-93a4-45acb6aa3e4f-b6aa3e49 {
  align-self: center;
}
#w-node-ca6ee3e1-e51b-6434-93a4-45acb6aa3e53-b6aa3e49 {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-ca6ee3e1-e51b-6434-93a4-45acb6aa3e62-b6aa3e49 {
  align-self: center;
}
#w-node-ca6ee3e1-e51b-6434-93a4-45acb6aa3f01-b6aa3e49 {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-a55246fe-dc76-e86d-3225-9c553ccd8607-1c7832b5 {
  align-self: center;
}
#w-node-a55246fe-dc76-e86d-3225-9c553ccd8609-1c7832b5 {
  align-self: center;
}
#w-node-a55246fe-dc76-e86d-3225-9c553ccd860d-1c7832b5 {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-a55246fe-dc76-e86d-3225-9c553ccd8622-1c7832b5 {
  align-self: center;
}
#w-node-a55246fe-dc76-e86d-3225-9c553ccd871a-1c7832b5 {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_9903d3a8-d681-5c8b-5ed7-1eebce8a6835-1c7832b5 {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-d021bb36-13eb-f535-f6c0-ddfc8e45f7c6-1c7832b5 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 2;
  grid-column-end: span 2;
}
#w-node-b3fcfa55-df6f-2254-c3b5-5618539bc330-1c7832b5 {
  align-self: start;
}
#w-node-b3fcfa55-df6f-2254-c3b5-5618539bc53b-1c7832b5 {
  -ms-grid-column-align: start;
  justify-self: start;
}
#w-node-b3fcfa55-df6f-2254-c3b5-5618539bc556-1c7832b5 {
  -ms-grid-column-align: end;
  justify-self: end;
  align-self: center;
}
#w-node-b3fcfa55-df6f-2254-c3b5-5618539bc5d9-1c7832b5 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 3;
  grid-column-end: span 3;
}
#w-node-b3fcfa55-df6f-2254-c3b5-5618539bc64f-1c7832b5 {
  -ms-grid-column-align: center;
  justify-self: center;
  align-self: center;
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 3;
  grid-column-end: span 3;
}
#w-node-_9903d3a8-d681-5c8b-5ed7-1eebce8a6835-3a155c7c {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-f5f30ccb-3ddc-7af8-3556-7297f923ee3f-3a155c7c {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 2;
  grid-column-end: span 2;
}
#w-node-f5f30ccb-3ddc-7af8-3556-7297f923ee45-3a155c7c {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 2;
  grid-column-end: span 2;
}
#w-node-f30f9f76-1454-b29e-f60b-0bca94982d31-3a155c7c {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-_73e76030-0166-f0d6-8bfb-bec9c6d57a32-3a155c7c {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-_9903d3a8-d681-5c8b-5ed7-1eebce8a6835-ffe345ac {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-ab09e35a-79cb-970f-a89a-73efc9853aa0-ffe345ac {
  align-self: center;
}
#w-node-_0438f2fe-4a62-8691-b011-dbb4723bdaba-ffe345ac {
  align-self: start;
}
#w-node-f5f24a9c-b88f-af1b-2922-2dbe2cffc334-ffe345ac {
  -ms-grid-column-align: start;
  justify-self: start;
}
#w-node-f5f24a9c-b88f-af1b-2922-2dbe2cffc335-ffe345ac {
  -ms-grid-column-align: start;
  justify-self: start;
}
#w-node-f5f24a9c-b88f-af1b-2922-2dbe2cffc336-ffe345ac {
  -ms-grid-column-align: start;
  justify-self: start;
}
#w-node-f5f24a9c-b88f-af1b-2922-2dbe2cffc337-ffe345ac {
  -ms-grid-column-align: start;
  justify-self: start;
}
#w-node-_401a039f-1e88-7592-f319-49e8878053f5-ffe345ac {
  -ms-grid-column-align: start;
  justify-self: start;
}
#w-node-_06d732cf-51f1-d36d-4de6-83eec06ca145-ffe345ac {
  -ms-grid-column-align: auto;
  justify-self: auto;
  align-self: auto;
}
#w-node-cd5cac01-4aaf-3923-a337-b6cb8b04330b-ffe345ac {
  align-self: center;
}
#w-node-_7282ec65-0ec0-3ea2-29f0-db37ee23077a-ffe345ac {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
  -ms-grid-column-align: center;
  justify-self: center;
  align-self: center;
}
#w-node-_742c4b19-ecfe-49d8-9e01-ff8478bfdf12-ffe345ac {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
  -ms-grid-column-align: start;
  justify-self: start;
}
#w-node-_742c4b19-ecfe-49d8-9e01-ff8478bfdf14-ffe345ac {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_742c4b19-ecfe-49d8-9e01-ff8478bfdf17-ffe345ac {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
  -ms-grid-column-align: start;
  justify-self: start;
}
#w-node-_742c4b19-ecfe-49d8-9e01-ff8478bfdf19-ffe345ac {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-a523b87e-da22-232d-4846-f3ee7913d943-ffe345ac {
  align-self: center;
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-_06d732cf-51f1-d36d-4de6-83eec06ca182-ffe345ac {
  align-self: center;
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-d41b0f80-98e1-2de3-5b52-a18b394c5b46-ffe345ac {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-d41b0f80-98e1-2de3-5b52-a18b394c5b69-ffe345ac {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-d41b0f80-98e1-2de3-5b52-a18b394c5b6f-ffe345ac {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-d41b0f80-98e1-2de3-5b52-a18b394c5b76-ffe345ac {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-d41b0f80-98e1-2de3-5b52-a18b394c5b7d-ffe345ac {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-d41b0f80-98e1-2de3-5b52-a18b394c5b81-ffe345ac {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-d41b0f80-98e1-2de3-5b52-a18b394c5b84-ffe345ac {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-_9f36d581-8a69-7ad1-f153-d2b28723551f-ffe345ac {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 3;
  grid-column-end: span 3;
}
#w-node-_9f36d581-8a69-7ad1-f153-d2b287235520-ffe345ac {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 3;
  grid-column-end: span 3;
}
#w-node-d67d7417-733b-3b0c-6b96-eef09543caa9-ffe345ac {
  align-self: center;
  -ms-grid-column-align: center;
  justify-self: center;
}
#w-node-d67d7417-733b-3b0c-6b96-eef09543caad-ffe345ac {
  align-self: center;
  -ms-grid-column-align: start;
  justify-self: start;
}
#w-node-_9903d3a8-d681-5c8b-5ed7-1eebce8a6835-acc4c7f9 {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-ab09e35a-79cb-970f-a89a-73efc9853aa0-acc4c7f9 {
  align-self: center;
}
#w-node-_0438f2fe-4a62-8691-b011-dbb4723bdaba-acc4c7f9 {
  align-self: start;
}
#w-node-_06d732cf-51f1-d36d-4de6-83eec06ca145-acc4c7f9 {
  -ms-grid-column-align: auto;
  justify-self: auto;
  align-self: auto;
}
#w-node-cd5cac01-4aaf-3923-a337-b6cb8b04330b-acc4c7f9 {
  align-self: center;
}
#w-node-b23dffd8-6377-ef9e-2fd4-2f8d2c6d071e-acc4c7f9 {
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-d41b0f80-98e1-2de3-5b52-a18b394c5b46-acc4c7f9 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-d41b0f80-98e1-2de3-5b52-a18b394c5b69-acc4c7f9 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-d41b0f80-98e1-2de3-5b52-a18b394c5b6f-acc4c7f9 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-d41b0f80-98e1-2de3-5b52-a18b394c5b76-acc4c7f9 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-d41b0f80-98e1-2de3-5b52-a18b394c5b7d-acc4c7f9 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-_6806c199-397b-4ac5-1c88-992b251d826d-acc4c7f9 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-d41b0f80-98e1-2de3-5b52-a18b394c5b81-acc4c7f9 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-d41b0f80-98e1-2de3-5b52-a18b394c5b84-acc4c7f9 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-_9f36d581-8a69-7ad1-f153-d2b28723551f-acc4c7f9 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 3;
  grid-column-end: span 3;
}
#w-node-_9f36d581-8a69-7ad1-f153-d2b287235520-acc4c7f9 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 3;
  grid-column-end: span 3;
}
#w-node-_3719843f-0203-204f-ef1b-b02a77ed396c-41da19ed {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 2;
  grid-column-end: span 2;
  align-self: center;
}
#w-node-_3719843f-0203-204f-ef1b-b02a77ed3975-41da19ed {
  align-self: center;
}
#w-node-_3719843f-0203-204f-ef1b-b02a77ed3980-41da19ed {
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_3719843f-0203-204f-ef1b-b02a77ed3989-41da19ed {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 2;
  grid-column-end: span 2;
  align-self: center;
}
#w-node-_3719843f-0203-204f-ef1b-b02a77ed3992-41da19ed {
  align-self: center;
}
#w-node-_3719843f-0203-204f-ef1b-b02a77ed399d-41da19ed {
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_3719843f-0203-204f-ef1b-b02a77ed39a3-41da19ed {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 2;
  grid-column-end: span 2;
  align-self: center;
}
#w-node-_3719843f-0203-204f-ef1b-b02a77ed39ac-41da19ed {
  align-self: center;
}
#w-node-_3719843f-0203-204f-ef1b-b02a77ed39b7-41da19ed {
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_3719843f-0203-204f-ef1b-b02a77ed39bd-41da19ed {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 2;
  grid-column-end: span 2;
  align-self: center;
}
#w-node-_3719843f-0203-204f-ef1b-b02a77ed39c6-41da19ed {
  align-self: center;
}
#w-node-_3719843f-0203-204f-ef1b-b02a77ed39d1-41da19ed {
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_3719843f-0203-204f-ef1b-b02a77ed39d7-41da19ed {
  grid-column-end: 6;
  grid-column-start: 4;
  grid-row-end: 2;
  grid-row-start: 1;
}
#w-node-_3719843f-0203-204f-ef1b-b02a77ed39e8-41da19ed {
  grid-column-end: 5;
  grid-column-start: 4;
  grid-row-end: 2;
  grid-row-start: 1;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-c8818842-946e-fd65-d162-e6fcf85b8102-41da19ed {
  align-self: center;
}
#w-node-_728f4228-a154-48c0-d412-7a2f44b5e860-41da19ed {
  -ms-grid-column-align: end;
  justify-self: end;
  align-self: start;
}
#w-node-_804eb06e-fa12-a708-585a-2156d48ccca0-41da19ed {
  align-self: start;
}
#w-node-_96a4f478-7047-f219-e18f-d1b7b60fbba2-41da19ed {
  grid-column-end: 3;
  grid-column-start: 1;
  grid-row-end: 2;
  grid-row-start: 1;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}
#w-node-_5292612d-84ea-e808-98d7-bf6e124c705a-41da19ed {
  grid-column-end: span 1;
  grid-column-start: span 1;
  grid-row-end: span 1;
  grid-row-start: span 1;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_368b2102-2013-46e3-22e8-6c1da0af7afc-a0af7af9 {
  align-self: center;
}
#w-node-_368b2102-2013-46e3-22e8-6c1da0af7afe-a0af7af9 {
  -ms-grid-column-align: end;
  justify-self: end;
  align-self: center;
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 2;
  grid-column-end: span 2;
}
#w-node-_9903d3a8-d681-5c8b-5ed7-1eebce8a6835-65246433 {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-ab09e35a-79cb-970f-a89a-73efc9853aa0-65246433 {
  align-self: center;
}
#w-node-_0438f2fe-4a62-8691-b011-dbb4723bdaba-65246433 {
  align-self: start;
}
#w-node-f5f24a9c-b88f-af1b-2922-2dbe2cffc334-65246433 {
  -ms-grid-column-align: start;
  justify-self: start;
}
#w-node-f5f24a9c-b88f-af1b-2922-2dbe2cffc335-65246433 {
  -ms-grid-column-align: start;
  justify-self: start;
}
#w-node-f5f24a9c-b88f-af1b-2922-2dbe2cffc336-65246433 {
  -ms-grid-column-align: start;
  justify-self: start;
}
#w-node-f5f24a9c-b88f-af1b-2922-2dbe2cffc337-65246433 {
  -ms-grid-column-align: start;
  justify-self: start;
}
#w-node-_401a039f-1e88-7592-f319-49e8878053f5-65246433 {
  -ms-grid-column-align: start;
  justify-self: start;
}
#w-node-_06d732cf-51f1-d36d-4de6-83eec06ca145-65246433 {
  -ms-grid-column-align: auto;
  justify-self: auto;
  align-self: auto;
}
#w-node-cd5cac01-4aaf-3923-a337-b6cb8b04330b-65246433 {
  align-self: center;
}
#w-node-e08f9762-944d-e583-659c-4211a22e9de3-65246433 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
  -ms-grid-column-align: center;
  justify-self: center;
  align-self: center;
}
#w-node-_0ec768d1-c7b0-fbce-3c25-83c6e34bb59f-65246433 {
  align-self: center;
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-_06d732cf-51f1-d36d-4de6-83eec06ca182-65246433 {
  align-self: center;
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-d41b0f80-98e1-2de3-5b52-a18b394c5b46-65246433 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-d41b0f80-98e1-2de3-5b52-a18b394c5b69-65246433 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-d41b0f80-98e1-2de3-5b52-a18b394c5b6f-65246433 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-d41b0f80-98e1-2de3-5b52-a18b394c5b76-65246433 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-d41b0f80-98e1-2de3-5b52-a18b394c5b7d-65246433 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-d41b0f80-98e1-2de3-5b52-a18b394c5b81-65246433 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-d41b0f80-98e1-2de3-5b52-a18b394c5b84-65246433 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-_9f36d581-8a69-7ad1-f153-d2b28723551f-65246433 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 3;
  grid-column-end: span 3;
}
#w-node-_9f36d581-8a69-7ad1-f153-d2b287235520-65246433 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 3;
  grid-column-end: span 3;
}
#w-node-_64e6f245-17f5-909f-a726-7eda4c3ebe9c-65246433 {
  align-self: center;
  -ms-grid-column-align: center;
  justify-self: center;
}
#w-node-_3d0fe6a7-548c-e450-965f-1b2f44293034-65246433 {
  align-self: center;
  -ms-grid-column-align: start;
  justify-self: start;
}
#w-node-a4cdc093-8886-cb17-7eab-a4c9c9b092cb-7edc75f6 {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_7075ddbf-7407-63fc-16ca-e92cc29e543d-7edc75f6 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 2;
  grid-column-end: span 2;
}
#w-node-_5cb07839-a6ac-05f0-c9e4-86bcdc351f37-7edc75f6 {
  -ms-grid-column-align: start;
  justify-self: start;
}
#w-node-_5cb07839-a6ac-05f0-c9e4-86bcdc351f3a-7edc75f6 {
  -ms-grid-column-align: start;
  justify-self: start;
}
#w-node-_5cb07839-a6ac-05f0-c9e4-86bcdc351f3d-7edc75f6 {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_5cb07839-a6ac-05f0-c9e4-86bcdc351f42-7edc75f6 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
  align-self: center;
}
#w-node-_5cb07839-a6ac-05f0-c9e4-86bcdc351f48-7edc75f6 {
  -ms-grid-column-align: start;
  justify-self: start;
  align-self: center;
}
#w-node-_5cb07839-a6ac-05f0-c9e4-86bcdc351f4b-7edc75f6 {
  align-self: center;
}
#w-node-_5cb07839-a6ac-05f0-c9e4-86bcdc351f52-7edc75f6 {
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_5cb07839-a6ac-05f0-c9e4-86bcdc351f5b-7edc75f6 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
  align-self: center;
}
#w-node-_5cb07839-a6ac-05f0-c9e4-86bcdc351f61-7edc75f6 {
  -ms-grid-column-align: start;
  justify-self: start;
  align-self: center;
}
#w-node-_5cb07839-a6ac-05f0-c9e4-86bcdc351f64-7edc75f6 {
  align-self: center;
}
#w-node-_5cb07839-a6ac-05f0-c9e4-86bcdc351f6b-7edc75f6 {
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_5cb07839-a6ac-05f0-c9e4-86bcdc351f71-7edc75f6 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
  align-self: center;
}
#w-node-_5cb07839-a6ac-05f0-c9e4-86bcdc351f77-7edc75f6 {
  -ms-grid-column-align: start;
  justify-self: start;
  align-self: center;
}
#w-node-_5cb07839-a6ac-05f0-c9e4-86bcdc351f7a-7edc75f6 {
  align-self: center;
}
#w-node-_5cb07839-a6ac-05f0-c9e4-86bcdc351f81-7edc75f6 {
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_5cb07839-a6ac-05f0-c9e4-86bcdc351f87-7edc75f6 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
  align-self: center;
}
#w-node-_5cb07839-a6ac-05f0-c9e4-86bcdc351f8d-7edc75f6 {
  -ms-grid-column-align: start;
  justify-self: start;
  align-self: center;
}
#w-node-_5cb07839-a6ac-05f0-c9e4-86bcdc351f90-7edc75f6 {
  align-self: center;
}
#w-node-_5cb07839-a6ac-05f0-c9e4-86bcdc351f97-7edc75f6 {
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_5cb07839-a6ac-05f0-c9e4-86bcdc351f9d-7edc75f6 {
  grid-column-end: 4;
  grid-column-start: 3;
  grid-row-end: 2;
  grid-row-start: 1;
}
#w-node-_5cb07839-a6ac-05f0-c9e4-86bcdc351fa7-7edc75f6 {
  grid-column-end: 5;
  grid-column-start: 4;
  grid-row-end: 2;
  grid-row-start: 1;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_5cb07839-a6ac-05f0-c9e4-86bcdc351fba-7edc75f6 {
  -ms-grid-column-align: start;
  justify-self: start;
  align-self: start;
}
#w-node-_34d685da-3105-54f6-e2ba-c1160ec0d029-7edc75f6 {
  -ms-grid-column-align: start;
  justify-self: start;
}
#w-node-_34d685da-3105-54f6-e2ba-c1160ec0d02c-7edc75f6 {
  -ms-grid-column-align: start;
  justify-self: start;
}
#w-node-_34d685da-3105-54f6-e2ba-c1160ec0d02f-7edc75f6 {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_34d685da-3105-54f6-e2ba-c1160ec0d034-7edc75f6 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
  align-self: center;
}
#w-node-_34d685da-3105-54f6-e2ba-c1160ec0d03a-7edc75f6 {
  -ms-grid-column-align: start;
  justify-self: start;
  align-self: center;
}
#w-node-_34d685da-3105-54f6-e2ba-c1160ec0d03d-7edc75f6 {
  align-self: center;
}
#w-node-_34d685da-3105-54f6-e2ba-c1160ec0d044-7edc75f6 {
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_34d685da-3105-54f6-e2ba-c1160ec0d04d-7edc75f6 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
  align-self: center;
}
#w-node-_34d685da-3105-54f6-e2ba-c1160ec0d053-7edc75f6 {
  -ms-grid-column-align: start;
  justify-self: start;
  align-self: center;
}
#w-node-_34d685da-3105-54f6-e2ba-c1160ec0d056-7edc75f6 {
  align-self: center;
}
#w-node-_34d685da-3105-54f6-e2ba-c1160ec0d05d-7edc75f6 {
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_34d685da-3105-54f6-e2ba-c1160ec0d063-7edc75f6 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
  align-self: center;
}
#w-node-_34d685da-3105-54f6-e2ba-c1160ec0d069-7edc75f6 {
  -ms-grid-column-align: start;
  justify-self: start;
  align-self: center;
}
#w-node-_34d685da-3105-54f6-e2ba-c1160ec0d06c-7edc75f6 {
  align-self: center;
}
#w-node-_34d685da-3105-54f6-e2ba-c1160ec0d073-7edc75f6 {
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_34d685da-3105-54f6-e2ba-c1160ec0d079-7edc75f6 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
  align-self: center;
}
#w-node-_34d685da-3105-54f6-e2ba-c1160ec0d07f-7edc75f6 {
  -ms-grid-column-align: start;
  justify-self: start;
  align-self: center;
}
#w-node-_34d685da-3105-54f6-e2ba-c1160ec0d082-7edc75f6 {
  align-self: center;
}
#w-node-_34d685da-3105-54f6-e2ba-c1160ec0d089-7edc75f6 {
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_34d685da-3105-54f6-e2ba-c1160ec0d08f-7edc75f6 {
  grid-column-end: 4;
  grid-column-start: 3;
  grid-row-end: 2;
  grid-row-start: 1;
}
#w-node-_34d685da-3105-54f6-e2ba-c1160ec0d099-7edc75f6 {
  grid-column-end: 5;
  grid-column-start: 4;
  grid-row-end: 2;
  grid-row-start: 1;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_34d685da-3105-54f6-e2ba-c1160ec0d0ac-7edc75f6 {
  -ms-grid-column-align: start;
  justify-self: start;
  align-self: start;
}
#w-node-_23746c2d-18b7-cec5-5ffa-ec13be11fab7-7edc75f6 {
  -ms-grid-column-align: start;
  justify-self: start;
}
#w-node-_23746c2d-18b7-cec5-5ffa-ec13be11faba-7edc75f6 {
  -ms-grid-column-align: start;
  justify-self: start;
}
#w-node-_23746c2d-18b7-cec5-5ffa-ec13be11fabd-7edc75f6 {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_23746c2d-18b7-cec5-5ffa-ec13be11fac2-7edc75f6 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
  align-self: center;
}
#w-node-_23746c2d-18b7-cec5-5ffa-ec13be11fac8-7edc75f6 {
  -ms-grid-column-align: start;
  justify-self: start;
  align-self: center;
}
#w-node-_23746c2d-18b7-cec5-5ffa-ec13be11facb-7edc75f6 {
  align-self: center;
}
#w-node-_23746c2d-18b7-cec5-5ffa-ec13be11fad2-7edc75f6 {
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_23746c2d-18b7-cec5-5ffa-ec13be11fadb-7edc75f6 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
  align-self: center;
}
#w-node-_23746c2d-18b7-cec5-5ffa-ec13be11fae1-7edc75f6 {
  -ms-grid-column-align: start;
  justify-self: start;
  align-self: center;
}
#w-node-_23746c2d-18b7-cec5-5ffa-ec13be11fae4-7edc75f6 {
  align-self: center;
}
#w-node-_23746c2d-18b7-cec5-5ffa-ec13be11faeb-7edc75f6 {
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_23746c2d-18b7-cec5-5ffa-ec13be11faf1-7edc75f6 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
  align-self: center;
}
#w-node-_23746c2d-18b7-cec5-5ffa-ec13be11faf7-7edc75f6 {
  -ms-grid-column-align: start;
  justify-self: start;
  align-self: center;
}
#w-node-_23746c2d-18b7-cec5-5ffa-ec13be11fafa-7edc75f6 {
  align-self: center;
}
#w-node-_23746c2d-18b7-cec5-5ffa-ec13be11fb01-7edc75f6 {
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_23746c2d-18b7-cec5-5ffa-ec13be11fb07-7edc75f6 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
  align-self: center;
}
#w-node-_23746c2d-18b7-cec5-5ffa-ec13be11fb0d-7edc75f6 {
  -ms-grid-column-align: start;
  justify-self: start;
  align-self: center;
}
#w-node-_23746c2d-18b7-cec5-5ffa-ec13be11fb10-7edc75f6 {
  align-self: center;
}
#w-node-_23746c2d-18b7-cec5-5ffa-ec13be11fb17-7edc75f6 {
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_23746c2d-18b7-cec5-5ffa-ec13be11fb1d-7edc75f6 {
  grid-column-end: 4;
  grid-column-start: 3;
  grid-row-end: 2;
  grid-row-start: 1;
}
#w-node-_23746c2d-18b7-cec5-5ffa-ec13be11fb27-7edc75f6 {
  grid-column-end: 5;
  grid-column-start: 4;
  grid-row-end: 2;
  grid-row-start: 1;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_23746c2d-18b7-cec5-5ffa-ec13be11fb3a-7edc75f6 {
  -ms-grid-column-align: start;
  justify-self: start;
  align-self: start;
}
#w-node-_2f77faf1-d3bb-5659-b381-5034a74c9f58-7edc75f6 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-c572379e-3ea1-0ede-7621-aea114afb21b-7edc75f6 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 2;
  grid-column-end: span 2;
}
#w-node-d6c15995-cb19-8456-709f-434e0e3e48c8-cc25e06e {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-a288954a-7f3c-eada-d6ee-48cbce63d62f-cc25e06e {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 2;
  grid-column-end: span 2;
}
#w-node-_662f1108-4f70-fe7e-63a0-6fb2510e1a95-cc25e06e {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 2;
  grid-column-end: span 2;
}
#w-node-_3183286a-4646-4abe-be56-88255c89fe54-cc25e06e {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 2;
  grid-column-end: span 2;
}
#w-node-_5d928c04-7325-b356-fc87-6a5b8c5c9ce7-cc25e06e {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 2;
  grid-column-end: span 2;
}
#w-node-_5d928c04-7325-b356-fc87-6a5b8c5c9ceb-cc25e06e {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 2;
  grid-column-end: span 2;
}
#w-node-_5d928c04-7325-b356-fc87-6a5b8c5c9cef-cc25e06e {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 2;
  grid-column-end: span 2;
}
#w-node-_80d257cc-9bb6-9c95-e081-fecf9ca3b68d-cc25e06e {
  align-self: center;
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 3;
  grid-column-end: span 3;
}
#w-node-_80d257cc-9bb6-9c95-e081-fecf9ca3b687-cc25e06e {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 3;
  grid-column-end: span 3;
}
#w-node-_68c0e620-593c-8dca-786a-f6ab25c7418a-cc25e06e {
  align-self: start;
}
#w-node-_6b012b39-4db7-67bb-efeb-34ef93554479-cc25e06e {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
  align-self: center;
}
#w-node-_6b012b39-4db7-67bb-efeb-34ef93554489-cc25e06e {
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_6b012b39-4db7-67bb-efeb-34ef93554492-cc25e06e {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
  align-self: center;
}
#w-node-_6b012b39-4db7-67bb-efeb-34ef935544a2-cc25e06e {
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_6b012b39-4db7-67bb-efeb-34ef935544a8-cc25e06e {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
  align-self: center;
}
#w-node-_6b012b39-4db7-67bb-efeb-34ef935544b8-cc25e06e {
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_6b012b39-4db7-67bb-efeb-34ef935544be-cc25e06e {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
  align-self: center;
}
#w-node-_6b012b39-4db7-67bb-efeb-34ef935544ce-cc25e06e {
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_6b012b39-4db7-67bb-efeb-34ef935544d4-cc25e06e {
  grid-column-end: 4;
  grid-column-start: 1;
  grid-row-end: 2;
  grid-row-start: 1;
}
#w-node-_6b012b39-4db7-67bb-efeb-34ef935544de-cc25e06e {
  grid-column-end: 5;
  grid-column-start: 4;
  grid-row-end: 2;
  grid-row-start: 1;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-e0b8af08-87f0-8302-c647-4661721db48d-721db486 {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_63ca7e9a-d1bf-d005-1fb4-3274a43f5f34-05a8f932 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 2;
  grid-column-end: span 2;
}
#w-node-_5c221780-26f8-0240-365c-17aa589b1828-05a8f932 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 2;
  grid-column-end: span 2;
}
#w-node-_1750f67e-8de9-cfcf-e96a-94433ba03776-05a8f932 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-b65dc36a-be42-4323-d781-99803274fe2f-05a8f932 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-ea30f8de-39b5-6f04-e6ff-a028ad478492-05a8f932 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 2;
  grid-column-end: span 2;
}
#w-node-e6d137ed-ba6b-d1e8-51e1-6668d244e589-d244e580 {
  -ms-grid-column-align: end;
  justify-self: end;
  align-self: center;
}
#w-node-d6c15995-cb19-8456-709f-434e0e3e48c8-a638d7b9 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-_68c0e620-593c-8dca-786a-f6ab25c7418a-a638d7b9 {
  align-self: start;
}
#w-node-_6b012b39-4db7-67bb-efeb-34ef93554479-a638d7b9 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
  align-self: center;
}
#w-node-_6b012b39-4db7-67bb-efeb-34ef93554489-a638d7b9 {
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_6b012b39-4db7-67bb-efeb-34ef93554492-a638d7b9 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
  align-self: center;
}
#w-node-_6b012b39-4db7-67bb-efeb-34ef935544a2-a638d7b9 {
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_6b012b39-4db7-67bb-efeb-34ef935544a8-a638d7b9 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
  align-self: center;
}
#w-node-_6b012b39-4db7-67bb-efeb-34ef935544b8-a638d7b9 {
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_6b012b39-4db7-67bb-efeb-34ef935544be-a638d7b9 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
  align-self: center;
}
#w-node-_6b012b39-4db7-67bb-efeb-34ef935544ce-a638d7b9 {
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_6b012b39-4db7-67bb-efeb-34ef935544d4-a638d7b9 {
  grid-column-end: 4;
  grid-column-start: 1;
  grid-row-end: 2;
  grid-row-start: 1;
}
#w-node-_6b012b39-4db7-67bb-efeb-34ef935544de-a638d7b9 {
  grid-column-end: 5;
  grid-column-start: 4;
  grid-row-end: 2;
  grid-row-start: 1;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-d6c15995-cb19-8456-709f-434e0e3e48c8-9e745546 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-_68c0e620-593c-8dca-786a-f6ab25c7418a-9e745546 {
  align-self: start;
}
#w-node-_6b012b39-4db7-67bb-efeb-34ef93554479-9e745546 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
  align-self: center;
}
#w-node-_6b012b39-4db7-67bb-efeb-34ef93554489-9e745546 {
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_6b012b39-4db7-67bb-efeb-34ef93554492-9e745546 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
  align-self: center;
}
#w-node-_6b012b39-4db7-67bb-efeb-34ef935544a2-9e745546 {
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_6b012b39-4db7-67bb-efeb-34ef935544a8-9e745546 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
  align-self: center;
}
#w-node-_6b012b39-4db7-67bb-efeb-34ef935544b8-9e745546 {
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_6b012b39-4db7-67bb-efeb-34ef935544be-9e745546 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
  align-self: center;
}
#w-node-_6b012b39-4db7-67bb-efeb-34ef935544ce-9e745546 {
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_6b012b39-4db7-67bb-efeb-34ef935544d4-9e745546 {
  grid-column-end: 4;
  grid-column-start: 1;
  grid-row-end: 2;
  grid-row-start: 1;
}
#w-node-_6b012b39-4db7-67bb-efeb-34ef935544de-9e745546 {
  grid-column-end: 5;
  grid-column-start: 4;
  grid-row-end: 2;
  grid-row-start: 1;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-d6c15995-cb19-8456-709f-434e0e3e48c8-06562eb6 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
#w-node-_68c0e620-593c-8dca-786a-f6ab25c7418a-06562eb6 {
  align-self: start;
}
#w-node-_6b012b39-4db7-67bb-efeb-34ef93554479-06562eb6 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
  align-self: center;
}
#w-node-_6b012b39-4db7-67bb-efeb-34ef93554489-06562eb6 {
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_6b012b39-4db7-67bb-efeb-34ef93554492-06562eb6 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
  align-self: center;
}
#w-node-_6b012b39-4db7-67bb-efeb-34ef935544a2-06562eb6 {
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_6b012b39-4db7-67bb-efeb-34ef935544a8-06562eb6 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
  align-self: center;
}
#w-node-_6b012b39-4db7-67bb-efeb-34ef935544b8-06562eb6 {
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_6b012b39-4db7-67bb-efeb-34ef935544be-06562eb6 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
  align-self: center;
}
#w-node-_6b012b39-4db7-67bb-efeb-34ef935544ce-06562eb6 {
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_6b012b39-4db7-67bb-efeb-34ef935544d4-06562eb6 {
  grid-column-end: 4;
  grid-column-start: 1;
  grid-row-end: 2;
  grid-row-start: 1;
}
#w-node-_6b012b39-4db7-67bb-efeb-34ef935544de-06562eb6 {
  grid-column-end: 5;
  grid-column-start: 4;
  grid-row-end: 2;
  grid-row-start: 1;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_4aad6541-177f-9cb7-6485-2a55c5a1a234-0bf8ce07 {
  align-self: center;
}
#w-node-_4aad6541-177f-9cb7-6485-2a55c5a1a236-0bf8ce07 {
  align-self: center;
}
#w-node-_86035098-4f18-a1ee-68df-86783023f62c-0bf8ce07 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 2;
  grid-column-end: span 2;
  align-self: center;
}
#w-node-_86035098-4f18-a1ee-68df-86783023f634-0bf8ce07 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 2;
  align-self: center;
}
#w-node-_86035098-4f18-a1ee-68df-86783023f634-0bf8ce07 {
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_86035098-4f18-a1ee-68df-86783023f63b-0bf8ce07 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 2;
  grid-column-end: span 2;
  align-self: center;
}
#w-node-_86035098-4f18-a1ee-68df-86783023f643-0bf8ce07 {
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_86035098-4f18-a1ee-68df-86783023f648-0bf8ce07 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 2;
  grid-column-end: span 2;
  align-self: center;
}
#w-node-_86035098-4f18-a1ee-68df-86783023f650-0bf8ce07 {
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_86035098-4f18-a1ee-68df-86783023f655-0bf8ce07 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 2;
  grid-column-end: span 2;
  align-self: center;
}
#w-node-_86035098-4f18-a1ee-68df-86783023f65d-0bf8ce07 {
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_86035098-4f18-a1ee-68df-86783023f662-0bf8ce07 {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 2;
  grid-column-end: span 2;
  align-self: center;
}
#w-node-_86035098-4f18-a1ee-68df-86783023f66a-0bf8ce07 {
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_4aad6541-177f-9cb7-6485-2a55c5a1a23a-0bf8ce07 {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_4aad6541-177f-9cb7-6485-2a55c5a1a24f-0bf8ce07 {
  align-self: center;
}
#w-node-_4aad6541-177f-9cb7-6485-2a55c5a1a347-0bf8ce07 {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_9903d3a8-d681-5c8b-5ed7-1eebce8a6835-55a7885e {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_2333ea7b-4d43-fa11-845b-3a5e199857e7-55a7885e {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 2;
  grid-column-end: span 2;
}
#w-node-a55246fe-dc76-e86d-3225-9c553ccd8607-e1eb90dc {
  align-self: center;
}
#w-node-a55246fe-dc76-e86d-3225-9c553ccd8609-e1eb90dc {
  align-self: center;
}
#w-node-a55246fe-dc76-e86d-3225-9c553ccd860d-e1eb90dc {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-a55246fe-dc76-e86d-3225-9c553ccd8622-e1eb90dc {
  align-self: center;
}
#w-node-a55246fe-dc76-e86d-3225-9c553ccd871a-e1eb90dc {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-_9903d3a8-d681-5c8b-5ed7-1eebce8a6835-e1eb90dc {
  -ms-grid-column-align: end;
  justify-self: end;
}
#w-node-d021bb36-13eb-f535-f6c0-ddfc8e45f7c6-e1eb90dc {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 2;
  grid-column-end: span 2;
}
@media screen and (max-width: 991px) {
  #w-node-_78c4b730-fb2c-7eec-2671-edc5729796e1-451f433e {
    align-self: start;
  }
  #w-node-d1e97b51-d956-96ea-ff99-ace349e50313-451f433e {
    align-self: center;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-ec8d143d-e9c3-d6ba-6e4f-7284f1169a38-451f433e {
    align-self: center;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-ec8d143d-e9c3-d6ba-6e4f-7284f1169a3b-451f433e {
    align-self: center;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_22968ea6-6e01-fbc8-3ee3-60e449655e8b-451f433e {
    align-self: center;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_22968ea6-6e01-fbc8-3ee3-60e449655e8e-451f433e {
    align-self: center;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_06d732cf-51f1-d36d-4de6-83eec06ca182-451f433e {
    align-self: center;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-bddb2692-0a33-2ab1-0755-b43167f0e90f-451f433e {
    align-self: center;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_9f36d581-8a69-7ad1-f153-d2b28723551f-451f433e {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_9f36d581-8a69-7ad1-f153-d2b287235520-451f433e {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_7c094327-db1c-9de7-1ec4-9709c9492285-451f433e {
    align-self: center;
  }
  #w-node-bcf7b860-7605-06f7-76a2-0be1e1c5dad1-e1c5da71 {
    -ms-grid-column-align: start;
    justify-self: start;
    grid-column-end: 2;
    grid-column-start: 1;
    grid-row-end: 3;
    grid-row-start: 2;
  }
  #w-node-bcf7b860-7605-06f7-76a2-0be1e1c5dae9-e1c5da71 {
    grid-column-end: 3;
    grid-column-start: 2;
    grid-row-end: 3;
    grid-row-start: 2;
    -ms-grid-column-align: start;
    justify-self: start;
  }
  #w-node-bcf7b860-7605-06f7-76a2-0be1e1c5dafe-e1c5da71 {
    grid-column-end: 4;
    grid-column-start: 3;
    grid-row-end: 3;
    grid-row-start: 2;
    -ms-grid-column-align: start;
    justify-self: start;
  }
  #w-node-_7acc6884-013d-b11b-7cd3-5aae955b9ee5-955b9ecf {
    -ms-grid-column-align: stretch;
    justify-self: stretch;
  }
  #w-node-ca6ee3e1-e51b-6434-93a4-45acb6aa3e53-b6aa3e49 {
    -ms-grid-column-align: end;
    justify-self: end;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
  }
  #w-node-_2360f72b-7d1a-edff-c338-3850c8051922-b6aa3e49 {
    -ms-grid-column-align: start;
    justify-self: start;
  }
  #w-node-_2360f72b-7d1a-edff-c338-3850c805194e-b6aa3e49 {
    -ms-grid-column-align: start;
    justify-self: start;
  }
  #w-node-ca6ee3e1-e51b-6434-93a4-45acb6aa3e9c-b6aa3e49 {
    -ms-grid-column-align: start;
    justify-self: start;
  }
  #w-node-ca6ee3e1-e51b-6434-93a4-45acb6aa3ec8-b6aa3e49 {
    -ms-grid-column-align: start;
    justify-self: start;
  }
  #w-node-a55246fe-dc76-e86d-3225-9c553ccd860d-1c7832b5 {
    -ms-grid-column-align: end;
    justify-self: end;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
  }
  #w-node-a55246fe-dc76-e86d-3225-9c553ccd8648-1c7832b5 {
    -ms-grid-column-align: start;
    justify-self: start;
  }
  #w-node-a55246fe-dc76-e86d-3225-9c553ccd8674-1c7832b5 {
    -ms-grid-column-align: start;
    justify-self: start;
  }
  #w-node-a55246fe-dc76-e86d-3225-9c553ccd86b5-1c7832b5 {
    -ms-grid-column-align: start;
    justify-self: start;
  }
  #w-node-a55246fe-dc76-e86d-3225-9c553ccd86e1-1c7832b5 {
    -ms-grid-column-align: start;
    justify-self: start;
  }
  #w-node-b3fcfa55-df6f-2254-c3b5-5618539bc591-1c7832b5 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
  }
  #w-node-b3fcfa55-df6f-2254-c3b5-5618539bc5d9-1c7832b5 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-b3fcfa55-df6f-2254-c3b5-5618539bc64f-1c7832b5 {
    -ms-grid-column-align: center;
    justify-self: center;
    align-self: center;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_78c4b730-fb2c-7eec-2671-edc5729796e1-ffe345ac {
    align-self: start;
  }
  #w-node-a523b87e-da22-232d-4846-f3ee7913d943-ffe345ac {
    align-self: center;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_06d732cf-51f1-d36d-4de6-83eec06ca182-ffe345ac {
    align-self: center;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_9f36d581-8a69-7ad1-f153-d2b28723551f-ffe345ac {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_9f36d581-8a69-7ad1-f153-d2b287235520-ffe345ac {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-d67d7417-733b-3b0c-6b96-eef09543cab4-ffe345ac {
    align-self: center;
  }
  #w-node-_78c4b730-fb2c-7eec-2671-edc5729796e1-acc4c7f9 {
    align-self: start;
  }
  #w-node-_9f36d581-8a69-7ad1-f153-d2b28723551f-acc4c7f9 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_9f36d581-8a69-7ad1-f153-d2b287235520-acc4c7f9 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_368b2102-2013-46e3-22e8-6c1da0af7afe-a0af7af9 {
    -ms-grid-column-align: end;
    justify-self: end;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
  }
  #w-node-_78c4b730-fb2c-7eec-2671-edc5729796e1-65246433 {
    align-self: start;
  }
  #w-node-_0ec768d1-c7b0-fbce-3c25-83c6e34bb59f-65246433 {
    align-self: center;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_06d732cf-51f1-d36d-4de6-83eec06ca182-65246433 {
    align-self: center;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_9f36d581-8a69-7ad1-f153-d2b28723551f-65246433 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_9f36d581-8a69-7ad1-f153-d2b287235520-65246433 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_7c094327-db1c-9de7-1ec4-9709c9492285-65246433 {
    align-self: center;
  }
  #w-node-_7075ddbf-7407-63fc-16ca-e92cc29e543d-7edc75f6 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-a288954a-7f3c-eada-d6ee-48cbce63d62f-cc25e06e {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_5d928c04-7325-b356-fc87-6a5b8c5c9cdf-cc25e06e {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_5d928c04-7325-b356-fc87-6a5b8c5c9ce3-cc25e06e {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_80d257cc-9bb6-9c95-e081-fecf9ca3b681-cc25e06e {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 3;
    grid-column-end: span 3;
  }
  #w-node-c30511b8-3a9f-6882-1224-69322903d8c9-cc25e06e {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 3;
    grid-column-end: span 3;
  }
  #w-node-e3adde62-d898-eac9-9b91-6b67946dfc12-cc25e06e {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 3;
    grid-column-end: span 3;
  }
  #w-node-_6b012b39-4db7-67bb-efeb-34ef935544d4-cc25e06e {
    grid-column-end: 3;
    grid-column-start: 1;
    grid-row-end: 2;
    grid-row-start: 1;
  }
  #w-node-_6b012b39-4db7-67bb-efeb-34ef935544de-cc25e06e {
    grid-column-end: 5;
    grid-column-start: 3;
    grid-row-end: 2;
    grid-row-start: 1;
    -ms-grid-column-align: end;
    justify-self: end;
  }
  #w-node-_6b012b39-4db7-67bb-efeb-34ef935544d4-a638d7b9 {
    grid-column-end: 3;
    grid-column-start: 1;
    grid-row-end: 2;
    grid-row-start: 1;
  }
  #w-node-_6b012b39-4db7-67bb-efeb-34ef935544de-a638d7b9 {
    grid-column-end: 5;
    grid-column-start: 3;
    grid-row-end: 2;
    grid-row-start: 1;
    -ms-grid-column-align: end;
    justify-self: end;
  }
  #w-node-_4aad6541-177f-9cb7-6485-2a55c5a1a23a-0bf8ce07 {
    -ms-grid-column-align: end;
    justify-self: end;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
  }
  #w-node-_4aad6541-177f-9cb7-6485-2a55c5a1a275-0bf8ce07 {
    -ms-grid-column-align: start;
    justify-self: start;
  }
  #w-node-_4aad6541-177f-9cb7-6485-2a55c5a1a2a1-0bf8ce07 {
    -ms-grid-column-align: start;
    justify-self: start;
  }
  #w-node-_4aad6541-177f-9cb7-6485-2a55c5a1a2e2-0bf8ce07 {
    -ms-grid-column-align: start;
    justify-self: start;
  }
  #w-node-_4aad6541-177f-9cb7-6485-2a55c5a1a30e-0bf8ce07 {
    -ms-grid-column-align: start;
    justify-self: start;
  }
  #w-node-a55246fe-dc76-e86d-3225-9c553ccd860d-e1eb90dc {
    -ms-grid-column-align: end;
    justify-self: end;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
  }
  #w-node-a55246fe-dc76-e86d-3225-9c553ccd8648-e1eb90dc {
    -ms-grid-column-align: start;
    justify-self: start;
  }
  #w-node-a55246fe-dc76-e86d-3225-9c553ccd8674-e1eb90dc {
    -ms-grid-column-align: start;
    justify-self: start;
  }
  #w-node-a55246fe-dc76-e86d-3225-9c553ccd86b5-e1eb90dc {
    -ms-grid-column-align: start;
    justify-self: start;
  }
  #w-node-a55246fe-dc76-e86d-3225-9c553ccd86e1-e1eb90dc {
    -ms-grid-column-align: start;
    justify-self: start;
  }
}
@media screen and (max-width: 767px) {
  #w-node-bcf7b860-7605-06f7-76a2-0be1e1c5da74-e1c5da71 {
    -ms-grid-column-align: center;
    justify-self: center;
  }
  #w-node-bcf7b860-7605-06f7-76a2-0be1e1c5da8e-e1c5da71 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_86035098-4f18-a1ee-68df-86783023f643-0bf8ce07 {
    justify-self: start;
  }
  #w-node-bcf7b860-7605-06f7-76a2-0be1e1c5dabf-e1c5da71 {
    -ms-grid-column-align: start;
    justify-self: start;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-bcf7b860-7605-06f7-76a2-0be1e1c5dad1-e1c5da71 {
    grid-column-start: span 2;
    grid-column-end: span 2;
    grid-row-start: span 1;
    grid-row-end: span 1;
    -ms-grid-column-align: start;
    justify-self: start;
  }
  #w-node-bcf7b860-7605-06f7-76a2-0be1e1c5dae9-e1c5da71 {
    grid-column-start: span 2;
    grid-column-end: span 2;
    grid-row-start: span 1;
    grid-row-end: span 1;
    -ms-grid-column-align: start;
    justify-self: start;
  }
  #w-node-bcf7b860-7605-06f7-76a2-0be1e1c5dafe-e1c5da71 {
    grid-column-start: span 2;
    grid-column-end: span 2;
    grid-row-start: span 1;
    grid-row-end: span 1;
    -ms-grid-column-align: start;
    justify-self: start;
  }
  #w-node-_7acc6884-013d-b11b-7cd3-5aae955b9ef5-955b9ecf {
    align-self: start;
  }
  #w-node-ca6ee3e1-e51b-6434-93a4-45acb6aa3e84-b6aa3e49 {
    grid-column-end: 2;
    grid-column-start: 1;
    grid-row-end: 3;
    grid-row-start: 2;
  }
  #w-node-a55246fe-dc76-e86d-3225-9c553ccd869d-1c7832b5 {
    grid-column-end: 2;
    grid-column-start: 1;
    grid-row-end: 3;
    grid-row-start: 2;
  }
  #w-node-b3fcfa55-df6f-2254-c3b5-5618539bc53b-1c7832b5 {
    -ms-grid-column-align: start;
    justify-self: start;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_78c4b730-fb2c-7eec-2671-edc5729796e1-3a155c7c {
    -ms-grid-column-align: start;
    justify-self: start;
  }
  #w-node-_78c4b730-fb2c-7eec-2671-edc5729796e1-41da19ed {
    -ms-grid-column-align: start;
    justify-self: start;
  }
  #w-node-a4cdc093-8886-cb17-7eab-a4c9c9b092c4-7edc75f6 {
    -ms-grid-column-align: start;
    justify-self: start;
  }
  #w-node-_7075ddbf-7407-63fc-16ca-e92cc29e543d-7edc75f6 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
  }
  #w-node-_5cb07839-a6ac-05f0-c9e4-86bcdc351f42-7edc75f6 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
    align-self: center;
  }
  #w-node-_5cb07839-a6ac-05f0-c9e4-86bcdc351fba-7edc75f6 {
    -ms-grid-column-align: start;
    justify-self: start;
    align-self: start;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_6b012b39-4db7-67bb-efeb-34ef93554479-cc25e06e {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
    align-self: center;
  }
  #w-node-_6b012b39-4db7-67bb-efeb-34ef93554479-a638d7b9 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
    align-self: center;
  }
  #w-node-_6b012b39-4db7-67bb-efeb-34ef93554479-9e745546 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
    align-self: center;
  }
  #w-node-_6b012b39-4db7-67bb-efeb-34ef93554479-06562eb6 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
    align-self: center;
  }
  #w-node-_4aad6541-177f-9cb7-6485-2a55c5a1a2ca-0bf8ce07 {
    grid-column-end: 2;
    grid-column-start: 1;
    grid-row-end: 3;
    grid-row-start: 2;
  }
  #w-node-_78c4b730-fb2c-7eec-2671-edc5729796e1-55a7885e {
    -ms-grid-column-align: start;
    justify-self: start;
  }
  #w-node-a55246fe-dc76-e86d-3225-9c553ccd869d-e1eb90dc {
    grid-column-end: 2;
    grid-column-start: 1;
    grid-row-end: 3;
    grid-row-start: 2;
  }
  #w-node-_86035098-4f18-a1ee-68df-86783023f634-0bf8ce07 {
    grid-column-start: span 2;
  }
}
@media screen and (max-width: 479px) {
  #w-node-_78c4b730-fb2c-7eec-2671-edc5729796e1-451f433e {
    align-self: start;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-d1e97b51-d956-96ea-ff99-ace349e50309-451f433e {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-ec8d143d-e9c3-d6ba-6e4f-7284f11699c0-451f433e {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-ec8d143d-e9c3-d6ba-6e4f-7284f11699e3-451f433e {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-f55d9464-8f99-b829-0150-e28f02659d6e-451f433e {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-ec8d143d-e9c3-d6ba-6e4f-7284f1169a29-451f433e {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_22968ea6-6e01-fbc8-3ee3-60e449655e5a-451f433e {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_22968ea6-6e01-fbc8-3ee3-60e449655e7c-451f433e {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-c07e7fa3-2016-5f6c-7230-43bcb8395de3-451f433e {
    -ms-grid-column-align: end;
    justify-self: end;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_3e18543a-a373-6308-f12e-f6d056722105-451f433e {
    -ms-grid-column-align: start;
    justify-self: start;
  }
  #w-node-_8a38eea9-096f-f0b7-ca7e-8d8ea3c8b30e-451f433e {
    -ms-grid-column-align: start;
    justify-self: start;
  }
  #w-node-e762c5a7-f23c-a250-a54c-eaf3f480d28f-451f433e {
    -ms-grid-column-align: start;
    justify-self: start;
  }
  #w-node-_9f36d581-8a69-7ad1-f153-d2b28723550a-451f433e {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_9f36d581-8a69-7ad1-f153-d2b287235520-451f433e {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
  }
  #w-node-defbe00c-1003-0dd6-785b-13b58fa90c91-451f433e {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-defbe00c-1003-0dd6-785b-13b58fa90c97-451f433e {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-defbe00c-1003-0dd6-785b-13b58fa90c9d-451f433e {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-defbe00c-1003-0dd6-785b-13b58fa90ca3-451f433e {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_3d0fe6a7-548c-e450-965f-1b2f44293034-451f433e {
    align-self: center;
    -ms-grid-column-align: start;
    justify-self: start;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_7c094327-db1c-9de7-1ec4-9709c9492285-451f433e {
    align-self: center;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 3;
    grid-column-end: span 3;
  }
  #w-node-bcf7b860-7605-06f7-76a2-0be1e1c5db19-e1c5da71 {
    -ms-grid-column-align: start;
    justify-self: start;
  }
  #w-node-a55246fe-dc76-e86d-3225-9c553ccd871a-1c7832b5 {
    -ms-grid-column-align: start;
    justify-self: start;
  }
  #w-node-_78c4b730-fb2c-7eec-2671-edc5729796e1-1c7832b5 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-b3fcfa55-df6f-2254-c3b5-5618539bc53b-1c7832b5 {
    -ms-grid-column-align: start;
    justify-self: start;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-b3fcfa55-df6f-2254-c3b5-5618539bc54e-1c7832b5 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-b3fcfa55-df6f-2254-c3b5-5618539bc5d9-1c7832b5 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
  }
  #w-node-b3fcfa55-df6f-2254-c3b5-5618539bc64f-1c7832b5 {
    -ms-grid-column-align: center;
    justify-self: center;
    align-self: center;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
  }
  #w-node-_78c4b730-fb2c-7eec-2671-edc5729796e1-3a155c7c {
    -ms-grid-column-align: start;
    justify-self: start;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-e2ab4093-9509-715f-91d0-a3f19aee79d0-3a155c7c {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-db64fb49-72b6-f09f-e5cd-967bdc9d90b7-3a155c7c {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-f30f9f76-1454-b29e-f60b-0bca94982d31-3a155c7c {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_73e76030-0166-f0d6-8bfb-bec9c6d57a32-3a155c7c {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_78c4b730-fb2c-7eec-2671-edc5729796e1-ffe345ac {
    align-self: start;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-cb5b780a-4cf5-41f1-4fa0-13f6b5e24a48-ffe345ac {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_7282ec65-0ec0-3ea2-29f0-db37ee23077a-ffe345ac {
    -ms-grid-column-align: center;
    justify-self: center;
    grid-row-start: span 2;
    grid-row-end: span 2;
    grid-column-start: span 1;
    grid-column-end: span 1;
    align-self: center;
  }
  #w-node-_02e652c3-4cc9-3ec3-3625-577ef8070a58-ffe345ac {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_742c4b19-ecfe-49d8-9e01-ff8478bfdf12-ffe345ac {
    -ms-grid-column-align: start;
    justify-self: start;
  }
  #w-node-_742c4b19-ecfe-49d8-9e01-ff8478bfdf17-ffe345ac {
    -ms-grid-column-align: start;
    justify-self: start;
  }
  #w-node-_9f36d581-8a69-7ad1-f153-d2b28723550a-ffe345ac {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_9f36d581-8a69-7ad1-f153-d2b287235520-ffe345ac {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
  }
  #w-node-d67d7417-733b-3b0c-6b96-eef09543caad-ffe345ac {
    align-self: center;
    -ms-grid-column-align: start;
    justify-self: start;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-d67d7417-733b-3b0c-6b96-eef09543cab4-ffe345ac {
    align-self: center;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 3;
    grid-column-end: span 3;
  }
  #w-node-_78c4b730-fb2c-7eec-2671-edc5729796e1-acc4c7f9 {
    align-self: start;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-cb5b780a-4cf5-41f1-4fa0-13f6b5e24a48-acc4c7f9 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-b23dffd8-6377-ef9e-2fd4-2f8d2c6d071e-acc4c7f9 {
    align-self: center;
    -ms-grid-column-align: center;
    justify-self: center;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_9f36d581-8a69-7ad1-f153-d2b28723550a-acc4c7f9 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_9f36d581-8a69-7ad1-f153-d2b287235520-acc4c7f9 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
  }
  #w-node-_78c4b730-fb2c-7eec-2671-edc5729796e1-41da19ed {
    -ms-grid-column-align: start;
    justify-self: start;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_3719843f-0203-204f-ef1b-b02a77ed396c-41da19ed {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
    align-self: center;
  }
  #w-node-_3719843f-0203-204f-ef1b-b02a77ed3975-41da19ed {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
    align-self: center;
  }
  #w-node-_3719843f-0203-204f-ef1b-b02a77ed3992-41da19ed {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
    align-self: center;
  }
  #w-node-_3719843f-0203-204f-ef1b-b02a77ed39ac-41da19ed {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
    align-self: center;
  }
  #w-node-_3719843f-0203-204f-ef1b-b02a77ed39c6-41da19ed {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
    align-self: center;
  }
  #w-node-_3719843f-0203-204f-ef1b-b02a77ed39d7-41da19ed {
    grid-column-end: 3;
    grid-column-start: 1;
    grid-row-end: 2;
    grid-row-start: 1;
  }
  #w-node-_3719843f-0203-204f-ef1b-b02a77ed39e8-41da19ed {
    grid-column-end: 4;
    grid-column-start: 2;
    grid-row-end: 2;
    grid-row-start: 1;
    -ms-grid-column-align: end;
    justify-self: end;
  }
  #w-node-_78c4b730-fb2c-7eec-2671-edc5729796e1-65246433 {
    align-self: start;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-e08f9762-944d-e583-659c-4211a22e9dd9-65246433 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-e08f9762-944d-e583-659c-4211a22e9de3-65246433 {
    -ms-grid-column-align: center;
    justify-self: center;
    grid-row-start: span 2;
    grid-row-end: span 2;
    grid-column-start: span 1;
    grid-column-end: span 1;
    align-self: center;
  }
  #w-node-e08f9762-944d-e583-659c-4211a22e9de5-65246433 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_9f36d581-8a69-7ad1-f153-d2b28723550a-65246433 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_9f36d581-8a69-7ad1-f153-d2b287235520-65246433 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
  }
  #w-node-_3d0fe6a7-548c-e450-965f-1b2f44293034-65246433 {
    align-self: center;
    -ms-grid-column-align: start;
    justify-self: start;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_7c094327-db1c-9de7-1ec4-9709c9492285-65246433 {
    align-self: center;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 3;
    grid-column-end: span 3;
  }
  #w-node-a4cdc093-8886-cb17-7eab-a4c9c9b092c4-7edc75f6 {
    -ms-grid-column-align: start;
    justify-self: start;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_7075ddbf-7407-63fc-16ca-e92cc29e543d-7edc75f6 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
  }
  #w-node-_5cb07839-a6ac-05f0-c9e4-86bcdc351f42-7edc75f6 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
    align-self: center;
  }
  #w-node-_5cb07839-a6ac-05f0-c9e4-86bcdc351f4b-7edc75f6 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
    align-self: center;
  }
  #w-node-_5cb07839-a6ac-05f0-c9e4-86bcdc351f5b-7edc75f6 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
    align-self: center;
  }
  #w-node-_5cb07839-a6ac-05f0-c9e4-86bcdc351f64-7edc75f6 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
    align-self: center;
  }
  #w-node-_5cb07839-a6ac-05f0-c9e4-86bcdc351f7a-7edc75f6 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
    align-self: center;
  }
  #w-node-_5cb07839-a6ac-05f0-c9e4-86bcdc351f90-7edc75f6 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
    align-self: center;
  }
  #w-node-_5cb07839-a6ac-05f0-c9e4-86bcdc351f9d-7edc75f6 {
    grid-column-start: span 1;
    grid-column-end: span 1;
    grid-row-start: span 1;
    grid-row-end: span 1;
  }
  #w-node-_5cb07839-a6ac-05f0-c9e4-86bcdc351fa7-7edc75f6 {
    grid-column-start: span 1;
    grid-column-end: span 1;
    grid-row-start: span 1;
    grid-row-end: span 1;
  }
  #w-node-_34d685da-3105-54f6-e2ba-c1160ec0d03d-7edc75f6 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
    align-self: center;
  }
  #w-node-_34d685da-3105-54f6-e2ba-c1160ec0d056-7edc75f6 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
    align-self: center;
  }
  #w-node-_34d685da-3105-54f6-e2ba-c1160ec0d06c-7edc75f6 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
    align-self: center;
  }
  #w-node-_34d685da-3105-54f6-e2ba-c1160ec0d082-7edc75f6 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
    align-self: center;
  }
  #w-node-_34d685da-3105-54f6-e2ba-c1160ec0d08f-7edc75f6 {
    grid-column-start: span 1;
    grid-column-end: span 1;
    grid-row-start: span 1;
    grid-row-end: span 1;
  }
  #w-node-_34d685da-3105-54f6-e2ba-c1160ec0d099-7edc75f6 {
    grid-column-start: span 1;
    grid-column-end: span 1;
    grid-row-start: span 1;
    grid-row-end: span 1;
  }
  #w-node-_34d685da-3105-54f6-e2ba-c1160ec0d0ac-7edc75f6 {
    -ms-grid-column-align: start;
    justify-self: start;
    align-self: start;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-_23746c2d-18b7-cec5-5ffa-ec13be11facb-7edc75f6 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
    align-self: center;
  }
  #w-node-_23746c2d-18b7-cec5-5ffa-ec13be11fae4-7edc75f6 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
    align-self: center;
  }
  #w-node-_23746c2d-18b7-cec5-5ffa-ec13be11fafa-7edc75f6 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
    align-self: center;
  }
  #w-node-_23746c2d-18b7-cec5-5ffa-ec13be11fb10-7edc75f6 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
    align-self: center;
  }
  #w-node-_23746c2d-18b7-cec5-5ffa-ec13be11fb1d-7edc75f6 {
    grid-column-start: span 1;
    grid-column-end: span 1;
    grid-row-start: span 1;
    grid-row-end: span 1;
  }
  #w-node-_23746c2d-18b7-cec5-5ffa-ec13be11fb27-7edc75f6 {
    grid-column-start: span 1;
    grid-column-end: span 1;
    grid-row-start: span 1;
    grid-row-end: span 1;
  }
  #w-node-_23746c2d-18b7-cec5-5ffa-ec13be11fb3a-7edc75f6 {
    -ms-grid-column-align: start;
    justify-self: start;
    align-self: start;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-c572379e-3ea1-0ede-7621-aea114afb21b-7edc75f6 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
  }
  #w-node-_6b012b39-4db7-67bb-efeb-34ef93554479-cc25e06e {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
    align-self: center;
  }
  #w-node-_6b012b39-4db7-67bb-efeb-34ef93554492-cc25e06e {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
    align-self: center;
  }
  #w-node-_6b012b39-4db7-67bb-efeb-34ef935544d4-cc25e06e {
    grid-column-start: span 1;
    grid-column-end: span 1;
    grid-row-start: span 1;
    grid-row-end: span 1;
  }
  #w-node-_6b012b39-4db7-67bb-efeb-34ef935544de-cc25e06e {
    grid-column-start: span 1;
    grid-column-end: span 1;
    grid-row-start: span 1;
    grid-row-end: span 1;
  }
  #w-node-e0b8af08-87f0-8302-c647-4661721db48d-721db486 {
    -ms-grid-column-align: start;
    justify-self: start;
  }
  #w-node-_1750f67e-8de9-cfcf-e96a-94433ba03776-05a8f932 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-b65dc36a-be42-4323-d781-99803274fe2f-05a8f932 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-e6d137ed-ba6b-d1e8-51e1-6668d244e589-d244e580 {
    -ms-grid-column-align: center;
    justify-self: center;
  }
  #w-node-_6b012b39-4db7-67bb-efeb-34ef93554479-a638d7b9 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
    align-self: center;
  }
  #w-node-_6b012b39-4db7-67bb-efeb-34ef93554492-a638d7b9 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
    align-self: center;
  }
  #w-node-_6b012b39-4db7-67bb-efeb-34ef935544d4-a638d7b9 {
    grid-column-start: span 1;
    grid-column-end: span 1;
    grid-row-start: span 1;
    grid-row-end: span 1;
  }
  #w-node-_6b012b39-4db7-67bb-efeb-34ef935544de-a638d7b9 {
    grid-column-start: span 1;
    grid-column-end: span 1;
    grid-row-start: span 1;
    grid-row-end: span 1;
  }
  #w-node-a288954a-7f3c-eada-d6ee-48cbce63d61e-9e745546 {
    align-self: center;
  }
  #w-node-_6b012b39-4db7-67bb-efeb-34ef93554479-9e745546 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
    align-self: center;
  }
  #w-node-_6b012b39-4db7-67bb-efeb-34ef93554492-9e745546 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
    align-self: center;
  }
  #w-node-_6b012b39-4db7-67bb-efeb-34ef935544d4-9e745546 {
    grid-column-start: span 1;
    grid-column-end: span 1;
    grid-row-start: span 1;
    grid-row-end: span 1;
  }
  #w-node-_6b012b39-4db7-67bb-efeb-34ef935544de-9e745546 {
    grid-column-start: span 1;
    grid-column-end: span 1;
    grid-row-start: span 1;
    grid-row-end: span 1;
  }
  #w-node-_6b012b39-4db7-67bb-efeb-34ef93554479-06562eb6 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
    align-self: center;
  }
  #w-node-_6b012b39-4db7-67bb-efeb-34ef93554492-06562eb6 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
    align-self: center;
  }
  #w-node-_6b012b39-4db7-67bb-efeb-34ef935544d4-06562eb6 {
    grid-column-start: span 1;
    grid-column-end: span 1;
    grid-row-start: span 1;
    grid-row-end: span 1;
  }
  #w-node-_6b012b39-4db7-67bb-efeb-34ef935544de-06562eb6 {
    grid-column-start: span 1;
    grid-column-end: span 1;
    grid-row-start: span 1;
    grid-row-end: span 1;
  }
  #w-node-_4aad6541-177f-9cb7-6485-2a55c5a1a347-0bf8ce07 {
    -ms-grid-column-align: start;
    justify-self: start;
  }
  #w-node-_78c4b730-fb2c-7eec-2671-edc5729796e1-55a7885e {
    -ms-grid-column-align: start;
    justify-self: start;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  #w-node-a55246fe-dc76-e86d-3225-9c553ccd871a-e1eb90dc {
    -ms-grid-column-align: start;
    justify-self: start;
  }
  #w-node-_78c4b730-fb2c-7eec-2671-edc5729796e1-e1eb90dc {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
}

.d-grid {
  display: grid;
}
.d-none {
  display: none!important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-inline-xs-none {
  display: inline!important;
}
.d-xs-none,
.d-sm-none {
  display: block!important;
}
.d-inline-block-xs-none {
  display: inline-block !important;
}
.d-flex-sm-block {
  display: flex;
}
.d-xs-flex,
.d-xs-block,
.d-xs-inline,
.d-sm-block {
  display: none!important;
}
.d-sm-grid {
  display: grid!important;
}
@media screen and (max-width: 767px) {
  .d-sm-block {
    display: block !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .d-sm-grid {
    display: none !important;
  }
  .d-flex-sm-block {
    display: block;
  }
  .mb-xs-10 {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 479px) {
  .nav-link-title.white {
    color: #0c0f21;
  }
  .d-inline-block-xs-none,
  .d-inline-xs-none,
  .d-xs-none {
    display: none!important;
  }
  .d-xs-inline-block {
    display: inline-block !important;
  }
  .d-xs-inline {
    display: inline!important;
  }
  .d-xs-block {
    display: block!important;
  }
  .d-xs-flex {
    display: flex!important;
  }
  .flex-column-xs {
    flex-direction: column;
  }
}
.two-grid-menu-block .menu-title {
  text-decoration: none;
}
.category-block-wrapper {
  padding-bottom: 100px;
}
.category-block-wrapper.has-options {
  /*padding-bottom: 128px;*/
  padding-bottom: 142px;
}
.category-block-wrapper.has-sale {
  padding-bottom: 107px;
}
.category-block-wrapper.has-sale.has-options {
  /*padding-bottom: 135px;*/
  padding-bottom: 149px;
}
.category-block .prijs-block {
  position: absolute;
  bottom: 0;
  left: 14px;
  margin-bottom: 14px;
  right: 14px;
  white-space: nowrap;
}
.filter-dropdown.filter-dropdown-toggle {
  padding-right: 16px;
  background-color: transparent;
}
#pre-loader,
.pre-loader {
  white-space: nowrap;
  padding-top: 100px;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 998;
  background: rgba(255, 255, 255, 0.6);
  left: 0;
  top: 0;
}
#productList {
  position: relative;
}
.w-icon-dropdown-toggle.inline {
  position: relative;
  display: inline-block;
}
.w-icon-dropdown-toggle.reverse {
  transform: rotate(-180deg);
}
input.placeholder-tekst {
  display: flex;
  width: 100%;
  min-height: 35px;
  padding: 0px 12px 0 16px;
  justify-content: flex-start;
  align-items: center;
  border-style: solid;
  border-width: 1px;
  border-color: #d8d8d8;
  border-radius: 2px;
  line-height: 30px;
  background-color: #fff;
  font-size: 16px;
  color: inherit;
}
textarea.placeholder-tekst {
  display: flex;
  width: 100%;
  min-height: 84px;
  padding: 0px 12px 0px 16px;
  justify-content: flex-start;
  align-items: center;
  border-style: solid;
  border-width: 1px;
  border-color: #d8d8d8;
  border-radius: 2px;
  line-height: 30px;
}
input.input-number__input.placeholder-tekst {
  padding: 0 10px;
  text-align: center;
  min-width: 60px;
}
.m2-form {
  padding: 0;
  border: 0;
  width: auto;
}
.m2-form-variable .right-m2-block {
  position: initial;
  white-space: nowrap;
  left: auto;
  right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  background-color: #d8d8d8;
  padding: 0 10px;
  min-width: 40px;
}
.right-m2-block .placeholder-tekst-dark {
  padding: 0 10px;
}
.m2-form-variable .plus.aantal {
  right: 0;
}
/*.winkelwagen-grid-wrapper */
.m2-form-variable .m2-form input.placeholder-tekst {
  padding: 0;
  /*min-width: 110px;*/
}
:focus-visible {
  outline: none;
}
.mini-heading-winkelwagen {
  display: flex;
  justify-content: space-between;
}
.position-relative {
  position: relative;
}
[data-paginate],
.cursor-pointer {
  cursor: pointer;
}
.input-number__add,
.input-number__sub {
  cursor: pointer;
  width: 27px;
  justify-content: center;
}
.input-number__sub {
  margin-left: 0;
}
.text-lowercase {
  text-transform: lowercase;
}
.full-buttons {
  display: flex;
  justify-content: space-between;
}
.full-buttons > * {
  width: 100%;
}
.input-number-small .aantal-right-block {
  width: 50px;
}
/*.input-number-small .plus.aantal{*/
/*    right: 50px;*/
/*}*/
/*Combideal switch*/
.switch-combi {
  position: relative;
  display: inline-block;
  min-width: 50px;
  height: 24px;
  margin-bottom: 0;
  margin-right: 5px;
}
/* Hide default HTML checkbox */
.switch-combi input {
  opacity: 0;
  width: 0;
  height: 0;
}
/* The slider */
.switch-combi .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ff9c1e;
  transition: .4s;
  line-height: 24px;
}
.switch-combi.layingservice .slider {
  background-color: #e0e0e0;
}
.switch-combi .slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
}
.switch-combi input:checked + .slider {
  background-color: #a3a3a3 ;
}
.switch-combi.layingservice input:checked + .slider {
  background-color: #1cb87e;
}
.switch-combi input:focus + .slider {
  box-shadow: 0 0 1px #a3a3a3 ;
}
.switch-combi.layingservice input:focus + .slider {
  box-shadow: 0 0 1px #1cb87e ;
}
.switch-combi input:checked + .slider:before {
  transform: translateX(26px);
}
.switch-combi input + .slider::after {
  content: 'Nee';
  color: #ffffff;
  font-size: 11px;
  margin-left: 25px;
}
.switch-combi input:checked + .slider::after {
  content: 'Ja';
  margin-left: 10px;
}
/* Rounded sliders */
.switch-combi .slider.round {
  border-radius: 24px;
}
.switch-combi .slider.round:before {
  border-radius: 50%;
}
.d-flex {
  display: flex;
}
.d-inline-flex {
  display: inline-flex;
}
.align-items-center {
  align-items: center;
}
.align-items-end {
  align-items: end;
}
.justify-content-between {
  justify-content: space-between;
}
.overzicht-grid {
  align-items: center;
}
.m2-form input.placeholder-tekst {
  /*padding: 0 91px 0 27px;*/
  text-align: center;
}
/*.winkelwagen-grid-wrapper .m2-form input.placeholder-tekst{*/
/*padding: 0 67px 0 27px;*/
/*text-align: center;*/
/*}*/
/*.m2-form.input-number-small input.placeholder-tekst{*/
/*padding: 0 77px 0 27px;*/
/*text-align: center;*/
/*}*/
.search-grid-wrapper {
  display: block;
}
.search-results {
  padding-top: 8px;
  padding-bottom: 8px;
}
.search-results .search-grid-wrapper:last-of-type {
  border-bottom: 0px;
}
a.search-grid-wrapper:link,
a.search-grid-wrapper:visited {
  text-decoration: none;
  color: #001427;
}
.email-grid {
  grid-template-columns: 0.5fr 1fr 0.5fr;
}
.select-country {
  font-size: 16px;
  padding-left: 13px;
}
.w-100 {
  width: 100%!important;
}
.w-auto {
  width: auto!important;
}
.editFakeInput {
  float: right;
  color: #0a53be;
  font-size: 15px;
  cursor: pointer;
}
.afrekenen {
  position: relative;
}
.mb-0,
.my-0 {
  margin-bottom: 0!important;
}
.mt-0,
.my-0 {
  margin-top: 0!important;
}
.pb-0,
.py-0 {
  padding-bottom: 0!important;
}
.pt-0,
.py-0 {
  padding-top: 0!important;
}
.ml-auto {
  margin-left: auto!important;
}
.ml-0,
.mx-0 {
  margin-left: 0!important;
}
.mr-0,
.mx-0 {
  margin-right: 0!important;
}
.mb-9 {
  margin-bottom: 9px!important;
}
.mt-3 {
  margin-top: 3px!important;
}
.mt-6 {
  margin-top: 6px!important;
}
.mt-5 {
  margin-top: 5px!important;
}
.mb-5 {
  margin-bottom: 5px!important;
}
.pb-5 {
  padding-bottom: 5px!important;
}
.mb-5,
.my-5 {
  margin-bottom: 5px;
}
.mt-5,
.my-5 {
  margin-top: 5px;
}
.mr-5,
.mx-5 {
  margin-right: 5px;
}
.ml-5,
.mx-5 {
  margin-left: 5px;
}
.mb-10,
.my-10 {
  margin-bottom: 10px!important;
}
.mt-10,
.my-10 {
  margin-top: 10px!important;
}
.mr-10,
.mx-10 {
  margin-right: 10px!important;
}
.ml-10,
.mx-10 {
  margin-left: 10px!important;
}
.mb-15,
.my-15 {
  margin-bottom: 15px!important;
}
.mt-15,
.my-15 {
  margin-top: 15px!important;
}
.mr-15,
.mx-15 {
  margin-right: 15px!important;
}
.ml-15,
.mx-15 {
  margin-left: 15px!important;
}
.pr-30 {
  padding-right: 30px;
}
.error-text-kortingscode {
  font-weight: bold;
}
.section-shop-look {
  position: relative;
  padding: 45px 18px;
  background-color: #f7f7f7;
  background-image: url('/webshop/images/shop-de-look.jpg');
  background-position: right;
  object-fit: cover;
  /*background-size: auto, 1060px;*/
  /*background-repeat: repeat, no-repeat;*/
}
.shop-de-look-image-wrapper {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
  border: 0;
  background-position: center;
  background-size: cover;
}
.shop-de-look-image-wrapper.large {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 2;
  grid-column-end: span 2;
}
.shop-de-look-text-wrapper {
  align-items: start;
  display: flex;
  flex-direction: column;
  text-align: left;
  justify-content: center;
  padding: 0 10px;
}
.shop-de-look-circle-wrapper {
  position: absolute;
  left: 50%;
  top: auto;
  bottom: 14%;
  transform: translateX(-50%);
}
.shop-de-look-circle {
  width: 22px;
  height: 22px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 100%;
  background-color: #fff;
}
.shop-de-look-mini {
  height: auto;
}
.shop-de-look-item-wrap {
  margin-bottom: 20px;
  padding: 20px;
}
.sdl-heading {
  margin-bottom: 0;
}
.shop-de-look-item-wrap .prijs-m2-first-small.no-offer {
  font-size: 16px;
}
/*
// .nouislider
*/
/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  touch-action: none;
  user-select: none;
  box-sizing: border-box;
}
.noUi-target {
  position: relative;
}
.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}
.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}
.noUi-connect {
  height: 100%;
  width: 100%;
}
.noUi-origin {
  height: 10%;
  width: 10%;
}
/* Offset direction
 */
html:not([dir="rtl"]) .noUi-horizontal .noUi-origin {
  left: auto;
  right: 0;
}
/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  width: 0;
}
.noUi-horizontal .noUi-origin {
  height: 0;
}
.noUi-handle {
  backface-visibility: hidden;
  position: absolute;
}
.noUi-touch-area {
  height: 100%;
  width: 100%;
}
.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  transition: transform 0.3s;
}
.noUi-state-drag * {
  cursor: inherit !important;
}
/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 18px;
}
.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  left: -17px;
  top: -6px;
}
.noUi-vertical {
  width: 18px;
}
.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  left: -6px;
  top: -17px;
}
.noUi-target {
  height: 16px;
}
.noUi-base {
  padding-top: 5px;
}
.noUi-connects {
  background: #e0e0e0;
  border-radius: 3px;
  height: 4px;
}
.noUi-connect {
  border-radius: 2px;
  background: #001427;
}
.noUi-horizontal .noUi-handle {
  cursor: ew-resize;
  width: 12px;
  height: 12px;
  border-style: solid;
  border-width: 1px;
  border-color: #f4f4f4;
  border-radius: 100%;
  background: #001427;
  box-shadow: 0 0 0 0 rgba(204, 51, 51, 0);
  transition: box-shadow 0.2s;
}
/*.noUi-horizontal .noUi-handle:after {*/
/*    top: 0;*/
/*    display: block;*/
/*    content: '';*/
/*    position: absolute;*/
/*    width: 6px;*/
/*    height: 6px;*/
/*    margin: 5px;*/
/*    border-radius: 3px;*/
/*    background: #fff;*/
/*    -webkit-transition: -webkit-transform .2s;*/
/*    transition: -webkit-transform .2s;*/
/*    transition: transform .2s;*/
/*    transition: transform .2s, -webkit-transform .2s;*/
/*}*/
/*.noUi-horizontal .noUi-handle:focus {*/
/*    outline: none;*/
/*    -webkit-box-shadow: 0 0 0 3px rgba(204, 51, 51, 0.3);*/
/*    box-shadow: 0 0 0 3px rgba(204, 51, 51, 0.3);*/
/*}*/
.noUi-horizontal .noUi-handle:focus:after {
  transform: scale(0);
}
.noUi-horizontal .noUi-handle {
  top: 1px;
}
.noUi-horizontal .noUi-handle {
  left: auto;
  right: -8px;
}
.prependInput {
  position: absolute;
  top: 0%;
  right: auto;
  bottom: 0%;
  display: flex;
  height: 42px;
  margin-left: 10px;
  align-items: center;
  z-index: 10;
  font-size: 14px;
  color: #001427;
}
a .mini-heading {
  color: black;
  text-decoration: none;
}
/*.filter-dropdown-list.w--open{*/
/*    padding: 10px 0;*/
/*}*/
.filter-dropdown-list .filter-dropdown-link {
  padding: 5px 20px 5px 20px;
}
.filter-dropdown-list .filter-dropdown-link._2 {
  padding-left: 20px;
}
.hero-slide-image.right {
  object-position: right;
  -o-object-position: right;
}
.hero-slide-image.left {
  object-position: left;
  -o-object-position: left;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
.min.input-number__sub,
.plus.input-number__add {
  background-color: #d8d8d8;
}
.small-woodstep-slide {
  width: 20%;
}
.product-gallery {
  min-width: 100%;
}
.cart-table__remove {
  font-size: 13px;
  font-weight: 300;
  color: #981915;
}
.winkelwagen-grid-wrapper.removed > * {
  opacity: 10%;
}
.winkelwagen-grid-wrapper {
  position: relative;
}
.removeCombidealError {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 0;
  bottom: 0;
  background-color: transparent;
  opacity: 100%!important;
}
.removeCombidealError .message {
  width: 100%;
  background-color: rgba(255, 245, 104, 0.5);
  padding: 8px 10px;
  text-align: center;
  opacity: 100%!important;
  margin-bottom: 10px;
}
.removeCombidealError .buttons {
  text-align: center;
  cursor: pointer;
}
.removeCombidealError .menu-text {
  color: #ff9c1e;
  margin-left: 10px;
}
.winkelwagen-select-block .error-text {
  margin-top: 0;
  border-radius: 2px;
  color: #d83636;
  padding: 0;
  background: none;
  font-weight: normal;
  text-align: center;
}
.odd-icon.cart-icon {
  width: 21px;
}
.odd-icon.arrow-icon {
  width: 19px;
}
button .odd-icon.cart-icon {
  margin-left: 0;
  margin-right: 7px;
}
.odd-icon.info-icon {
  width: 16px;
}
.green-block-show .productTotalPrice {
  padding-right: 6px;
}
.footer-title {
  display: block;
  text-decoration: none;
}
.winkelwagen-grid .login-block {
  position: relative;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.search-results {
  display: none;
}
.search--suggestions-open .search-results {
  display: block;
}
.double-column {
  align-self: stretch;
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 2;
  grid-column-end: span 2;
}
.double-column-lg {
  align-self: stretch;
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 2;
  grid-column-end: span 2;
}
.triple-column {
  align-self: stretch;
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 3;
  grid-column-end: span 3;
}
.icon-button-green {
  display: flex;
  min-height: 43px;
  margin-left: 0px;
  padding: 6px 12px;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  background-color: #00b97c;
  text-decoration: none;
}
.icon-button-green:hover {
  background-color: #00b97c;
}
.text-decoration-none {
  text-decoration: none;
}
.filter-dropdown-link-cat {
  font-size: 15px;
  padding: 5px 0;
}
@keyframes pulse {
  0% {
    background-color: #e5ffde;
  }
  25% {
    background-color: #e5ffde;
  }
  100% {
    background-color: #ffffff;
  }
}
.product-row.pulse {
  background-color: #ffffff;
  animation-name: pulse;
  animation-duration: 3s;
  animation-iteration-count: 1;
}
.font-weight-500 {
  font-weight: 500!important;
}
.font-weight-400 {
  font-weight: 400!important;
}
/*Filter dropdown*/
.filter-dropdown {
  display: inline-block;
  position: relative;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  z-index: 900;
}
.filter-dropdown-btn,
.filter-dropdown-toggle,
.filter-dropdown-link {
  position: relative;
  vertical-align: top;
  text-decoration: none;
  color: #222222;
  padding: 20px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
}
.filter-dropdown-toggle {
  -webkit-user-select: none;
  user-select: none;
  display: inline-block;
  cursor: pointer;
  padding-right: 40px;
}
.filter-dropdown-toggle:focus {
  outline: 0;
}
.filter-dropdown-list {
  position: absolute;
  background: #dddddd;
  display: none;
  min-width: 100%;
}
.filter-dropdown-list.w--open {
  display: block;
}
.filter-dropdown-link {
  padding: 10px 20px;
  display: block;
  color: #222222;
}
.filter-dropdown-link.w--current {
  color: #0082f3;
}
.filter-dropdown-link:focus {
  outline: 0;
}
.large-dropdown-list {
  position: absolute;
  background: #dddddd;
  display: none;
  min-width: 100%;
}
.omschrijving-block .large-dropdown-list {
  position: relative;
  background: #f7f7f7;
  height: 80px;
  display: block;
  min-width: 100%;
  overflow: hidden;
}
.omschrijving-block .large-dropdown-list:after {
  content: '';
  background: linear-gradient(0deg, white 0%, transparent 30%, transparent 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 132;
  top: 0;
}
.omschrijving-block .large-dropdown-list.w--open {
  position: relative;
  height: auto;
}
.omschrijving-block .large-dropdown-list.w--open:after {
  content: none;
}
.large-dropdown-list.w--open {
  display: block;
}
.large-dropdown-toggle {
  position: relative;
  vertical-align: top;
  text-decoration: none;
  color: #222222;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
}
.large-dropdown-toggle {
  -webkit-user-select: none;
  user-select: none;
  display: inline-block;
  cursor: pointer;
  padding-right: 40px;
}
.large-dropdown-toggle:focus {
  outline: 0;
}
@media screen and (max-width: 768px) {
  .show-search-mobile {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    top: 64px;
    padding: 0px 16px 11px 16px;
    z-index: 1001;
    background: #001427;
    display: block!important;
  }
  .search-results {
    max-height: calc(90vh - 108px);
    overflow: auto;
  }
  #w-node-_86035098-4f18-a1ee-68df-86783023f634-0bf8ce07 {
    justify-self: start;
    -ms-grid-column-align: start;
  }
  .winkelwagen-block-grid {
    grid-template-columns: 4fr 2fr;
  }
  .email-grid {
    grid-template-columns: 1fr;
  }
}
.remove-cart-mobile {
  display: none;
}
@media screen and (max-width: 479px) {
  .w-nav-overlay {
    height: calc(100vh - 116px) !important;
    overflow: auto;
  }
  .winkelwagen-left-block .mini-heading {
    padding-right: 20px;
  }
  .input-number__add,
  .input-number__sub {
    width: 28px;
  }
  .m2-form input.placeholder-tekst {
    padding: 0px 99px 0 34px;
    text-align: center;
  }
  .product__quantity .correct-icon-afrekenen {
    right: 45px;
  }
}
.small-menu-heading {
  padding: 2px 0;
}
.small-menu-heading a {
  color: #000000;
  text-decoration: none;
  font-size: 15px;
}
.cancel-search,
.filter-sluiten,
.show-filtered {
  display: none;
}
.grid-vragen {
  margin-top: -28px;
  grid-template-columns: 0.5fr 1fr;
  grid-template-rows: auto;
}
.left-mini-klantenservice {
  position: relative;
  margin-top: 0px;
  padding: 18px;
  border-radius: 3px;
  background-color: #fff;
  box-shadow: 7px 7px 20px -20px rgba(0, 0, 0, 0.29);
}
.dropdown-klantenservice {
  display: block;
}
.dropdown-toggle-klantenservice {
  width: 100%;
  padding-left: 58px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-family: Poppins, sans-serif;
  font-weight: 600;
}
.dropdown-toggle-klantenservice.final {
  border-bottom-style: none;
}
.icon-wrapper-klantenservice-mini {
  position: absolute;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: 0%;
  display: flex;
  width: 45px;
  height: 45px;
  margin-top: 7px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding: 10px;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  background-color: rgba(152, 28, 31, 0.07);
  text-align: center;
}
.usp-icon {
  width: 35px;
  height: 35px;
  object-fit: fill;
}
#w-node-_6e9a4e63-bedc-3e66-94f5-8713244c2f2c-acdc9d04 {
  align-self: start;
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  grid-column-end: span 1;
}
.klantenservice-block {
  position: relative;
  padding: 24px 20px;
  border-radius: 3px;
  background-color: #fff;
  box-shadow: 7px 7px 20px -20px rgba(0, 0, 0, 0.29);
}
.klantenservice-block.antwoord {
  padding-right: 32px;
  padding-left: 32px;
}
.klantenservice-block.antwoord h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}
.dropdown-av {
  width: 100%;
  padding-top: 4px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.dropdown-av.final {
  border-bottom-style: none;
}
.dropdown-av-toggle {
  width: 100%;
  padding: 10px 0px;
  position: relative;
}
.dropdown-icon {
  margin-right: 0px;
}
.dropdown-heading {
  font-family: Karla, sans-serif;
  font-size: 18px;
  font-weight: 600;
}
.category-hero-new {
  position: relative;
}
.category-hero-new.faq .category-image {
  object-position: 63% 22%;
  border-bottom: 0;
}
.category-image-overlay-new {
  position: relative;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  width: 100%;
  height: 100%;
  padding: 77px 10px;
  background: rgba(0, 0, 0, 0.45);
  /*background-color: rgba(14, 19, 27, 0);*/
  /*background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.21)), color-stop(55%, rgba(19, 19, 19, 0.07)), to(transparent));*/
  /*background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.21), rgba(19, 19, 19, 0.07) 55%, transparent);*/
}
.category-hero-new.faq .category-image-overlay-new._2 {
  padding-top: 56px;
}
.category-hero-new.faq .category-image {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.category-hero-new.faq .breadcrumb-wrapper {
  position: relative;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: 10;
  margin-right: 6px;
  margin-bottom: 10px;
  text-align: left;
}
.category-hero-new.faq .breadcrumb-text {
  color: #ffffff;
  opacity: 1;
  filter: none;
}
.category-hero-new.faq .breadcrumb-link {
  margin-right: 6px;
  color: #fff;
  text-decoration: none;
  opacity: 1;
  filter: none;
}
.category-hero-new.faq .breadcrumb-link.w--current {
  text-decoration: underline;
}
.category-hero-new.faq .breadcrumb-home-icon {
  position: relative;
  top: 1px;
  width: 14px;
  opacity: 1;
  filter: none;
}
.category-hero-new.faq .breadcrumb-arrow {
  height: 7px;
  margin-top: 4px;
  margin-right: 6px;
  opacity: 1;
  filter: none;
}
.category-hero-new.faq .subpage-title {
  margin-top: 0px;
  margin-bottom: 0px;
  font-family: Poppins, sans-serif;
  color: #fff;
  font-size: 42px;
  line-height: 58px;
  font-weight: 700;
}
.dropdown-list-av.w--open {
  position: relative;
  background-color: transparent;
}
.terug-small {
  display: inline-block;
  color: #001427;
}
.arrow-rotated {
  position: relative;
  top: 0px;
  width: 8px;
  transform: rotate(-180deg);
}
.offerte-aanpassen-mini {
  position: relative;
  top: 1px;
  display: inline-block;
  margin-left: 5px;
  font-size: 12px;
  cursor: pointer;
}
.whatsappButton,
.whatsappButton:hover {
  background: #ffffff!important;
  border: 2px solid #00b97c!important;
  color: #00b97c;
  box-shadow: none;
  padding: 8px 16px 7px;
  align-self: center;
}
.whatsappButton .top-bar-link-icon {
  margin-bottom: 1px;
}
.whatsappButton-wrap {
  justify-self: end;
}
@media screen and (max-width: 768px) {
  .whatsappButton-wrap {
    justify-self: center;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .remove-cart-mobile {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
  }
}
.flex-gap-10 {
  gap: 10px;
}
.row-gap-10 {
  row-gap: 10px;
}
@media screen and (max-width: 991px) {
  .grid-vragen {
    grid-template-columns: 1fr;
  }
  .left-mini-klantenservice {
    margin-top: 0px;
  }
  .icon-wrapper-klantenservice-mini {
    margin-right: 20px;
  }
  #w-node-_6e9a4e63-bedc-3e66-94f5-8713244c2f2c-acdc9d04 {
    align-self: start;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
  }
  #w-node-_6e9a4e63-bedc-3e66-94f5-8713244c2f2c-acdc9d04 {
    grid-column-end: 2;
    grid-column-start: 1;
    grid-row-end: 2;
    grid-row-start: 1;
  }
  .category-hero-new.faq .category-image-overlay-new {
    height: 100%;
  }
  .category-hero-new.faq .breadcrumb-wrapper {
    position: relative;
    margin-right: 0px;
    margin-bottom: 9px;
    text-align: center;
  }
  .category-hero-new.faq {
    text-align: center;
  }
  ._2-col-grid.advies {
    grid-template-columns: 0.5fr 0.5fr;
  }
  .large-grid-products._2 {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 10px;
    margin-top: 10px;
  }
  .double-column-lg {
    align-self: stretch;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 1;
    grid-column-end: span 1;
  }
  .order-lg-1 {
    order: 1!important;
  }
  .order-lg-2 {
    order: 2!important;
  }
  .order-lg-3 {
    order: 3!important;
  }
  .product-page .filter-dropdown {
    padding-bottom: 10px;
  }
}
.confirm-search {
  display: none;
}
@media screen and (max-width: 767px) {
  .veelgestelde-vragen-main-grid .faq-main-item-wrapper {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 5;
    grid-column-end: span 5;
  }
  .cancel-search {
    display: block;
    /*position: absolute;*/
    /*top: 10px;*/
    /*right: 0px;*/
    /*z-index: 901;*/
    color: white;
    font-weight: bold;
  }
  .confirm-search {
    background: #142638;
    padding: 0px 13px;
    height: 40px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    border-radius: 0 2px 2px 0;
  }
  .search-bar {
    border-radius: 2px 0 0 2px;
  }
  .search__form {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    /*padding-right: 80px;*/
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /*width: 80%;*/
    bottom: auto;
    z-index: 10000;
    height: 100%;
    overflow: auto;
  }
  .mobilemenu .filter-sluiten,
  .mobile-menu .filter-sluiten {
    display: block;
  }
  .mobile-menu .pre-loader img {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .mobile-menu #pre-loader {
    position: fixed;
  }
  .mobile-menu .show-filtered {
    display: block;
    padding: 10px 20px;
  }
  .grid-vragen {
    margin-top: 0px;
  }
  #w-node-_6e9a4e63-bedc-3e66-94f5-8713244c2f2c-acdc9d04 {
    grid-row-start: 1;
    grid-row-end: 2;
    grid-column-start: 1;
    grid-column-end: 4;
    align-self: start;
  }
  .category-hero-new.faq .category-image-overlay-new {
    padding-top: 46px;
    padding-bottom: 47px;
  }
  .category-hero-new.faq .breadcrumb-wrapper {
    display: none;
  }
  .category-hero-new.faq .subpage-title {
    font-size: 30px;
  }
  #w-node-aa76326e-26bb-2485-2a41-193dd390c27b-acdc9d04 {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 3;
    grid-column-end: span 3;
    align-self: stretch;
  }
  .shop-de-look-image-wrapper {
    height: 220px;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  ._2-col-grid.advies {
    justify-items: center;
    grid-template-columns: 1fr;
    text-align: center;
  }
  /*.format-select{*/
  /*    margin-bottom: 10px;*/
  /*}*/
  [data-nav-menu-open] {
    display: none!important;
  }
}
@media screen and (max-width: 525px) {
  .veelgestelde-vragen-main-grid .faq-main-item-wrapper {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 5;
    grid-column-end: span 5;
  }
}
@media screen and (max-width: 479px) {
  .grid-vragen {
    margin-top: 0px;
  }
  .left-mini-klantenservice {
    padding-right: 20px;
    padding-left: 20px;
  }
  .category-hero-new.faq #w-node-_6e9a4e63-bedc-3e66-94f5-8713244c2f2c-acdc9d04 {
    align-self: start;
  }
  .category-hero-new.faq .klantenservice-block {
    padding-right: 20px;
    padding-left: 20px;
  }
  .category-hero-new.faq .subpage-title {
    font-size: 23px;
    line-height: 34px;
  }
}
.overflow-x-hidden {
  overflow-x: hidden;
  height: 100%;
}
.group-carousel.owl-carousel .owl-item img {
  width: auto;
}
.group-carousel.owl-carousel .owl-item img.odd-icon-alt {
  width: 14px!important;
}
.group-carousel .owl-stage,
.related-products .owl-stage {
  display: flex;
}
.related-products .owl-stage .category-block,
.group-carousel .owl-stage .popup-slide-link-block {
  height: 100%;
}
.group-carousel.owl-carousel {
  position: inherit;
}
.seo-description h1,
.seo-description h2,
.seo-description h3,
.seo-description h4,
.seo-description h5,
.seo-description h6 {
  margin-top: 0px;
  font-family: Poppins, sans-serif;
  color: #001427;
  font-weight: 600;
}
.popup-slider-wrapper {
  position: relative;
}
@media screen and (max-width: 768px) {
  .popup-slider-wrapper {
    margin-top: 50px;
  }
  .dropdown-menu-link-block.highlight {
    height: auto;
    padding-top: 13px;
    padding-bottom: 13px;
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
}
@media screen and (min-width: 768px) {
  .popup-slider-wrapper {
    padding: 0 53px;
  }
  .grid-template-combideal {
    grid-template-areas: "image title" "image form" "usps form";
  }
  .grid-template-product {
    grid-template-areas: "image title" "image form" "image empty";
  }
  .grid-product-image {
    grid-area: image;
  }
  .grid-product-title {
    grid-area: title;
  }
  .grid-product-form {
    grid-area: form;
  }
  .grid-product-usps {
    grid-area: usps;
  }
}
.combideal-steps__item-container {
  display: none;
}
.combideal-steps__item--active .combideal-steps__item-container {
  display: flex;
  text-align: left;
}
.combideal-steps__item--active .combideal-steps__item-container.block {
  display: block;
}
.faq-grid .right-menu-link-block-showroom {
  position: relative;
  display: flex;
  padding: 11px 25px 11px 85px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-style: none;
  border-width: 1px;
  border-color: rgba(155, 155, 155, 0.28);
  border-radius: 2px;
  background-color: #fff;
  color: #1f1f1f;
  text-align: left;
  text-decoration: none;
}
.faq-grid .icon-wrapper-klantenservice.odd {
  position: absolute;
  left: 0%;
  top: 50%;
  transform: translateY(-50%);
  right: auto;
  bottom: auto;
  display: flex;
  width: 45px;
  height: 45px;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 20px;
  text-align: left;
}
.no-link {
  color: inherit;
  text-decoration: none;
}
.dropdown-form-toggle,
.dropdown-category-filter {
  display: flex;
  /*min-height: 52px !important;*/
  -webkit-appearance: none;
  justify-content: flex-start;
  align-items: center;
  min-width: 165px;
}
.has-options .prijs-block .dropdown-form-toggle {
  min-height: 34px;
  line-height: 34px;
  margin-bottom: 8px;
  padding-right: 25px;
}
.icon {
  z-index: 900;
}
select.error-input,
input.error-input {
  border: 2px solid red !important;
  margin-bottom: 0!important;
}
.overzicht-grid.summary .mini-heading strong,
.overzicht-grid.summary .mini-heading span {
  padding-right: 6px;
}
.combideal-steps__item-container .button-right-text {
  font-weight: 400;
}
.product-gallery__carousel .product-gallery__carousel-image {
  border: 1px solid #efefef;
}
.no-row-gap {
  row-gap: 0;
}
.smaller-paragraph {
  color: #000;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
  letter-spacing: -0.5px;
}
.volume-grid-block {
  max-height: 0;
  padding: 0;
  margin-top: 0;
  transition: max-height 0.75s ease-out;
  overflow: hidden;
}
.volume-grid-block.opened {
  padding: 20px 15px 15px;
  margin-top: 18px;
  max-height: 200px;
}
.volume-grid {
  margin-right: auto;
  margin-left: auto;
  grid-row-gap: 1px;
  grid-template-columns: auto;
}
.volume-grid .mini-heading {
  font-size: 16px;
}
.volumeDiscount.singlePrice {
  padding: 16px 0;
}
.volumeDiscount {
  border: 2px solid #d3d3d3;
  border-radius: 4px;
  text-align: center;
  padding: 8px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 16px;
  flex-wrap: wrap;
  flex-direction: column;
}
.volumeSavingText {
  color: #981915;
  text-align: center;
  font-weight: 800;
  line-height: 27px;
}
.volumeBlock.selected .volumeDiscount {
  border: 3px solid #981915;
  padding: 7px 0;
}
.volumeBlock.selected .volumeDiscount.singlePrice {
  padding: 15px 0;
}
.volumeDiscount span {
  color: #8e8e8e;
}
.volumeBlock {
  text-align: center;
  cursor: pointer;
}
.volume-progress-bar {
  background: white;
  width: 100%;
  height: 16px;
  margin-top: 15px;
}
.volume-bar {
  background: #ff9c1e;
  height: 100%;
}
.text-right {
  text-align: right!important;
}
@media screen and (max-width: 991px) {
  .smaller-paragraph {
    align-self: stretch;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  .smaller-paragraph.text-right {
    text-align: left;
    margin-top: 14px;
  }
  .volume-progress-bar {
    margin-top: 4px;
  }
  .double-column-mobile {
    align-self: stretch;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
}
.login-grid .error-box {
  padding: 0;
  border: none;
}
.openings-block {
  font-size: 13px;
  font-family: Poppins, sans-serif;
}
.recente-bestelling-item .m2-form {
  border-style: solid;
  border-width: 1px;
  border-color: #d8d8d8;
}
.small-menu-heading-image {
  width: 40px;
  height: 40px;
  margin-right: 16px;
  object-fit: cover;
}
.noHighlight {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}
.noHighlight:focus {
  outline: none !important;
}
.short-page {
  min-height: calc(100vh - 100px);
}
.voorraad-usp-holder {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  align-content: flex-start;
}
.pb-20 {
  padding-bottom: 20px;
}
.sample-button {
  position: relative;
  display: flex;
  min-height: 46px;
  margin-left: 0px;
  padding: 6px 12px;
  justify-content: center;
  align-items: center;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(0, 20, 39, 0.09);
  border-radius: 3px;
  background-color: #20a1ff;
  transition: all 200ms ease;
  font-family: Poppins, sans-serif;
  color: #ffffff;
  font-size: 13px;
  text-decoration: none;
  font-weight: 500;
}
.product-usp.usp-sample {
  color: #20a1ff;
}
.sample-button.disabled {
  background-color: #62beff;
}
.w-icon-dropdown-toggle {
  pointer-events: none;
}
.modal .large-image-text {
  max-height: 90vh;
  overflow: auto;
  padding: 35px;
}
.omschrijving-block.category {
  padding-top: 0;
  border-top: 0;
}
.grid-pickup {
  grid-column-end: 3;
  grid-column-start: 1;
  grid-row-end: 2;
  grid-row-start: 1;
}
.grid-pickup .voorraad-usp {
  color: #001427;
  font-size: 13px;
}
@media screen and (max-width: 479px) {
  .grid-pickup {
    grid-row-end: 2;
    grid-row-start: 2;
  }
}
.product-icon {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: 0%;
  width: 11px;
  margin-top: 12px;
  margin-right: 4px;
  opacity: 1;
}
.product-icon:after {
  color: #ff9c1e;
  width: auto;
}
.large-dropdown-toggle .product-icon:after {
  font-size: 33px;
  content: '+';
}
.large-dropdown-toggle.w--open .product-icon:after {
  font-size: 44px;
  content: '-';
}
@media screen and (max-width: 991px) {
  .product-icon {
    margin-left: 66px;
    font-size: 14px;
  }
  .category-hero-new {
    text-align: center;
  }
}
.floating-filter-button {
  display: none;
  position: fixed;
  margin: 0 auto;
  max-width: 160px;
  bottom: 20px;
  z-index: 900;
  left: 10px;
  right: 10px;
}
@media screen and (max-width: 479px) {
  .product-icon {
    width: 8px;
    margin-top: 2px;
  }
  .floating-filter-button {
    display: flex;
  }
  .orange-block.top-menu {
    font-size: 13px;
    line-height: 22px;
  }
}
.orange-block {
  display: grid;
  margin-top: 38px;
  margin-bottom: 0px;
  padding: 26px;
  justify-content: space-between;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-columns: 1fr 0.25fr;
  grid-template-rows: auto;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(255, 156, 30, 0.18);
  border-radius: 2px;
  background-color: rgba(255, 166, 54, 0.17);
  font-family: Poppins, sans-serif;
  color: #ff9c1e;
  font-size: 15px;
  font-weight: 600;
}
.orange-block.green {
  border-color: rgba(39, 201, 122, 0.16);
  background-color: rgba(25, 168, 98, 0.17);
  color: #27c97a;
}
.orange-block.top-menu {
  margin-top: 12px;
  padding: 10px;
}
.orange-block.top-menu p {
  font-size: 14px;
  line-height: 18px;
}
/*
// .mobilemenu
*/
.mobilemenu,
.accountmenu {
  visibility: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  transition: visibility 0s 0.3s;
}
.mobilemenu,
.accountmenu {
  left: 0;
}
.mobilemenu__backdrop,
.accountmenu__backdrop {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: #3d464d;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobilemenu__backdrop,
.accountmenu__backdrop {
  left: 0;
}
.mobilemenu__body,
.accountmenu__body {
  position: absolute;
  top: 0;
  width: 290px;
  height: 100%;
  background: #fff;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}
.mobilemenu__body,
.accountmenu__body {
  left: 0;
  transform: translateX(calc(-130%));
}
.mobilemenu__header,
.accountmenu__header {
  height: 55px;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  border-bottom: 1px solid #ebebeb;
}
.mobilemenu__title,
.accountmenu__title {
  padding: 0 20px;
  font-weight: 700;
  flex-grow: 1;
}
.mobilemenu__close,
.accountmenu__close {
  border: none;
  background: transparent;
  height: 54px;
  width: 55px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  fill: #999;
  transition: fill .2s;
}
.mobilemenu__close,
.accountmenu__close {
  border-left: 1px solid #ebebeb;
}
.mobilemenu__close:focus,
.accountmenu__close:focus {
  outline: none;
}
.mobilemenu__close:focus,
.mobilemenu__close:hover,
.accountmenu__close:focus,
.accountmenu__close:hover {
  fill: #3d464d;
}
.accountmenu__content,
.mobilemenu__content {
  flex-grow: 1;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.mobilemenu--open,
.accountmenu--open {
  visibility: visible;
  transition-delay: 0s;
}
.mobilemenu--open .mobilemenu__backdrop,
.accountmenu--open .accountmenu__backdrop {
  opacity: .9;
}
.mobilemenu--open .mobilemenu__body,
.accountmenu--open .accountmenu__body {
  transform: translateX(0);
}
/*
// .mobile-links
*/
.mobile-links,
.account-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-links__item,
.account-links__item {
  border-bottom: 1px solid #ebebeb;
}
.mobile-links__item-title,
.account-links__item-title {
  display: flex;
  align-items: stretch;
  cursor: pointer;
}
.mobile-links__item-link,
.account-links__item-link {
  flex-grow: 1;
  color: #3d464d;
}
.mobile-links__item-link,
.mobile-links__item-link:hover,
.account-links__item-link,
.account-links__item-link:hover {
  color: inherit;
}
.mobile-links__item-toggle,
.account-links__item-toggle {
  border: none;
  background: transparent;
  padding: 0;
  width: 55px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: inherit;
  fill: #a5a5a5;
  transition: fill .2s;
}
/*.mobile-links__item-toggle,*/
.account-links__item-toggle {
  border-left: 1px solid #ebebeb;
}
.mobile-links__item-toggle:focus,
.account-links__item-toggle:focus {
  outline: none;
}
.mobile-links__item-toggle:focus,
.mobile-links__item-toggle:hover,
.account-links__item-toggle:focus,
.account-links__item-toggle:hover {
  cursor: inherit;
}
.mobile-links__item-arrow,
.account-links__item-arrow {
  transition: transform 0.3s;
}
.mobile-links__item-sub-links,
.account-links__item-sub-links {
  visibility: hidden;
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height 0.3s, opacity 0.3s, visibility 0s 0.3s;
}
.mobile-links__item--open > .mobile-links__item-sub-links,
.account-links__item--open > .account-links__item-sub-links {
  visibility: visible;
  height: auto;
  opacity: 1;
  transition-delay: 0s, 0s, 0s;
}
.mobile-links__item--open > .mobile-links__item-title .mobile-links__item-arrow,
.account-links__item--open > .account-links__item-title .account-links__item-arrow {
  transform: rotateZ(180deg) translateY(1px);
}
.mobile-links--level--0 > .mobile-links__item,
.account-links--level--0 > .account-links__item {
  border-bottom: 1px solid #ebebeb;
}
/*.mobile-links--level--0 > .mobile-links__item > .mobile-links__item-title,*/
/*.account-links--level--0 > .account-links__item > .account-links__item-title {*/
/*    height: 48px;*/
/*}*/
.mobile-links--level--0 > .mobile-links__item > .mobile-links__item-title .mobile-links__item-link,
.account-links--level--0 > .account-links__item > .account-links__item-title .account-links__item-link {
  padding: 13px 20px;
}
.mobile-links:not(.mobile-links--level--0),
.account-links:not(.account-links--level--0) {
  border-top: 1px solid #ebebeb;
}
.mobile-links--level--1,
.account-links--level--1 {
  background: #f7f7f7;
  font-size: 14px;
  line-height: 14px;
}
.mobile-links--level--1 .mobile-links__item .mobile-links__item-link,
.account-links--level--1 .account-links__item .account-links__item-link {
  padding: 13px 20px;
}
.mobile-links--level--1 .mobile-links,
.account-links--level--1 .account-links {
  background: #fff;
}
.mobile-links--level--1 .mobile-links,
.account-links--level--1 .account-links {
  padding-left: 20px;
}
.mobile-links--level--1 .mobile-links > li,
.account-links--level--1 .account-links > li {
  background: #f7f7f7;
}
.mobile-links--level--1 .mobile-links > li,
.account-links--level--1 .account-links > li {
  border-left: 1px solid #ebebeb;
}
.mobile-links--level--1 .mobile-links__item:last-child,
.account-links--level--1 .account-links__item:last-child {
  border-bottom: none;
}
/*
// .mobilemenu
*/
.mobilemenu,
.accountmenu {
  visibility: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  transition: visibility 0s 0.3s;
}
.mobilemenu,
.accountmenu {
  left: 0;
}
.mobilemenu__backdrop,
.accountmenu__backdrop {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: #3d464d;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobilemenu__backdrop,
.accountmenu__backdrop {
  left: 0;
}
.mobilemenu__body,
.accountmenu__body {
  position: absolute;
  top: 0;
  width: 290px;
  height: 100%;
  background: #fff;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}
.mobilemenu__body,
.accountmenu__body {
  left: 0;
  transform: translateX(calc(-130%));
}
.mobilemenu__header,
.accountmenu__header {
  height: 55px;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  border-bottom: 1px solid #ebebeb;
}
.mobilemenu__title,
.accountmenu__title {
  padding: 0 20px;
  font-weight: 700;
  flex-grow: 1;
}
.mobilemenu__close,
.accountmenu__close {
  border: none;
  background: transparent;
  height: 54px;
  width: 55px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  fill: #999;
  transition: fill .2s;
}
.mobilemenu__close,
.accountmenu__close {
  border-left: 1px solid #ebebeb;
}
.mobilemenu__close:focus,
.accountmenu__close:focus {
  outline: none;
}
.mobilemenu__close:focus,
.mobilemenu__close:hover,
.accountmenu__close:focus,
.accountmenu__close:hover {
  fill: #3d464d;
}
.accountmenu__content,
.mobilemenu__content {
  flex-grow: 1;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.mobilemenu--open,
.accountmenu--open {
  visibility: visible;
  transition-delay: 0s;
}
.mobilemenu--open .mobilemenu__backdrop,
.accountmenu--open .accountmenu__backdrop {
  opacity: .9;
}
.mobilemenu--open .mobilemenu__body,
.accountmenu--open .accountmenu__body {
  transform: translateX(0);
}
.mobile-links__item .nav-link-title._2 {
  font-weight: 500;
  text-align: left;
}
.no-link {
  text-decoration: none;
}
.mobile-links__item-toggle.back {
  justify-content: end;
  width: 26px;
}
.mobile-links--level--0 > .mobile-links__item > .mobile-links__item-title .mobile-links__item-link.back {
  padding-left: 9px;
}
.form-radio-small {
  font-size: 15px;
  position: relative;
}
.pickup-discount {
  background-color: #c0e2d0;
  padding: 10px 30px;
  text-align: center;
  width: 100%;
  margin: 15px 0px;
  line-height: 15px;
}
.pickup-discount h5 {
  margin: 0;
  font-weight: 800;
}
.pickup-discount span {
  font-size: 13px;
}
.custom-radio input[type=radio] {
  display: none;
}
.custom-radio label {
  padding-left: 8px;
}
.custom-radio label:before {
  content: ' ';
  width: 13px;
  height: 13px;
  border-radius: 100%;
  background-color: transparent;
  border: 2px solid #cbcbcb;
  position: relative;
  top: 2px;
  left: -8px;
  display: inline-block;
}
.custom-radio input[type=radio]:checked + label {
  font-weight: 700;
}
.custom-radio input[type=radio]:checked + label:before {
  border-color: #ff9c1e;
}
.custom-radio input[type=radio]:checked + label:after {
  content: ' ';
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background-color: #ff9c1e;
  border: 1px solid #ff9c1e;
  position: absolute;
  top: 6px;
  left: 4px;
  display: block;
}
.w-radio.custom-radio {
  padding-left: 0;
  margin-right: 0;
}
.text-underline {
  text-decoration: underline;
}
.text-underline-gray {
  text-decoration: underline;
  -webkit-text-decoration-color: #bbbbbb;
  text-decoration-color: #bbbbbb;
}
.font-size-13 {
  font-size: 13px;
}
.w-md-50 {
  width: 100%;
}
@media screen and (min-width: 525px) {
  .w-md-50 {
    width: 50%;
  }
}
.mt-20 {
  margin-top: 20px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}
.flex-wrap {
  flex-wrap: wrap;
}
.overviewLoader img {
  width: 80px;
  right: -20px;
  position: absolute;
}
.pre-loader.overviewLoader {
  text-align: right;
  padding-top: 0;
  height: 135px;
}
.full-green-button-copy {
  display: flex;
  align-items: center;
  justify-content: center;
}
.full-green-button-copy.full:disabled {
  background-color: #77cfa4;
}
.full-green-button-copy.full .disabledLoader {
  display: none;
  height: 18px;
  line-height: 20px;
}
.full-green-button-copy.full:disabled .disabledLoader {
  display: inline-block;
}
.full-green-button-copy._2 {
  padding: 9px 75px 10px;
}
.product-options {
  margin-bottom: 8px;
}
.category-block a {
  text-decoration: none;
}
@media (max-width: 1200px) {
  .cf1lHZ.cf2MAH:not(.cf3l36) {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
.shop-page .category-image-overlay-new {
  position: relative;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  width: 100%;
  height: 100%;
  padding: 45px 10px;
  background: rgba(152, 25, 21, 0.88);
  /*background-color: rgba(14, 19, 27, 0);*/
  /*background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.21)), color-stop(55%, rgba(19, 19, 19, 0.07)), to(transparent));*/
  /*background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.21), rgba(19, 19, 19, 0.07) 55%, transparent);*/
}
.shop-page .category-image-overlay-new._2 {
  padding-top: 56px;
}
.shop-page .category-image {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shop-page .subpage-title {
  margin-top: 0px;
  margin-bottom: 0px;
  font-family: Poppins, sans-serif;
  color: #fff;
  font-size: 42px;
  line-height: 58px;
  font-weight: 700;
}
.shop-page .breadcrumb-link .breadcrumb-text {
  margin-right: 6px;
  color: #fff;
  text-decoration: none;
}
.shop-page .breadcrumb-link,
.shop-page .breadcrumb-arrow {
  opacity: 1;
}
.shop-page .large-content-section {
  position: relative;
  padding: 100px 18px;
  background-color: #f7f7f7;
  background-image: linear-gradient(180deg, rgba(247, 247, 247, 0.97), rgba(247, 247, 247, 0.97)), url('/website/images/Woodstpe-zwart.svg');
  background-position: 0px 0px, 150% 50%;
  background-size: auto, 1060px;
  background-repeat: repeat, no-repeat;
}
.shop-page .breadcrumb-wrapper {
  margin-bottom: 10px;
}
.shop-page .breadcrumb-home-icon,
.shop-page .breadcrumb-arrow {
  filter: none;
}
.shop-page .w-layout-grid:not(.large-menu-grid) {
  grid-row-gap: 8px;
}
.shop-page #w-node-_5890df0f-3531-4c16-16b5-046d5b534c14-bbfcced8 {
  justify-self: end;
}
.shop-page .showroom-text-block {
  position: relative;
  max-width: 430px;
  margin-bottom: 0px;
}
.shop-page .content-grid {
  margin-bottom: 69px;
  grid-template-columns: 1.25fr 1fr;
  grid-template-rows: auto;
}
.shop-page .content-grid.reverse {
  grid-template-columns: 1fr 1.25fr;
}
.shop-page .content-grid.reverse._2 {
  margin-bottom: 0px;
}
.shop-page .content-grid.reverse.top {
  margin-top: 75px;
  margin-bottom: 0px;
}
.shop-page .content-grid.final {
  margin-bottom: 0px;
}
.single-grid {
  grid-template-columns: 1fr!important;
  grid-template-rows: auto;
}
.mr-0 {
  margin-right: 0;
}
.mw-100 {
  max-width: 100%!important;
}
.total-form-mini-block.select {
  position: relative;
}
.shop-page .blog-post-wrapper {
  position: relative;
  z-index: 5;
  overflow: hidden;
  margin: 0px auto 0px;
  padding: 41px 70px;
  border-radius: 2px;
  background-color: #fff;
  box-shadow: 1px 1px 40px 0 rgba(0, 0, 0, 0.1);
}
.shop-page .gegevens-grid.legservice {
  grid-column-gap: 16px;
}
.shop-page .total-form-mini-block {
  height: auto;
  padding: 0;
  border: none;
  flex-wrap: wrap;
}
.shop-page .basic-button {
  margin-top: 0px;
  margin-right: 10px;
  padding: 10px 18px 9px;
  border-radius: 2px;
  background-color: #00b97c;
  box-shadow: inset 0px -2px 1px 0px #047f51;
  transition: opacity 150ms ease-out, background-color 150ms ease-in;
  font-family: Poppins, sans-serif;
  font-weight: 600;
}
.shop-page .gegevens-hidden-grid {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 2;
  grid-column-end: span 2;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}
.shop-page .dropdown-form-toggle {
  line-height: normal;
}
@media screen and (max-width: 991px) {
  .shop-page .category-image-overlay-new {
    height: 100%;
  }
  .shop-page .large-content-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .shop-page .blog-post-wrapper {
    max-width: 100%;
    margin-top: -130px;
    padding-right: 43px;
    padding-left: 43px;
  }
  .shop-de-look-circle-wrapper {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .shop-page .category-image-overlay-new {
    padding-top: 46px;
    padding-bottom: 47px;
  }
  .shop-page .subpage-title {
    font-size: 30px;
  }
  .shop-page .content-grid {
    grid-template-columns: 1fr;
  }
  .shop-page .content-grid.reverse {
    grid-template-columns: 1fr;
  }
  .shop-page .blog-post-wrapper {
    padding: 25px 35px;
  }
  .shop-page .gegevens-hidden-grid {
    grid-template-columns: auto;
  }
  .shop-page .gegevens-grid.legservice > div {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  .voorraad-usp-holder {
    display: block;
    padding-bottom: 0!important;
  }
  .section-shop-look {
    background-image: url('/webshop/images/shop-de-look-767.jpg');
    background-position: left;
  }
}
@media screen and (max-width: 479px) {
  .shop-page .subpage-title {
    font-size: 23px;
    line-height: 34px;
  }
  .shop-page .breadcrumb-wrapper {
    display: none;
  }
  .shop-page .large-content-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .shop-page .content-grid {
    margin-bottom: 30px;
  }
  .shop-page .blog-post-wrapper {
    margin-top: 0px;
    padding-right: 21px;
    padding-left: 21px;
  }
  .shop-page #w-node-_9557f283-b4a5-a6e0-1a5d-a5b384238310-bbfcced8 {
    grid-column-end: 2;
    grid-column-start: 1;
    grid-row-end: 2;
    grid-row-start: 1;
  }
  .dropdown-form-toggle {
    min-width: unset;
  }
}
.justify-self-end {
  justify-self: end;
}
.p-0 {
  padding: 0!important;
}
.d-block {
  display: block!important;
}
.mb-section {
  margin-bottom: 50px;
}
.trustpilot-widget {
  margin-left: -4px;
  height: 20px;
  max-width: 260px;
}
.trustpilot-widget.trustpilot-right {
  margin-left: auto;
}
@media (max-width: 375px) {
  .section-shop-look {
    background-image: url('/webshop/images/shop-de-look-375.jpg');
  }
}
@media (max-width: 767px) {
  .trustpilot-widget {
    margin-top: -16px;
  }
  .footer .trustpilot-widget {
    margin-top: 0;
  }
  .trustpilot-widget.trustpilot-right {
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
    margin-left: -4px;
  }
}
.overflow-hidden {
  overflow: hidden;
}
.no-combi-item {
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.no-combi-item .no-combi-selected-label {
  font-size: 15px;
  line-height: 15px;
}
.no-combi-selected {
  border: 1px solid #00b97c;
  background: white;
}
.l-height-27 {
  line-height: 27px;
}
.l-height-32 {
  line-height: 32px;
}
.w-modal-grid {
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: 3fr 1fr;
  grid-template-rows: auto auto;
  grid-row-gap: 0px;
  grid-column-gap: 16px;
}
.small-overzicht-grid {
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: 1fr 10fr;
  grid-template-rows: auto auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}
h4.basic-section-heading-item {
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .w-modal-grid {
    display: grid;
    grid-auto-columns: 1fr;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    grid-row-gap: 0px;
    grid-column-gap: 16px;
  }
  .small-overzicht-grid {
    display: grid;
    grid-auto-columns: 1fr;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    grid-row-gap: 16px;
    grid-column-gap: 16px;
  }
}
.combideal-button.sales {
  padding: 5px;
  border-radius: 5px;
}
.combideal-button.sales .alternatief-text {
  font-size: 15px;
  line-height: 15px;
}
.combideal-button.freeProducts {
  padding: 11px 8px 7px;
}
.combideal-button.offerActive {
  margin: 0;
  padding: 10px 22px;
  z-index: 2;
  background-color: #fb8402;
  font-family: Poppins, 'sans-serif';
  font-weight: 600;
}
.combideal-button.offerActive .alternatief-text {
  font-size: 16px;
  font-weight: 500;
}
.combideal-button.freeProducts .alternatief-text {
  font-size: 21px;
  line-height: 14px;
}
.combideal-button.freeProducts .alternatief-text span {
  font-size: 12px;
  line-height: 11px;
}
.combideal-button.freePlinth .alternatief-text span {
  font-size: 19px;
  line-height: 29px;
}
.product-gallery .combideal-button.freePlinth,
.product-gallery .combideal-button.freeProducts {
  padding: 11px 8px 7px;
  z-index: 2;
}
.product-gallery .combideal-button.sales {
  padding: 8px;
  z-index: 2;
}
/*.combideal-button.offerActive{*/
/*    margin:0;*/
/*    font-size:20px;*/
/*    padding:10px 22px;*/
/*    z-index:2;*/
/*    background-color: #991917;*/
/*}*/
.combideal-button.offerActive .alternatief-text {
  font-size: 22px;
}
.sale-green {
  background-color: #00b87b;
}
.sale-orange {
  background-color: #fb8402!important;
}
.sale-red {
  background-color: #991917!important;
}
.sale-blue {
  background-color: #00519d;
}
.hero-slide {
  min-height: 95px;
}
@media screen and (min-width: 525px) {
  .hero-slide {
    min-height: 164px;
  }
}
@media screen and (min-width: 768px) {
  .hero-slide {
    min-height: 245px;
  }
}
@media screen and (min-width: 992px) {
  .hero-slide {
    min-height: 321px;
  }
}
@media screen and (min-width: 1236px) {
  .hero-slide {
    min-height: 400px;
  }
}
.full-green-button-combi {
  width: 100%;
  margin-top: 0px;
  background-color: #27c97a;
  text-align: center;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  padding: 10px 18px 9px;
  border-radius: 2px;
  transition: opacity 150ms ease-out, background-color 150ms ease-in;
}
.freeProduct {
  position: relative;
}
.combigroup-price.freeProductBadge {
  background-color: #fb8402;
  color: #ffffff;
  line-height: 30px!important;
  padding: 0px 17px 0px;
  font-size: 17px;
  border-radius: 3px 0 0 3px;
  margin-right: -15px;
}
.combideal-page .product-card__buttons {
  text-align: right;
}
#layingserviceModal .right-menu-link-block-showroom {
  flex-direction: row;
  justify-content: flex-start;
  text-align: left;
}
#layingserviceModal .right-menu-link-block-showroom .icon-wrapper-klantenservice {
  margin-right: 20px;
}
.right-bestel-block .voorraad-usp.small {
  padding-left: 20px;
  background-size: 16px;
  font-size: 11px;
  background-position: 0% 24%;
}
.mobile-links__item-link.black-friday,
.nav-link-block.black-friday {
  background-color: #000000;
}
.mobile-links__item-link.black-friday .nav-link-title,
.nav-link-block.black-friday .nav-link-title {
  color: #ffffff;
}
.sprayPay-grid {
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  grid-column-gap: 16px;
  border: 1px solid #f4f4f4;
  padding: 15px;
}
.sprayPay-grid .link {
  text-decoration: underline;
  cursor: pointer;
}
.sprayPay-image {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.badge {
  padding: 5px 10px;
  border-radius: 20px;
}
.badge-success {
  color: #ffffff;
  font-weight: 600;
  background-color: #26cc94;
}
.text-16 {
  font-size: 16px;
}
.spraypay-heading {
  font-size: 20px;
  font-weight: 700;
  margin-top: 20px;
}
.spraypay-table {
  text-align: left;
  overflow: auto;
  width: 100%;
  max-width: 100%;
}
.spraypay-table thead tr {
  border-bottom: 1px solid #cecece;
}
.spraypay-table th,
.spraypay-table td {
  padding: 5px;
  white-space: nowrap;
}
@media screen and (max-width: 479px) {
  .spraypay-table {
    display: block;
  }
}
.sprayPay-grid._2 {
  grid-template-columns: 2fr 1fr;
  padding: 0;
  border: 0;
  font-size: 12px;
  grid-column-gap: 0px;
}
.sprayPay-grid._2 .badge {
  padding: 0px;
  font-size: 11px;
  line-height: 20px;
}
.sprayPay-grid._2 h4 {
  font-size: 14px;
  line-height: 20px;
}
#spraypayModal .usp-list {
  padding-top: 2px;
  padding-bottom: 2px;
  font-weight: normal;
}
.vacature-usp-block {
  position: relative;
  display: flex;
  margin-bottom: 5px;
  align-items: center;
}
.vacature-usp-text {
  display: inline-block;
  font-size: 15px;
  white-space: nowrap;
}
.small-check {
  width: 12px;
  margin-right: 12px;
}
@media screen and (max-width: 767px) {
  .nofam-footer {
    display: block;
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 767.1px) {
  .nofam-footer {
    position: absolute;
    bottom: 20px;
  }
  .nofam-footer img {
    max-width: none;
  }
}
.question-answer.nieuwsbrief {
  z-index: 1000;
  margin-top: -139px;
  margin-left: 0;
}
.question-answer.keuzehulp {
  z-index: 1000;
  margin-top: -13px;
  left: -123px;
  line-height: 15px;
}
@media screen and (max-width: 991px) {
  .question-answer.nieuwsbrief {
    margin-top: -177px;
  }
  .question-answer.keuzehulp {
    z-index: 1000;
    margin-top: -13px;
    left: -42px;
  }
}
@media screen and (max-width: 479px) {
  .question-answer.nieuwsbrief {
    margin-top: -197px;
  }
  .question-answer.keuzehulp {
    z-index: 1000;
    margin-top: -79px;
    margin-left: 57px;
  }
}
@media screen and (min-width: 480px) {
  .kortingscode-popup-wrapper .cross-close {
    top: -10px;
  }
}
@media screen and (max-width: 479px) {
  .shop-content-heading-wrapper .basic-section-heading {
    font-size: 20px;
    line-height: 25px;
  }
  .shop-content-heading-wrapper .prijs-block .pak-prijs,
  .shop-content-heading-wrapper .prijs-block .prijs-m2-first.old-price {
    display: inline;
  }
  .hero-slider-wrapper {
    margin-top: 3px;
  }
}
.footer .pay-icons {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .footer .pay-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-self: stretch;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
  .newsletter-block {
    align-self: stretch;
    grid-row-start: span 1;
    grid-row-end: span 1;
    grid-column-start: span 2;
    grid-column-end: span 2;
  }
}
@media screen and (max-width: 479px) {
  .footer .pay-icons {
    justify-content: center;
    margin-bottom: 45px;
  }
}
.footer .pay-icons img {
  background: #ffffff;
  width: 62px;
  padding: 1px 11px;
  border-radius: 2px;
  align-self: start;
}
.nieuwsbrief-wrap {
  overflow: hidden;
  width: 100%;
  margin-top: 0px;
  padding-top: 0px;
}
.nieuwsbrief-form {
  position: relative;
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 40px;
  margin-top: 2px;
  padding-left: 0px;
  align-items: center;
  border-radius: 3px;
  background-color: #fff;
}
.arrow-button {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: 0%;
  display: flex;
  width: 40px;
  padding: 11px;
  background-color: #ff9c1e;
}
.email-placeholder {
  color: rgba(0, 0, 0, 0.34);
  font-size: 13px;
  height: 100%;
  width: 100%;
  padding-left: 17px;
  border: none;
}
.text-dark {
  color: #000000;
}
.rekentool-block .question-answer-text {
  font-size: 13px;
}
.rekentool-block .mini-heading {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .rekentool-block .mini-heading {
    margin-bottom: 0;
  }
  .rekentool-block .question-answer-text {
    margin: 5px 0 0;
  }
}
.omschrijving-block h4,
.rekentool-block h4 {
  font-family: Poppins, sans-serif;
  font-weight: 600;
}
.rekentool-block .button-gtid {
  max-width: none;
}
/*MENU*/
.nav-menu {
  display: flex;
  justify-content: start;
  width: 100%;
  column-gap: 35px;
}
/*a.nav-link-block.combi.w-inline-block:first-of-type {*/
/*    padding-left: 0;*/
/*}*/
.nav-link-block {
  padding: 20px 10px 12px;
}
.nav-link-title._2 {
  font-size: 15px;
}
@media screen and (max-width: 991px) {
  .nav-link-title._2 {
    font-size: 13px;
  }
  .nav-menu {
    padding: 0 18px;
    column-gap: 20px;
  }
}
.large-menu-grid {
  grid-template-columns: 1fr;
  overflow-x: auto;
}
.large-menu-grid-dropdown .small-menu-heading-dropdown a {
  margin-top: 0px;
  margin-bottom: 0px;
  font-family: Poppins, sans-serif;
  color: #2c2c2c;
  font-size: 13px;
  line-height: 28px;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
}
.nav-menu.w-nav-menu.close-menu .w-dropdown {
  margin: 0;
}
.dropdown-menu-link-block:hover {
  text-decoration: underline;
  color: #000000;
}
.mobile-links__item.active {
  background: rgba(0, 0, 0, 0.04);
}
.mobile-links__item:hover {
  background: rgba(0, 0, 0, 0.05);
}
/*Counter section*/
.hero-section.counter-section {
  position: relative;
  display: block;
  min-height: 300px;
}
.counter-section .service-heading {
  font-size: 20px;
}
.counter-section .service-heading strong {
  font-weight: 800;
}
.counter-section .hero-image-block-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#counter {
  display: flex;
  /*justify-content: space-between;*/
  align-items: center;
}
#counter span {
  color: #ffffff;
}
#counter .clock {
  display: flex;
  flex: 1;
  margin-bottom: 10px;
}
#counter .clock span {
  font-variant-numeric: tabular-nums;
  color: #000000;
  background-color: #ffffff;
  padding: 20px 9px;
  font-weight: bold;
  font-size: 42px;
}
#counter .clock span.firstSpan {
  margin-right: 10px;
}
#counter .counter-block {
  text-align: center;
}
#counter .divider {
  color: #ffffff;
  font-size: 36px;
  padding: 0 10px;
  margin-bottom: 27px;
}
.counter-section .hero-image-block-overlay.blue .countDown {
  margin-top: 10px;
  text-align: left;
}
.counter-section .hero-image-block-overlay.blue .countDown #counter .clock span {
  font-size: 32px;
  padding: 15px 9px;
}
@media screen and (max-width: 767px) {
  #counter {
    justify-content: center;
  }
  .hero-section.counter-section {
    min-height: unset;
  }
}
@media screen and (max-width: 525px) {
  #counter .clock span {
    font-variant-numeric: tabular-nums;
    color: #000000;
    background-color: #ffffff;
    padding: 12px 5px;
    font-weight: bold;
    font-size: 28px;
  }
  #counter .clock span.firstSpan {
    margin-right: 5px;
  }
  .counter-section .hero-image-block-overlay.blue .countDown #counter .clock span {
    font-size: 28px;
    padding: 12px 5px;
  }
}
@media screen and (max-width: 479px) {
  .counter-section .hero-title-copy {
    font-size: 27px;
    line-height: 30px;
    font-weight: 500;
  }
  .counter-section .service-heading {
    font-size: 16px;
    line-height: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .counter-section .hero-image-block-overlay.blue .countDown {
    margin-top: 20px;
    text-align: center;
  }
}
.counter-section .image-section-overlay {
  background: transparent;
}
.hero-img-block-img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.small-hero-heading-wrapper {
  color: white;
  max-width: 423px;
}
.counter-section .hero-title {
  font-family: Poppins, sans-serif;
  font-size: 40px;
  font-weight: 400;
  text-shadow: 1px 1px 2px #0000004D;
  text-align: justify;
}
.counter-section .hero-title .hero-title-bigger {
  font-weight: 700;
  font-size: 50px;
}
.flex-grow {
  flex-grow: 1;
}
.hero-img-block-img._2 {
  height: 85%;
  margin-top: 15px;
  width: auto;
  object-fit: contain;
}
.h-100 {
  height: 100%;
  max-height: 100%;
}
.align-self-center {
  align-self: center;
}
.counter-section .btn.btn-black {
  background-color: #231f20;
  color: #ffffff;
  padding: 10px 40px;
  font-family: 'Poppins', sans-serif;
  display: inline-block;
  font-weight: 500;
  border-radius: 3px;
  margin-top: 15px;
}
.hero-image-block-overlay .container,
.hero-image-block-overlay .hero-grid {
  height: 100%;
  max-height: 100%;
}
@media (max-width: 1200px) {
  .counter-section .container {
    margin: 0 25px;
  }
}
@media (max-width: 767px) {
  .counter-section .container {
    margin: 0;
  }
  .hero-img-block-img {
    height: 100%;
    width: 100%;
    position: absolute;
    object-fit: cover;
  }
  .counter-section .hero-image-block-overlay {
    position: unset;
    height: auto;
    padding: 15px;
  }
  .hero-img-block-img._2 {
    position: unset;
  }
  .flex-direction-sm-column {
    flex-direction: column;
  }
  .counter-section .hero-title {
    text-align: center;
    font-size: 7vw;
    line-height: 30px;
  }
  .counter-section .hero-title .hero-title-bigger {
    font-size: 8.97vw;
  }
  .countDown {
    text-align: center;
  }
  #counter .divider {
    padding: 0 5px;
  }
}
@media (max-width: 479px) {
  .hero-img-block-img._2 {
    width: 100%;
  }
}
.counter-section.counter-section-small {
  min-height: unset;
}
.counter-section.counter-section-small .hero-image-block-overlay.blue .countDown #counter .clock span {
  font-size: 26px;
  padding: 7px 6px;
}
.counter-section.counter-section-small .service-heading {
  font-size: 15px;
  margin-bottom: 5px;
}
.counter-section.counter-section-small #counter .clock span.firstSpan {
  margin-right: 5px;
}
.counter-section.counter-section-small .hero-title .hero-title-bigger {
  font-size: 36px;
}
.counter-section.counter-section-small .hero-title {
  font-size: 29px;
  line-height: 34px;
}
.counter-section.counter-section-small .hero-image-block-overlay.blue .countDown {
  margin-top: 10px;
}
.counter-section.counter-section-small .hero-img-block-img {
  object-fit: cover;
  height: 205px;
}
.counter-section.counter-section-small #counter .clock {
  margin-bottom: 7px;
}
.counter-section.counter-section-small .counter-block span {
  font-size: 12px;
}
.counter-section.counter-section-small #counter .divider {
  padding: 0 7px;
}
.counter-section.counter-section-small img.hero-img-block-img._2 {
  object-fit: contain;
  height: 180px;
  align-self: center;
  justify-self: center;
  margin-top: 0;
  width: auto;
}
.counter-section.counter-section-small .hero-title {
  text-align: left;
}
.counter-section.counter-section-small .hero-grid div.d-flex {
  justify-content: center;
}
.counter-section.counter-section-small + .product-category-wrapper {
  margin-top: 26px;
}
@media (max-width: 1200px) {
  .counter-section.counter-section-small .small-hero-heading-wrapper {
    max-width: 350px;
  }
}
@media (max-width: 767px) {
  .counter-section.counter-section-small .hero-img-block-img {
    height: 100%;
  }
  .counter-section.counter-section-small .hero-title,
  .counter-section.counter-section-small .service-heading {
    text-align: center;
  }
  .counter-section.counter-section-small {
    margin-bottom: 26px;
  }
}
@media screen and (max-width: 479px) {
  .counter-section.counter-section-small .hero-title-copy {
    font-size: 27px;
    line-height: 30px;
    font-weight: 500;
  }
  .counter-section.counter-section-small .service-heading {
    font-size: 16px;
    line-height: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .counter-section.counter-section-small .hero-image-block-overlay.blue .countDown {
    margin-top: 20px;
    text-align: center;
  }
  .counter-section.counter-section-small .hero-image-block-overlay.blue .countDown #counter .clock span {
    font-size: 26px;
    padding: 7px 4px;
  }
  .counter-section.counter-section-small .hero-title {
    font-size: 7vw;
  }
  .counter-section.counter-section-small .hero-title .hero-title-bigger {
    font-size: 8.97vw;
  }
}
.action-label {
  border: 1px solid #fb8402;
  display: flex;
  padding-right: 15px;
  border-radius: 5px;
  background: white;
  margin-top: 10px;
}
.action-label.opruiming {
  border: 1px solid #991917;
}
.action-label-color {
  color: #fb8402;
  font-weight: 600;
}
.action-label._2 {
  padding-right: 0;
}
.action-label._2 .action-label-title {
  margin-right: 0;
}
.action-label-title {
  background-color: #fb8402;
  font-size: 11pt;
  padding: 5px 12px;
  color: white;
  margin-right: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  font-family: Karla, 'sans-serif';
}
.action-label.opruiming .action-label-title {
  background-color: #991917;
}
.action-label-text {
  display: flex;
  align-items: center;
}
.action-label-text span {
  padding: 5px;
}
.stockReached {
  font-weight: 600;
  color: #981915;
  line-height: 17px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.sale-color {
  color: #991917;
}
/*@media(max-width: 767px){*/
/*    .action-label{*/
/*        padding-right: 5px;*/
/*        border-radius: 5px;*/
/*        display:flex;*/
/*        align-items:center;*/
/*    }*/
/*    .action-label-title {*/
/*        padding: 5px 5px;*/
/*        color: white;*/
/*        margin-right: 5px;*/
/*        font-weight: 600;*/
/*        display: inline-block;*/
/*        font-family: Poppins, 'sans-serif';*/
/*    }*/
/*}*/
@media (max-width: 767px) {
  .stockReached {
    margin-top: 0!important;
    margin-bottom: 0!important;
  }
  .action-label {
    border: 1px solid #fb8402;
    padding-right: 0px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    margin-top: 0;
  }
  .action-label.opruiming {
    border: 1px solid #991917;
  }
  .action-label-title {
    padding: 5px 5px;
    color: white;
    font-weight: 500;
    width: 100%;
    margin-right: 0;
    justify-content: center;
  }
}
div.installatieservices {
  font-family: "Karla";
  width: 100%;
  margin: 0 0 15px;
  height: auto;
  padding: 15px 20px;
  border: 1px solid #d8d8d8;
  border-radius: 2px;
  background-color: #fff;
  box-sizing: border-box;
}
div.installatieservices p {
  border-bottom: 1px solid #d8d8d8;
  padding: 0 0 10px;
  line-height: 22px;
}
div.installatieopties {
  display: flex;
  justify-content: space-between;
}
.toggle-button {
  display: flex;
  align-items: center;
  position: relative;
  box-sizing: border-box;
}
.toggle-button .button-cover,
.toggle-button .knobs,
.toggle-button .layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.toggle-button .button {
  position: relative;
  width: 40px;
  height: 19px;
  border-radius: 100px;
  font-size: 10px;
  text-transform: uppercase;
}
.toggle-button label {
  margin: 0 0 0 5px;
  cursor: pointer;
  font-weight: 400;
  width: calc(100% - 45px);
}
.toggle-button .button .checkbox {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}
.toggle-button .button .knobs {
  z-index: 2;
}
.toggle-button .button .layer {
  width: 100%;
  background-color: #d8d8d8;
  transition: 0.3s ease all;
  z-index: 1;
  border-radius: 100px;
}
.toggle-button .button .knobs:after {
  content: "Nee";
  position: absolute;
  top: 4px;
  left: 17px;
  color: #fff;
  font-weight: 800;
  line-height: normal;
}
.toggle-button .button .knobs:before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 13px;
  height: 13px;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  background-color: #fff;
  border-radius: 50%;
  transition: 0.3s ease all, left 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15);
}
.toggle-button .button .checkbox:checked:active + .knobs:before {
  left: 3px;
}
.toggle-button .button .checkbox:checked + .knobs:before {
  left: 24px;
}
.toggle-button .button .checkbox:checked + .knobs:after {
  content: "Ja";
  left: 7px;
  position: absolute;
}
.toggle-button .button .checkbox:checked ~ .layer {
  background-color: #ff9c1d;
}
div.kitten {
  display: none;
}
div.kitten label {
  margin: 0 0 0 10px;
  cursor: pointer;
  font-weight: 400;
}
@media screen and (max-width: 680px) {
  div.installatieopties {
    flex-direction: column;
    gap: 10px;
  }
}
.list-unstyled {
  list-style-type: none;
}
.pl-0 {
  padding-left: 0;
}
.align-start {
  align-items: start;
}
strong.usp-wrapper-counter {
  margin-right: 12px;
  font-size: 23px;
  width: 16px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .div-block-5 .nav-link-block.cart {
    display: inline-block;
    width: auto;
  }
  .large-menu-grid {
    grid-template-columns: 1fr;
  }
}
.category-block-wrapper.has-compare {
  padding-bottom: 136px;
}
.floating-filter-button {
  justify-content: space-around;
  max-width: unset;
}
.floating-filter-button .icon-button-orange {
  width: 140px;
  margin: 0;
}
.counter-circle {
  font-weight: 500;
  display: inline-block;
  text-align: center;
  width: 18px;
  height: 18px;
  padding-left: 0px;
  border-radius: 170%;
  background-color: #ffffff;
  color: #000000;
  font-size: 10px;
}
.compare-list {
  position: fixed;
  bottom: -50px;
  max-width: 350px;
  right: 200px;
  z-index: 1001;
  background: white;
}
.compare-header {
  background: #3898EC;
  color: white;
  padding: 15px 20px;
  cursor: pointer;
  column-gap: 8px;
  font-family: Poppins, 'sans-serif';
  font-weight: 600;
}
.compare-body,
.compare-footer {
  padding: 15px 20px;
  display: none;
  max-height: 350px;
  overflow: auto;
}
.compare-block-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-columns: 0.75fr 1.75fr 1.25fr 0.4fr;
  grid-template-rows: auto;
}
.compare-block-grid a {
  text-decoration: none;
}
.compare-block-grid:not(:last-of-type) {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #cccccc;
}
.compare-list .mini-heading {
  font-size: 13px;
}
.compare-wrapper.open {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #00000025;
  z-index: 1000;
  top: 0;
}
.compare-list.open {
  width: 100%;
}
.compare-list.open .compare-body,
.compare-list.open .compare-footer {
  display: block;
}
.compare-list.open .compare-header {
  cursor: unset;
}
.compare-list .close-compare,
.compare-list.open .compare-header .counter-circle {
  display: none;
}
.compare-list.open .close-compare {
  display: block;
  cursor: pointer;
  width: 16px;
  filter: invert(1);
}
.removeCompare {
  font-weight: bold;
  font-size: 16px;
  justify-self: end;
  cursor: pointer;
}
/*VERGELIJKINGSTOOL*/
.large-grid-categorie.compare-grid {
  grid-template-columns: 200px minmax(0, 1fr);
}
@media screen and (max-width: 991px) {
  .large-grid-categorie.compare-grid {
    grid-template-columns: 150px minmax(0, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .large-grid-categorie.compare-grid {
    grid-template-columns: 100px minmax(0, 1fr);
  }
}
@media screen and (max-width: 525px) {
  .large-grid-categorie.compare-grid {
    grid-template-columns: 1fr;
  }
  .compareOffset {
    display: none;
  }
}
@media screen and (max-width: 479px) {
  .compare-list,
  .compare-wrapper {
    display: none;
  }
}
.h-100 {
  height: 100%;
}
/*#compareProduct .owl-stage{*/
/*    display: flex;*/
/*}*/
.compare-slider-arrow-left,
.compare-slider-arrow-right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  cursor: pointer;
  overflow: hidden;
  background: none;
}
.comparison-wrapper .compare-slider-arrow-left,
.comparison-wrapper .compare-slider-arrow-right {
  bottom: unset;
}
.compare-slider-arrow-left .arrow-icon,
.compare-slider-arrow-right .arrow-icon {
  top: 0;
  bottom: 0;
  position: absolute;
}
.compare-slider-arrow-left:hover,
.compare-slider-arrow-right:hover {
  background: none;
}
.compare-slider-arrow-right {
  z-index: 4;
  right: -50px;
  left: auto;
}
.compare-slider-arrow-left {
  z-index: 4;
  right: auto;
  left: -50px;
}
.comparison-fixed .arrow-icon,
.comparison-wrapper .arrow-icon {
  color: #000000;
}
@media screen and (max-width: 525px) {
  .overflow-hidden-xs {
    overflow: hidden;
  }
}
/*Nieuw copmare*/
.comparison-wrapper {
  overflow-x: auto;
  overflow-y: auto;
}
.comparison-wrapper > * {
  flex: 0 0 auto;
}
.comparison-list {
  white-space: nowrap;
}
.comparison-items {
  display: inline-flex;
}
.comparison-items .attribute-block,
.comparison-items .category-block {
  display: inline-block;
  white-space: normal;
  width: 50vw;
  vertical-align: top;
  margin-right: 8px;
  max-width: 292px;
}
.comparison-list .comparison-blocker {
  display: inline-block;
  position: absolute;
  white-space: normal;
  width: 50vw;
  vertical-align: top;
  margin-right: 8px;
  max-width: 292px;
  z-index: 1;
  background-color: #f7f7f7;
}
.comparison-fixed .comparison-blocker {
  background-color: #ffffff;
}
@media screen and (max-width: 768px) {
  .comparison-items .category-image {
    height: auto;
  }
  .comparison-items .prijs-block .line-button,
  .comparison-items .voorraad-usp {
    display: none;
  }
  .comparison-items .category-heading {
    font-size: 13px;
  }
  .comparison-items .prijs-m2-first-small {
    margin-right: 5px;
  }
  .comparison-items .large-price-small {
    font-size: 15px;
  }
  .comparison-items .category-block-wrapper.has-sale {
    padding-bottom: 47px;
  }
}
.headattribute {
  position: absolute;
  left: 0;
  font-weight: bold;
  vertical-align: top;
  display: inline-block;
  white-space: normal;
  width: 50vw;
  margin-right: 8px;
  max-width: 292px;
  z-index: 2;
  pointer-events: none;
}
.comparison-fixed {
  width: 100%;
  position: fixed;
  background: white;
  left: 0;
  top: 64px;
  z-index: 12323;
  padding-left: 18px;
  padding-right: 18px;
  display: none;
}
.comparison-fixed.show-comparison {
  display: block;
}
.comparison-fixed-image {
  width: 50px;
  min-width: 50px;
  height: 50px;
  margin-right: 12px;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.03);
  border-radius: 2px;
  object-fit: cover;
}
.comparison-fixed-header {
  overflow: hidden;
  text-overflow: ellipsis;
}
.comparison-fixed-title {
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: bold;
}
.comparison-fixed .comparison-items {
  margin-top: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 525px) {
  .comparison-fixed-image {
    display: none;
  }
}
.comparison-wrapper::-webkit-scrollbar {
  display: none;
}
.comparison-wrapper {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.icon-button.filter {
  width: 140px;
  background-color: #3898EC;
}
.compare-footer .icon-button {
  background-color: #3898EC;
}
.visibility-hidden {
  visibility: hidden;
}
@media screen and (max-width: 991px) {
  .comparison-blocker,
  .comparison-list .visibility-hidden {
    display: none!important;
  }
  .comparison-list.attributes .comparison-items {
    margin-top: 20px;
  }
  .headattribute.specificatie-grid {
    max-width: unset;
    width: 100%;
    border-bottom: 0;
  }
  .comparison-list {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .attribute-block.specificatie-grid {
    border-bottom: none;
    padding-bottom: 0;
  }
  .comparison-list.attributes {
    margin-bottom: 10px;
  }
  .comparison-fixed .comparison-list.attributes {
    border-bottom: 0;
    margin-bottom: 0;
  }
  .compare-slider-arrow-right,
  .compare-slider-arrow-left {
    display: none!important;
  }
  .comparison-list .arrow-icon {
    margin: 0;
    color: #ffffff;
  }
  /*.w-icon-slider-right:before,*/
  /*.w-icon-slider-left:before {*/
  /*    background: #00000059;*/
  /*    padding: 10px;*/
  /*    font-size:18px;*/
  /*    border-radius: 100%;*/
  /*    top: 0;*/
  /*    position: absolute;*/
  /*}*/
  /*.w-icon-slider-left:before {*/
  /*    left:0;*/
  /*}*/
  /*.w-icon-slider-right:before{*/
  /*    right:0;*/
  /*}*/
  .compare-slider-arrow-left .arrow-icon {
    left: 0;
    right: auto;
  }
  .compare-slider-arrow-right .arrow-icon {
    left: auto;
    right: 0;
  }
  .comparison-fixed .scrollLeft,
  .comparison-fixed .scrollRight {
    display: none;
  }
}
/*NEW PRODUCT PAGE*/
.large-content-section.product-page {
  background: #f7f7f7;
}
div.quick-filters {
  width: fit-content;
  overflow-x: auto;
  white-space: nowrap;
  position: relative;
}
.product-page .large-content-grid {
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: auto;
}
.product-usp-holder {
  margin-top: 10px;
}
.product-usp {
  display: block;
  margin-right: 0px;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 22px;
  font-family: Karla, sans-serif;
  color: #000000;
  font-size: 15px;
  font-weight: 500;
}
.product-usp.usp-check {
  background-image: url('/webshop/images/001-check_2.svg');
  background-position: 0% 50%;
  background-size: 15px;
  background-repeat: no-repeat;
  font-weight: 700;
}
.product-usp.usp-info {
  background-image: url('/webshop/images/001-info.svg');
  background-position: 0% 50%;
  background-size: 15px;
  background-repeat: no-repeat;
}
.product-usp.usp-out-of-stock {
  background-image: url('/webshop/images/001-stop.svg');
  background-position: 0% 50%;
  background-size: 15px;
  background-repeat: no-repeat;
}
.product-usp.exclamation {
  background-image: url('/webshop/images/001-exclamation.svg');
  background-position: 0% 50%;
  background-size: 15px;
  background-repeat: no-repeat;
}
.highlight-green {
  color: #149866;
  text-decoration: underline;
  font-weight: 800;
}
.br767 {
  display: block;
}
.no-br767 {
  display: none;
}
.heading-surface {
  margin-bottom: 10px;
}
.order-button {
  width: 100%;
  margin-left: 15px;
}
.ml-auto,
.mx-auto {
  margin-left: auto;
}
.mr-auto,
.mx-auto {
  margin-right: auto;
}
.image-section-overlay._2 {
  padding-bottom: 60px;
}
.large-content-wrapper._2 {
  margin-top: 0;
  margin-bottom: 45px;
  padding: 30px 35px;
  border-radius: 2px;
  background-color: #fff;
  box-shadow: 13px 13px 15px -14px rgba(0, 0, 0, 0.14);
}
.content-grid._2 {
  margin-bottom: 0;
  grid-template-columns: 1.25fr 1fr;
  grid-template-rows: auto;
}
@media screen and (max-width: 767px) {
  .content-grid._2 {
    grid-template-columns: 1fr;
  }
}
.text-block-center {
  -ms-grid-column-align: end;
  justify-self: end;
  align-self: center;
  max-width: 429px;
}
.slider-paragraph {
  margin-bottom: 0px;
  font-family: Karla, sans-serif;
  line-height: 20px;
  font-weight: 400;
}
.shop-banner-box {
  display: flex;
  gap: 15px;
}
.combideal-steps__item .mini-heading,
.rekentool-block .mini-heading {
  font-family: Karla, sans-serif;
  font-size: 11pt;
  font-weight: 700;
}
.shop-content-combi-deal-block .basic-section-heading {
  font-family: Karla, sans-serif;
  font-weight: 700;
}
.heading-block-combi .right-question-link-image {
  filter: opacity(0.5);
}
.heading-block-combi.active .right-question-link-image {
  filter: opacity(1);
}
.free-tooltip {
  left: -7px;
  right: auto;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .free-tooltip {
    left: auto;
    right: -7px;
  }
  .product-page .large-content-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .product-gallery__featured {
    margin-bottom: 0;
  }
  .product-gallery__carousel {
    display: none;
  }
  .prijs-wrapper {
    display: flex;
  }
  .prijs-wrapper > div {
    flex: 50%;
  }
  .prijs-wrapper .prijs-m2-first {
    font-size: 14px;
  }
  .prijs-wrapper .action-label-text {
    font-size: 9pt;
    line-height: 11pt;
    height: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }
  .shop-content-combi-deal-block .basic-section-heading {
    font-size: 16pt;
  }
  .shop-content-heading-wrapper .prijs-block .pak-prijs {
    display: block;
    color: #636363;
    font-size: 13px;
  }
  .rekentool-responsive {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .rekentool-responsive .productAmountText {
    flex-basis: 100%;
    font-family: Karla, sans-serif;
    font-size: 10pt;
    margin-top: 0!important;
  }
  .br767 {
    display: none;
  }
  .no-br767 {
    display: block;
  }
  .heading-surface {
    margin-top: 0!important;
    margin-bottom: 0!important;
  }
  .order-button {
    width: auto!important;
    margin-left: auto;
  }
  .order-button.w-100 {
    width: 100%!important;
    margin-left: 15px;
  }
  .product-usp-holder {
    margin-top: 0px;
  }
}
.order-unset {
  order: unset!important;
}
.flex-0 {
  flex: 0;
}
.flex-1 {
  flex: 1;
}
.flex-basis-100 {
  flex-basis: 100%;
}
.actionsDiv {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 15px;
}
.actionsDiv .full-green-button-copy.full {
  margin-top: 10px;
}
.actionsDiv .input-number__input.placeholder-tekst {
  min-height: 42px;
}
.actionsDivModal {
  display: flex;
  flex-wrap: nowrap;
  background: #ffffff;
  column-gap: 15px;
  align-items: center;
}
.actionsDivModal img {
  min-width: 95px;
  width: 95px;
  min-height: 75px;
  height: 100%!important;
  object-fit: cover;
}
.actionsDivModal h3 {
  font-size: 9pt;
  line-height: 20px;
  font-weight: 500;
  margin-top: 0;
}
.actionsDivModal h4 {
  font-size: 10pt;
  line-height: 14px;
  font-weight: 600;
  margin-top: 0;
}
.actionsDivModal p {
  font-size: 9pt;
  line-height: 18px;
  font-weight: 500;
  margin-top: 0;
  color: #636363;
}
#combiProductModal .open-block-start .mini-heading {
  margin-top: 20px;
  margin-bottom: 10px;
}
.total-price-heading {
  margin-top: 8px;
  /*margin-bottom: 8px;*/
  font-family: Poppins, sans-serif;
  color: #000000;
  font-size: 26px;
  font-weight: 600;
}
.input-number__input.small-input {
  width: 110px;
  display: inline-block;
  padding: 0 25px;
}
.bordered-blue-button {
  background: #ffffff;
  color: #000000;
  border: 2px solid #20a1ff;
  border-radius: 5px;
  width: auto;
  display: inline-block;
  min-height: 35px;
  box-shadow: none;
  padding: 0px 15px;
  font-family: Poppins, 'sans-serif';
  font-size: 10pt;
  font-weight: 600;
}
.bordered-blue-button.full {
  color: #20a1ff;
  width: 100%;
  display: block;
  min-height: 43px;
  margin-top: 15px;
}
.bordered-blue-button._2 {
  color: #20a1ff;
  font-size: 10pt;
  line-height: 10pt;
  min-height: 29px;
  padding: 8px 10px;
  border-width: 1px;
  font-weight: 400;
}
.bordered-blue-button.selected {
  background-color: #20a1ff;
  color: white;
}
.bordered-blue-button.gray {
  color: #636363;
  border-color: #636363;
}
.module-sidebar {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 99999;
  display: none;
  width: 100vw;
  height: 100vh;
  justify-content: flex-end;
  align-items: center;
  background-color: rgba(0, 20, 39, 0.3);
}
.module-sidebar.modal .large-image-text {
  max-height: 100vh;
  height: 100%;
  /*height:100vh;*/
}
.module-sidebar .container {
  max-width: 800px;
}
.ondervloer-popup-wrapper h4,
.module-title h4 {
  font-size: 20px;
}
.ondervloer-popup-wrapper span.subtitle,
.module-title span.subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #777777;
}
.cross-close-circle {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: auto;
  margin-top: 25px;
  margin-right: 35px;
}
.popup-cross-circle {
  position: relative;
  top: -1px;
  width: 38px;
}
.combideal-steps__item-header {
  display: inline-flex;
  background: #ffffff;
  border: 3px solid #f7f7f7;
  overflow-x: auto;
  /*justify-content: space-between;*/
}
.module-sidebar .large-image-text {
  padding: 30px;
}
.module-sidebar .h5 {
  font-size: 16px;
}
.combi-heading-title {
  display: none;
}
.combi-heading-title.active {
  display: block;
}
.heading-block-combi {
  position: relative;
  display: flex;
  margin-bottom: 0px;
  align-items: center;
  padding: 5px 10px;
  background: white;
  /*width: 100%;*/
  border-right: 3px solid #f4f4f4;
  font-size: 17px;
}
.heading-block-combi.active {
  background: #f7f7f7;
}
.heading-block-combi:last-of-type {
  border-right: 3px solid #f4f4f4;
  flex: 1;
}
.heading-block-combi .right-question-link-image {
  width: auto;
  height: 30px;
}
.heading-block-title {
  font-size: 10pt;
}
.combideal-steps__item-container .section-image-copy {
  width: 125px;
  height: auto;
}
.flex-column {
  flex-direction: column;
}
.module-body,
.combideal-steps__item-container,
.overflow-y-auto {
  /*flex: 1;*/
  overflow-y: auto;
}
.large-block-combi {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 0;
}
.productSavingPrice {
  color: #fb8402;
  font-weight: 500;
  font-size: 17px;
}
.productTotalPrice {
  font-size: 20px;
}
.productTotalTitle {
  color: #000000;
  font-weight: 600;
  font-size: 20px;
}
.danger-label,
.info-label {
  color: white;
  background-color: #d2322b;
  padding: 5px 15px;
  text-decoration: none;
  border-radius: 5px;
}
.info-label {
  background-color: #20a1ff;
}
.product-unit {
  line-height: 35px;
}
.combigroup-price-box .product-unit {
  line-height: 30px;
}
.rekentool-block + .rekentool-block {
  border-top: 1px solid #cdcdcd;
}
.action-color {
  color: #fb8402;
}
.savingsWrapper {
  color: #fb8402;
  font-weight: 500;
  font-size: 17px;
}
.packagesWrapper {
  position: absolute;
  bottom: 15px;
  right: 15px;
  font-size: 15px;
  font-weight: 500;
}
.prijs-block .small-price {
  font-size: 20px;
  font-weight: 700;
  vertical-align: text-top;
  margin-left: -4px;
}
.form-control {
  display: inline-block;
  width: auto;
  height: 35px;
  justify-content: flex-start;
  align-items: center;
  border-style: solid;
  border-width: 0px;
  border-color: #d8d8d8;
  border-radius: 2px;
  font-size: 15px;
  line-height: 30px;
  padding: 0;
}
.form-control .dropdown-form-toggle {
  -webkit-appearance: none;
  min-width: 250px;
  padding: 0 0 0 16px;
  height: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 2px;
  background-color: #fff;
  position: relative;
  text-align: left;
  z-index: 900;
}
.product-row {
  background: white;
  padding: 0;
  border: 1px solid #e7e7e7;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  justify-content: space-between;
}
.product-row .extra-item-image {
  width: 110px;
  height: 110px;
}
.product-row .usp-list {
  padding-top: 0;
  padding-bottom: 0;
  font-family: Karla, 'sans-serif';
  font-size: 15px;
  font-weight: 400;
}
.product-wrapper-grid .product-row {
  flex-direction: column;
}
.color-block.final .usp-list {
  background: none;
}
.product-row .small-triple-grid-center-block {
  flex: 1;
  align-self: center;
  /*align-self: start;*/
  padding: 5px 10px;
}
.combigroup-price-box {
  padding-right: 15px;
  flex-direction: column;
}
.final .combigroup-price-box {
  padding: 15px;
  text-align: right;
}
.combigroup-price-wrapper {
  /*text-align:right;*/
  /*margin-bottom:10px;*/
}
.combigroup-price-box input.input-number__input.placeholder-tekst {
  max-width: 110px;
  border-radius: 3px;
  min-height: 30px;
}
.combigroup-price-box .min {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  height: 30px;
}
.combigroup-price-box .plus {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  height: 30px;
}
.combigroup-price-box .m2-form {
  height: 30px;
}
.combigroup-unit {
  font-size: 9pt;
  font-weight: 600;
  line-height: 13px;
  color: #636363;
  /*margin-top:5px;*/
}
.combigroup-price {
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
}
.combigroup-old-price {
  display: block;
  color: #636363;
  font-size: 15px;
  line-height: 15px;
  margin-bottom: 0;
  text-decoration: line-through;
}
.final-block .combigroup-old-price {
  color: #fb8402;
}
.product-row-info {
  display: flex;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .combigroup-price {
    font-size: 15px;
    line-height: 13px;
  }
  .combigroup-old-price {
    font-size: 13px;
    line-height: 11px;
  }
  .product-row-info {
    padding-bottom: 8px;
  }
  .product-row .small-triple-grid-center-block {
    padding-top: 0;
    padding-bottom: 0;
  }
  .product-wrapper-grid .product-row {
    flex-direction: column;
    padding: 8px;
  }
  .product-wrapper-grid .combigroup-price-box {
    align-items: end;
  }
}
.large-block-combi .combideal-steps__item-container.cover-bottom:after {
  content: '';
  position: absolute;
  bottom: 81px;
  left: 0px;
  right: 0;
  /*height: 50px;*/
  height: 15px;
  background-image: linear-gradient(to top, #f7f7f7 0%, #f7f7f7 60%, transparent);
  pointer-events: none;
}
.combideal-steps__item-container.cover-bottom:not(.final-block) .product-row:last-of-type {
  margin-bottom: 0px;
}
.final-block .product-row .extra-item-image {
  width: 114px;
  height: 81px;
  border-color: #ebebeb;
}
.heading-block-combi span.text-left {
  display: none;
}
.heading-block-combi.active span.text-left {
  display: inline;
}
.gray-text-button {
  font-size: 13px;
  font-weight: 500;
  color: #6e6e6e;
  margin-top: 10px;
  text-align: center;
  cursor: pointer;
}
.ondervloer-popup-wrapper .large-image-text {
  background-color: #f7f7f7;
  padding: 35px;
}
.ondervloer-popup-wrapper .category-image {
  height: 171px;
}
.ondervloer-popup-wrapper .category-block-wrapper {
  padding-bottom: 110px;
}
.ondervloer-popup-wrapper .combideal-button.sales .alternatief-text {
  font-size: 28px;
}
.ondervloer-popup-wrapper .combideal-button.sales .alternatief-text span {
  font-size: 16px;
}
.wishlist-icon {
  width: 27px;
  top: 0;
  cursor: pointer;
}
#addCombiToCartForm .large-image-text {
  border-radius: 0;
}
@media screen and (max-width: 525px) {
  .actionsDivModal {
    flex-wrap: nowrap;
  }
  .actionsDivModal .full-green-button-copy.full {
    /*order:4!important;*/
    /*flex-basis:100%;*/
    margin-top: 10px;
  }
  .actionsDivModal .input-number__input.placeholder-tekst {
    min-height: 42px;
  }
  .actionsDivModal .section-image-copy {
    height: 100%;
  }
}
@media screen and (max-width: 479px) {
  .shop-content-combi-deal-block .basic-section-heading-wrapper {
    font-size: 20px;
    line-height: 25px;
  }
  .module-sidebar .large-image-text {
    padding: 30px 15px;
  }
  .popup-cross-circle {
    position: relative;
    top: 0px;
    width: 28px;
  }
  .cross-close-circle {
    margin-right: 15px;
    margin-top: 15px;
  }
  .ondervloer-popup-wrapper h4,
  .module-title h4 {
    margin-top: 0;
    padding-right: 40px;
    font-size: 13pt;
    line-height: 20px;
  }
  .ondervloer-popup-wrapper span.subtitle,
  .module-title span.subtitle {
    font-size: 11pt;
    font-weight: 500;
    color: #6f6f6f;
  }
  .heading-block-combi {
    padding: 5px 10px;
    align-items: start;
    font-size: 10pt;
  }
  .heading-block-combi.active {
    align-items: center;
    justify-content: center;
  }
  /*.heading-block-combi.active .left-question-link{*/
  /*    display:none;*/
  /*}*/
  .heading-block-combi .right-question-link-image {
    width: auto;
    min-width: 25px;
    height: 25px;
  }
  .heading-block-combi:last-of-type {
    flex: unset;
  }
  .product-row {
    flex-direction: column;
    padding: 8px;
  }
  .product-row-info {
    width: 100%;
  }
  .product-row .extra-item-image,
  .final-block .product-row .extra-item-image {
    width: 65px;
    height: 65px;
  }
  .product-row .usp-list {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 0;
  }
  .check-list.checklist-small {
    background-size: 12px;
    padding-left: 19px;
    background-position: 0% 16%;
  }
  .product-row .combigroup-price {
    font-size: 16px;
    line-height: 15px;
    display: inline-block;
    padding-top: 0;
    padding-bottom: 0;
  }
  .combigroup-price.freeProductBadge {
    color: #ffffff;
    line-height: 30px!important;
    border-radius: 0 3px 3px 0;
    margin-left: -8px;
  }
  .product-row .combigroup-price-box {
    flex-direction: unset;
    justify-content: space-between;
    padding: 8px 0 0 0;
    width: 100%;
    border-top: 1px solid #e7e7e7;
  }
  .final-block .product-row .combigroup-price-box {
    width: auto;
    flex-direction: column;
  }
  .combigroup-price-box .product-card__buttons,
  .product-row .combigroup-price-box .bordered-blue-button {
    margin-top: 0;
  }
  .large-block-combi .combideal-steps__item-container.cover-bottom:after {
    bottom: 81px;
    height: 15px;
  }
  .ondervloer-popup-wrapper {
    padding: 5px;
  }
  .ondervloer-popup-wrapper > .container {
    max-height: 100%;
    overflow: hidden;
  }
  .ondervloer-popup-wrapper .floating-filter-button {
    position: fixed;
  }
  .modal .large-image-text {
    max-height: 100vh;
    overflow: auto;
    height: auto;
    padding: 20px;
  }
  .ondervloer-popup-wrapper .large-image-text {
    padding: 20px 20px 90px 20px;
  }
  .ondervloer-popup-wrapper .full-buttons .bordered-blue-button {
    min-height: 38px;
  }
  .product-page {
    padding-top: 15px;
  }
  .shop-content-combi-deal-block {
    padding-top: 5px;
  }
  .rekentool .mini-heading {
    font-size: 11pt;
    font-family: Karla, 'sans-serif';
  }
  .product-row .mini-heading {
    font-size: 10pt;
    line-height: 15px;
    font-family: Karla, 'sans-serif';
  }
  .combigroup-price-wrapper {
    text-align: left;
    margin-bottom: 0;
  }
  .order-xs-2 {
    order: 2!important;
  }
}
.open-modal {
  overflow: hidden;
}
.ondervloer-popup-wrapper #productList {
  row-gap: 0;
}
@media (min-width: 991px) {
  .ondervloer-popup-wrapper #productList {
    row-gap: 16px;
  }
  .open-modal .top-menu-sticky > * {
    padding-right: 31px;
  }
  .open-modal .page-wrapper > *:not(.top-menu-sticky, .modal) {
    padding-right: 33px;
  }
  .ondervloer-popup-wrapper .product-row-info {
    flex-direction: column;
  }
  .ondervloer-popup-wrapper .combigroup-price-wrapper {
    margin-bottom: 0;
    text-align: left;
  }
  .ondervloer-popup-wrapper .combigroup-price-box {
    justify-content: space-between;
    width: 100%;
    padding-left: 15px;
    padding-bottom: 15px;
  }
  .ondervloer-popup-wrapper .product-row-info img {
    width: 100%;
    height: auto;
  }
  .ondervloer-popup-wrapper .small-triple-grid-center-block {
    padding: 5px 15px 15px 15px;
    width: 100%;
  }
  .ondervloer-popup-wrapper .filter-buttons {
    display: none;
  }
}
.ondervloer-popup-wrapper .filter-icon-button {
  width: 19px;
}
@media screen and (max-width: 479px) {
  .banner-small-below #w-node-_3d0fe6a7-548c-e450-965f-1b2f44293034-451f433e {
    grid-column-start: span 1;
    grid-column-end: span 1;
  }
  .banner-small-below .slide-bar-grid {
    grid-template-columns: 1fr 5fr 1fr;
  }
  .banner-small-below .basic-section-heading-smaller {
    font-size: 13px;
  }
  .banner-small-below .prijs-m2-first-small._9 {
    font-size: 14px;
  }
  .banner-small-below .large-price-small._0 {
    font-size: 15px;
  }
  .total-block-show {
    display: flex;
    flex-direction: column;
  }
  .usp-list.check-list {
    margin-bottom: 0px;
    padding-top: 1px;
    padding-bottom: 1px;
    background-image: url('/webshop/images/001-check_1.svg');
    background-position: 0% 40%;
  }
  .input.input-number__input.placeholder-tekst {
    min-width: 10px;
  }
}
div.quick-filters-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 26px auto 0;
  overflow-y: hidden;
}
div.quick-filters {
  width: fit-content;
  overflow-x: auto;
  white-space: nowrap;
  position: relative;
}
div.quick-filters ul {
  width: 100%;
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}
div.quick-filters ul li {
  list-style: none;
  position: relative;
  width: 170px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 15px 15px 20px -20px rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(0, 20, 39, 0.09);
}
div.quick-filters ul li img {
  max-width: 100%;
  height: auto;
}
div.quick-filters ul li div.title {
  text-align: center;
  background: #fff;
  padding: 10px 0;
}
div.quick-filters ul li a {
  list-style: none;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.font-17 {
  font-size: 17px;
}
.shop-banner-box {
  display: flex;
  gap: 15px;
}
.shop-banner-box .banner-large {
  flex-grow: 3;
  display: flex;
  align-items: end;
  max-height: 555px;
}
.shop-banner-box .small-banner-box {
  display: flex;
  flex-flow: column;
  gap: 15px;
  flex-grow: 1;
}
.shop-banner-box .banner-small,
.shop-banner-box .banner-large {
  background: #cccccc;
  padding: 0;
  position: relative;
}
.shop-banner-box img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
h3.banner-title {
  font-weight: 800;
  margin-bottom: 0;
  position: absolute;
  bottom: 34px;
  left: 25px;
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
}
@media screen and (max-width: 991px) {
  .shop-banner-box {
    flex-flow: column;
  }
  .shop-banner-box .banner-large {
    height: auto;
  }
  .shop-banner-box .banner-small {
    height: 175px;
  }
  .shop-banner-box .small-banner-box {
    flex-flow: row;
  }
  h3.banner-title {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .shop-banner-box .banner-large {
    height: auto;
  }
  .shop-banner-box .small-banner-box {
    /*flex-flow:column;*/
    overflow-x: auto;
  }
  .shop-banner-box .banner-small {
    height: auto;
    min-width: 250px;
  }
}
.pswp__img {
  background-color: #ffffff;
}
.dark-title.font-32 {
  font-size: 32px;
}
@media screen and (max-width: 479px) {
  .dark-title.font-32 {
    font-size: 30px;
  }
}
.product-gallery__featured .owl-carousel .owl-item img,
.product-gallery__carousel .owl-carousel .owl-item img {
  background: #ffffff;
}
.white-space-nowrap {
  white-space: nowrap;
}
.alert {
  position: relative;
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: .25rem;
}
.alert-primary {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}
.total-savings {
  background-color: rgba(39, 201, 122, 0.21);
  color: #00b97c;
  padding: 10px;
  border-radius: 5px;
}
.category-countdown-wrapper {
  background: black;
  color: white;
  text-align: center;
  font-family: 'Karla';
  font-size: 18px;
  font-weight: 500;
  padding: 9px;
}
.category-countdown-wrapper strong {
  font-weight: 900;
}
.countdown-banner .countDown {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 63%;
  padding-left: 30px;
}
.countdown-banner .countDown.bf-countdown {
  left: 65%;
  transform: translateX(-47%);
  top: 47%;
  padding-left: 0;
  scale: 0.79;
}
.countdown-banner .countDown.countdown-over {
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 26px;
  text-shadow: 0 0 20px black;
}
.countdown-banner .countDown #counter .clock span {
  padding: 16px 9px;
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .category-countdown-wrapper {
    font-size: 15px;
  }
  .countdown-banner .countDown #counter .clock {
    margin-bottom: 5px;
  }
  .countdown-banner .countDown #counter .clock span {
    padding: 9px 7px;
    font-size: 24px;
  }
  .countdown-banner .countDown.bf-countdown #counter .divider {
    font-size: 35px;
    margin-bottom: 28px;
  }
  .countdown-banner .countDown.bf-countdown #counter span {
    font-size: 0;
  }
  .countdown-banner .countDown.bf-countdown #counter .clock span {
    background: transparent;
    color: #ffffff;
    padding: 0;
    font-size: 24px;
  }
}
@media screen and (max-width: 525px) {
  .category-countdown-wrapper {
    font-size: 12px;
  }
  .countdown-banner .countDown #counter .clock {
    margin-bottom: 0;
  }
  .countdown-banner .countDown #counter span {
    font-size: 11px;
  }
  .countdown-banner .countDown #counter .clock span {
    padding: 5px;
    font-size: 20px;
  }
}
.omschrijving-block ul {
  list-style: none;
  /* Verwijdert de standaard bullet */
  padding-left: 0;
}
.omschrijving-block ul li {
  position: relative;
  padding-left: 30px;
  /* Zorgt voor ruimte voor de SVG */
}
.omschrijving-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  /*transform: translateY(-50%);*/
  width: 16px;
  /* Pas de breedte aan naar wens */
  height: 16px;
  /* Pas de hoogte aan naar wens */
  background-image: url('/webshop/images/001-check_1.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

/*# sourceMappingURL=app.css.map */
