@charset "UTF-8";
/*
Theme Name: Default theme using Sass & Timber/Twig
Theme URI: http://www.pms72.com/
Description: Theme custom made for you.

Author: PMS 72 :: Ingmar Krijtenberg <ingmar@pms72.com>
Version: 1.0
Tags:
*/
/* Vendor styles ============================================================ */
/*** Colors ***/
/*
$primary-color: color("materialize-red", "lighten-2") !default;
$primary-color-light: lighten($primary-color, 15%) !default;
$primary-color-dark: darken($primary-color, 15%) !default;

$secondary-color: color("teal", "lighten-1") !default;
$success-color: color("green", "base") !default;
$error-color: color("red", "base") !default;
$link-color: color("light-blue", "darken-1") !default;
*/
/*** Badges ***/
/*** Buttons ***/
/*** Cards ***/
/*
$card-link-color: color("orange", "accent-2") !default;
$card-link-color-light: lighten($card-link-color, 20%) !default;
*/
/*** Collapsible ***/
/*** Dropdown ***/
/*** Fonts ***/
/*
$roboto-font-path: "../font/roboto/" !default;
$icons-font-path: "../font/material-design-icons/" !default;
*/
/*** Forms ***/
/*
$input-error-color: $error-color !default;
$input-success-color: $success-color !default;
$input-focus-color: $secondary-color !default;
*/
/*
$switch-bg-color: $secondary-color !default;
$switch-checked-lever-bg: desaturate(lighten($secondary-color, 25%), 25%) !default;
*/
/*
$datepicker-weekday-bg: darken($secondary_color, 7%) !default;
$datepicker-date-bg: $secondary_color !default;
*/
/*
$datepicker-selected: $secondary-color !default;
$datepicker-selected-outfocus: desaturate(lighten($secondary-color, 35%), 15%) !default;
*/
/*** Global ***/
/*** Navbar ***/
/*** SideNav ***/
/*** Photo Slider ***/
/*
$slider-bg-color: color('grey', 'base') !default;
$slider-bg-color-light: color('grey', 'lighten-2') !default;
$slider-indicator-color: color('green', 'base') !default;
*/
/*** Tabs ***/
/*
$tabs-underline-color: $primary-color-light !default;
$tabs-text-color: $primary-color !default;
*/
/*** Tables ***/
/*** Toasts ***/
/*** Typography ***/
/*** Collections ***/
/*
$collection-active-bg-color: $secondary-color !default;
$collection-active-color: lighten($secondary-color, 55%) !default;
*/
/* Progress Bar */
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.valign-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.valign-wrapper .valign {
  display: block;
}

ul {
  padding: 0;
}
ul li {
  list-style-type: none;
}

.clearfix {
  clear: both;
}

.z-depth-0 {
  box-shadow: none !important;
}

.z-depth-1 {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.z-depth-1-half {
  box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

.z-depth-2 {
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.z-depth-3 {
  box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

.z-depth-4 {
  box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21);
}

.z-depth-5 {
  box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22);
}

.hoverable:hover {
  transition: box-shadow .25s;
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.divider {
  height: 1px;
  overflow: hidden;
  background-color: color("grey", "lighten-2");
}

blockquote {
  margin: 20px 0;
  padding-left: 1.5rem;
}

i {
  line-height: inherit;
}
i.left {
  float: left;
  margin-right: 15px;
}
i.right {
  float: right;
  margin-left: 15px;
}
i.tiny {
  font-size: 1rem;
}
i.small {
  font-size: 2rem;
}
i.medium {
  font-size: 4rem;
}
i.large {
  font-size: 6rem;
}

img.responsive-img,
video.responsive-video {
  max-width: 100%;
  height: auto;
}

.pagination li {
  float: left;
  font-size: 1.2rem;
  padding: 0 10px;
  line-height: 30px;
  border-radius: 2px;
  text-align: center;
}
.pagination li a {
  color: #444;
}
.pagination li.active a {
  color: #fff;
}
.pagination li.active {
  /* background-color: $primary-color; */
}
.pagination li.disabled a {
  cursor: default;
  color: #999;
}
.pagination li i {
  font-size: 2rem;
}
.pagination li.pages ul li {
  display: inline-block;
  float: none;
}

@media only screen and (max-width: 920px) {
  .pagination {
    width: 100%;
  }
  .pagination li.prev,
  .pagination li.next {
    width: 10%;
  }
  .pagination li.pages {
    width: 80%;
    overflow: hidden;
    white-space: nowrap;
  }
}
.parallax-container {
  position: relative;
  overflow: hidden;
  height: 500px;
}

.parallax {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.parallax img {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  transform: translateX(-50%);
}

.pin-top, .pin-bottom {
  position: relative;
}

.pinned {
  position: fixed !important;
}

/*********************
  Transition Classes
**********************/
ul.staggered-list li {
  opacity: 0;
}

.fade-in {
  opacity: 0;
  transform-origin: 0 50%;
}

/*********************
  Media Query Classes
**********************/
@media only screen and (max-width: 640px) {
  .hide-on-small-only, .hide-on-small-and-down {
    display: none !important;
  }
}

@media only screen and (max-width: 920px) {
  .hide-on-med-and-down {
    display: none !important;
  }
}

@media only screen and (min-width: 641px) {
  .hide-on-med-and-up {
    display: none !important;
  }
}

@media only screen and (min-width: 640px) and (max-width: 920px) {
  .hide-on-med-only {
    display: none !important;
  }
}

@media only screen and (min-width: 921px) {
  .hide-on-large-only {
    display: none !important;
  }
}

@media only screen and (min-width: 921px) {
  .show-on-large {
    display: initial !important;
  }
}

@media only screen and (min-width: 640px) and (max-width: 920px) {
  .show-on-medium {
    display: initial !important;
  }
}

@media only screen and (max-width: 640px) {
  .show-on-small {
    display: initial !important;
  }
}

@media only screen and (min-width: 641px) {
  .show-on-medium-and-up {
    display: initial !important;
  }
}

@media only screen and (max-width: 920px) {
  .show-on-medium-and-down {
    display: initial !important;
  }
}

@media only screen and (max-width: 640px) {
  .center-on-small-only {
    text-align: center;
  }
}

footer.page-footer {
  margin-top: 20px;
  padding-top: 20px;
}
footer.page-footer .footer-copyright {
  overflow: hidden;
  height: 50px;
  line-height: 50px;
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(51, 51, 51, 0.08);
}

table, th, td {
  border: none;
}

table {
  width: 100%;
  display: table;
}
table.striped > tbody > tr > td {
  border-radius: 0px;
}
table.hoverable > tbody > tr {
  -webkit-transition: background-color 0.25s ease;
  -moz-transition: background-color 0.25s ease;
  -o-transition: background-color 0.25s ease;
  -ms-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
}
table.centered thead tr th, table.centered tbody tr td {
  text-align: center;
}

td, th {
  padding: 15px 5px;
  display: table-cell;
  text-align: left;
  vertical-align: middle;
  border-radius: 2px;
}

@media only screen and (max-width: 920px) {
  table.responsive-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    display: block;
    position: relative;
    /* sort out borders */
  }
  table.responsive-table th,
  table.responsive-table td {
    margin: 0;
    vertical-align: top;
  }
  table.responsive-table th {
    text-align: left;
  }
  table.responsive-table thead {
    display: block;
    float: left;
  }
  table.responsive-table thead tr {
    display: block;
    padding: 0 10px 0 0;
  }
  table.responsive-table thead tr th::before {
    content: "\00a0";
  }
  table.responsive-table tbody {
    display: block;
    width: auto;
    position: relative;
    overflow-x: auto;
    white-space: nowrap;
  }
  table.responsive-table tbody tr {
    display: inline-block;
    vertical-align: top;
  }
  table.responsive-table th {
    display: block;
    text-align: right;
  }
  table.responsive-table td {
    display: block;
    min-height: 1.25em;
    text-align: left;
  }
  table.responsive-table tr {
    padding: 0 10px;
  }
  table.responsive-table thead {
    border: 0;
  }
  table.responsive-table.bordered th {
    border-bottom: 0;
    border-left: 0;
  }
  table.responsive-table.bordered td {
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
  }
  table.responsive-table.bordered tr {
    border: 0;
  }
  table.responsive-table.bordered tbody tr {
    /* border-right: 1px solid $table-border-color; */
  }
}
.collection {
  margin: 3.33333px 0 6.66667px 0;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.collection .collection-item {
  line-height: 1.5rem;
  padding: 10px 20px;
  margin: 0;
}
.collection .collection-item.avatar {
  min-height: 84px;
  padding-left: 72px;
  position: relative;
}
.collection .collection-item.avatar .circle {
  position: absolute;
  width: 42px;
  height: 42px;
  overflow: hidden;
  left: 15px;
  display: inline-block;
  vertical-align: middle;
}
.collection .collection-item.avatar i.circle {
  font-size: 18px;
  line-height: 42px;
  color: #fff;
  background-color: #999;
  text-align: center;
}
.collection .collection-item.avatar .title {
  font-size: 16px;
}
.collection .collection-item.avatar p {
  margin: 0;
}
.collection .collection-item.avatar .secondary-content {
  position: absolute;
  top: 16px;
  right: 16px;
}
.collection .collection-item:last-child {
  border-bottom: none;
}
.collection .collection-item.active {
  /*
        background-color: $collection-active-bg-color;
        color: $collection-active-color;
  */
}
.collection a.collection-item {
  display: block;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  -o-transition: 0.25s;
  -ms-transition: 0.25s;
  transition: 0.25s;
}
.collection.with-header .collection-header {
  padding: 10px 20px;
}
.collection.with-header .collection-item {
  padding-left: 30px;
}
.collection.with-header .collection-item.avatar {
  padding-left: 72px;
}

.secondary-content {
  float: right;
}

span.badge {
  min-width: 3rem;
  padding: 0 6px;
  text-align: center;
  font-size: 1rem;
  line-height: inherit;
  color: color("grey", "darken-1");
  position: absolute;
  right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
span.badge.new {
  font-weight: 300;
  font-size: 0.8rem;
  color: #fff;
  border-radius: 2px;
}
span.badge.new:after {
  content: " new";
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.video-container.no-controls {
  padding-top: 0;
}
.video-container iframe, .video-container object, .video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.progress {
  position: relative;
  height: 4px;
  display: block;
  width: 100%;
  border-radius: 2px;
  margin: 3.33333px 0 6.66667px 0;
  overflow: hidden;
}
.progress .determinate {
  position: absolute;
  background-color: inherit;
  top: 0;
  left: 0;
  bottom: 0;
  -webkit-transition: width 0.3s linear;
  -moz-transition: width 0.3s linear;
  -o-transition: width 0.3s linear;
  -ms-transition: width 0.3s linear;
  transition: width 0.3s linear;
}
.progress .indeterminate:before {
  content: '';
  position: absolute;
  background-color: inherit;
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
  -webkit-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
  -moz-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
  -ms-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
  -o-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
  animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
}
.progress .indeterminate:after {
  content: '';
  position: absolute;
  background-color: inherit;
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
  -webkit-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  -moz-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  -ms-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  -o-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  -webkit-animation-delay: 1.15s;
  -moz-animation-delay: 1.15s;
  -ms-animation-delay: 1.15s;
  -o-animation-delay: 1.15s;
  animation-delay: 1.15s;
}

@-webkit-keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%;
  }
  60% {
    left: 100%;
    right: -90%;
  }
  100% {
    left: 100%;
    right: -90%;
  }
}
@-moz-keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%;
  }
  60% {
    left: 100%;
    right: -90%;
  }
  100% {
    left: 100%;
    right: -90%;
  }
}
@keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%;
  }
  60% {
    left: 100%;
    right: -90%;
  }
  100% {
    left: 100%;
    right: -90%;
  }
}
@-webkit-keyframes indeterminate-short {
  0% {
    left: -200%;
    right: 100%;
  }
  60% {
    left: 107%;
    right: -8%;
  }
  100% {
    left: 107%;
    right: -8%;
  }
}
@-moz-keyframes indeterminate-short {
  0% {
    left: -200%;
    right: 100%;
  }
  60% {
    left: 107%;
    right: -8%;
  }
  100% {
    left: 107%;
    right: -8%;
  }
}
@keyframes indeterminate-short {
  0% {
    left: -200%;
    right: 100%;
  }
  60% {
    left: 107%;
    right: -8%;
  }
  100% {
    left: 107%;
    right: -8%;
  }
}
/*******************
  Utility Classes
*******************/
.hide {
  display: none !important;
}

.left-align {
  text-align: left;
}

.right-align {
  text-align: right;
}

.center, .center-align {
  text-align: center;
}

.left {
  float: left !important;
}

.right {
  float: right !important;
}

.no-select {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.circle {
  border-radius: 50%;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.truncate, .info-window h5, .info-window h6, .info-window a, .carousel .slide__caption,
.hero-slider .slide__caption {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.no-padding {
  padding: 0 !important;
}

.container {
  margin: 0 auto;
  max-width: 1280px;
  width: 90%;
}

@media only screen and (min-width: 641px) {
  .container {
    width: 85%;
  }
}
@media only screen and (min-width: 921px) {
  .container {
    width: 70%;
  }
}
.container .row {
  margin-left: -5px;
  margin-right: -5px;
}

.section {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.section.no-pad {
  padding: 0;
}
.section.no-pad-bot {
  padding-bottom: 0;
}
.section.no-pad-top {
  padding-top: 0;
}

.row {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
.row:after {
  content: "";
  display: table;
  clear: both;
}
.row .col {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
}
.row .col.s1 {
  width: 8.33333%;
  margin-left: 0;
}
.row .col.s2 {
  width: 16.66667%;
  margin-left: 0;
}
.row .col.s3 {
  width: 25%;
  margin-left: 0;
}
.row .col.s4 {
  width: 33.33333%;
  margin-left: 0;
}
.row .col.s5 {
  width: 41.66667%;
  margin-left: 0;
}
.row .col.s6 {
  width: 50%;
  margin-left: 0;
}
.row .col.s7 {
  width: 58.33333%;
  margin-left: 0;
}
.row .col.s8 {
  width: 66.66667%;
  margin-left: 0;
}
.row .col.s9 {
  width: 75%;
  margin-left: 0;
}
.row .col.s10 {
  width: 83.33333%;
  margin-left: 0;
}
.row .col.s11 {
  width: 91.66667%;
  margin-left: 0;
}
.row .col.s12 {
  width: 100%;
  margin-left: 0;
}
.row .col.offset-s1 {
  margin-left: 8.33333%;
}
.row .col.offset-s2 {
  margin-left: 16.66667%;
}
.row .col.offset-s3 {
  margin-left: 25%;
}
.row .col.offset-s4 {
  margin-left: 33.33333%;
}
.row .col.offset-s5 {
  margin-left: 41.66667%;
}
.row .col.offset-s6 {
  margin-left: 50%;
}
.row .col.offset-s7 {
  margin-left: 58.33333%;
}
.row .col.offset-s8 {
  margin-left: 66.66667%;
}
.row .col.offset-s9 {
  margin-left: 75%;
}
.row .col.offset-s10 {
  margin-left: 83.33333%;
}
.row .col.offset-s11 {
  margin-left: 91.66667%;
}
.row .col.offset-s12 {
  margin-left: 100%;
}
@media only screen and (min-width: 641px) {
  .row .col.m1 {
    width: 8.33333%;
    margin-left: 0;
  }
  .row .col.m2 {
    width: 16.66667%;
    margin-left: 0;
  }
  .row .col.m3 {
    width: 25%;
    margin-left: 0;
  }
  .row .col.m4 {
    width: 33.33333%;
    margin-left: 0;
  }
  .row .col.m5 {
    width: 41.66667%;
    margin-left: 0;
  }
  .row .col.m6 {
    width: 50%;
    margin-left: 0;
  }
  .row .col.m7 {
    width: 58.33333%;
    margin-left: 0;
  }
  .row .col.m8 {
    width: 66.66667%;
    margin-left: 0;
  }
  .row .col.m9 {
    width: 75%;
    margin-left: 0;
  }
  .row .col.m10 {
    width: 83.33333%;
    margin-left: 0;
  }
  .row .col.m11 {
    width: 91.66667%;
    margin-left: 0;
  }
  .row .col.m12 {
    width: 100%;
    margin-left: 0;
  }
  .row .col.offset-m1 {
    margin-left: 8.33333%;
  }
  .row .col.offset-m2 {
    margin-left: 16.66667%;
  }
  .row .col.offset-m3 {
    margin-left: 25%;
  }
  .row .col.offset-m4 {
    margin-left: 33.33333%;
  }
  .row .col.offset-m5 {
    margin-left: 41.66667%;
  }
  .row .col.offset-m6 {
    margin-left: 50%;
  }
  .row .col.offset-m7 {
    margin-left: 58.33333%;
  }
  .row .col.offset-m8 {
    margin-left: 66.66667%;
  }
  .row .col.offset-m9 {
    margin-left: 75%;
  }
  .row .col.offset-m10 {
    margin-left: 83.33333%;
  }
  .row .col.offset-m11 {
    margin-left: 91.66667%;
  }
  .row .col.offset-m12 {
    margin-left: 100%;
  }
}
@media only screen and (min-width: 921px) {
  .row .col.l1 {
    width: 8.33333%;
    margin-left: 0;
  }
  .row .col.l2 {
    width: 16.66667%;
    margin-left: 0;
  }
  .row .col.l3 {
    width: 25%;
    margin-left: 0;
  }
  .row .col.l4 {
    width: 33.33333%;
    margin-left: 0;
  }
  .row .col.l5 {
    width: 41.66667%;
    margin-left: 0;
  }
  .row .col.l6 {
    width: 50%;
    margin-left: 0;
  }
  .row .col.l7 {
    width: 58.33333%;
    margin-left: 0;
  }
  .row .col.l8 {
    width: 66.66667%;
    margin-left: 0;
  }
  .row .col.l9 {
    width: 75%;
    margin-left: 0;
  }
  .row .col.l10 {
    width: 83.33333%;
    margin-left: 0;
  }
  .row .col.l11 {
    width: 91.66667%;
    margin-left: 0;
  }
  .row .col.l12 {
    width: 100%;
    margin-left: 0;
  }
  .row .col.offset-l1 {
    margin-left: 8.33333%;
  }
  .row .col.offset-l2 {
    margin-left: 16.66667%;
  }
  .row .col.offset-l3 {
    margin-left: 25%;
  }
  .row .col.offset-l4 {
    margin-left: 33.33333%;
  }
  .row .col.offset-l5 {
    margin-left: 41.66667%;
  }
  .row .col.offset-l6 {
    margin-left: 50%;
  }
  .row .col.offset-l7 {
    margin-left: 58.33333%;
  }
  .row .col.offset-l8 {
    margin-left: 66.66667%;
  }
  .row .col.offset-l9 {
    margin-left: 75%;
  }
  .row .col.offset-l10 {
    margin-left: 83.33333%;
  }
  .row .col.offset-l11 {
    margin-left: 91.66667%;
  }
  .row .col.offset-l12 {
    margin-left: 100%;
  }
}

/**
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* 
 *  Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel .owl-refresh .owl-item {
  display: none;
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}

.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}

.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/* 
 *  Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item img {
  transform-style: preserve-3d;
}

/* 
 *  Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}

/* Code base ================================================================ */
/* ==========================================================================
  Webfonts
  ========================================================================== */
@font-face {
  font-family: 'maison_neuebold';
  src: url("assets/fonts/bold/maisonneue-bold-webfont.eot");
  src: url("assets/fonts/bold/maisonneue-bold-webfont.eot?#iefix") format("embedded-opentype"), url("assets/fonts/bold/maisonneue-bold-webfont.woff") format("woff"), url("assets/fonts/bold/maisonneue-bold-webfont.ttf") format("truetype"), url("assets/fonts/bold/maisonneue-bold-webfont.svg#maison_neuebold") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'maison_neuebook';
  src: url("assets/fonts/book/maisonneue-book-webfont.eot");
  src: url("assets/fonts/book/maisonneue-book-webfont.eot?#iefix") format("embedded-opentype"), url("assets/fonts/book/maisonneue-book-webfont.woff") format("woff"), url("assets/fonts/book/maisonneue-book-webfont.ttf") format("truetype"), url("assets/fonts/book/maisonneue-book-webfont.svg#maison_neuebook") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'maison_neuelight';
  src: url("assets/fonts/light/maisonneue-light-webfont.eot");
  src: url("assets/fonts/light/maisonneue-light-webfont.eot?#iefix") format("embedded-opentype"), url("assets/fonts/light/maisonneue-light-webfont.woff") format("woff"), url("assets/fonts/light/maisonneue-light-webfont.ttf") format("truetype"), url("assets/fonts/light/maisonneue-light-webfont.svg#maison_neuelight") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'maison_neuemedium';
  src: url("assets/fonts/medium/maisonneue-medium-webfont.eot");
  src: url("assets/fonts/medium/maisonneue-medium-webfont.eot?#iefix") format("embedded-opentype"), url("assets/fonts/medium/maisonneue-medium-webfont.woff") format("woff"), url("assets/fonts/medium/maisonneue-medium-webfont.ttf") format("truetype"), url("assets/fonts/medium/maisonneue-medium-webfont.svg#maison_neuemedium") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* =============================================================================
   Variables
   ========================================================================== */
/* Colors =================================================================== */
/* Typography =============================================================== */
/* Easing =================================================================== */
/* =============================================================================
   Mixins
   ========================================================================== */
/* Typography =============================================================== */
/* ==========================================================================
  Font-face
  ========================================================================== */
/* REM font size =============================================================== */
/* Size / Square ============================================================= */
/* Hide text - Image replacement ============================================ */
/* Placeholder text ============================================================= */
/* Lists =============================================================== */
/* Appearance =============================================================== */
/* User select =============================================================== */
/* Various CSS3 mixins ====================================================== */
/* Various CSS3 Mixins ==========================================================
  Thanks to: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  Mixins available:
    -   css3-prefix             - arguments: Property, Value
    -   background-gradient     - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-horizontal   - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-radial       - arguments: Start Color: #FFFFFF, Start position: 0%, End Color: #000000, End position: 100%
    -   background-size         - arguments: Width: 100%, Height: 100%
    -   background-opacity      - arguments: Color: #000, Opacity: .85
    -   border-radius           - arguments: Radius: 5px
    -   border-radius-separate  - arguments: Top Left: 5px, Top Right: 5px, Bottom Left: 5px, Bottom Right: 5px
    -   box                     - arguments: Orientation: horizontal, Pack: center, Align: center
    -   box-rgba                - arguments: R: 60, G: 3, B: 12, Opacity: 0.23, Color: #3C3C3C
    -   box-shadow              - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   box-sizing              - arguments: Type: border-box
    -   columns                 - arguments: Count: 3, Gap: 10
    -   double-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Radius: 0
    -   flex                    - arguments: Value: 1
    -   flip                    - arguments: ScaleX: -1
    -   font-face               - arguments: Font Family: myFont, Eot File Src: myFont.eot, Woff File Src: myFont.woff, Ttf File Src: myFont.ttf
    -   opacity                 - arguments: Opacity: 0.5
    -   outline radius          - arguments: Radius: 5px
    -   resize                  - arguments: Direction: both
    -   rotate                  - arguments: Degree: 0, M11: 0, M12: 0, M21: 0, M22: 0
        CSS Matrix Rotation Calculator http://www.boogdesign.com/examples/transforms/matrix-calculator.html
    -   text-shadow             - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   transform               - arguments: Parameters: null
    -   transform-style         - arguments: Style: preserve-3d
    -   transition              - Default arguments: What: all, Length: 1s, Easing: ease-in-out
    -                           - Examples: @include transition (all 2s ease-in-out);
    -                                       @include transition (opacity 1s ease-in 2s, width 2s ease-out);
    -   triple-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Color Three: #000000, Radius: 0
    -   keyframes               - arguments: Animation name
                                - content:   Animation css
    -   animation               - arguments: name duration timing-function delay iteration-count direction fill-mode play-state
                                             (http://www.w3schools.com/cssref/css3_pr_animation.asp)

  ============================================================================== */
/* Browser prefix ============================================================ */
/* Radial gradient ========================================================== */
/* Background size =========================================================== */
/* Background color opacity ================================================= */
/* Border radius ============================================================ */
/* Box ====================================================================== */
/* Box rgba ================================================================= */
/* Box shadow =============================================================== */
/* Text shadow ============================================================== */
/* Columns ================================================================== */
/* Double borders =========================================================== */
/* Triple borders =========================================================== */
/* Flex ===================================================================== */
/* Flip ===================================================================== */
/* Opacity ================================================================== */
/* Outline radius =========================================================== */
/* Resize =================================================================== */
/* Rotate =================================================================== */
/* Transform ================================================================ */
/* Transform origin ========================================================= */
/* Transform style ========================================================== */
/* Transition =============================================================== */
/* Keyframes ================================================================ */
/* Animation ================================================================ */
/* Layout =================================================================== */
/* Clearfix ===============================================================
 * The Magnificent Clearfix
 * Updated to prevent margin-collapsing on child elements
 * @see http://j.mp/bestclearfix
 */
/* Box sizing =============================================================== */
/* Position =================================================================
 * thanks to: http://hugogiraudel.com/2013/08/05/offsets-sass-mixin/ */
/* Examples =========================
.a {
  @include absolute();
}

.b {
  @include absolute(top);
}

.c {
  @include absolute(top right);
}

.d {
  @include absolute(top right bottom);
}

.e {
  @include absolute(top right bottom left);
}

.f {
  @include absolute(top right 1em);
}

.g {
  @include absolute(top 1em right);
}

.h {
  @include absolute(top 1em right 100%);
}

.i {
  @include absolute(top right mistake);
}

.j {
  @include absolute(top 1em right 1em bottom 1em left 1em)
}
*/
/* Size / Square ============================================================= */
/* Background image cover element =========================================== */
/* Buttons ================================================================== */
/* Video play button ========================================================== */
/* (Smarter) Link Underline ==================================================== */
/* Color ==================================================================== */
/* Horizontal gradient =============================================================== */
/* Vertical gradient =============================================================== */
/* CSS3 Filters - Blend modes ===================================================
 * @see https://developer.mozilla.org/en-US/docs/Web/CSS/filter
 *
 * grayscale      ex: grayscale(100%);
 * sepia          ex: sepia(100%);
 * saturate       ex: saturate(0%);
 * hue-rotate     ex: hue-rotate(45deg);
 * invert         ex: invert(100%);
 * brightness     ex: brightness(15%);
 * contrast       ex: contrast(200%);
 * blur           ex: blur(2px);
 */
/*
.filter(@filter) {	
	-webkit-filter: @filter;
	   -moz-filter: @filter;
	    -ms-filter: @filter;
	        filter: @filter;
}
*/
/* ==========================================================================
  Helpers
  ========================================================================== */
/* Lists =================================================================== */
.list--unstyled, .list--inline {
  padding-left: 0;
  list-style: none;
}

/* Resets both margin and padding ========================================== */
.list--clean {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Standard horizontal list */
.list--inline > li {
  display: inline-block;
}

/* Clearfix */
.clearfix:before, .clearfix:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.clearfix:after {
  clear: both;
}
.lt-ie9 .clearfix {
  zoom: 1;
}

.clear-padding {
  margin-left: -10px;
  margin-right: -10px;
}

/* Box shadow */
.box-shadow {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
}

.input-box-shadow {
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.2) inset;
}

.input-box-shadow-focus {
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.4) inset;
}

/* Background color ======================================================== */
.bg--gray-light {
  background-color: #ebebeb;
}

/* Color =================================================================== */
.c--black {
  color: #000 !important;
}

.c--white {
  color: #fff;
}

.c--gray {
  color: #899195;
}

.c--brick {
  color: #f3887b;
}

/* Fonts =================================================================== */
.f--light {
  font-family: 'maison_neuelight', Helvetica, Arial, sans-serif !important;
}

/* Text ==================================================================== */
.t--left {
  text-align: left;
}

.t--right {
  text-align: right;
}

.t--center {
  text-align: center;
}

.t--lower {
  text-transform: lowercase;
}

.t--upper {
  text-transform: uppercase;
}

.t--underline {
  text-decoration: underline;
}

/* Responsive embeds (useful for video iframe and such) ==================== */
.responsive-media {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.responsive-media iframe,
.responsive-media embed,
.responsive-media object,
.responsive-media .responsive-media__item {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
}
.responsive-media.responsive-media--16-9 {
  padding-bottom: 56.25%;
}
.responsive-media.responsive-media--3-2 {
  padding-bottom: 66.6667%;
}
.responsive-media.responsive-media--4-3 {
  padding-bottom: 75%;
}
.responsive-media.responsive-media--1-1 {
  padding-bottom: 100%;
}
.responsive-media.responsive-media--2-3 {
  padding-bottom: 150%;
}
.responsive-media.responsive-media--2-1 {
  min-height: 380px;
  padding: 0;
}

/* Non-semantic helpers ==================================================== */
.clear {
  clear: both;
}

.pull-left {
  float: left !important;
}

.pull-right {
  float: right !important;
}

.strong {
  font-family: 'maison_neuebold', Helvetica, Arial, sans-serif;
  font-weight: normal;
}

.underline {
  border-bottom: 1px solid;
}

.no-margin {
  margin: 0 !important;
}

.no-padding {
  padding: 0 !important;
}

/* Visibility ============================================================== */
/**
 * Only display content to screen readers
 * See: http://a11yproject.com/posts/how-to-hide-content/
 */
/**
 * Use in conjunction with .sr-only to only display content when it's focused.
 * Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
 */
/**
 * Hide from screenreaders and browsers
 * Credit: HTML5 Boilerplate
 */
.hidden {
  display: none !important;
  visibility: hidden !important;
}

/* Hide only visually, but have it available for screenreaders */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.invisible {
  visibility: hidden;
}

.hide {
  display: none;
}

/**
 * Avoiding DOM flickering
 * Made possible by adding the class `.js` to the <html> node
 */
.js .show-if-js,
.hide-if-js {
  display: block;
}

.js .hide-if-js,
.show-if-js {
  display: none;
}

/* Image replacement ======================================================= */
/* =============================================================================
   Functions
   ========================================================================== */
/* base styles ============================================================== */
/* =============================================================================
   normalize.css v3.0.2 | MIT License | git.io/normalize
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-family: 'maison_neuebold', Helvetica, Arial, sans-serif;
  font-weight: normal;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* ==========================================================================
  Scaffolding CSS styles
  - extends normalize.scss
  ========================================================================== */
/* Base styles ============================================================= */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'maison_neuelight', Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  color: #000;
  line-height: 1.6;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  scroll-behavior: smooth;
}
body.active {
  overflow: hidden;
  height: 100vh;
}

main {
  flex: 1;
}

/**
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */
::-moz-selection {
  background-color: #fff;
  color: #f3887b;
  text-shadow: none;
}

::selection {
  background-color: #fff;
  color: #f3887b;
  text-shadow: none;
}

input::-moz-selection {
  background-color: #f3887b;
  color: #fff;
}

input::selection {
  background-color: #f3887b;
  color: #fff;
}

/* Links =================================================================== */
a {
  -webkit-transition: color 0.3s;
  -khtml-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
  color: #f3887b;
  text-decoration: none;
  cursor: pointer;
}
a:hover, a:focus {
  color: #000;
}

a:focus,
button:focus,
input[type="button"]:focus {
  outline: 0;
}

/* Typography ============================================================== */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'maison_neuebold', Helvetica, Arial, sans-serif;
  font-weight: normal;
  letter-spacing: .075em;
  line-height: 1;
  text-transform: uppercase;
}

h1,
.h1 {
  font-size: 42px;
  font-size: 4.2rem;
  letter-spacing: .125em;
}

h2, h3,
.h2, .h3 {
  font-size: 20px;
  font-size: 2rem;
}

h4,
.h4 {
  font-size: 17px;
  font-size: 1.7rem;
}

h5, .h5 {
  font-size: 15px;
  font-size: 1.5rem;
}

h6, .h6 {
  font-size: 13px;
  font-size: 1.3rem;
}

@media only screen and (min-width: 641px) {
  h1,
  .h1 {
    font-size: 58px;
    font-size: 5.8rem;
  }
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

address {
  font-style: normal;
  margin-bottom: 1rem;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}
q:before, q:after {
  content: '';
}

/* Lists =================================================================== */
ul,
ol {
  margin: 1em 0;
  padding: 0 0 0 40px;
}

dd {
  margin: 0 0 0 40px;
}

nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0;
}

/* Tables ================================================================== */
th {
  text-align: left;
}

table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
}
table > thead > tr > th,
table > thead > tr > td,
table > tbody > tr > th,
table > tbody > tr > td,
table > tfoot > tr > th,
table > tfoot > tr > td {
  padding: 10px;
  line-height: 1.5;
  vertical-align: top;
  border-top: 1px solid #ccc;
}
table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ccc;
}
table > caption + thead > tr:first-child > th,
table > caption + thead > tr:first-child > td,
table > colgroup + thead > tr:first-child > th,
table > colgroup + thead > tr:first-child > td,
table > thead:first-child > tr:first-child > th,
table > thead:first-child > tr:first-child > td {
  border-top: 0;
}

/* Embedded content ========================================================
 * 1. Improve image quality when scaled in IE7:h5bp.com/d
 * 2. Remove the gap between images and borders on image containers:h5bp.com/i/440
 */
img {
  display: inline-block;
  max-width: 100%;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
}

/* ==========================================================================
   Icons
   ========================================================================== */
.icon {
  display: inline-block;
  fill: currentColor;
  height: 1em;
  width: 1em;
}

.icon-chevron-left {
  -webkit-transform: rotate(180deg);
  -khtml-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.icon-chevron-down {
  -webkit-transform: rotate(90deg);
  -khtml-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

/* =============================================================================
   General Styles
   ========================================================================== */
body {
  background-color: #f9f9f9;
}
body.page, body.error404 {
  background-color: #fce1de;
}
body.page--dark {
  background-color: #f3887b;
}
body.home {
  background-color: #fff;
}
body.error404 {
  background-color: #899195;
  color: #fff;
}

.header,
.wrapper,
#gform_3 .gform_body,
#gform_3 .validation_error,
.skar_inschrijven .gform_body,
.skar_inschrijven .validation_error,
.footer {
  margin: 0 auto;
}

.main {
  padding-top: 50px;
}
.main__content {
  padding-bottom: 70px;
  padding-top: 50px;
}
.page--aanmelden .main__content {
  padding-top: 0;
}
.page--thank-you .main__content, .error404 .main__content {
  letter-spacing: .05em;
  padding-bottom: 70px;
  padding-top: 70px;
}
.page--thank-you .main__content a, .error404 .main__content a {
  font-family: 'maison_neuebold', Helvetica, Arial, sans-serif;
  color: #000;
  text-decoration: underline;
}
.page--thank-you .main__content a:focus, .page--thank-you .main__content a:hover, .error404 .main__content a:focus, .error404 .main__content a:hover {
  text-decoration: none;
}
.error404 .main__content a {
  color: #fff;
}

.wrapper, #gform_3 .gform_body,
#gform_3 .validation_error, .skar_inschrijven .gform_body,
.skar_inschrijven .validation_error {
  max-width: 100%;
  padding: 0 10px;
  width: 1080px;
}

.row,
.col,
.section {
  padding-left: 10px;
  padding-right: 10px;
}

.magazine-articles,
.aanbod-articles {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  margin-top: -5px;
}
.magazine-articles:not(:last-child),
.aanbod-articles:not(:last-child) {
  margin-bottom: calc($gutter-width - $gutter-width/2);
}

.nav-open {
  overflow: hidden;
}

@media only screen and (min-width: 641px) {
  .main {
    padding-top: 70px;
  }
}
@media only screen and (min-width: 921px) {
  .main__content {
    padding-bottom: 116px;
    padding-top: 116px;
  }
}
/* ==========================================================================
   Print styles
   ========================================================================== */
@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }

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

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

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

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

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

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

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

  h2,
  h3 {
    page-break-after: avoid;
  }

  /*
      (-o-min-device-pixel-ratio: 5/4),
      (-webkit-min-device-pixel-ratio: 1.25),
      (min-resolution: 120dpi) {}
  */
}
/* Pages ==================================================================== */
/* =============================================================================
   Homepage specific styles
   ========================================================================== */
/* =============================================================================
   Archive specific styles
   ========================================================================== */
.related-page {
  margin-bottom: 40px;
}
.related-page, .related-page a {
  color: #fff;
}
.related-page a:not(.button) {
  text-decoration: underline;
}
.related-page a:not(.button):focus, .related-page a:not(.button):hover {
  text-decoration: none;
}
.related-page .button--bordered, .related-page .button--underlined, .related-page .gform_footer .button, .gform_footer .related-page .button,
.related-page .gform_page_footer .button,
.gform_page_footer .related-page .button {
  color: #fff;
  margin-bottom: 2em;
  text-align: center;
  width: 100%;
}
.related-page .button--bordered:focus, .related-page .button--underlined:focus, .related-page .gform_footer .button:focus, .gform_footer .related-page .button:focus,
.related-page .gform_page_footer .button:focus,
.gform_page_footer .related-page .button:focus, .related-page .button--bordered:hover, .related-page .button--underlined:hover, .related-page .gform_footer .button:hover, .gform_footer .related-page .button:hover,
.related-page .gform_page_footer .button:hover,
.gform_page_footer .related-page .button:hover {
  color: #000;
}

.page-content h3, .page-content h4 {
  font-family: 'maison_neuebook', Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-size: 2rem;
  margin-top: 70px;
}
.page-content h3:first-child, .page-content h4:first-child {
  margin-top: 0;
}
.page-content ul, .page-content ol {
  padding-left: 4px;
}
.page-content ul li:before {
  content: '•';
  margin-right: 6px;
  position: relative;
  top: 1px;
}
.page-content a {
  text-decoration: underline;
}
.page-content a:focus, .page-content a:hover {
  text-decoration: none;
}
.page-content .team-member:before,
.page-content .team-member li:before {
  display: none;
}

@media only screen and (min-width: 921px) {
  .related-page {
    margin-bottom: 0;
  }
}
/* =============================================================================
   404 specific styles
   ========================================================================== */
/* Navigation =============================================================== */
/* =============================================================================
   Navigation
   ========================================================================== */
.nav__wrapper {
  margin-bottom: 42px;
}
.nav__item.current-menu-item .nav__link, .nav__item.current_page_item .nav__link, .nav__item.current-post-ancestor .nav__link {
  text-decoration: underline;
}
.nav__link {
  color: #fff;
  text-decoration: none;
}
.nav__link:focus, .nav__link:hover {
  color: #fff;
  text-decoration: underline;
}

.nav--footer {
  margin-bottom: 28px;
}
.nav--footer .nav__item {
  padding-right: 20px;
}
.nav--footer .nav__item--first {
  margin-bottom: 1em;
}
.nav--footer .nav__item--first a {
  text-decoration: underline;
}
.nav--footer .nav__link {
  font-size: 12px;
  font-size: 1.2rem;
}
@media only screen and (max-width: 480px) {
  .nav--footer {
    width: 50% !important;
  }
}
@media only screen and (min-width: 921px) {
  .nav--footer {
    margin-bottom: 0;
  }
}

.nav--header {
  height: 100%;
  width: 100%;
  -webkit-transition: opacity 0.25s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  -khtml-transition: opacity 0.25s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  -moz-transition: opacity 0.25s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  -ms-transition: opacity 0.25s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  -o-transition: opacity 0.25s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  transition: opacity 0.25s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  background-color: rgba(243, 136, 123, 0.95);
  height: 100vh;
  left: 0;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding-top: 104px;
  position: fixed;
  top: -100vh;
  width: 100%;
  z-index: 77;
  -webkit-overflow-scrolling: touch;
}
.nav--header ::-moz-selection {
  background-color: #000;
}
.nav--header ::selection {
  background-color: #000;
}
.nav--header .nav {
  padding: 0 10px;
}
.nav--header .nav__item {
  margin-bottom: 2em;
}
.nav--header .nav__item.menu-item-has-children > .nav__link:before {
  -webkit-transition: 0.2s;
  -khtml-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
  border-width: 4px 5px;
  content: '';
  left: -18px;
  margin-top: 13px;
  position: absolute;
}
.nav--header .nav__item.sub-nav-open > .nav__link:before {
  -webkit-transform: rotate(90deg);
  -khtml-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  left: -20px;
  margin-top: 16px;
}
.nav--header .nav__link {
  font-size: 28px;
  font-size: 2.8rem;
  letter-spacing: .05em;
  line-height: 1.1;
  position: relative;
}
.nav--header .nav__drop {
  -webkit-transition: max-height 0.35s ease;
  -khtml-transition: max-height 0.35s ease;
  -moz-transition: max-height 0.35s ease;
  -ms-transition: max-height 0.35s ease;
  -o-transition: max-height 0.35s ease;
  transition: max-height 0.35s ease;
  max-height: 0;
  overflow: hidden;
  position: relative;
}
.nav--header .nav__children {
  padding: 5px 0 0;
}
.nav--header .nav__child-item {
  margin: .7em 0 0;
}
.nav--header .nav__child-link {
  font-size: 13px;
  font-size: 1.3rem;
}
.nav-open .nav--header {
  -webkit-transform: translateY(100%);
  -khtml-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: opacity 0.42s cubic-bezier(0.215, 0.61, 0.355, 1) 0.18s, transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -khtml-transition: opacity 0.42s cubic-bezier(0.215, 0.61, 0.355, 1) 0.18s, transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: opacity 0.42s cubic-bezier(0.215, 0.61, 0.355, 1) 0.18s, transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: opacity 0.42s cubic-bezier(0.215, 0.61, 0.355, 1) 0.18s, transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: opacity 0.42s cubic-bezier(0.215, 0.61, 0.355, 1) 0.18s, transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.42s cubic-bezier(0.215, 0.61, 0.355, 1) 0.18s, transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 1;
}
.nav--header .search-form {
  height: 20px;
  margin-bottom: 42px;
  position: relative;
}

@media only screen and (min-width: 921px) {
  .nav--header {
    padding-top: 170px;
  }
  .nav--header .search-form {
    float: right;
  }
}
/* =============================================================================
   Navigation toggle button
   ========================================================================== */
.nav-toggle {
  font-family: 'maison_neuelight', Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
}
.nav-toggle:hover .label--open {
  color: #f3887b;
}
.nav-toggle:hover .label--close {
  background-color: #fce1de;
  color: #000;
}
.nav-toggle .label {
  height: 100%;
  width: 100%;
  -webkit-transition: background-color 0.3s, color 0.3s, opacity 0.3s;
  -khtml-transition: background-color 0.3s, color 0.3s, opacity 0.3s;
  -moz-transition: background-color 0.3s, color 0.3s, opacity 0.3s;
  -ms-transition: background-color 0.3s, color 0.3s, opacity 0.3s;
  -o-transition: background-color 0.3s, color 0.3s, opacity 0.3s;
  transition: background-color 0.3s, color 0.3s, opacity 0.3s;
  left: 0;
  line-height: 49px;
  position: absolute;
  top: 0;
}
.nav-toggle .label__inner {
  border-bottom: 0.08em solid;
}
.nav-toggle .label--open {
  background-color: #fff;
  color: #000;
  opacity: 1;
  z-index: 1;
}
.nav-toggle .label--close {
  background-color: #000;
  color: #fff;
}
.nav-open .nav-toggle .label--open {
  opacity: 0;
}
@media only screen and (min-width: 361px) {
  .nav-toggle {
    width: 90px;
  }
}
@media only screen and (min-width: 641px) {
  .nav-toggle {
    left: 0;
    right: auto;
    width: 120px;
  }
  .nav-toggle .label {
    line-height: 68px;
  }
}

/* =============================================================================
   Button styles
   ========================================================================== */
.button {
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  -khtml-transition: background-color 0.3s ease, color 0.3s ease;
  -moz-transition: background-color 0.3s ease, color 0.3s ease;
  -ms-transition: background-color 0.3s ease, color 0.3s ease;
  -o-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
  background-color: transparent;
  border: 0;
  color: #000;
  display: inline-block;
  letter-spacing: .075em;
  line-height: 1;
  padding: .9em 2.2em .8em;
  text-decoration: none;
}
.button--bordered, .button--underlined, .gform_footer .button,
.gform_page_footer .button {
  border: 1px solid;
  color: #000;
}
.button--bordered:active, .button--underlined:active, .gform_footer .button:active,
.gform_page_footer .button:active, .button--bordered:focus, .button--underlined:focus, .gform_footer .button:focus,
.gform_page_footer .button:focus, .button--bordered:hover, .button--underlined:hover, .gform_footer .button:hover,
.gform_page_footer .button:hover {
  color: #f3887b;
}
.button--underlined {
  border-width: 0 0 1px;
}
.button--solid {
  background-color: #f3887b;
  color: #fff;
}
.button--solid:active, .button--solid:focus, .button--solid:hover {
  background-color: #fce1de;
  color: #000;
}
.button--brick {
  color: #f3887b;
}
.button--brick:active, .button--brick:focus, .button--brick:hover {
  color: #000;
}
.button--white {
  color: #fff;
}
.button--white:active, .button--white:focus, .button--white:hover {
  color: #000;
}
.button--large {
  font-size: 18px;
  font-size: 1.8rem;
}
.button--wide {
  padding-left: 3.6em;
  padding-right: 3.6em;
}
.button--tiny, #gform_wrapper_4 form .button, .gform_button_select_files, .search-page__search-form-wrapper .button {
  font-family: 'maison_neuebook', Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-size: 1.1rem;
  background-color: #f3887b;
  border: 0;
  border-radius: 2px;
  color: #fff;
  letter-spacing: 0;
  padding: 4px 6px;
}
.button--tiny:focus, #gform_wrapper_4 form .button:focus, .gform_button_select_files:focus, .search-page__search-form-wrapper .button:focus, .button--tiny:hover, #gform_wrapper_4 form .button:hover, .gform_button_select_files:hover, .search-page__search-form-wrapper .button:hover {
  background-color: #fce1de;
  color: #000;
}

.language-switch {
  display: flex;
  height: 50px;
  padding: 0 2rem;
  position: absolute;
  right: 70px;
}
@media only screen and (min-width: 361px) {
  .language-switch {
    right: 90px;
  }
}
@media only screen and (min-width: 641px) {
  .language-switch {
    height: 70px;
    left: 120px;
    right: auto;
  }
}
.language-switch__link {
  font-size: 1.2rem;
  margin: auto;
  padding: 1px 0;
}
@media only screen and (min-width: 641px) {
  .language-switch__link {
    position: relative;
    top: -1px;
  }
}

/* Components =============================================================== */
/* =============================================================================
   Header
   ========================================================================== */
.header {
  -webkit-transition: background-color 0.3s;
  -khtml-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -ms-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  background-color: #f3887b;
  height: 50px;
  position: fixed;
  width: 100%;
  z-index: 99;
}
.nav-open .header {
  background-color: #fff;
}

.site-description { 
  display: none;
}

.subsection {
  /*display: none;
  position: absolute;
  right: 40px;
  top: 17px;*/
  position: absolute;    
  width: 100%;
  top: 50px;
  background-color: #ebebeb;
  z-index: 30;
  display: flex;
  justify-content: flex-end;
  height: 30px;
  gap: 12px;
  padding-right: 20px;
  align-items: center;
}
.subsection .cta-button .button {
  /*float: left;
  margin-top: 2px;*/
  padding: 0;
  font-size: 1.2rem;
}

@media only screen and (min-width: 641px) {
  .header {
    height: 100px;
  }

  .subsection {
    /*display: block;*/
    width: 100%;
    position: absolute;
    top: 70px;
    background-color: #ebebeb;
    z-index: 30;
    display: flex;
    justify-content: flex-end;
    height: 30px;
    gap: 12px;
    padding-right: 20px;
    align-items: center;
  }

  .site-description {
    font-family: 'maison_neuebook', Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-size: 1.2rem;
    -webkit-transition: color 0.3s;
    -khtml-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -ms-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
    display: inline-block;
    text-align: right;
    width: 200px;
    /*margin-left: 10px;*/
    margin-left: 0;
    position: absolute;
    top: 18px;
    right: 20px;
  }
  .nav-open .site-description {
    color: #f3887b;
  }

  /*.cta-button {
    font-size: 1.2rem;    
    display: inline-block;
  }*/
}
/* =============================================================================
   Footer
   ========================================================================== */
.footer {
  font-size: 13px;
  font-size: 1.3rem;
  background-color: #f3887b;
  color: #fff;
  width: 100%;
  padding-bottom: 40px;
}
.footer ::-moz-selection {
  background-color: #000;
}
.footer ::selection {
  background-color: #000;
}
.footer__form {
  margin: 22px 0 70px;
  min-height: 109px;
  padding-right: 90px;
  position: relative;
}
.footer__form .follow-us {
  height: 27px;
  width: 27px;
  bottom: 0;
  color: #fff;
  position: absolute;
  right: 10px;
}
.footer__form .follow-us:focus, .footer__form .follow-us:hover {
  color: #fce1de;
}
.footer__form .follow-us .icon {
  height: 100%;
  width: 100%;
  position: absolute;
}
.footer__form .follow-us + .follow-us {
  right: 47px;
}
.page--dark .footer {
  background-color: #000;
}

@media only screen and (min-width: 641px) {
  .footer__form {
    margin-bottom: 0;
  }
}
/* =============================================================================
   Logo
   ========================================================================== */
.logo {
  color: #fff;
  display: inline-block;
  position: relative;
  height: 33px;
  width: 82px;
}
.logo:focus, .logo:hover {
  color: #000;
}
.logo .icon {
  height: 100%;
  width: 100%;
  left: 0;
  position: absolute;
}
.header .logo {
  height: 28px;
  left: 15px;
  position: absolute;
  top: 12px;
  width: 70px;
}
.nav-open .header .logo {
  color: #f3887b;
}
.nav-open .header .logo:focus, .nav-open .header .logo:hover {
  color: #000;
}
.footer .logo {
  margin: 28px 0 20px;
}
.page--dark .footer .logo:focus, .page--dark .footer .logo:hover {
  color: #f3887b;
}

@media only screen and (min-width: 641px) {
  .logo {
    display: inline-block;
    position: relative;
  }
  .header .logo {
    height: 33px;
    position: relative;
    top: 18px;
    width: 82px;
  }
  .footer .logo {
    margin: 40px 0;
  }
}
/* =============================================================================
   Masthead
   ========================================================================== */
.masthead {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #f9f9f9;
  color: #000;
  min-height: 280px;
  padding-bottom: 0;
  position: relative;
}
.masthead .wrapper, .masthead #gform_3 .gform_body, #gform_3 .masthead .gform_body,
.masthead #gform_3 .validation_error,
#gform_3 .masthead .validation_error, .masthead .skar_inschrijven .gform_body, .skar_inschrijven .masthead .gform_body,
.masthead .skar_inschrijven .validation_error,
.skar_inschrijven .masthead .validation_error {
  position: relative;
}
.masthead__gradient {
  height: 100%;
  width: 100%;
  background-color: transparent;
  background-repeat: repeat-x;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.42)), color-stop(100%, rgba(0, 0, 0, 0.05)));
  /* Safari 4+, Chrome 2+ */
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.05));
  /* Safari 5.1+, Chrome 10+ */
  background-image: -moz-linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.05));
  /* FF 3.6+ */
  background-image: -ms-linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.05));
  /* IE10 */
  background-image: -o-linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.05));
  /* Opera 11.10 */
  background-image: linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.05));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='rgba(0, 0, 0, 0.42)', endColorStr='rgba(0, 0, 0, 0.05)');
  left: 0;
  position: absolute;
  top: 0;
}
.masthead__gradient + .wrapper h1, #gform_3 .masthead__gradient + .gform_body h1,
#gform_3 .masthead__gradient + .validation_error h1, .skar_inschrijven .masthead__gradient + .gform_body h1,
.skar_inschrijven .masthead__gradient + .validation_error h1 {
  color: #fff;
  text-shadow: 0 0 42px rgba(0, 0, 0, 0.25);
}
.masthead__title-wrapper {
  padding-top: 40px;
  position: relative;
  z-index: 15;
}
.masthead__title-wrapper .masthead__title {
  color: #000;
  left: 0;
  position: relative;
  top: 0;
}
.masthead__title {
  color: #fff;
  left: 10px;
  margin: 0;
  position: absolute;
  right: 10px;
  top: 40px;
  overflow-wrap: normal;
}
@media only screen and (max-width: 640px) {
  .masthead__title {
    font-size: 32px;
    font-size: 3.2rem;
    word-spacing: 640px;
  }
  .page-template-template-jaarverslagen .masthead__title {
    word-spacing: normal;
  }
}
@media only screen and (min-width: 641px) {
  .masthead__title {
    right: auto;
    width: 66.6667%;
  }
}
@media only screen and (min-width: 921px) {
  .masthead__title {
    width: 40%;
  }
}
.masthead__subtitle {
  left: 2px;
  line-height: 1.5;
  margin: 40px 0;
  position: absolute;
  top: 100%;
}
.masthead__thumbnail-wrapper {
  margin-top: -30px;
}
.masthead__thumbnail {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.masthead__body p:last-child {
  margin-bottom: 70px;
}
.masthead__body a {
  color: #000;
  text-decoration: underline;
}
.masthead__body a:focus, .masthead__body a:hover {
  text-decoration: none;
}
.masthead__extra {
  font-family: 'maison_neuebold', Helvetica, Arial, sans-serif;
  margin-bottom: 40px;
}
.masthead__extra ul {
  padding: 0;
}
.masthead__extra li {
  margin-bottom: 1em;
}
.masthead__extra a {
  color: #000;
  text-decoration: underline;
}
.masthead__extra a:focus, .masthead__extra a:hover {
  text-decoration: none;
}
.masthead__image {
  margin: 1em 0;
}
.masthead--single {
  height: auto;
  margin-bottom: 70px;
  padding-bottom: 0;
}
@media only screen and (max-width: 640px) {
  .masthead--single {
    margin-bottom: 40px;
  }
  .masthead--single,
  .masthead--single .wrapper,
  .masthead--single #gform_3 .gform_body,
  #gform_3 .masthead--single .gform_body,
  .masthead--single #gform_3 .validation_error,
  #gform_3 .masthead--single .validation_error,
  .masthead--single .skar_inschrijven .gform_body,
  .skar_inschrijven .masthead--single .gform_body,
  .masthead--single .skar_inschrijven .validation_error,
  .skar_inschrijven .masthead--single .validation_error {
    padding: 0;
  }
  .masthead--single .masthead__title {
    word-spacing: normal;
  }
  .masthead--single .masthead__subtitle {
    left: 0;
    margin: 10px 0 0;
    position: relative;
  }
  .masthead--single .masthead__thumbnail-wrapper {
    margin-top: 20px;
    padding: 0;
  }
}

.page .masthead__title, .error404 .masthead__title {
  color: #000;
  left: 0;
  padding-top: 40px;
  position: relative;
  top: 0;
}
.page .masthead--has-image, .error404 .masthead--has-image,
.page .masthead--has-image .masthead__title,
.error404 .masthead--has-image .masthead__title {
  color: #fff;
}
.page .masthead--gmap, .error404 .masthead--gmap {
  min-height: 254px;
  position: relative;
}
.page .masthead--gmap .gmap-wrapper, .error404 .masthead--gmap .gmap-wrapper {
  height: 100%;
  width: 100%;
  left: 0;
  position: absolute;
  top: 0;
}

.page--thank-you .masthead,
.error404 .masthead {
  background-color: #f9c3bd;
  min-height: 0;
}
.page--thank-you .masthead__title,
.error404 .masthead__title {
  color: #fff;
  margin-bottom: 70px;
}

.page--thank-you p:first-of-type {
  margin-top: 0;
}

.error404 .masthead {
  background-color: #000;
}

@media only screen and (min-width: 641px) {
  .masthead {
    min-height: 380px;
  }
  .masthead__title-wrapper {
    padding-top: 70px;
  }
  .masthead__title {
    top: 70px;
  }
  .masthead__extra {
    margin-bottom: 0;
  }

  .page .masthead__title, .error404 .masthead__title {
    padding-top: 70px;
  }
}
/* =============================================================================
   Additional form styles
   ========================================================================== */
.input-text, input[type="text"], input[type="email"], input[type="number"], input[type="tel"], input[type="password"], input[type="url"], input[type="date"], input[type="time"], textarea, #gform_wrapper_4 form, .ginput_container_select, .gform_drop_area {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  border: none;
  border-radius: 3px;
  color: #000;
  display: block;
  padding: 0 10px;
  width: 100%;
}
.input-text::-moz-placeholder, input[type="text"]::-moz-placeholder, input[type="email"]::-moz-placeholder, input[type="number"]::-moz-placeholder, input[type="tel"]::-moz-placeholder, input[type="password"]::-moz-placeholder, input[type="url"]::-moz-placeholder, input[type="date"]::-moz-placeholder, input[type="time"]::-moz-placeholder, textarea::-moz-placeholder, #gform_wrapper_4 form::-moz-placeholder, .ginput_container_select::-moz-placeholder, .gform_drop_area::-moz-placeholder {
  color: #f3887b;
  opacity: 1;
  font-style: normal;
}
.input-text:-ms-input-placeholder, input[type="text"]:-ms-input-placeholder, input[type="email"]:-ms-input-placeholder, input[type="number"]:-ms-input-placeholder, input[type="tel"]:-ms-input-placeholder, input[type="password"]:-ms-input-placeholder, input[type="url"]:-ms-input-placeholder, input[type="date"]:-ms-input-placeholder, input[type="time"]:-ms-input-placeholder, textarea:-ms-input-placeholder, #gform_wrapper_4 form:-ms-input-placeholder, .ginput_container_select:-ms-input-placeholder, .gform_drop_area:-ms-input-placeholder {
  color: #f3887b;
  font-style: normal;
}
.input-text::-webkit-input-placeholder, input[type="text"]::-webkit-input-placeholder, input[type="email"]::-webkit-input-placeholder, input[type="number"]::-webkit-input-placeholder, input[type="tel"]::-webkit-input-placeholder, input[type="password"]::-webkit-input-placeholder, input[type="url"]::-webkit-input-placeholder, input[type="date"]::-webkit-input-placeholder, input[type="time"]::-webkit-input-placeholder, textarea::-webkit-input-placeholder, #gform_wrapper_4 form::-webkit-input-placeholder, .ginput_container_select::-webkit-input-placeholder, .gform_drop_area::-webkit-input-placeholder {
  color: #f3887b;
  font-style: normal;
}
.input-text:focus, input[type="text"]:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="tel"]:focus, input[type="password"]:focus, input[type="url"]:focus, input[type="date"]:focus, input[type="time"]:focus, textarea:focus, #gform_wrapper_4 form:focus, .ginput_container_select:focus, .gform_drop_area:focus {
  border-color: none;
  outline: 0;
}

input[type="text"], input[type="email"], input[type="number"], input[type="tel"], input[type="password"], input[type="url"], input[type="date"], input[type="time"] {
  height: 27px;
  line-height: 1;
}

textarea {
  height: 115px;
  max-height: 230px;
  min-height: 115px;
  line-height: 1.25;
  padding-top: 1rem;
  resize: vertical;
}
#gform_wrapper_2 textarea {
  height: 200px;
  max-height: 300px;
  min-height: 200px;
}

.gfield_date_day,
.gfield_date_month,
.gfield_date_year {
  display: inline-block;
  margin-right: 15px;
}
.gfield_date_day input,
.gfield_date_month input,
.gfield_date_year input {
  width: auto;
  min-width: 80px;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.gform_wrapper {
  position: relative;
}

.gform_validation_errors {
  position: absolute;
  padding: 50px 10px;
  font-size: 18px;
  color: #f3887b;
  margin: 20px 0;
  transform: translateX(-50%);
  left: 50%;
  max-width: 100%;
  width: 1080px;
}
.gform_validation_errors h2 {
  font-size: 1.8rem;
}

#gform_wrapper_4 form {
  margin-top: 20px;
  padding-left: 0;
  padding-right: 72px;
  position: relative;
}
#gform_wrapper_4 form input {
  background-color: transparent;
}
.page--dark #gform_wrapper_4 form input::-moz-placeholder {
  color: #000;
  opacity: 1;
  font-style: normal;
}
.page--dark #gform_wrapper_4 form input:-ms-input-placeholder {
  color: #000;
  font-style: normal;
}
.page--dark #gform_wrapper_4 form input::-webkit-input-placeholder {
  color: #000;
  font-style: normal;
}
#gform_wrapper_4 form .gfield {
  margin: 0;
}
#gform_wrapper_4 form .gform_footer {
  margin-top: 0;
  position: absolute;
  right: 4px;
  top: 1px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 0) {
  #gform_wrapper_4 form .gform_footer {
    top: 3px;
  }
}
#gform_wrapper_4 form .button + img {
  height: 20px;
  width: 20px;
  position: absolute;
  right: -26px;
  top: -1px;
}
#gform_wrapper_4 form .validation_error {
  display: none !important;
}
#gform_wrapper_4 form .validation_message {
  color: #000;
  left: 3px;
  margin: 0;
  position: absolute;
  top: 30px;
}

#gform_confirmation_message_4 {
  color: #000;
  margin-top: 1em;
}

#gform_3, .skar_inschrijven {
  padding-top: 50px;
  position: relative;
  overflow: hidden;
}
#gform_3 .gform_body, .skar_inschrijven .gform_body {
  padding-top: 70px;
}
#gform_3 .gform_page_footer:before, #gform_3 .gform_page_footer:after, .skar_inschrijven .gform_page_footer:before, .skar_inschrijven .gform_page_footer:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
#gform_3 .gform_page_footer:after, .skar_inschrijven .gform_page_footer:after {
  clear: both;
}
.lt-ie9 #gform_3 .gform_page_footer, .lt-ie9 .skar_inschrijven .gform_page_footer {
  zoom: 1;
}
#gform_3 .validation_error, .skar_inschrijven .validation_error {
  margin-bottom: 1.6em;
  margin-top: 70px;
}
#gform_3 .validation_error + .gform_body, .skar_inschrijven .validation_error + .gform_body {
  padding-top: 0;
}

.gf_page_steps {
  font-family: 'maison_neuebook', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-size: 1.3rem;
  background-color: #fff;
  height: 50px;
  letter-spacing: .075em;
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.gf_step {
  border-left: 2px solid #fce1de;
  height: 50px;
  line-height: 1;
  padding: 18px 10px 0;
  background-color: #fff;
}
.gf_step_active {
  font-family: 'maison_neuebold', Helvetica, Arial, sans-serif;
  background-color: #fce1de;
}
.gf_step_pending {
  color: #f9c3bd;
}
.gf_step_completed {
  color: #f3887b;
}
.gf_step:nth-child(1) {
  border-left-color: #fff;
  left: 0;
}
.gf_step:nth-child(1).gf_step_active:before {
  background-color: #fce1de;
  content: '';
  height: 50px;
  position: absolute;
  right: 100%;
  top: 0;
  width: 100vw;
}
@media only screen and (max-width: 640px) {
  .gf_step.gf_step_active .gf_step_label {
    display: inline;
  }
  .gf_step .gf_step_label {
    display: none;
  }
}

.gf_step_number {
  margin-right: 2px;
}
.gf_step_number:after {
  content: '.';
}

.gform_fields {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gfield {
  margin-bottom: 1.6em;
}

.gfield_radio, .gfield_checkbox {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.gfield_radio > li, .gfield_checkbox > li {
  display: inline-block;
}
.gfield_radio li, .gfield_checkbox li {
  margin-right: 20px;
}
.gfield_radio input, .gfield_checkbox input {
  left: -9999em;
  position: absolute;
}
.gfield_radio input:checked ~ label:before, .gfield_checkbox input:checked ~ label:before {
  border-color: #f3887b;
}
.gfield_radio input:checked ~ label:after, .gfield_checkbox input:checked ~ label:after {
  background-color: #f3887b;
}
.gfield_radio label, .gfield_checkbox label {
  font-family: 'maison_neuebook', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-size: 1.3rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  letter-spacing: .075em;
  padding-left: 20px;
  position: relative;
}
.gfield_radio label:before, .gfield_checkbox label:before, .gfield_radio label:after, .gfield_checkbox label:after {
  border-radius: 50%;
  content: '';
  position: absolute;
}
.gfield_radio label:before, .gfield_checkbox label:before {
  height: 14px;
  width: 14px;
  border: 1px solid #000;
  left: 0;
  top: 1px;
}
.gfield_radio label:after, .gfield_checkbox label:after {
  height: 8px;
  width: 8px;
  background-color: transparent;
  left: 3px;
  top: 4px;
}

.gfield_checkbox {
  list-style: none;
  margin: 0;
  padding: 0;
}
.gfield_checkbox label {
  display: inline-block;
  max-width: 88%;
}
.gfield_checkbox label:before {
  top: 3px;
}
.gfield_checkbox label:after {
  top: 6px;
}
.gfield_checkbox label a {
  color: #000;
  text-decoration: underline;
}
.gfield_checkbox label a:focus, .gfield_checkbox label a:hover {
  text-decoration: none;
}
.gfield_checkbox #label_3_27_1, .gfield_checkbox #label_31_27_1 {
  white-space: nowrap;
}

.gform_body .list li {
  display: block;
}

.ginput_container_select {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAcBAMAAADVQiH5AAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAbUExURQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJRR4iAAAAAIdFJOUwDQEPAwYEDgv0md3gAAAJRJREFUKM9t0jEOgzAUA1Crggtk6tjeoQNjJS7AyN5LsFYVko/dkBDy8x0Pf7D0pm9gfEEyL/Gsv7fvh2kHRlLITC5YSU+GidyxUUgE/OJJTw7AgNvdkwQeEHICCCnAkwt4UkFLDGiJBZY0wJIWVOJAJR4UIqCQj4BMUoJ7WiIdcJEgw8hEwUkUZNIDifTAQfogEgv+o/NgmJkoZ/4AAAAASUVORK5CYII=);
  background-position: right 10px top 10px;
  background-repeat: no-repeat;
  background-size: 12px 7px;
  max-width: 200px;
  padding: 0;
}
.ginput_container_select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 0;
  border-radius: 3px;
  height: 27px;
  padding-left: 5px;
  width: 100%;
}

.ginput_container_date:before, .ginput_container_date:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.ginput_container_date:after {
  clear: both;
}
.lt-ie9 .ginput_container_date {
  zoom: 1;
}
.ginput_container_date input::-moz-placeholder {
  color: #899195;
  opacity: 1;
  font-style: normal;
}
.ginput_container_date input:-ms-input-placeholder {
  color: #899195;
  font-style: normal;
}
.ginput_container_date input::-webkit-input-placeholder {
  color: #899195;
  font-style: normal;
}
.ginput_container_date input + label {
  display: none;
}
.ginput_container_date .ginput_container {
  float: left;
  margin-right: 14px;
  width: 4em;
}
.ginput_container_date .gfield_date_year {
  margin-right: 0;
  width: 5em;
}

.gfield_label {
  font-family: 'maison_neuebook', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-size: 1.3rem;
  display: inline-block;
  letter-spacing: .075em;
  margin-bottom: .46em;
}
.no-label .gfield_label {
  display: none;
}

.gfield_description, .gform_fileupload_multifile + .screen-reader-text,
.gform_fileupload_rules {
  font-family: 'maison_neuebook', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-size: 1.3rem;
  color: #899195;
  letter-spacing: .05em;
  position: relative;
}

.gform_footer,
.gform_page_footer {
  margin-top: 20px;
  position: relative;
  text-align: right;
}
.gform_footer img,
.gform_footer .button,
.gform_page_footer img,
.gform_page_footer .button {
  display: inline-block;
  vertical-align: middle;
}
.gform_footer .button,
.gform_page_footer .button {
  color: #f3887b;
  text-transform: lowercase;
}
.gform_footer .button:focus, .gform_footer .button:hover,
.gform_page_footer .button:focus,
.gform_page_footer .button:hover {
  color: #000;
}
.gform_footer .button + img,
.gform_page_footer .button + img {
  height: 27px;
  width: 27px;
  position: absolute;
  right: -33px;
  top: 8px;
}
#gform_wrapper_1 .gform_footer .button, #gform_wrapper_1
.gform_page_footer .button {
  width: 100%;
}

.gform_previous_button {
  float: left;
}

.gform_next_button {
  float: right;
}

.gform_drop_area {
  height: 27px;
  line-height: 1;
}

.gform_drop_instructions {
  display: none;
}

.gform_button_select_files {
  cursor: pointer;
  position: absolute;
  right: 4px;
  top: 4px;
}

.gform_fileupload_multifile + .screen-reader-text {
  font-size: 11px;
  font-size: 1.1rem;
  top: 0;
}

.gform_delete {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcBAMAAACAI8KnAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAnUExURQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAN0S+bUAAAAMdFJOUwDwMBBwsNBAgFCQoFL7lKwAAADASURBVBjTY2AAApPAM2dEnRmgwPoMGGyG8DhlzoSUl7ueOTgBzF1zphlEWZw5BaK4ziRBVKmdWQAk5xwzgHCZc04CCZlkmJFmBw0YuM8oMBiBOMoMTGc2MNicYGBOVGBgYBIzYOg5zOBzmIFJRoiBQfGgAoPNEYaYADATLMR6lEHGgQEkDZJkYDnIcKaAASQNkmRgPwPhMsmAJHFxEYrRjEKzCM0ZaI5E8wKaB9G8jx44aEEHCVh1eMCiBTtypAAALXZX4ZASuF8AAAAASUVORK5CYII=);
  background-size: cover;
  cursor: pointer;
  height: 14px;
  margin-right: 2px;
  overflow: hidden;
  padding-left: 14px;
  position: relative;
  top: -3px;
  width: 0;
}
.gform_delete + strong {
  font-size: 13px;
  font-size: 1.3rem;
}
@media only screen and (-webkit-min-device-pixel-ratio: 0) {
  .gform_delete {
    top: -1px;
  }
}

.ginput_container_fileupload .validation_message ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin: 1em 0;
}
#field_3_14 .ginput_container_fileupload .validation_message ul, #field_31_14 .ginput_container_fileupload .validation_message ul {
  display: none;
}

.gform_save_link {
  font-family: 'maison_neuebook', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-size: 1.3rem;
  clear: both;
  color: #000;
  float: right;
  letter-spacing: .075em;
  margin-top: 1.6em;
  text-decoration: underline;
}
.gform_save_link:focus, .gform_save_link:hover {
  text-decoration: none;
}

#input_3_24.ginput_container_date,
#input_3_25.ginput_container_date,
#input_31_24.ginput_container_date,
#input_31_25.ginput_container_date {
  padding-left: 40px;
  position: relative;
}
#input_3_24.ginput_container_date:before,
#input_3_25.ginput_container_date:before,
#input_31_24.ginput_container_date:before,
#input_31_25.ginput_container_date:before {
  color: #899195;
  height: 27px;
  left: 0;
  letter-spacing: .075em;
  position: absolute;
  top: 1px;
}

#input_3_24.ginput_container_date:before,
#input_31_24.ginput_container_date:before {
  content: 'van';
}

#input_3_25.ginput_container_date:before,
#input_31_25.ginput_container_date:before {
  content: 'tot';
}

.validation_error,
.validation_message,
.gform_confirmation_message {
  color: #e01010;
}

.validation_error,
.gform_confirmation_message {
  position: relative;
}

.validation_message {
  font-family: 'maison_neuebook', Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-size: 1.1rem;
  letter-spacing: .05em;
  margin-top: 6px;
}

.validation_error {
  margin-bottom: 1.6em;
}

.gform_validation_container {
  display: none;
}

@media only screen and (min-width: 641px) {
  .input-text, input[type="text"], input[type="email"], input[type="number"], input[type="tel"], input[type="password"], input[type="url"], input[type="date"], input[type="time"], textarea, #gform_wrapper_4 form, .ginput_container_select, .gform_drop_area {
    font-size: 13px;
    font-size: 1.3rem;
  }

  .skar_inschrijven .gfield,
  .skar_inschrijven .gform_page_footer {
    max-width: 66.6667%;
  }

  #input_3_24.ginput_container_date,
  #input_3_25.ginput_container_date,
  #input_31_24.ginput_container_date,
  #input_31_25.ginput_container_date {
    padding-left: 80px;
  }

  .gf_name_has_2 span {
    width: 50%;
    float: left;
  }
  .gf_name_has_2 span:first-child {
    padding-right: 20px;
  }
}
@media only screen and (min-width: 921px) {
  .skar_inschrijven .gfield,
  .skar_inschrijven .gform_page_footer {
    max-width: 50%;
  }
}
@media only screen and (min-width: 1081px) {
  .gf_page_steps {
    -webkit-transform: translateX(-50%);
    -khtml-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    left: 50%;
    max-width: 100%;
    width: 1080px;
  }

  .gf_step {
    left: 0;
  }
  .gf_step:nth-child(1) {
    border-left-color: #fff;
    left: 0;
  }
  .gf_step:nth-child(1).gf_step_completed:before {
    background-color: #fff;
    content: '';
    height: 50px;
    position: absolute;
    right: 100%;
    top: 0;
    width: 100vw;
  }
  .gf_step:nth-child(3):after {
    background-color: #fff;
    content: '';
    height: 50px;
    left: 100%;
    position: absolute;
    top: 0;
    width: 100vw;
  }
  .gf_step:nth-child(3).gf_step_active:after {
    background-color: #fce1de;
  }
}
.booked-shortcode,
.booked-calendar-shortcode-wrap {
  margin: 20px 0;
}
.booked-shortcode .appt-block,
.booked-calendar-shortcode-wrap .appt-block {
  font-size: 1.4rem !important;
}
.booked-shortcode .monthName,
.booked-calendar-shortcode-wrap .monthName {
  font-size: 1.8rem !important;
}
.booked-shortcode .days th,
.booked-calendar-shortcode-wrap .days th {
  font-size: 1.4rem !important;
}
.booked-shortcode .booked-appt-list .timeslot .timeslot-title,
.booked-calendar-shortcode-wrap .booked-appt-list .timeslot .timeslot-title {
  color: #f3887b !important;
}
.booked-shortcode .google-cal-button,
.booked-shortcode .cancel,
.booked-calendar-shortcode-wrap .google-cal-button,
.booked-calendar-shortcode-wrap .cancel {
  font-size: 1.4rem !important;
  line-height: 1.3 !important;
}
.booked-shortcode .spots-available,
.booked-calendar-shortcode-wrap .spots-available {
  font-size: 1.2rem !important;
  line-height: 1.5 !important;
}
.booked-shortcode .addeventatc,
.booked-shortcode .cancel,
.booked-calendar-shortcode-wrap .addeventatc,
.booked-calendar-shortcode-wrap .cancel {
  border-radius: 0 !important;
  border-color: #fce1de !important;
}
.booked-shortcode body table.booked-calendar thead th .page-right,
.booked-shortcode body table.booked-calendar thead th .page-left,
.booked-calendar-shortcode-wrap body table.booked-calendar thead th .page-right,
.booked-calendar-shortcode-wrap body table.booked-calendar thead th .page-left {
  color: #f3887b !important;
}

body table.booked-calendar td.today .date span {
  border: 2px solid #f9c3bd !important;
}

/* =============================================================================
   Custom styling html select option
   ========================================================================== */
.custom-select {
  position: relative;
}
.custom-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  position: relative;
  width: 100%;
  z-index: 10;
}
.custom-select select:focus {
  outline: 0;
}
.custom-select select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
.custom-select.disabled-select {
  background-color: #f7f7f7;
}
.custom-select.disabled-select select {
  cursor: default;
}

/* =============================================================================
   Tags
   ========================================================================== */
.tags__item, .magazine-categories__item, .aanbod-categories__item {
  display: inline-block;
  margin: 0 4px 4px 0;
}
.tags__link, .magazine-categories__link, .aanbod-categories__link {
  font-family: 'maison_neuebook', Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  -webkit-transition: background-color 0.3s, color 0.3s;
  -khtml-transition: background-color 0.3s, color 0.3s;
  -moz-transition: background-color 0.3s, color 0.3s;
  -ms-transition: background-color 0.3s, color 0.3s;
  -o-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  background-color: #ebebeb;
  color: #899195;
  display: block;
  letter-spacing: .075em;
  line-height: 1;
  padding: .4em;
}
.tags__link:focus, .magazine-categories__link:focus, .aanbod-categories__link:focus, .tags__link:hover, .magazine-categories__link:hover, .aanbod-categories__link:hover, .tags__link--active {
  background-color: #f3887b;
  color: #fff;
}

/* =============================================================================
   Call to action blocks
   ========================================================================== */
.call-to-action {
  font-family: 'maison_neuebook', Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: .05em;
  padding: 0;
}
.call-to-action p {
  margin-bottom: 1.8em;
  margin-top: 0;
}
.call-to-action a:not(.button) {
  color: #f3887b;
  text-decoration: underline;
}
.call-to-action a:not(.button):focus, .call-to-action a:not(.button):hover {
  color: #000;
}
.call-to-action + .call-to-action .call-to-action__inner {
  border-color: #f3887b;
  border-style: solid;
  border-width: 1px 0 0;
}
.call-to-action__inner {
  display: inline-block;
  max-width: 90%;
  padding: 46px 20px;
}
.row .call-to-action--locations {
  display: inline-block;
  float: none;
}

@media only screen and (min-width: 641px) {
  .call-to-action {
    padding: 65px 0;
  }
  .call-to-action__inner {
    max-width: 100%;
    padding: 0 30px;
  }
  .call-to-action + .call-to-action .call-to-action__inner {
    border-width: 0 0 0 1px;
  }
}
/* =============================================================================
   Magazine
   ========================================================================== */
.magazine-wrapper {
  overflow-x: hidden;
  overflow-y: visible;
  padding-bottom: 90px;
  padding-top: 68px;
  position: relative;
}
.magazine-wrapper__subtitle {
  height: 0;
  margin: 0;
  position: relative;
  top: -2em;
}
.magazine-wrapper .wrapper, .magazine-wrapper #gform_3 .gform_body, #gform_3 .magazine-wrapper .gform_body,
.magazine-wrapper #gform_3 .validation_error,
#gform_3 .magazine-wrapper .validation_error, .magazine-wrapper .skar_inschrijven .gform_body, .skar_inschrijven .magazine-wrapper .gform_body,
.magazine-wrapper .skar_inschrijven .validation_error,
.skar_inschrijven .magazine-wrapper .validation_error {
  position: relative;
}
.magazine-wrapper .h1 {
  margin-top: 0;
}

.magazine-categories {
  margin-bottom: 2em;
}
.magazine-categories__link {
  -webkit-transition: width 0.3s;
  -khtml-transition: width 0.3s;
  -moz-transition: width 0.3s;
  -ms-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
  background-color: #f9f9f9;
}
.magazine-categories__link--active {
  background-color: #f3887b;
  color: #fff;
}
.magazine-categories__link .icon-close {
  display: none;
  font-size: 72%;
  margin-left: 10px;
  position: relative;
  right: 2px;
  top: 1px;
}
.magazine-categories .magazine-categories__link--active .icon-close {
  display: inline-block;
}

.magazine-articles {
  margin-bottom: 48px;
}

.related-title {
  padding: 0 10px;
  text-transform: none;
}

/* =============================================================================
   Tease
   ========================================================================== */
.post {
  display: none;
  flex: none;
}
.post__link {
  color: #000;
  display: block;
}
.post__link:focus, .post__link:hover {
  color: #f3887b;
}
.post__link:focus .post__thumbnail, .post__link:hover .post__thumbnail {
  background-color: #f3887b;
}
.post__link:focus .post__thumbnail--video:before, .post__link:hover .post__thumbnail--video:before {
  border-color: #fff;
}
.post__thumbnail-wrapper {
  background-color: rgba(243, 136, 123, 0.3);
  position: relative;
  width: 100%;
}
.post__thumbnail {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  -webkit-transition: background-color 0.3s ease, opacity 0.6s ease;
  -khtml-transition: background-color 0.3s ease, opacity 0.6s ease;
  -moz-transition: background-color 0.3s ease, opacity 0.6s ease;
  -ms-transition: background-color 0.3s ease, opacity 0.6s ease;
  -o-transition: background-color 0.3s ease, opacity 0.6s ease;
  transition: background-color 0.3s ease, opacity 0.6s ease;
  background-blend-mode: screen;
  background-color: transparent;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
}
.post__thumbnail--video:focus:before, .post__thumbnail--video:hover:before {
  border-color: #fff;
}
.post__thumbnail--video:before, .post__thumbnail--video:after {
  content: '';
  left: 50%;
  position: absolute;
  top: 50%;
}
.post__thumbnail--video:before {
  height: 50px;
  width: 50px;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: border-color 0.3s ease;
  -khtml-transition: border-color 0.3s ease;
  -moz-transition: border-color 0.3s ease;
  -ms-transition: border-color 0.3s ease;
  -o-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  border: 6px solid #f3887b;
  border-radius: 50%;
}
.post__thumbnail--video:after {
  height: 0;
  width: 0;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
  border-width: 12px 20px;
  height: 0;
  margin: -12px 0 0 -8px;
  width: 0;
}
.post__thumbnail--loaded {
  opacity: 1;
}
.post__title {
  line-height: 1.2;
  margin: 0;
  padding: 15px 0 5px 0;
}
.post--nieuwsbrief .post__title {
  padding: 0 0 15px 0;
}
.post--aanbod .post__title {
  min-height: 56px;
}
.post__meta {
  font-family: 'maison_neuelight', Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  color: #f3887b;
  line-height: 1.4;
  padding-bottom: 15px;
  margin: 0;
}
.post--nieuwsbrief .post__meta {
  padding-bottom: 5px;
  padding-top: 10px;
}
.post__body {
  font-size: 15px;
  font-size: 1.5rem;
  margin: 0;
  padding: 0;
}
.post__read-more {
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: .075em;
  text-decoration: underline;
  text-transform: uppercase;
}
.post--visible {
  display: block;
}
.post--magazine {
  margin-bottom: 42px;
}
.post--nieuwsbrief {
  margin-bottom: 30px;
}
.post--aanbod {
  margin-bottom: 30px;
}

@media only screen and (max-width: 480px) {
  .post--magazine, .post--nieuwsbrief, .post--aanbod {
    width: 100% !important;
  }
  .home .post--magazine:nth-child(1n+5), .home .post--nieuwsbrief:nth-child(1n+5), .home .post--aanbod:nth-child(1n+5) {
    display: none;
  }
}
/* =============================================================================
   Article
   ========================================================================== */
.article__content {
  margin-bottom: 40px;
}
@media only screen and (min-width: 641px) {
  .article__content {
    margin-bottom: 70px;
  }
}
.article__content p:first-child {
  margin-top: 0;
}
.article__content p:last-child {
  margin-bottom: 0;
}
.article__content--cms:first-of-type p:first-child {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.45;
  margin-bottom: 40px;
  margin-top: 0;
}
@media only screen and (min-width: 641px) {
  .article__content--cms:first-of-type p:first-child {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.article__content--cms:first-of-type p:last-child {
  margin-bottom: 0;
}
.article__content--quote {
  font-family: 'maison_neuebold', Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.5;
}
@media only screen and (min-width: 641px) {
  .article__content--quote {
    font-size: 28px;
    font-size: 2.8rem;
  }
}
.article__content--carousel {
  padding: 0;
}
.article__content--carousel .responsive-media {
  overflow: visible;
}
@media only screen and (min-width: 641px) {
  .article__content--carousel {
    padding-left: 8.33333%;
    padding-right: 8.33333%;
  }
}
.article__content--video .responsive-media {
  background-color: #000;
}
.article__content--renters .h1 {
  margin-bottom: 40px;
  margin-top: 30px;
}
@media only screen and (min-width: 641px) {
  .article__content--renters .h1 {
    margin-bottom: 100px;
  }
}
.article__video-placeholder {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: background-color 0.3s ease;
  -khtml-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  -ms-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  background-blend-mode: screen;
  background-color: transparent;
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.article__video-placeholder:focus:before, .article__video-placeholder:hover:before {
  border-color: #fff;
}
.article__video-placeholder:before, .article__video-placeholder:after {
  content: '';
  left: 50%;
  position: absolute;
  top: 50%;
}
.article__video-placeholder:before {
  height: 87px;
  width: 87px;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: border-color 0.3s ease;
  -khtml-transition: border-color 0.3s ease;
  -moz-transition: border-color 0.3s ease;
  -ms-transition: border-color 0.3s ease;
  -o-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  border: 12px solid #f3887b;
  border-radius: 50%;
}
.article__video-placeholder:after {
  height: 0;
  width: 0;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
  border-width: 21px 35px;
  height: 0;
  margin: -20px 0 0 -14px;
  width: 0;
}
.article__video-placeholder:focus, .article__video-placeholder:hover {
  background-color: #f3887b;
}
.article__video-placeholder--hidden {
  -webkit-transition: opacity 0.25s ease, visibility 0s linear 0.25s;
  -khtml-transition: opacity 0.25s ease, visibility 0s linear 0.25s;
  -moz-transition: opacity 0.25s ease, visibility 0s linear 0.25s;
  -ms-transition: opacity 0.25s ease, visibility 0s linear 0.25s;
  -o-transition: opacity 0.25s ease, visibility 0s linear 0.25s;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
  opacity: 0;
  visibility: hidden;
}
.article__sidebar {
  font-family: 'maison_neuebook', Helvetica, Arial, sans-serif;
  line-height: 2;
}
.article__sidebar li {
  margin-bottom: 2em;
}
.article__footer {
  margin-bottom: 50px;
}
.article__footer .article__sidebar {
  margin-bottom: 20px;
}
.article__footer .article__sidebar h6, .article__footer .article__sidebar li {
  line-height: 1.6;
  margin-bottom: 0;
}
.article__footer .article__sidebar a:focus, .article__footer .article__sidebar a:hover {
  color: inherit;
  text-decoration: underline;
}
.article__archive-link {
  display: inline-block;
  position: relative;
}
.single-magazine .article__archive-link {
  margin-bottom: 40px;
  top: -15px;
}
.single-locatie .article__archive-link {
  margin-top: 40px;
}
.article__tags {
  margin-bottom: 20px;
}

/* =============================================================================
   Google Map
   ========================================================================== */
.post-type-archive-locatie {
  background-color: #f3887b;
}

.gmap-wrapper {
  height: 400px;
  position: relative;
  width: 100%;
}
.gmap-wrapper .wrapper, .gmap-wrapper #gform_3 .gform_body, #gform_3 .gmap-wrapper .gform_body,
.gmap-wrapper #gform_3 .validation_error,
#gform_3 .gmap-wrapper .validation_error, .gmap-wrapper .skar_inschrijven .gform_body, .skar_inschrijven .gmap-wrapper .gform_body,
.gmap-wrapper .skar_inschrijven .validation_error,
.skar_inschrijven .gmap-wrapper .validation_error {
  position: relative;
}
.gmap-wrapper__title {
  left: 10px;
  margin: 0;
  position: absolute;
  top: 55px;
  z-index: 1;
}
.gmap-wrapper__title a {
  color: #000;
}
.gmap-wrapper__title a:focus, .gmap-wrapper__title a:hover {
  color: #f3887b;
}
.gmap-wrapper--archive {
  height: 100%;
  height: 60vh;
  min-height: 500px;
  overflow: hidden;
}
@media only screen and (max-width: 480px) {
  .gmap-wrapper--archive {
    min-height: 460px;
  }
}
.gmap-wrapper--archive .gmap-wrapper__title {
  top: 70px;
}
@media only screen and (max-width: 640px) {
  .home .gmap-wrapper {
    height: 280px;
  }
}

#gmap {
  height: 100%;
  width: 100%;
  left: 0;
  position: absolute;
}

/**
 * Snazzy Maps Infowindow
 * serves as layer on top of Gmaps infowindow
 */
.si-shadow-wrapper-top {
  display: none;
}

.si-frame {
  border-radius: 0;
}

.si-content-wrapper {
  background-color: transparent;
  padding: 0;
}

.si-wrapper--langdurig-beheer .si-pointer-bg-top {
  border-top-color: #f3887b;
}
.si-wrapper--tijdelijk-beheer .si-pointer-bg-top {
  border-top-color: #fff;
}
.si-wrapper--in-ontwikkeling .si-pointer-bg-top {
  border-top-color: #000;
}

.si-close-button {
  font-size: 20px;
  opacity: 1;
  z-index: 10;
}
.si-wrapper--langdurig-beheer .si-close-button {
  color: #fff;
}
.si-wrapper--tijdelijk-beheer .si-close-button {
  color: #000;
}
.si-wrapper--in-ontwikkeling .si-close-button {
  color: #fff;
}

/**
 * Gmaps default infowindow
 */
.info-window {
  color: #fff;
  padding: 1em 2em 1.4em 1.4em;
  position: relative;
  width: 100%;
}
.info-window h5, .info-window h6, .info-window a {
  font-family: 'maison_neuebook', Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.7;
  text-transform: none;
}
.info-window h5 {
  font-family: 'maison_neuebold', Helvetica, Arial, sans-serif;
  margin: 0;
}
.info-window h6 {
  margin-bottom: 1em;
  margin-top: 0;
}
.info-window a {
  color: inherit;
  text-decoration: underline;
}
.info-window a:focus, .info-window a:hover {
  color: inherit;
  text-decoration: none;
}
.info-window--langdurig-beheer {
  background-color: #f3887b;
}
.info-window--tijdelijk-beheer {
  background-color: #fff;
  color: #000;
}
.info-window--in-ontwikkeling {
  background-color: #000;
}

/* =============================================================================
   GMap locations list
   ========================================================================== */
.locations,
.filter {
  background-color: #fff;
  position: absolute;
  z-index: 66;
}

.locations {
  -webkit-transform: translateX(30px);
  -khtml-transform: translateX(30px);
  -moz-transform: translateX(30px);
  -ms-transform: translateX(30px);
  -o-transform: translateX(30px);
  transform: translateX(30px);
  -webkit-transition: transform 0.3s;
  -khtml-transition: transform 0.3s;
  -moz-transition: transform 0.3s;
  -ms-transition: transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  height: 100%;
  right: 30px;
  top: 0;
  width: 280px;
}
.locations::before {
  background-color: transparent;
  background-repeat: repeat-x;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, rgba(255, 255, 255, 0.25)));
  /* Safari 4+, Chrome 2+ */
  background-image: -webkit-linear-gradient(#fff, rgba(255, 255, 255, 0.25));
  /* Safari 5.1+, Chrome 10+ */
  background-image: -moz-linear-gradient(#fff, rgba(255, 255, 255, 0.25));
  /* FF 3.6+ */
  background-image: -ms-linear-gradient(#fff, rgba(255, 255, 255, 0.25));
  /* IE10 */
  background-image: -o-linear-gradient(#fff, rgba(255, 255, 255, 0.25));
  /* Opera 11.10 */
  background-image: linear-gradient(#fff, rgba(255, 255, 255, 0.25));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#fff', endColorStr='rgba(255, 255, 255, 0.25)');
  content: '';
  height: 70px;
  left: 0;
  position: absolute;
  right: 15px;
  top: 0;
  z-index: 1;
}
@media only screen and (max-width: 480px) {
  .locations {
    -webkit-transform: translateX(0);
    -khtml-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    right: 0;
    z-index: 70;
  }
  .locations-hidden .locations {
    z-index: 45;
  }
}
.locations__inner {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 70px 0 70px 30px;
  position: absolute;
  width: 100%;
}
.locations__list {
  font-family: 'maison_neuebook', Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.55;
}
.locations__item {
  margin-bottom: .15em;
}
.locations__link, .locations .show-all, .filter__link {
  color: #000;
  letter-spacing: .05em;
}
.locations__link:focus, .locations .show-all:focus, .filter__link:focus, .locations__link:hover, .locations .show-all:hover, .filter__link:hover, .locations__link--active {
  color: #f3887b;
}
.locations__link--active {
  font-family: 'maison_neuebold', Helvetica, Arial, sans-serif;
}
.locations__link.disabled, .locations .disabled.show-all, .disabled.filter__link {
  font-family: 'maison_neuelight', Helvetica, Arial, sans-serif;
  color: #a7adb0;
  cursor: default;
}
.locations__invisible-toggle {
  display: none;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 30px;
}
.locations-hidden .locations {
  -webkit-transform: translateX(100%);
  -khtml-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}
.locations-hidden .locations .locations__invisible-toggle {
  display: block;
}

.filter {
  -webkit-transform: translateX(0);
  -khtml-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: all 0.3s;
  -khtml-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  left: 0;
  padding: 20px;
  text-transform: lowercase;
  top: 210px;
}
@media only screen and (min-width: 1081px) {
  .filter {
    left: 50%;
    margin-left: -540px;
  }
}
.filter__link {
  font-size: 15px;
  font-size: 1.5rem;
  padding-left: 30px;
  position: relative;
  white-space: nowrap;
}
.filter__link:before {
  height: 10px;
  width: 10px;
  background-color: #000;
  border-radius: 50%;
  content: '';
  left: 6px;
  margin-top: -4px;
  position: absolute;
  top: 50%;
}
.filter__link--active {
  color: #f3887b;
}
.filter__link--langdurig-beheer:before {
  background-color: #f3887b;
}
.filter__link--tijdelijk-beheer:before {
  background-color: #fff;
  border: 1px solid #000;
}
.filter-hidden .filter {
  -webkit-transform: translateX(-100%);
  -khtml-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  left: 0;
  margin-left: 0;
}

#show-all {
  display: inline-block;
  margin-top: .8em;
}
#show-all:before {
  display: none;
}

/* =============================================================================
   GMap locations list toggle
   ========================================================================== */
.locations-toggle {
  position: absolute;
  top: 30px;
  z-index: 69;
}
.locations-toggle__label {
  -webkit-transition: color 0.3s, opacity 0.3s, transform 0.3s;
  -khtml-transition: color 0.3s, opacity 0.3s, transform 0.3s;
  -moz-transition: color 0.3s, opacity 0.3s, transform 0.3s;
  -ms-transition: color 0.3s, opacity 0.3s, transform 0.3s;
  -o-transition: color 0.3s, opacity 0.3s, transform 0.3s;
  transition: color 0.3s, opacity 0.3s, transform 0.3s;
  left: 0;
  position: absolute;
  top: 0;
  white-space: nowrap;
}
.locations-toggle__label--show {
  color: #f3887b;
  opacity: 0;
  z-index: 0;
}
.locations-toggle__label--show:focus, .locations-toggle__label--show:hover {
  color: #000;
}
.locations-toggle__label--hide {
  font-family: 'maison_neuelight', Helvetica, Arial, sans-serif;
  color: #000;
  opacity: 1;
  z-index: 1;
}
.locations-toggle__label--hide:focus, .locations-toggle__label--hide:hover {
  color: #f3887b;
}
@media only screen and (max-width: 480px) {
  .locations-toggle__label-inner {
    display: none;
  }
}
.locations-toggle--list {
  -webkit-transform: translateX(100%);
  -khtml-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  right: 250px;
}
@media only screen and (max-width: 640px) {
  .locations-toggle--list {
    z-index: 71;
  }
  .locations-hidden .locations-toggle--list {
    right: 160px;
    z-index: 45;
  }
}
@media only screen and (max-width: 480px) {
  .locations-hidden .locations-toggle--list {
    right: 70px;
  }
}
.locations-toggle--list .locations-toggle__label--show {
  -webkit-transform: translateX(50%);
  -khtml-transform: translateX(50%);
  -moz-transform: translateX(50%);
  -ms-transform: translateX(50%);
  -o-transform: translateX(50%);
  transform: translateX(50%);
}
.locations-toggle--filter {
  left: 10px;
}
.locations-toggle--filter .locations-toggle__label--show {
  -webkit-transform: translateX(-50%);
  -khtml-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.filter-hidden .locations-toggle--filter .locations-toggle__label--show {
  -webkit-transform: translateX(0);
  -khtml-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  z-index: 1;
}
.filter-hidden .locations-toggle--filter .locations-toggle__label--hide {
  -webkit-transform: translateX(50%);
  -khtml-transform: translateX(50%);
  -moz-transform: translateX(50%);
  -ms-transform: translateX(50%);
  -o-transform: translateX(50%);
  transform: translateX(50%);
  opacity: 0;
  z-index: 0;
}

.locations-hidden .locations-toggle--list .locations-toggle__label--show {
  -webkit-transform: translateX(0);
  -khtml-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  z-index: 1;
}
.locations-hidden .locations-toggle--list .locations-toggle__label--hide {
  -webkit-transform: translateX(-50%);
  -khtml-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  z-index: 0;
}

/* =============================================================================
   Location detail
   ========================================================================== */
.location-detail {
  -webkit-transition: background-color 0.35s, color 0.35s, height 0.5s ease, padding 0.5s ease;
  -khtml-transition: background-color 0.35s, color 0.35s, height 0.5s ease, padding 0.5s ease;
  -moz-transition: background-color 0.35s, color 0.35s, height 0.5s ease, padding 0.5s ease;
  -ms-transition: background-color 0.35s, color 0.35s, height 0.5s ease, padding 0.5s ease;
  -o-transition: background-color 0.35s, color 0.35s, height 0.5s ease, padding 0.5s ease;
  transition: background-color 0.35s, color 0.35s, height 0.5s ease, padding 0.5s ease;
  height: 0;
  overflow: hidden;
  padding-bottom: 0;
  position: relative;
}
.location-detail a {
  color: inherit;
  text-decoration: underline;
}
.location-detail a:focus, .location-detail a:hover {
  text-decoration: none;
}
.location-detail .wrapper, .location-detail #gform_3 .gform_body, #gform_3 .location-detail .gform_body,
.location-detail #gform_3 .validation_error,
#gform_3 .location-detail .validation_error, .location-detail .skar_inschrijven .gform_body, .skar_inschrijven .location-detail .gform_body,
.location-detail .skar_inschrijven .validation_error,
.skar_inschrijven .location-detail .validation_error {
  position: relative;
  z-index: 1;
}
.location-detail__info {
  min-height: 380px;
  padding: 70px 0;
}
.location-detail__info h2 {
  font-family: 'maison_neuebook', Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-size: 2rem;
  margin: 0;
  text-transform: none;
}
.location-detail__info h3 {
  font-family: 'maison_neuelight', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-size: 1.3rem;
}
.location-detail__info p {
  margin: 2em 0;
}
@media only screen and (min-width: 641px) {
  .location-detail__info {
    padding-right: 90px;
  }
}
.location-detail__image-row, .location-detail__image {
  height: 100%;
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
@media only screen and (max-width: 640px) {
  .location-detail__image-row {
    bottom: 0;
    height: 300px;
    top: auto;
  }
}
.location-detail__image {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}
@media only screen and (min-width: 641px) {
  .location-detail__image {
    width: 50%;
  }
}
.location-detail--visible {
  height: auto;
}
@media only screen and (max-width: 640px) {
  .location-detail--visible {
    padding-bottom: 300px;
  }
}
.location-detail--langdurig-beheer {
  background-color: #f3887b;
  box-shadow: -30px -10px 40px -30px rgba(0, 0, 0, 0.35) inset;
}
.location-detail--tijdelijk-beheer {
  background-color: #fff;
}
.location-detail--in-ontwikkeling {
  background-color: #000;
}
.location-detail--langdurig-beheer, .location-detail--in-ontwikkeling {
  color: #fff;
}
.location-detail--tijdelijk-beheer {
  color: #000;
}

/* =============================================================================
   Renters
   ========================================================================== */
.renters__list {
  font-size: 11px;
  font-size: 1.1rem;
  letter-spacing: .05em;
}
.renters__link {
  color: #000;
}
.renters__link:focus, .renters__link:hover, .renters__link--active {
  color: #f3887b;
}
.renters__link--active {
  font-family: 'maison_neuebold', Helvetica, Arial, sans-serif;
}

.renter__title {
  margin-top: 0;
  text-transform: none;
}
@media only screen and (max-width: 640px) {
  .renter__body {
    margin: 40px 0;
  }
}
.renter__aside {
  font-size: 11px;
  font-size: 1.1rem;
  letter-spacing: .05em;
}
.renter__aside h6 {
  text-transform: none;
}
.renter__aside li {
  margin-bottom: 1.6em;
}
.renter__list {
  padding-bottom: 70px;
}
.renter__list-item {
  margin-bottom: 20px;
}
.renter__list-item h3 {
  margin-bottom: 0;
}

/* =============================================================================
   Search
   ========================================================================== */
.form--search {
  -webkit-transition: opacity 0.3s, visibility 0s;
  -khtml-transition: opacity 0.3s, visibility 0s;
  -moz-transition: opacity 0.3s, visibility 0s;
  -ms-transition: opacity 0.3s, visibility 0s;
  -o-transition: opacity 0.3s, visibility 0s;
  transition: opacity 0.3s, visibility 0s;
  color: #f3887b;
  opacity: 1;
  visibility: visible;
}
.form--search input {
  background-color: transparent;
  color: #f3887b;
  padding: 0 8px;
}
.nav--header .form--search input {
  color: #fff;
}
.form--search .button {
  font-size: 13px;
  font-size: 1.3rem;
  -webkit-transition: background-color 0.3s, color 0.3s;
  -khtml-transition: background-color 0.3s, color 0.3s;
  -moz-transition: background-color 0.3s, color 0.3s;
  -ms-transition: background-color 0.3s, color 0.3s;
  -o-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  background-color: transparent;
  border-radius: 0;
  color: #f3887b;
  left: 0;
  padding: 4px 0;
  position: absolute;
  top: -2px;
  width: 102px;
}
.form--search .button:focus, .form--search .button:hover {
  background-color: transparent;
  color: #000;
}
.nav--header .form--search .button {
  color: #fff;
}
.nav--header .form--search .button:focus, .nav--header .form--search .button:hover {
  color: #000;
}

.search-form-wrapper, .search-page__search-form-wrapper {
  -webkit-transition: padding 0.3s, width 0.3s;
  -khtml-transition: padding 0.3s, width 0.3s;
  -moz-transition: padding 0.3s, width 0.3s;
  -ms-transition: padding 0.3s, width 0.3s;
  -o-transition: padding 0.3s, width 0.3s;
  transition: padding 0.3s, width 0.3s;
  padding-left: 102px;
  padding-right: 20px;
  position: absolute;
  right: 10px;
  top: 0;
}
.search-form-wrapper.closed .form--search, .closed.search-page__search-form-wrapper .form--search {
  -webkit-transition: opacity 0.3s, visibility 0s linear 0.3s;
  -khtml-transition: opacity 0.3s, visibility 0s linear 0.3s;
  -moz-transition: opacity 0.3s, visibility 0s linear 0.3s;
  -ms-transition: opacity 0.3s, visibility 0s linear 0.3s;
  -o-transition: opacity 0.3s, visibility 0s linear 0.3s;
  transition: opacity 0.3s, visibility 0s linear 0.3s;
  opacity: 0;
  visibility: hidden;
}
.search-form-wrapper.closed .search-form-toggle .icon-search, .closed.search-page__search-form-wrapper .search-form-toggle .icon-search {
  opacity: 1;
}
.search-form-wrapper.closed .search-form-toggle .icon-close, .closed.search-page__search-form-wrapper .search-form-toggle .icon-close {
  opacity: 0;
}
.row .search-form-wrapper.closed, .row .closed.search-page__search-form-wrapper {
  padding: 0;
  width: 0;
}
.nav--header .search-form-wrapper, .nav--header .search-page__search-form-wrapper {
  width: calc(100% - 20px);
}

.search-form-toggle {
  height: 18px;
  width: 18px;
  -webkit-transition: color 0.3s, opacity 0.3s;
  -khtml-transition: color 0.3s, opacity 0.3s;
  -moz-transition: color 0.3s, opacity 0.3s;
  -ms-transition: color 0.3s, opacity 0.3s;
  -o-transition: color 0.3s, opacity 0.3s;
  transition: color 0.3s, opacity 0.3s;
  color: #f3887b;
  position: absolute;
  right: 0;
  top: 0;
}
.search-form-toggle:focus, .search-form-toggle:hover {
  color: #000;
}
.search-form-toggle .icon {
  height: 100%;
  width: 100%;
  -webkit-transition: opacity 0.3s;
  -khtml-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  position: absolute;
}
.search-form-toggle .icon-search {
  height: 20px;
  opacity: 0;
}
.search-form-toggle .icon-close {
  opacity: 1;
}
.nav--header .search-form-toggle {
  color: #fff;
}
.nav--header .search-form-toggle:focus, .nav--header .search-form-toggle:hover {
  color: #000;
}

.search-page__title {
  margin-bottom: 70px;
  margin-top: 10px;
}
.search-page__title--no-results {
  margin-top: 60px;
}
.search-page__subtitle {
  line-height: 1.5;
  margin: 70px 0 0;
}
.search-page__item {
  margin-bottom: 50px;
}
.search-page__search-form-wrapper {
  background-color: #fff;
  border-radius: 3px;
  height: 27px;
  padding: 6px 0;
  position: relative;
}
.search-page__search-form-wrapper .button {
  background-color: #f3887b;
  border-radius: 2px;
  color: #fff;
  font-size: 11px;
  left: auto;
  padding: 4px 6px;
  right: 4px;
  top: 4px;
  width: auto;
}

/* =============================================================================
   Owl carousel
   ========================================================================== */
.slider .slide {
  height: 100%;
  padding: 0 10px;
}
.slider .slide__inner {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 400px 400px -280px rgba(255, 255, 255, 0.5) inset;
  width: 100%;
}

.carousel .owl-stage-outer,
.hero-slider .owl-stage-outer {
  height: calc(100% + 24px);
}
.carousel .slide__inner,
.hero-slider .slide__inner {
  height: calc(100% - 24px);
}
.carousel .slide__caption,
.hero-slider .slide__caption {
  font-family: 'maison_neuebook', Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-size: 1.1rem;
  bottom: 0;
  color: #f3887b;
  left: 0;
  letter-spacing: .05em;
  padding: 0 10px;
  position: absolute;
  width: 100%;
}
.carousel .slide.hero,
.hero-slider .slide.hero {
  padding: 0;
}
.carousel .slide.hero h1,
.hero-slider .slide.hero h1 {
  color: #fff;
}

.gallery .owl-stage-outer {
  height: 100%;
}
.gallery .slide__inner {
  height: 100%;
}

.owl-stage-outer {
  z-index: 1;
}

.owl-stage,
.owl-item {
  height: 100%;
}

.owl-nav {
  display: none;
}

@media only screen and (min-width: 641px) {
  .carousel .owl-nav {
    height: 100%;
    width: 100%;
    position: absolute;
  }
  .carousel .owl-nav div:not(.disabled):focus .icon, .carousel .owl-nav div:not(.disabled):hover .icon {
    color: #000;
  }
  .carousel .owl-nav .icon {
    color: #f3887b;
  }
  .carousel .owl-prev {
    -webkit-transform: translateX(-100%);
    -khtml-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  .carousel .owl-next {
    -webkit-transform: translateX(100%);
    -khtml-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }

  .gallery .owl-nav div:not(.disabled):focus .icon, .gallery .owl-nav div:not(.disabled):hover .icon,
  .hero-slider .owl-nav div:not(.disabled):focus .icon,
  .hero-slider .owl-nav div:not(.disabled):hover .icon {
    color: #f3887b;
  }
  .gallery .owl-nav .icon,
  .hero-slider .owl-nav .icon {
    color: #fff;
  }
  .gallery .owl-prev,
  .gallery .owl-next,
  .hero-slider .owl-prev,
  .hero-slider .owl-next {
    z-index: 2;
  }
  .gallery .owl-prev,
  .hero-slider .owl-prev {
    padding-left: 20px;
  }
  .gallery .owl-next,
  .hero-slider .owl-next {
    padding-right: 20px;
  }

  .owl-nav {
    display: block;
    top: 0;
  }
  .owl-nav div {
    cursor: pointer;
    height: 100%;
    position: absolute;
    top: 0;
    width: 8.3333%;
  }
  .owl-nav div:not(.disabled):focus .icon, .owl-nav div:not(.disabled):hover .icon {
    color: #000;
  }
  .owl-nav .icon {
    -webkit-transition: color 0.3s;
    -khtml-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -ms-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
    color: #f3887b;
    height: 100%;
    width: 25px;
  }
  .owl-nav .disabled {
    cursor: default;
  }
  .owl-nav .disabled .icon {
    color: #ebebeb;
  }

  .owl-prev {
    left: 0;
  }

  .owl-next {
    right: 0;
    text-align: right;
  }
}
/* =============================================================================
   Address details
   ========================================================================== */
.address-details, .address-details a {
  color: #fff;
}
.address-details a:focus, .address-details a:hover {
  text-decoration: underline;
}
.address-details .icon-facebook {
  font-size: 110%;
  margin-right: 3px;
  position: relative;
  top: 2px;
}
.address-details__title {
  text-decoration: underline;
}
.address-details--contact {
  color: #000;
}
.address-details--contact a {
  color: #f3887b;
}
.address-details--contact .address-details__title {
  font-family: 'maison_neuebold', Helvetica, Arial, sans-serif;
  text-decoration: none;
}
@media only screen and (max-width: 480px) {
  .address-details--contact {
    margin-top: 40px;
  }
}
.nav--header .address-details {
  padding-bottom: 70px;
}

@media only screen and (min-width: 921px) {
  .nav--header .address-details {
    padding-bottom: 0;
  }
}
/* =============================================================================
   Address details
   ========================================================================== */
.team-member {
  margin-bottom: 25px;
}
.team-member__photo-wrapper {
  max-width: 66.6667%;
}
.team-member__photo {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #899195;
}
.team-member__title {
  font-family: 'maison_neuebook', Helvetica, Arial, sans-serif;
  margin-bottom: 0;
  text-transform: none;
}
.team-member__sub-title {
  margin-bottom: .1em;
  margin-top: 1.66em;
  text-transform: none;
}
.team-member__sub-title + ul {
  padding: 4px 0 0;
}
.team-member__link {
  font-family: 'maison_neuebook', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-size: 1.3rem;
  color: #000;
  text-decoration: underline;
}
.team-member__link:focus, .team-member__link:hover {
  text-decoration: none;
}
@media only screen and (max-width: 480px) {
  .team-member {
    margin-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
  }
}

/* =============================================================================
   Aanbod
   ========================================================================== */
.aanbod-wrapper {
  overflow-x: hidden;
  overflow-y: visible;
  padding-bottom: 90px;
  padding-top: 68px;
  position: relative;
}
.aanbod-wrapper__subtitle {
  height: 0;
  margin: 0;
  position: relative;
  top: -2em;
}
.aanbod-wrapper .wrapper, .aanbod-wrapper #gform_3 .gform_body, #gform_3 .aanbod-wrapper .gform_body,
.aanbod-wrapper #gform_3 .validation_error,
#gform_3 .aanbod-wrapper .validation_error, .aanbod-wrapper .skar_inschrijven .gform_body, .skar_inschrijven .aanbod-wrapper .gform_body,
.aanbod-wrapper .skar_inschrijven .validation_error,
.skar_inschrijven .aanbod-wrapper .validation_error {
  position: relative;
}
.aanbod-wrapper .h1 {
  margin-top: 0;
}

.aanbod-categories {
  margin-bottom: 2em;
}
.aanbod-categories__link {
  -webkit-transition: width 0.3s;
  -khtml-transition: width 0.3s;
  -moz-transition: width 0.3s;
  -ms-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
  background-color: #f9f9f9;
}
.aanbod-categories__link--active {
  background-color: #f3887b;
  color: #fff;
}
.aanbod-categories__link .icon-close {
  display: none;
  font-size: 72%;
  margin-left: 10px;
  position: relative;
  right: 2px;
  top: 1px;
}
.aanbod-categories .aanbod-categories__link--active .icon-close {
  display: inline-block;
}

.aanbod-articles {
  margin-bottom: 48px;
}

#meld-je-aan > .gform_wrapper {
  margin-top: 70px;
}
#meld-je-aan > .gform_wrapper .gfield {
  margin-left: auto;
  margin-right: auto;
}
#meld-je-aan > .gform_wrapper .gform_page_footer {
  margin-left: auto;
  margin-right: auto;
}

.single-aanbod .gf_step {
  width: 33.3333%;
}
.single-aanbod .gf_step:nth-child(1).gf_step_active:before {
  width: 0;
}
.single-aanbod .gf_step:nth-child(3):after {
  width: 0;
}

@media only screen and (min-width: 1081px) {
  .single-aanbod .gf_step {
    width: 33.3333%;
  }
  .single-aanbod .gf_step:nth-child(1).gf_step_completed:before {
    width: 0;
  }
  .single-aanbod .gf_step:nth-child(3):after {
    width: 0;
  }
}
