/*
 *  Theme file
 */
/* Import includes */
/*=====================================================================
 *
 * Author: Nedbase - www.nedbase.nl
 *
 * Dynamic helpers: probably wanted in all files
 *
 *=====================================================================*/
/*=====================================================================
 *
 * Author: Nedbase - www.nedbase.nl
 *
 *=====================================================================*/
/* Global colors */
/* Branding colors */
/* Social colors */
/* Fonts */
/* Layout */
/* Container fluid size (geen fluid site nodig? zet alle $container-vars op 1 vaste pixel-breedte) */
/* Device breakpoints */
/* Easings */
/*=====================================================================
 *
 * Author: Nedbase - www.nedbase.nl
 *
 * All mixins must be documentated according http://sassdoc.com/
 *
 *
 * Group Helpers
 * Group Vendor prefixed
 * Group Shortcuts
 * Group Ah Nice
 *
 *=====================================================================*/
/*************************************************
  GROUP HELPERS
*************************************************/
/**
 * Grows element if childs are floated
 * @group helpers
 */
/**
 * Removes basic ul/ol formatting and make li's stack on each other
 * @group helpers
 */
/**
 * Removes basic ul/ol formatting and make li's inline
 * @group helpers
 */
/**
 * Center element inline, makes parent element relative
 * @group helpers
 */
/**
 * Return resposive font-size in pixels and rems
 * @group helpers
 * @param {float} $value (1.6) - Font-size (10% of pixelvalue)
 * @example @include font-size(1.8);
 */
/**
 * Set keyframes and properties for animation
 * @group Helpers
 * @param {string} $animationName ('') name of the animation
 * @example @include keyframes(fade-in){
  0%   { opacity: 0; }
  100% { opacity: 1; }
 }
 */
/**
 * Bind animation to element
 * @group Helpers
 * @param {string} $animation ('') name of the animation
 * .animated-element { @include animation(fade-in 1s forwards); }
 */
/**
 * Style placeholders for input-elemnts
 * @group Helpers
 * @param {color} $color (rgba(0,0,0,.4)) color
 * @param {content} @content '' extra declarations
 * @include placeholder(red); }
 * @include placeholder(red){ font-style: italic; }; }
 */
/*************************************************
  GROUP VENDOR PREFIXED
*************************************************/
/**
 * @group Vendor prefixed
 * @param {color} $start-color ($gray) - Startcolor
 * @param {color} $end-color ($grayshade) - Endcolor
 * @example @include linear-gradient(red, blue);
 */
/**
 * @group Vendor prefixed
 * @param {string} $value (100% 100% 100% 100%) - Border-radius-value
 * @example @include border-radius(10px 5px);
 */
/**
 * @group Vendor prefixed
 * @param {float} $value (1) - Opacity-value
 * @example @include opacity(.5);
 */
/**
 * @group Vendor prefixed
 * @param {string} $value (0 0 2px rgba($black,.2)) - Box-shadow-value
 * @example @include box-shadow(1px 1px 2px red);
 */
/**
 * @group Vendor prefixed
 * @param {string} $value (0) perspective
 * @example @include perspective(1);
 */
/**
 * @group Vendor prefixed
 * @param {string} $rotateX (0) x-rotation
 * @param {string} $rotateY (0) y-rotation
 * @param {string} $rotateZ (0) z-rotation
 * @param {float} $scale (1) scale
 * @param {string} $translateX (0) x-translate
 * @param {string} $translateY (0) y-translate
 * @param {string} $translateZ (0) z-translate
 * @param {string} $skewX (0) x-skew
 * @param {string} $skewY (0) y-skew
 * @example @include transform(5deg);
 */
/**
 * @group Vendor prefixed
 * @param {string} $value (all 500ms) the transition
 * @example @include transition(opacity 250ms ease-in);
 * @example @include transition(none);
 */
/**
 * @group Vendor prefixed
 * @param {string} $val (none) what van be selected?
 * @example @include user-select(none);
 * @example @include user-select(text);
 * @example @include user-select(auto);
 */
/**
 * @group Vendor prefixed
 * @param {integer} $count (2) number of columns
 * @param {integer} $gap (10px) size of gap between columns
 * @example @include columns($count: 5, $gap: 6)
 */
/*************************************************
  GROUP SHORTCUTS
*************************************************/
/**
* @group Shortcuts
* @param {string} $value (0) z-rotation
* @example @include rotate(5deg);
*/
/**
* @group Shortcuts
* @param {string} $value (0) scale
* @example @include scale(2);
*/
/*************************************************
  GROUP AH, NICE!
*************************************************/
/**
* Adds a line after element until right side of parent element (for indexlines)
* @group Ah, nice!
* @param {string} $height (1px) height of line
* @param {color} $color ($bordercolor) color of line
* @param {string} $margin-left (1em) left margin of line
* @param {string} $margin-top (0) top margin of line
* @example @include indexline(1px red 2em);
*/
/**
* Creates circle with possibility of a centered (horizontal and vertical) text inside
* @group Ah, nice!
* @param {string} $size (30px) size of circle
* @param {color} $bgcolor ($primarycolor) background color of circle
* @param {float} $fontsize (1.4) size of text in
* @param {color} $color (#fff) textcolor
* @example @include circle(50px, red, 2, pink)
*/
/**
* Adds a cutstomized dashed border
* @group Ah, nice!
* @param {float} $dashlength (10px) dashlength
* @param {float} $spacelength (10px) spacelength
* @param {float} $borderheight (10px) borderheight
* @param {color} $color ($primarycolor) color
* @param {string} $position (top) position of the border
* @example @include dashed-border(5px, 3px, 4px, red, bottom)
*/
/**
* Adds a triange-arrow to element
* @group Ah, nice!
* @param {string} $position (bottom) position of the arrow
* @param {color} $color (#fff) color of the arrow
* @param {float} $size (10px) size of the arrow
* @example @include border_triangle(bottom, #fff, 10px)
*/
/*************************************************
  NOG GROEPEREN
*************************************************/
/*=====================================================================
 * Calculate
 *=====================================================================*/
/*=====================================================================
 *  Flexbox
 *=====================================================================*/
/**
 * Return resposive font-size in pixels and rems
 * @group helpers
 * @param {float} $value (1.6) - Font-size (10% of pixelvalue)
 * @example @include font-size(1.8);
 */
/**
 * Break words based on best match... Does not work in chrome
 * @group helpers
 * @example @include word-break();
 */
/*=====================================================================
 *
 * Author: Nedbase - www.nedbase.nl
 *
 * Static helpers: only needed once
 *
 *=====================================================================*/
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block; }

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden], template {
  display: none; }

a {
  background: transparent; }

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

abbr[title] {
  border-bottom: 1px dotted; }

b, strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

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

small {
  font-size: 80%; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

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; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 1em 40px; }

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

pre {
  overflow: auto; }

code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em; }

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

button {
  overflow: visible; }

button, select {
  text-transform: none; }

button, html input[type="button"], input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

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

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

input {
  line-height: normal;
  border-radius: 0; }

input[type="text"] {
  -webkit-appearance: none; }

input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }

input[type="number"] {
  -moz-appearance: textfield; }

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

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

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto;
  -webkit-appearance: none;
  border-radius: 0; }

optgroup {
  font-weight: bold; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td, th {
  padding: 0; }

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0; }

figure {
  margin: 0; }

form {
  margin: 0; }

label {
  cursor: pointer; }

/*=====================================================================================
 *
 * Author: Nedbase - www.nedbase.nl
 *   __  __        __ ___   __ __  ___
 *  |  \/  \  |\ |/  \ |   |_ |  \| |
 *  |__/\__/  | \|\__/ |   |__|__/| |
 *
 * THIS IS A HELPER: PLEASE DO NOT EDIT THIS FILE BUT OVERWRITE IN YOUR OWN FILES
 *===================================================================================*/
/*=====================================================================
 * FLEXSLIDER
 *=====================================================================*/
.flexslider {
  position: relative;
  border: 0;
  margin: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none; }

.flexslider li:before {
  content: none; }

.flexslider img {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none; }

.flex-controls {
  position: static; }

/* paging nav */
.flex-control-paging li a {
  display: block;
  background: rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: none;
  box-shadow: none;
  text-indent: -999em; }

.flex-control-paging li a:hover {
  background: #fff;
  -webkit-box-shadow: none;
  box-shadow: none; }

.flex-control-paging li a.flex-active {
  background: #004f5a; }

.flex-control-paging li a.flex-active:hover {
  background: #004f5a; }

/* direction nav */
.flex-direction-nav {
  position: static; }

.flex-direction-nav li {
  position: static; }

.flex-direction-nav li a {
  position: absolute;
  line-height: 1;
  text-shadow: none;
  color: rgba(255, 255, 255, 0.5); }

.flex-direction-nav li a:hover {
  color: #fff; }

.flex-direction-nav li a:before {
  font-family: "icomoon";
  font-size: 40px;
  display: inline-block;
  content: '\e623'; }

.flex-direction-nav li a.flex-next:before {
  content: '\e611'; }

.flexslider:hover .flex-direction-nav li a {
  opacity: 1; }

.flex-pauseplay a:before {
  font-family: "icomoon";
  content: '\e645'; }

.flex-pauseplay a.flex-play:before {
  content: '\e617'; }

.carousel li {
  margin-right: auto; }

/*=====================================================================
 * FANCY SELECT
 *=====================================================================*/
.fancy-select .trigger {
  -webkit-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: transparent;
  border-color: #ccc;
  color: #333;
  text-transform: none;
  font-weight: 400;
  font-size: 14px;
  font-size: 1.4rem; }

.fancy-select .trigger:after {
  content: '\e634';
  font-family: 'icomoon';
  width: auto;
  height: auto;
  border: 0;
  top: 1em;
  right: .5em; }

.fancy-select .trigger.open {
  color: #333;
  background: transparent;
  border-color: #ccc; }

.fancy-select .trigger.open:after {
  content: '\e609'; }

.fancy-select select:focus + .trigger {
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }

.fancy-select .options {
  background: #fff;
  border-top: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0;
  border-radius: 0; }
  .fancy-select .options li {
    display: block; }
    .fancy-select .options li:before {
      content: none; }
    .fancy-select .options li ul, .fancy-select .options li ol {
      list-style: none;
      padding: 0;
      margin: 0; }

.fancy-select .options li {
  color: #333;
  text-transform: none;
  font-weight: 400; }

.fancy-select .options li.hover {
  background: #eee;
  color: #333; }

.fancy-select .options li.selected {
  background: #004f5a;
  color: #fff; }

.flex-direction-nav a {
  zoom: 1;
  filter: alpha(opacity=100);
  opacity: 1; }

.flex-direction-nav .flex-next {
  right: 0; }

.flex-direction-nav .flex-prev {
  left: 0; }

.flexslider:hover .flex-next {
  right: 0; }

.flexslider:hover .flex-prev {
  left: 0; }

/* Clearfix */
.group:before, .group:after {
  content: ' ';
  display: table; }

.group:after {
  clear: both; }

.ie6 .group {
  zoom: 1; }

/* Nedbase reset */
*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased; }

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

/* backward compatibility for ul li inline & stacked*/
.inline, .inline ul, .inline ol,
.stacked, .stacked ul, .stacked ol {
  list-style: none;
  padding: 0;
  margin: 0; }

.inline li {
  display: block;
  float: left; }

.stacked li {
  display: block; }

.inline li:before,
.stacked li:before {
  content: none; }

/* Lists */
.centerinline {
  position: relative;
  float: right;
  left: -50%; }

.centerinline .inline {
  left: 50%;
  position: relative; }

.centervertical:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  height: 100%; }

.centervertical .vertical {
  display: inline-block;
  vertical-align: middle; }

/* definition lists */
dl {
  margin: 0;
  zoom: 1; }
  dl:before, dl:after {
    content: ' ';
    display: table; }
  dl:after {
    clear: both; }

dl dt,
dl dd {
  float: left;
  margin: 0;
  margin-bottom: 1em; }

dl dt {
  width: 40%;
  padding-right: 5em;
  clear: left;
  font-weight: 700; }

dl dd {
  width: 60%;
  clear: right; }

dl.stacked dt,
dl.stacked dd {
  width: auto;
  float: none; }

dl.stacked dt {
  margin: 0; }

/* Helper classes */
.left {
  float: left; }

.right {
  float: right; }

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

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

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

.hidden {
  display: none; }

.pointer {
  cursor: pointer; }

/* Grid */
.col-wrapper {
  clear: both; }

.col {
  float: left;
  display: block;
  clear: none; }

.grid-6 .span-1 {
  width: 16.666%; }

.grid-6 .span-2 {
  width: 33.333%; }

.grid-6 .span-3 {
  width: 50%; }

.grid-6 .span-4 {
  width: 66.666%; }

.grid-6 .span-5 {
  width: 83.333%; }

.grid-6 .span-6 {
  width: 100%; }

.grid-5 .span-1 {
  width: 20%; }

.grid-5 .span-2 {
  width: 40%; }

.grid-5 .span-3 {
  width: 60%; }

.grid-5 .span-4 {
  width: 80%; }

.grid-5 .span-5 {
  width: 100%; }

.grid-4 .span-1 {
  width: 25%; }

.grid-4 .span-2 {
  width: 50%; }

.grid-4 .span-3 {
  width: 75%; }

.grid-4 .span-4 {
  width: 100%; }

.grid-3 .span-1 {
  width: 33.3333%; }

.grid-3 .span-2 {
  width: 66.6666%; }

.grid-3 .span-3 {
  width: 100%; }

.grid-2 .span-1 {
  width: 50%; }

.grid-2 .span-2 {
  width: 100%; }

.grid-1 .span-1 {
  width: 100%; }

/* Responsive */
img, embed, object, video, iframe {
  max-width: 100%;
  height: auto; }

.map img {
  max-width: none; }

/* Reset */
input:focus {
  outline: none; }

/* Fancybox */
.figure a.fancybox {
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.fancybox-outer {
  background: #fff;
  border-radius: 5px; }

.fancybox-inner {
  -webkit-border-radius: 5px;
  border-radius: 5px; }

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
  background-image: url("../../../image/fancybox_sprite.png") !important; }

#fancybox-loading div {
  background-image: url("../../../image/fancybox_loading.gif") !important; }

/* Waypoints Sticky */
.sticky {
  overflow: hidden; }

.sticky.stuck {
  position: fixed;
  z-index: 1;
  top: 0; }

/* Custom file input */
.NFI-wrapper {
  width: 100%;
  height: auto;
  zoom: 1;
  padding-bottom: 1em; }
  .NFI-wrapper:before, .NFI-wrapper:after {
    content: ' ';
    display: table; }
  .NFI-wrapper:after {
    clear: both; }

.NFI-button {
  background-color: #0192DD;
  color: #FFFFFF;
  height: 40px;
  line-height: 40px;
  width: 30%; }

.NFI-filename,
.inputwrapper .NFI-filename {
  background: #fff;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.05) inset;
  color: #777777;
  height: 40px;
  line-height: 40px;
  text-shadow: 0 1px 0 #FFFFFF;
  display: inline-block;
  border-left: 0;
  width: 70%; }

/* DB Debug */
.dbdebug {
  position: relative;
  z-index: 999;
  background: rgba(255, 255, 255, 0.85);
  padding: 2em 0;
  margin-top: 10em;
  font-family: "Lucida Console", Monaco, monospace;
  color: #444; }

.dbdebug tbody td.first {
  padding-right: 5px; }

.dbdebug tbody td {
  vertical-align: top;
  padding: 5px 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05); }

.dbdebug tbody td.number {
  text-align: right; }

.dbdebug .error {
  color: #f00; }

.dbdebug .notice {
  font-style: italic;
  color: white;
  background-color: #00d4ff; }

.dbdebug textarea {
  display: none; }

.dbdebug {
  background: rgba(0, 0, 0, 0.85);
  color: #e9e9fa; }

.dbdebug .error {
  background: rgba(255, 255, 255, 0.8);
  position: fixed;
  padding: 10px;
  top: 20px;
  left: 20px;
  color: #f00;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  -webkit-border-radius: 5px;
  border-radius: 5px; }

/* enable for fixed */
.xdbdebug {
  position: fixed;
  bottom: 0;
  max-height: 50%;
  overflow-y: auto;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }

/*=====================================================================
 * FLEXSLIDER
 *=====================================================================*/
.flexslider {
  position: relative;
  border: 0;
  margin: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none; }

.flexslider li:before {
  content: none; }

.flexslider img {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none; }

.flex-controls {
  position: static; }

/* paging nav */
.flex-control-paging li a {
  display: block;
  background: rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: none;
  box-shadow: none;
  text-indent: -999em; }

.flex-control-paging li a:hover {
  background: #fff;
  -webkit-box-shadow: none;
  box-shadow: none; }

.flex-control-paging li a.flex-active {
  background: #004f5a; }

.flex-control-paging li a.flex-active:hover {
  background: #004f5a; }

/* direction nav */
.flex-direction-nav {
  position: static; }

.flex-direction-nav li {
  position: static; }

.flex-direction-nav li a {
  position: absolute;
  line-height: 1;
  text-shadow: none;
  color: rgba(255, 255, 255, 0.5); }

.flex-direction-nav li a:hover {
  color: #fff; }

.flex-direction-nav li a:before {
  font-family: "icomoon";
  font-size: 40px;
  display: inline-block;
  content: '\e623'; }

.flex-direction-nav li a.flex-next:before {
  content: '\e611'; }

.flexslider:hover .flex-direction-nav li a {
  opacity: 1; }

.flex-pauseplay a:before {
  font-family: "icomoon";
  content: '\e645'; }

.flex-pauseplay a.flex-play:before {
  content: '\e617'; }

.carousel li {
  margin-right: auto; }

/*=====================================================================
 * FANCY SELECT
 *=====================================================================*/
.fancy-select .trigger {
  -webkit-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: transparent;
  border-color: #ccc;
  color: #333;
  text-transform: none;
  font-weight: 400;
  font-size: 14px;
  font-size: 1.4rem; }

.fancy-select .trigger:after {
  content: '\e634';
  font-family: 'icomoon';
  width: auto;
  height: auto;
  border: 0;
  top: 1em;
  right: .5em; }

.fancy-select .trigger.open {
  color: #333;
  background: transparent;
  border-color: #ccc; }

.fancy-select .trigger.open:after {
  content: '\e609'; }

.fancy-select select:focus + .trigger {
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }

.fancy-select .options {
  background: #fff;
  border-top: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0;
  border-radius: 0; }
  .fancy-select .options li {
    display: block; }
    .fancy-select .options li:before {
      content: none; }
    .fancy-select .options li ul, .fancy-select .options li ol {
      list-style: none;
      padding: 0;
      margin: 0; }

.fancy-select .options li {
  color: #333;
  text-transform: none;
  font-weight: 400; }

.fancy-select .options li.hover {
  background: #eee;
  color: #333; }

.fancy-select .options li.selected {
  background: #004f5a;
  color: #fff; }

.flex-direction-nav a {
  zoom: 1;
  filter: alpha(opacity=100);
  opacity: 1; }

.flex-direction-nav .flex-next {
  right: 0; }

.flex-direction-nav .flex-prev {
  left: 0; }

.flexslider:hover .flex-next {
  right: 0; }

.flexslider:hover .flex-prev {
  left: 0; }

/*=====================================================================
 *
 * Author: Nedbase - www.nedbase.nl
 *
 *=====================================================================*/
/* --- IE6 --- */
.ie6 .mainnav li {
  width: 1em;
  white-space: nowrap; }

.ie6 .mainnav ul li {
  width: auto; }

/* --- IE7 --- */
.ie7 .mainnav li:hover, .mainnav li.sfhover {
  position: static; }

/* --- oldies --- */
.oldie input[type="checkbox"], .oldie input[type="radio"],
.ie9 input[type="checkbox"], .ie9 input[type="radio"] {
  border: none; }

.oldie [type=radio],
.oldie [type=checkbox] {
  position: inherit !important;
  left: inherit !important; }

.oldie [type=radio] + label:before,
.oldie [type=checkbox] + label:before {
  content: none; }

/* Theme Variables */
/* Load defaults (note: defaults are loaded with new theme variables!) */
/*=====================================================================
 *
 * Author: Nedbase - www.nedbase.nl
 *
 *=====================================================================*/
/*! START EDITOR */
@font-face {
  font-family: 'icomoon';
  src: url("../../fonts/icomoon.eot?-3kfsgp");
  src: url("../../fonts/icomoon.eot?#iefix-3kfsgp") format("embedded-opentype"), url("../../fonts/icomoon.woff?-3kfsgp") format("woff"), url("../../fonts/icomoon.ttf?-3kfsgp") format("truetype"), url("../../fonts/icomoon.svg?-3kfsgp#icomoon") format("svg");
  font-weight: normal;
  font-style: normal; }
/*=====================================================================
 *
 * Author: Nedbase - www.nedbase.nl
 *
 *=====================================================================*/
*:after, *:before {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img:before {
  font-family: sans-serif; }

.icon:before {
  content: "\e611"; }

i.icon {
  font-style: normal; }

/*=====================================================================
 *  overwrite fonts
 *  copy selection.json to fonts folder
 *  paste icon-data-styles from icomoon style.css below
 *  replace .icon- width .icon.
 *  done!
 *=====================================================================*/
.icon.calendar:before {
  content: "\e60d"; }

.icon.print:before {
  content: "\e64a"; }

.icon.phone2:before {
  content: "\e64b"; }

.icon.location:before {
  content: "\e60f"; }

.icon.map:before {
  content: "\e610"; }

.icon.mobile:before {
  content: "\e613"; }

.icon.tablet:before {
  content: "\e618"; }

.icon.spinner:before {
  content: "\e619"; }

.icon.spinner2:before {
  content: "\e61a"; }

.icon.spinner3:before {
  content: "\e621"; }

.icon.spinner4:before {
  content: "\e625"; }

.icon.spinner5:before {
  content: "\e626"; }

.icon.play:before {
  content: "\e601"; }

.icon.pause:before {
  content: "\e62c"; }

.icon.play2:before {
  content: "\e62d"; }

.icon.pause2:before {
  content: "\e631"; }

.icon.fax:before {
  content: "\e632"; }

.icon.youtube2:before {
  content: "\e646"; }

.icon.youtube:before {
  content: "\e64e"; }

.icon.zoomout:before {
  content: "\e600"; }

.icon.zoomin:before {
  content: "\e604"; }

.icon.zip:before {
  content: "\e602"; }

.icon.xls:before {
  content: "\e603"; }

.icon.users:before {
  content: "\e605"; }

.icon.user:before {
  content: "\e606"; }

.icon.up4:before {
  content: "\e607"; }

.icon.up3:before {
  content: "\e608"; }

.icon.up2:before {
  content: "\e609"; }

.icon.up1:before {
  content: "\e60a"; }

.icon.smartphone:before {
  content: "\e60e"; }

.icon.right2:before {
  content: "\e611"; }

.icon.right1:before {
  content: "\e612"; }

.icon.ppt:before {
  content: "\e614"; }

.icon.pointer:before {
  content: "\e615"; }

.icon.plus:before {
  content: "\e616"; }

.icon.play3:before {
  content: "\e617"; }

.icon.pdf:before {
  content: "\e61b"; }

.icon.minus:before {
  content: "\e61c"; }

.icon.mail:before {
  content: "\e61d"; }

.icon.lock:before {
  content: "\e61e"; }

.icon.list2:before {
  content: "\e61f"; }

.icon.list:before {
  content: "\e620"; }

.icon.left3:before {
  content: "\e622"; }

.icon.left2:before {
  content: "\e623"; }

.icon.left1:before {
  content: "\e624"; }

.icon.images:before {
  content: "\e627"; }

.icon.image:before {
  content: "\e628"; }

.icon.home:before {
  content: "\e629"; }

.icon.grid2:before {
  content: "\e62a"; }

.icon.grid:before {
  content: "\e62b"; }

.icon.file:before {
  content: "\e62e"; }

.icon.feed:before {
  content: "\e62f"; }

.icon.feed2:before {
  content: "\e630"; }

.icon.down3:before {
  content: "\e633"; }

.icon.down2:before {
  content: "\e634"; }

.icon.down1:before {
  content: "\e635"; }

.icon.doubleup:before {
  content: "\e636"; }

.icon.doubleright:before {
  content: "\e637"; }

.icon.doubleleft:before {
  content: "\e638"; }

.icon.doubledown:before {
  content: "\e639"; }

.icon.dot2:before {
  content: "\e63a"; }

.icon.dot:before {
  content: "\e63b"; }

.icon.doc:before {
  content: "\e63c"; }

.icon.close3:before {
  content: "\e63d"; }

.icon.close2:before {
  content: "\e63e"; }

.icon.close:before {
  content: "\e63f"; }

.icon.check2:before {
  content: "\e640"; }

.icon.check1:before {
  content: "\e641"; }

.icon.camera:before {
  content: "\e642"; }

.icon.basket:before {
  content: "\e643"; }

.icon.right4:before {
  content: "\e644"; }

.icon.right3:before {
  content: "\e645"; }

.icon.left4:before {
  content: "\e647"; }

.icon.envelope:before {
  content: "\e648"; }

.icon.down4:before {
  content: "\e649"; }

.icon.calendar2:before {
  content: "\e60b"; }

.icon.comment:before {
  content: "\e64f"; }

.icon.search:before {
  content: "\e653"; }

.icon.calendar3:before {
  content: "\e650"; }

.icon.logout:before {
  content: "\e651"; }

.icon.minus2:before {
  content: "\e652"; }

.icon.plus2:before {
  content: "\e656"; }

.icon.info:before {
  content: "\e657"; }

.icon.info2:before {
  content: "\e658"; }

.icon.question:before {
  content: "\e659"; }

.icon.help:before {
  content: "\e65a"; }

.icon.list3:before {
  content: "\e60c"; }

.icon.left5:before {
  content: "\e64c"; }

.icon.down5:before {
  content: "\e654"; }

.icon.up5:before {
  content: "\e655"; }

.icon.right5:before {
  content: "\e64d"; }

.icon.flickr:before {
  content: "\e65b"; }

.icon.flickr2:before {
  content: "\e65c"; }

.icon.vimeo:before {
  content: "\e65d"; }

.icon.vimeo2:before {
  content: "\e65e"; }

.icon.twitter:before {
  content: "\e65f"; }

.icon.twitter2:before {
  content: "\e660"; }

.icon.facebook:before {
  content: "\e661"; }

.icon.facebook2:before {
  content: "\e662"; }

.icon.googleplus:before {
  content: "\e663"; }

.icon.googleplus2:before {
  content: "\e664"; }

.icon.pinterest:before {
  content: "\e665"; }

.icon.pinterest2:before {
  content: "\e666"; }

.icon.tumblr:before {
  content: "\e667"; }

.icon.tumblr2:before {
  content: "\e668"; }

.icon.linkedin:before {
  content: "\e669"; }

.icon.linkedin2:before {
  content: "\e66a"; }

.icon.instagram:before {
  content: "\e66b"; }

.icon.dropbox:before {
  content: "\e66c"; }

.icon.skype:before {
  content: "\e66d"; }

.icon.skype2:before {
  content: "\e66e"; }

.icon.thumbs-o-down:before {
  content: "\e671"; }

.icon.thumbs-o-up:before {
  content: "\e672"; }

.icon.thumbs-down:before {
  content: "\e673"; }

.icon.thumbs-up:before {
  content: "\e674"; }

.icon.heart-broken:before {
  content: "\e66f"; }

.icon.heart:before {
  content: "\e670"; }

::-moz-selection {
  background: rgba(250, 153, 0, 0.2);
  text-shadow: none; }

::selection {
  background: rgba(250, 153, 0, 0.2);
  text-shadow: none; }

html {
  font-size: 62.5%; }

body, input, select, option, button, textarea {
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #333; }

h1, h2, h3, h4, .title {
  margin: 0 0 1em;
  color: #004f5a;
  line-height: 1;
  font-weight: 700; }

h1 a, h2 a, h3 a, h4 a, .title a {
  color: inherit; }

h1 {
  font-size: 34px;
  font-size: 3.4rem; }

h2 {
  font-size: 24px;
  font-size: 2.4rem; }

h3, .title {
  font-size: 16px;
  font-size: 1.6rem; }

h4 {
  font-size: 14px;
  font-size: 1.4rem; }

p {
  margin: 0; }

a, a:active, a:visited {
  text-decoration: none;
  color: #004f5a;
  outline: none; }

a:focus {
  outline: none; }

a:hover, a:active {
  outline: none;
  color: #fa9900; }

a:not([href]):hover, a:not([href]):active {
  color: #004f5a; }

hr {
  border-top: 1px solid #ccc; }

.texteditor table tr td {
  border: 1px solid #eee;
  padding: 3px 5px; }

.texteditor table.tabel-geen-rand tr td {
  border: 0;
  padding: 0 10px 0 0; }

.texteditor a:link, .texteditor a:active, .texteditor a:visited {
  text-decoration: underline; }

.texteditor h1 {
  margin: 1em 0 .5em; }

.texteditor h2 {
  margin: 1em 0 .5em; }

.texteditor h3 {
  margin: 1em 0 0; }

.texteditor h4 {
  margin: 1em 0 0; }

/* bullet list with icomoon */
ul {
  list-style: none; }

ul li {
  position: relative; }

ul li:before {
  content: '\e63a';
  position: absolute;
  left: -25px;
  top: 4px;
  color: #333; }

/*! END EDITOR */
/*=============================================================================
 *
 * Author: Nedbase - www.nedbase.nl
 *
 *=============================================================================*/
/*=============================================================================
 *  GLOBAL STYLES FOR ALL THEMES (specific theme styles in /themes/-files)
 *=============================================================================*/
/* Buttons */
.button, a.button, input.button {
  padding: .5em 1em;
  border: none;
  display: inline-block;
  position: relative;
  line-height: 1.4;
  text-decoration: none !important;
  background: #004f5a;
  color: #fff;
  -webkit-border-radius: 5px;
  border-radius: 5px; }

.button:hover, .button:focus, .button:active {
  background: #006574; }

.button.medium {
  padding: 10px 15px; }

.button.large {
  padding: 15px 30px; }

/* Link styles */
.readon:before {
  content: '\e611'; }

.readon.back:before {
  content: '\e623'; }

/* Search results */
.searchresults ol li {
  margin: 1em 0; }

.searchresults ol li h3 a {
  text-decoration: none !important; }

.searchresults ol li mark {
  background: #eee;
  font-weight: 400;
  font-style: normal; }

/* Paging */
.paging {
  text-align: right; }

.paging ul {
  display: inline-block;
  margin: auto;
  text-align: left; }

.paging a {
  display: inline-block;
  float: left;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background-color: #004f5a;
  font-size: 14px;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  display: inline-block;
  -webkit-border-radius: 100% 100% 100% 100%;
  border-radius: 100% 100% 100% 100%;
  margin: 0 .2em; }

.paging a:hover {
  background: #fa9900; }

.paging .active a {
  background: #eee;
  color: #004f5a; }

.paging .active a:hover {
  color: #fa9900; }

.paging .prev a, .paging .next a,
.paging .first a, .paging .last a {
  background: transparent;
  color: #004f5a; }

.paging .prev a:hover, .paging .next a:hover,
.paging .first a:hover, .paging .last a:hover {
  background: #eee;
  color: #fa9900; }

.paging .prev a:after {
  content: '\e623'; }

.paging .next a:after {
  content: '\e611'; }

.paging .first a:after,
.paging .last a:after {
  content: '\e638'; }

.paging .last a:after {
  content: '\e637'; }

/* Breadcrumb */
.breadcrumb {
  padding: 1em 0; }

.breadcrumb a {
  display: inline-block;
  position: relative; }

.breadcrumb a:after {
  position: relative;
  top: .15em;
  content: '\e611';
  margin: 0 .5em;
  color: #bbb; }

/* Calsheet */
.calsheet {
  display: block;
  float: left;
  width: 55px;
  height: 70px;
  margin-right: 1em;
  background: #eee;
  text-align: center; }

.calsheet span {
  display: block; }

.calsheet .day {
  margin-top: .5em;
  font-size: 130%; }

.calsheet.small {
  width: 28px;
  height: 35px;
  font-size: 10px;
  font-size: 1rem;
  line-height: 1; }

.calsheet.small .day {
  margin-top: .4em; }

/* Meta Item Navigation */
nav.meta {
  margin-top: 2em;
  padding-top: 2em;
  border-top: 1px solid #ccc; }

nav.meta .prevnext {
  float: right; }

nav.meta .prevnext a {
  margin-left: 1em; }

nav.meta .paging {
  float: right; }

/* Twitter */
.tweet {
  padding: 1em 0 1em 70px;
  border-bottom: 1px solid #ccc;
  position: relative; }

.tweet:last-child {
  border: 0; }

.tweet .image {
  width: 48px;
  height: 48px;
  line-height: 48px;
  background-color: #004f5a;
  font-size: 14px;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  display: inline-block;
  -webkit-border-radius: 100% 100% 100% 100%;
  border-radius: 100% 100% 100% 100%;
  position: absolute;
  left: 0;
  top: 1em;
  background: transparent;
  overflow: hidden; }

.tweet .screenname a {
  font-weight: 700;
  text-decoration: none; }

.tweet .time {
  font-size: 12px;
  font-size: 1.2rem;
  color: #004f5a; }

.widget {
  margin-bottom: 1em;
  padding: 10px;
  background: rgba(238, 238, 238, 0.5); }

.widget figure {
  margin-bottom: 1em; }

.widget .readon {
  display: inline-block;
  margin-top: 1em; }

ul {
  margin: 0;
  padding: 0;
  list-style: none; }

ul li::before {
  display: none; }

.modal {
  background: #fff;
  padding: 1em;
  -webkit-box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
  width: 800px;
  max-width: 800px;
  display: none; }

.fancybox-skin {
  background: #fff; }

/*=====================================================================
 *  3rd party plugins-styles
 *=====================================================================*/
/* Custom select (FancySelect) */
.fancy-select .trigger,
.fancy-select .options {
  border: 1px solid #ccc; }

.fancy-select .trigger,
.fancy-select .options li {
  color: #333; }

.fancy-select .options li.hover {
  background: #eee; }

.fancy-select .options li.selected {
  background: #004f5a; }

.fancy-select .trigger.open {
  color: #333; }

/* Flexslider */
.flex-control-paging {
  z-index: 3;
  bottom: 10px;
  right: 5px; }

.flex-control-paging li a {
  width: 15px;
  height: 15px;
  margin: 0 5px;
  background: rgba(255, 255, 255, 0.5); }

.flex-control-paging li a:hover {
  background: #fff; }

.flex-control-paging li a.flex-active {
  background: #004f5a; }

.flex-control-paging li a.flex-active:hover {
  background: #004f5a; }

.flex-direction-nav {
  z-index: 2; }

.flex-direction-nav li a {
  width: 40px;
  height: 40px;
  background: #004f5a;
  color: rgba(255, 255, 255, 0.5); }

.flex-direction-nav li a:hover {
  color: #fff; }

/* Nav Tabs */
.nav-tabs li:before {
  content: none; }

/*=====================================================================
 *  FORMS
 *=====================================================================*/
/* basic layout */
textarea {
  display: block; }

input, textarea, select, label {
  padding: 10px;
  border: 1px solid #ccc; }
  input::-webkit-input-placeholder, textarea::-webkit-input-placeholder, select::-webkit-input-placeholder, label::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.4); }
  input::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder, label::-moz-placeholder {
    color: rgba(0, 0, 0, 0.4); }
  input:-moz-placeholder, textarea:-moz-placeholder, select:-moz-placeholder, label:-moz-placeholder {
    color: rgba(0, 0, 0, 0.4); }
  input:-ms-input-placeholder, textarea:-ms-input-placeholder, select:-ms-input-placeholder, label:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.4); }

label {
  padding-left: 0;
  padding-right: 0;
  border-color: transparent; }

.fbRadioButtons label,
.fbCheckboxes label {
  padding: 0; }

.labelwrapper {
  width: 40%; }

.inputwrapper {
  width: 60%; }

/* validation-errors */
label.error {
  color: #f00; }

.require {
  color: #f00; }

.fbForm .fbTextfield input.error, .fbForm .fbPassword input.error, .fbForm textarea.error {
  border-color: #f00; }

/*
 * CSS RADIO AND CHECKBOXES
 */
[type=radio],
[type=checkbox] {
  position: absolute !important;
  left: -9999em !important; }

[type=radio]:not(.hidden) + label,
[type=checkbox]:not(.hidden) + label {
  position: relative;
  display: block;
  padding: 0 0 0 2em; }

[type=radio] + label:before,
[type=checkbox] + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: .2em;
  width: 1.2em;
  height: 1.2em;
  margin-right: .5em;
  border: 1px solid #004f5a;
  background: #fff;
  color: #004f5a;
  text-align: center;
  line-height: 1em; }

[type=radio] + label:before {
  -webkit-border-radius: 100% 100% 100% 100%;
  border-radius: 100% 100% 100% 100%; }

[type=radio]:checked + label:before {
  background: #004f5a;
  -webkit-box-shadow: white 0 0 0 2px inset;
  box-shadow: white 0 0 0 2px inset; }

[type=checkbox]:checked + label:before {
  content: '\e641'; }

[type=radio]:disabled + label:before,
[type=checkbox]:disabled + label:before {
  box-shadow: none;
  color: #ccc;
  border-color: #ccc;
  background-color: #e6e6e6; }

[type=radio]:disabled + label,
[type=checkbox]:disabled + label {
  color: #ccc;
  cursor: default; }

[type=radio]:checked:disabled + label:before {
  background-color: #ccc;
  -webkit-box-shadow: #e6e6e6 0 0 0 2px inset;
  box-shadow: #e6e6e6 0 0 0 2px inset; }

[type=radio]:focus + label:before,
[type=checkbox]:focus + label:before {
  border-color: black; }

/*
 * NEED STACKED FORMS? UNCHECK 2 LINES BELOW
 */
/* formbulder specific */
.formButton .inputwrapper {
  width: auto;
  float: none;
  text-align: right; }

/*=====================================================================
 * LAYOUT
 *=====================================================================*/
body {
  overflow-x: hidden;
  background: #004f5a; }

.wrapper {
  min-height: 100vh;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  flex-grow: 1; }

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

section.main {
  position: relative;
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  flex-grow: 1;
  align-content: center; }

section.main .banner-wrapper {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  width: 100%; }

section.content {
  width: 75%;
  float: left; }

aside.left {
  width: 25%; }

aside.right {
  width: 25%; }

.tpl-sidebar-none section.content {
  width: 100%; }

.tpl-sidebar-left section.content {
  float: right; }

.tpl-sidebar-left-right section.content {
  width: 50%;
  margin-left: 25%; }

.tpl-sidebar-left-right aside.left {
  margin-left: -75%; }

/*=====================================================================
 * HEADER
 *=====================================================================*/
header.main {
  background: #fff;
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1); }

header.main .container {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 0; }

header.main .logo {
  margin-left: 1em; }

header.main .mobileheader {
  width: auto;
  display: block;
  zoom: 1;
  clear: both;
  flex: 0 0 auto; }
  header.main .mobileheader:before, header.main .mobileheader:after {
    content: ' ';
    display: table; }
  header.main .mobileheader:after {
    clear: both; }

header.main .mobileheader .mobilebuttons {
  display: none; }

header.main .mobileheader .mobilebuttons a {
  padding-top: 20px; }

header.main .langswitch {
  float: right; }

figure.main {
  margin-bottom: 1em; }

figure.main img {
  width: 100%; }

/* Search box */
.search.smallform {
  float: right;
  position: relative;
  width: 20%; }

.search.smallform input {
  width: 100%;
  border-right: 0;
  padding: 0 40px 0 0;
  height: 30px;
  text-indent: 10px;
  font-size: 12px;
  font-size: 1.2rem; }

.search.smallform button {
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  padding: 0;
  text-align: center; }

/* Top navigation */
.topnav {
  display: -ms-flexbox;
  display: flex;
  margin-right: 1em; }

.topnav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: flex; }

.topnav ul li::before {
  display: none; }

.topnav ul li {
  display: -ms-flexbox;
  display: flex;
  align-items: stretch;
  padding-left: 2em; }

.topnav a {
  flex: 1 auto;
  align-self: center;
  background: #fa9900; }

/* Langswitch */
.langswitch ul li {
  float: left; }

.langswitch ul li a {
  padding-left: 1em; }

/* Main navigation level 1*/
.mainnav {
  clear: both;
  zoom: 1;
  position: relative;
  z-index: 1;
  margin-top: 1em;
  background: #eee; }
  .mainnav:before, .mainnav:after {
    content: ' ';
    display: table; }
  .mainnav:after {
    clear: both; }

.mainnav ul {
  margin: 0;
  list-style: none;
  padding: 0;
  margin: 0; }
  .mainnav ul li {
    display: block; }
    .mainnav ul li:before {
      content: none; }
    .mainnav ul li ul, .mainnav ul li ol {
      list-style: none;
      padding: 0;
      margin: 0; }
  .mainnav ul li {
    float: left; }

.mainnav ul li {
  float: left;
  width: auto; }

.mainnav ul li a {
  display: block;
  padding: .5em 1em;
  text-decoration: none; }

.mainnav ul li a:hover {
  color: #c77a00 !important; }

.mainnav ul li.active a,
.mainnav ul li.open a {
  color: #fa9900; }

/* level 2 */
.mainnav ul li.open ul li a {
  padding: .2em 1em;
  color: #004f5a; }

.mainnav ul li.open ul li.active a,
.mainnav ul li.open ul li.open a {
  color: #fa9900; }

/* level 3 */
.mainnav ul li.open ul li.open ul li a {
  color: #004f5a; }

.mainnav ul li.open ul li.open ul li.active a,
.mainnav ul li.open ul li.open ul li.open a {
  color: #fa9900; }

.mainnav ul li ul {
  position: absolute;
  width: 250px;
  left: -999em;
  background: #eee; }

.mainnav ul ul li {
  float: none; }

.mainnav ul ul ul {
  margin: -2em 0 0 15em;
  background: #eee; }

.mainnav ul li:hover ul ul, .mainnav ul li:hover ul ul ul, .mainnav ul li.sfhover ul ul, .mainnav ul li.sfhover ul ul ul {
  left: -999em; }

.mainnav ul li:hover ul, .mainnav ul li li:hover ul, .mainnav ul li li li:hover ul, .mainnav ul li.sfhover ul, .mainnav ul li li.sfhover ul, .mainnav ul li li li.sfhover ul {
  left: auto; }

/* basic formatting */
nav.subnav > ul {
  list-style: none;
  padding: 0;
  margin: 0; }
  nav.subnav > ul li {
    display: block; }
    nav.subnav > ul li:before {
      content: none; }
    nav.subnav > ul li ul, nav.subnav > ul li ol {
      list-style: none;
      padding: 0;
      margin: 0; }

nav.subnav li a {
  display: block;
  position: relative;
  padding: 5px 0; }

nav.subnav li ul {
  display: none; }

nav.subnav li.open > ul {
  display: block; }

/* active state */
nav.subnav li.active > a {
  font-weight: bold; }

/* foldout toggle */
nav.subnav li.hassubs > a > .foldout-toggle {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 20px;
  text-align: center; }

nav.subnav li.hassubs > a > .foldout-toggle:after {
  content: '\e634';
  position: relative;
  top: 6px; }

nav.subnav li.hassubs.open > a > .foldout-toggle:after {
  content: '\e609'; }

/* level 1 */
nav.subnav li {
  border-top: 1px solid #ccc; }

/* level 2 */
nav.subnav li li > a {
  padding-left: 20px; }

/* level 3 */
nav.subnav li li li > a {
  padding-left: 30px; }

/* level 4 */
nav.subnav li li li li > a {
  padding-left: 40px; }

/*=====================================================================
 * MODULES
 *=====================================================================*/
/* Banners */
.banners {
  display: -ms-flexbox;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 3em 2em; }

.banners li {
  display: -ms-flexbox;
  display: flex;
  flex: 1 auto;
  padding: 0; }

.banner {
  display: block;
  background: #fff;
  -webkit-box-shadow: 0 5px 35px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 35px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
  margin: 1em;
  width: 100%; }

.banner img {
  width: 100%;
  height: auto; }

.banner .inner {
  padding: 2em; }

.banner h3 {
  text-transform: uppercase; }

.banner p {
  color: #333; }

.banner .button {
  margin-top: 1.5em;
  width: 100%; }

.banner .button::after {
  content: '\e611';
  position: absolute;
  right: 10px;
  top: 9px; }

.banner:hover {
  color: #333;
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5); }

.banner:hover .button {
  background: #fa9900; }

.stem-op-ons {
  clear: both; }

.stem-op-ons.mobile {
  display: none;
  margin: 0 1em; }

/* Contact */
.contact ul {
  display: block; }

.contact ul li {
  width: 32%;
  padding: 0 4%;
  display: inline-block;
  border-right: 1px solid #ccc;
  vertical-align: top; }

.contact ul li:nth-child(1) figure {
  position: absolute;
  left: 0;
  width: 45px;
  height: auto; }

.contact ul li:nth-child(2) figure {
  position: absolute;
  left: 20px; }

.contact ul li:nth-child(1),
.contact ul li:nth-child(2) {
  width: 49%;
  border-bottom: 1px solid #ccc;
  vertical-align: bottom; }

.contact ul li:nth-child(2),
.contact ul li:last-child {
  border-right: 0; }

.contact ul li:nth-child(1) {
  padding-left: 75px;
  position: relative; }

.contact ul li:nth-child(2) {
  padding-left: 90px;
  position: relative; }

.contact ul li:nth-child(1) h4,
.contact ul li:nth-child(2) h4 {
  padding-top: 0; }

.contact ul li:nth-child(1) p,
.contact ul li:nth-child(2) p {
  margin-bottom: 2em; }

.contact h4 {
  font-size: 20px;
  font-size: 2rem;
  margin: 0 0 .5em;
  padding: 30px 0 0; }

.contact p {
  margin-bottom: 1em; }

/*=====================================================================
 * FOOTER
 *=====================================================================*/
footer.main {
  padding: 2em 0;
  background: #003941;
  color: #fff; }

footer.main a {
  color: #fff;
  text-decoration: underline; }

footer.main a:hover {
  text-decoration: none; }

.credits {
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between; }

.credits ul li {
  padding: 0 1em;
  border-left: 1px solid #ccc; }

.credits ul li.first {
  padding-left: 0;
  border: 0; }

.credits ul.secondary li {
  border-left: 0;
  border-right: 1px solid #ccc; }

.credits ul.secondary li.last {
  padding-right: 0;
  border: 0; }

/*=====================================================================
 * TRANSITIONS & ANIMATIONS
 *=====================================================================*/
.wrapper,
textarea {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

@-webkit-keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
.animated-element {
  -webkit-animation: fade-in 1s forwards;
  animation: fade-in 1s forwards; }

/*=====================================================================
 * MEDIA QUERIES
 *=====================================================================*/
/*=====================================================================
 *
 * Author: Nedbase - www.nedbase.nl
 *
 * Dynamic helpers: probably wanted in all files
 *
 *=====================================================================*/
/*=====================================================================
 *
 * Author: Nedbase - www.nedbase.nl
 *
 *=====================================================================*/
/* Global colors */
/* Branding colors */
/* Social colors */
/* Fonts */
/* Layout */
/* Container fluid size (geen fluid site nodig? zet alle $container-vars op 1 vaste pixel-breedte) */
/* Device breakpoints */
/* Easings */
/*=====================================================================
 *
 * Author: Nedbase - www.nedbase.nl
 *
 * All mixins must be documentated according http://sassdoc.com/
 *
 *
 * Group Helpers
 * Group Vendor prefixed
 * Group Shortcuts
 * Group Ah Nice
 *
 *=====================================================================*/
/*************************************************
  GROUP HELPERS
*************************************************/
/**
 * Grows element if childs are floated
 * @group helpers
 */
/**
 * Removes basic ul/ol formatting and make li's stack on each other
 * @group helpers
 */
/**
 * Removes basic ul/ol formatting and make li's inline
 * @group helpers
 */
/**
 * Center element inline, makes parent element relative
 * @group helpers
 */
/**
 * Return resposive font-size in pixels and rems
 * @group helpers
 * @param {float} $value (1.6) - Font-size (10% of pixelvalue)
 * @example @include font-size(1.8);
 */
/**
 * Set keyframes and properties for animation
 * @group Helpers
 * @param {string} $animationName ('') name of the animation
 * @example @include keyframes(fade-in){
  0%   { opacity: 0; }
  100% { opacity: 1; }
 }
 */
/**
 * Bind animation to element
 * @group Helpers
 * @param {string} $animation ('') name of the animation
 * .animated-element { @include animation(fade-in 1s forwards); }
 */
/**
 * Style placeholders for input-elemnts
 * @group Helpers
 * @param {color} $color (rgba(0,0,0,.4)) color
 * @param {content} @content '' extra declarations
 * @include placeholder(red); }
 * @include placeholder(red){ font-style: italic; }; }
 */
/*************************************************
  GROUP VENDOR PREFIXED
*************************************************/
/**
 * @group Vendor prefixed
 * @param {color} $start-color ($gray) - Startcolor
 * @param {color} $end-color ($grayshade) - Endcolor
 * @example @include linear-gradient(red, blue);
 */
/**
 * @group Vendor prefixed
 * @param {string} $value (100% 100% 100% 100%) - Border-radius-value
 * @example @include border-radius(10px 5px);
 */
/**
 * @group Vendor prefixed
 * @param {float} $value (1) - Opacity-value
 * @example @include opacity(.5);
 */
/**
 * @group Vendor prefixed
 * @param {string} $value (0 0 2px rgba($black,.2)) - Box-shadow-value
 * @example @include box-shadow(1px 1px 2px red);
 */
/**
 * @group Vendor prefixed
 * @param {string} $value (0) perspective
 * @example @include perspective(1);
 */
/**
 * @group Vendor prefixed
 * @param {string} $rotateX (0) x-rotation
 * @param {string} $rotateY (0) y-rotation
 * @param {string} $rotateZ (0) z-rotation
 * @param {float} $scale (1) scale
 * @param {string} $translateX (0) x-translate
 * @param {string} $translateY (0) y-translate
 * @param {string} $translateZ (0) z-translate
 * @param {string} $skewX (0) x-skew
 * @param {string} $skewY (0) y-skew
 * @example @include transform(5deg);
 */
/**
 * @group Vendor prefixed
 * @param {string} $value (all 500ms) the transition
 * @example @include transition(opacity 250ms ease-in);
 * @example @include transition(none);
 */
/**
 * @group Vendor prefixed
 * @param {string} $val (none) what van be selected?
 * @example @include user-select(none);
 * @example @include user-select(text);
 * @example @include user-select(auto);
 */
/**
 * @group Vendor prefixed
 * @param {integer} $count (2) number of columns
 * @param {integer} $gap (10px) size of gap between columns
 * @example @include columns($count: 5, $gap: 6)
 */
/*************************************************
  GROUP SHORTCUTS
*************************************************/
/**
* @group Shortcuts
* @param {string} $value (0) z-rotation
* @example @include rotate(5deg);
*/
/**
* @group Shortcuts
* @param {string} $value (0) scale
* @example @include scale(2);
*/
/*************************************************
  GROUP AH, NICE!
*************************************************/
/**
* Adds a line after element until right side of parent element (for indexlines)
* @group Ah, nice!
* @param {string} $height (1px) height of line
* @param {color} $color ($bordercolor) color of line
* @param {string} $margin-left (1em) left margin of line
* @param {string} $margin-top (0) top margin of line
* @example @include indexline(1px red 2em);
*/
/**
* Creates circle with possibility of a centered (horizontal and vertical) text inside
* @group Ah, nice!
* @param {string} $size (30px) size of circle
* @param {color} $bgcolor ($primarycolor) background color of circle
* @param {float} $fontsize (1.4) size of text in
* @param {color} $color (#fff) textcolor
* @example @include circle(50px, red, 2, pink)
*/
/**
* Adds a cutstomized dashed border
* @group Ah, nice!
* @param {float} $dashlength (10px) dashlength
* @param {float} $spacelength (10px) spacelength
* @param {float} $borderheight (10px) borderheight
* @param {color} $color ($primarycolor) color
* @param {string} $position (top) position of the border
* @example @include dashed-border(5px, 3px, 4px, red, bottom)
*/
/**
* Adds a triange-arrow to element
* @group Ah, nice!
* @param {string} $position (bottom) position of the arrow
* @param {color} $color (#fff) color of the arrow
* @param {float} $size (10px) size of the arrow
* @example @include border_triangle(bottom, #fff, 10px)
*/
/*************************************************
  NOG GROEPEREN
*************************************************/
/*=====================================================================
 * Calculate
 *=====================================================================*/
/*=====================================================================
 *  Flexbox
 *=====================================================================*/
/**
 * Return resposive font-size in pixels and rems
 * @group helpers
 * @param {float} $value (1.6) - Font-size (10% of pixelvalue)
 * @example @include font-size(1.8);
 */
/**
 * Break words based on best match... Does not work in chrome
 * @group helpers
 * @example @include word-break();
 */
@media screen {
  body.is-dev:after {
    content: 'desktop';
    position: fixed;
    right: 1em;
    bottom: 1em;
    z-index: 999;
    padding: .5em 1em;
    border-radius: 1em;
    opacity: .5;
    font: italic 20px Georgia;
    color: #fff;
    background: #d3d3d3;
    text-shadow: 0 1px rgba(0, 0, 0, 0.5); } }
@media screen and (max-width: 1024px) {
  /*=====================================================================
  *
  * Author: Nedbase - www.nedbase.nl
  *
  * Tablet styles (for both Portrait and Landscape)
  *
  *=====================================================================*/
  body.is-dev:after {
    content: 'tablet';
    background: pink; }

  .banners {
    flex-wrap: wrap; } }
@media screen and (max-width: 1024px) and (orientation: landscape) {
  /*=====================================================================
   *
   * Author: Nedbase - www.nedbase.nl
   *
   * Tablet styles (for Landscape only)
   *
   *=====================================================================*/
  body.is-dev:after {
    content: 'tablet-landscape';
    background: hotpink; } }
@media screen and (max-width: 1024px) and (orientation: portrait) {
  /*=====================================================================
   *
   * Author: Nedbase - www.nedbase.nl
   *
   * Tablet styles (for Portrait only)
   *
   *=====================================================================*/
  body.is-dev:after {
    content: 'tablet-portrait';
    background: deeppink; } }
@media screen and (max-width: 767px) {
  /*=====================================================================
  *
  * Author: Nedbase - www.nedbase.nl
  *
  * Mobile styles (for both Portrait and Landscape)
  *
  *====================================================================*/
  body.is-dev:after {
    content: 'mobile';
    background: darkblue; }

  body {
    overflow-x: hidden;
    padding-top: 70px; }

  .wrapper {
    position: relative;
    min-height: calc(100vh - 50px); }

  h1 {
    font-size: 28px;
    font-size: 2.8rem; }

  h2 {
    font-size: 22px;
    font-size: 2.2rem; }

  h3, .title {
    font-size: 18px;
    font-size: 1.8rem; }

  h4 {
    font-size: 14px;
    font-size: 1.4rem; }

  .container {
    width: 90%;
    margin: 0 5%;
    min-width: 0;
    max-width: none; }

  .labelwrapper, .inputwrapper {
    width: 100%;
    float: none; }

  label {
    padding: 0 0 5px 0; }

  label.error {
    margin-left: 0; }

  section.content {
    width: auto;
    float: none !important; }

  aside.left {
    width: auto;
    float: none !important; }

  aside.right {
    width: auto;
    float: none !important; }

  .tpl-sidebar-left-right section.content {
    width: auto;
    margin-left: 0; }

  .tpl-sidebar-left-right aside.left {
    margin-left: 0; }

  .widget figure img {
    width: 100%; }

  /* Header main */
  header.main {
    position: absolute;
    left: -101%;
    top: 0;
    min-height: 100%;
    width: 95%;
    background: #eee;
    -webkit-transition: left 500ms cubic-bezier(0.77, 0, 0.175, 1);
    transition: left 500ms cubic-bezier(0.77, 0, 0.175, 1);
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5); }

  header.main.open {
    left: -5%;
    left: 0; }

  header.main .mobileheader {
    display: flex;
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }

  header.main .mobileheader .logo {
    flex-grow: 1;
    margin: 0 0 0 5%;
    padding: 1em 0; }

  header.main .mobileheader .logo img {
    max-height: 40px; }

  header.main .mobileheader .mobilebuttons {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-right: 5%; }

  header.main .mobileheader .mobilebuttons a {
    font-size: 22px;
    font-size: 2.2rem; }

  header.main .topnav {
    float: none; }

  header.main .langswitch {
    float: none; }

  header.main .search.smallform {
    float: none;
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    padding: 15px 5%;
    width: 100%;
    background: #eee;
    -webkit-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1) translateX(0) translateY(0) translateZ(0) skew(0deg, 0deg);
    -moz-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1) translateX(0) translateY(0) translateZ(0) skew(0deg, 0deg);
    -ms-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1) translateX(0) translateY(0) translateZ(0) skew(0deg, 0deg);
    -o-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1) translateX(0) translateY(0) translateZ(0) skew(0deg, 0deg);
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1) translateX(0) translateY(0) translateZ(0) skew(0deg, 0deg);
    display: none; }

  header.main .search.smallform input {
    background: transparent;
    border: 0;
    text-indent: 0; }

  header.main .search.smallform button {
    width: 60px;
    height: 60px;
    font-size: 20px;
    font-size: 2rem; }

  header.main .breadcrumb {
    float: none; }

  .topnav ul {
    zoom: 1; }
    .topnav ul:before, .topnav ul:after {
      content: ' ';
      display: table; }
    .topnav ul:after {
      clear: both; }

  .topnav li a {
    padding-left: 0;
    padding-right: 1em; }

  /* Section main */
  section.main {
    padding-top: 5%; }

  /* Footer */
  .credits {
    flex-direction: column; }

  .credits ul.secondary {
    float: none;
    clear: both; }

  .credits ul.secondary li.last {
    padding-left: 0; }

  .banners {
    padding: 0; }

  .modal {
    padding: 1em;
    width: auto; }

  .contact ul li {
    width: auto !important;
    display: block;
    overflow-x: hidden;
    border: 0 !important;
    padding: 1em 0 1em; }

  .contact ul li:first-child {
    padding-top: 0; }

  .contact h4 {
    font-size: 16px;
    font-size: 1.6rem;
    padding-top: 1em !important; }

  .contact p {
    margin: 0 !important; }

  .stem-op-ons {
    display: none; }

  .stem-op-ons.mobile {
    display: block; } }
@media screen and (max-width: 767px) and (orientation: landscape) {
  /*=====================================================================
   *
   * Author: Nedbase - www.nedbase.nl
   *
   * Mobile styles (for Landscape only)
   *
   *=====================================================================*/
  body.is-dev:after {
    content: 'mobile-landscape';
    background: dodgerblue; } }
@media screen and (max-width: 767px) and (orientation: portrait) {
  /*=====================================================================
   *
   * Author: Nedbase - www.nedbase.nl
   *
   * Mobile styles (for Portrait only)
   *
   *=====================================================================*/
  body.is-dev:after {
    content: 'mobile-portrait';
    background: lightskyblue; } }
@media print {
  /*=====================================================================
   *
   * Author: Nedbase - www.nedbase.nl
   *
   *=====================================================================*/
  .search,
  .dbdebug,
  nav {
    display: none; }

  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important; }

  /* Black prints faster: h5bp.com/s */
  a, a:visited {
    text-decoration: underline; }

  .texteditor a[href]:after {
    content: " (" attr(href) ")";
    font-family: Arial, sans-serif; }

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

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

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

  thead {
    display: table-header-group; }

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

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

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

  h2, h3 {
    page-break-after: avoid; } }
/* Subsite template overrides */

/*# sourceMappingURL=theme-website.css.map */
