/*
// Nieuwe Pixels - Flexbox Grid v0.7
//
// Built with:
// - Kindling.scss (github.com/timothylong/kindling) - Minimalistic base Flexbox
// - Flexbox-grid.scss (github.com/zemirco/flexbox-grid) - Auto cols, Row/Col padding for nesting
*/
/*
 	LEGACY SUPPORT

	display: -webkit-box;   (OLD - iOS 6-, Safari 3.1-6)
	display: -moz-box; OLD  (Firefox 19- buggy but mostly works)
	display: -ms-flexbox;   (TWEENER - IE 10)
	display: -webkit-flex;  (NEW - Chrome)
*/
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.grid {
  max-width: 1440px;
  margin: auto; }
  .grid.no-gutter [class*=col-], .grid.no--gutter [class*=col-] {
    padding-left: 0;
    padding-right: 0; }
  .grid.outer-padding .row, .grid.with--margins .row {
    margin-left: 0.75rem;
    margin-right: 0.75rem; }

.row {
  /* Legacy */
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  /* Flexbox spec */
  display: flex;
  /* LPXL: Added wrapping */
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap; }

[class*=col-],
.col {
  /* Legacy support */
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  /* Flexbox spec */
  flex: 1;
  padding-left: 0.375rem;
  padding-right: 0.375rem; }
  [class*=col-].no--padding,
  .col.no--padding {
    padding-left: 0;
    padding-right: 0; }

.col-1 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 8.33333%;
  -ms-flex: 0 0 8.33333%;
  flex: 0 0 8.33333%; }

.offset-1 {
  margin-left: 8.33333%; }

.col-2 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 16.66667%;
  -ms-flex: 0 0 16.66667%;
  flex: 0 0 16.66667%; }

.offset-2 {
  margin-left: 16.66667%; }

.col-3 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25%;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%; }

.offset-3 {
  margin-left: 25%; }

.col-4 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.33333%;
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%; }

.offset-4 {
  margin-left: 33.33333%; }

.col-5 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 41.66667%;
  -ms-flex: 0 0 41.66667%;
  flex: 0 0 41.66667%; }

.offset-5 {
  margin-left: 41.66667%; }

.col-6 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%; }

.offset-6 {
  margin-left: 50%; }

.col-7 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 58.33333%;
  -ms-flex: 0 0 58.33333%;
  flex: 0 0 58.33333%; }

.offset-7 {
  margin-left: 58.33333%; }

.col-8 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 66.66667%;
  -ms-flex: 0 0 66.66667%;
  flex: 0 0 66.66667%; }

.offset-8 {
  margin-left: 66.66667%; }

.col-9 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 75%;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%; }

.offset-9 {
  margin-left: 75%; }

.col-10 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 83.33333%;
  -ms-flex: 0 0 83.33333%;
  flex: 0 0 83.33333%; }

.offset-10 {
  margin-left: 83.33333%; }

.col-11 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 91.66667%;
  -ms-flex: 0 0 91.66667%;
  flex: 0 0 91.66667%; }

.offset-11 {
  margin-left: 91.66667%; }

.col-12 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%; }

.offset-12 {
  margin-left: 100%; }

[class*=col-sm] .row,
[class*=col-md] .row {
  /* Legacy support */
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  /* Flexbox spec */
  flex-direction: column;
  /* Legacy support */
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  /* Flexbox spec */
  flex-wrap: nowrap; }

@media only screen and (min-width: 768px) {
  .col-sm-1 {
    /* Legacy support */
    -webkit-box-flex: 0 0 8.33333%;
    -moz-box-flex: 0 0 8.33333%;
    -webkit-flex: 0 0 8.33333%;
    -ms-flex: 0 0 8.33333%;
    /* Flexbox spec */
    flex: 0 0 8.33333%; }
  .offset-sm-1 {
    margin-left: 8.33333%; }
  .col-sm-2 {
    /* Legacy support */
    -webkit-box-flex: 0 0 16.66667%;
    -moz-box-flex: 0 0 16.66667%;
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    /* Flexbox spec */
    flex: 0 0 16.66667%; }
  .offset-sm-2 {
    margin-left: 16.66667%; }
  .col-sm-3 {
    /* Legacy support */
    -webkit-box-flex: 0 0 25%;
    -moz-box-flex: 0 0 25%;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    /* Flexbox spec */
    flex: 0 0 25%; }
  .offset-sm-3 {
    margin-left: 25%; }
  .col-sm-4 {
    /* Legacy support */
    -webkit-box-flex: 0 0 33.33333%;
    -moz-box-flex: 0 0 33.33333%;
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    /* Flexbox spec */
    flex: 0 0 33.33333%; }
  .offset-sm-4 {
    margin-left: 33.33333%; }
  .col-sm-5 {
    /* Legacy support */
    -webkit-box-flex: 0 0 41.66667%;
    -moz-box-flex: 0 0 41.66667%;
    -webkit-flex: 0 0 41.66667%;
    -ms-flex: 0 0 41.66667%;
    /* Flexbox spec */
    flex: 0 0 41.66667%; }
  .offset-sm-5 {
    margin-left: 41.66667%; }
  .col-sm-6 {
    /* Legacy support */
    -webkit-box-flex: 0 0 50%;
    -moz-box-flex: 0 0 50%;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    /* Flexbox spec */
    flex: 0 0 50%; }
  .offset-sm-6 {
    margin-left: 50%; }
  .col-sm-7 {
    /* Legacy support */
    -webkit-box-flex: 0 0 58.33333%;
    -moz-box-flex: 0 0 58.33333%;
    -webkit-flex: 0 0 58.33333%;
    -ms-flex: 0 0 58.33333%;
    /* Flexbox spec */
    flex: 0 0 58.33333%; }
  .offset-sm-7 {
    margin-left: 58.33333%; }
  .col-sm-8 {
    /* Legacy support */
    -webkit-box-flex: 0 0 66.66667%;
    -moz-box-flex: 0 0 66.66667%;
    -webkit-flex: 0 0 66.66667%;
    -ms-flex: 0 0 66.66667%;
    /* Flexbox spec */
    flex: 0 0 66.66667%; }
  .offset-sm-8 {
    margin-left: 66.66667%; }
  .col-sm-9 {
    /* Legacy support */
    -webkit-box-flex: 0 0 75%;
    -moz-box-flex: 0 0 75%;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    /* Flexbox spec */
    flex: 0 0 75%; }
  .offset-sm-9 {
    margin-left: 75%; }
  .col-sm-10 {
    /* Legacy support */
    -webkit-box-flex: 0 0 83.33333%;
    -moz-box-flex: 0 0 83.33333%;
    -webkit-flex: 0 0 83.33333%;
    -ms-flex: 0 0 83.33333%;
    /* Flexbox spec */
    flex: 0 0 83.33333%; }
  .offset-sm-10 {
    margin-left: 83.33333%; }
  .col-sm-11 {
    /* Legacy support */
    -webkit-box-flex: 0 0 91.66667%;
    -moz-box-flex: 0 0 91.66667%;
    -webkit-flex: 0 0 91.66667%;
    -ms-flex: 0 0 91.66667%;
    /* Flexbox spec */
    flex: 0 0 91.66667%; }
  .offset-sm-11 {
    margin-left: 91.66667%; }
  .col-sm-12 {
    /* Legacy support */
    -webkit-box-flex: 0 0 100%;
    -moz-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    /* Flexbox spec */
    flex: 0 0 100%; }
  .offset-sm-12 {
    margin-left: 100%; } }

@media only screen and (min-width: 992px) {
  .col-md-1 {
    /* Legacy support */
    -webkit-box-flex: 0 0 8.33333%;
    -moz-box-flex: 0 0 8.33333%;
    -webkit-flex: 0 0 8.33333%;
    -ms-flex: 0 0 8.33333%;
    /* Flexbox spec */
    flex: 0 0 8.33333%; }
  .offset-md-1 {
    margin-left: 8.33333%; }
  .col-md-2 {
    /* Legacy support */
    -webkit-box-flex: 0 0 16.66667%;
    -moz-box-flex: 0 0 16.66667%;
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    /* Flexbox spec */
    flex: 0 0 16.66667%; }
  .offset-md-2 {
    margin-left: 16.66667%; }
  .col-md-3 {
    /* Legacy support */
    -webkit-box-flex: 0 0 25%;
    -moz-box-flex: 0 0 25%;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    /* Flexbox spec */
    flex: 0 0 25%; }
  .offset-md-3 {
    margin-left: 25%; }
  .col-md-4 {
    /* Legacy support */
    -webkit-box-flex: 0 0 33.33333%;
    -moz-box-flex: 0 0 33.33333%;
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    /* Flexbox spec */
    flex: 0 0 33.33333%; }
  .offset-md-4 {
    margin-left: 33.33333%; }
  .col-md-5 {
    /* Legacy support */
    -webkit-box-flex: 0 0 41.66667%;
    -moz-box-flex: 0 0 41.66667%;
    -webkit-flex: 0 0 41.66667%;
    -ms-flex: 0 0 41.66667%;
    /* Flexbox spec */
    flex: 0 0 41.66667%; }
  .offset-md-5 {
    margin-left: 41.66667%; }
  .col-md-6 {
    /* Legacy support */
    -webkit-box-flex: 0 0 50%;
    -moz-box-flex: 0 0 50%;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    /* Flexbox spec */
    flex: 0 0 50%; }
  .offset-md-6 {
    margin-left: 50%; }
  .col-md-7 {
    /* Legacy support */
    -webkit-box-flex: 0 0 58.33333%;
    -moz-box-flex: 0 0 58.33333%;
    -webkit-flex: 0 0 58.33333%;
    -ms-flex: 0 0 58.33333%;
    /* Flexbox spec */
    flex: 0 0 58.33333%; }
  .offset-md-7 {
    margin-left: 58.33333%; }
  .col-md-8 {
    /* Legacy support */
    -webkit-box-flex: 0 0 66.66667%;
    -moz-box-flex: 0 0 66.66667%;
    -webkit-flex: 0 0 66.66667%;
    -ms-flex: 0 0 66.66667%;
    /* Flexbox spec */
    flex: 0 0 66.66667%; }
  .offset-md-8 {
    margin-left: 66.66667%; }
  .col-md-9 {
    /* Legacy support */
    -webkit-box-flex: 0 0 75%;
    -moz-box-flex: 0 0 75%;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    /* Flexbox spec */
    flex: 0 0 75%; }
  .offset-md-9 {
    margin-left: 75%; }
  .col-md-10 {
    /* Legacy support */
    -webkit-box-flex: 0 0 83.33333%;
    -moz-box-flex: 0 0 83.33333%;
    -webkit-flex: 0 0 83.33333%;
    -ms-flex: 0 0 83.33333%;
    /* Flexbox spec */
    flex: 0 0 83.33333%; }
  .offset-md-10 {
    margin-left: 83.33333%; }
  .col-md-11 {
    /* Legacy support */
    -webkit-box-flex: 0 0 91.66667%;
    -moz-box-flex: 0 0 91.66667%;
    -webkit-flex: 0 0 91.66667%;
    -ms-flex: 0 0 91.66667%;
    /* Flexbox spec */
    flex: 0 0 91.66667%; }
  .offset-md-11 {
    margin-left: 91.66667%; }
  .col-md-12 {
    /* Legacy support */
    -webkit-box-flex: 0 0 100%;
    -moz-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    /* Flexbox spec */
    flex: 0 0 100%; }
  .offset-md-12 {
    margin-left: 100%; } }

.grid--xs {
  max-width: 480px; }

.grid--sm {
  max-width: 768px; }

.grid--md {
  max-width: 992px; }

.grid--lg {
  max-width: 1200px; }

.grid--xlg {
  max-width: 1440px; }

.grid--fluid {
  max-width: 100%; }

.row.justify--flex-start {
  -webkit-justify-content: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start; }

.row.justify--flex-end {
  -webkit-justify-content: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end; }

.row.justify--center {
  -webkit-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.row.justify--space-between {
  -webkit-justify-content: space-between;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.row.justify--space-around {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around; }

.row.align--flex-start {
  /* Legacy support */
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start; }

.row.align--flex-end {
  /* Legacy support */
  -webkit-box-align: end;
  -moz-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end; }

.row.align--flex-center {
  /* Legacy support */
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }

.row.align--baseline {
  /* Legacy support */
  -webkit-box-align: baseline;
  -moz-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline; }

.row.align--flex-stretch {
  /* Legacy support */
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch; }

/*
// Theme
// These are the SCSS files for theming the current site.
*/
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0; }

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block; }

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px; }

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit; }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic; }

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000; }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block; }

/**
 * Add the correct display in IE.
 */
template {
  display: none; }

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none; }

html {
  font-size: 19px; }

body {
  font-size: 100%;
  font-family: 'Calibri', arial, sans-serif;
  color: #003245;
  line-height: 1.5em;
  background-color: #fff; }

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  margin-bottom: 25px;
  font-weight: normal;
  font-family: sans-serif;
  letter-spacing: 0;
  text-rendering: optimizeLegibility; }

h1 {
  margin-bottom: 5px; }

p {
  font-size: 1.05em; }

a {
  color: #333;
  text-decoration: underline; }
  a:hover {
    text-decoration: none; }

img {
  display: block; }

form span {
  display: block;
  margin-bottom: 5px; }

form input[type="text"],
form input[type="email"],
form input[type="password"] {
  padding: 11px 24px;
  width: 100%;
  border: 1px solid #aaa; }

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

.img__fullwidth {
  width: 100%;
  height: auto; }

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

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

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

.list__inline {
  margin: 0;
  padding: 0; }
  .list__inline li {
    display: inline; }

.button {
  padding: 11px 19px;
  border-radius: 1px;
  display: inline-block;
  text-decoration: none;
  font-size: 1em;
  border: 1px solid transparent; }
  .button.button__primary {
    color: #fff;
    background-color: #00A3E0;
    border: 1px solid inherit; }
    .button.button__primary:hover {
      color: #00A3E0;
      background-color: #fff; }

.grid {
  padding-left: 0.75rem;
  padding-right: 0.75rem; }

.introductie {
  text-align: center; }
  .introductie .row {
    min-height: 90vh; }
  .introductie h1 {
    line-height: 1.3em;
    color: #FFD600; }
  .introductie p {
    color: #111; }
  .introductie a {
    color: inherit; }
  .introductie img {
    display: inline-block; }

.copyright {
  padding-top: 1vh;
  font-size: 0.9em; }
