/* Table Of Contents
----------------------------------------
Created date: 2018
Created by info@webbsnederland.nl

#01. Basic page styles
#02.  FORMS EN BTNS
#03.  FLOATS ALIGNS ETC
#04. Print styles from HTML5 Boilerplate

----------------------------------------*/
/* Placeholder in inputs 
---------------------------------------------------------------------------- */
/* ==========================================================================
   01. Basic page styles
   ========================================================================== */
*,
*:before,
*:after {
  box-sizing: border-box;
}

/*
 * Remove text-shadow in selection highlight:
 */
::selection {
  background: #f1f1f1;
  text-shadow: none;
}

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  /* Prevents iOS text size adjust after orientation change */
  -ms-text-size-adjust: 100%;
}

body {
  outline: 0;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.ie {
  letter-spacing: 0;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  position: relative;
  margin: 0 auto;
  display: block;
  border: 0;
  vertical-align: baseline;
}

section,
footer,
header,
main {
  width: 100%;
}

section:before,
footer:before,
header:before,
main:before {
  content: " ";
  display: table;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
dt,
dd,
li,
table,
th,
td,
form,
select,
option,
address,
pre,
strong,
em,
caption,
cite,
code,
dfn,
var {
  font-size: 100%;
  font-style: normal;
  font-weight: normal;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

/* Txt styles*/
p {
  margin-bottom: 1.3em;
  word-break: break-word;
}

b,
strong {
  font-weight: bold;
}

small {
  font-size: 80%;
}

del {
  text-decoration: line-through;
}

abbr,
acronym {
  border-bottom: 1px dotted #d4d4d4;
}

mark {
  background: #ff0;
  color: #000;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

pre,
code,
kbd,
tt,
var {
  border: 1px solid #d4d4d4;
  font-size: 0.9em;
  line-height: 1.3;
  margin-bottom: 1em;
  padding: 1em;
  overflow: auto;
  max-width: 100%;
}

/* Links */
a,
a:visited {
  margin: 0;
  padding: 0;
  font-size: 100%;
  background: transparent;
  color: #4a4a4a;
}

a:focus {
  -moz-outline-style: none;
  outline: none;
}

a:hover,
a:active {
  outline: 0;
}

/* IMG */
img {
  border: 0;
  max-width: 100%;
  height: auto;
  background-color: transparent;
}

figure {
  margin: 0;
}

legend {
  border: 0;
  padding: 0;
}

figcaption {
  color: #777;
  padding-top: 0.5rem;
  text-align: left;
  font-size: 14px;
  font-style: normal;
}

/* TABLES */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  margin-bottom: 1.5em;
  border: 1px solid #d4d4d4;
}

caption,
th {
  text-align: left;
}

th {
  text-align: left;
  background-color: #f6f4f1;
  font-weight: 600;
}

td,
th {
  padding: 0.3em;
  border-top: 1px solid #d4d4d4;
}

/*
tbody tr:nth-child(odd) {  background-color: #fff;}
tbody tr:nth-child(even) { background-color: #f1f0f0;}
*/
/*line in wp*/
hr {
  display: block;
  height: 1px;
  border: 0;
  margin: 1em 0 2em;
  padding: 0;
  background-color: #d4d4d4;
  opacity: 0.3;
  border-bottom: 1px solid #d4d4d4 !important;
  max-width: 250px !important;
}

/*main list types */
ul ul,
ol ul,
ul ol,
ol ol,
dl ul,
dl ol,
dl dl,
td td {
  font-size: 100%;
}

ol {
  display: block;
  margin-bottom: 1em;
  margin-left: 20px;
}

ul {
  display: block;
  margin-bottom: 1em;
  margin-left: 20px;
  list-style-position: outside;
  list-style: disc;
}

ul {
  list-style-type: disc;
  list-style-position: outside;
}

li {
  display: list-item;
  margin-left: 0;
  margin-bottom: 0.1em;
  text-align: -webkit-match-parent;
}

ol {
  list-style-type: decimal;
}

/* EMBEDS */
embed,
iframe,
object,
video {
  max-width: 100%;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

canvas {
  -ms-touch-action: double-tap-zoom;
}

/* Blockquotes */
blockquote {
  position: relative;
  word-break: break-word;
  padding: 0 30px 0 75px;
  quotes: none;
}

blockquote:before {
  color: #000;
  font-family: "Material Icons";
  content: "\e244";
  line-height: 0;
  font-size: 60px;
  position: absolute;
  top: 0;
  left: -3px;
  display: inline-block;
  opacity: 0.3;
  margin: 0;
  padding: 0 0 0 20px;
}

blockquote:after {
  display: none;
}

blockquote p {
  display: inline;
  line-height: 1.6;
}

q {
  quotes: none;
  margin: 0;
  padding: 0;
}

q:before,
q:after {
  content: "";
  content: none;
  margin: 0;
  padding: 0;
}

/* ==========================================================================
   02. FORMS EN BTNS
   ========================================================================== */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

input,
textarea,
select,
button {
  text-rendering: auto;
  color: initial;
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
  text-indent: 0px;
  text-shadow: none;
  display: inline-block;
  text-align: start;
  min-height: 40px;
  padding: 2px 5px;
  font-size: 100%;
  /* Corrects font size not being inherited in all browsers */
  margin: 0;
  /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
  vertical-align: middle;
  /* Improves appearance and consistency in all browsers */
}

input,
textarea,
select,
button,
meter,
progress {
  -webkit-writing-mode: horizontal-tb;
}

button {
  -webkit-appearance: none;
}

button,
input {
  line-height: normal;
  /* Addresses FF3/4 setting line-height using !important in the UA stylesheet */
  *overflow: visible;
  /* Corrects inner spacing displayed oddly in IE6/7 */
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #bcc3cc;
  background: #ccc;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
  /* Improves usability and consistency of cursor style between image-type 'input' and others */
  -webkit-appearance: button;
  /* Corrects inability to style clickable 'input' types in iOS */
  color: inherit;
  font: inherit;
  line-height: 1;
  padding: 0.4em 2em;
  text-shadow: none;
}

input[type="submit"] {
  display: inline-block;
  background-color: #000 !important;
  color: #fff !important;
  border: none;
  border-radius: 4px;
  padding: 0 30px;
  height: 50px;
  margin-left: 10px;
  margin-top: 1em;
  -webkit-transition: background-color 500ms ease-out;
  -moz-transition: background-color 500ms ease-out;
  -o-transition: background-color 500ms ease-out;
  transition: background-color 500ms ease-out;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button:hover,
html input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #bcc3cc;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  /*
  -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), inset 0 15px 17px rgba(255,255,255,0.8), inset 0 -5px 12px rgba(0,0,0,0.02);
  -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), inset 0 15px 17px rgba(255,255,255,0.8), inset 0 -5px 12px rgba(0,0,0,0.02);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), inset 0 15px 17px rgba(255,255,255,0.8), inset 0 -5px 12px rgba(0,0,0,0.02);
  */
}

input,
select {
  vertical-align: middle;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

button:focus,
html input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
html input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  /*
  	-webkit-box-shadow: inset 0 -1px 0 rgba(255,255,255,0.5), inset 0 2px 5px rgba(0,0,0,0.15);
  	-moz-box-shadow: inset 0 -1px 0 rgba(255,255,255,0.5), inset 0 2px 5px rgba(0,0,0,0.15);
  	box-shadow: inset 0 -1px 0 rgba(255,255,255,0.5), inset 0 2px 5px rgba(0,0,0,0.15);
  	*/
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* Addresses box sizing set to content-box in IE8/9 */
  padding: 0;
  /* Addresses excess padding in IE8/9 */
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
  -webkit-appearance: none;
}

input[type="text"],
input[type="email"],
textarea {
  font-size: 100%;
  /* Corrects font size not being inherited in all browsers */
  margin: 0;
  overflow: auto;
  /* Removes default vertical scrollbar in IE6/7/8/9 */
  padding: 0 10px;
  vertical-align: top;
  resize: vertical;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  background: #fff;
}

/* Input placeholders */
*::-webkit-input-placeholder {
  color: #999;
  font-style: italic;
}

/* WebKit browsers */
*:-moz-placeholder {
  color: #999;
  opacity: 1;
  font-style: italic;
}

/* Mozilla Firefox 4 to 18 */
*::-moz-placeholder {
  color: #999;
  opacity: 1;
  font-style: italic;
}

/* Mozilla Firefox 19+ */
*:-ms-input-placeholder {
  color: #999;
  font-style: italic;
}

/* Internet Explorer 10+ */
*::-ms-input-placeholder {
  color: #999;
  font-style: italic;
}

/* Internet Explorer 10+ */
/* ==========================================================================
  03. FLOATS ALIGNS ETC
   ========================================================================== */
/* # align wywiwyg
---------------------------------------------------------------------------- */
.alignleft {
  float: left;
  margin: 0 1.5em 1em 0;
}

.alignright {
  float: right;
  margin: 0 0 1em 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* # Overige
---------------------------------------------------------------------------- */
.valignBaseline {
  vertical-align: baseline;
}

.attention {
  color: #4a4a4a;
}

.required {
  color: #ff6600;
}

.smallText {
  font-size: 83%;
}

.offscreen {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 1px;
}

.hidden {
  display: none;
}

/* # HIDE OP MOBIEL 
---------------------------------------------------------------------------- */
@media only screen and (max-width: 600px) {
  .hideMobile {
    display: none !important;
  }
}
/* # clearfix 
---------------------------------------------------------------------------- */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
}

/* Hides from IE-mac \*/
* html .clearfix {
  *zoom: 1;
  height: 1%;
}

.clearfix {
  display: block;
}

/* End hide from IE-mac */
/* ==========================================================================
   04. Print styles from HTML5 Boilerplate
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }

  /* Black prints faster: h5bp.com/s */
  header,
  footer {
    display: none;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  /* Don't show links for images, or javascript/internal links */
  pre,
  blockquote {
    border: 1px solid #4a4a4a;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  /* h5bp.com/t */
  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}
/* ==== BASE LAYOUT ==== */
.main-layout {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  /*min-height: 100vh;*/
  /*background-color:#fff;*/
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* ==== CONTAINER DIV - MAX WIDTH 
---------------------------------------------------------------------------- */
.container {
  position: relative;
  width: 100%;
  max-width: 1240px;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 1.5rem;
  vertical-align: top;
}

.container:before,
.container:after {
  content: " ";
  display: table;
}

.entry-content {
  max-width: 1240px;
  margin: 3rem auto;
}
.entry-content .no-top-margin {
  margin-top: -3rem;
}
.entry-content .no-bottom-margin {
  margin-top: 0;
  margin-bottom: -3rem;
}

/* ==== FLEX GRID 
---------------------------------------------------------------------------- */
.grid-row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row;
  flex-direction: row;
  align-content: flex-start;
  justify-content: center;
  margin-right: -1.5rem;
  margin-left: -1.5rem;
  width: auto;
}

.grid-row:after {
  content: "";
  display: table;
  clear: both;
}

/* ==== COLUMNS
---------------------------------------------------------------------------- */
.col {
  position: relative;
  max-width: 100%;
  min-width: 0;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  text-align: left;
  -webkit-flex-basis: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  /* 0 ; auto; item width will be set by its contents */
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

/* GUTTERS */
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col {
  padding-right: 0;
  padding-left: 0;
}

/* SPANS */
.span-1 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 8.333333%;
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.span-2 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 16.666667%;
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.span-3 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25%;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.span-4 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.333333%;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.span-5 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 41.666667%;
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.span-6 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.span-7 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 58.333333%;
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.span-8 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 66.666667%;
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.span-9 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 75%;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.span-10 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 83.333333%;
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.span-11 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 91.666667%;
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.span-12 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (max-width: 980px) {
  .span-1,
  .span-2,
  .span-3,
  .span-4,
  .span-5,
  .span-6,
  .span-7,
  .span-8,
  .span-9,
  .span-10,
  .span-11,
  .span-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
/* ****************************************************
Created date: 2020
Created by info@webbsnederland.nl
***************************************************** */
/**
* THEME STYLE AND GUTENBERG EDITOR
*
*/
/* DEFAULT FONTS
---------------------------------------------------------------------------- */
/* Body 
---------------------------------------------------------------------------- */
body {
  background-color: #f9f9f9;
  color: #5d5b5b;
  font-style: normal;
  font-size: 16.5px;
  line-height: 1.75;
  text-align: left;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  height: 100%;
  width: 100%;
  min-width: 320px;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.editor-writing-flow {
  background-color: #f9f9f9;
  color: #4a4a4a;
  font-style: normal;
  font-size: 16.5px;
  line-height: 1.75;
  text-align: left;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

/* HEADINGS
---------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #343434;
  font-family: "Roboto", sans-serif;
  margin: 0.5rem 0 0.5rem 0;
  padding: 0;
  line-height: 1.45;
  font-size: 1.1em;
  display: block;
  font-weight: 900;
  font-style: normal;
  letter-spacing: 0.2px;
}

h1 {
  font-size: 2.55em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.15em;
  line-height: 1.25;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.45em;
  line-height: 1.3;
}

.wp-block-column h1 {
  margin-top: 0;
  max-width: 450px;
}
.wp-block-column h2 {
  margin-top: 0;
  max-width: 450px;
}
.wp-block-column h3 {
  margin-top: 0;
  max-width: 450px;
}

.wp-block-cover h1 {
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}
.wp-block-cover h2 {
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
  font-size: 2.25em;
}
.wp-block-cover h3 {
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}

@media (max-width: 650px) {
  h1 {
    font-size: 2.05em;
    line-height: 1.25em;
    letter-spacing: 0;
  }

  h2 {
    font-size: 1.85rem;
  }
}
/*Links  - FRONTEND */
.entry-content a,
.entry-content a:visited {
  color: #343434;
  cursor: pointer;
  text-decoration: underline;
}

.entry-content a:hover,
.entry-content a:active {
  color: #000;
  text-decoration: underline;
}

/* OVERIGE =======================
---------------------------------------------------------------------------- */
/* WIDGET - BREADCRUMBS
---------------------------------------------------------------------------- */
.breadcrumbs {
  font-size: 14px;
  display: block;
  padding: 0;
  margin: 1rem 0 1rem;
  font-weight: 400;
  color: #828282;
}

.breadcrumbs a {
  font-weight: 400;
  text-decoration: none;
  margin: 0;
  color: #36454f;
}

.breadcrumbs i {
  color: #ddd;
  font-size: 16px;
  vertical-align: middle;
}

/* PAGINATION
---------------------------------------------------------------------------- */
.pagination {
  display: inline-block;
  width: 100%;
  float: left;
  clear: both;
  text-align: center;
  margin: 2em 0;
}

.pagination .page-numbers {
  background: #4a4a4a;
  color: #fff;
  display: inline-block;
  width: auto;
  margin: 4px 4px 4px 0;
  padding: 15px 18px 14px 18px;
  text-decoration: none;
}

.pagination .page-numbers:hover {
  background: #b4a796;
  color: #fff;
  text-decoration: none;
}

.pagination .page-numbers.current {
  background: #b4a796;
}

/* FORM STYLES */
/*
<input type="date">
<input type="datetime">
<input type="datetime-local">
<input type="time">
<input type="week">
<input type="file">
<input type="hidden">
<input type="image">
<input type="month">
<input type="range">
<input type="reset">
*/
input[type="checkbox"],
input[type="radio"] {
  margin-right: 20px;
  min-height: 10px;
  border: 2px solid #ddd;
}

.ginput_container_radio input[type="text"] {
  max-width: 250px !important;
}

select {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
  display: inline-block;
  background-color: #fff;
  border: 1px solid #ddd;
  color: #4a4a4a;
  font-size: 1em;
  height: 45px;
  line-height: 45px;
  margin-bottom: 0;
  overflow: visible;
  padding: 0 1rem;
  width: 100%;
  outline: none;
}

body input,
body select,
body textarea {
  color: #4a4a4a !important;
}

body textarea:focus,
body input:focus {
  color: #000 !important;
}

/* input::ALL*/
body .gform_wrapper select,
body .gform_wrapper textarea,
body .gform_wrapper input[type="text"],
body .gform_wrapper input[type="email"],
body .gform_wrapper input[type="tel"],
body .gform_wrapper input[type="url"],
body .gform_wrapper input[type="search"],
body .gform_wrapper input[type="password"],
body .gform_wrapper input[type="number"],
body .gform_wrapper input[type="datetime"],
body .gform_wrapper input[type="datetime-local"],
body .gform_wrapper input[type="date"],
body .gform_wrapper input[type="month"],
body .gform_wrapper input[type="time"],
body .gform_wrapper input[type="week"] {
  width: 100% !important;
  max-width: 450px;
  background-color: #fff;
  -webkit-appearance: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  box-sizing: border-box;
  background-clip: padding-box;
  border: 1px solid #ddd;
  color: #4a4a4a;
  font-size: 1em;
  height: 45px;
  line-height: 45px;
  margin-bottom: 0;
  overflow: visible;
  padding: 0 1rem;
  width: 100%;
  outline: none;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
body .gform_wrapper select:focus,
body .gform_wrapper textarea:focus,
body .gform_wrapper input[type="text"]:focus,
body .gform_wrapper input[type="email"]:focus,
body .gform_wrapper input[type="tel"]:focus,
body .gform_wrapper input[type="url"]:focus,
body .gform_wrapper input[type="search"]:focus,
body .gform_wrapper input[type="password"]:focus,
body .gform_wrapper input[type="number"]:focus,
body .gform_wrapper input[type="datetime"]:focus,
body .gform_wrapper input[type="datetime-local"]:focus,
body .gform_wrapper input[type="date"]:focus,
body .gform_wrapper input[type="month"]:focus,
body .gform_wrapper input[type="time"]:focus,
body .gform_wrapper input[type="week"]:focus {
  border-color: #d4d4d4;
  color: #000;
  /* make it glow! */
  -webkit-box-shadow: 0px 0px 4px #ccc;
  -moz-box-shadow: 0px 0px 4px #ccc;
  box-shadow: 0px 0px 4px #ccc;
}

/* TEKST SELECTIEKLEUR */
::selection {
  background: #a9a9a9;
  /* WebKit/Blink Browsers */
}

::-moz-selection {
  background: #a9a9a9;
  /* Gecko Browsers */
}

/* ANIMATIE ON PAGE LOAD */
[data-animate-scroll] {
  transition: transform 0.4s ease, opacity 1s ease;
  transform: translateY(-80px);
  opacity: 0;
}

[data-animate-scroll]:nth-child(2) {
  transition-delay: 0.05s;
}

[data-animate-scroll]:nth-child(3) {
  transition-delay: 0.1s;
}

[data-animate-scroll]:nth-child(4) {
  transition-delay: 0.15s;
}

[data-animate-scroll]:nth-child(5) {
  transition-delay: 0.2s;
}

[data-animate-scroll].animate-scroll {
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
  opacity: 1;
}

/* General GF Date Picker */
#ui-datepicker-div select {
  height: 30px;
  margin: 0 10px;
  width: auto;
  padding: 0 10px;
  line-height: 1;
}
#ui-datepicker-div table {
  width: 100%;
}
#ui-datepicker-div table td,
#ui-datepicker-div table th {
  text-align: center;
}
#ui-datepicker-div table td a {
  display: block;
}

/**
* THEME STYLE AND GUTENBERG EDITOR
*
*/
/* DEFAULTS
---------------------------------------------------------------------------- */
.editor-post-title__block .editor-post-title__input {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  border-bottom: 2px solid #ccc;
  position: relative;
}

/* Post title */
.wp-block {
  max-width: calc(1140px - 3rem);
  font-family: "Roboto", sans-serif;
}

.alignfull .wp-block-group__inner-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.alignfull {
  margin: 0 calc(50% - 50vw) 60px;
  max-width: 100vw;
  width: 100vw;
}

.alignwide {
  margin: 0 auto 60px;
  padding: 0;
  max-width: 100%;
  width: 100%;
}

/* image block styles for example sake */
.wp-block img {
  border-radius: 4px;
}

.wp-block-image {
  max-width: 100%;
  margin-bottom: 1em;
  margin-left: 0;
  margin-right: 0;
}

.wp-block-image.alignfull img,
.wp-block-image.alignwide img {
  width: 100%;
}

.wp-block-group.has-background {
  padding: 50px;
}

.wp-block-columns {
  margin-bottom: 60px;
}

p.small {
  max-width: 600px !important;
  margin: 0 auto 1rem;
}
p.small.has-text-align-left {
  margin: 0 0 1rem;
}
p.small.has-text-align-right {
  margin: 0 0 1rem;
}

p.medium {
  max-width: 750px !important;
  margin: 0 auto 1rem;
}
p.medium.has-text-align-left {
  margin: 0 0 1rem;
}
p.medium.has-text-align-right {
  margin: 0 0 1rem;
}

@media only screen and (max-width: 650px) {
  .alignwide,
  .alignfull {
    margin-bottom: 30px;
  }

  .wp-block-group.has-background {
    padding: 20px;
  }

  .wp-block-columns {
    margin-bottom: 30px;
  }

  .wp-block-column {
    padding: 10px 0;
  }

  .wp-block-columns .wp-block-cover {
    border-radius: 4px;
  }

  .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media {
    margin-bottom: 0.5rem;
  }

  /*.wp-block-media-text .wp-block-media-text__content{padding:0;}*/
  .wp-block-media-text .wp-block-media-text__content {
    padding: 0;
  }

  .wp-block-media-text.has-background .wp-block-media-text__content {
    padding: 0 8%;
  }
}
/* Gutenberg color options  
--------------------------------------------- */
.has-wit-color {
  color: #ffffff !important;
}

.has-wit-color:after {
  color: #ffffff !important;
}

.has-wit-background-color {
  background-color: #ffffff !important;
}

.has-default-color {
  color: #343434 !important;
}

.has-default-color:after {
  color: #343434 !important;
}

.has-default-background-color {
  background-color: #343434 !important;
}

.has-beige-color {
  color: #eeeeee !important;
}

.has-beige-color:after {
  color: #eeeeee !important;
}

.has-beige-background-color {
  background-color: #eeeeee !important;
}

.has-grijs-color {
  color: #555555 !important;
}

.has-grijs-color:after {
  color: #555555 !important;
}

.has-grijs-background-color {
  background-color: #555555 !important;
}

.has-zwart-color {
  color: #000000 !important;
}

.has-zwart-color:after {
  color: #000000 !important;
}

.has-zwart-background-color {
  background-color: #000000 !important;
}

/* GUTENBERG BLOKKEN
---------------------------------------------------------------------------- */
/* TABLE*/
.wp-block-table {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
.wp-block-table table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 1px solid #d4d4d4;
  background-color: #fff;
  border-radius: 0;
  margin-bottom: 0;
}
.wp-block-table table thead {
  border: none;
}
.wp-block-table table tr th {
  font-weight: 600;
  border: 1px solid #d4d4d4;
}
.wp-block-table table tr td {
  padding: 0.3em;
  border: 1px solid #d4d4d4;
}
.wp-block-table table tfoot {
  border: 1px solid #d4d4d4;
}
.wp-block-table table tfoot td {
  font-weight: 600;
}

/* BUTTONS block
--------------------------------------------- */
.wp-block-button a.wp-block-button__link,
.wp-block-button .wp-block-button__link {
  text-decoration: none;
  padding: 0.85rem 1.35rem;
  color: #fff;
  background-color: #343434;
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  border-radius: 4px;
  line-height: 1.5;
}

.wp-block-button a.wp-block-button__link:hover,
.wp-block-button .wp-block-button__link:hover {
  text-decoration: none;
  color: #fff;
}

.wp-block-button.is-style-outline a.wp-block-button__link,
.wp-block-button.is-style-outline .wp-block-button__link {
  background-color: transparent;
  color: #343434;
}

.wp-block-button a.wp-block-button__link:after {
  font-family: "Material Icons";
  content: "\e5c8";
  padding-left: 30px;
  float: right;
  font-size: 18px;
  color: #fff;
  line-height: 1;
}

.wp-block-button a.wp-block-button__link.has-wit-background-color:after {
  color: #434343;
}

/* BUTTONS
---------------------------------------------------------------------------- */
button.btn,
a.btn,
.entry-content button.btn,
.entry-content a.btn {
  text-decoration: none;
  padding: 0.85rem 1.35rem;
  color: #fff;
  background-color: #343434;
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  border-radius: 4px;
  line-height: 1.5;
  border: none;
  font-family: "Roboto", sans-serif;
  etter-spacing: 0.2px;
  display: inline-block;
  /*white-space: nowrap; */
  /* gaat te breed op mobiel 350px;*/
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: background-color 500ms ease-out;
  -moz-transition: background-color 500ms ease-out;
  -o-transition: background-color 500ms ease-out;
  transition: background-color 500ms ease-out;
}

.button.btn:after,
a.btn::after {
  font-family: "Material Icons";
  content: "\e5c8";
  padding-left: 30px;
  float: right;
  font-size: 18px;
  color: #fff;
  line-height: 1;
}

button.btn:focus,
a.btn:hover {
  background-color: #000;
  outline: 0;
  border: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

@media only screen and (max-width: 650px) {
  .wp-block-button a.wp-block-button__link:after,
  .button.btn:after,
  a.btn::after {
    padding-left: 20px;
  }
}
/**
* THEME STYLE AND GUTENBERG EDITOR
*
*/
.flickity-prev-next-button {
  width: 50px;
  height: 50px;
}

/* BANNER - BLOK
---------------------------------------------------------------------------- */
#blok-form-banner {
  width: 100%;
  display: inline-block;
  position: relative;
  margin: 0 auto 100px;
}
#blok-form-banner .banner-afb {
  display: inline-block;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background-color: #343434;
  height: 450px;
}
#blok-form-banner .banner-afb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#blok-form-banner .banner-vlak {
  position: absolute;
  bottom: -40px;
  left: 50px;
  min-height: 250px;
  border-radius: 4px;
  width: 100%;
  max-width: 500px;
  padding: 30px 40px;
}
#blok-form-banner .banner-vlak.v-rechts {
  left: auto;
  right: 50px;
}

@media only screen and (max-width: 600px) {
  #blok-form-banner {
    margin: 0 auto 40px;
  }
  #blok-form-banner .banner-afb {
    height: 250px;
    border-radius: 4px;
  }
  #blok-form-banner .banner-vlak {
    position: relative;
    bottom: 0;
    left: 0;
    min-height: auto;
    padding: 20px;
  }
  #blok-form-banner .banner-vlak.v-rechts {
    right: 0;
  }
}
/* POST GRID - BLOK
---------------------------------------------------------------------------- */
#berichten-grid {
  /* display: flex; flex-direction: row;*/
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
  -webkit-column-width: 200px;
  -moz-column-width: 200px;
  column-width: 200px;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 60px;
  /*defaults*/
}
#berichten-grid .wp-block-group__inner-container {
  max-width: 100%;
}
#berichten-grid a {
  padding: 10px;
  margin: 0 auto 40px;
  text-decoration: none;
  cursor: pointer;
  break-inside: avoid-column;
  position: relative;
  display: grid;
  flex-grow: 1;
  flex-basis: 0;
  align-content: flex-start;
}
#berichten-grid figure {
  min-height: 200px;
  display: inline-block;
  width: 100%;
  background-color: #eee;
  border-radius: 4px;
  overflow: hidden;
  margin: 0;
}
#berichten-grid figure img {
  min-height: 200px;
  opacity: 0.9;
  transition: opacity 0.4s linear;
  width: 100%;
}
#berichten-grid strong {
  display: inline-block;
  margin: 0.5rem 0;
  width: 100%;
  text-decoration: underline;
}
#berichten-grid .blog-introtekst {
  display: block;
  font-size: 0.9em;
}
#berichten-grid a:hover img {
  opacity: 1;
}
#berichten-grid a:hover strong {
  text-decoration: underline;
}
#berichten-grid span {
  display: inline-block;
  text-align: center;
  width: 30px;
  font-weight: 600;
  color: #fff;
  position: absolute;
  left: 10px;
  top: 10px;
  text-transform: uppercase;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}
#berichten-grid span em {
  font-size: 0.9em;
  display: block;
  font-style: normal;
  border-top: 1px solid #fff;
}
#berichten-grid.grid-3 {
  -webkit-column-count: 4;
  -moz-column-count: 4;
  column-count: 4;
  display: flex;
  margin: 1rem auto;
}
#berichten-grid.grid-3 a {
  margin: 0 0 20px;
}
#berichten-grid.grid-3 a figure img {
  object-fit: cover;
  height: 200px;
}

@media only screen and (max-width: 950px) {
  #berichten-grid {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
  #berichten-grid a {
    margin-bottom: 20px;
    display: inline-grid;
    padding: 0;
  }
  #berichten-grid.grid-3 {
    display: block;
  }
  #berichten-grid.grid-3 a {
    display: grid;
  }
}
@media only screen and (max-width: 600px) {
  #berichten-grid {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
    margin: 0;
  }
  #berichten-grid a {
    display: block;
  }
  #berichten-grid.grid-3 {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
    margin: 0;
  }

  #berichten-grid figure img {
    height: 185px;
  }
}
a.featured-bericht {
  max-width: 500px;
  margin: 15px;
  padding: 0;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
}
a.featured-bericht figure {
  min-height: 200px;
  display: inline-block;
  width: 100%;
  background-color: #343434;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  margin: 0;
}
a.featured-bericht figure img {
  height: 220px;
  object-fit: cover;
  width: 100%;
  opacity: 0.8;
  transition: opacity 0.3s, visibility 0.3s;
}
a.featured-bericht strong {
  display: inline-block;
  float: left;
  margin: 0.5rem 0;
  width: 100%;
}
a.featured-bericht:hover figure img {
  opacity: 1;
}
a.featured-bericht:hover strong {
  text-decoration: underline;
}
a.featured-bericht em {
  display: inline-block;
  text-align: left;
  font-style: normal;
  color: #fff;
  font-weight: 700;
  font-size: 1.1em;
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  text-shadow: 0px 0px 2px rgba(150, 150, 150, 0.5);
}

@media only screen and (max-width: 690px) {
  a.featured-bericht figure img {
    height: 185px;
  }
}
.authordiv {
  display: inline-block;
  padding: 20px;
  margin: 3em auto;
  width: 100%;
  text-align: center;
  background-color: #fff;
}

.authordiv .cats {
  margin-bottom: 1em;
}

ul.socialshare {
  display: inline-block;
  width: 100%;
  position: relative;
  z-index: 5;
  padding: 0;
  margin: 0.5rem 0 0;
  list-style: none;
  line-height: inherit;
  white-space: nowrap;
  text-align: center;
}

ul.socialshare li {
  display: inline-block;
  margin: 0 5px 0 0;
  padding: 0;
}

ul.socialshare li a {
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #fff;
  background-color: #343434;
  border: 2px solid #343434;
  display: inline-block;
  padding: 0;
  margin: 0;
  vertical-align: middle;
  position: relative;
  border-radius: 50px;
  height: 50px;
  width: 50px;
  line-height: 46px;
  font-size: 16px;
  text-align: center;
}

ul.socialshare li a svg {
  height: 20px;
  fill: #fff;
  color: #fff;
}

ul.socialshare li a:hover {
  background-color: #fff;
}

ul.socialshare li a:hover svg {
  fill: #343434;
}

/* btn types */
ul.socialshare li.s-whatsapp {
  display: none;
}

@media only screen and (max-width: 690px) {
  ul.socialshare li a {
    border-radius: 40px;
    height: 40px;
    width: 40px;
    line-height: 36px;
    font-size: 14px;
  }

  ul.socialshare li a svg {
    height: 14px;
  }

  .socialshare {
    font-size: 0.9em;
  }

  ul.socialshare li.s-whatsapp {
    display: inline-block;
  }
}
#nav-single {
  display: inline-block;
  width: 100%;
  position: relative;
  padding: 0;
  margin: 0.5rem 0 0;
}

#nav-single span {
  display: inline-block;
  width: 50%;
  max-width: 350px;
  margin: 1em 0;
}

#nav-single .nav-previous {
  float: left;
  text-align: left;
}

#nav-single .nav-next {
  float: right;
  text-align: right;
}

@media only screen and (max-width: 690px) {
  #nav-single span {
    display: inline-block;
    width: 100%;
    max-width: 100%;
  }
}
/* SITE HEADER
---------------------------------------------------------------------------- */
#nav-header {
  display: inline-block;
  width: 100%;
  text-align: center;
  z-index: 500;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.05);
}

#nav-header .container {
  padding-top: 15px;
  padding-bottom: 15px;
}

#nav-header a.logo {
  display: inline-block;
  float: left;
  position: relative;
  z-index: 600;
}
#nav-header a.logo img {
  position: relative;
  width: 100%;
  max-width: 300px;
  float: left;
  padding: 5px 0;
}

@media only screen and (max-width: 950px) {
  #nav-header {
    position: relative !important;
  }

  .main-layout {
    margin-top: 0 !important;
  }

  #nav-header .container {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
@media only screen and (max-width: 600px) {
  #nav-header {
    padding: 0;
  }

  #nav-header a.logo {
    padding: 15px 0;
    width: 100%;
  }
  #nav-header a.logo img {
    max-width: 200px;
    padding: 0;
  }
}
.hoofdmenu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 50;
}
.hoofdmenu ul {
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right;
}
.hoofdmenu ul li {
  margin: 10px 10px;
  display: inline-block;
  transition-duration: 0.5s;
  position: relative;
  border-bottom: 1px solid #fff;
  padding: 0;
}
.hoofdmenu ul li:hover {
  cursor: pointer;
  border-bottom: 1px solid #ccc;
}
.hoofdmenu ul li a {
  display: inline-block;
  padding: 0 5px;
  height: 40px;
  line-height: 40px;
  font-size: 1em;
  font-weight: 700;
  color: #343434;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.hoofdmenu ul li a:hover {
  text-decoration: none;
  color: #000;
}
.hoofdmenu ul li ul.sub-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 40px;
  left: -20px;
  transition: all 0.5s ease;
  margin: 0;
  display: none;
  width: 250px;
  padding: 0;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px;
  text-align: left;
}
.hoofdmenu ul li ul.sub-menu li {
  display: inline-block;
  width: 100%;
  padding: 0;
  margin: 0;
  border-top: 1px dotted #ccc;
}
.hoofdmenu ul li ul.sub-menu li:first-child {
  border: none;
}
.hoofdmenu ul li ul.sub-menu li.menu-item-has-children:after {
  display: none !important;
}
.hoofdmenu ul li ul.sub-menu li a {
  height: auto;
  line-height: 1.2;
  padding: 10px 15px;
  width: 100%;
  font-weight: 400;
}
.hoofdmenu ul li ul.sub-menu li a:hover {
  background-color: #f1f1f1;
}
.hoofdmenu ul li ul.sub-menu li ul.sub-menu {
  display: none !important;
}
.hoofdmenu ul li:hover ul {
  visibility: visible;
  opacity: 1;
  display: block;
}
.hoofdmenu .current-page-ancestor,
.hoofdmenu .current-menu-item {
  border-bottom: 1px solid #000;
}
.hoofdmenu .current-page-ancestor a,
.hoofdmenu .current-menu-item a {
  text-decoration: none;
  color: #000;
}
.hoofdmenu .menu-item-has-children:after {
  font-family: "Material Icons";
  content: "\e313";
  color: #ccc;
  font-size: 16px;
  font-weight: 900;
  vertical-align: middle;
  line-height: 40px;
  padding-right: 5px;
}

@media only screen and (max-width: 950px) {
  .hoofdmenu {
    position: fixed;
    justify-content: flex-start;
    align-items: flex-start;
    top: 50px;
    left: auto;
    right: 16px;
    width: 60%;
    z-index: 650;
    background-color: #f1f1f1;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    border-radius: 4px;
  }
  .hoofdmenu ul {
    flex-direction: column;
    padding: 20px 0 10px;
    margin: 0;
    text-align: left;
  }
  .hoofdmenu ul li {
    border: none;
    width: 100%;
    opacity: 0;
    transform: translateX(-30px);
    transition: 0.2s ease;
    padding: 0;
    margin: 0;
    list-style-type: none;
  }
  .hoofdmenu ul li:hover {
    border: none;
  }
  .hoofdmenu ul li a {
    color: #343434;
    display: block;
    padding: 16px 24px;
    text-align: left;
    white-space: normal;
    font-size: 14px;
    line-height: 18px;
    height: auto;
    border: none;
  }
  .hoofdmenu ul li ul.sub-menu {
    visibility: visible;
    opacity: 1;
    position: relative;
    top: 0;
    right: 0;
    margin: 0;
    display: inline-block;
    width: 100%;
    padding: 0 0 10px;
    background-color: transparent;
    border-radius: 0;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px;
    text-align: left;
    left: 0;
  }
  .hoofdmenu ul li ul.sub-menu li {
    border: none;
  }
  .hoofdmenu .menu-item-has-children:after {
    display: none;
  }
  .hoofdmenu .current-page-ancestor,
  .hoofdmenu .current-menu-item {
    border: none;
  }
}
/* HAMBURGER */
.nav-btn {
  position: fixed;
  cursor: pointer;
  width: 50px;
  height: 50px;
  font-size: 12px;
  font-weight: 900;
  color: #000;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 99em;
  top: 20px;
  right: 20px;
  z-index: 700;
  background-color: #fff;
  touch-action: manipulation;
  box-shadow: 0 2px 40px 0 rgba(0, 0, 0, 0.2);
}

.hm-layout-cover {
  display: none;
  background: #000;
  position: fixed;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 400;
}

.navigation--open .hm-layout-cover {
  display: block;
  opacity: 0.8;
}

@media screen and (min-width: 950px) {
  .nav-btn {
    display: none;
  }
}
/* NAV OPEN */
.navigation--open .hoofdmenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.navigation--open .hoofdmenu ul li {
  transform: translateX(0);
  opacity: 1;
}

.navigation--open #nav-header.nav-rechts ul li:nth-child(1) {
  transition-delay: 0.1s;
}

.navigation--open .hoofdmenu ul li:nth-child(2) {
  transition-delay: 0.15s;
}

.navigation--open .hoofdmenu ul li:nth-child(3) {
  transition-delay: 0.2s;
}

.navigation--open .hoofdmenu ul li:nth-child(4) {
  transition-delay: 0.25s;
}

.navigation--open .hoofdmenu ul li:nth-child(5) {
  transition-delay: 0.3s;
}

.navigation--open .hoofdmenu ul li:nth-child(6) {
  transition-delay: 0.35s;
}

.navigation--open .hoofdmenu ul li:nth-child(7) {
  transition-delay: 0.4s;
}

.navigation--open .hoofdmenu ul li:nth-child(8) {
  transition-delay: 0.45s;
}

.navigation--open .hoofdmenu ul li:nth-child(9) {
  transition-delay: 0.5s;
}

#subfooter {
  padding: 4rem 0;
  background-color: #222;
  color: #aaaaaa;
}
#subfooter .widget_box {
  width: 100%;
  max-width: 30%;
  padding: 0 3em;
  display: inline-block;
}
#subfooter .widget_box:first-child {
  max-width: 40%;
}
#subfooter .widget_box h5 {
  margin: 0 0 10px;
  padding: 0 0 10px 0;
  color: #fff;
  font-size: 1em;
  line-height: 1.5em;
  font-weight: 700;
}
#subfooter .widget_box img {
  max-height: 40px;
  margin: 5px 10px;
  width: auto;
}
#subfooter .widget_box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#subfooter .widget_box ul li {
  display: inline-block;
  width: 100%;
  margin-bottom: 5px;
}
#subfooter .widget_box ul a {
  width: 100%;
  display: inline-block;
}
#subfooter .widget_box a {
  color: #aaaaaa;
  text-decoration: none;
}
#subfooter .widget_box a:hover {
  color: #fff;
  text-decoration: underline;
}
#subfooter .widget_box a strong {
  color: #fff;
}

@media only screen and (max-width: 950px) {
  #subfooter .widget_box {
    max-width: 50%;
    padding: 0 3em;
  }
  #subfooter .widget_box:first-child {
    max-width: 100%;
  }
  #subfooter .widget_box h5 {
    padding: 10px 0 20px 0;
  }
}
@media only screen and (max-width: 650px) {
  #subfooter {
    padding: 3rem 0;
  }
  #subfooter .widget_box {
    max-width: 100%;
    padding: 0 1.5rem 0;
  }
  #subfooter .widget_box h5 {
    border-bottom: 1px solid #555;
  }
  #subfooter .widget_box h5:after {
    font-family: "Material Icons";
    content: "\e5cf";
    color: #888;
    font-size: 16px;
    font-weight: 900;
    vertical-align: middle;
    width: 30px;
    text-align: center;
    float: right;
  }
  #subfooter .textwidget {
    display: none;
    margin: 0.5rem 0;
  }
  #subfooter .h5-openend .textwidget {
    display: inline-block;
    width: 100%;
  }
  #subfooter .h5-openend.widget_box h5:after {
    content: "\e5ce";
  }
}
/* DEFAULT FOOTER
---------------------------------------------------------------------------- */
footer {
  padding: 2rem 0;
  text-align: center;
}
footer p {
  font-size: 0.9em;
}

@media only screen and (min-width: 950px) {
  footer p br {
    display: none;
  }
}

/* Kitchen spec block
---------------------------------------------------------------------------- */
.section-specifications {
  display: grid;
  grid-template-columns: 60% 40% 1fr;

  @media screen and (max-width: 767px) {
    grid-template-columns: 1fr;
  }
}

@media screen and (min-width: 768px) {
  .col-specs {
    padding-right: 8%;
  }

  .col-prices {
    padding-left: 16%;
  }
}

@media screen and (max-width: 767px) {
  .col-prices {
    order: 1;
  }

  .col-specs {
    order: 2;
    margin-top: 2rem;
  }
}

.section-specifications .spec {
  display: flex;
  padding: 0.5rem 0.5rem;
}

.section-specifications .spec > * {
  display: inline-block;
  width: 50%;
}

.section-specifications .spec .spec-desc {
  font-weight: bold;
}

.section-specifications .spec:nth-child(odd) {
  background-color: #eeeeee;
  border-radius: 3px;
}

.section-specifications .col-prices .card h2,
.section-specifications .col-prices .card h3 {
  color: #fff;
}

.section-specifications .col-prices .card {
  padding: 1rem;
  background-color: #343434;
  color: #fff;
  border-radius: 5px;

  @media screen and (min-width: 768px) {
    padding: 2rem;
  }
}

.section-specifications .before-price {
  position: relative;
  display: inline-block;
  margin-bottom: 0;
}

.section-specifications .main-price {
  font-weight: bold;
  font-size: 28px;
}

.section-specifications .before-price::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: indianred;
  display: block;
  z-index: 2;
}
