/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 9-jun-2016, 17:03:02
    Author     : Tim Aertsen
*/
/**********************************************
* 1180 CSS Grid System - Fluid
* by Chris Blackwell / chrisblackwell.me
**********************************************/
body {
  width: 100%;
  margin: 0;
  padding: 0;
}
.wrap {
  width: 1180px;
  margin: 0 auto;
}
.flexbox {
  display: -webkit-flex;
  display: flex;
}
.row {
  margin: 20px 0;
}
.row:after {
  content: "";
  display: table;
  clear: both;
}
/* Sets default values on all columns */
[class*="span"] {
  margin-right: 2%;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
[class*="span"]:last-child {
  margin-right: 0;
}
.prototype [class*="span"] {
  background: #ececec;
  border-radius: 4px;
  padding: 15px;
  text-align: center;
}
.span1 {
  width: 6.5%;
}
.span2 {
  width: 15%;
}
.span3 {
  width: 23.5%;
}
.span4 {
  width: 32%;
}
.span5 {
  width: 40.5%;
}
.span6 {
  width: 49%;
}
.col7 {
  width: 57.5%;
}
.span8 {
  width: 66%;
}
.span9 {
  width: 74.5%;
}
.span10 {
  width: 83%;
}
.span11 {
  width: 91.5%;
}
.span12 {
  width: 100%;
  float: none;
}
/**********************************
* Smaller Screens
**********************************/
@media only screen and (max-width: 1240px) {
  .wrap {
    width: 94%;
  }
}
/**********************************
* Tablets
**********************************/
/**********************************
* Mobile Devices
* - All columns are full width
**********************************/
@media only screen and (max-width: 767px) {
  .row {
    margin: 0;
  }
  [class*="span"] {
    margin: 15px 0;
    float: none;
    width: 100%;
  }
}
@media print {
  .wrap {
    width: 100%;
  }
}
@font-face {
  font-family: 'avenir-next';
  src: url('../fonts/avenirnext/AvenirNextLTPro-Regular.eot');
  src: url('../fonts/avenirnext/AvenirNextLTPro-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/avenirnext/AvenirNextLTPro-Regular.otf') format('opentype'), url('../fonts/avenirnext/AvenirNextLTPro-Regular.woff') format('woff'), url('../fonts/avenirnext/AvenirNextLTPro-Regular.ttf') format('truetype'), url('../fonts/avenirnext/AvenirNextLTPro-Regular.svg#AvenirNextLTPro-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'avenir-next-semi-bold';
  src: url('../fonts/avenirnext/AvenirNextLTPro-Demi.eot');
  src: url('../fonts/avenirnext/AvenirNextLTPro-Demi.eot?#iefix') format('embedded-opentype'), url('../fonts/avenirnext/AvenirNextLTPro-Demi.otf') format('opentype'), url('../fonts/avenirnext/AvenirNextLTPro-Demi.woff') format('woff'), url('../fonts/avenirnext/AvenirNextLTPro-Demi.ttf') format('truetype'), url('../fonts/avenirnext/AvenirNextLTPro-Demi.svg#AvenirNextLTPro-Demi') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'avenir-next-bold';
  src: url('../fonts/avenirnext/AvenirNextLTPro-Bold.eot');
  src: url('../fonts/avenirnext/AvenirNextLTPro-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/avenirnext/AvenirNextLTPro-Bold.otf') format('opentype'), url('../fonts/avenirnext/AvenirNextLTPro-Bold.woff') format('woff'), url('../fonts/avenirnext/AvenirNextLTPro-Bold.ttf') format('truetype'), url('../fonts/avenirnext/AvenirNextLTPro-Bold.svg#AvenirNextLTPro-Bold') format('svg');
  font-weight: normal;
  font-style: normal;
}
.prim-font {
  font-family: 'Open Sans', sans-serif;
}
.title-font {
  font-family: 'avenir-next', 'Open Sans', sans-serif;
}
.title-font-semi {
  font-family: 'avenir-next-semi-bold', 'Open Sans', sans-serif;
}
.title-font-bold {
  font-family: 'avenir-next-bold', 'Open Sans', sans-serif;
}
.none-appearance {
  -moz-appearance: none;
  -webkit-appearance: none;
}
.text-center {
  text-align: center;
}
.ease-none {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}
.ease-slow {
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -ms-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}
.ease-normal {
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.ease-fast {
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -ms-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}
.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
* {
  padding: 0;
  margin: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  *behavior: url(../include/boxsizing.htc);
  outline: none;
}
html,
body {
  height: 100%;
}
html.overflow,
body.overflow {
  overflow: hidden;
}
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 19px;
  color: #021231;
  overflow-x: hidden;
}
img {
  image-rendering: auto;
  display: block;
  width: 100%;
}
h1 {
  font-family: 'avenir-next-bold', 'Open Sans', sans-serif;
  font-size: 40px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 55px;
  color: #05235f;
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  h1 {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 500px) {
  h1 {
    font-size: 30px;
    line-height: 36px;
  }
}
h2 {
  font-family: 'avenir-next-bold', 'Open Sans', sans-serif;
  font-size: 33px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 45px;
  color: #05235f;
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  h2 {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 500px) {
  h2 {
    font-size: 26px;
    line-height: 32px;
  }
}
h3 {
  font-family: 'avenir-next-bold', 'Open Sans', sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 41px;
  color: #05235f;
  margin-bottom: 15px;
}
p {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  color: #021231;
  margin-bottom: 25px;
}
a {
  color: #05235f;
  cursor: pointer;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
ul {
  list-style: none;
  margin-bottom: 25px;
}
ul li {
  line-height: 25px;
  padding-left: 14px;
  position: relative;
}
ul li:before {
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 80%;
  text-rendering: auto;
  color: #05235f;
  content: "\f105";
  display: inline-block;
  position: absolute;
  top: 7px;
  left: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ol {
  margin-bottom: 25px;
  margin-left: 15px;
}
ol li {
  line-height: 25px;
  margin-bottom: 10px;
}
ol + ul {
  margin-left: 25px;
}
hr {
  background: #b0b0b0;
  border: none;
  margin: 0;
  width: 100%;
  height: 1px;
}
svg {
  width: 100%;
  height: 100%;
}
svg polygon {
  opacity: 0;
  cursor: pointer;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
svg polygon:hover {
  opacity: 1;
}
/*====================================================
STRUCTUUR
=====================================================*/
.pull-left {
  float: left;
}
.pull-right {
  float: right;
}
.leftmargin {
  margin-left: 10px;
}
.rightmargin {
  margin-right: 10px;
}
.clear {
  clear: both;
  overflow: hidden;
}
.no-margin {
  margin: 0;
}
.center-align {
  text-align: center;
}
.fixed {
  position: fixed;
}
.visible {
  visibility: visible;
}
.full-wrapper {
  min-height: 100%;
  height: auto !important;
  margin: 0 auto -432px;
  position: relative;
}
.full-wrapper.home {
  height: 100% !important;
  margin: 0;
}
@media only screen and (max-width: 1050px) {
  .full-wrapper {
    margin: 0 auto -568px;
  }
}
@media only screen and (max-width: 600px) {
  .full-wrapper {
    margin: 0 auto -847.2px;
  }
}
@media only screen and (max-width: 500px) {
  .full-wrapper {
    margin: 0 auto -872.2px;
  }
}
@media only screen and (max-width: 400px) {
  .full-wrapper {
    margin: 0 auto -897.2px;
  }
}
.push {
  height: 432px;
}
.push.home {
  display: none;
}
@media only screen and (max-width: 1050px) {
  .push {
    height: 568px;
  }
}
@media only screen and (max-width: 600px) {
  .push {
    height: 847.2px;
  }
}
@media only screen and (max-width: 500px) {
  .push {
    height: 872.2px;
  }
}
@media only screen and (max-width: 400px) {
  .push {
    height: 897.2px;
  }
}
@media print {
  .push {
    display: none;
    height: 0;
  }
}
.margtop {
  margin-top: 75px;
}
.container {
  margin: 0 auto;
  width: 1180px;
  position: relative;
}
@media only screen and (max-width: 1240px) {
  .container {
    width: 95%;
  }
}
.image-inline img[style*="float:left"],
.image-inline img[style*="float: left"] {
  margin: 0 20px 20px 0;
  max-width: 100%;
}
.image-inline img[style*="float:right"],
.image-inline img[style*="float: right"] {
  margin: 0 0 50px 30px;
  max-width: 100%;
}
@media only screen and (max-width: 768px) {
  .image-inline img[style*="float:left"],
  .image-inline img[style*="float: left"],
  .image-inline img[style*="float:right"],
  .image-inline img[style*="float: right"] {
    margin: 20px auto;
    display: table;
    height: auto !important;
    float: none !important;
  }
}
.image-inline p {
  text-align: justify;
}
.accent {
  color: #fbe601;
}
/*====================================================
TABLE
=====================================================*/
table {
  border-collapse: collapse;
}
table tr th,
table tr td {
  padding: 10px 10px 10px 0;
}
table tr th p,
table tr td p {
  text-align: center !important;
  margin-bottom: 0 !important;
}
table tr th {
  text-align: left;
}
/*====================================================
ALERTS
=====================================================*/
.alert {
  text-align: center;
  line-height: 24px;
  padding: 20px;
  border: 1px solid #616161;
  margin-bottom: 30px;
  display: block;
}
.alert p {
  margin: 0;
}
.alert.alert-succes {
  background-color: #d8f3cc;
  border-color: #a3cb92;
  margin-bottom: 0;
}
.alert.alert-error {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
/*====================================================
FORM
=====================================================*/
label {
  font-size: 14px;
  margin-bottom: 5px;
  display: block;
}
.form-row {
  margin-left: -2%;
  clear: both;
}
.form-row .form-item {
  margin-left: 2%;
  margin-bottom: 20px;
  width: 98%;
  float: left;
}
.form-row .form-item.half {
  width: 48%;
}
.form-row .form-item.vierde {
  width: 23%;
}
.form-row .form-item.no-margin {
  margin-bottom: 0;
}
.form-row .form-item.no-label {
  margin-top: 31px;
}
.form-row .form-item.form-btn {
  float: right;
}
.form-row .form-item.error-checkbox {
  padding: 5px 10px;
  border: solid 1px #fff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}
.form-row .form-item .error-checkbox .check-option {
  color: #a94442;
}
@media only screen and (max-width: 500px) {
  .form-row .form-item.half {
    width: 98%;
  }
  .form-row .form-item.half.less-margin {
    margin-bottom: 10px;
  }
  .form-row .form-item.vierde {
    width: 48%;
  }
  .form-row .form-item.no-label {
    margin-top: 0;
  }
}
input[type="text"],
input[type="password"],
input[type="number"],
input[type="date"],
select,
textarea {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: #021231;
  padding: 12px 16px;
  border: solid 1px #b0b0b0;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  width: 100%;
  -webkit-appearance: none;
}
input[type="checkbox"],
input[type="radio"] {
  position: absolute;
  top: 13px;
  left: 16px;
}
::-webkit-input-placeholder {
  color: #7d7d7d;
}
:-moz-placeholder {
  /* Firefox 18- */
  color: #7d7d7d;
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: #7d7d7d;
}
:-ms-input-placeholder {
  color: #7d7d7d;
}
.check-wrap {
  position: relative;
}
.verplicht i {
  font-size: 45%;
  color: #05235f;
  margin-top: 4px;
  margin-left: 2px;
  vertical-align: top;
}
.kantlijn {
  font-size: 12px;
  margin-bottom: 10px;
  float: left;
}
.kantlijn .verplicht i {
  margin-right: 2px;
  margin-left: 0;
}
.bestand-uitleg {
  font-size: 12px;
  margin-bottom: 10px;
}
.file-input.btn.btn-line {
  font-size: 15px;
  line-height: normal;
  color: #05235f;
  padding: 12px 16px;
  border: solid 1px #b0b0b0;
  margin: 0;
}
.file-input.btn.btn-line:after {
  content: '';
}
.file-input.btn.btn-line:hover {
  color: #05235f;
  border-color: #05235f;
}
input[type="text"].error-input,
input[type="number"].error-input,
input[type="password"].error-input,
select.error-input,
textarea.error-input {
  border: solid 1px #a94442;
}
input[type="text"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
  border: solid 1px #05235f;
}
input[type="submit"]:focus,
.form-item button:focus {
  outline: none;
}
input[type="file"] {
  padding: 0;
  width: 0;
  height: 0;
}
button {
  cursor: pointer;
}
.select-wrap {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: #021231;
  border: solid 1px #b0b0b0;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  width: 100%;
  position: relative;
}
.select-wrap.focus {
  border-color: #05235f;
}
.select-wrap.error-input {
  border-color: #a94442;
}
.select-wrap .selected {
  line-height: 20px;
  padding: 12px 16px;
  min-height: 44px;
  cursor: pointer;
}
.select-wrap .selected:after {
  margin-top: 2px;
  float: right;
  content: "\f0d7";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.select-wrap .selected:first-letter {
  text-transform: uppercase;
}
.select-wrap .sub-select {
  background: rgba(255, 255, 255, 0.9);
  padding-top: 44px;
  border: solid 1px #b0b0b0;
  border-top: none;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  -webkit-border-bottom-right-radius: 8px;
  -webkit-border-bottom-left-radius: 8px;
  -moz-border-radius-bottomright: 8px;
  -moz-border-radius-bottomleft: 8px;
  margin-bottom: 0;
  display: none;
  position: absolute;
  top: 45px;
  right: -1px;
  left: -1px;
  z-index: 105;
}
.select-wrap .sub-select.first {
  z-index: 6;
}
.select-wrap .sub-select li {
  padding-left: 0;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.select-wrap .sub-select li:before {
  content: '';
}
.select-wrap .sub-select li label {
  font-size: 15px;
  padding: 5px 16px;
  margin-bottom: 0;
  display: block;
  cursor: pointer;
}
.select-wrap .sub-select li label:hover {
  background: lightgrey;
}
.select-wrap .sub-select .sub-sub {
  padding-left: 25px;
  margin-bottom: 0;
  display: none;
}
.select-wrap .sub-select .select-gemeenten {
  margin-bottom: 0;
  max-height: 202px;
  overflow-y: scroll !important;
}
.select-wrap .sub-select .select-gemeenten::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
}
.select-wrap .sub-select .select-gemeenten::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}
.select-wrap .sub-select .select-gemeenten::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
}
.select-wrap .sub-select .select-gemeenten::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.5);
}
.select-wrap .sub-select .searchValue {
  color: #7c8aa5;
  position: absolute;
  top: 0;
  left: 0;
}
.select-wrap .sub-select .no-found {
  padding: 3.5px 16px;
  display: block;
}
.form-melding {
  font-weight: 700;
  text-align: center;
}
.form-melding.error {
  color: #05235f;
  margin-bottom: 26px;
}
form .tussentitel {
  font-size: 15px;
  font-weight: 700;
  color: #05235f;
  margin-bottom: 15px;
  clear: left;
}
.nieuwsbriefForm {
  margin-bottom: 30px;
}
.nieuwsbriefForm .form-item {
  margin-bottom: 10px;
}
/*====================================================
CHECKBOXES & RADIOS
=====================================================*/
.check-label,
.radio-label,
.check-no-select {
  cursor: pointer;
  display: inline-block;
  color: #021231;
}
.check-label input[type="checkbox"],
.radio-label input[type="checkbox"],
.check-no-select input[type="checkbox"],
.check-label input[type="radio"],
.radio-label input[type="radio"],
.check-no-select input[type="radio"] {
  display: none;
}
.check-label input[type="checkbox"] + .check-option:before,
.radio-label input[type="checkbox"] + .check-option:before,
.check-no-select input[type="checkbox"] + .check-option:before,
.check-label input[type="radio"] + .check-option:before,
.radio-label input[type="radio"] + .check-option:before,
.check-no-select input[type="radio"] + .check-option:before {
  content: "\f10c";
  font-family: "FontAwesome";
  color: #05235f;
  width: 1em;
  display: inline-block;
  margin-right: 10px;
}
.check-label input[type="checkbox"]:checked + .check-option:before,
.radio-label input[type="checkbox"]:checked + .check-option:before,
.check-no-select input[type="checkbox"]:checked + .check-option:before,
.check-label input[type="radio"]:checked + .check-option:before,
.radio-label input[type="radio"]:checked + .check-option:before,
.check-no-select input[type="radio"]:checked + .check-option:before {
  content: "\f192";
}
.check-label input[type="checkbox"] + .check-option:before,
.radio-label input[type="checkbox"] + .check-option:before,
.check-no-select input[type="checkbox"] + .check-option:before {
  content: "\f096";
}
.check-label input[type="checkbox"]:checked + .check-option:before,
.radio-label input[type="checkbox"]:checked + .check-option:before,
.check-no-select input[type="checkbox"]:checked + .check-option:before {
  content: "\f046";
}
.mobile-spacer {
  display: none;
}
@media only screen and (max-width: 500px) {
  .mobile-spacer {
    display: block;
    height: 15px;
  }
}
/*====================================================
BUTTON
=====================================================*/
.btn,
.ctabtn {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  line-height: 25px;
  color: #fbe601;
  background-color: #05235f;
  padding: 11px 47px 11px 45px;
  border: solid 1px #05235f;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  display: inline-block;
  min-width: 220px;
  position: relative;
  cursor: pointer;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.btn.btn-yellow {
  background-color: #fbe601;
  border: solid 1px #fbe601;
  color: #05235f;
}
.btn.btn-yellow:hover {
  background-color: #ddca01;
  border: solid 1px #fbe601;
}
.btn:after {
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: auto;
  line-height: 25px;
  display: inline-block;
  float: right;
  content: '\f105';
  position: absolute;
  right: 20px;
}
.btn.no-after:after {
  content: "";
}
.btn:hover {
  text-decoration: none;
  background-color: #02112f;
  border-color: #02112f;
}
.btn.btn-full {
  width: 100%;
}
.btn.btn-line {
  background: none;
  border-width: 2px;
  border-color: #fbe601;
}
.btn.btn-line:hover {
  color: #fff;
  border-color: #fff;
}
.btn.btn-line.blue-line {
  color: #05235f;
  border-color: #05235f;
}
.btn.btn-line.blue-line:hover {
  color: #fbe601;
  background: #05235f;
}
.btn.scrolltoId:after {
  content: '\f107';
}
.ctabtn {
  background-color: #02112f;
  border-color: #02112f;
}
.ctabtn:after {
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: auto;
  line-height: 25px;
  display: inline-block;
  float: right;
  content: '\f105';
  position: absolute;
  right: 20px;
}
.ctabtn:hover {
  background-color: #05235f;
  border-color: #05235f;
}
.no-btn-link {
  text-decoration: none;
  line-height: 27px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.no-btn-link:hover {
  color: #02112f;
}
.btn-wrapper {
  text-align: center;
}
.btn-wrapper .btn {
  margin-right: 20px;
}
.btn-wrapper .btn:last-child {
  margin-right: 0;
}
.btn-wrapper.margin-top {
  margin-top: 40px;
}
/*====================================================
BESTANDEN
=====================================================*/
.bestanden-wrapper {
  margin-bottom: 30px;
}
.bestanden-wrapper a {
  text-decoration: none;
  margin-top: 10px;
  display: block;
}
.bestanden-wrapper a:first-child {
  margin-top: 0;
}
/*====================================================
BREADCRUMB
=====================================================*/
.breadcrumb-wrapper {
  padding: 20px 0 35px;
}
.breadcrumb-wrapper .breadcrumb {
  font-size: 13px;
  line-height: 20px;
  list-style: none;
  overflow: hidden;
}
.breadcrumb-wrapper .breadcrumb .breadcrumb-item {
  display: inline-block;
}
.breadcrumb-wrapper .breadcrumb .breadcrumb-item a {
  text-decoration: none;
  line-height: 20px;
  color: #021231;
}
.breadcrumb-wrapper .breadcrumb .breadcrumb-item a:hover {
  color: #05235f;
}
.breadcrumb-wrapper .breadcrumb .breadcrumb-item span {
  line-height: 20px;
  vertical-align: middle;
}
.breadcrumb-wrapper .breadcrumb .breadcrumb-item i {
  font-size: 50%;
  color: #fbe601;
  line-height: 20px;
  vertical-align: middle;
}
.breadcrumb-wrapper .breadcrumb .breadcrumb-item.breadcrumb-back {
  margin-right: 20px;
}
.breadcrumb-wrapper .breadcrumb .breadcrumb-item.breadcrumb-back a i {
  font-size: 100%;
}
@media only screen and (max-width: 768px) {
  .breadcrumb-wrapper .row {
    margin: 0;
  }
  .breadcrumb-wrapper .row [class*="span"] {
    margin-top: 20px;
    margin-bottom: 0;
  }
}
/*====================================================
COOKIE
=====================================================*/
.cookie-banner {
  color: #fff;
  background: rgba(5, 35, 95, 0.8);
  padding: 15px;
  width: 100%;
  max-width: 455px;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 100;
}
.cookie-banner .text {
  font-size: 13px;
  line-height: 18px;
  position: relative;
}
.cookie-banner .text a {
  color: #fff;
}
.cookie-banner .text .btn {
  font-size: 14px;
  padding: 5px 14px;
  min-width: 0;
}
.cookie-banner .text .btn:after {
  margin: 0;
  content: '';
}
.cookie-banner .text .content-links {
  width: 77%;
  float: left;
}
.cookie-banner .text .content-links .content {
  margin-bottom: 10px;
  display: block;
}
.cookie-banner .text .content-rechts {
  width: 20%;
  position: absolute;
  right: 0;
  bottom: 0;
}
.cookie-banner .text .content-rechts .btn {
  float: right;
}
.cookie-banner .text .show-mobile {
  display: none;
}
.cookie-banner .text .hide-mobile {
  display: block;
}
@media only screen and (max-width: 1240px) {
  .cookie-banner .text {
    font-size: 12px;
    line-height: 17px;
  }
}
@media only screen and (max-width: 500px) {
  .cookie-banner {
    padding: 10px;
    max-width: 100%;
    bottom: 0;
    right: 0;
  }
  .cookie-banner .text .content-links {
    width: auto;
    float: none;
  }
  .cookie-banner .text .content-rechts {
    margin: 0 0 15px 15px;
    width: auto;
    float: right;
    position: relative;
    right: auto;
    bottom: auto;
  }
  .cookie-banner .text .show-mobile {
    display: block;
  }
  .cookie-banner .text .hide-mobile {
    display: none;
  }
}
/*====================================================
SCROLL TO TOP
=====================================================*/
.scrolltoTop {
  font-size: 20px;
  text-align: center;
  line-height: 40px;
  color: #fff;
  background: rgba(5, 35, 95, 0.8);
  border-radius: 100%;
  display: none;
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 100;
  cursor: pointer;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.scrolltoTop:hover {
  background: #05235f;
}
/*====================================================
SLICK-SLIDER
=====================================================*/
.slick-slider button {
  font-size: 70px;
  color: #fff;
  background: none;
  border: none;
  margin-top: -40px;
  height: 80px;
  position: absolute;
  top: 50%;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.slick-slider button:hover {
  opacity: 0.6;
}
.slick-slider button.slick-prev {
  padding-left: 15px;
  left: 0;
}
.slick-slider button.slick-next {
  padding-right: 15px;
  right: 0;
}
/*====================================================
MODAL
=====================================================*/
.hide {
  display: none;
}
.modal-open .dropdown-menu {
  z-index: 2050;
}
.modal-open .dropdown.open {
  *z-index: 2050;
}
.modal-open .popover {
  z-index: 2060;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop,
.modal-backdrop.fade.in {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.modal h2 {
  margin-bottom: 8px;
}
.modal {
  background: #fff;
  padding: 25px 20px;
  border: solid 1px #b0b0b0;
  width: 40%;
  max-height: 80%;
  position: fixed;
  top: 10%;
  left: 30%;
  z-index: 1050;
  overflow: hidden;
  -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding-box;
  background-clip: padding-box;
}
.modal .modal-title {
  font-family: 'avenir-next-semi-bold', 'Open Sans', sans-serif;
  font-size: 21px;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 30px;
  color: #05235f;
  padding-bottom: 5px;
  border-bottom: 1px solid #b0b0b0;
  margin-bottom: 20px;
}
.modal .modal-body {
  padding: 15px 0;
  overflow-y: auto;
}
.modal .modal-body .text .form label {
  font-weight: 600;
}
.modal .buttongroup {
  font-size: 22px;
  position: absolute;
  top: 15px;
  right: 20px;
}
.modal.popup {
  background: #fff;
  padding: 0;
  border: 0;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  margin-left: -590px;
  width: 1180px;
  height: 50%;
  top: 25%;
  left: 50%;
  overflow: hidden;
}
.modal.popup .popup-foto {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal.popup .popup-foto:after {
  content: '';
  background: rgba(5, 35, 95, 0.7);
  position: absolute;
  height: 100%;
  width: 100%;
}
.modal.popup .popup-foto i {
  z-index: 1;
  font-size: 120px;
  color: yellow;
  text-shadow: 2px 2px 6px black;
}
@media only screen and (max-width: 400px) {
  .modal.popup .popup-foto i {
    font-size: 70px;
  }
}
.modal.popup .popup-body {
  padding: 30px 0 105px 30px;
  margin-left: 50%;
  width: 50%;
  height: 100%;
  position: relative;
}
.modal.popup .popup-body .popup-inner {
  padding-right: 30px;
  max-height: 100%;
  overflow-y: scroll;
}
.modal.popup .popup-body .popup-inner::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 5px;
}
.modal.popup .popup-body .popup-inner::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(130, 130, 130, 0.5);
}
.modal.popup .popup-body .popup-inner .popup-titel {
  font-family: 'avenir-next-bold', 'Open Sans', sans-serif;
  font-size: 26px;
  font-weight: 400;
  text-align: left;
  text-transform: uppercase;
  line-height: 36px;
  color: #05235f;
  margin-bottom: 26px;
}
.modal.popup .popup-body .popup-inner .popup-logo {
  text-align: center;
  margin-bottom: 26px;
  height: 100px;
}
.modal.popup .popup-body .popup-inner .popup-logo img {
  margin: 0 auto;
  width: auto;
  height: 100%;
}
.modal.popup .popup-body .popup-inner .popup-omschrijving p {
  margin-bottom: 0;
}
.modal.popup .popup-body .btn {
  margin-bottom: 0;
  max-width: 100%;
}
.modal.popup .popup-body .close-popup {
  font-size: 25px;
  line-height: 25px;
  position: absolute;
  top: 0px;
  right: 0px;
}
.modal.popup .popup-body .close-popup .closeMessage {
  line-height: 25px;
  padding: 6px 10px 18px 18px;
  display: block;
}
@media only screen and (max-height: 800px) {
  .modal.popup {
    height: 70%;
    top: 15%;
  }
}
@media only screen and (max-width: 1240px) {
  .modal.popup {
    margin-left: 0;
    width: 95%;
    left: 2.5%;
  }
}
@media only screen and (max-width: 768px) {
  .modal.popup {
    width: 70%;
    height: 80%;
    top: 10%;
    left: 15%;
  }
  .modal.popup .popup-foto {
    width: 100%;
    height: 50%;
    position: relative;
    top: auto;
    left: auto;
  }
  .modal.popup .popup-body {
    margin-left: 0;
    width: 100%;
    height: 50%;
  }
  .modal.popup .popup-body .close-popup {
    top: -100%;
  }
  .modal.popup .popup-body .close-popup .closeMessage {
    color: #fff;
  }
}
@media only screen and (max-width: 500px) {
  .modal.popup {
    width: 90%;
    height: 70%;
    top: 15%;
    left: 5%;
  }
  .modal.popup .popup-foto {
    height: 35%;
  }
  .modal.popup .popup-body {
    padding: 20px 0 95px 20px;
    height: 65%;
  }
  .modal.popup .popup-body .popup-inner {
    padding-right: 20px;
  }
  .modal.popup .popup-body .popup-inner .popup-titel {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 15px;
  }
  .modal.popup .popup-body .popup-inner .popup-logo {
    margin-bottom: 15px;
    display: none;
  }
  .modal.popup .popup-body .btn {
    bottom: 20px;
    left: 20px;
  }
  .modal.popup .popup-body .close-popup {
    top: -54%;
  }
}
@media only screen and (max-height: 800px) {
  .modal {
    max-height: 90%;
    top: 5%;
  }
  .modal .modal-body {
    height: 400px;
  }
}
@media only screen and (max-height: 600px) {
  .modal .modal-body {
    height: 200px;
  }
}
@media only screen and (max-width: 1240px) {
  .modal {
    width: 70%;
    left: 15%;
  }
}
@media only screen and (max-width: 600px) {
  .modal {
    width: 90%;
    left: 5%;
  }
  .modal .modal-body {
    padding: 15px 0;
    overflow-y: auto;
  }
  .modal .modal-body .text .form .btn {
    padding: 11px 15px;
    width: 100%;
  }
}
.modal.fade {
  -webkit-transition: opacity 0.3s linear, top 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, top 0.3s ease-out;
  -ms-transition: opacity 0.3s linear, top 0.3s ease-out;
  -o-transition: opacity 0.3s linear, top 0.3s ease-out;
  transition: opacity 0.3s linear, top 0.3s ease-out;
  top: -25%;
}
.modal.fade.in {
  top: 50%;
}
.modal-header {
  padding: 9px 15px;
  border-bottom: 1px solid #eee;
}
.modal .buttongroup .btn {
  margin-right: 20px;
}
.modal-header .close {
  margin-top: 2px;
}
.modal-form {
  margin-bottom: 0;
}
.modal-footer {
  padding: 15px 0 0 0;
  margin-bottom: 0;
  text-align: center;
  -webkit-box-shadow: inset 0 1px 0 #ffffff;
  -moz-box-shadow: inset 0 1px 0 #ffffff;
  box-shadow: inset 0 1px 0 #ffffff;
  *zoom: 1;
}
.modal-footer:before,
.modal-footer:after {
  display: table;
  content: "";
}
.modal-footer:after {
  clear: both;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
/*====================================================
ICONS
=====================================================*/
.icon {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
}
.icon.icon-badkamer {
  background-image: url('../images/icon/badkamer.png');
}
.icon.icon-slaapkamer {
  background-image: url('../images/icon/slaapkamer.png');
}
/*====================================================
SOCIAL SHARE
=====================================================*/
.social-share {
  margin-bottom: 30px;
}
.social-share a {
  text-decoration: none;
  margin-left: 10px;
  display: block;
  float: left;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.social-share a:first-child {
  margin-left: 0;
}
.social-share a:hover {
  color: #02112f;
}
.social-share a.facebook {
  color: #3b5998;
}
.social-share a.facebook:hover {
  color: #2d4373;
}
.social-share a.twitter {
  color: #00acee;
}
.social-share a.twitter:hover {
  color: #0087bb;
}
.social-share a.linkedin {
  color: #0077b5;
}
.social-share a.linkedin:hover {
  color: #005582;
}
.social-share a.pinterest {
  color: #c8232c;
}
.social-share a.pinterest:hover {
  color: #9d1b22;
}
.social-share a.googleplus {
  color: #d34836;
}
.social-share a.googleplus:hover {
  color: #b03626;
}
.social-share a i {
  font-size: 40px;
}
/*====================================================
HEADER
=====================================================*/
.menu ul {
  margin-bottom: 0;
}
.menu ul li {
  padding-left: 0;
  display: inline-block;
}
.menu ul li:before {
  background: rgba(251, 230, 1, 0.3);
  display: block;
  width: 1px;
  height: 34%;
  position: absolute;
  top: 33%;
  left: 0;
  content: '';
}
.menu ul li:first-child:before {
  width: 0;
  height: 0;
}
.menu ul li a {
  font-family: 'avenir-next-semi-bold', 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  line-height: 20px;
  color: #fff;
  padding: 15px 25px;
  display: block;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
@media print {
  .menu {
    display: none;
  }
}
.header {
  padding-bottom: 60px;
  border-top: solid 4px #05235f;
  position: relative;
}
.header.no-margin {
  padding-bottom: 0;
}
.header.header-img {
  padding-bottom: 300px;
  margin-bottom: 60px;
}
.header.header-img.no-margin {
  padding-bottom: 300px;
  margin-bottom: 0;
}
.header.home {
  height: 100%;
}
.header.home,
.header.header-img {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.header.home .overlay,
.header.header-img .overlay {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#434343+0,434343+100&0.7+0,0+50 */
  background: -moz-linear-gradient(top, rgba(67, 67, 67, 0.7) 0%, rgba(67, 67, 67, 0) 50%, rgba(67, 67, 67, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(67, 67, 67, 0.7) 0%, rgba(67, 67, 67, 0) 50%, rgba(67, 67, 67, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(67, 67, 67, 0.7) 0%, rgba(67, 67, 67, 0) 50%, rgba(67, 67, 67, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b3434343', endColorstr='#00434343', GradientType=0);
  /* IE6-9 */
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.header.home .top-header .part-left .phone,
.header.header-img .top-header .part-left .phone {
  color: #fbe601;
}
.header.home .top-header .menu ul li.active a,
.header.header-img .top-header .menu ul li.active a {
  color: #fbe601;
}
.header.home .top-header .menu ul li a,
.header.header-img .top-header .menu ul li a {
  color: #fff;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.header.home .top-header .menu ul li a:before,
.header.header-img .top-header .menu ul li a:before {
  background: none;
}
.header.home .top-header .menu ul li a:hover,
.header.header-img .top-header .menu ul li a:hover {
  color: #fbe601;
}
.header .top-header {
  padding: 6px 0;
  position: relative;
}
.header .top-header .part-left {
  float: left;
}
.header .top-header .part-left .menu ul li:first-child {
  display: inline-block;
}
.header .top-header .part-left .phone {
  font-family: 'avenir-next', 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  line-height: 17px;
  color: #05235f;
  padding: 15px 20px;
  display: none;
}
.header .top-header .menu {
  float: right;
}
.header .top-header .menu ul li:before {
  background: rgba(5, 35, 95, 0.3);
}
.header .top-header .menu ul li:first-child {
  display: none;
}
.header .top-header .menu ul li:nth-child(2):before {
  width: 0;
  height: 0;
}
.header .top-header .menu ul li.active a:before {
  opacity: 1;
}
.header .top-header .menu ul li a {
  font-size: 13px;
  line-height: 17px;
  color: #05235f;
  padding: 15px 20px;
  position: relative;
}
.header .top-header .menu ul li a:before {
  background: #05235f;
  opacity: 0;
  width: calc(100% - 40px);
  height: 1px;
  position: absolute;
  bottom: 12px;
  left: 20px;
  content: '';
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.header .top-header .menu ul li a:hover:before {
  opacity: 1;
}
.header .top-header .menu ul li a i {
  font-size: 80%;
  line-height: 17px;
  color: #fbe601;
  vertical-align: top;
}
.header .menu-header {
  background: #05235f;
  position: relative;
}
.header .menu-header .logo {
  display: block;
  height: 50px;
  float: left;
}
.header .menu-header .logo img {
  width: auto;
  height: 100%;
}
.header .menu-header .phone {
  font-family: 'avenir-next', 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  line-height: 20px;
  color: #fbe601;
  padding: 15px 30px 15px 20px;
  display: block;
  float: right;
}
.header .menu-header .menu {
  float: right;
}
.header .menu-header .menu ul li.active a {
  color: #fbe601;
}
.header .menu-header .menu ul li a {
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.header .menu-header .menu ul li a:hover {
  color: #fbe601;
}
.header .menu-header .schatting-link {
  position: absolute;
  right: 25px;
  display: block;
  background: #fbe601;
  color: #05235f;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 0 0 7px 7px;
}
@media only screen and (max-width: 1240px) {
  .header .top-header .part-left .menu {
    display: none;
  }
  .header .top-header .part-left .phone {
    display: block;
  }
  .header .top-header .menu ul li:first-child {
    display: inline-block;
  }
  .header .top-header .menu ul li:nth-child(2):before {
    width: 1px;
    height: 34%;
  }
  .header .top-header .menu ul li a {
    padding: 15px 17px;
  }
  .header .menu-header .phone {
    display: none;
  }
}
@media only screen and (max-width: 1050px) {
  .header {
    border-top: none;
  }
  .header.header-img {
    background-image: none !important;
    padding-bottom: 60px;
    margin-bottom: 0;
  }
  .header.header-img.no-margin {
    background-image: none !important;
    padding-bottom: 0;
  }
  .header .wrap {
    width: 100%;
  }
  .header .top-header {
    display: none;
  }
  .header .menu-header .menu {
    display: none;
  }
  .header .menu-header .phone {
    display: block;
    float: left;
  }
}
@media only screen and (max-width: 600px) {
  .header .menu-header .phone {
    display: none;
  }
}
@media only screen and (max-width: 400px) {
  .header .menu-header .logo {
    height: 39px;
  }
}
@media print {
  .header {
    padding-bottom: 30px !important;
    border-top: none;
  }
  .header .top-header {
    display: none;
  }
  .header .menu-header {
    background: none;
  }
  .header .menu-header .phone {
    color: #05235f;
    padding-right: 0;
  }
}
.mobile-toggle {
  padding: 15px 20px;
  display: none;
  float: right;
  cursor: pointer;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.mobile-toggle:hover .woord {
  color: #fbe601;
}
.mobile-toggle.close .line:nth-child(1) {
  margin-top: 5px;
  transform: rotate(45deg) translate3d(0, 0, 0);
  -webkit-transform: rotate(45deg) translate3d(0, 0, 0);
  -ms-transform: rotate(45deg) translate3d(0, 0, 0);
}
.mobile-toggle.close .line:nth-child(2) {
  margin-top: -3px;
  transform: rotate(-45deg) translate3d(0, 0, 0);
  -webkit-transform: rotate(-45deg) translate3d(0, 0, 0);
  -ms-transform: rotate(-45deg) translate3d(0, 0, 0);
}
.mobile-toggle.close .line:nth-child(3) {
  display: none;
}
.mobile-toggle.close .line-wrap {
  margin-top: 4px;
}
.mobile-toggle .woord {
  font-family: 'avenir-next', 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  color: #fff;
  display: block;
  float: left;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.mobile-toggle .line-wrap {
  float: left;
  margin-left: 10px;
}
.mobile-toggle .line {
  background: #fbe601;
  border-radius: 1.5px;
  -webkit-border-radius: 1.5px;
  -moz-border-radius: 1.5px;
  margin-top: 3px;
  width: 21px;
  height: 3px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.mobile-toggle .line:first-child {
  margin-top: 2.5px;
}
@media only screen and (max-width: 1050px) {
  .mobile-toggle {
    display: block;
  }
}
@media only screen and (max-width: 400px) {
  .mobile-toggle {
    padding: 12px 20px;
  }
  .mobile-toggle .woord {
    display: none;
  }
  .mobile-toggle .line-wrap {
    margin-left: 0;
  }
  .mobile-toggle .line-wrap .line:first-child {
    margin-top: 0;
  }
}
.mobile-menu {
  background: #05235f;
  padding-top: 10px;
  display: none;
  width: 100%;
  position: absolute;
  z-index: 9999;
}
.mobile-menu ul {
  margin-bottom: 0;
}
.mobile-menu ul li {
  padding-left: 0;
}
.mobile-menu ul li:before {
  background: rgba(251, 230, 1, 0.5);
  content: '';
  display: block;
  width: 98%;
  height: 1px;
  position: absolute;
  top: 0;
  left: 1%;
}
.mobile-menu ul li:first-child:before {
  height: 0;
}
.mobile-menu ul li a {
  font-family: 'avenir-next', 'Open Sans', sans-serif;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  padding: 10px 15px;
  display: block;
}
.mobile-menu ul li a:after {
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: auto;
  color: #fbe601;
  margin-top: 5px;
  content: "\f105";
  display: inline-block;
  float: right;
}
.mobile-menu ul li a i {
  color: #fbe601;
}
.mobile-menu .phone {
  font-family: 'avenir-next', 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #05235f;
  background: #fbe601;
  padding: 15px 15px;
  display: none;
}
@media only screen and (max-width: 600px) {
  .mobile-menu .phone {
    display: block;
  }
}
/*====================================================
FOOTER
=====================================================*/
.footer {
  border-bottom: solid 4px #fbe601;
  position: relative;
}
.footer.border {
  border-top: solid 1px #05235f;
}
.footer .top-footer {
  padding: 80px 0 60px;
}
.footer .top-footer .col-wrap {
  margin-left: -2%;
}
.footer .top-footer .col-wrap .footer-wrap {
  width: 50%;
  float: left;
}
.footer .top-footer .col-wrap .footer-wrap .col {
  margin-left: 4%;
  width: 46%;
  float: left;
}
.footer .top-footer .col-wrap .footer-wrap .col .logo {
  display: block;
  max-width: 180px;
}
.footer .top-footer .col-wrap .footer-wrap .col .footer-titel {
  font-family: 'avenir-next', 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #05235f;
  margin-bottom: 15px;
}
.footer .top-footer .col-wrap .footer-wrap .col .footer-tekst p {
  font-family: 'avenir-next', 'Open Sans', sans-serif;
  font-size: 14px;
  color: #05235f;
  margin-bottom: 15px;
}
.footer .top-footer .col-wrap .footer-wrap .col .menu-wrap .menu-col {
  font-family: 'avenir-next', 'Open Sans', sans-serif;
  width: 50%;
  float: left;
}
.footer .top-footer .col-wrap .footer-wrap .col .menu-wrap .menu-col ul {
  margin-bottom: 0;
}
.footer .top-footer .col-wrap .footer-wrap .col .menu-wrap .menu-col ul li {
  padding-left: 0;
}
.footer .top-footer .col-wrap .footer-wrap .col .menu-wrap .menu-col ul li:before {
  content: '';
}
.footer .top-footer .col-wrap .footer-wrap .col .menu-wrap .menu-col ul li:first-child a {
  padding-top: 0;
}
.footer .top-footer .col-wrap .footer-wrap .col .menu-wrap .menu-col ul li a {
  text-decoration: none;
  padding: 5px 0 0;
  display: block;
}
.footer .top-footer .col-wrap .footer-wrap .col .phone {
  font-family: 'avenir-next', 'Open Sans', sans-serif;
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
  color: #05235f;
  display: block;
}
.footer .top-footer .col-wrap .footer-wrap .col .phone i {
  vertical-align: top;
}
.footer .top-footer .col-wrap .footer-wrap .col .footer-nieuwsbrief .form-row .form-item.e-mail {
  width: 73%;
  height: 47px;
  float: left;
}
.footer .top-footer .col-wrap .footer-wrap .col .footer-nieuwsbrief .form-row .form-item.e-mail input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  -moz-border-top-right-radius: 0;
  -moz-border-radius-bottomright: 0;
  width: 100%;
  height: 100%;
}
.footer .top-footer .col-wrap .footer-wrap .col .footer-nieuwsbrief .form-row .form-item.button {
  margin-left: 0;
  width: 25%;
  height: 47px;
  float: left;
}
.footer .top-footer .col-wrap .footer-wrap .col .footer-nieuwsbrief .form-row .form-item.button .btn {
  padding: 10px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -moz-border-top-left-radius: 0;
  -moz-border-radius-bottomleft: 0;
  min-width: 0;
  width: 100%;
  height: 100%;
}
.footer .top-footer .col-wrap .footer-wrap .col .footer-nieuwsbrief .form-row .form-item.button .btn:after {
  content: '';
}
.footer .top-footer .col-wrap .footer-wrap .col .footer-nieuwsbrief .form-row .form-item.button .btn i {
  font-size: 20px;
}
.footer .top-footer .col-wrap .footer-wrap .col .footer-logos a {
  font-size: 20px;
  text-align: center;
  line-height: 35px;
  color: #fff;
  margin-right: 10px;
  display: block;
  width: 35px;
  height: 35px;
  float: left;
  vertical-align: middle;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.footer .top-footer .col-wrap .footer-wrap .col .footer-logos a:hover {
  opacity: 0.7;
}
.footer .top-footer .col-wrap .footer-wrap .col .footer-logos a.icon {
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
}
.footer .top-footer .col-wrap .footer-wrap .col .footer-logos a.facebook {
  background: #3b5998;
}
.footer .top-footer .col-wrap .footer-wrap .col .footer-logos a.linkedin {
  background: #0077b5;
}
.footer .top-footer .col-wrap .footer-wrap .col .footer-logos a.instagram {
  background: #D92E7F;
  background: radial-gradient(circle at 33% 100%, #FED373 4%, #F15245 30%, #D92E7F 62%, #9B36B7 85%, #515ECF);
}
.footer .bottom-footer {
  font-size: 13px;
  line-height: 23px;
  color: #fff;
  background: #05235f;
  padding: 20px 0;
}
.footer .bottom-footer a {
  color: #fff;
}
.footer .bottom-footer .copyright {
  float: left;
}
.footer .bottom-footer .copyright i {
  font-size: 35%;
  vertical-align: middle;
}
.footer .bottom-footer .innomedio {
  float: right;
}
@media only screen and (max-width: 1050px) {
  .footer .top-footer .col-wrap .footer-wrap .col {
    margin-top: 40px;
    width: 96%;
    float: none;
  }
  .footer .top-footer .col-wrap .footer-wrap .col:first-child {
    margin-top: 0;
  }
}
@media only screen and (max-width: 600px) {
  .footer .top-footer {
    padding: 60px 0;
  }
  .footer .top-footer .col-wrap .footer-wrap {
    width: 100%;
  }
  .footer .top-footer .col-wrap .footer-wrap:first-child .col:first-child {
    margin-top: 0;
  }
  .footer .top-footer .col-wrap .footer-wrap .col:first-child {
    margin-top: 40px;
  }
  .footer .bottom-footer .copyright {
    float: none;
  }
  .footer .bottom-footer .innomedio {
    margin-top: 3px;
    float: none;
  }
}
@media print {
  .footer {
    display: none;
  }
  .footer .top-footer {
    padding: 0;
  }
  .footer .bottom-footer {
    padding: 0;
  }
}
/*====================================================
CONTENT
=====================================================*/
.background {
  background: #f9f9f9;
}
.back-to-wrap {
  padding: 15px 0 26px;
}
.back-to-wrap a {
  text-decoration: none;
  line-height: 19px;
  color: #b0b0b0;
}
.back-to-wrap a:hover {
  color: #05235f;
}
@media print {
  .back-to-wrap {
    display: none;
  }
}
.padding-wrap {
  padding-bottom: 80px;
}
.padding-wrap.top {
  padding-top: 80px;
}
.padding-wrap.only-top {
  padding-top: 80px;
  padding-bottom: 0;
}
.padding-wrap.no-bottom {
  padding-bottom: 55px;
}
.padding-wrap.border-bottom {
  border-bottom: solid 1px #b0b0b0;
}
@media only screen and (max-width: 768px) {
  .padding-wrap {
    padding-bottom: 60px;
  }
  .padding-wrap.top {
    padding-top: 60px;
  }
  .padding-wrap.only-top {
    padding-top: 60px;
  }
  .padding-wrap.no-bottom {
    padding-bottom: 35px;
  }
}
@media print {
  .padding-wrap {
    padding-bottom: 20px;
  }
  .padding-wrap.top {
    padding-top: 20px;
  }
  .padding-wrap.only-top {
    padding-top: 20px;
    padding-bottom: 0;
  }
  .padding-wrap.no-bottom {
    padding-bottom: 0;
  }
}
.hoofd-wrap {
  text-align: center;
  margin: 0 auto 40px;
  width: 100%;
  max-width: 980px;
  position: relative;
}
.hoofd-wrap.no-max {
  max-width: none;
}
.hoofd-wrap.no-margin {
  margin-bottom: 0;
}
.hoofd-wrap.no-center {
  text-align: left;
}
.hoofd-wrap h1,
.hoofd-wrap h2 {
  margin-bottom: 0;
}
.hoofd-wrap .boventitel {
  font-family: 'avenir-next-semi-bold', 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 19px;
  text-transform: uppercase;
  color: #05235f;
}
.hoofd-wrap .inner-inhoud {
  margin-top: 20px;
}
.small-wrap-center {
  text-align: center;
  margin: 0 auto;
  width: 100%;
  max-width: 980px;
}
.inhoud-wrap .afbeeldingen {
  margin-top: 40px;
  margin-bottom: 25px;
  margin-left: -2%;
}
.inhoud-wrap .afbeeldingen a {
  background-color: #000;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  margin-top: 2%;
  margin-left: 2%;
  display: block;
  width: 18%;
  float: left;
  position: relative;
  overflow: hidden;
}
.inhoud-wrap .afbeeldingen a:nth-child(-n+5) {
  margin-top: 0;
}
.inhoud-wrap .afbeeldingen a:nth-child(5n+1) {
  clear: left;
}
.inhoud-wrap .afbeeldingen a:hover .fa-youtube-play {
  opacity: 0.7;
}
.inhoud-wrap .afbeeldingen a:hover .fa-search-plus {
  opacity: 0.7;
}
.inhoud-wrap .afbeeldingen a img {
  display: block;
  width: 100%;
}
.inhoud-wrap .afbeeldingen a i {
  font-size: 50px;
  margin-top: -25px;
  margin-left: -25px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.inhoud-wrap .afbeeldingen a i.fa-search-plus {
  margin-left: -23.22px;
  opacity: 0;
}
.inhoud-wrap .bestanden {
  margin-bottom: 25px;
}
@media only screen and (max-width: 768px) {
  .inhoud-wrap .afbeeldingen a {
    width: 23%;
  }
  .inhoud-wrap .afbeeldingen a:nth-child(5) {
    margin-top: 2%;
  }
  .inhoud-wrap .afbeeldingen a:nth-child(5n+1) {
    clear: none;
  }
  .inhoud-wrap .afbeeldingen a:nth-child(4n+1) {
    clear: left;
  }
}
@media only screen and (max-width: 500px) {
  .inhoud-wrap .afbeeldingen a {
    width: 31.33%;
  }
  .inhoud-wrap .afbeeldingen a:nth-child(4) {
    margin-top: 2%;
  }
  .inhoud-wrap .afbeeldingen a:nth-child(4n+1) {
    clear: none;
  }
  .inhoud-wrap .afbeeldingen a:nth-child(3n+1) {
    clear: left;
  }
}
@media only screen and (max-width: 400px) {
  .inhoud-wrap .afbeeldingen a {
    width: 48%;
  }
  .inhoud-wrap .afbeeldingen a:nth-child(3) {
    margin-top: 2%;
  }
  .inhoud-wrap .afbeeldingen a:nth-child(3n+1) {
    clear: none;
  }
  .inhoud-wrap .afbeeldingen a:nth-child(2n+1) {
    clear: left;
  }
}
.no-result {
  text-align: center;
  font-weight: 700;
}
/*====================================================
CONTENT > HOME
=====================================================*/
.home-drie-blok-wrap {
  margin-left: -8%;
}
.home-drie-blok-wrap.verkopen .home-blok {
  margin-bottom: 30px;
}
.home-drie-blok-wrap.verkopen .home-blok:nth-child(3n+1) {
  clear: left;
}
.home-drie-blok-wrap .home-blok {
  margin-left: 8%;
  display: block;
  width: 25.333%;
  float: left;
}
.home-drie-blok-wrap .home-blok .icon {
  margin-right: 5%;
  width: 25%;
  float: left;
}
.home-drie-blok-wrap .home-blok .content {
  width: 70%;
  float: left;
}
.home-drie-blok-wrap .home-blok .content .titel {
  font-family: 'avenir-next-semi-bold', 'Open Sans', sans-serif;
  text-transform: uppercase;
  color: #05235f;
}
.home-drie-blok-wrap .home-blok .content .tekst p {
  color: #05235f;
}
.home-drie-blok-wrap .home-blok .content .tekst .underline {
  text-decoration: underline;
}
@media only screen and (max-width: 880px) {
  .home-drie-blok-wrap {
    margin-left: -2%;
  }
  .home-drie-blok-wrap .home-blok {
    margin-left: 2%;
    width: 31.333%;
  }
}
@media only screen and (max-width: 700px) {
  .home-drie-blok-wrap.verkopen .home-blok:nth-child(3) {
    margin: 0 0 30px 2%;
    float: left;
  }
  .home-drie-blok-wrap.verkopen .home-blok:nth-child(3) .icon,
  .home-drie-blok-wrap.verkopen .home-blok:nth-child(3) .content {
    margin-top: 0;
  }
  .home-drie-blok-wrap.verkopen .home-blok:nth-child(3n+1) {
    clear: none;
  }
  .home-drie-blok-wrap.verkopen .home-blok:nth-child(2n+1) {
    clear: left;
  }
  .home-drie-blok-wrap .home-blok {
    width: 48%;
  }
  .home-drie-blok-wrap .home-blok:nth-child(3) {
    margin: 0 auto;
    float: none;
  }
  .home-drie-blok-wrap .home-blok:nth-child(3) .icon,
  .home-drie-blok-wrap .home-blok:nth-child(3) .content {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 500px) {
  .home-drie-blok-wrap .home-blok {
    width: 98%;
    float: none;
    margin-top: 30px;
  }
  .home-drie-blok-wrap .home-blok:first-child {
    margin-top: 0;
  }
  .home-drie-blok-wrap .home-blok:nth-child(3) {
    margin: 30px 0 0 2%;
  }
  .home-drie-blok-wrap .home-blok:nth-child(3) .icon,
  .home-drie-blok-wrap .home-blok:nth-child(3) .content {
    margin-top: 0;
  }
}
/*====================================================
CONTENT > TEGELS
=====================================================*/
.tegel-wrap {
  margin-left: -2%;
}
.tegel-wrap .tegel {
  text-decoration: none;
  color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 2%;
  margin-top: 2%;
  margin-left: 2%;
  display: block;
  width: 31.333%;
  float: left;
  position: relative;
  overflow: hidden;
}
.tegel-wrap .tegel:nth-child(-n+3) {
  margin-top: 0;
}
.tegel-wrap .tegel:hover .overlay {
  opacity: 0;
}
.tegel-wrap .tegel:hover .toggle-kader {
  padding: 0;
}
.tegel-wrap .tegel:hover .kader .slaapkamer,
.tegel-wrap .tegel:hover .kader .badkamer,
.tegel-wrap .tegel:hover .kader .vanafprijs,
.tegel-wrap .tegel:hover .kader .appartement,
.tegel-wrap .tegel:hover .kader .inner-content {
  opacity: 0;
}
.tegel-wrap .tegel.no-hover:hover .overlay {
  opacity: 1;
}
.tegel-wrap .tegel.no-hover:hover .toggle-kader {
  padding: 4%;
}
.tegel-wrap .tegel.no-hover:hover .kader .slaapkamer,
.tegel-wrap .tegel.no-hover:hover .kader .badkamer,
.tegel-wrap .tegel.no-hover:hover .kader .vanafprijs,
.tegel-wrap .tegel.no-hover:hover .kader .appartement,
.tegel-wrap .tegel.no-hover:hover .kader .inner-content {
  opacity: 1;
}
.tegel-wrap .tegel .overlay {
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -ms-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}
.tegel-wrap .tegel .toggle-kader {
  padding: 4%;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -ms-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}
.tegel-wrap .tegel .toggle-kader .inner-kader {
  border: solid 2px #fff;
  width: 100%;
  height: 100%;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -ms-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}
.tegel-wrap .tegel .kader {
  /*border: solid 4px #fff;*/
  width: 100%;
  height: 100%;
  position: relative;
}
.tegel-wrap .tegel .kader .hart {
  font-size: 30px;
  color: #fbe601;
  margin: 15px 15px 0 0;
  position: absolute;
  right: 0;
  z-index: 15;
}
.tegel-wrap .tegel .kader .hart.add-to-favorieten,
.tegel-wrap .tegel .kader .hart .delete-from-favorieten {
  cursor: pointer;
  z-index: 100;
}
.tegel-wrap .tegel .kader .virtualTour {
  font-size: 25px;
  color: #fbe601;
  margin: 15px 15px 0 0;
  position: absolute;
  left: 50%;
  z-index: 15;
  bottom: 10px;
  margin-left: -15px;
}
.tegel-wrap .tegel .kader .slaapkamer,
.tegel-wrap .tegel .kader .badkamer,
.tegel-wrap .tegel .kader .vanafprijs,
.tegel-wrap .tegel .kader .appartement {
  margin-bottom: 15px;
  vertical-align: middle;
  position: absolute;
  bottom: 0;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -ms-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}
.tegel-wrap .tegel .kader .slaapkamer span,
.tegel-wrap .tegel .kader .badkamer span,
.tegel-wrap .tegel .kader .vanafprijs span,
.tegel-wrap .tegel .kader .appartement span {
  font-family: 'avenir-next', 'Open Sans', sans-serif;
  font-weight: 600;
  line-height: 20px;
  vertical-align: middle;
}
.tegel-wrap .tegel .kader .slaapkamer .icon,
.tegel-wrap .tegel .kader .badkamer .icon,
.tegel-wrap .tegel .kader .vanafprijs .icon,
.tegel-wrap .tegel .kader .appartement .icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.tegel-wrap .tegel .kader .slaapkamer .getal,
.tegel-wrap .tegel .kader .badkamer .getal,
.tegel-wrap .tegel .kader .vanafprijs .getal,
.tegel-wrap .tegel .kader .appartement .getal {
  font-family: 'avenir-next', 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
}
.tegel-wrap .tegel .kader .slaapkamer .project-label,
.tegel-wrap .tegel .kader .badkamer .project-label,
.tegel-wrap .tegel .kader .vanafprijs .project-label,
.tegel-wrap .tegel .kader .appartement .project-label {
  font-family: 'avenir-next', 'Open Sans', sans-serif;
  font-size: 12px;
  line-height: 12px;
}
.tegel-wrap .tegel .kader .slaapkamer,
.tegel-wrap .tegel .kader .vanafprijs {
  margin-left: 15px;
  left: 0;
}
.tegel-wrap .tegel .kader .badkamer,
.tegel-wrap .tegel .kader .appartement {
  text-align: right;
  margin-right: 15px;
  right: 0;
}
.tegel-wrap .tegel .kader .inner-content {
  text-align: center;
  padding: 52% 0;
  display: block;
  position: relative;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -ms-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}
.tegel-wrap .tegel .kader .inner-content.lastenTrue {
  padding-bottom: calc(52% - 33px);
}
.tegel-wrap .tegel .kader .inner-content.lastenTrue .prijs {
  margin-bottom: 10px;
}
.tegel-wrap .tegel .kader .inner-content .prijs {
  font-family: 'avenir-next-semi-bold', 'Open Sans', sans-serif;
  font-size: 30px;
  margin-bottom: 15px;
  height: 19px;
}
.tegel-wrap .tegel .kader .inner-content .prijs.projecten {
  font-size: 23px;
}
.tegel-wrap .tegel .kader .inner-content .lasten {
  font-family: 'avenir-next', 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 23px;
  margin-bottom: 15px;
  height: 23px;
}
.tegel-wrap .tegel .kader .inner-content .adres {
  font-family: 'avenir-next', 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 23px;
  height: 46px;
}
.tegel-wrap .tegel .label {
  font-family: 'avenir-next-semi-bold', 'Open Sans', sans-serif;
  font-size: 18px;
  text-align: center;
  text-transform: uppercase;
  line-height: 20px;
  color: #fbe601;
  background: #05235f;
  padding: 8px 75px;
  width: 100%;
  position: absolute;
  top: 10%;
  left: -28%;
  z-index: 1;
  transform: rotate(-40deg) translate3d(0, 0, 0);
  -webkit-transform: rotate(-40deg) translate3d(0, 0, 0);
  -ms-transform: rotate(-40deg) translate3d(0, 0, 0);
}
.tegel-wrap .tegel .label.label-1 {
  color: #05235f;
  background: #fbe601;
}
.tegel-wrap .tegel .label.label-2 {
  color: #fbe601;
  background: #05235f;
}
.tegel-wrap .tegel .label.label-4,
.tegel-wrap .tegel .label.label-5 {
  color: #fff;
  background: #e2001a;
}
.tegel-wrap .tegel .label.te-laet {
  font-size: 25px;
  padding: 20px 50px;
  margin-top: -30px;
  margin-left: -105px;
  width: auto;
  top: 50%;
  left: 50%;
  transform: rotate(-15deg) translate3d(0, 0, 0);
  -webkit-transform: rotate(-15deg) translate3d(0, 0, 0);
  -ms-transform: rotate(-15deg) translate3d(0, 0, 0);
}
.tegel-wrap .tegel .label.te-laet:before {
  content: '';
  border: solid 3px #fff;
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  position: absolute;
  top: 4px;
  left: 4px;
}
@media only screen and (max-width: 880px) {
  .tegel-wrap.hide-3 .tegel:nth-child(3) {
    display: none;
  }
  .tegel-wrap .tegel {
    width: 48%;
  }
  .tegel-wrap .tegel:nth-child(3) {
    margin-top: 2%;
  }
}
@media only screen and (max-width: 500px) {
  .tegel-wrap.hide-3 .tegel:nth-child(3) {
    display: block;
  }
  .tegel-wrap .tegel {
    width: 98%;
  }
  .tegel-wrap .tegel:nth-child(2) {
    margin-top: 2%;
  }
}
/*====================================================
CONTENT > LISTVIEW
=====================================================*/
.list-wrap .listitem {
  text-decoration: none;
  padding: 40px 0;
  border-bottom: solid 1px #b0b0b0;
  display: block;
}
.list-wrap .listitem:first-child {
  padding-top: 0;
}
.list-wrap .listitem .foto {
  width: 40%;
  float: left;
  position: relative;
  overflow: hidden;
}
.list-wrap .listitem .foto img {
  position: relative;
}
.list-wrap .listitem .foto .label {
  font-family: 'avenir-next-semi-bold', 'Open Sans', sans-serif;
  font-size: 18px;
  text-align: center;
  text-transform: uppercase;
  line-height: 20px;
  color: #fbe601;
  background: #05235f;
  padding: 8px 75px;
  width: 100%;
  position: absolute;
  top: 21%;
  left: -28%;
  z-index: 2;
  transform: rotate(-40deg) translate3d(0, 0, 0);
  -webkit-transform: rotate(-40deg) translate3d(0, 0, 0);
  -ms-transform: rotate(-40deg) translate3d(0, 0, 0);
}
.list-wrap .listitem .foto .label.label-1 {
  color: #05235f;
  background: #fbe601;
}
.list-wrap .listitem .foto .label.label-2 {
  color: #fbe601;
  background: #05235f;
}
.list-wrap .listitem .foto .label.label-4,
.list-wrap .listitem .foto .label.label-5 {
  color: #fff;
  background: #e2001a;
}
.list-wrap .listitem .foto .label.te-laet {
  font-size: 25px;
  padding: 20px 50px;
  margin-top: -30px;
  margin-left: -105px;
  width: auto;
  top: 50%;
  left: 50%;
  transform: rotate(-15deg) translate3d(0, 0, 0);
  -webkit-transform: rotate(-15deg) translate3d(0, 0, 0);
  -ms-transform: rotate(-15deg) translate3d(0, 0, 0);
}
.list-wrap .listitem .foto .label.te-laet:before {
  content: '';
  border: solid 3px #fff;
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  position: absolute;
  top: 4px;
  left: 4px;
}
.list-wrap .listitem .foto .hart {
  font-size: 30px;
  color: #fbe601;
  margin: 15px 15px 0 0;
  position: absolute;
  top: 0;
  right: 0;
}
.list-wrap .listitem .kader {
  font-family: 'avenir-next', 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 25px;
  color: #05235f;
  width: 56%;
  float: right;
}
.list-wrap .listitem .kader .titel .links {
  float: left;
}
.list-wrap .listitem .kader .titel .links .hoofd {
  font-family: 'avenir-next-bold', 'Open Sans', sans-serif;
  font-size: 16px;
}
.list-wrap .listitem .kader .titel .rechts {
  text-align: right;
  float: right;
}
.list-wrap .listitem .kader .titel .rechts .prijs {
  font-family: 'avenir-next-bold', 'Open Sans', sans-serif;
  font-size: 20px;
}
.list-wrap .listitem .kader .info {
  margin-top: 25px;
}
.list-wrap .listitem .kader .info .regel .part {
  float: left;
}
.list-wrap .listitem .kader .info .regel .part:first-child {
  width: 130px;
}
.list-wrap .listitem .kader .info .regel .part:nth-child(2) {
  font-family: 'avenir-next-semi-bold', 'Open Sans', sans-serif;
}
@media only screen and (max-width: 700px) {
  .list-wrap .listitem .foto {
    margin-bottom: 20px;
    width: 100%;
    max-width: 360px;
    float: none;
  }
  .list-wrap .listitem .kader {
    width: 100%;
    float: none;
  }
  .list-wrap .listitem .kader .titel .rechts {
    margin-left: 20px;
  }
}
/*====================================================
CONTENT > BANNER
=====================================================*/
.banner {
  padding: 0 2%;
  position: relative;
  overflow-x: hidden;
}
.banner.left .img {
  right: 0;
  left: auto;
}
.banner.left .blue {
  right: 0;
  left: -15%;
}
.banner.left .kader .inner-content {
  margin-right: 60%;
  margin-left: 0;
}
.banner .img {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 60%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.banner .overlay {
  background: rgba(251, 230, 1, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.banner .blue {
  background: #05235f;
  transform: skew(-20deg, 0);
  -webkit-transform: skew(-20deg, 0);
  -ms-transform: skew(-20deg, 0);
  width: 69%;
  height: 100%;
  position: absolute;
  top: 0;
  right: -15%;
}
.banner .kader {
  /*border: solid 4px #fff;*/
  width: 100%;
  height: 100%;
  position: relative;
}
.banner .kader .inner-content {
  margin-left: 60%;
  width: 40%;
  position: relative;
}
.banner .kader .inner-content .subtitel {
  font-family: 'avenir-next', 'Open Sans', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: #fbe601;
}
.banner .kader .inner-content h2 {
  color: #fff;
  margin-bottom: 10px;
}
.banner .kader .inner-content .inhoud {
  color: #fff;
}
.banner .kader .inner-content .inhoud p {
  color: #fff;
}
.banner .kader .inner-content .inhoud ul li {
  padding-left: 20px;
}
.banner .kader .inner-content .inhoud ul li:before {
  color: #fbe601;
  content: "\f00c";
}
@media only screen and (max-width: 880px) {
  .banner .blue {
    width: 83%;
  }
  .banner .kader .inner-content {
    margin-left: 45%;
    width: 55%;
  }
}
@media only screen and (max-width: 700px) {
  .banner .img {
    width: 100%;
  }
  .banner .overlay {
    background: rgba(5, 35, 95, 0.8);
  }
  .banner .blue {
    display: none;
  }
  .banner .kader .inner-content {
    margin-left: 0;
    width: 100%;
  }
}
@media print {
  .banner {
    display: none;
  }
  .banner .padding-wrap {
    padding: 0 !important;
  }
}
/*====================================================
CONTENT > CONTACT
=====================================================*/
.formulier {
  margin: 0 auto;
  width: 100%;
  max-width: 980px;
}
.contact-gegevens {
  margin-bottom: 40px;
}
.contact-gegevens .col-wrap {
  margin-left: 3%;
  width: 30.333%;
  float: left;
}
.contact-gegevens .col-wrap .icon {
  font-size: 40px;
  width: 20%;
  float: left;
}
.contact-gegevens .col-wrap .gegevens {
  font-size: 14px;
  line-height: 25px;
  width: 80%;
  float: right;
}
.contact-gegevens .col-wrap .gegevens .titel {
  font-family: 'avenir-next-bold', 'Open Sans', sans-serif;
  text-transform: uppercase;
}
@media only screen and (max-width: 880px) {
  .contact-gegevens .col-wrap .icon {
    font-size: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .contact-gegevens .col-wrap {
    margin: 30px auto 0;
    width: 100%;
    max-width: 340px;
    float: none;
  }
  .contact-gegevens .col-wrap:first-child {
    margin-top: 0;
  }
}
.biv {
  margin-left: 10px;
  display: inline-block;
  height: 20px;
  vertical-align: middle;
}
.biv img {
  width: auto;
  height: 100%;
}
.contact-extra .btn:after {
  content: '\f107';
}
.kantoren-wrap .kantoor {
  font-family: 'avenir-next', 'Open Sans', sans-serif;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  line-height: 25px;
  color: #05235f;
  background: #fff;
  padding: 0 0 20px;
  border: 1px solid #dedede;
  margin-top: 2%;
  margin-left: 2%;
  width: 23%;
  float: left;
}
.kantoren-wrap .kantoor:nth-child(-n+4) {
  margin-top: 0;
}
.kantoren-wrap .kantoor:nth-child(4n+1) {
  clear: left;
}
.kantoren-wrap .kantoor:hover .foto {
  opacity: 0.6;
}
.kantoren-wrap .kantoor:hover.medewerker .foto {
  opacity: 1;
}
.kantoren-wrap .kantoor.medewerker .foto {
  border-bottom: solid 1px #05235f;
  width: 100%;
  height: auto;
}
.kantoren-wrap .kantoor.medewerker .adres a {
  text-decoration: none;
}
.kantoren-wrap .kantoor .foto {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 15px;
  display: inline-block;
  width: 100%;
  height: 220px;
  vertical-align: top;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.kantoren-wrap .kantoor .inhoud .titel {
  font-family: 'avenir-next-bold', 'Open Sans', sans-serif;
}
@media only screen and (max-width: 1050px) {
  .kantoren-wrap .kantoor {
    width: 31.333%;
  }
  .kantoren-wrap .kantoor:nth-child(-n+4) {
    margin-top: 2%;
  }
  .kantoren-wrap .kantoor:nth-child(-n+3) {
    margin-top: 0;
  }
  .kantoren-wrap .kantoor:nth-child(4n+1) {
    clear: none;
  }
  .kantoren-wrap .kantoor:nth-child(3n+1) {
    clear: left;
  }
}
@media only screen and (max-width: 768px) {
  .kantoren-wrap .kantoor {
    width: 48%;
  }
  .kantoren-wrap .kantoor:nth-child(-n+3) {
    margin-top: 2%;
  }
  .kantoren-wrap .kantoor:nth-child(-n+2) {
    margin-top: 0;
  }
  .kantoren-wrap .kantoor:nth-child(3n+1) {
    clear: none;
  }
  .kantoren-wrap .kantoor:nth-child(2n+1) {
    clear: left;
  }
  .kantoren-wrap .kantoor .foto {
    height: 150px;
  }
}
@media only screen and (max-width: 500px) {
  .kantoren-wrap .kantoor {
    width: 98%;
  }
  .kantoren-wrap .kantoor:nth-child(-n+2) {
    margin-top: 2%;
  }
  .kantoren-wrap .kantoor:first-child {
    margin-top: 0;
  }
}
.kantoor-plan {
  height: 490px;
}
/*====================================================
CONTENT > VACATURES
=====================================================*/
.vacature-wrapper .vacature-filter {
  text-align: center;
  margin-bottom: 30px;
}
.vacature-wrapper .vacature-filter .btn {
  min-width: 0;
  padding: 10px 25px;
  border: solid 2px #05235f;
  margin-left: 10px;
  margin-bottom: 10px;
}
.vacature-wrapper .vacature-filter .btn:first-child {
  margin-left: 0;
}
.vacature-wrapper .vacature-filter .btn:after {
  content: '';
}
.vacature-wrapper .vacature-filter .btn:hover {
  color: #05235f;
  background: none;
}
.vacature-wrapper .vacature-filter .btn.btn-line {
  color: #05235f;
  border-color: #05235f;
}
.vacature-wrapper .vacature-filter .btn.btn-line:hover {
  color: #fbe601;
  background: #05235f;
}
.vacature-wrapper .vacatures .vacature {
  text-decoration: none;
  padding: 15px 20px;
  border-bottom: solid 1px #b0b0b0;
  display: block;
}
.vacature-wrapper .vacatures .vacature:first-child {
  border-top: solid 1px #b0b0b0;
}
.vacature-wrapper .vacatures .vacature:nth-child(2n) {
  background: #f9f9f9;
}
.vacature-wrapper .vacatures .vacature .naam {
  font-weight: 700;
  float: left;
}
.vacature-wrapper .vacatures .vacature .gemeente {
  margin-right: 100px;
  float: right;
}
.vacature-wrapper .note {
  text-align: center;
  font-size: 10px;
  font-style: italic;
  width: 100%;
  float: right;
  margin: 30px 0;
}
@media only screen and (max-width: 700px) {
  .vacature-wrapper .vacatures .vacature .gemeente {
    margin-right: 0;
  }
}
@media only screen and (max-width: 500px) {
  .vacature-wrapper .vacature-filter .btn {
    padding: 4px 15px;
    margin-left: 2px;
    margin-bottom: 5px;
  }
  .vacature-wrapper .vacatures .vacature .naam {
    float: none;
  }
  .vacature-wrapper .vacatures .vacature .gemeente {
    float: none;
  }
}
/*====================================================
CONTENT > BLOG
=====================================================*/
.titel-wrap {
  position: relative;
}
.jaar-filter {
  font-family: 'avenir-next', 'Open Sans', sans-serif;
  text-align: left;
  line-height: 19px;
  width: 180px;
  position: absolute;
  bottom: 3px;
  right: 0;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.jaar-filter .filter-toggle {
  font-weight: 700;
  text-decoration: none;
  color: #05235f;
  background-color: transparent;
  padding: 14px 20px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  width: 100%;
  border: solid 1px #b0b0b0;
  display: inline-block;
  cursor: pointer;
}
.jaar-filter .filter-toggle .angle-change {
  margin-top: 2px;
  float: right;
}
.jaar-filter .filter-sub {
  background: #fff;
  border: solid 1px #b0b0b0;
  border-top: none;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  -webkit-border-bottom-right-radius: 8px;
  -webkit-border-bottom-left-radius: 8px;
  -moz-border-radius-bottomright: 8px;
  -moz-border-radius-bottomleft: 8px;
  margin-bottom: 0;
  display: none;
  width: 100%;
  position: absolute;
  top: 49px;
  left: 0;
}
.jaar-filter .filter-sub li {
  padding-left: 0;
}
.jaar-filter .filter-sub li:before {
  background: rgba(5, 35, 95, 0.2);
  display: block;
  width: 95%;
  height: 1px;
  content: '';
  top: 0;
  left: 2.5%;
}
.jaar-filter .filter-sub li:first-child:before {
  height: 0;
}
.jaar-filter .filter-sub li a {
  text-decoration: none;
  line-height: 19px;
  padding: 14px 20px;
  display: block;
  width: 100%;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.jaar-filter .filter-sub li a:hover {
  background: rgba(5, 35, 95, 0.1);
}
@media only screen and (max-width: 700px) {
  .jaar-filter {
    margin: 25px auto 0;
    float: none;
    position: relative;
    top: auto;
    right: auto;
  }
}
.blog-overzicht {
  margin-left: -2%;
}
.blog-overzicht .no-result {
  margin-left: 2%;
}
.blog-overzicht .blog {
  text-decoration: none;
  margin-top: 2%;
  margin-left: 2%;
  width: 31.333%;
  float: left;
}
.blog-overzicht .blog:nth-child(-n+3) {
  margin-top: 0;
}
.blog-overzicht .blog:nth-child(3n+1) {
  clear: both;
}
.blog-overzicht .blog .img {
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  margin-bottom: 15px;
  width: 100%;
  overflow: hidden;
}
.blog-overzicht .blog .info {
  font-family: 'avenir-next', 'Open Sans', sans-serif;
  font-size: 13px;
  margin-bottom: 15px;
}
.blog-overzicht .blog .titel {
  font-family: 'avenir-next-semi-bold', 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 5px;
}
.blog-overzicht .blog .omschrijving {
  font-family: 'avenir-next', 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 25px;
  margin-bottom: 15px;
}
.blog-overzicht .blog .lees-meer {
  font-family: 'avenir-next', 'Open Sans', sans-serif;
  text-decoration: underline;
}
@media only screen and (max-width: 1050px) {
  .blog-overzicht .blog {
    width: 48%;
  }
  .blog-overzicht .blog:nth-child(3) {
    margin-top: 2%;
  }
  .blog-overzicht .blog:nth-child(3n+1) {
    clear: none;
  }
  .blog-overzicht .blog:nth-child(2n+1) {
    clear: both;
  }
}
@media only screen and (max-width: 500px) {
  .blog-overzicht .blog {
    margin-top: 30px;
    width: 98%;
  }
  .blog-overzicht .blog:nth-child(2) {
    margin-top: 30px;
  }
  .blog-overzicht .blog:nth-child(3) {
    margin-top: 30px;
  }
}
/*====================================================
CONTENT > PAND
=====================================================*/
.titel-wrapper {
  margin-bottom: 20px;
}
.titel-wrapper .titel-links {
  float: left;
}
.titel-wrapper .titel-links h1 {
  text-transform: none;
  margin-bottom: 0;
}
.titel-wrapper .titel-links .ondertitel {
  font-family: 'avenir-next', 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #021231;
  line-height: 25px;
}
.titel-wrapper .titel-rechts {
  text-align: right;
  float: right;
}
.titel-wrapper .titel-rechts .prijs {
  font-family: 'avenir-next-bold', 'Open Sans', sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 55px;
  color: #05235f;
  margin-bottom: 5px;
}
.titel-wrapper .titel-rechts .prijs.project {
  font-size: 20px;
  text-transform: uppercase;
  line-height: 30px;
  margin-top: 20px;
}
.titel-wrapper .titel-rechts .kosten {
  font-family: 'avenir-next', 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 19px;
  color: rgba(5, 35, 95, 0.5);
}
.titel-wrapper .pand-icon {
  font-size: 16px;
  text-align: center;
  line-height: 35px;
  color: #fff;
  background: #05235f;
  vertical-align: middle;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  margin: 2.5px 0 2.5px 10px;
  display: inline-block;
  width: 35px;
  height: 35px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
@media only screen and (max-width: 880px) {
  .titel-wrapper .titel-links h1 {
    font-size: 30px;
    line-height: 40px;
  }
  .titel-wrapper .titel-rechts .prijs {
    font-size: 30px;
    line-height: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .titel-wrapper {
    margin-bottom: 15px;
  }
  .titel-wrapper .titel-links {
    margin-bottom: 15px;
    float: none;
  }
  .titel-wrapper .titel-links.always-links {
    float: left;
  }
  .titel-wrapper .titel-rechts {
    text-align: left;
    float: none;
  }
  .titel-wrapper .titel-rechts .prijs {
    font-size: 24px;
    line-height: 30px;
  }
  .titel-wrapper .titel-rechts .kosten {
    font-size: 13px;
    line-height: 16px;
  }
}
@media print {
  .titel-wrapper .titel-links h1 {
    font-size: 25px;
    line-height: 35px;
  }
  .titel-wrapper .titel-rechts .prijs {
    font-size: 25px;
    line-height: 35px;
  }
  .titel-wrapper .titel-rechts .prijs.project {
    margin-top: 5px;
  }
  .titel-wrapper .pand-icon {
    display: none;
  }
}
.foto-wrapper {
  position: relative;
}
.foto-wrapper .omslag-wrapper {
  display: block;
  opacity: 1;
  position: relative;
  z-index: 100;
  overflow: hidden;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.foto-wrapper .omslag-wrapper.hide {
  opacity: 0;
}
.foto-wrapper .omslag-wrapper .img-wrap {
  position: relative;
}
.foto-wrapper .omslag-wrapper .img-wrap a {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  position: absolute;
  overflow: hidden;
}
.foto-wrapper .omslag-wrapper .img-wrap a img {
  display: none;
}
.foto-wrapper .omslag-wrapper .img-wrap a .virtualTour i {
  display: inline-block;
  background-color: #fbe601;
  padding: 12px 18px;
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 22px;
}
.foto-wrapper .omslag-wrapper .img-wrap a.foto1 {
  width: calc(70% - 10px);
  height: 100%;
  top: 0;
  left: 0;
}
.foto-wrapper .omslag-wrapper .img-wrap a.foto1.full {
  width: 100%;
}
.foto-wrapper .omslag-wrapper .img-wrap a.foto2 {
  width: 30%;
  height: calc(50% - 5px);
  top: 0;
  right: 0;
}
.foto-wrapper .omslag-wrapper .img-wrap a.foto3 {
  width: calc(15% - 5px);
  height: calc(25% - 7.5px);
  bottom: calc(25% + 2.5px);
  left: 70%;
}
.foto-wrapper .omslag-wrapper .img-wrap a.foto3.full {
  width: 30%;
  height: calc(50% - 5px);
  right: 0;
  bottom: 0;
  left: auto;
}
.foto-wrapper .omslag-wrapper .img-wrap a.foto4 {
  width: calc(15% - 5px);
  height: calc(25% - 7.5px);
  bottom: calc(25% + 2.5px);
  right: 0;
}
.foto-wrapper .omslag-wrapper .img-wrap a.foto5 {
  width: calc(15% - 5px);
  height: calc(25% - 7.5px);
  bottom: 0;
  left: 70%;
}
.foto-wrapper .omslag-wrapper .img-wrap a.foto6 {
  width: calc(15% - 5px);
  height: calc(25% - 7.5px);
  bottom: 0;
  right: 0;
}
.foto-wrapper .omslag-wrapper .label {
  font-family: 'avenir-next-semi-bold', 'Open Sans', sans-serif;
  font-size: 18px;
  text-align: center;
  text-transform: uppercase;
  line-height: 20px;
  color: #fbe601;
  background: #05235f;
  padding: 8px 75px;
  width: 100%;
  position: absolute;
  top: 20%;
  left: -38%;
  z-index: 50;
  transform: rotate(-40deg) translate3d(0, 0, 0);
  -webkit-transform: rotate(-40deg) translate3d(0, 0, 0);
  -ms-transform: rotate(-40deg) translate3d(0, 0, 0);
}
.foto-wrapper .omslag-wrapper .label.label-1 {
  color: #05235f;
  background: #fbe601;
}
.foto-wrapper .omslag-wrapper .label.label-2 {
  color: #fbe601;
  background: #05235f;
}
.foto-wrapper .omslag-wrapper .label.label-4,
.foto-wrapper .omslag-wrapper .label.label-5 {
  color: #fff;
  background: #e2001a;
}
.foto-wrapper .omslag-wrapper .label.te-laet {
  font-size: 45px;
  padding: 40px 100px;
  margin-top: -50px;
  margin-left: -195px;
  width: auto;
  top: 50%;
  left: 50%;
  transform: rotate(-15deg) translate3d(0, 0, 0);
  -webkit-transform: rotate(-15deg) translate3d(0, 0, 0);
  -ms-transform: rotate(-15deg) translate3d(0, 0, 0);
}
.foto-wrapper .omslag-wrapper .label.te-laet:before {
  content: '';
  border: solid 3px #fff;
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  position: absolute;
  top: 4px;
  left: 4px;
}
.foto-wrapper .pand-svg-wrap {
  width: 100%;
  height: 100%;
  position: absolute !important;
  top: 0;
  left: 0;
  z-index: 120;
}
.foto-wrapper .pand-svg-wrap.hide {
  opacity: 0;
}
.foto-wrapper .pand-svg-wrap .pand-full {
  position: relative;
  overflow: hidden;
}
.foto-wrapper .pand-svg-wrap .pand-full .inner-pand {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.foto-wrapper .pand-svg-wrap .pand-full .inner-pand .poly-show {
  font-family: 'avenir-next', 'Open Sans', sans-serif;
  color: #fff;
  background: rgba(5, 35, 95, 0.8);
  line-height: 25px;
  padding: 35px;
  border-top-left-radius: 8px;
  -webkit-border-top-left-radius: 8px;
  -moz-border-top-left-radius: 8px;
  display: none;
  min-width: 300px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.foto-wrapper .pand-svg-wrap .pand-full .inner-pand .poly-show.left {
  border-top-left-radius: 0;
  -webkit-border-top-left-radius: 0;
  -moz-border-top-left-radius: 0;
  border-bottom-right-radius: 8px;
  -webkit-border-bottom-right-radius: 8px;
  -moz-border-radius-bottomright: 8px;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
}
.foto-wrapper .pand-svg-wrap .pand-full .inner-pand .poly-show .naam {
  font-family: 'avenir-next-bold', 'Open Sans', sans-serif;
  font-size: 16px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.foto-wrapper .pand-svg-wrap .pand-full .inner-pand .poly-show .label {
  min-width: 125px;
  float: left;
}
.foto-wrapper .pand-svg-wrap .pand-full .inner-pand .poly-show .slaapkamer-waarde,
.foto-wrapper .pand-svg-wrap .pand-full .inner-pand .poly-show .badkamer-waarde,
.foto-wrapper .pand-svg-wrap .pand-full .inner-pand .poly-show .opp-waarde {
  font-weight: 700;
}
.foto-wrapper .liggingsplan {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.foto-wrapper .liggingsplan.show {
  opacity: 1;
  z-index: 105;
}
@media only screen and (max-width: 1240px) {
  .foto-wrapper .pand-svg-wrap {
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  .foto-wrapper .omslag-wrapper .img-wrap a {
    display: none;
  }
  .foto-wrapper .omslag-wrapper .img-wrap a.foto1 {
    display: block;
    width: 100%;
  }
  .foto-wrapper .omslag-wrapper .label {
    font-size: 14px;
    top: 20%;
    left: -33%;
  }
  .foto-wrapper .omslag-wrapper .label.te-laet {
    font-size: 25px;
    padding: 20px 50px;
    margin-top: -30px;
    margin-left: -105px;
  }
}
@media print {
  .foto-wrapper .omslag-wrapper .img-wrap a img {
    display: block;
  }
  .foto-wrapper .pand-svg-wrap {
    display: none;
  }
}
.foto-verzameling {
  display: none;
}
.action-wrapper {
  font-family: 'avenir-next', 'Open Sans', sans-serif;
  border-bottom: solid 1px #b0b0b0;
  margin-bottom: 40px;
}
.action-wrapper .actions-left {
  float: left;
}
.action-wrapper .actions-right {
  padding-right: 18px;
  float: right;
}
.action-wrapper .action {
  text-decoration: none;
  color: #05235f;
  padding: 20px 18px 0;
  display: inline-block;
  position: relative;
}
.action-wrapper .action:before {
  background: #b0b0b0;
  display: block;
  width: 1px;
  height: 18px;
  position: absolute;
  left: 0;
  content: '';
}
.action-wrapper .action:first-child:before {
  width: 0;
}
.action-wrapper .action:hover,
.action-wrapper .action.active {
  text-decoration: underline;
}
.action-wrapper .action.active {
  cursor: default;
}
.action-wrapper .action.non-active {
  color: #b0b0b0;
}
.action-wrapper .action.hide {
  display: none;
}
.action-wrapper .action.favoriet i {
  color: #fbe601;
}
.action-wrapper .pand-icon {
  font-size: 16px;
  text-align: center;
  line-height: 35px;
  color: #fff;
  background: #05235f;
  vertical-align: middle;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  margin: 12px 0 12px 10px;
  display: inline-block;
  width: 35px;
  height: 35px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.action-wrapper .pand-icon:hover {
  background: #02112f;
}
.action-wrapper .pand-icon.mail {
  background: #fbe601;
}
.action-wrapper .pand-icon.mail:hover {
  background: #c8b701;
}
.action-wrapper .pand-icon.facebook {
  background: #3b5998;
}
.action-wrapper .pand-icon.facebook:hover {
  background: #2d4373;
}
@media only screen and (max-width: 700px) {
  .action-wrapper .actions-left {
    margin: 7px 0;
  }
  .action-wrapper .actions-right {
    padding-right: 0;
    margin-top: 12px;
  }
  .action-wrapper .action {
    padding: 5px 12px;
    display: block;
  }
  .action-wrapper .action i {
    text-align: center;
    width: 15px;
  }
  .action-wrapper .action:before {
    width: 0;
  }
  .action-wrapper .pand-icon {
    font-size: 14px;
    line-height: 30px;
    margin-top: 0;
    width: 30px;
    height: 30px;
  }
}
@media print {
  .action-wrapper {
    display: none;
  }
}
.uitleg-wrapper h2 {
  font-size: 21px;
  text-transform: none;
  line-height: 30px;
  margin-bottom: 10px;
}
.uitleg-wrapper .links {
  width: 65%;
  float: left;
}
.uitleg-wrapper .rechts {
  padding: 30px;
  border: solid 1px #b0b0b0;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  width: 30%;
  float: right;
}
.uitleg-wrapper .rechts .btn {
  margin-top: 10px;
  display: block;
}
.uitleg-wrapper .epc-wrapper {
  margin-top: 40px;
}
.uitleg-wrapper .epc-wrapper .epc-legende {
  font-family: 'avenir-next', 'Open Sans', sans-serif;
  font-size: 12px;
  color: #05235f;
  padding-right: 10px;
  float: left;
}
.uitleg-wrapper .epc-wrapper .epc {
  max-width: 499px;
  float: left;
  position: relative;
}
.uitleg-wrapper .epc-wrapper .epc .epc-wijzer {
  font-family: 'avenir-next', 'Open Sans', sans-serif;
  text-align: center;
  color: #05235f;
  padding-top: 25px;
  margin-left: -25px;
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0.8%;
}
.uitleg-wrapper .epc-wrapper .epc .epc-wijzer:before {
  content: '';
  background: #05235f;
  margin-left: -1px;
  display: block;
  width: 2px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 50%;
}
.uitleg-wrapper .floodrisk {
  margin-top: 25px;
  width: 35px;
}
.uitleg-wrapper .tabel-wrap {
  margin-top: 40px;
}
.uitleg-wrapper .tabel-wrap .tabel.full .regel .part {
  width: 84%;
}
.uitleg-wrapper .tabel-wrap .tabel.full .regel .part:first-child {
  width: 16%;
}
.uitleg-wrapper .tabel-wrap .tabel.full .regel .part.full {
  width: 100%;
}
.uitleg-wrapper .tabel-wrap .tabel.panden-tabel a.regel:hover {
  background: #e3e8f1;
}
.uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel {
  background: #fafbfc;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel:nth-child(2n+1) {
  background: none;
}
.uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel.hoofding {
  font-family: 'avenir-next-bold', 'Open Sans', sans-serif;
  color: #05235f;
  border-top: none;
}
.uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel.hoofding-klein {
  background: #e3e8f1;
}
.uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel.hoofding-klein .part {
  padding: 5px 10px;
}
.uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel.hoofding-klein .part.full {
  width: 100%;
}
.uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel .part {
  width: 10%;
}
.uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel .part:first-child {
  width: 30%;
}
.uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel .part:nth-child(7) {
  width: 15%;
}
.uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel .part:nth-child(8) {
  width: 5%;
}
.uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel .part.capitalize {
  text-transform: capitalize;
}
.uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel .part.verkocht {
  font-weight: 700;
  color: #e2001a;
}
.uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel .part span {
  font-weight: 700;
  display: none;
}
.uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel .part span.view {
  display: inline;
}
.uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel .part span.print {
  display: none;
}
.uitleg-wrapper .tabel-wrap .tabel .regel {
  font-family: 'avenir-next', 'Open Sans', sans-serif;
  border-bottom: solid 1px #b0b0b0;
  display: block;
}
.uitleg-wrapper .tabel-wrap .tabel .regel:first-child {
  border-top: solid 1px #b0b0b0;
}
.uitleg-wrapper .tabel-wrap .tabel .regel:nth-child(2n+1) {
  background: #fafbfc;
}
.uitleg-wrapper .tabel-wrap .tabel .regel .part {
  padding: 15px 10px;
  width: 50%;
  float: left;
}
.uitleg-wrapper .tabel-wrap .tabel .regel .part:first-child {
  font-weight: 600;
  color: #05235f;
}
.uitleg-wrapper .drie-tabel {
  margin-left: -2%;
}
.uitleg-wrapper .drie-tabel .tabel-wrap {
  margin-left: 2%;
  width: 31.333%;
  float: left;
}
.uitleg-wrapper .drie-tabel .tabel-wrap:nth-child(3n+1) {
  clear: left;
}
@media only screen and (max-width: 1050px) {
  .uitleg-wrapper .links {
    width: 100%;
    float: none;
    margin-bottom: 60px;
  }
  .uitleg-wrapper .rechts {
    padding: 30px 0 20px;
    border: none;
    border-top: solid 1px #b0b0b0;
    border-bottom: solid 1px #b0b0b0;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    width: 100%;
    float: none;
  }
  .uitleg-wrapper .rechts .btn {
    margin-top: 0;
    margin-right: 10px;
    margin-bottom: 10px;
    display: inline-block;
  }
  .uitleg-wrapper .tabel-wrap .tabel.full .regel .part {
    width: 75%;
  }
  .uitleg-wrapper .tabel-wrap .tabel.full .regel .part:first-child {
    width: 25%;
  }
  .uitleg-wrapper .tabel-wrap .tabel.panden-tabel {
    border-top: solid 1px #b0b0b0;
  }
  .uitleg-wrapper .tabel-wrap .tabel.panden-tabel .hoofding {
    display: none;
  }
  .uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel {
    padding: 5px 0;
  }
  .uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel .part {
    padding: 5px 10px;
    width: 33.333%;
  }
  .uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel .part:first-child {
    padding-top: 5px;
    padding-bottom: 5px;
    width: 33.333%;
  }
  .uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel .part:nth-child(7) {
    width: 33.333%;
  }
  .uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel .part:nth-child(8) {
    width: 33.333%;
  }
  .uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel .part.verdieping {
    display: none;
  }
  .uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel .part.capitalize {
    font-family: 'avenir-next-bold', 'Open Sans', sans-serif;
    font-weight: 400;
  }
  .uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel .part.no-doc {
    display: none;
  }
  .uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel .part span {
    display: inline;
  }
  .uitleg-wrapper .tabel-wrap .tabel .regel .part {
    padding: 5px 10px 10px;
    width: 100%;
  }
  .uitleg-wrapper .tabel-wrap .tabel .regel .part.full:first-child {
    padding-bottom: 10px;
  }
  .uitleg-wrapper .tabel-wrap .tabel .regel .part:first-child {
    padding-top: 10px;
    padding-bottom: 0;
  }
  .uitleg-wrapper .drie-tabel .tabel-wrap {
    width: 48%;
  }
  .uitleg-wrapper .drie-tabel .tabel-wrap:nth-child(3n+1) {
    clear: none;
  }
  .uitleg-wrapper .drie-tabel .tabel-wrap:nth-child(2n+1) {
    clear: left;
  }
}
@media only screen and (max-width: 700px) {
  .uitleg-wrapper .drie-tabel .tabel-wrap {
    width: 98%;
    clear: left;
  }
  .uitleg-wrapper .drie-tabel .tabel-wrap:nth-child(3n+1) {
    clear: left;
  }
}
@media only screen and (max-width: 600px) {
  .uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel .part {
    width: 50%;
  }
  .uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel .part:first-child {
    width: 50%;
  }
  .uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel .part:nth-child(7) {
    width: 50%;
  }
  .uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel .part:nth-child(8) {
    width: 50%;
  }
}
@media only screen and (max-width: 500px) {
  .uitleg-wrapper .tabel-wrap .tabel.full .regel .part {
    width: 100%;
  }
  .uitleg-wrapper .tabel-wrap .tabel.full .regel .part:first-child {
    width: 100%;
  }
  .uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel {
    padding: 8px 0;
  }
  .uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel .part {
    padding: 2px 10px;
    width: 100%;
  }
  .uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel .part:first-child {
    padding-top: 2px;
    padding-bottom: 2px;
    width: 100%;
  }
  .uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel .part:nth-child(7) {
    width: 100%;
  }
  .uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel .part:nth-child(8) {
    width: 100%;
  }
}
@media print {
  .uitleg-wrapper .links {
    margin-top: 20px;
    width: 100%;
    float: none;
  }
  .uitleg-wrapper .rechts {
    display: none;
  }
  .uitleg-wrapper .epc-wrapper .epc .epc-wijzer:before {
    border-left: solid 2px #05235f;
    background: none;
    width: 2px;
  }
  .uitleg-wrapper .tabel-wrap .tabel.full .regel .part {
    width: 75%;
  }
  .uitleg-wrapper .tabel-wrap .tabel.full .regel .part:first-child {
    width: 25%;
  }
  .uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel.hoofding-klein {
    font-family: 'avenir-next-bold', 'Open Sans', sans-serif;
  }
  .uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel .part:nth-child(7) {
    width: 20%;
  }
  .uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel .part:nth-child(8) {
    display: none;
  }
  .uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel .part span.view {
    display: none;
  }
  .uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel .part span.print {
    display: inline;
  }
  .uitleg-wrapper .tabel-wrap .tabel .regel .part {
    padding: 5px 10px;
  }
  .uitleg-wrapper .drie-tabel .tabel-wrap {
    width: 98%;
    float: none;
  }
}
.download-project-detail {
  display: inline-block;
}
.download-project-detail.rightmargin {
  margin-right: 6px;
}
.overzicht .filter-uitgebreid {
  padding-top: 20px;
  width: 20%;
  float: left;
}
.overzicht .resultaat {
  width: 75%;
  float: right;
}
@media only screen and (max-width: 1050px) {
  .overzicht .filter-uitgebreid {
    width: 100%;
    float: none;
  }
  .overzicht .resultaat {
    width: 100%;
    float: none;
  }
}
@media only screen and (max-width: 700px) {
  .overzicht .action-wrapper .actions-left {
    float: left;
  }
  .overzicht .action-wrapper .actions-right {
    float: right;
  }
}
@media only screen and (max-width: 500px) {
  .overzicht .action-wrapper .actions-left {
    margin: 0;
    float: none;
  }
  .overzicht .action-wrapper .actions-left .sorteer .legende {
    padding-bottom: 5px;
  }
  .overzicht .action-wrapper .actions-left .sorteer .dropdown {
    padding-bottom: 5px;
  }
  .overzicht .action-wrapper .actions-right {
    margin: 0;
    float: none;
  }
  .overzicht .action-wrapper .actions-right .action {
    padding: 15px;
    display: inline-block;
  }
  .overzicht .action-wrapper .actions-right .action:first-child {
    padding-left: 0;
  }
  .overzicht .action-wrapper .actions-right .action:last-child {
    padding-right: 15px;
  }
}
.action-wrapper .actions-left .sorteer .legende {
  color: #b0b0b0;
  padding: 20px 0;
  margin-right: 7px;
  float: left;
}
.action-wrapper .actions-left .sorteer .dropdown {
  color: #05235f;
  padding: 20px 18px 20px 0;
  float: left;
}
.action-wrapper .actions-left .sorteer .dropdown .toggle-drop {
  cursor: pointer;
}
.action-wrapper .actions-left .sorteer .dropdown .drop {
  background: #fff;
  padding-top: 7px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  margin-left: -15px;
  display: none;
  min-width: 130px;
  position: absolute;
  z-index: 3;
  overflow: hidden;
}
.action-wrapper .actions-left .sorteer .dropdown .drop .sub-drop {
  padding: 8px 15px;
  cursor: pointer;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.action-wrapper .actions-left .sorteer .dropdown .drop .sub-drop:hover {
  background: #b0b0b0;
}
.action-wrapper .actions-right {
  padding-right: 0;
}
.action-wrapper .actions-right .action:last-child {
  padding-right: 0;
}
.filter-uitgebreid .resultaten {
  font-family: 'avenir-next-bold', 'Open Sans', sans-serif;
  font-size: 20px;
  color: #05235f;
  margin-bottom: 20px;
}
.filter-uitgebreid .resultaten h1 {
  font-size: inherit;
  line-height: inherit;
  margin-bottom: 0;
  display: inline;
}
.filter-uitgebreid .resultaten .results {
  font-family: 'avenir-next-semi-bold', 'Open Sans', sans-serif;
  font-size: 17px;
  color: #b0b0b0;
}
.filter-uitgebreid .resultaten .toggle-uitgebreid {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  display: none;
  float: right;
  cursor: pointer;
}
.filter-uitgebreid .resultaten .toggle-uitgebreid:hover {
  text-decoration: underline;
}
.filter-uitgebreid .row-wrap .form-row {
  padding: 15px 0;
  border-top: solid 1px #b0b0b0;
  margin-left: 0;
}
.filter-uitgebreid .row-wrap .form-row .form-item {
  margin-bottom: 0;
  margin-left: 0;
  width: 100%;
}
.filter-uitgebreid .row-wrap .form-row .form-item label {
  font-family: 'avenir-next-semi-bold', 'Open Sans', sans-serif;
  font-size: 15px;
  color: #05235f;
  margin-bottom: 6px;
}
.filter-uitgebreid .row-wrap .form-row .form-item .input-wrap input {
  margin-top: 8px;
}
.filter-uitgebreid .row-wrap .form-row .form-item .input-wrap input:first-child {
  margin-top: 0;
}
.filter-uitgebreid .row-wrap .form-row .form-item .input-wrap .check-no-select {
  font-family: 'avenir-next', 'Open Sans', sans-serif;
  color: #021231;
  padding-left: 2px;
  margin-bottom: 4px;
  display: block;
}
.filter-uitgebreid .row-wrap .form-row .form-item .input-wrap .check-no-select input[type="checkbox"] + .check-option:before,
.filter-uitgebreid .row-wrap .form-row .form-item .input-wrap .check-no-select input[type="radio"] + .check-option:before {
  color: #021231;
}
.filter-uitgebreid .row-wrap .form-row .form-item .btn {
  padding: 11px 45px;
  min-width: 0;
}
.filter-uitgebreid .row-wrap .form-row .form-item .btn:after {
  content: '';
}
@media only screen and (max-width: 1050px) {
  .filter-uitgebreid .resultaten {
    padding-bottom: 20px;
    border-bottom: solid 1px #b0b0b0;
    margin-bottom: 0;
  }
  .filter-uitgebreid .resultaten .toggle-uitgebreid {
    display: block;
  }
  .filter-uitgebreid .row-wrap {
    display: none;
    margin-bottom: 20px;
  }
  .filter-uitgebreid .row-wrap .form-row:nth-child(-n+3) {
    padding: 15px 30px;
    border-top: none;
    border-left: solid 1px #b0b0b0;
    margin: 15px 0;
    width: 33.333%;
    float: left;
    clear: none;
  }
  .filter-uitgebreid .row-wrap .form-row:first-child {
    border-left: 0;
  }
  .filter-uitgebreid .row-wrap .form-row .form-item .btn {
    width: auto;
  }
}
@media only screen and (max-width: 768px) {
  .filter-uitgebreid .row-wrap .form-row:nth-child(-n+3) {
    padding: 15px 0;
    border-top: solid 1px #b0b0b0;
    border-left: 0;
    margin: 0;
    width: 100%;
    float: none;
  }
  .filter-uitgebreid .row-wrap .form-row:first-child {
    border-top: none;
  }
}
.filter-home-wrap {
  width: 100%;
  position: absolute;
  bottom: 5%;
}
.filter-home-wrap .top-filter .filters .filter .form-item .select-wrap .sub-select {
  background: rgba(255, 255, 255, 0.9);
  border-top: solid 1px #b0b0b0;
  border-bottom: none;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  -webkit-border-top-right-radius: 8px;
  -webkit-border-top-left-radius: 8px;
  -moz-border-top-right-radius: 8px;
  -moz-border-top-left-radius: 8px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  top: auto;
  bottom: 108px;
}
.filter-home-wrap .top-filter .search .btn {
  margin: 0 0 7px;
}
.filter-home-wrap .btn-wrapper {
  display: none;
}
.filter-home-wrap .btn-wrapper .btn {
  margin: 10px auto 0;
  display: block;
  width: 100%;
  max-width: 280px;
}
.filter-home-wrap .btn-wrapper .btn:last-child {
  margin-right: auto;
}
@media only screen and (max-width: 1050px) {
  .filter-home-wrap {
    width: 94%;
    bottom: 0;
    left: 3%;
  }
  .filter-home-wrap .top-filter .filters .filter .form-item .select-wrap .sub-select {
    bottom: 98px;
  }
  .filter-home-wrap .top-filter .search .btn {
    margin: 0 10px 7px 0;
    display: inline-block;
  }
}
@media only screen and (max-width: 700px) {
  .filter-home-wrap {
    bottom: 30px;
  }
  .filter-home-wrap .top-filter {
    display: none;
  }
  .filter-home-wrap .top-filter.overzicht-filter {
    display: block;
  }
  .filter-home-wrap .btn-wrapper {
    display: block;
  }
}
.toggle-filter {
  font-size: 20px;
  padding: 9px 13px;
  display: none;
  width: 45px;
  height: 45px;
  min-width: 0;
  position: absolute;
  top: 0;
  right: 0;
}
.toggle-filter:after {
  content: '';
}
@media only screen and (max-width: 880px) {
  .toggle-filter {
    display: block;
  }
}
.special-wrap {
  margin-top: -284px;
}
@media only screen and (max-width: 1050px) {
  .special-wrap {
    margin-top: 0;
  }
}
.top-filter {
  background: rgba(255, 255, 255, 0.95);
  -webkit-box-shadow: 1px 1px 25px 0px rgba(5, 35, 95, 0.4);
  -moz-box-shadow: 1px 1px 25px 0px rgba(5, 35, 95, 0.4);
  box-shadow: 1px 1px 25px 0px rgba(5, 35, 95, 0.4);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  margin-bottom: 30px;
}
.top-filter.overzicht-filter {
  margin-bottom: 76px;
  position: relative;
}
.top-filter .filters {
  padding: 40px 25px;
  padding-right: 0;
  width: 80%;
  float: left;
}
.top-filter .filters .filter {
  width: 20%;
  float: left;
  position: relative;
}
.top-filter .filters .filter:before {
  content: '';
  background: #b0b0b0;
  display: block;
  width: 1px;
  height: 44px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.top-filter .filters .filter:first-child {
  padding-left: 0;
}
.top-filter .filters .filter:first-child:before {
  width: 0;
}
.top-filter .filters .filter:nth-child(2) {
  width: 40%;
}
.top-filter .filters .filter .form-item label {
  font-family: 'avenir-next-semi-bold', 'Open Sans', sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  color: #05235f;
  padding: 0 16px;
}
.top-filter .filters .filter .form-item .select-wrap {
  border: none;
}
.top-filter .filters .filter .form-item .select-wrap .selected:after {
  content: "\f078";
}
.top-filter .filters .filter .form-item .select-wrap .sub-select {
  top: 84px;
  left: 0;
}
.top-filter .filters .filter .form-item .select-wrap .sub-select label {
  font-family: 'avenir-next', 'Open Sans', sans-serif;
  text-transform: capitalize;
}
.top-filter .filters .filter .form-item input {
  background: none;
  border: none;
}
.top-filter .search {
  text-align: center;
  background: rgba(5, 35, 95, 0.2);
  padding: 40px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  -webkit-border-top-right-radius: 8px;
  -webkit-border-bottom-right-radius: 8px;
  -moz-border-top-right-radius: 8px;
  -moz-border-radius-bottomright: 8px;
  width: 20%;
  float: left;
}
.top-filter .search .btn {
  padding: 10px 25px;
  margin: 10.5px 0;
  width: 100%;
  min-width: 0;
}
.top-filter .search .btn:after {
  content: '';
}
.top-filter .search a {
  font-size: 12px;
}
@media only screen and (max-width: 1240px) {
  .top-filter .filters .filter {
    width: 25%;
  }
  .top-filter .filters .filter:nth-child(2) {
    width: 25%;
  }
  .top-filter .search .btn {
    padding: 10px;
  }
}
@media only screen and (max-width: 1050px) {
  .top-filter.overzicht-filter {
    margin-bottom: 20px;
  }
  .top-filter .filters {
    padding: 30px 15px 25px;
    width: 100%;
    float: none;
  }
  .top-filter .filters .filter .form-item label {
    font-size: 14px;
  }
  .top-filter .filters .filter .form-item .select-wrap .sub-select {
    top: 44px;
  }
  .top-filter .search {
    background: none;
    padding: 0 30px 30px;
    width: 100%;
    float: none;
  }
  .top-filter .search .btn {
    margin: 0 auto;
    display: block;
    width: 220px;
  }
}
@media only screen and (max-width: 880px) {
  .top-filter.toggle-top {
    display: none;
  }
  .top-filter.toggle-top.overzicht-filter {
    display: block;
  }
  .top-filter.toggle-top .filters .filter .form-item .select-wrap .sub-select {
    max-height: 176px;
  }
  .top-filter .filters .filter {
    margin-top: 15px;
    width: 50%;
  }
  .top-filter .filters .filter:nth-child(-n+2) {
    margin-top: 0;
  }
  .top-filter .filters .filter:nth-child(2) {
    width: 50%;
  }
  .top-filter .filters .filter:nth-child(2n+1):before {
    width: 0;
  }
}
@media only screen and (max-width: 500px) {
  .top-filter .filters .filter {
    width: 100%;
  }
  .top-filter .filters .filter:before {
    width: 0;
  }
  .top-filter .filters .filter:nth-child(2) {
    margin-top: 15px;
    width: 100%;
  }
  .top-filter .search .btn {
    width: 100%;
    max-width: 220px;
  }
}
.pagination-wrapper {
  border-top: solid 1px #b0b0b0;
  margin-top: 40px;
}
.pagination-wrapper.list-view {
  border-top: none;
  margin-top: 0;
}
.pagination-wrapper .pagination {
  float: right;
}
.pagination-wrapper .pagination .page {
  font-family: 'avenir-next', 'Open Sans', sans-serif;
  text-decoration: none;
  color: #05235f;
  padding: 20px 10px;
  display: block;
  float: left;
  cursor: pointer;
}
.pagination-wrapper .pagination .page:hover {
  text-decoration: underline;
}
.pagination-wrapper .pagination .page.disable {
  color: #b0b0b0;
  cursor: auto;
}
.pagination-wrapper .pagination .page.disable:hover {
  text-decoration: none;
}
.pagination-wrapper .pagination .page.current {
  font-family: 'avenir-next-bold', 'Open Sans', sans-serif;
}
.pagination-wrapper .pagination .page.vorige {
  padding-left: 0;
}
.pagination-wrapper .pagination .page.volgende {
  padding-right: 0;
}
.pagination-wrapper .pagination .pages {
  margin: 0 20px;
  display: block;
  float: left;
}
/*====================================================
CONTENT > EIGENAARSLOGIN
=====================================================*/
.pand-person-wrap {
  border-bottom: solid 1px #b0b0b0;
  margin-bottom: 40px;
}
.pand-person-wrap .left-wrap {
  margin-bottom: 40px;
  width: 20%;
  float: left;
}
.pand-person-wrap .left-wrap.full {
  width: 100%;
}
.pand-person-wrap .left-wrap .person-wrap {
  font-family: 'avenir-next', 'Open Sans', sans-serif;
  line-height: 25px;
  color: #05235f;
  padding: 20px 25px;
  border: solid 1px #b0b0b0;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}
.pand-person-wrap .left-wrap .person-wrap .naam {
  font-family: 'avenir-next-semi-bold', 'Open Sans', sans-serif;
  font-size: 16px;
  margin-bottom: 10px;
}
.pand-person-wrap .left-wrap .person-wrap .adres {
  margin-bottom: 10px;
}
.pand-person-wrap .left-wrap .pand-toggle-wrap {
  margin-top: 15px;
  position: relative;
  cursor: pointer;
}
.pand-person-wrap .left-wrap .pand-toggle-wrap .toggle-pand {
  padding: 15px 25px;
  border: solid 1px #b0b0b0;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}
.pand-person-wrap .left-wrap .pand-toggle-wrap .toggle-pand .inner-pand {
  padding-right: 19px;
  height: 19px;
  position: relative;
  overflow: hidden;
}
.pand-person-wrap .left-wrap .pand-toggle-wrap .toggle-pand .inner-pand i {
  line-height: 19px;
  position: absolute;
  top: 0;
  right: 0;
}
.pand-person-wrap .left-wrap .pand-toggle-wrap .sub-pand {
  background: #fff;
  padding: 10px 0 0;
  border: solid 1px #b0b0b0;
  border-top: 0;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
  -moz-border-radius-bottomright: 10px;
  -moz-border-radius-bottomleft: 10px;
  display: none;
  width: 100%;
  position: absolute;
  top: 42px;
  left: 0;
  z-index: 5;
  overflow: hidden;
}
.pand-person-wrap .left-wrap .pand-toggle-wrap .sub-pand a {
  text-decoration: none;
  color: #021231;
  padding: 5px 25px;
  display: block;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.pand-person-wrap .left-wrap .pand-toggle-wrap .sub-pand a:hover {
  background: lightgrey;
}
.pand-person-wrap .list-wrap {
  width: 75%;
  float: right;
}
.pand-person-wrap .list-wrap .listitem {
  border-bottom: 0;
}
@media only screen and (max-width: 1050px) {
  .pand-person-wrap .left-wrap {
    width: 100%;
    float: none;
  }
  .pand-person-wrap .list-wrap {
    width: 100%;
    float: none;
  }
}
@media print {
  .pand-person-wrap .left-wrap {
    width: 100%;
    float: none;
  }
  .pand-person-wrap .left-wrap .person-wrap {
    padding: 0;
    border: none;
  }
  .pand-person-wrap .left-wrap .person-wrap .adres {
    margin-right: 60px;
    float: left;
  }
  .pand-person-wrap .list-wrap {
    width: 100%;
    float: none;
  }
  .pand-person-wrap .list-wrap .listitem .foto .label {
    display: none;
  }
}
.tables .uitleg-wrapper .tabel-wrap .tabel.panden-tabel.four-colomn .regel .part:nth-child(4) {
  width: 50%;
}
.tables .uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel .part {
  width: 15%;
}
.tables .uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel .part:first-child {
  font-weight: 400;
}
.tables .uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel .part:nth-child(3) {
  width: 20%;
}
.tables .uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel .part:nth-child(4) {
  width: 35%;
}
@media only screen and (max-width: 1050px) {
  .tables .uitleg-wrapper .tabel-wrap .tabel.panden-tabel.four-colomn .regel .part:nth-child(4) {
    width: 100%;
  }
  .tables .uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel .part {
    width: 33.333%;
  }
  .tables .uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel .part:nth-child(3) {
    width: 33.333%;
  }
  .tables .uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel .part:nth-child(4) {
    width: 66.666%;
  }
}
@media only screen and (max-width: 700px) {
  .tables .uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel .part {
    width: 100%;
  }
  .tables .uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel .part:nth-child(3) {
    width: 100%;
  }
  .tables .uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel .part:nth-child(4) {
    width: 100%;
  }
}
@media print {
  .tables .uitleg-wrapper .tabel-wrap .tabel.panden-tabel .regel .part span.view {
    display: block;
  }
}
.verkopen-wrap {
  margin-bottom: 40px;
}
.verkopen-wrap .verkopen-inhoud {
  float: left;
  text-align: justify;
  width: 72%;
}
@media only screen and (max-width: 768px) {
  .verkopen-wrap .verkopen-inhoud {
    width: 100%;
  }
}
.verkopen-wrap .badge {
  float: right;
  width: 26%;
}
@media only screen and (max-width: 500px) {
  .verkopen-wrap .badge {
    width: 40%;
    float: left;
  }
}
.margbot {
  margin-bottom: 50px;
}
.g-recaptcha.btn:after {
  top: 12px;
}
.grecaptcha-badge {
  display: none;
}
.blue-banner {
  padding: 20px 30px;
  margin: 45px 0 30px 2%;
  background-color: #05235f;
}
@media only screen and (max-width: 768px) {
  .blue-banner {
    padding: 35px;
  }
}
.blue-banner h2 {
  color: #fff;
  float: left;
  margin-bottom: 0;
  line-height: 50px;
}
@media only screen and (max-width: 500px) {
  .blue-banner h2 {
    line-height: 30px;
    font-size: 22px;
    margin-bottom: 15px;
  }
}
.blue-banner .btn {
  float: right;
}
@media only screen and (max-width: 500px) {
  .blue-banner .btn {
    float: left;
  }
}
