@charset "UTF-8";
html, body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.3em;
  font-family: "ubuntu", sans-serif;
  color: #333;
}
h1 {
  margin: 0;
  font-size: 1.6em;
  line-height: 1.2em;
}
@media screen and (min-width: 600px) {
  h1.header-title {
    font-size: 2.2em;
  }
}
h1.pagetitle {
  margin-bottom: 15px;
}
h2 {
  margin: 1em 0 0.25em 0;
  font-size: 1.4em;
  line-height: 1.2em;
}
h3 {
  margin: 0;
}
h3 + div {
  margin-bottom: 30px;
}
h3.title {
  margin: 0 0 15px 0;
  font-weight: normal;
  color: #666;
}
h4 {
  margin: 1em 0 0.25em 0;
}
h5 {
  margin: 0.5em 0;
  font-size: 1em;
}
p {
  margin: 0;
}
p + p {
  margin-top: 1em;
}
a {
  color: #7fc33d;
}
.fa {
  width: 1em;
  text-align: center;
}
.nowrap {
  white-space: nowrap;
}
.left {
  text-align: left;
}
.center {
  text-align: center;
}
.right {
  text-align: right;
}
.table-style {
  display: table;
  width: 100%;
  box-sizing: border-box;
}
.table-style .table-cell-style {
  display: table-cell;
  vertical-align: middle;
}
.table-style .table-cell-style.half {
  width: 50%;
}
.table-style .table-cell-style.third {
  width: 33.3%;
}
.table-style .table-cell-style.two-third {
  width: 66.6%;
}
.table-style .table-cell-style.fourth {
  width: 25%;
}
.table-style .table-cell-style.three-fourth {
  width: 75%;
}
.table-style .table-cell-style.fifth {
  width: 20%;
}
.table-style .table-cell-style.two-fifth {
  width: 40%;
}
.table-style .table-cell-style.three-fifth {
  width: 60%;
}
.table-style .table-cell-style.four-fifth {
  width: 80%;
}
@media screen and (max-width: 600px) {
  .table-style.responsive {
    display: block;
    padding: 15px 0;
    width: auto;
  }
}
@media screen and (max-width: 600px) {
  .table-style.responsive > .table-cell-style {
    display: block;
    width: auto;
  }
  .table-style.responsive > .table-cell-style + .table-cell-style {
    margin-top: 15px;
  }
}
.table-style.top > .table-cell-style {
  vertical-align: top;
}
.grid-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-gap: 20px;
}
ul, ol {
  margin: 0.5em 0;
  padding: 0 0 0 1.5em;
  text-align: left;
}
ul li, ol li {
  margin: 0;
  padding: 5px 0 0 0;
}
ul.checked, ol.checked {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.checked li, ol.checked li {
  position: relative;
  padding: 5px 0 0 1.5em;
}
ul.checked li:before, ol.checked li:before {
  content: "";
  position: absolute;
  margin-left: -1.5em;
  padding-right: 0.5em;
  font-family: "FontAwesome";
  color: #7fc33d;
}
@media screen and (min-width: 600px) {
  ul.split, ol.split {
    column-count: 2;
  }
}
ul.split li, ol.split li {
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
}
section.content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
section.content ul li {
  padding: 5px 0 0 1.5em;
}
section.content ul li:before {
  content: "";
  position: absolute;
  margin-left: -1.5em;
  padding-right: 0.5em;
  font-family: "FontAwesome";
  color: #7fc33d;
}
.button-box {
  margin: 40px 0;
}
.button-box .button {
  padding: 12px 20px;
}
.button {
  display: inline-block;
  margin: 0;
  padding: 10px 20px;
  line-height: 1em;
  font-size: 1em;
  font-weight: bold;
  color: #ff7326;
  border: 1px solid #ff7326;
  border-radius: 0.3em;
  box-sizing: border-box;
  text-decoration: none;
  transition: all 200ms ease;
  cursor: pointer;
}
.button.cta {
  color: white;
  background: #ff7326;
}
.button:hover {
  transform: scale(1.05);
}
.button + .button {
  margin-top: 15px;
}
.ervaringbutton {
  display: inline-block;
  margin: 15px 0 30px 0;
  padding: 10px 20px;
  line-height: 1em;
  font-size: 1em;
  font-weight: bold;
  color: white;
  background: #ff7326;
  border: 1px solid #ff7326;
  border-radius: 0.3em;
  box-sizing: border-box;
  text-decoration: none;
  transition: all 200ms ease;
  cursor: pointer;
}
.ervaringbutton:hover {
  transform: scale(1.05);
}
.block {
  position: relative;
  display: inline-block;
  padding: 60px 30px;
  width: 100%;
  max-width: 300px;
  font-size: 1.3em;
  text-align: center;
  background: white;
  border-radius: 0.3em;
  box-sizing: border-box;
}
.block ol, .block ul {
  display: inline-block;
  color: #666;
}
.block ol li + li, .block ul li + li {
  margin-top: 10px;
}
.block.left-pointer:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -100px;
  z-index: -1;
  background: white;
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
}
@media screen and (max-width: 600px) {
  .block.left-pointer:after {
    top: -50px;
    left: 0;
    clip-path: polygon(50% 0, 100% 25%, 100% 100%, 0 100%, 0 25%);
  }
}
.card {
  position: relative;
  margin: 0;
  background: white;
  border: 1px solid #D1D1D1;
}
@media screen and (max-width: 600px) {
  .card {
    border-radius: 0.3em;
  }
}
.card:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.card .card-inner {
  padding: 20px 20px 40px 20px;
  overflow: hidden;
}
.card .card-icon {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 10px;
  width: 80px;
  height: 80px;
  color: #7fc33d;
  border-radius: 50%;
}
.card .card-icon:after {
  content: url("/public/img/hih-logo.svg");
  position: absolute;
  top: 64%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
  z-index: -1;
  width: 330%;
  height: auto;
}
.card .card-icon .fa {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1em;
  font-size: 2em;
}
.card .card-title {
  font-size: 1.2em;
  font-weight: bold;
}
.card .card-title + p {
  margin-top: 5px;
}
.card .card-title .fa {
  color: #7fc33d;
}
.card .card-line {
  position: absolute;
  bottom: 20px;
  right: 20px;
  left: 20px;
  height: 2px;
  background: #7fc33d;
}
.footnote {
  margin-top: 10px;
  font-size: 0.9em;
}
.container {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
  max-width: 1000px;
  box-sizing: border-box;
}
.container.small {
  max-width: 720px;
}
.box {
  display: inline-block;
  margin: 0;
  padding: 20px;
  background: white;
  border-radius: 0.6em;
}
.box .box-title {
  font-weight: bold;
}
.box .box-subtitle {
  color: #707070;
  margin-bottom: 15px;
}
.header {
  position: fixed;
  z-index: 99;
  width: 100vw;
}
.header + .header-ghost {
  height: 58px;
}
@media screen and (max-width: 600px) {
  .header + .header-ghost {
    height: 51px;
  }
}
.header .header-nav {
  background: white;
  border-bottom: 1px solid #D1D1D1;
}
.header .header-nav .container {
  padding-top: 10px;
  padding-bottom: 10px;
}
.header .header-nav .logo {
  text-decoration: none;
  line-height: 1em;
}
@media screen and (max-width: 600px) {
  .header .header-nav .logo {
    font-size: 0.9em;
  }
}
.header .header-nav .logo svg {
  width: 75px;
  height: auto;
  max-height: 45px;
  color: #7fc33d;
  fill: #7fc33d;
  vertical-align: middle;
}
@media screen and (max-width: 600px) {
  .header .header-nav .logo svg {
    width: 55px;
  }
}
.header .header-nav .logo > span {
  display: inline-block;
  vertical-align: middle;
  color: #333;
}
.header .header-nav .logo > span span {
  display: block;
}
.header .header-nav .logo > span span:last-of-type {
  font-size: 0.7em;
  border-top: 2px solid #7fc33d;
}
.header .header-nav input#menu {
  display: none;
}
.header .header-nav input#menu ~ label {
  display: none;
}
@media screen and (max-width: 600px) {
  .header .header-nav input#menu:not(:checked) ~ nav {
    display: none;
  }
  .header .header-nav input#menu:checked ~ nav {
    position: fixed;
    top: 51px;
    left: 0;
    padding: 30px;
    width: 100vw;
    height: 100vh;
    background: white;
    box-sizing: border-box;
  }
  .header .header-nav input#menu ~ label {
    display: block;
  }
  .header .header-nav input#menu ~ nav .nav {
    display: block;
    white-space: normal;
    text-align: left;
  }
  .header .header-nav input#menu ~ nav .nav li {
    display: block;
    font-size: 1.2em;
  }
  .header .header-nav input#menu ~ nav .nav li + li {
    margin: 20px 0 0 0;
  }
  .header .header-nav input#menu ~ nav .nav + .nav {
    padding: 30px 0 0 0;
  }
}
.header .header-nav .nav {
  display: table-cell;
  margin: 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
  text-align: right;
}
.header .header-nav .nav:first-of-type {
  width: 100%;
}
.header .header-nav .nav + .nav {
  padding-left: 30px;
}
.header .header-nav .nav:hover li.active {
  color: #666;
}
.header .header-nav .nav li {
  display: inline-block;
  padding: 0;
  color: #666;
}
.header .header-nav .nav li + li {
  margin-left: 10px;
}
.header .header-nav .nav li:hover {
  color: #7fc33d !important;
}
.header .header-nav .nav li.active {
  color: #333;
  font-weight: bold;
}
.header .header-nav .nav li a:not(.button) {
  color: inherit;
  text-decoration: none;
}
.main > section {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
  overflow-x: hidden;
}
.main > section.green {
  background: #7fc33d;
}
.main > section.sandy {
  background: #f2f9ec;
}
.main > section.grey {
  background: #F5F5F5;
}
.main > section.afbeelding {
  padding: 0;
  background-size: cover;
  background-position: 50% 50%;
}
.main > section.afbeelding.push-right {
  background-position: calc(50% + 220px) 50%;
}
.main > section.afbeelding.overlay:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: inherit;
  opacity: 0.85;
}
.main > section.afbeelding.half-left {
  background-size: 50%;
  background-position: 0 0;
}
.main > section.afbeelding.half-right {
  background-size: 50%;
  background-position: 0 0;
}
.main > section .afbeelding {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: 50% 50%;
}
@media screen and (min-width: 600px) {
  .main > section .afbeelding.afbeelding-links {
    right: 50%;
    left: 0;
  }
  .main > section .afbeelding.afbeelding-rechts {
    right: 0;
    left: 50%;
  }
}
.main > section .container + .container {
  margin-top: 30px;
}
.main > section .container section:first-of-type {
  padding-bottom: 30px;
}
.main > section.content {
  margin: 0 auto;
  padding: 30px 15px;
  width: 100%;
  max-width: 1000px;
  box-sizing: border-box;
}
.main > section > div.content {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
  max-width: 1000px;
  box-sizing: border-box;
}
.footer {
  border-top: 1px solid #D1D1D1;
}
.footer .container {
  padding: 15px;
}
.footer .container + .container {
  border-top: 1px solid #D1D1D1;
}
.footer .container ul {
  margin: 0 0 1em 0;
  padding: 0;
  list-style: none;
}
.footer .container ul a {
  color: #666;
  text-decoration: none;
}
.footer .container ul a:hover {
  color: #333;
}
.footer .breadcrumbs {
  overflow-x: auto;
}
.footer .breadcrumbs > div {
  white-space: nowrap;
}
.footer .breadcrumbs span {
  position: relative;
  display: inline-block;
  color: #666;
}
.footer .breadcrumbs span + span {
  padding-left: 15px;
}
.footer .breadcrumbs span + span:before {
  content: "";
  position: absolute;
  left: 5px;
  font-family: "FontAwesome";
}
.footer .breadcrumbs span:last-of-type {
  color: #333;
}
.footer .breadcrumbs span a {
  color: inherit;
  text-decoration: none;
}
.table-block {
  position: relative;
  color: #333;
  background: #f2f9ec;
}
@media screen and (max-width: 600px) {
  .table-block {
    border-radius: 0.3em;
  }
}
@media screen and (min-width: 600px) {
  .table-block:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: -1;
    width: 50vw;
    background: #f2f9ec;
  }
}
.table-block.left-block {
  padding: 75px 50px 50px 0;
}
.table-block.left-block:after {
  right: 0;
}
.table-block.right-block {
  padding: 75px 0 50px 50px;
}
.table-block.right-block:after {
  left: 0;
}
@media screen and (max-width: 600px) {
  .table-block.left-block, .table-block.right-block {
    padding: 30px 20px 20px 20px;
  }
}
.kosten-faq {
  margin: 15px 0 0 0;
}
.kosten-faq .kosten-faq-box {
  position: relative;
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid #D1D1D1;
}
.kosten-faq .kosten-faq-box:last-of-type {
  border-bottom: 0;
}
.kosten-faq .kosten-faq-box input {
  display: none;
}
.kosten-faq .kosten-faq-box input:not(:checked) ~ label {
  margin-bottom: 0;
}
.kosten-faq .kosten-faq-box input:not(:checked) ~ label:after {
  transform: translateY(-50%) rotate(180deg);
}
.kosten-faq .kosten-faq-box input:not(:checked) ~ div {
  max-height: 0;
  overflow: hidden;
}
.kosten-faq .kosten-faq-box label {
  position: relative;
  display: block;
  margin-bottom: 15px;
  padding-right: 30px;
  cursor: pointer;
}
.kosten-faq .kosten-faq-box label:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-family: "FontAwesome";
}
.kosten-faq .kosten-faq-box p {
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 600px) {
  body .__fbcw__widget.__fbcw__widget--big {
    width: 100% !important;
    border-radius: 0.3em !important;
    overflow: hidden !important;
  }
}
.beoordeling {
  padding: 15px;
  background: white;
  border: 1px solid #D1D1D1;
}
.beoordeling .stars > div {
  display: inline-block;
  margin-left: 1px;
  color: #FFC107;
}
.beoordeling .stars .star:after {
  content: "";
  font-family: "FontAwesome";
  font-size: 1rem;
}
.beoordeling .stars .star-empty:after {
  content: "";
  font-family: "FontAwesome";
  font-size: 1rem;
}
.beoordeling .stars .star-half:after {
  content: "";
  font-family: "FontAwesome";
  font-size: 1rem;
}
main .ervaringen_box {
  display: none;
  margin: 0 auto;
  max-width: 300px;
  background: #f2f9ec;
  padding: 15px;
}
main .ervaringen_box strong a {
  color: black;
  text-decoration: none;
}
main .ervaringen_box ul li {
  padding: 15px 15px 15px 30px;
  background: white;
  border: 1px solid #d1d1d1;
}
main .ervaringen_box ul li:before {
  content: "";
  position: absolute;
  margin-left: -1.5em;
  padding-right: 0.5em;
  font-family: "FontAwesome";
  color: #7fc33d;
}
main .ervaringen_box ul li + li {
  margin-top: 10px;
}
main .ervaringen_box ul li a {
  color: black;
  text-decoration: none;
}
main .ervaringen_box p {
  margin: 0.5em 0;
}
#map {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.contact-faq {
  display: table;
  margin: 30px auto;
  padding: 10px;
  width: 100%;
  max-width: 400px;
  background: white;
  border: 1px solid grey;
  border-radius: 0.3em;
  box-sizing: border-box;
}
.contact-faq h2 {
  margin: 0;
}
.contact-faq h3 {
  margin: 0;
  font-size: 1.2em;
  font-weight: normal;
}
.contact-faq .contact-faq-box {
  margin: 10px 0;
}
.contact-faq .contact-faq-box > div {
  padding: 10px 5px 5px 5px;
  border-bottom: 1px solid #dadada;
}
.contact-faq .contact-faq-box input {
  display: none;
}
.contact-faq .contact-faq-box input:not(:checked) ~ div {
  display: none;
}
.contact-faq .contact-faq-box input:checked ~ div {
  display: block;
  padding: 10px 0;
}
.contact-faq .contact-faq-box input label {
  font-weight: bold;
  cursor: pointer;
}
.contact-faq ~ #contactform {
  margin: 0 auto;
}
.voorbeeld-block {
  position: relative;
  padding: 2em;
  background: #f2f9ec;
  border-radius: 1em;
}
.voorbeeld-block > b {
  display: block;
  margin: 20px 0 10px 0px;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .voorbeeld-block > b {
    margin: 0 0 10px 50px;
    text-align: left;
  }
}
.voorbeeld-block > p {
  line-height: 1.5em;
}
@media screen and (min-width: 600px) {
  .voorbeeld-block > p {
    margin-left: 50px;
  }
}
.voorbeeld-block .voorbeeld-img {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: #f7f7f7;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 600px) {
  .voorbeeld-block .voorbeeld-img {
    top: 0;
    left: 50%;
  }
}
.voorbeeld-block .voorbeeld-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
}
form .form-field label {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: bold;
}
form .form-field .form-element input, form .form-field .form-element select {
  margin: 0;
  padding: 7.5px 10px;
  width: 100%;
  height: auto;
  font-family: "Ubuntu", sans-serif;
  font-size: 16px !important;
  line-height: 1em;
  background: white;
  border: 1px solid #D1D1D1;
  border-radius: 0.3em;
  box-sizing: border-box;
  appearance: none;
  align-items: center;
  white-space: pre;
  overflow: visible;
}
form .form-field.has-select .form-element {
  position: relative;
}
form .form-field.has-select .form-element:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-family: "FontAwesome";
  font-weight: bold;
}
form .form-field .form-element input[type="submit"], form .form-field .form-element button {
  display: inline-block;
  margin: 0;
  padding: 10px 20px;
  line-height: 1em;
  font-size: 1em;
  font-weight: bold;
  color: white;
  background: #ff7326;
  border: 1px solid #ff7326;
  border-radius: 0.3em;
  box-sizing: border-box;
  text-decoration: none;
  transition: all 200ms ease;
  cursor: pointer;
}
form .form-field .form-element input[type="submit"]:hover, form .form-field .form-element button:hover {
  transform: scale(1.05);
}
form {
  max-width: 400px;
  font-family: inherit;
  font-size: 1em;
  line-height: 1em;
}
form .form-errors {
  padding: 0 !important;
}
form .form-errors .form-errors-inner {
  display: inline-block;
  margin: 0px -10px 10px -10px;
  padding: 10px;
  max-width: 440px;
  color: white;
  background: #ff7326;
  border-radius: 0.3em;
}
form .form-field.has-errors {
  margin: 0 -10px;
  padding: 10px;
  background: rgba(255, 115, 38, 0.03);
  border: 1px solid #ff7326 !important;
  border-radius: 0.3em;
  box-sizing: border-box;
}
form .errors {
  margin: 0 0 10px 0;
  padding: 0;
  color: #ff7326;
  list-style: none;
  line-height: 1em;
}
form .form-field + .form-field {
  margin-top: 15px;
}
form .form-field .form-element label {
  display: block;
  margin-bottom: 15px;
}
form .form-field .form-element .labels {
  display: grid;
  align-items: center;
  grid-gap: 5px;
}
form .form-field .form-element .labels.two {
  grid-template-columns: 1fr 1fr;
}
form .form-field .form-element .labels.three {
  grid-template-columns: 1fr 1fr 1fr;
}
form .form-field .form-element .labels.four {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
form .form-field .form-element .labels.five {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
form .form-field .form-element .labels.six {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}
form .form-field .form-element .labels.seven {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}
form .form-field .form-element .labels label {
  text-align: center;
}
form .form-field .form-element .labels label .label-radio {
  position: relative;
  display: inline-block;
  padding: 10px;
  width: 100%;
  text-align: center;
  background: white;
  border: 1px solid #D1D1D1;
  border-radius: 0.3em;
  box-sizing: border-box;
  cursor: pointer;
}
form .form-field .form-element .labels label .label-radio:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
form .form-field .form-element .labels label .label-radio small {
  position: absolute;
  top: -0.8em;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  padding: 0 4px;
  font-size: 0.8em;
  background: white;
  border-radius: 0.3em;
  white-space: nowrap;
}
form .form-field .form-element .labels label .label-radio:hover {
  border: 1px solid #7fc33d;
}
form .form-field .form-element .labels label .label-radio:hover:after {
  border: 1px solid #7fc33d;
  border-radius: inherit;
}
form .form-field .form-element .labels label .label-radio:hover small {
  color: #7fc33d;
}
form .form-field .form-element .labels label input[type="radio"] {
  display: none;
}
form .form-field .form-element .labels label input[type="radio"]:checked + .label-radio {
  background: #99cf64;
  border: 1px solid #7fc33d;
}
form .form-field .form-element .labels label input[type="radio"]:checked + .label-radio:after {
  border: 1px solid #7fc33d;
  border-radius: inherit;
}
form .form-field .form-element .labels label input[type="radio"]:checked + .label-radio small {
  color: white;
  background: #ff7326;
}
form .form-field .form-element .labels label .label-checkbox {
  position: relative;
  display: inline-block;
  margin-top: 5px;
  padding: 10px;
  width: 100%;
  text-align: center;
  background: white;
  border: 1px solid #D1D1D1;
  border-radius: 0.3em;
  box-sizing: border-box;
  cursor: pointer;
}
form .form-field .form-element .labels label .label-checkbox:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
form .form-field .form-element .labels label .label-checkbox small {
  position: absolute;
  top: -0.8em;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  padding: 0 4px;
  font-size: 0.8em;
  background: white;
  border-radius: 0.3em;
  white-space: nowrap;
}
form .form-field .form-element .labels label .label-checkbox:hover {
  border: 1px solid #7fc33d;
}
form .form-field .form-element .labels label .label-checkbox:hover:after {
  border: 1px solid #7fc33d;
  border-radius: inherit;
}
form .form-field .form-element .labels label .label-checkbox:hover small {
  color: #7fc33d;
}
form .form-field .form-element .labels label input[type="checkbox"] {
  display: none;
}
form .form-field .form-element .labels label input[type="checkbox"]:checked + .label-checkbox {
  background: #99cf64;
  border: 1px solid #7fc33d;
}
form .form-field .form-element .labels label input[type="checkbox"]:checked + .label-checkbox:after {
  border: 1px solid #7fc33d;
  border-radius: inherit;
}
form .form-field .form-element .labels label input[type="checkbox"]:checked + .label-checkbox small {
  color: white;
  background: #ff7326;
}
form .form-field .form-element textarea {
  padding: 15px;
  width: 100%;
  font-family: inherit;
  font-size: 1em;
  border: 1px solid #D1D1D1;
  border-radius: 0.3em;
  box-sizing: border-box;
}
form .form-field .form-element button {
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .aanvraag-wrapper {
    margin: 0 -15px;
  }
}
.aanvraag-wrapper .table-cell-style {
  vertical-align: top;
}
.aanvraag-form {
  position: relative;
  margin: 0;
  padding: 15px;
  background: #f2f9ec;
  border-top-left-radius: 0.3em;
  border-bottom-left-radius: 0.3em;
}
.aanvraag-form:before {
  content: "";
  position: absolute;
  top: 0;
  right: -33%;
  bottom: 0;
  left: 0;
  background: #f2f9ec;
  border-radius: 0.3em;
}
@media screen and (max-width: 600px) {
  .aanvraag-form:before {
    right: 0;
    bottom: -33%;
  }
}
.aanvraag-form form {
  position: relative;
}
.aanvraag-samenvatting {
  position: relative;
  display: inline-block;
  margin: 15px 0 15px 15px;
  min-width: 330px;
  text-align: center;
  background: white;
  border-radius: 0.3em;
  box-shadow: 0 0 25px rgba(51, 51, 51, 0.2);
}
@media screen and (max-width: 600px) {
  .aanvraag-samenvatting {
    margin: 15px;
  }
}
.aanvraag-samenvatting .box {
  display: block;
}
.aanvraag-samenvatting .box .box-head {
  display: table;
  width: 100%;
  box-sizing: border-box;
}
.aanvraag-samenvatting .box .uitgelicht {
  display: inline-block;
  padding: 2px 10px;
  font-size: 0.9em;
  color: white;
  background: #80c33d;
  border-radius: 0.3em;
  float: right;
  margin: -10px -25px 5px 0;
}
.aanvraag-samenvatting .box ul {
  display: inline-block;
  text-align: left;
}
.aanvraag-samenvatting .totaal-per-maand {
  font-size: 1.3em;
}
.aanvraag-samenvatting .totaal-per-schoonmaak {
  color: #707070;
}
.cms-plaats h2 {
  margin-top: 60px;
}
.cms-plaats .kosten-abonnement {
  padding: 15px;
  background: #f2f9ec;
}
.cms-plaats .kosten-abonnement ul {
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 600px) {
  .cms-plaats .kosten-abonnement ul {
    column-count: 2;
  }
}
.cms-plaats .ervaringen_box {
  display: none;
}
#tool {
  display: none;
}
@media screen and (min-width: 600px) {
  #tool:checked ~ .tool {
    transform: translateX(0%);
  }
}
@media screen and (max-width: 600px) {
  #tool:checked ~ .tool {
    max-height: 500px;
  }
}
.tool {
  position: relative;
  transition: all 300ms ease;
}
@media screen and (min-width: 600px) {
  .tool {
    padding-left: 60px;
    transform: translate(-100%);
  }
}
@media screen and (max-width: 600px) {
  .tool {
    max-height: 0px;
    overflow: hidden;
  }
}
.tool input#rekenvoorbeeld-tool, .tool input#rekenvoorbeeld-tool + p, .tool label, .tool .button-wrapper {
  display: none;
}
.abonnement-tool-wrapper input#abonnement-tool-switch {
  display: none;
}
.abonnement-tool-wrapper input#abonnement-tool-switch:not(:checked) + .abonnement-tool-tabs > div:first-of-type label {
  color: #fff;
  background: #7fc33e;
  border-color: #669c32;
}
.abonnement-tool-wrapper input#abonnement-tool-switch:checked + .abonnement-tool-tabs > div:last-of-type label {
  color: #fff;
  background: #7fc33e;
  border-color: #669c32;
}
.abonnement-tool-wrapper .abonnement-tool-smaller {
  font-size: 0.8em;
  color: #888;
}
.abonnement-tool-wrapper .abonnement-tool-bigger {
  font-size: 1.3em;
  line-height: 1em;
}
.abonnement-tool-wrapper .abonnement-tool-tabs {
  display: table;
  width: 100%;
}
.abonnement-tool-wrapper .abonnement-tool-tabs .abonnement-tool-tab {
  position: relative;
  display: table-cell;
  padding: 20px;
  width: 50%;
  vertical-align: middle;
  text-align: center;
}
.abonnement-tool-wrapper .abonnement-tool-tabs .abonnement-tool-tab label {
  display: inline-block;
  margin: 0;
  padding: 7.5px 15px;
  width: 100%;
  line-height: 1em;
  text-align: center;
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 0.3em;
  box-sizing: border-box;
  cursor: pointer;
}
.abonnement-tool-wrapper .abonnement-tool-tabs .abonnement-tool-tab label:hover {
  color: #7fc33e;
  border-color: #669c32;
}
.abonnement-tool-wrapper .abonnement-tool-tabs .abonnement-tool-tab .abonnement-tool-tab-bespaard {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 0.8em;
  color: #888;
  white-space: nowrap;
}
.abonnement-tool-wrapper .abonnement-tool {
  padding: 20px 20px 30px 20px;
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 0.3em;
}
@media screen and (max-width: 512px) {
  .abonnement-tool-wrapper .abonnement-tool {
    padding: 15px 15px 30px 15px;
  }
}
.abonnement-tool-wrapper .abonnement-tool .abonnement-tool-titel {
  margin-bottom: 20px;
  text-align: center;
}
.abonnement-tool-wrapper .abonnement-tool .abonnement-tool-titel > div:first-of-type {
  font-size: 0.8em;
  color: #888;
}
.abonnement-tool-wrapper .abonnement-tool .abonnement-tool-titel > div:last-of-type {
  font-weight: bold;
}
.abonnement-tool-wrapper .abonnement-tool .abonnement-tool-berekening {
  position: relative;
}
.abonnement-tool-wrapper .abonnement-tool .abonnement-tool-berekening input, .abonnement-tool-wrapper .abonnement-tool .abonnement-tool-berekening select {
  margin: 0;
  padding: 5px 15px;
  width: 120px;
  font-family: "Open Sans", sans-serif;
  font-size: 1em;
  text-align: center;
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 0.3em;
  box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  -webkit-appearance: none;
}
.abonnement-tool-wrapper .abonnement-tool .abonnement-tool-berekening:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: #ededed;
}
.abonnement-tool-wrapper .abonnement-tool .abonnement-tool-berekening > div {
  position: relative;
  z-index: 1;
}
.abonnement-tool-wrapper .abonnement-tool .abonnement-tool-berekening > div + div {
  margin-top: 10px;
}
.abonnement-tool-wrapper .abonnement-tool .abonnement-tool-berekening .abonnement-tool-partijen {
  display: table;
  width: 100%;
  text-align: center;
}
.abonnement-tool-wrapper .abonnement-tool .abonnement-tool-berekening .abonnement-tool-partijen > div {
  display: table-cell;
  vertical-align: middle;
  width: 50%;
}
.abonnement-tool-wrapper .abonnement-tool .abonnement-tool-berekening .abonnement-tool-partijen > div:last-of-type {
  color: #888;
}
.abonnement-tool-wrapper .abonnement-tool .abonnement-tool-berekening .abonnement-tool-partijen > div img {
  width: auto;
  height: 30px;
}
.abonnement-tool-wrapper .abonnement-tool .abonnement-tool-berekening .abonnement-tool-uurloon {
  display: table;
  width: 100%;
  text-align: center;
}
.abonnement-tool-wrapper .abonnement-tool .abonnement-tool-berekening .abonnement-tool-uurloon > div {
  display: table-cell;
  vertical-align: middle;
  width: 50%;
}
.abonnement-tool-wrapper .abonnement-tool .abonnement-tool-berekening .abonnement-tool-periodiek {
  display: table;
  width: 100%;
  text-align: center;
}
.abonnement-tool-wrapper .abonnement-tool .abonnement-tool-berekening .abonnement-tool-periodiek > div {
  display: table-cell;
  vertical-align: middle;
  width: 50%;
}
.abonnement-tool-wrapper .abonnement-tool .abonnement-tool-berekening .abonnement-tool-abonnement {
  display: table;
  width: 100%;
  text-align: center;
}
.abonnement-tool-wrapper .abonnement-tool .abonnement-tool-berekening .abonnement-tool-abonnement > div {
  display: table-cell;
  vertical-align: middle;
}
.abonnement-tool-wrapper .abonnement-tool .abonnement-tool-berekening .abonnement-tool-abonnement > div:first-of-type {
  padding: 10px;
  width: 75%;
  background: #f2f9ec;
  border: 1px solid #d9edc5;
  border-radius: 0.3em;
}
@media screen and (max-width: 512px) {
  .abonnement-tool-wrapper .abonnement-tool .abonnement-tool-berekening .abonnement-tool-abonnement > div:first-of-type {
    padding: 5px;
    width: 80%;
  }
}
.abonnement-tool-wrapper .abonnement-tool .abonnement-tool-berekening .abonnement-tool-abonnement > div:first-of-type > div {
  display: table-cell;
  vertical-align: middle;
}
.abonnement-tool-wrapper .abonnement-tool .abonnement-tool-berekening .abonnement-tool-abonnement > div:last-of-type {
  width: 25%;
}
@media screen and (max-width: 512px) {
  .abonnement-tool-wrapper .abonnement-tool .abonnement-tool-berekening .abonnement-tool-abonnement > div:last-of-type {
    width: 20%;
  }
}
.abonnement-tool-wrapper .abonnement-tool .abonnement-tool-berekening .abonnement-tool-abonnement > div .abonnement-tool-abonnement-bedrag {
  width: 100px;
}
@media screen and (max-width: 512px) {
  .abonnement-tool-wrapper .abonnement-tool .abonnement-tool-berekening .abonnement-tool-abonnement > div .abonnement-tool-abonnement-bedrag {
    width: 75px;
  }
}
.abonnement-tool-wrapper .abonnement-tool .abonnement-tool-berekening .abonnement-tool-abonnement > div .abonnement-tool-abonnement-bedrag .abonnement-tool-abonnement-prijs {
  font-size: 1.5em;
}
.abonnement-tool-wrapper .abonnement-tool .abonnement-tool-berekening .abonnement-tool-abonnement > div .abonnement-tool-abonnement-voordelen {
  font-size: 0.9em;
  text-align: left;
}
@media screen and (max-width: 512px) {
  .abonnement-tool-wrapper .abonnement-tool .abonnement-tool-berekening .abonnement-tool-abonnement > div .abonnement-tool-abonnement-voordelen {
    font-size: 0.8em;
  }
}
.abonnement-tool-wrapper .abonnement-tool .abonnement-tool-berekening .abonnement-tool-abonnement > div .abonnement-tool-abonnement-voordelen ul {
  column-count: unset;
}
.abonnement-tool-wrapper .abonnement-tool .abonnement-tool-berekening .abonnement-tool-abonnement > div .abonnement-tool-abonnement-nadelen {
  color: #f44336;
}
.abonnement-tool-wrapper .abonnement-tool .abonnement-tool-berekening .abonnement-tool-tarief {
  display: table;
  width: 100%;
  text-align: center;
}
.abonnement-tool-wrapper .abonnement-tool .abonnement-tool-berekening .abonnement-tool-tarief > div {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  width: 50%;
}
.abonnement-tool-wrapper .abonnement-tool .abonnement-tool-berekening .abonnement-tool-tarief > div .abonnement-tool-tarief-box {
  margin: 0 0 0 15px;
  padding: 10px;
  font-size: 1.2em !important;
  font-size: 0.8em;
  line-height: 1em;
  color: #888;
  background: #ededed;
  border-radius: 0.3em;
}
.abonnement-tool-wrapper .abonnement-tool .abonnement-tool-berekening .abonnement-tool-tarief > div:first-of-type .abonnement-tool-tarief-bespaard {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 0.8em;
  color: #888;
  white-space: nowrap;
}
.abonnement-tool-wrapper .abonnement-tool .abonnement-tool-berekening .abonnement-tool-tarief > div:first-of-type .abonnement-tool-tarief-box {
  margin: 0 15px 0 0;
}
.abonnement-tool-wrapper .abonnement-tool .abonnement-tool-berekening .abonnement-tool-tarief > div .abonnement-tool-smaller {
  margin: 2px 0 0 0;
  font-size: 0.7rem;
  color: inherit;
}
.abonnement-tool-wrapper .abonnement-tool .abonnement-tool-berekening .abonnement-tool-tarief > div.abonnement-tool-tarief-bespaar .abonnement-tool-tarief-bespaard {
  position: relative;
  bottom: unset;
  left: unset;
  transform: none;
  font-size: inherit;
  color: inherit;
}
.abonnement-tool-wrapper .abonnement-tool .abonnement-tool-berekening .abonnement-tool-tarief-bespaard {
  padding: 10px;
  text-align: center;
  color: #fff;
  background: #7fc33e;
  border-radius: 0.3em;
}
.abonnement-tool-wrapper .abonnement-tool .abonnement-tool-berekening .abonnement-tool-tarief-bespaard > div:first-of-type {
  font-size: 1.3em;
}
.abonnement-tool-wrapper .abonnement-tool .abonnement-tool-berekening .abonnement-tool-tarief-bespaard > div:last-of-type {
  font-size: 0.8em;
  line-height: 1em;
}
.abonnement-tool-wrapper .abonnement-tool + .button-wrapper {
  margin-top: 20px;
  text-align: center;
}
#ervaringen > div {
  margin: 20px 0;
  display: table;
  width: 100%;
  box-sizing: border-box;
}
#ervaringen > div:first-of-type {
  border: 2px solid #85c329;
}
#ervaringen > div > div {
  margin-bottom: 20px;
  border: 2px solid #85c329;
}
#ervaringen div h3 {
  margin: 0;
  padding: 10px 20px;
  background: #85c329;
  font-size: 16px;
  color: #fff;
  font-weight: normal;
}
#ervaringen div h4 {
  margin: 0;
  font-size: 13px;
  color: #333;
  float: left;
  padding: 2px 10px 0 0;
  width: 130px;
  font-weight: normal;
}
#ervaringen div h5 {
  color: #333;
  font-size: 14px;
  margin-bottom: 5px;
  display: inline-block;
  position: inherit;
}
#ervaringen div p {
  margin: 0;
  float: left;
}
#ervaringen div.clear {
  margin: 0;
  clear: both;
}
#ervaringen div.in {
  margin: 0;
  clear: both;
  padding: 7px 5px 5px 10px;
}
#ervaringen div.video {
  margin: 0;
  border: 0;
}
@media screen and (min-width: 600px) {
  #ervaringen > div > div:first-of-type {
    margin: 0;
    border: 0;
  }
}
.video .videosep > span {
  float: left !important;
  width: 25%;
  box-sizing: border-box;
  margin: 0 !important;
  padding: 10px 0;
  text-align: center;
  height: 140px;
}
a#ervaringen-load {
  margin: 0 auto;
  clear: both;
  display: block;
  width: 160px;
  text-align: center;
  margin-bottom: 20px;
}
ul#navigatie {
  padding: 0;
  margin: 0;
  list-style: none;
  clear: both;
}
ul#navigatie li {
  padding: 0;
  margin: 0;
}
ul#navigatie li a, ul#navigatie li.active {
  float: left;
  margin: 0 3px 0 0;
  background: #dfefff;
  padding: 4px 13px;
}
ul#navigatie li.active, ul#navigatie li a:hover {
  background: #135293;
  color: #fff;
}
ul#navigatie li.prev {
  float: left;
  padding: 4px 10px 0 0;
}
div.pageNav {
  clear: both;
  margin: 15px 0;
  background-color: #f2f2f9;
  padding: 3px 10px;
  text-align: center;
}
div.pageNav span.pageNav-prev {
  display: inline-block;
}
div.pageNav span.pageNav-pages a, div.pageNav span.pageNav-pages span {
  margin: 0 3px;
}
div.pageNav span.pageNav-current {
  font-weight: bold;
  color: #444449;
}
div.pageNav span.pageNav-next {
  display: inline-block;
}
div.pageNav span.pageNav-disabled {
  color: #778;
}
.grid-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-gap: 20px;
}
.grid {
  display: grid;
}
.grid.two-grid {
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 600px) {
  .grid.two-grid.responsive {
    grid-template-columns: 1fr;
  }
}
.grid.grid-gap-2 {
  grid-gap: 2em;
}
