/* Mixin */
/*
 * Mixin for media breakpoints
 * See _variables.scss for breakpoint points
 * usage example:
     body {
      @include media('small') { color:#ffff00; }
      @include media('medium') { color:orange; }
      @include media('large') { color:#ff0000; }
    }
 */
@media (min-width: 200px) and (max-width: 640px) {
  .hide-small {
    display: none;
  }
}

@media (min-width: 640px) and (max-width: 1024px) {
  .hide-medium {
    display: none;
  }
}

@media (min-width: 1024px) {
  .hide-large {
    display: none;
  }
}

@media (min-width: 640px) and (max-width: 1024px) {
  .show-small {
    display: none;
  }
}
@media (min-width: 1024px) {
  .show-small {
    display: none;
  }
}

@media (min-width: 200px) and (max-width: 640px) {
  .show-medium {
    display: none;
  }
}
@media (min-width: 1024px) {
  .show-medium {
    display: none;
  }
}

@media (min-width: 200px) and (max-width: 640px) {
  .show-large {
    display: none;
  }
}
@media (min-width: 640px) and (max-width: 1024px) {
  .show-large {
    display: none;
  }
}

/*
 * ?
 */
/**
 * Adds left and right margin or padding to an element
 * @param  {margin/padding} type: margin        set whether it is a margin or padding
 */
/**
 * This mixin disables the ability to select text
 */
/**
 * This mixin adds a white pointing arrow to an element
 * Note: The element must have a white background and must not have overflow:hidden
 *
 * Example use: @include box-arrow(top, relative, 45px);
 *
 * @param $arrow-position           [The position of the arrow relative to the element. Valid positions are: left, right, top, bottom. Default: left]
 * @param $parent-position          [The positioning of the element. Valid positioning: relative, absolute, fixed. Default: relative]
 * @param $size                     [The size of the arrow. Example of valid sizes: 45px, 2rem, 5.3em. Default value: 30px]
 */
.gradient-d-t {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 25%, rgba(0, 0, 0, 0.5) 100%);
}

/**
 * A helper to truncate text, add class to html element to auto truncate text
 */
.truncate {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
}

@media (min-width: 200px) and (max-width: 640px) {
  .truncate-small {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    word-wrap: break-word;
    text-overflow: ellipsis;
  }
}

@media (min-width: 640px) and (max-width: 1024px) {
  .truncate-medium {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    word-wrap: break-word;
    text-overflow: ellipsis;
  }
}

@media (min-width: 1024px) {
  .truncate-large {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    word-wrap: break-word;
    text-overflow: ellipsis;
  }
}

/*! normalize.css v2.1.3 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block;
}

/**
 * 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.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 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;
}

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

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: 0 none !important;
}

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

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

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

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

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

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

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

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/**
 * 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.
 */
img {
  border: 0;
}

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

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * 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.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}

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

/**
 * 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 Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
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;
}

/**
 * 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 */
}

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

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

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

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

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

.clearfix:after {
  content: '';
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}

@font-face {
  font-family: "NPOsansLight";
  src: url(/bundles/wetenschappublicationbundle/fonts/npo_sans/npo_sans_regular.eot);
  src: url(/bundles/wetenschappublicationbundle/fonts/npo_sans/npo_sans_regular.eot?#iefix) format('embedded-opentype'), url(/bundles/wetenschappublicationbundle/fonts/npo_sans/npo_sans_regular.svg) format('svg'), url(/bundles/wetenschappublicationbundle/fonts/npo_sans/npo_sans_regular.ttf) format('truetype'), url(/bundles/wetenschappublicationbundle/fonts/npo_sans/npo_sans_regular.woff) format('woff');
}
@font-face {
  font-family: "NPOsansBold";
  src: url(/bundles/wetenschappublicationbundle/fonts/npo_sans/npo_sans_bold.eot);
  src: url(/bundles/wetenschappublicationbundle/fonts/npo_sans/npo_sans_bold.eot?#iefix) format('embedded-opentype'), url(/bundles/wetenschappublicationbundle/fonts/npo_sans/npo_sans_bold.svg) format('svg'), url(/bundles/wetenschappublicationbundle/fonts/npo_sans/npo_sans_bold.ttf) format('truetype'), url(/bundles/wetenschappublicationbundle/fonts/npo_sans/npo_sans_bold.woff) format('woff');
}
* {
  box-sizing: border-box;
}

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

html {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 93.8%;
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: transparent;
  /* For some Androids */
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

iframe {
  max-width: 100%;
}

h1, .h1 {
  font-family: NPOsansBold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  margin: 1.4rem 0;
  line-height: 3.192rem;
}
@media (max-width: 640px) {
  h1, .h1 {
    font-size: 3.5rem;
    margin: 1.75rem 0;
    line-height: 3.99rem;
  }
}

h2, .h2, .featured-programs .title, .tabs-block .title, .special-related-specials .title {
  font-family: NPOsansBold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin: 1rem 0;
  line-height: 2.28rem;
}
@media (max-width: 640px) {
  h2, .h2, .featured-programs .title, .tabs-block .title, .special-related-specials .title {
    font-size: 2.5rem;
    margin: 1.25rem 0;
    line-height: 2.85rem;
  }
}

h3, .h3, .indepth-content.empty:after {
  font-family: NPOsansBold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.733rem;
  margin: 0.8665rem 0;
  line-height: 1.97562rem;
}
@media (max-width: 640px) {
  h3, .h3, .indepth-content.empty:after {
    font-size: 2.16625rem;
    margin: 1.08313rem 0;
    line-height: 2.46953rem;
  }
}

h4, .h4, .dossier-list ul.thelist.compact li h2 {
  font-family: NPOsansBold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  margin: 0.8rem 0;
  line-height: 1.824rem;
}
@media (max-width: 640px) {
  h4, .h4, .dossier-list ul.thelist.compact li h2 {
    font-size: 2rem;
    margin: 1rem 0;
    line-height: 2.28rem;
  }
}

h5, .h5 {
  font-family: NPOsansBold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0.6rem 0;
  line-height: 1.368rem;
}
@media (max-width: 640px) {
  h5, .h5 {
    font-size: 1.5rem;
    margin: 0.75rem 0;
    line-height: 1.71rem;
  }
}

h6, .h6 {
  font-family: NPOsansBold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin: 0.5rem 0;
  line-height: 1.14rem;
}
@media (max-width: 640px) {
  h6, .h6 {
    font-size: 1.25rem;
    margin: 0.625rem 0;
    line-height: 1.425rem;
  }
}

a {
  text-decoration: none;
  outline: 0;
  transition: color 200ms ease, background-color 200ms ease;
  color: #079cdd;
}
a:hover, a:focus {
  text-decoration: none;
}

p, .responsive-size, .media-intro .metadata {
  margin: 1.667rem 0;
  font-size: 1rem;
  line-height: 1.667rem;
}
p > a, .responsive-size > a, .media-intro .metadata > a {
  text-decoration: underline;
}
p > a:hover, p > a:focus, .responsive-size > a:hover, .media-intro .metadata > a:hover, .responsive-size > a:focus, .media-intro .metadata > a:focus {
  text-decoration: underline;
}
@media (max-width: 640px) {
  p, .responsive-size, .media-intro .metadata {
    font-size: 16px;
    line-height: 24px;
    margin: 10px 0;
  }
}

h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a {
  display: inherit;
  color: inherit;
}

ul,
ol {
  margin: 0;
  padding-left: 0;
}

dl,
dd {
  margin: 0;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

img {
  vertical-align: middle;
}

#navigation {
  width: 100%;
  height: 64px;
  line-height: 64px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  overflow: visible;
  box-shadow: 0px 6px 11px -14px #222;
  -webkit-box-shadow: 0px 6px 11px -10px #222;
  -moz-box-shadow: 0px 6px 11px -14px #222;
}
@media (min-width: 200px) and (max-width: 640px) {
  #navigation {
    overflow: hidden;
  }
}
@media (min-width: 200px) and (max-width: 640px) {
  #navigation {
    box-shadow: 0px 6px 11px -14px #222;
    -webkit-box-shadow: 0px 6px 11px -10px #222;
    -moz-box-shadow: 0px 6px 11px -14px #222;
    background-color: white;
  }
}
#navigation .wrapper {
  background: white;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0px 6px 11px -14px #222;
  -webkit-box-shadow: 0px 6px 11px -10px #222;
  -moz-box-shadow: 0px 6px 11px -14px #222;
  max-height: 100%;
  overflow: visible;
}
@media (min-width: 200px) and (max-width: 640px) {
  #navigation .wrapper {
    padding-top: 64px;
    overflow-x: scroll;
  }
}
#navigation .menu-header {
  height: 64px;
  line-height: 64px;
  display: block;
  width: 100%;
  text-align: left;
}
@media (min-width: 200px) and (max-width: 640px) {
  #navigation .menu-header {
    text-align: left;
    position: fixed;
    overflow: hidden;
    top: 0px;
    background: white;
  }
}
@media (min-width: 640px) and (max-width: 1024px) {
  #navigation .menu-header {
    text-align: left;
  }
}
#navigation .menu-header .branding {
  display: inline-block;
  margin-left: 50px;
}
@media (min-width: 640px) and (max-width: 1024px) {
  #navigation .menu-header .branding {
    margin-left: 5px;
  }
}
#navigation .menu-header .branding img {
  margin: 10px;
}
@media (max-width: 1024px) {
  #navigation .menu-header .branding img {
    height: 50px;
  }
}
@media (max-width: 715px) {
  #navigation .menu-header .branding img {
    height: 35px;
  }
}
@media (min-width: 200px) and (max-width: 640px) {
  #navigation .menu-header .branding img {
    height: 40px;
    position: absolute;
    top: 50%;
    top: 23px;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
  }
}
#navigation .menu-header h1 {
  display: inline-block;
  font-size: 12px;
  font-size: 3.8vw;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  line-height: 46px;
  font-weight: normal;
  color: #079cdd;
  vertical-align: middle;
  padding: 0 10px;
}
@media (min-width: 640px) and (max-width: 1024px) {
  #navigation .menu-header h1 {
    display: none;
  }
}
@media (min-width: 1024px) {
  #navigation .menu-header h1 {
    display: none;
  }
}
#navigation .menu-header .menu-button-toggle {
  display: inline-block;
  padding: 8px;
  line-height: 26px;
  border-radius: 6px;
  border: 1px solid #d2d2d2;
  margin: 0 10px;
  width: 42px;
  height: 42px;
}
#navigation .menu-header .menu-button-toggle:focus {
  background: #d2d2d2;
  cursor: pointer;
}
@media (min-width: 640px) and (max-width: 1024px) {
  #navigation .menu-header .menu-button-toggle {
    display: none;
  }
}
@media (min-width: 1024px) {
  #navigation .menu-header .menu-button-toggle {
    display: none;
  }
}
#navigation .menu-header .menu-button-toggle img {
  width: 100%;
  height: 100%;
}
@media (min-width: 200px) and (max-width: 640px) {
  #navigation .menu-header .no-small {
    display: none !important;
  }
}
#navigation .menu-header .menu-list {
  display: inline-block;
  position: relative;
  top: -7px;
}
@media (min-width: 200px) and (max-width: 640px) {
  #navigation .menu-header .menu-list {
    display: none;
  }
}
@media (max-width: 1024px) {
  #navigation .menu-header .menu-list {
    top: 0px;
    margin-left: 20px;
  }
}
@media (max-width: 805px) {
  #navigation .menu-header .menu-list {
    top: 0px;
    margin-left: 0px;
  }
}
#navigation .menu-header .menu-list li {
  display: inline-block;
}
#navigation .menu-header .menu-list li a {
  display: inline-block;
  line-height: 64px;
  padding: 0 20px;
}
@media (min-width: 640px) and (max-width: 1024px) {
  #navigation .menu-header .menu-list li a {
    padding: 0 10px;
  }
}
#navigation .menu-header .menu-list li .search-icon, #navigation .menu-header .menu-list li #search-icon {
  width: 25px;
  height: 25px;
  position: absolute;
  margin-top: -19px;
  display: inline-block;
}
#navigation .menu-header .menu-list li .search-icon:hover, #navigation .menu-header .menu-list li #search-icon:hover {
  cursor: pointer;
  fill: #00a7f0;
}
#navigation .hidden-menu-list {
  border-top: 2px solid #d2d2d2;
}
@media (min-width: 640px) and (max-width: 1024px) {
  #navigation .hidden-menu-list {
    display: none;
  }
}
@media (min-width: 1024px) {
  #navigation .hidden-menu-list {
    display: none;
  }
}
#navigation .hidden-menu-list a {
  display: block;
  width: 100%;
  line-height: 45px !important;
  border-bottom: 2px solid #d2d2d2;
  color: #079cdd;
  padding: 0 40px;
  background-color: #f4f4f4;
  text-align: center;
  letter-spacing: 2px;
}
#navigation .hidden-menu-list a:focus {
  background: #d2d2d2;
  cursor: pointer;
  font-weight: bold;
}
#navigation a:link {
  color: #242424;
}
#navigation a:visited {
  color: #242424;
}
#navigation a:hover, #navigation a:hover .menu-reactie {
  color: #00a7f0;
}
#navigation a:active, #navigation a:active .menu-reactie {
  color: #00a7f0;
}
#navigation .menu-reactie {
  color: #999999;
}
#navigation .menu-reactie-selected {
  color: #00a7f0;
}
#navigation .selected {
  color: #00a7f0 !important;
}

#npo-button {
  position: relative;
  z-index: 999;
  margin: 0px 13px 0px 20px;
  height: 31px;
  width: 33px;
  float: right;
}
@media (max-width: 762px) {
  #npo-button {
    display: none;
  }
}

#npo-widget-button .npo-widget-toggle {
  opacity: 0;
}

#npo-button img.vector-replacement,
#npo-widget-button {
  width: 33px;
  position: absolute;
  left: 0px;
  top: 16px;
  float: right;
}

/*! responsive-nav.js 1.0.34 by @viljamis */
.hide-top-menu {
  display: none;
}

.main-navigation {
  width: 100%;
  background-color: #FFF;
  display: block;
}

.fixed-wrapper {
  width: 100%;
  max-width: 1280px;
}

.nav-collapse ul {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 328px;
  display: block;
  list-style: none;
}

.nav-collapse li {
  width: 100%;
  float: none;
  font-size: 1.3rem;
  color: #079cdd;
  border-bottom: 2px solid #d2d2d2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (min-width: 200px) and (max-width: 640px) {
  .nav-collapse li {
    background-color: #f4f4f4;
  }
  .nav-collapse li a {
    line-height: 65px;
  }
}
.nav-collapse li a {
  padding-left: 40px;
  display: block;
}
.nav-collapse li img {
  display: none;
}
.nav-collapse li a:link {
  color: #242424;
}
.nav-collapse li a:visited {
  color: #242424;
}
.nav-collapse li a:hover, .nav-collapse li a:hover .menu-reactie {
  color: #00a7f0;
}
.nav-collapse li a:active, .nav-collapse li a:active .menu-reactie {
  color: #00a7f0;
}
.nav-collapse li .menu-reactie {
  color: #999999;
}
.nav-collapse li .menu-reactie-selected {
  color: #00a7f0;
}
.nav-collapse li .selected {
  color: #00a7f0 !important;
}

.js .nav-collapse {
  clip: rect(0 0 0 0);
  max-height: 0;
  position: absolute;
  display: block;
  overflow: hidden;
  zoom: 1;
}

.nav-collapse.opened {
  max-height: 9999px;
}

.nav-toggle {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  display: block;
  background-color: #fff;
  height: 82px;
  float: right;
  position: fixed;
  width: 100%;
  z-index: 999;
  box-shadow: 0px 0px 9px 1px rgba(173, 173, 173, 0.4);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.nav-toggle img {
  height: 35px;
  margin-left: 20px;
  margin-top: 24px;
  float: left;
}

.npo-title-mobile-nav {
  font-size: 18px;
  position: fixed;
  z-index: 999;
  margin: 0;
  text-align: center;
  line-height: 80px;
  width: 100%;
  font-family: NPOsansLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.npo-title-mobile-nav .logo {
  float: none;
  margin: 0 0 0 40px;
}
.npo-title-mobile-nav span {
  margin-left: 5px;
}

.search-mobile-nav {
  position: fixed;
  z-index: 999;
  margin: 0px;
  margin-top: 24px;
  right: 16px;
}
.search-mobile-nav img {
  height: 30px;
}

.space-fixed-nav {
  height: 67px;
}

@media screen and (min-width: 641px) {
  .menu-reactie {
    color: #999999;
  }

  .logo-wetenschap {
    display: block;
    float: left;
    margin-top: 16px;
    margin-left: 5.3%;
    margin-right: 3.3%;
    margin-bottom: -41px;
    position: fixed;
    z-index: 1000;
  }

  .nav-collapse ul {
    position: fixed;
    top: 0;
    background-color: #fff;
    z-index: 999;
    width: 100%;
    max-width: 1280px;
    text-align: center;
    height: 81px;
    padding-top: 34px;
    padding-left: 22%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 6px 9px -9px #222;
  }

  .nav-collapse li {
    float: left;
    font-size: 1.05rem;
    height: 20px;
    width: 16%;
    padding-top: 0px;
    border-style: none;
  }
  .nav-collapse li a {
    padding-left: 0%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .nav-collapse li img {
    display: block;
  }
  .nav-collapse li .search-icon, .nav-collapse li #search-icon {
    width: 30px;
    height: 30px;
    position: absolute;
    margin-left: -30px;
    margin-top: -7px;
    display: inline-block;
  }
  .nav-collapse li .search-icon:hover, .nav-collapse li #search-icon:hover {
    cursor: pointer;
    fill: #00a7f0;
  }

  .js .nav-collapse {
    position: relative;
  }

  .js .nav-collapse.closed {
    max-height: none;
  }

  .nav-toggle {
    display: none;
  }

  .space-fixed-nav {
    height: 67px;
  }

  .npo-title-mobile-nav {
    display: none;
  }

  .search-mobile-nav {
    display: none;
  }
}
@media (min-width: 200px) and (max-width: 640px) {
  .search-icon, #search-icon {
    width: 19px;
    height: 31px;
    position: relative;
    float: right;
    margin-left: 0;
    margin-top: 15px;
    margin-right: 20px;
    display: inline-block;
  }

  .search-icon:hover, #search-icon:hover {
    cursor: pointer;
    fill: #00a7f0;
  }
}
/**
 * BxSlider v4.1.2 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2014
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */
/** RESET AND LAYOUT
===================================*/
.bx-wrapper {
  position: relative;
  margin: 0 auto 60px;
  padding: 0;
}
.bx-wrapper img {
  max-width: 100%;
  display: block;
}
.bx-wrapper .bx-viewport {
  left: 0;
  transform: translatez(0);
}
.bx-wrapper .bx-pager, .bx-wrapper .bx-controls-auto {
  position: absolute;
  bottom: 30px;
  width: 100%;
}
.bx-wrapper .bx-loading {
  min-height: 50px;
  background: url("images/bx_loader.gif") center center no-repeat #fff;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 888;
}
.bx-wrapper .bx-pager {
  text-align: center;
  font-weight: bold;
  padding-top: 20px;
}
.bx-wrapper .bx-pager .bx-pager-item {
  display: inline-block;
}
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
  display: inline-block;
}
.bx-wrapper .bx-pager.bx-default-pager a {
  font-size: 0;
  color: transparent;
  display: block;
  width: 14px;
  height: 14px;
  position: relative;
  margin: 0 5px;
  outline: 0;
}
.bx-wrapper .bx-pager.bx-default-pager a:after {
  transition: all 200ms ease;
  display: block;
  content: '';
  width: 6px;
  height: 6px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.5;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover:after {
  opacity: 0.7;
}
.bx-wrapper .bx-pager.bx-default-pager a.active:after {
  width: 10px;
  height: 10px;
  opacity: 1;
}
.bx-wrapper .bx-prev {
  left: 0px;
  background: url("images/controls.png") no-repeat 0 -32px;
}
.bx-wrapper .bx-prev:hover {
  background-position: 0 0;
}
@media (min-width: 200px) and (max-width: 640px) {
  .bx-wrapper .bx-prev {
    display: none;
  }
}
.bx-wrapper .bx-next {
  right: 10px;
  background: url("images/controls.png") no-repeat -43px -32px;
}
.bx-wrapper .bx-next:hover {
  background-position: -43px 0;
}
@media (min-width: 200px) and (max-width: 640px) {
  .bx-wrapper .bx-next {
    display: none;
  }
}
.bx-wrapper .bx-controls-direction a {
  opacity: 1;
  transition: opacity 500ms ease;
  top: 45%;
  margin: 0;
  height: 60px;
  width: 60px;
  cursor: pointer;
  background: #079cdd url("/bundles/wetenschappublicationbundle/images/icon-arrow-white.png") no-repeat;
  outline: 0;
  position: absolute;
  text-indent: -9999px;
  z-index: 888;
}
.bx-wrapper .bx-controls-direction a.disabled {
  display: none;
}
.bx-wrapper .bx-controls-direction a.bx-prev {
  border-radius: 0 5px 5px 0;
  background-position: 18px 15px;
  left: 0;
}
.bx-wrapper .bx-controls-direction a.bx-prev:hover {
  background-position: 18px -70px;
}
.bx-wrapper .bx-controls-direction a.bx-next {
  border-radius: 5px 0 0 5px;
  background-position: -86px 15px;
  right: 0;
}
.bx-wrapper .bx-controls-direction a.bx-next:hover {
  background-position: -86px -70px;
}
.bx-wrapper .bx-controls-direction a.disabled {
  display: block;
  visibility: hidden;
  opacity: 0;
}
.bx-wrapper .bx-controls-auto {
  text-align: center;
}
.bx-wrapper .bx-controls-auto .bx-start {
  display: block;
  text-indent: -9999px;
  width: 10px;
  height: 11px;
  outline: 0;
  background: url("images/controls.png") -86px -11px no-repeat;
  margin: 0 3px;
}
.bx-wrapper .bx-controls-auto .bx-start:hover, .bx-wrapper .bx-controls-auto .bx-start.active {
  background-position: -86px 0;
}
.bx-wrapper .bx-controls-auto .bx-stop {
  display: block;
  text-indent: -9999px;
  width: 9px;
  height: 11px;
  outline: 0;
  background: url("images/controls.png") -86px -44px no-repeat;
  margin: 0 3px;
}
.bx-wrapper .bx-controls-auto .bx-stop:hover, .bx-wrapper .bx-controls-auto .bx-stop.active {
  background-position: -86px -33px;
}
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
  text-align: left;
  width: 80%;
}
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
  right: 0;
  width: 35px;
}
.bx-wrapper .bx-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #666 \9;
  background: rgba(80, 80, 80, 0.75);
  width: 100%;
}
.bx-wrapper .bx-caption span {
  color: #fff;
  font-family: Arial;
  display: block;
  font-size: .85em;
  padding: 10px;
}

.thumb-label {
  position: absolute;
  top: 16px;
  left: -2px;
  color: #fff;
  padding: 6px 18px 6px 8px;
  font-family: NPOsansLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.thumb-label.special {
  background: transparent url("/bundles/wetenschappublicationbundle/images/label-bg-special.svg") no-repeat right center;
}
.thumb-label.dossier {
  background: transparent url("/bundles/wetenschappublicationbundle/images/label-bg-dossier.svg") no-repeat right center;
}

.thumb-image {
  position: relative;
}
.thumb-image .image {
  height: 100%;
  padding-top: 75.86207%;
  border-radius: 7px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.thumb-image .image img {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
}
.thumb-image .image:after {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(1, 21, 30, 0) 1%, rgba(1, 21, 30, 0) 60%, #01151e 92%, #01151e 100%);
}
.thumb-image .overlay {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 1;
  color: #fff;
  margin: 0 20px 0 0;
}
.thumb-image .media {
  border-radius: 7px 0 7px 0;
}

.column .advertising {
  float: right;
  padding-top: 30px;
}
@media screen and (min-width: 1024px) {
  .column .advertising {
    padding-right: 15%;
  }
}
@media screen and (max-width: 640px) {
  .column .advertising {
    display: none;
  }
}
.column .advertising p {
  color: #999999;
  font-style: italic;
  line-height: 0.4em;
  text-indent: 110px;
}
@media screen and (max-width: 768px) {
  .column .advertising img {
    float: right;
    width: 90%;
  }
}

.social-block {
  background-color: #079cdd;
  background: url("/bundles/wetenschappublicationbundle/images/background-blue-diamond.jpg");
  text-align: center;
  padding: 30px 60px;
  position: relative;
}
@media (max-width: 640px) {
  .social-block {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 641px) and (max-width: 768px) {
  .social-block {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .social-block {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1025px) {
  .social-block {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 200px) and (max-width: 640px) {
  .social-block {
    padding: 30px 15px;
  }
}
.social-block:after {
  content: '';
  display: block;
  position: absolute;
  width: 70px;
  height: 30px;
  margin: 0 auto auto;
  top: -1px;
  left: 0;
  right: 0;
  background: transparent url("/bundles/wetenschappublicationbundle/images/lip-grey.svg") no-repeat center top;
}
.social-block h3 {
  color: #004463;
  margin-bottom: 0;
}
@media (min-width: 200px) and (max-width: 640px) {
  .social-block h3 {
    font-size: 2.5rem;
    margin-top: 0px;
  }
}
.social-block p {
  margin-top: 10px;
  font-family: NPOsansLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #006b99;
  margin-bottom: 20px;
}
@media (min-width: 200px) and (max-width: 640px) {
  .social-block p {
    margin-top: 0px;
    margin-bottom: 10px;
    font-size: 1.4rem;
  }
}
.social-block ul.slides {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.social-block ul.slides li a {
  color: #fff;
  text-decoration: underline;
}
.social-block ul.slides li .tweet {
  text-align: center;
  font-family: NPOsansLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  max-width: 960px;
  line-height: 1.8rem;
  margin: 0 auto;
  color: #fff;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .social-block ul.slides li .tweet {
    font-size: 1.3rem;
    margin-top: 20px;
  }
}
.social-block ul.slides li .tweet a {
  text-decoration: none;
}
.social-block ul.slides li .tweet i {
  color: transparent;
  display: inline;
  padding: 0 7px;
  background-size: 100% auto;
  vertical-align: top;
  margin: 4px 0;
}
.social-block ul.slides li .tweet i:first-child {
  background: transparent url("/bundles/wetenschappublicationbundle/images/quote-open-darkblue.svg") no-repeat center top;
}
.social-block ul.slides li .tweet i:last-child {
  background: transparent url("/bundles/wetenschappublicationbundle/images/quote-close-darkblue.svg") no-repeat center top;
}
.social-block ul.slides li .tweeter {
  margin: 30px auto 0;
  width: 104px;
  height: 104px;
}
@media (max-width: 640px) {
  .social-block ul.slides li .tweeter {
    margin: 20px auto 0 auto;
    transform: scale(0.6, 0.6) translateX(-100%);
  }
}
.social-block .bx-wrapper .bx-controls .bx-pager {
  bottom: -70px;
}

.social-links {
  margin-top: 45px;
  margin-bottom: 45px;
  display: table;
  width: 100%;
  text-align: center;
}
@media (max-width: 640px) {
  .social-links {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 641px) and (max-width: 768px) {
  .social-links {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .social-links {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1025px) {
  .social-links {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.social-links ul {
  list-style-type: none;
  display: table-row;
}
.social-links ul li {
  display: table-cell;
  padding: 0 1rem;
  width: 33.33%;
}
.social-links ul li .image {
  width: 26px;
  height: 26px;
}
.social-links ul li .title {
  font-family: NPOsansBold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #079cdd;
  margin-bottom: 0;
}
.social-links ul li .cta {
  font-family: NPOsansLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #999999;
  font-size: 1.2rem;
  line-height: 2rem;
  font-style: italic;
  margin: 0;
}
@media (max-width: 640px) {
  .social-links {
    text-align: left;
    display: block;
    font-family: NPOsansLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
  }
  .social-links ul {
    display: block;
  }
  .social-links ul li {
    display: inline-block;
    margin-bottom: 10px;
    width: 100%;
    padding: 0px;
  }
  .social-links ul li .image {
    float: left;
    margin: 10px 30px 40px 6px;
    width: 36px;
    height: 36px;
  }
  .social-links ul li .cta {
    font-size: 1.2rem;
    line-height: 1.5rem;
    margin-top: 5px;
  }
}

.media {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 7px 0 0 0;
  background-color: rgba(0, 0, 0, 0.7);
  font-size: 0;
  color: transparent;
}
.media.video {
  background-image: url("/bundles/wetenschappublicationbundle/images/icon-video.svg");
}
.media.link {
  background-image: url("/bundles/wetenschappublicationbundle/images/icon-link.svg");
}
.media.audio {
  background-image: url("/bundles/wetenschappublicationbundle/images/icon-audio.svg");
}
.media.article {
  background-image: url("/bundles/wetenschappublicationbundle/images/icon-article.svg");
}
.media.discuss {
  background-image: url("/bundles/wetenschappublicationbundle/images/icon-discuss.svg");
}
.media.participate {
  background-image: url("/bundles/wetenschappublicationbundle/images/icon-participate.svg");
}
.media.participate {
  background-image: url("/bundles/wetenschappublicationbundle/images/icon-puzzle.svg");
}
.media.puzzle {
  background-image: url("/bundles/wetenschappublicationbundle/images/icon-puzzle-alt.svg");
}

.icon {
  display: inline-block;
  width: 34px;
  height: 34px;
}
.icon.social {
  border-radius: 50%;
}
.icon.social.twitter {
  background: #11aaf4 url("/bundles/wetenschappublicationbundle/images/icon-social-twitter-white.svg") no-repeat center center;
  background-size: 50% 50%;
}
.icon.social.facebook {
  background: #3b579d url("/bundles/wetenschappublicationbundle/images/icon-social-facebook-white.svg") no-repeat center center;
  background-size: 50% 50%;
}
.icon.social.email {
  background: #079cdd url("/bundles/wetenschappublicationbundle/images/icon-social-email-white.svg") no-repeat center center;
  background-size: 50% 50%;
}

ul.toggle-widget {
  list-style-type: none;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
ul.toggle-widget li {
  padding: 10px 15px 0;
  height: 40px;
  box-sizing: border-box;
  cursor: pointer;
  border: 1px solid transparent;
  background-color: rgba(0, 0, 0, 0.06);
  float: left;
  margin: 0;
  transition: all 200ms ease-out;
  color: #000;
}
ul.toggle-widget li:first-child {
  border-radius: 5px 0 0 5px;
}
ul.toggle-widget li:last-child {
  border-radius: 0 5px 5px 0;
}
ul.toggle-widget li:hover, ul.toggle-widget li:focus {
  color: #ac56bc;
}
ul.toggle-widget li.selected {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.25);
  cursor: default;
  color: #874593;
}
ul.toggle-widget li.selected:hover, ul.toggle-widget li.selected:focus {
  color: #874593;
}
ul.toggle-widget li:last-child:after {
  content: '';
  position: absolute;
  display: none;
  opacity: 1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.8);
  cursor: default;
  transition: opacity 200ms ease;
}
ul.toggle-widget.disabled {
  position: relative;
}
ul.toggle-widget.disabled li:last-child:after {
  display: block;
  opacity: 1;
}

ul.tabs-widget {
  list-style-type: none;
  padding: 0 0 0 35px;
  margin: 0 0 0 -6px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  position: relative;
}
ul.tabs-widget li {
  padding: 18px 35px 0 30px;
  box-sizing: border-box;
  cursor: pointer;
  background-color: #d2d2d2;
  display: inline-block;
  width: 180px;
  height: 60px;
  margin: 0 0 0 -35px;
  color: #874593;
  font-family: NPOsansBold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: transparent url("/bundles/wetenschappublicationbundle/images/tabs-background.svg") no-repeat bottom center;
  position: relative;
  font-size: 1.2rem;
  z-index: 1;
}
@media (max-width: 640px) {
  ul.tabs-widget li {
    font-size: 1.6rem;
    padding-top: 16px;
  }
}
ul.tabs-widget li:hover, ul.tabs-widget li:focus {
  color: #ac56bc;
}
ul.tabs-widget li.selected {
  background-position: top center;
  cursor: default;
  color: #000;
  z-index: 2;
}
ul.tabs-widget li.selected:hover, ul.tabs-widget li.selected:focus {
  color: #000;
}
ul.tabs-widget.disabled:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #f1f1f1;
  opacity: 0.8;
  z-index: 3;
}

.dropdown-menu {
  position: relative;
  cursor: pointer;
  z-index: 1;
  display: inline-block;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /*===============================================
  =            Custom styled dropdown (e.g. on search page)            =
  ===============================================*/
  /*-----  End of Custom styled dropdown (e.g. on search page)  ------*/
}
.dropdown-menu .current {
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  padding: 10px 2.4rem 0 1rem;
  height: 40px;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #874593;
  position: relative;
}
.dropdown-menu .current:before {
  content: '';
  display: block;
  right: 1rem;
  top: 0;
  bottom: 0;
  position: absolute;
  background: transparent url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHdpZHRoPSIxNnB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCAxNiAxMCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTYgMTAiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggZmlsbD0iIzg3NDU5MyIgZD0iTTEyLjczLDEuMTVsLTAuNTYsMC41NmwtMy43LDMuN2MtMC4yNiwwLjI2LTAuNjcsMC4yNi0wLjkzLDBsLTMuNy0zLjdMMy4yNywxLjE1DQoJQzIuMzksMC4yNywwLjksMC44OSwwLjksMi4xM2MwLDAuMzcsMC4xNSwwLjcyLDAuNDEsMC45OGw1Ljc3LDUuNzdjMC41MSwwLjUxLDEuMzUsMC41MSwxLjg2LDBsNS43Ny01Ljc3DQoJYzAuMjYtMC4yNiwwLjQxLTAuNjIsMC40MS0wLjk4QzE1LjEsMC44OSwxMy42MSwwLjI3LDEyLjczLDEuMTV6Ii8+DQo8L3N2Zz4NCg==") no-repeat center center;
  background-size: 100%;
  margin-top: auto;
  margin-bottom: auto;
  width: 12px;
  height: 12px;
  transition: transform 200ms ease-out;
}
.dropdown-menu .current:hover {
  color: #ac56bc;
}
.dropdown-menu .list-container {
  overflow: hidden;
  max-height: 0;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 100%;
  transition: max-height 500ms ease-out;
  z-index: 2;
  margin-top: 1px;
}
.dropdown-menu .list-container ul {
  list-style-type: none;
  padding: 0;
}
.dropdown-menu .list-container ul li {
  background-color: #f1f1f1;
  white-space: nowrap;
  overflow: hidden;
  border: 1px solid #f1f1f1;
}
.dropdown-menu .list-container ul li a {
  color: #000;
  display: block;
  padding: 7px 14px;
}
.dropdown-menu .list-container ul li:hover, .dropdown-menu .list-container ul li:focus {
  color: #fff;
}
.dropdown-menu .list-container ul li:hover a, .dropdown-menu .list-container ul li:focus a {
  color: #ac56bc;
}
.dropdown-menu .list-container ul li:first-child {
  border-radius: 5px 5px 0 0;
}
.dropdown-menu .list-container ul li:last-child {
  border-radius: 0 0 5px 5px;
}
.dropdown-menu .list-container ul li.selected {
  cursor: default;
  background-color: #fff;
  border-color: rgba(0, 0, 0, 0.25);
}
.dropdown-menu .list-container ul li.selected a {
  cursor: default;
  color: #874593;
}
.dropdown-menu .list-container ul li.selected a:hover, .dropdown-menu .list-container ul li.selected a:focus {
  color: #874593;
}
.dropdown-menu.expanded {
  overflow: visible;
}
.dropdown-menu.expanded .current:after {
  transform: rotate(-180deg);
}
.dropdown-menu.expanded .list-container {
  max-height: 500px;
}
.dropdown-menu.disabled {
  position: relative;
}
.dropdown-menu.disabled .current {
  border-color: rgba(255, 255, 255, 0.8);
}
.dropdown-menu.disabled .current:after {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.8);
  cursor: default;
}
.dropdown-menu.disabled .list-container {
  display: none;
}
.dropdown-menu.search-form .current {
  background-color: #fff;
  color: #00a7f0;
}
.dropdown-menu.search-form .current:before {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHdpZHRoPSIxNnB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCAxNiAxMCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTYgMTAiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggZmlsbD0iIzA3OUNERCIgZD0iTTEyLjczLDEuMTVsLTAuNTYsMC41NmwtMy43LDMuN2MtMC4yNiwwLjI2LTAuNjcsMC4yNi0wLjkzLDBsLTMuNy0zLjdMMy4yNywxLjE1DQoJQzIuMzksMC4yNywwLjksMC44OSwwLjksMi4xM2MwLDAuMzcsMC4xNSwwLjcyLDAuNDEsMC45OGw1Ljc3LDUuNzdjMC41MSwwLjUxLDEuMzUsMC41MSwxLjg2LDBsNS43Ny01Ljc3DQoJYzAuMjYtMC4yNiwwLjQxLTAuNjIsMC40MS0wLjk4QzE1LjEsMC44OSwxMy42MSwwLjI3LDEyLjczLDEuMTV6Ii8+DQo8L3N2Zz4NCg==");
}
.dropdown-menu.search-form .list-container ul li:hover a, .dropdown-menu.search-form .list-container ul li:focus a {
  color: #00a7f0;
}
.dropdown-menu.search-form .list-container ul li.selected a {
  color: #00a7f0;
}
.dropdown-menu.search-form .list-container ul li.selected a:hover, .dropdown-menu.search-form .list-container ul li.selected a:focus {
  color: #00a7f0;
}
.dropdown-menu.styled-form .current {
  background-color: #fff;
  color: #00a7f0;
  border-color: transparent;
  box-shadow: 0 2px 0 #d2d2d2;
}
.dropdown-menu.styled-form .current:before {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHdpZHRoPSIxNnB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCAxNiAxMCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTYgMTAiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggZmlsbD0iIzA3OUNERCIgZD0iTTEyLjczLDEuMTVsLTAuNTYsMC41NmwtMy43LDMuN2MtMC4yNiwwLjI2LTAuNjcsMC4yNi0wLjkzLDBsLTMuNy0zLjdMMy4yNywxLjE1DQoJQzIuMzksMC4yNywwLjksMC44OSwwLjksMi4xM2MwLDAuMzcsMC4xNSwwLjcyLDAuNDEsMC45OGw1Ljc3LDUuNzdjMC41MSwwLjUxLDEuMzUsMC41MSwxLjg2LDBsNS43Ny01Ljc3DQoJYzAuMjYtMC4yNiwwLjQxLTAuNjIsMC40MS0wLjk4QzE1LjEsMC44OSwxMy42MSwwLjI3LDEyLjczLDEuMTV6Ii8+DQo8L3N2Zz4NCg==");
}
.dropdown-menu.styled-form .list-container ul {
  background-color: #fff;
  box-shadow: 0 2px 0 #d2d2d2;
  border-radius: 5px;
  overflow: hidden;
}
.dropdown-menu.styled-form .list-container ul li {
  background-color: transparent;
  border-color: transparent;
}
.dropdown-menu.styled-form .list-container ul li a {
  color: #079cdd;
}
.dropdown-menu.styled-form .list-container ul li:hover a, .dropdown-menu.styled-form .list-container ul li:focus a {
  color: #006699;
}
.dropdown-menu.styled-form .list-container ul li:first-child {
  border-radius: 0;
}
.dropdown-menu.styled-form .list-container ul li:last-child {
  border-radius: 0;
}
.dropdown-menu.styled-form .list-container ul li.selected {
  background-color: #00a7f0;
}
.dropdown-menu.styled-form .list-container ul li.selected a {
  color: #fff;
}
.dropdown-menu.styled-form .list-container ul li.selected a:hover, .dropdown-menu.styled-form .list-container ul li.selected a:focus {
  color: #fff;
}
.dropdown-menu.styled-form.expanded .list-container {
  padding-bottom: 2px;
}

ul.pagination-block {
  margin: 45px 20px;
  padding: 0;
  list-style-type: none;
  text-align: center;
  position: relative;
  display: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media (min-width: 200px) and (max-width: 640px) {
  ul.pagination-block {
    margin: 20px 0;
  }
}
ul.pagination-block li {
  display: inline-block;
  vertical-align: baseline;
  margin: 0 5px;
  line-height: 3.5rem;
}
@media (min-width: 200px) and (max-width: 640px) {
  ul.pagination-block li {
    margin: 0 1px;
    width: 10%;
  }
}
ul.pagination-block li span {
  padding: 10px 15px;
  color: #000;
  border-radius: 5px;
  font-family: NPOsansBold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  border: 1px solid #f1f1f1;
  background-color: #f1f1f1;
}
@media (min-width: 200px) and (max-width: 640px) {
  ul.pagination-block li span {
    padding: 0px;
    width: 100%;
    display: inline-block;
  }
}
ul.pagination-block li:hover span, ul.pagination-block li:focus span {
  color: #ac56bc;
}
ul.pagination-block li.nav span {
  border-color: transparent;
  padding: 2px 12px 8px;
  font-size: 1.6rem;
  background-color: transparent;
}
ul.pagination-block li.nav:hover span, ul.pagination-block li.nav:focus span {
  color: #ac56bc;
}
ul.pagination-block li.nav.disabled span {
  cursor: default;
  color: #f1f1f1;
}
ul.pagination-block li.selected span {
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.25);
  color: #874593;
  cursor: default;
}
ul.pagination-block li.ellipsis span {
  color: #000;
  border-color: transparent;
  background-color: transparent;
}
ul.pagination-block.disabled:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  opacity: 0.8;
}

input[type="reset"],
input[type="submit"],
input[type="button"],
button,
.button {
  display: inline-block;
  background-color: #079cdd;
  border-radius: 5px;
  color: #fff;
  font-family: NPOsansBold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 0.5rem 1rem;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color .2s ease, border-color .2s ease;
  vertical-align: top;
  text-align: center;
}
input[type="reset"]:focus,
input[type="submit"]:focus,
input[type="button"]:focus,
button:focus,
.button:focus {
  outline: none;
}
input[type="reset"]:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
button:hover,
.button:hover {
  background-color: #006699;
  color: #fff;
  text-decoration: none;
}
input[type="reset"]:disabled,
input[type="submit"]:disabled,
input[type="button"]:disabled,
button:disabled,
.button:disabled {
  background-color: #999999;
  border-color: #999999;
}
input[type="reset"].blueonwhite,
input[type="submit"].blueonwhite,
input[type="button"].blueonwhite,
button.blueonwhite,
.button.blueonwhite {
  color: #079cdd;
  background-color: #fff;
  border-color: #fff;
}
input[type="reset"].blueonwhite:hover,
input[type="submit"].blueonwhite:hover,
input[type="button"].blueonwhite:hover,
button.blueonwhite:hover,
.button.blueonwhite:hover {
  color: #00a7f0;
}

.more-button a {
  display: block;
  border-radius: 5px;
  padding: 0.5rem 0.5rem 0.6rem;
  border: 1px solid #d2d2d2;
  text-align: center;
  color: #a777b0;
  font-family: NPOsansBold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
}
.more-button a:hover {
  background-color: #d2d2d2;
  color: #ac56bc;
}
.more-button.loading:after {
  background-size: 28px 28px;
  border-radius: 5px;
}
.more-button.disabled {
  position: relative;
}
.more-button.disabled:after {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 5px;
}

/*============================================
=            Styled form elements            =
============================================*/
input[type="text"].styled-form,
input[type="email"].styled-form,
input[type="search"].styled-form,
input[type="url"].styled-form,
input[type="password"].styled-form,
textarea.styled-form {
  display: inline-block;
  padding: 0.5rem 0.8rem;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 -2px 0 #d2d2d2;
  margin-top: 4px;
  border: none;
  outline: none;
  font-weight: 700;
  line-height: 1.667rem;
  box-sizing: border-box;
}
input[type="text"].styled-form:disabled,
input[type="email"].styled-form:disabled,
input[type="search"].styled-form:disabled,
input[type="url"].styled-form:disabled,
input[type="password"].styled-form:disabled,
textarea.styled-form:disabled {
  opacity: 0.5;
}

input[type="reset"].styled-form,
input[type="submit"].styled-form,
input[type="button"].styled-form,
button.styled-form,
.button.styled-form {
  box-shadow: 0 2px 0 #006699;
  margin-top: 4px;
  padding: 10px 0.5rem 9px;
}
input[type="reset"].styled-form:focus,
input[type="submit"].styled-form:focus,
input[type="button"].styled-form:focus,
button.styled-form:focus,
.button.styled-form:focus {
  outline: none;
}
input[type="reset"].styled-form:hover,
input[type="submit"].styled-form:hover,
input[type="button"].styled-form:hover,
button.styled-form:hover,
.button.styled-form:hover {
  background-color: #006699;
  color: #fff;
  text-decoration: none;
}
input[type="reset"].styled-form:disabled,
input[type="submit"].styled-form:disabled,
input[type="button"].styled-form:disabled,
button.styled-form:disabled,
.button.styled-form:disabled {
  background-color: #d2d2d2;
  border-color: #d2d2d2;
  box-shadow: 0 2px 0 #999999;
}

/*-----  End of Styled form elements  ------*/
.footer {
  background-color: #242424;
  color: #d2d2d2;
  font-size: 1.2em;
  height: 420px;
  margin: auto;
  padding: 38px 2% 0 5%;
}
@media (max-width: 957px) {
  .footer {
    height: 560px;
  }
}
.footer .column-wrapper, .footer .column-wrapper-newsletter {
  padding: 30px;
}
.footer .column {
  display: block;
  float: left;
  width: 47%;
  padding-right: 3%;
}
@media (max-width: 957px) {
  .footer .column {
    width: 100%;
  }
}
.footer .column a {
  color: #d2d2d2;
  font-weight: bold;
}
.footer .column a:hover {
  color: #00a7f0;
}
.footer .column ul {
  height: 30px;
  border-bottom: 1px;
}
.footer .column li {
  border-width: 0.1em 0.1em thin;
  border-bottom: #999999 solid thin;
  display: inline-block;
  line-height: 60px;
  list-style: none;
  width: 100%;
}
.footer .column li a {
  color: #d2d2d2;
  float: left;
  margin-top: 0;
  text-decoration: none;
}
@media (max-width: 450px) {
  .footer .column li img {
    height: 30px;
  }
}
.footer .column .logo-wetenschap {
  position: relative;
  float: left;
  margin: 0 0% 18px 0%;
}
.footer .column .logo-ntr {
  position: relative;
  float: left;
  margin-left: 30px;
  padding-left: 25px;
  border-left: #999999 solid thin;
}
.footer .column p {
  line-height: 1.4em;
  margin: 0px 0px 5px 0px;
  padding: 0;
}
@media (max-width: 640px) {
  .footer .column p {
    font-size: 16px;
  }
}
.footer .column .leesmeer {
  color: #d2d2d2;
  float: left;
  text-decoration: underline;
}
.footer .column .leesmeer a {
  font-weight: normal;
}
.footer .column .leesmeer a:hover {
  color: #00a7f0;
}
.footer .column .socialmedia {
  display: inline-block;
  float: right;
  margin: 7% auto;
}
@media (max-width: 957px) {
  .footer .column .socialmedia {
    margin: 0;
  }
}
@media (max-width: 1024px) {
  .footer .column .socialmedia {
    margin: 0;
  }
}
.footer .column .socialmedia img {
  padding: 6px;
  width: 44px;
}
@media (max-width: 450px) {
  .footer .column .socialmedia img {
    padding: 0px;
  }
}
.footer .column .footertext {
  display: inline-block;
  margin-top: 75px;
}
.footer .column .footertext .leesmeer {
  display: inline-block;
}
@media (max-width: 640px) {
  .footer {
    height: 750px;
    max-width: 640px;
  }
  .footer .column {
    width: 97%;
  }
  .footer .column li {
    width: 99%;
  }
  .footer .column .logo-ntr {
    margin-bottom: 25px;
  }
  .footer .column .socialmedia {
    clear: both;
    float: none;
    width: 80%;
    text-align: center;
    margin: 50px 10% 10px 10% !important;
  }
  .footer .column .socialmedia img {
    margin: 0 7px;
  }
}

/*!
 * baguetteBox.js
 * @author  feimosi
 * @version 1.3.2
 * @url https://github.com/feimosi/baguetteBox.js
 */
#baguetteBox-overlay {
  display: none;
  opacity: 0;
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000000;
  background: url(/bundles/wetenschappublicationbundle/images/background_specialoverlay.png);
  background-repeat: repeat-x;
  background-color: #333333;
  /*background-color: #222;
  background-color: rgba(0, 0, 0, 0.8);*/
  transition: opacity 0.5s ease;
}

#baguetteBox-overlay.visible {
  opacity: 1;
}

#baguetteBox-overlay .full-image {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 40px 0 80px 0;
}

#baguetteBox-overlay .full-image figure {
  display: inline;
  margin: 0;
  height: 100%;
}

#baguetteBox-overlay .full-image img {
  display: inline-block;
  width: auto;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  vertical-align: middle;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

#baguetteBox-overlay .full-image figcaption {
  display: block;
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
  color: #fff;
  /*background-color: #000;
  background-color: rgba(0, 0, 0, 0.6);*/
}

#baguetteBox-overlay .full-image:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}

#baguetteBox-slider {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  white-space: nowrap;
  transition: left 0.4s ease, transform 0.4s ease;
}

#baguetteBox-slider.bounce-from-right {
  animation: bounceFromRight 0.4s ease-out;
}

#baguetteBox-slider.bounce-from-left {
  animation: bounceFromLeft 0.4s ease-out;
}

button.baguetteBox-button {
  position: absolute;
  cursor: pointer;
  outline: none;
  padding: 0;
  margin: 0;
  border: 0;
  background-color: rgba(0, 0, 0, 0.7);
  transition: background-color 0.4s ease;
  height: 45px;
  width: 45px;
  cursor: pointer;
  outline: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  z-index: 999;
  border-radius: 5px;
}
button.baguetteBox-button#next-button {
  right: 0;
  top: calc(50% - 30px);
  background-image: url("/bundles/wetenschappublicationbundle/images/icon-arrow-white.svg");
  background-repeat: no-repeat;
  background-position: -29px 15px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
button.baguetteBox-button#next-button:hover {
  background-position: -29px -178px;
}
button.baguetteBox-button#previous-button {
  left: 0;
  top: calc(50% - 30px);
  background-image: url("/bundles/wetenschappublicationbundle/images/icon-arrow-white.svg");
  background-repeat: no-repeat;
  background-position: 16px 15px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
button.baguetteBox-button#previous-button:hover {
  background-position: 16px -178px;
}
button.baguetteBox-button#close-button {
  top: 20px;
  left: 20px;
  background: transparent url("/bundles/wetenschappublicationbundle/images/icon-close-set.svg") no-repeat center 13px;
  background-size: 22px auto;
}
button.baguetteBox-button#close-button:hover {
  background-position: center -35px;
}
button.baguetteBox-button#play-pause {
  position: absolute;
  background-image: url("/bundles/wetenschappublicationbundle/images/icon-play-pause.svg");
  background-repeat: no-repeat;
  left: calc(50% - 22px);
  bottom: 50px;
}
button.baguetteBox-button#play-pause.play {
  background-position: -23px 14px;
}
button.baguetteBox-button#play-pause.play:hover {
  background-position: -23px -22px;
}
button.baguetteBox-button#play-pause.pause {
  background-position: 13px 14px;
}
button.baguetteBox-button#play-pause.pause:hover {
  background-position: 13px -22px;
}

/*
	Preloader
	Borrowed from http://tobiasahlin.com/spinkit/
*/
.spinner {
  width: 40px;
  height: 40px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
}

.double-bounce1,
.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  animation: bounce 2s infinite ease-in-out;
}

.double-bounce2 {
  animation-delay: -1s;
}
@keyframes bounceFromRight {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: -30px;
  }
  100% {
    margin-left: 0;
  }
}
@keyframes bounceFromLeft {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: 30px;
  }
  100% {
    margin-left: 0;
  }
}
@keyframes bounce {
  0%,100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}
.loading {
  position: relative;
}
.loading:after {
  content: '';
  position: absolute;
  background: #fff url("data:image/gif;base64,R0lGODlhMAAwAKUAAASe3ITO7MTm9ES25KTa9OTy/GS+7HTG7CSm5JTS9NTu/LTe9PT6/FS65Mzq9Oz6/GzG7DSu5Jza9Lzm9Ey25Oz2/GzC7HzK7JzW9Lzi9Bym5IzS7MTq9Kze9OT2/GTC7HTK7Cyq5JTW9Nzy/LTi9Pz+/Fy+7Mzq/Dyy5Ey65P///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQJBgAqACwAAAAAMAAwAAAG/kCVcEgsGlUKyEFxbDqfzpIl1YCUoNis8WFoUD4MrXioAF2YRYap0TCEixNK4zQulgKWD+g9VDdSYEUVAygRbnVDdx8WFh2CBlSHiRsRlQZXiEICeR8QBURcXoFkKIUoJJmJeHkJmCp+bXxSlSiXqWR5jA59a4B8GRGmu7dDErkXmLCSDCmmAXUlrkQeB4sfGUJ+X28YhREDn0YlfEQjIhgK0kIL1iAVrwHxG2EeA8ERBOIdAxQCRhvxAmAYYefCojNNMjSo1EBdBgoaIqL4F+BCwAXvhnA4sICckQoJBmAbMsICgognJxZRALCiPAGYSoTDMiLZhhAaTkYMMTLN/oKAFi+ISIeoRAcUOVGGuOCxiAcCAeV5QKQAZ8ScDYZBKcHSZc86AVCiyKBuq4AN81JVqJSgqZYKBG8tmEmsLpZoePNGs8ugb98Hfhlc8dCBgOHDhyfYbXD1pE4EESZ0wEC5smXFdRsA2My5M4rJEjCEHi0aMzHNnVNHKFAYMWLTtxogmE2bdgR/0QTnzsvXbwUGv3+XtUs8zdRbv1OVGJFhwvAsDDJkqDmmhIcMJEgsiEs1O4kJFZ4XeXAi+4LsGdxCqYD9/PkTD54wUGDeewYP4qN4mOBdewaiH/WHHnUqjKOFYEJwlcF59h1HBHbakZDBCeRcN4J6CdLn4CvlrkX4nRH8ZSdARolACF4T12nnnCACmAebEB4IIEABZdHnXxglnOCAjldE5x13iRQwwYhH7GWEj9nFVYKJmIzgXnpF5ndEhwusWKB5ZCUIIQlo1FVBfyQiaaUKBdRHonItaneCK0uix2aHJMBETJnenVmCi9J8yeCG0PB3XpdaurmSeXJmUkKaWRLhY5XqIFloJtdNwGeBECZKhJAZnFlcgnhuKsahIno6RgUCnHhLEAAh+QQJBgAvACwAAAAAMAAwAIUEntyEzuzE5vREsuQkpuSk2vTk8vxkwuwUntyU0vTU7vxUuuS03vT0+vw0ruR0xuwcptzM6vRMuuTs+vyc2vS85vRMtuQsquTs9vwcotyc1vS84vR8yuwMntyM0uzE6vREtuQkquSs3vTk9vxswuwUotyU1vTc8vxcvuy04vT8/vw8suR0yuwcpuTM6vz///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG/sCXcEgsGl+KQOB0bDqfTlXgQAqooNissfEgHVhXrVh48iQUW5aXEyYKDgf0mKhKKD2NYkN94OSJGCgLEg9tcyomShwbenxsdBoSCwuFc0QKHEoBI0QNHFSVQwqTFgsVlpCaBW17a38vKhyTC4+oQyeaAXIvnlRgQwKDk7u2QiIBmQlhrX3LBwulCYeGQxi5AkLMfsalCyicRiqvRAYiIifULxWKeLwmGgkmVwaCpSLhIigoEUYFFBoaGIAbosKDkgRMjrwZRILaBxQrHKyw0A/gPwoCJlwKUGHcFg0osN3isCKixAVGThQAyLJAhDAqMGhBl00DCJMRB4jU8+Gi/oZ/59JhUZFigYOjOds5wZCCpUWZcxQMkChxBQliUVRSeMcPlQeqCzYIjRKhwCpbGCyAOIuqgYFi6qDCnatFhd27eOk22Mu37xUMAipsEEx4sAu6B44qXgzCRYUUkCNLPjz3AAQCEFpg1gwhg4UKDFKEHi06BWW4ljlf7kyghQUMFQrLPl0s8WLG2PDqtqu3r++xdIMPaTAQFYO3qFScGAwcyogWEJTWHbEBMoOElh50ANDhgojmQya4sA55g8csEUpwB8DdAu0tCsiXHwH+iIoCBNhv79DhgVxAkpVHEyznNdHAMhxkoB93GaRgRHWlbeDCONSdUCBB8RWnAAr7s7F3gRGPQSbAf7BAWAGJQ1AnWgXUbODAegQYMYIAAhiQTnyimQeLCxHweEUDEKaAHUEaXOAAI+EIBWRkCalgYhgnjKZjOBc6Md6KMFknlhBORoYVWpLJtWQKLA5hAHkoHiKAdS600WUKW3J5ZQoC1PfEmZH9RxSWAIaWQnGHPBYaVm/GKYp1ddqiwppwUrMkA2V2AmGitlBXAaAllpeOAYKlGdyekNopHEGM7jSqFoCdCFcQACH5BAkGACsALAAAAAAwADAAhQSe3ITO7MTm9ESy5OTy/GS+7KTa9CSm5HTG7NTu/PT6/BSi3JTW9FS65LTi9Mzq9Oz6/GzG7DSu5Ey25Oz2/GzC7HzK7Byi3JzW9Lzi9Aye3IzS7MTq9ES25OT2/GTC7Kze9Cyq5HTK7Nzy/Pz+/Fy+7Mzq/Dyy5Bym5Jza9Lzm9P///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAb+wJVwSCwaVyMGhnBsOp9OEiMQYJCg2KxRsaFurtqwkGAAjbbdwNdoslgS4iIJhMEYFPKuZU2kID4VAWBxK3MpGCkCRVxeg4UGFYCChENJdSkURIxqjiMVkRUPlEOGdRmDjHuDJBugk6NCHnWIZ0KbfCsmFQUVEbWwQiqzIGCbrwoWvB8GcSSOQwqHh3Art2AOygiZRs5HFAICHs8rD7N31SAGZVd+gB8Z3CoRCNREKg74AtukBogGHk0eWABk4dkDBA0mNPhgJAO+hwnwVErxYJwmEAhEDfGwoUFCjwyLeHj4MMMIMCT2QRFny0AJjwonlDBxhEQCkvhUELAIhYT+gA8wPTZIIbEJBRM4MxQNMyKoxwC/npAg4BBfvTgYYFbgwLMJiREZTo2iUKAEsVEKmMAyAQGYWzHO4srtGkaB3bt42QlQkYGv37403VqYQLhw4Zn3cJIMDAyBBAknHkeGLKFEYsX4GMMSMbmz5BIU+IYdPVrzKASGU5cQNbf1WxJ4Y9N9S7saQFgZbhP62ne2EwoSQmBYioWEh6oOoooJcAEFihNisUBASlIpoQQhnB9AcaDE1S03k+7cDeJE8+YoQgRQOYSCYpMoiTtJUGxDiAMX0EuAVwS5gwwmLEXVCPL1YcECIBDhCX74PWfEZfrIUZUK7A0BwgEAABDCMyqsTIDCBQecYIQH4IxXRHj/4UGCCQ+weMUIFwCgAQABcANCBxMowo1FCiBXCwkTghFAhhpcoJwtBT5B3X8olVTMATMCUABt7j20T4/4RLcCCDLKqCMsPj1kwipVaUnCAF0O4NsTBJCkEglOEiHAjDMyMwoJl30HZJaOkFBBlyckWZwAfC5S5jMELDCjBGs2cVxu3BxqBAgg8lcbEXAWeqkWYTrw5aZZfJNBhWIEAQAh+QQJBgAqACwAAAAAMAAwAIUEntyEzuzE5vREtuSk2vTk8vxkwuwkpuSU0vS03vT0+vx0xuzU7vxUuuQ0ruTs+vyc2vS85vQcptzM6vRMtuTs9vxswuwsquSc1vS84vR8yuyM0uys3vTk9vwkquSU1vS04vT8/vx0yuzc8vxcvuw8suQcpuTM6vxMuuRsxuz///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG/kCVcEgsGlUdDqdzbDqfzhAHg+GEoNisUUHAQAhXrVjYiUQq2y4GbGRsEKNxMSQAJTLhIReyzgsVGwEaEH5jdCCIDHNdX4UgAZAYhWMFiIgKRFxUbEMFkBoBinJEdAmIE3l7fUMhEJABkqNFHYimTEIhjJwqDJ8BcbJFJ5YRYbmbxoGQCXIhkyoKGXYgwJqNQhGfG2hGzkcVAgIdkwyWGZgh0hl4KhXKAQLdApCiRBG1Atys0iBnTQwIBCEo1MuCAQsajPCzxADTkA4ZRjzTk2FDPSQYLBg0mHDWNHMScTnEUsAYhwUbDy64yKqcKVP9So6ioyGlhRQcRn4bVgvE/rlRIxYcPGjhAzAoIQrcSxSMw1ANqAyNWDcRi4IFItjJUnArGAN9wcI2c0a2rNg/IRSoVZtWwRVwETLEnSv3xFkVG0gY2Mt3bwoGSy0JBmH3bIAGDSgkXqx4QYSX0yAXFntYcQMUiC0vqGBGrue5k8Nu4Ku3rwVFZVN7O7u29dqqd2P/6SpLXLAQU4sFq0CBwq4sISDWOipng4PjDQTAHvKAJ8yfchgMKOGAeomVTxSU++hz3MwEFKgfL1Fig84hFQb7DKkirRYGYRR8mD7eAYV4RfiZynBCJ8QR5xVRQQAXgEBEARqQV50DDRgRWD5z8OPPESCUYMIBJRQiAAnjuFFgRAfhyFTEdndgogBiiGFSwAUStIhANwmQQMIER6xWRDSWAFOBCQAAcIBDCEhwgAkOEMdKgFA4p1s7EvT44x8ltCjBArGlZ4k+Ozo5EgdDHnAAjWIdYscJeVTQpI8jhUCClA0sB0UlVxKRJZpETDCkCSYwc9s9prBUwQEA0MmKBkJKQIGbTYipFXpnPikniyYcGhZEEdAmxJyOEpHAcfjJJmejSHqa6AUAAOAAoqIKkcEFJWQgVhAAIfkECQYALgAsAAAAADAAMACFBJ7chM7sxOb0RLbkJKbkpNr05PL8ZL7sFJ7clNL01O78tN709Pr8VLrkNK7kdMbsHKbczOr07Pr8nNr0vOb0TLbkLKrk7Pb8bMLsHKLcnNb0vOL0DJ7cjNLsxOr0JKrkrN705Pb8ZMLsFKLclNb03PL8tOL0/P78XL7sPLLkfMrsHKbkzOr8TLrk////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABv5Al3BILBpdF4Hgcmw6n84TxWQSnKDYrPG0oW6u2rAwRKEwi4yu6WssFUAGcfEkMC3YRMZ0DR4yChoaIH1ydFQmCnMbCyYUhC4CgRODckQGhyYMeWp4YxoTgSWVRHSMJhF9J4edqoGCj5UhVIwhQ1xefSWSE7WjRSyHjkJcjMIuJ4CBAoWwLml2JqLHq2Asu5pbzUkCIbAKq5onLOMsV3+uEVsRoUZ7C0uKVGZNbp8Fj7oBASokRmqHCrCN2VCimZ8IBaQJuQBCn8N+RWSZ8lJwmEAoF8BI6eBQRYAOibZ8Y2SKggGDT8Ql2McyQKYnF4DNWnNRiwGHDgv0gnLCwP4eRL42sEygAOWREyU2dJLDoEMHD0afMNg5KqCvq75OaN3KFavFEwwYgBUrFokAChvQqk3LwqsLEioexJ0rN0CJn5gOtfWqQQQGv4D/YghAgSQ0w3uxkhAcGHCAC2XSSlab+KoGuZjp2j3GtXPULGNDh9XqtjSUqVgjnKmENO3nJhcOoKAU5kQINQsUytHQoLcIVFkkyDS1oWaWEihaNFDeYLMTBt+geenGmsKBBhV6V0ChwTiSvGsqHguJRfwfFMuxN0CRrgjuNSwuFhjx+ImEBAM2EAnRoXd6DO0cAk8eBADAAQEmNCFABSk40MAjLDygHYARKXGSESoYCEAGtcowcIAIIGoSwgAONKjBFhtg8AB5pDRTwggcAABABws5AAEEDmCjQYMOVECVLd5FgYKMHFiADQMWEJBBjkIwwKADDgRQ2gYcxMjBAkNcYOMKKQi0QYkltnfVCQ5oWEEfWmawApPDYACmCK85oUGMACBQmZYrEMCmEAo0mEIKCfrCQJkxUuiHAxngeNEJHUDpwAFxGjGojBmsVqOaey40QIMHBJmFCQQQgGUReOpp3AbZiWmaHxZAsKSnq26RAgEQnBlrGAIMUMEyVwUBACH5BAkGACsALAAAAAAwADAAhQSe3ITO7MTm9ES25OTy/KTa9GS+7CSm5HTG7NTu/PT6/LTe9JTW9DSu5Byi3Mzq9FS65Oz6/GzG7Lzm9Oz2/GzC7Cyq5HzK7Lzi9JzW9Aye3IzS7MTq9Ey25OT2/Kze9GTC7CSq5HTK7Nzy/Pz+/LTi9Dyy5Bym5Mzq/Fy+7Jza9P///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAb+wJVwSCwaVxSBgHJsOp9O0qRUEpCg2KyRhKFirtqw0DOZMIuKbulr9GDM4iJJUFqwiYrpGjxMU61xQ3NUJQlyGAslE3xCCXVVjHEEhCUKeGp3QhSUBIFEc4klD3wkhJkkHIkLHJGBHlSJHoKYfARqJWeeRCiEi0Jcib4rUo+GYiStK36JI7+mYCOhGJZbyUkCHq2OXpYkKN8oV8slzXIJHx+yRXoLS4dUcEdu8JEEHyoZGR9Gt1QJ1GMwjEjWJwGGTkMiTMiXAd++Iq9CeRn4CyCUCGC8FciHL0OBcuYehZpAgOATEiM2NuQowKIRCrxgrXGZhYJKjriykCCgp5D+LgH4VHw0eQQlhkxxFBQoMEqXAnW6CNDURVULsqtYiVoloQBZV67IkAiY8KYs2Qkoqgr5sKGtW7cZRvSkRCit2g8XAujduzfDBFUiH9mt+kFv3sMB8jKgUMas2cFU2b59G3dY1qxqh33tyjls5s9PRpSomiBX0gAODpgWowCBCKRYSHw4AACAhgC6PoCoAOJCAq3DUAzQYLu2A2NiRiDYzbsCA4RNPEjQQLz6gQ/Atwi4sLu7hA9TPzggXtzBBWokkEMp+evD8grNRagXcqJ2dQPqP1jYMDVhgRQCEOFBBhJ0V8EFRpxQXQMB4mGCAyeYgEETAoAAQQcVRJLABt3QIVjEAg00UEArARyQWgOdtCaCa1d4kAIEFz70iQB6zSdEV0ck0ACEDmQgRAQdmNBAB9QUcCEEKax2Y3aCVGDiASaAocAADZhA5I0WXsjAZwKYeMIBo93YQYhXCiHAkRDYGAcJHZzwZQp8TClkmcNcACMEFzDZxAduOmCBehSMaaVFCcDYAQQTUDVlaifghscAc1pEQgYdpNCBCHqiMYCbDawGJJkuRWApBAhkWgQGVU6oaaRGcAACCJCBdiOkQ/Yna1EQVAnnrWEIkEIKD1QVBAAh+QQJBgApACwAAAAAMAAwAIUEntyEzuzE5vREtuTk8vyk2vRkvuwkpuTU7vz0+vy03vR0xuyU0vRUuuQ0ruTM6vTs+vxsxuy85vRMtuTs9vxswuwsquS84vSc1vQcpuSM0uzE6vTk9vys3vRkwuwkquTc8vz8/vy04vR8yuyU1vRcvuw8suTM6vxMuuT///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG/sCUcEgsGlMUgYBybDqfzpBEJBKEoNisMXShXq7asJAjkTCLia7oa+RczOJiSCBSsImJ6Ro8TFOtcUNzVCIIchcKIhJ8Qgh1VYxxBIQiCXhqd0IUlASBRHOJIg98IYSZIRuJChuRgRxUiRyCmHwEaiJnnkQnhItCXIm+KVKPhmIhrSl+iSC/pmAgoReWW8lJAhytjl6WISffJ1fLIs1yBEq5Q3oKS4dUcEdu75FJvUa3VAjUYxcgyX0ILnTqw4uShDaPTPn7tQ8KBDAhEExRtUbWFkcUFRH49yQEgYmUEHBEUvDRtEAQ8Ik4kS7KR0LGAmFcQ2HkFhAXMsVJ08+m/pMEFnVRaKiraJgQCZIqXWr0F7KnUIVccJDhQNWrVUs0TXGhgNevXztwsACgrNmzBraKwMC2rdsOZM/KTdv0gtu7GDpMPcC3b1+tdcEKFjss6dDDSrcihboY2dbHUGwZ1acrAQkLDiBU1qCB1TEFVK1q0HUhgGkGIrF4K2E1Q1UL5cQQ0DDCtOkCQY9QGPHB9VUTHXxuOcEgQG3bJ42IsID1gAUNEGNHBpNHg3HbGqQLoeqa74KBQhQMwEAUTYcFD4hQ6GD6OAMjoTM0EIAGhQMH85ucGOGhwohIIGDQ3ntFXDDABMEZwYAJDpgwABMJmGbdFRwsUEF/IgxHAgbasDF0BAEDNOhAAUIkYEADKBhAjQj9ebBAS07FMYKIDYABQQkNNOABNSHwdyGJWz3AoAkmXNCHASg0UAIfAlRwYQQdxhFCCSIuwEcCODagoiAaXFgBdEaJIKIJMSmD4wQ7EgFCBF6mVxmVDY6GR5ZbClLAhR6A6QmWDE7QkokTKBlJAgv0F4BwTQgwwQT0FQEBklqW98AII5QJWYk4opDmpVqEUEGSVnIaxgkLLHCCUUEAACH5BAkGAC0ALAAAAAAwADAAhQSe3ITO7MTm9ES25OTy/GS+7KTa9CSm5HTG7JTS9NTu/PT6/BSi3FS65LTi9DSu5Mzq9Oz6/GzG7Jza9Ey25Oz2/GzC7Cyq5HzK7JzW9Byi3Lzi9Aye3IzS7MTq9OT2/GTC7Kze9CSq5HTK7JTW9Nzy/Pz+/Fy+7Dyy5Mzq/Ey65Bym5Lzm9P///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAb+wJZwSCwaWxWBoHJsOp9OE8vhEJig2KzRtKFurtqw8MNiMYuLruNr/GzM4qJJ4AUPF9O1XZimWuNDc1QOCnJqbEQKg3+AQgSDDgtEfXpEFZAEjYF0VBB2JoOILSYei3uNH5iBh3YEag5nmkMpoWBcdUJSg4ViC5JGlA4lubVCJaG/cqdCDg8PBsuKXpImKdYpV8HDcgRKsUMrHAAcKAKGXt9EbriWnA4sRuEA8xwF244bJcuTChuZd7QgwSsSgoG4gxoC/DKRDEoFW/0grflwhIAFDuLoHQixD4oJAnkgKeg4KgUKjPQY8BJT4RWVFOmamDBw4CAGTdLWPOwVQMP+gZha0uQjCeWYrBYEiB5dKseX06cNNZmYSrWqEAEDnGndKoFpijdgWYBdgmKF2bNmD6zouhSCRIlYfco9oGFFXbZH3b5dxCLr1q0WmELYQLhw4SWjoEJlWrXxVKaQoXwwJ6tE1DALJgxoADTLAgMGRorh0uABigcZNEGYkCFDCH1YTCiwYNoZigH3wlRg3TrDhA2dhVTocLr4gwaiwpgoYYB3BhIGPOzrW9vZgAy2/mH5YGu1794GtA+hUH1AAPEbThi4PIlFh5VIWPT2bcAIedMFIKAB0aABCP1HKJBAABiQcMoHIfBWXxECnHCCA8sY0IAKDRTAxAIkPGcgEh2oBOAhZUTIFkIIFG3BHgEn9EdBCHyMYAEIGIDBAoEBdADUY2J0QCEFEoCxAAIvYrDQgB46AFkKKjaQwh0uwmiHAhjQKF4jJiDQXwMB2LFAk0IGYoCHAWB3FAsNUNBfbj8GuQcBNAYAXxwLSDBhA6lNwmVUDoApJpVyNnBCVFuqiYaHGOzZSAoFgLAkGkDCeJmAHeQWWYuCTqqFCQGAYEGWloahgIdvxhEEACH5BAkGAC4ALAAAAAAwADAAhQSe3ITO7MTm9Ey25KTa9OTy/CSm5GzC7BSe3JTS9NTu/Fy+7LTe9PT6/DSu5HzK7Mzq9Oz6/HTK7Bym3Jza9Lzm9FS65Oz2/Cyq5HTG7JzW9GS+7Lzi9Aye3IzS7MTq9Ey65Kze9OT2/CSq5GzG7BSi3JTW9Nzy/LTi9Pz+/Dyy5Mzq/Bym5GTC7P///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAb+QJdwSCwaXReB4HJsOp/OVAWFEqSg2KwxxaFyrtqwEGUYMYyNCgNVARMLFQ5TTGw4AIDJfJiior5FDV1VbnR2AB0AGUVcKAxtRQp+VnREGokdHStEfV6FF46OIpWcd4kWboJrgEIpK5OFpByYAGetg5BCBaEoe6StC4gAGA2tVAysUscKhrFCCgjCHrdUuSdrf8Vbzi4VAwMhzg+YLAUurivpV4KhJ1sFSr5CDiwsExYCgQZ4BihNF7hiJfFTwYiDCQbqGcjgbggBBA/kMZJkbkiDV37YGGGAYQJCjw4SaEvBLEsDMCQHrUE2ysiFBwY+2lPBgBuUFHAyUlFg89z+igUxWcTEUFJMAz/YVkg80oCBCo8sppFSgE1AgZ5ME2BwoK2SIA4nsD4pwOGXEBFizard0qCt27drz6WYS5euEAgLBoDQy3fvg7gr4gjmIHiJBQeIVSRO/HctRp2hBFhQTHmxg8ZqX63kRUXACgvfQocGgdnsCsKo43DgsOTc29ddzdadPTeubSgiIKhF+6tBiAUtYhtdHVZMCgEtLFgAEeKXpGoX0ro48UA5COULKooBGGrNighPImhQvhz0gVzGcyLlwPPIhwXWsYdrpR1K9FYKOGDz0pLIBtDkJVCfABmgIFwgKxDQkBAXHVONEfCBlkFRrTzQQgsPUEjECSHHaKDBfEQM5EhBRUBAQgaUFBFCCwcckAETvhEQwnwNEKCBCRpoeM4J8RyRwoFIZMBiC2W50IAHAQTgARgQaECBBgQAWZsYFAz5ABhHBvDAkq3Y6GE+cSnQIotFZamkGyc46WR9pKQQwAEsmpAKkmfywYCHGqAgnRMfwHkACQsaSSeXQxTwpIeB0uHmkM3VgeSWsQhwIwUgVuLmBi4KZyahFh1aaSUKSJAhGnQG4MwJMrJ5m6BJcroqFikkkGQCe746XQIaqCpGEAAh+QQJBgAqACwAAAAAMAAwAIUEntyEzuzE5vREtuTk8vxkvuyk2vQkpuR0xuyU0vTU7vz0+vxUuuS04vTM6vTs+vxsxuw0ruSc2vQcptxMtuTs9vxswux8yuyc1vS84vSM0uzE6vTk9vxkwuys3vQsquR0yuyU1vTc8vz8/vxcvuzM6vw8suQcpuRMuuS85vT///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG/kCVcEgsGlWpSERwbDqfzsUHAIiMoNissTKhHhba8DBpymxPXnCRkMpUxMXF4DSJvIncdDzTaAiucEJyBxMnAUUVaABfRQp9foCBKh6FBwcKeF2LakIVjw0EkkMjFBOmBZF5m6MOj3+iQwIHJ4RmnYqMQgSfd7AqIxamJwNqFQd6v3x9JXALkUQiH4QnGJ2auSKPGZxEI8+xJCQN3yoadHWhFQwU61cLfB4NIkYjBAICvUMoJhEmHQ5xIswq04SAsld4BDxKYYSCkn4mAoQa4uGDhnz0FGSYKKjEpwYMi6QYwO8hBQmAFszLUgHQCI0fM3A4UkGDCX4lGWQgh6Ve/oqPDRTwFPLSAs5+A1aKqaDsUQmMTUZkoFAygShHfdwMbbIAAwUK3MS8yyBiKxR7vjiY9cW2yAhnC+DCXZvFm927gEog6FCAr98CBTS0LZGhjeHCGfBZQMGAMQrHjQWz9QjUlYXG6xhkZifZF+XKfhxAAMy3r+nOsAhnWM16Nb5fcWPLptsTL962uKFUwARLragRDRBcCBtmQZuyYkaUuGChg4UGVxe2zCIiQfPmHRDMhMP049MnCwxAuO78ggPabjk0zSr0iF7yFhCMIwq1yQOXMD/JNAKCPAQD2wnhgAYpmLWARgGqsMBnWfF3nQa8jaJBAAEkECEiP4H0TQUKpDXYCIUbkJMBhQFoAMZYq7nTlFKjGPQaPcSpUFMAFwTAxC8GSICBAYBg1cA2R3gDhwckJpCSARhIwCNRTV0IiwgU1hjhCEjuGMkuj9SXHAYkLilIjlaO8hlCV9VYY4JUJullJ59wFMgIIZBoyxDhYRAmET6SCccICVBoYhxgrinIQegdIYIGENKDpJLkGORGbkbUeSekdXmQpAeFUsqBBx4kGEgQACH5BAkGACwALAAAAAAwADAAhQSe3ITO7MTm9ESy5KTa9OTy/GS+7CSm5JTS9NTu/FS65LTe9PT6/BSi3HTG7Mzq9Ey65Oz6/DSu5Jza9Lzm9Ey25Oz2/GzC7JzW9Lzi9Byi3Aye3IzS7MTq9ES25Kze9OT2/GTC7Cyq5JTW9Nzy/Fy+7LTi9Pz+/HzK7Mzq/Dyy5Bym5P///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAb+QJZwSCwaWQKPJ3VsOp/Ok2p18Jyg2KzRItGsJAyteCiAKATGiIQKNn4OB8q4yChJJJUIvfsNEy0NAAAqfnMsJ3YqEghFFiIHfUQnFwAbg4WGCxKKKglEDCJsmB2WlgSGkokSDldCahoabUInFZUAA62oQg+cKnJCDGsHsiwflpVoukQodyoKrVwrsX4MB7YGcye5RCQDihKnLK+RLAGCGxokR9pHKQ4OFNtCGJt4ICwMBiH6YSQatiiMnCggQIAFIyUUmEHh6VOFTRWSuTlg6YA8CwJMaPxFxIAZhSU4HBxiYgAGTFtQNPjwKUWGBSZgciSTsIICBRVKfGjFQF3+lgStTiR4qVFjhntpRpSweRPCBQHysgykAFMjTKBPEqDAeTOnzzEMisY0kWIklBMCQnANZyjBWAEgoj5h8KFECJRiGFDIQEJuFhBMlMVVRjgbgxMMDidG7HeMtseQWyUIgMJB5cuWJxRm4XKv5wx7DaK4EIK06dIhNBd+ILa1CQGjUZ8mrZrwA5i4x8IUMNmy78soait7ALr4Z4OHECte3lhM5Oebo0OJ8BXVYFRoOXDAq+VEBr7NBSbgEKD8zDFuY1K4DgUEgfKUA4g0ZIFo0RR6nISFj6I8AqzZgEDBWDFlAGAR45XXn3xQzWIWFIfNMlRrRxlB3oIBfPAgCQTHPMDdEEKZgBQwKehmwnkskFceBtUdQgAGGHzQ4hD1bXRRRhsZQcIIGKQQVQowYkBAGCc8kIKRV+g11owDFfQgiHJZ8CIGEzTEQAY2CpGeCRlwx84YFARJQFBYcknmWA0VBgKVVH51glXxDFGAWE8acsIHQZqQi3dG7VkiTB2EBwUJbE7wIJ8LxEljUQuMaCeeMHZQxJt9IlhVg9jhOcGQkxKVgTxXxoQpKgUQQACTRSlKRAEUUFCndIh+Kp1jA7426xwYIadMEAAh+QQJBgAuACwAAAAAMAAwAIUEntyEzuxMtuTE5vQkpuTk8vyk2vRswuwUntxcvuzU7vz0+vy03vSU1vQ0ruR8yuwcptzM6vTs+vx0yuy85vRUuuQsquTs9vx0xuwcotxkvuy84vSc1vQMntyM0uxMuuTE6vQkquTk9vys3vRsxuwUotzc8vz8/vy04vQ8suQcpuTM6vxkwuyc2vT///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG/kCXcEgsGl2RRCJybDqfzlPF4UicoNiscSFwpAQLrXi4YrGYRUnXATaivINxcYH5VBJhItfbJl4sEBkfeXIuCyQViRxpa4NEJw8qKgQCV4VCGxUCiSZ6a31CKwSBKiOXQyd1iQGWLmp8hCcJEJMVracriZsrQ68OjkIjBBkQBGinQx4VdgeWF11feQsptAQYcie3QwUJyxWmhp95DRmTFgVHC4RECgEBK9ouBnYCGheGGBP5VyYWwxANjJxoQYWCEQwHWBwI0EkPi0QseB1BkaJcCm0bHHQA0IGAkQkJE5IwcG/IhgQG1hm54MECA3YJNm4EYMFIBAwKc2JAYekE/rosCiwtCJCBIwCOGV5uMUAipMIHEeJhOWGAwFGZHQ6UbGLCg9MDGEQUWoHAKEcBEqGciPAgJLhCGIwSYKBSLQoMD+pqETHMg94sFxQgczHi5+DDWbKdWJCN8WKp2BRLzibERAMPmDNnfotsxQYKn0ODHnChgbvTqANwxoWitevXA0w/CDC7trvVl1agYLC7N28GAyxrHo57rOjjAyS4aPyYsWPEk6Mjng5lgeFLIv5OXWHAAGQsC0Cb+H7khAkDHFpwOCZHQWsGFC6QH3IBRXoO+A0ol7Ogt+sV+zWxwADq4ZeeAeMV4hMF/jGwQVBHnIefei0YEJUQi2nBGIYm0LzW2gZiFWFAgelRsE4BG5ig3XLuhSjEArr9hoJBIt43gosYMjjjVkWIsMFuFGhzwQCu0UiECCOMkGAR7vG2QRgnrBCBlFcs8GNrDT1SwAAD4IiKVFa+19AJVwZZ2W9PljefTUX29N4GPV2JgmCI1dfbVmHO2EoB76HA4yUnENnahRheCScqurU2wJpP8HnnI++ZSZ9/Xo5xgo5zFkHmh9q4t9uipwS626F6/AifNnmCeoqPFFS6KQqkElEAaH9St1ykjNqKoaBx6CrGkPENFgQAOw==") no-repeat center center;
  background-size: 32px 32px;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0.8;
  z-index: 1000;
}

.slider-slideshow {
  position: relative;
  background-color: #242424;
}
@media (max-width: 640px) {
  .slider-slideshow {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (min-width: 641px) and (max-width: 768px) {
  .slider-slideshow {
    margin-left: 45px;
    margin-right: 45px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .slider-slideshow {
    margin-left: 60px;
    margin-right: 60px;
  }
}
@media (min-width: 1025px) {
  .slider-slideshow {
    margin-left: 60px;
    margin-right: 60px;
  }
}
.slider-slideshow ul {
  list-style-type: none;
  white-space: nowrap;
  line-height: 0;
}
.slider-slideshow ul li {
  display: inline-block;
  width: 100%;
}
.slider-slideshow ul li .image {
  width: 100%;
  position: relative;
  padding-top: 66.93548%;
  overflow: hidden;
}
.slider-slideshow ul li .image img {
  display: block;
  position: absolute;
  left: -100%;
  right: -100%;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 100%;
}
.slider-slideshow .bx-wrapper .bx-controls .bx-pager {
  bottom: 75px;
}
.slider-slideshow .slideshow-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
}
.slider-slideshow .slideshow-controls .bx-controls-auto-item {
  background-color: rgba(0, 0, 0, 0.7);
  display: inline-block;
  padding: 20px;
  border-radius: 5px 5px 0 0;
}
.slider-slideshow .slideshow-controls .bx-controls-auto-item a {
  color: #fff;
}

.social-block {
  background-color: #079cdd;
  background: url("/bundles/wetenschappublicationbundle/images/background-blue-diamond.jpg");
  text-align: center;
  padding: 30px 60px;
  position: relative;
}
@media (max-width: 640px) {
  .social-block {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 641px) and (max-width: 768px) {
  .social-block {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .social-block {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1025px) {
  .social-block {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 200px) and (max-width: 640px) {
  .social-block {
    padding: 30px 15px;
  }
}
.social-block:after {
  content: '';
  display: block;
  position: absolute;
  width: 70px;
  height: 30px;
  margin: 0 auto auto;
  top: -1px;
  left: 0;
  right: 0;
  background: transparent url("/bundles/wetenschappublicationbundle/images/lip-grey.svg") no-repeat center top;
}
.social-block h3 {
  color: #004463;
  margin-bottom: 0;
}
@media (min-width: 200px) and (max-width: 640px) {
  .social-block h3 {
    font-size: 2.5rem;
    margin-top: 0px;
  }
}
.social-block p {
  margin-top: 10px;
  font-family: NPOsansLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #006b99;
  margin-bottom: 20px;
}
@media (min-width: 200px) and (max-width: 640px) {
  .social-block p {
    margin-top: 0px;
    margin-bottom: 10px;
    font-size: 1.4rem;
  }
}
.social-block ul.slides {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.social-block ul.slides li a {
  color: #fff;
  text-decoration: underline;
}
.social-block ul.slides li .tweet {
  text-align: center;
  font-family: NPOsansLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  max-width: 960px;
  line-height: 1.8rem;
  margin: 0 auto;
  color: #fff;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .social-block ul.slides li .tweet {
    font-size: 1.3rem;
    margin-top: 20px;
  }
}
.social-block ul.slides li .tweet a {
  text-decoration: none;
}
.social-block ul.slides li .tweet i {
  color: transparent;
  display: inline;
  padding: 0 7px;
  background-size: 100% auto;
  vertical-align: top;
  margin: 4px 0;
}
.social-block ul.slides li .tweet i:first-child {
  background: transparent url("/bundles/wetenschappublicationbundle/images/quote-open-darkblue.svg") no-repeat center top;
}
.social-block ul.slides li .tweet i:last-child {
  background: transparent url("/bundles/wetenschappublicationbundle/images/quote-close-darkblue.svg") no-repeat center top;
}
.social-block ul.slides li .tweeter {
  margin: 30px auto 0;
  width: 104px;
  height: 104px;
}
@media (max-width: 640px) {
  .social-block ul.slides li .tweeter {
    margin: 20px auto 0 auto;
    transform: scale(0.6, 0.6) translateX(-100%);
  }
}
.social-block .bx-wrapper .bx-controls .bx-pager {
  bottom: -70px;
}

.social-links {
  margin-top: 45px;
  margin-bottom: 45px;
  display: table;
  width: 100%;
  text-align: center;
}
@media (max-width: 640px) {
  .social-links {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 641px) and (max-width: 768px) {
  .social-links {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .social-links {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1025px) {
  .social-links {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.social-links ul {
  list-style-type: none;
  display: table-row;
}
.social-links ul li {
  display: table-cell;
  padding: 0 1rem;
  width: 33.33%;
}
.social-links ul li .image {
  width: 26px;
  height: 26px;
}
.social-links ul li .title {
  font-family: NPOsansBold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #079cdd;
  margin-bottom: 0;
}
.social-links ul li .cta {
  font-family: NPOsansLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #999999;
  font-size: 1.2rem;
  line-height: 2rem;
  font-style: italic;
  margin: 0;
}
@media (max-width: 640px) {
  .social-links {
    text-align: left;
    display: block;
    font-family: NPOsansLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
  }
  .social-links ul {
    display: block;
  }
  .social-links ul li {
    display: inline-block;
    margin-bottom: 10px;
    width: 100%;
    padding: 0px;
  }
  .social-links ul li .image {
    float: left;
    margin: 10px 30px 40px 6px;
    width: 36px;
    height: 36px;
  }
  .social-links ul li .cta {
    font-size: 1.2rem;
    line-height: 1.5rem;
    margin-top: 5px;
  }
}

.author-block {
  position: relative;
  width: 100px;
  height: 100px;
}
.author-block .thumb {
  width: 100%;
  height: 100%;
  position: relative;
}
.author-block .thumb:before {
  content: '';
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}
.author-block .thumb .image {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  left: 7px;
  top: 7px;
  right: 7px;
  bottom: 7px;
  background-color: #e6f5fc !important;
}
.author-block .thumb .image img {
  display: block;
  top: 0;
  left: -100%;
  right: -100%;
  margin: auto;
  height: 101%;
  min-width: 101%;
  max-width: none;
  position: absolute;
}
.author-block .name {
  position: absolute;
  top: 20%;
  left: 130%;
  white-space: nowrap;
  text-align: left;
  font-family: NPOsansLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  color: #004463;
}
.author-block .name:before {
  content: '';
  display: block;
  position: absolute;
  right: 105%;
  top: 10%;
  width: 55px;
  height: 25px;
  background: transparent url("/bundles/wetenschappublicationbundle/images/line-author-darkblue.svg") no-repeat center center;
  background-size: 100% 100%;
}
.author-block .name .link {
  display: block;
  text-decoration: none;
  font-style: italic;
}

.author-container {
  width: 100%;
  border-top: 1px solid #d2d2d2;
  border-bottom: 1px solid #d2d2d2;
  margin-top: 45px;
  margin-bottom: 40px;
  padding-bottom: 30px;
}
@media (min-width: 200px) and (max-width: 640px) {
  .author-container {
    padding-bottom: 10px !important;
  }
}
.author-container .author-social {
  display: block;
  height: 100px;
  width: auto;
}
.author-container .author-social .social {
  border: 1px solid #d2d2d2;
  margin: 44px 0 0 5px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% auto;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  position: relative;
  float: left;
  clear: none;
  bottom: 0;
}
.author-container .author-social .social:first-of-type {
  margin: 44px 0 0 20px;
}
.author-container .author-social .social.twitter {
  background-image: url("/bundles/wetenschappublicationbundle/images/icon-social-twitter-blue.svg");
}
.author-container .author-social .social.facebook {
  background-image: url("/bundles/wetenschappublicationbundle/images/icon-social-facebook-blue.svg");
}
.author-container .author-social .social.email {
  background-image: url("/bundles/wetenschappublicationbundle/images/icon-social-email-blue.svg");
}
.author-container .author-social .author-image-wrapper {
  overflow: hidden;
  margin: -14px 0 0 0;
  width: 115px;
  float: left;
  clear: none;
}
@media (min-width: 200px) and (max-width: 640px) {
  .author-container .author-social .author-image-wrapper {
    width: 68px;
  }
}
.author-container .author-social .author-image-wrapper .thumb {
  border-radius: 50%;
  border: 1px solid #d2d2d2;
  width: 75px;
  height: 75px;
  margin: 28px 0 0 0;
}
.author-container .author-social .author-image-wrapper .thumb .image {
  left: 4px;
  top: 5px;
  right: 5px;
  bottom: 4px;
}
.author-container .author-social .author-image-wrapper .thumb:after {
  left: 74%;
  top: 32% !important;
  width: 55px;
  background: transparent url("/bundles/wetenschappublicationbundle/images/line-author-blue.svg") no-repeat center left !important;
  right: 105%;
}
.author-container .author-social .name {
  clear: none;
  float: left;
  display: block;
  margin: 42px 0 0 8px;
  color: #079cdd;
}
@media (min-width: 200px) and (max-width: 640px) {
  .author-container .author-social .name {
    margin: 18px 10px 10px 0;
  }
}
.author-container .author-social .name .role {
  display: block;
  clear: both;
  font-family: NPOsansLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: italic;
  color: #999999;
  font-size: 1rem;
}
@media screen and (max-width: 640px) {
  .author-container .author-social {
    display: inline-block;
    height: auto;
  }
  .author-container .author-social .social {
    width: 65px;
    height: 65px;
  }
  .author-container .author-social .social.twitter {
    margin: 10px 5px 0 0px;
  }
  .author-container .author-social .social.facebook {
    margin: 10px 5px 0 5px;
  }
  .author-container .author-social .social.email {
    margin: 10px 0 0 5px;
  }
  .author-container .author-social .name {
    font-size: 1.5rem;
  }
  .author-container .author-social .name .role {
    font-size: 1.2rem;
    line-height: 1.2rem;
  }
}

.content-middle {
  color: #343434;
}

@media (min-width: 1280px) {
  .content-middle {
    width: 810px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1024px) {
  .content-middle {
    width: 64%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 1023px) {
  .content-middle {
    width: 86%;
    margin-left: auto;
    margin-right: auto;
  }
}
.space-fixed-social-icons {
  display: none;
  position: fixed;
  height: 60px;
  width: 100%;
  top: 0;
  background-color: #fff;
  z-index: 999;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 6px 9px -9px #222;
}
.space-fixed-social-icons .share--buttons {
  margin: 10px 90px 0 0;
}
@media (max-width: 640px) {
  .space-fixed-social-icons {
    margin: 0px 30px 0 0;
    box-shadow: none;
  }
  .space-fixed-social-icons .share--buttons {
    margin: 10px 30px 0 0;
    float: right;
  }
  .space-fixed-social-icons .share--buttons li {
    width: 34px;
    height: 34px;
  }
}

.share--buttons {
  display: inline-block;
  float: right;
  margin: 3px 30px 0 0;
}
.share--buttons li {
  box-sizing: border-box;
  width: 34px;
  height: 34px;
  display: block;
  float: left;
  clear: none;
  margin: 4px;
  cursor: pointer;
  border-radius: 34px;
  background-size: 20px !important;
}
@media (max-width: 640px) {
  .share--buttons li {
    width: 42px;
    height: 42px;
    margin: 0px 5px;
    background-size: 16px;
  }
}
.share--buttons .share_facebook {
  background: #3b5998 url("/bundles/wetenschappublicationbundle/images/icon-social-facebook-white.svg") no-repeat center center;
}
.share--buttons .share_twitter {
  background: #00aced url("/bundles/wetenschappublicationbundle/images/icon-social-twitter-white.svg") no-repeat center center;
}
.share--buttons .share_email {
  background: #079cdd url("/bundles/wetenschappublicationbundle/images/icon-social-email-white.svg") no-repeat center center;
}
.share--buttons .share_whatsapp {
  background: #49c354 url("/bundles/wetenschappublicationbundle/images/icon-social-whatsapp-white.svg") no-repeat center center;
}
.share--buttons a {
  height: 100%;
  width: 100%;
  display: inline-block;
}
@media (min-width: 641px) {
  .share--buttons .share_whatsapp {
    display: none;
  }
}
@media (max-width: 640px) {
  .share--buttons {
    display: inline-block;
    float: none;
    margin: 15px 0px;
  }
}

.share--buttons-overlay {
  float: right;
  margin: 5px 30px 0 0;
}
.share--buttons-overlay li {
  width: 34px;
  height: 34px;
}
@media (max-width: 640px) {
  .share--buttons-overlay li {
    margin: 4px;
  }
}

@media (min-width: 200px) and (max-width: 640px) {
  .article-social {
    display: inline-block;
    width: 100%;
    height: 50px;
    text-align: center;
  }
}
.copyright {
  color: #adadad;
  font-size: 0.8rem;
  text-align: right;
  margin-top: -25px;
  padding-right: 15px;
  position: absolute;
  right: 0;
  text-shadow: 0px 2px #666666;
  z-index: 100;
}

.floating-bar {
  position: fixed;
  bottom: 0px;
  width: 100%;
  height: 40px;
  background: #f9f9f9;
  background: rgba(249, 249, 249, 0.85);
  text-align: center;
  z-index: 200;
}
@media (max-width: 768px) {
  .floating-bar {
    display: none;
  }
}

.js-floatingBar {
  height: auto;
  overflow: hidden;
}

.author-social .author-image-wrapper {
  width: 135px;
  display: block;
}
@media (min-width: 200px) and (max-width: 640px) {
  .author-social .author-image-wrapper {
    width: 84px;
  }
}
.author-social .author-image-wrapper .author-image {
  position: relative;
  width: 100px;
  height: 100px;
}
@media (min-width: 200px) and (max-width: 640px) {
  .author-social .author-image-wrapper .author-image {
    width: 50px;
    height: 50px;
  }
}
.author-social .author-image-wrapper .author-image .thumb {
  width: 100%;
  height: 100%;
  position: relative;
}
.author-social .author-image-wrapper .author-image .thumb:before {
  content: '';
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}
.author-social .author-image-wrapper .author-image .thumb .image {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  left: 7px;
  top: 7px;
  right: 7px;
  bottom: 7px;
  background-color: #e6f5fc !important;
}
@media (min-width: 200px) and (max-width: 640px) {
  .author-social .author-image-wrapper .author-image .thumb .image {
    left: 3px;
    top: 3px;
    right: 3px;
    bottom: 3px;
  }
}
.author-social .author-image-wrapper .author-image .thumb .image img {
  display: block;
  top: 0;
  left: -100%;
  right: -100%;
  margin: auto;
  height: 101%;
  position: absolute;
}
.author-social .author-image-wrapper .author-image .thumb:after {
  content: '';
  display: block;
  position: absolute;
  left: 70%;
  top: 24%;
  width: 55px;
  height: 25px;
  background: transparent url("/bundles/wetenschappublicationbundle/images/line-author-darkblue.svg") no-repeat center left;
  background-size: 100% 100%;
}
@media (min-width: 200px) and (max-width: 640px) {
  .author-social .author-image-wrapper .author-image .thumb:after {
    width: 25px;
  }
}
.author-social .author-image-wrapper .author-image .name {
  position: absolute;
  top: 20%;
  left: 130%;
  white-space: nowrap;
  text-align: left;
  font-family: NPOsansBold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #004463;
}
.author-social .author-image-wrapper .author-image .name .link {
  display: block;
  text-decoration: none;
  font-style: italic;
}

/* Homepage oud*/
.column h2 {
  font-size: 2em;
  color: #343434;
  margin: 1em 0 0.2em 0;
}
.column h3 {
  color: #a4a4a4;
  margin: 0.1em 0 1.8em 0;
  margin-left: 47px;
}
.column ul {
  list-style-type: none;
  width: 100%;
  margin: 0 0 2em 0;
}

.teaser_carousel, .teaser-title, .teaser-subtitle, .description-wrap {
  width: 100%;
  text-align: center;
  text-shadow: 1px 1px 0px black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 200px) and (max-width: 640px) {
  .teaser-title {
    font-family: NPOsansLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 2.0rem;
    margin: 0px;
    line-height: 2.0rem;
    padding: 10px 20px;
  }
}

.teaser_carousel {
  font-family: NPOsansLight;
}
.teaser_carousel a {
  color: #fff;
}
.teaser_carousel img {
  background-color: #22337b;
}
.teaser_carousel .title-special {
  position: absolute;
  top: 20px;
  width: 100%;
}
.teaser_carousel .carousel-image {
  background-position: center;
  background-size: cover;
}
.teaser_carousel .carousel-image .copyright {
  margin-top: -60px;
}
.teaser_carousel .image-scale-wrapper {
  opacity: 0.7;
}
.teaser_carousel .teaser {
  position: relative;
}
.teaser_carousel .teaser img {
  width: 100%;
}
.teaser_carousel .teaser .slide {
  height: 785px;
  padding-bottom: 36px;
}
@media (min-width: 200px) and (max-width: 640px) {
  .teaser_carousel .teaser .slide {
    height: 580px;
    padding-bottom: 16px;
  }
}
.teaser_carousel .carousel-gradient-d-t {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #01415e 81%, #014463 100%);
}
.teaser_carousel .teaser-subtitle {
  letter-spacing: 1px;
  font-size: 1.3rem;
}
@media (max-width: 768px) {
  .teaser_carousel .teaser-subtitle {
    font-size: 1.18rem;
    letter-spacing: 0px;
  }
}
@media (min-width: 200px) and (max-width: 640px) {
  .teaser_carousel .teaser-subtitle {
    letter-spacing: 0px;
  }
}
.teaser_carousel .teaser-subtitle:before, .teaser_carousel .teaser-subtitle:after {
  content: url("/bundles/wetenschappublicationbundle/images/line.png");
  display: inline-block;
  vertical-align: middle;
  margin: 0px 20px 15px 20px;
}
@media (min-width: 200px) and (max-width: 640px) {
  .teaser_carousel .teaser-subtitle:before, .teaser_carousel .teaser-subtitle:after {
    content: url("/bundles/wetenschappublicationbundle/images/line-short.png");
    margin: 0px 8px 15px 20px;
    width: 15px;
    overflow: hidden;
  }
}
.teaser_carousel .description-wrap {
  margin-top: 20px;
}
@media (max-width: 640px) {
  .teaser_carousel .description-wrap {
    display: none;
  }
}
.teaser_carousel .teaser-description {
  font-family: NPOsansLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.45rem;
  text-align: center;
  width: 100%;
  display: block;
  max-width: 620px;
  max-height: 380px;
  overflow: hidden;
  margin: auto;
  line-height: 2rem;
}
@media (min-width: 640px) and (max-width: 1024px) {
  .teaser_carousel .teaser-description {
    max-width: 80%;
  }
}
@media (min-width: 200px) and (max-width: 640px) {
  .teaser_carousel .teaser-description {
    max-width: 80%;
    max-height: 260px;
    letter-spacing: 1px;
    line-height: 21px;
    font-size: 20px;
  }
}
.teaser_carousel .author-block {
  width: 50px;
  height: 50px;
}
.teaser_carousel .author-block .name {
  white-space: normal;
}
.teaser_carousel .author-block .name:before {
  display: none;
}
.teaser_carousel .teaser-overlay {
  position: absolute;
  width: 100%;
  height: 25%;
  bottom: 0px;
}
.teaser_carousel .teaser-overlay:after {
  content: '';
  display: block;
  background: transparent url("/bundles/wetenschappublicationbundle/images/v-band-grey.svg") no-repeat center top;
  background-size: cover;
  height: 38px;
  position: absolute;
  bottom: -1px;
  left: -10px;
  right: -10px;
  z-index: 3;
}
.teaser_carousel .teaser-items-wrap {
  position: absolute;
  bottom: 120px;
  width: 100%;
  height: 100px;
  text-shadow: 0px 0px 0px #000;
  font-family: NPOsansBold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  z-index: 2;
}
@media (min-width: 200px) and (max-width: 640px) {
  .teaser_carousel .teaser-items-wrap {
    bottom: 80px;
  }
}
@media (max-width: 640px) {
  .teaser_carousel .teaser-items-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 641px) and (max-width: 768px) {
  .teaser_carousel .teaser-items-wrap {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .teaser_carousel .teaser-items-wrap {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1025px) {
  .teaser_carousel .teaser-items-wrap {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.teaser_carousel .teaser-items-wrap img {
  width: auto;
  max-width: 100%;
}
.teaser_carousel .teaser-items-wrap ul.teaser-item, .teaser_carousel .teaser-items-wrap ul.teaser-item li {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 640px) {
  .teaser_carousel .teaser-items-wrap ul.teaser-item, .teaser_carousel .teaser-items-wrap ul.teaser-item li {
    display: none !important;
  }
}
.teaser_carousel .teaser-items-wrap ul.teaser-item li {
  padding: 20px 0 0 20px;
  height: 100px;
  max-width: 25%;
  border-right: 1px solid #087eb0;
  background: no-repeat right bottom #079cdd;
  overflow: hidden;
  text-align: left;
  -ms-flex-positive: 1;
      flex-grow: 1;
}
@media (max-width: 768px) {
  .teaser_carousel .teaser-items-wrap ul.teaser-item li {
    max-width: 33.333%;
  }
}
.teaser_carousel .teaser-items-wrap ul.teaser-item li p {
  line-height: 16px;
  margin: -5px 0 7px -1.5%;
  width: 95%;
}
@media (min-width: 1024px) {
  .teaser_carousel .teaser-items-wrap ul.teaser-item li p {
    line-height: 18px;
  }
}
@media (max-width: 768px) {
  .teaser_carousel .teaser-items-wrap ul.teaser-item li p {
    line-height: 16px;
  }
}
.teaser_carousel .teaser-items-wrap ul.teaser-item li .dark-blue-text {
  color: #004463;
}
.teaser_carousel .teaser-items-wrap ul.teaser-item li .name {
  position: absolute;
  top: 0px;
  width: 180px;
}
.teaser_carousel .teaser-items-wrap ul.teaser-item li .title {
  position: absolute;
  top: 20px;
  width: 180px;
  left: 130%;
  font-style: italic;
  font-weight: bold;
}
.teaser_carousel .teaser-items-wrap ul.teaser-item li .title:before {
  content: "";
  display: block;
  position: absolute;
  left: -33px;
  top: -11px;
  width: 29px;
  height: 16px;
  background: transparent url("/bundles/wetenschappublicationbundle/images/line-author-darkblue.svg") no-repeat scroll center center/100% 100%;
  overflow: hidden;
}
.teaser_carousel .teaser-items-wrap ul.teaser-item {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-pack: center;
      justify-content: center;
}
.teaser_carousel .teaser-items-wrap ul.teaser-item li:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.teaser_carousel .teaser-items-wrap ul.teaser-item li:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
@media (max-width: 768px) {
  .teaser_carousel .teaser-items-wrap ul.teaser-item li:nth-child(4) {
    display: none;
  }
}
.teaser_carousel .teaser-items-wrap ul.teaser-item .author {
  border-right: none;
}
.teaser_carousel .teaser-items-wrap ul.teaser-item .react {
  max-width: 75%;
  padding: 28px 10px;
}
.teaser_carousel .teaser-items-wrap ul.teaser-item .react .item-title {
  float: left;
  margin-left: 2.5%;
  position: relative;
  width: 65%;
}
@media screen and (max-width: 768px) {
  .teaser_carousel .teaser-items-wrap ul.teaser-item .react .item-title {
    width: 60%;
  }
}
@media (min-width: 1020px) {
  .teaser_carousel .teaser-items-wrap ul.teaser-item .react .item-title {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .teaser_carousel .teaser-items-wrap ul.teaser-item .react .item-title {
    width: 75%;
  }
}
@media (min-width: 1220px) {
  .teaser_carousel .teaser-items-wrap ul.teaser-item .react .item-title {
    width: 80%;
  }
}
.teaser_carousel .teaser-items-wrap ul.teaser-item .react .button {
  position: relative;
  float: right;
  margin-right: 0px;
}
@media (max-width: 768px) {
  .teaser_carousel .teaser-items-wrap ul.teaser-item .react .button {
    margin-right: 0;
  }
}
@media (min-width: 1220px) {
  .teaser_carousel .teaser-items-wrap ul.teaser-item .react .button {
    margin-right: 0;
  }
}
.teaser_carousel .teaser-items-wrap ul.teaser-item .react .button img {
  width: 20px;
  float: left;
  margin: 0 15px 0 5px;
}
.teaser_carousel .teaser-items-wrap .item-link {
  color: #ffffff;
}
.teaser_carousel .teaser-items-wrap .author-link {
  color: #014261;
}
.teaser_carousel .teaser-items-wrap .item-title {
  max-height: 50px;
  display: block;
}
.teaser_carousel .teaser-items-wrap .item-title img {
  clear: left;
  float: left;
  border-radius: 50%;
  margin-right: 30px;
}
.teaser_carousel .teaser-items-wrap .item-title img:nth-child(1) {
  width: 45px;
}
.teaser_carousel .teaser-items-wrap .item-title img:nth-child(2) {
  margin: -60px 0px 9px -8px;
  z-index: 2;
  background-color: transparent;
}
.teaser_carousel .teaser-items-wrap .item-type {
  font-size: 0.85rem;
  font-family: NPOsansLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.teaser_carousel .special-button {
  color: #ffffff;
  display: none;
}
@media (min-width: 200px) and (max-width: 640px) {
  .teaser_carousel a .special-button {
    display: block;
  }
  .teaser_carousel .teaser-button {
    font-size: 1.5rem;
    background-color: #079cdd;
    padding: 20px 30px;
    border-radius: 5px;
  }
  .teaser_carousel .bx-controls-direction {
    display: none;
  }
}
.teaser_carousel .item-title a {
  text-decoration: none;
}

.arrow-down {
  width: 47px;
  height: 47px;
  border-radius: 0 0 5px 0;
  transform: rotate(45deg);
  background: linear-gradient(-45deg, #014261 50%, rgba(0, 0, 0, 0) 50%);
  margin: -23px auto;
  z-index: 3;
}

.arrow-down.to-social {
  background: linear-gradient(-45deg, #f1f1f1 50%, rgba(0, 0, 0, 0) 50%);
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .arrow-down {
    margin: -24px auto;
  }
}
@-moz-document url-prefix() {
  .arrow-down {
    margin: -24px auto;
  }

  .arrow-down.to-social {
    margin: -23px auto;
  }
}
.teaser_carousel .bx-pager {
  bottom: 10%;
}
.teaser_carousel .bx-wrapper {
  margin-bottom: 0px;
}

.news-highlight {
  padding: 45px;
  background-color: #f1f1f1;
}
@media (max-width: 640px) {
  .news-highlight {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 641px) and (max-width: 768px) {
  .news-highlight {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .news-highlight {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1025px) {
  .news-highlight {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 200px) and (max-width: 640px) {
  .news-highlight {
    padding: 30px 15px 30px 15px;
  }
}
.news-highlight .heading {
  padding-left: 40px;
  margin-bottom: 30px;
}
.news-highlight .heading .title {
  color: #343434;
  position: relative;
  margin: 0 0 0.5rem;
}
.news-highlight .heading .title:before {
  content: '';
  display: block;
  position: absolute;
  left: -40px;
  top: 0;
  width: 37px;
  height: 37px;
}
.news-highlight .heading .subheading {
  font-size: 1.2rem;
  font-family: NPOsansBold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #a4a4a4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 200px) and (max-width: 640px) {
  .news-highlight .heading {
    text-align: center;
    padding-left: 0;
  }
  .news-highlight .heading .title {
    font-size: 2.5rem;
    line-height: 4rem;
  }
  .news-highlight .heading .title:before {
    display: inline-block;
    position: relative;
    height: 4rem;
    width: 4rem;
    left: auto;
    top: auto;
    vertical-align: bottom;
    margin-right: 0.5rem;
  }
  .news-highlight .heading .subheading {
    font-family: NPOsansLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.767rem;
    white-space: normal;
  }
}
.news-highlight .news {
  width: 50%;
  float: left;
  padding-right: 30px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .news-highlight .news {
    width: 100%;
    padding: 0px;
    overflow: hidden;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .news-highlight .news {
    width: 66%;
  }
}
.news-highlight .news .heading .title:before {
  background: transparent url("/bundles/wetenschappublicationbundle/images/icon-news-blue.svg") no-repeat center center;
  background-size: 100% 100%;
}
@media (min-width: 200px) and (max-width: 640px) {
  .news-highlight .news .heading .title:before {
    background-size: 80% 80%;
  }
}
.news-highlight .news .content {
  border-radius: 6px;
}
@media (max-width: 768px) {
  .news-highlight .news .content {
    width: 100%;
    padding: 0px;
    overflow: hidden;
  }
}
.news-highlight .news .content ul.items {
  list-style-type: none;
}
@media (max-width: 768px) {
  .news-highlight .news .content ul.items {
    width: 100%;
  }
}
.news-highlight .news .content ul.items li.item {
  border-top: 1px solid #f1f1f1;
  background-color: #fff;
  padding: 20px;
  min-height: 125px;
  padding-left: 152px;
  position: relative;
}
@media (max-width: 640px) {
  .news-highlight .news .content ul.items li.item {
    padding: 10px;
    min-height: 100px;
    padding-left: 124px;
  }
}
.news-highlight .news .content ul.items li.item:last-child {
  border-radius: 0 0 7px 7px;
}
@media (max-width: 640px) {
  .news-highlight .news .content ul.items li.item:last-child {
    border-radius: 0;
  }
}
.news-highlight .news .content ul.items li.item .thumbset {
  position: absolute;
  left: 20px;
  top: 20px;
  margin-right: 20px;
  width: 112px;
}
@media (max-width: 640px) {
  .news-highlight .news .content ul.items li.item .thumbset {
    position: absolute;
    left: 10px;
    top: 10px;
    margin-right: 10px;
    width: 100px;
  }
}
.news-highlight .news .content ul.items li.item .thumbset .thumbbox {
  border-radius: 5px;
  height: 100%;
  overflow: hidden;
  position: relative;
  padding: 76.05634% 0 0 0;
  width: 100%;
}
.news-highlight .news .content ul.items li.item .thumbset .thumbbox img {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
}
.news-highlight .news .content ul.items li.item .thumbset .overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 20px;
  width: 100%;
  max-height: 80%;
  overflow: hidden;
  box-sizing: border-box;
}
.news-highlight .news .content ul.items li.item .thumbset .media {
  border-bottom-right-radius: 7px;
  height: 25%;
  width: 25%;
}
.news-highlight .news .content ul.items li.item .textbox {
  max-height: 84px;
}
.news-highlight .news .content ul.items li.item .textbox .category {
  color: black;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  line-height: 1rem;
  font-family: NPOsansBold, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.news-highlight .news .content ul.items li.item .textbox .category span {
  font-family: NPOsansLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.news-highlight .news .content ul.items li.item .textbox .meta {
  font-size: 0.9rem;
  line-height: 1rem;
  color: #a4a4a4;
  font-style: italic;
}
.news-highlight .news .content ul.items li.item .textbox .list-title {
  font-size: 18px;
  color: #079cdd;
  margin-top: 0;
  display: block;
  overflow: hidden;
  max-height: 80px;
  width: 100%;
  word-wrap: break-word;
  white-space: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 640px) {
  .news-highlight .news .content ul.items li.item .textbox .list-title {
    font-size: 18px;
    line-height: 20px;
    font-weight: 100;
    padding: 5px;
    word-wrap: break-word;
    white-space: normal;
  }
}
.news-highlight .news .content ul.items li.item .textbox .list-title:before {
  content: '';
  display: block;
  position: absolute;
  top: 30px;
  width: 50px;
  height: 50px;
  left: 98px;
  background: transparent url("/bundles/wetenschappublicationbundle/images/line-author-blue.svg") no-repeat left top;
  background-size: 100% auto;
}
@media (max-width: 640px) {
  .news-highlight .news .content ul.items li.item .textbox .list-title:before {
    top: 24px;
    left: 74px;
  }
}
.news-highlight .news .content .more-button {
  padding: 20px;
  background-color: #fff;
  margin: -5px 0 0 0;
  border-top: 1px solid #f1f1f1;
  border-radius: 0 0 5px 5px;
  display: none;
}
@media (max-width: 640px) {
  .news-highlight .news .content .more-button {
    display: block;
  }
}
@media (max-width: 768px) {
  .news-highlight .news .content .more-button {
    display: block;
    width: 100%;
  }
}
.news-highlight .news .content .more-button .more-button {
  margin: 0;
}
.news-highlight .highlight {
  width: 48%;
  float: right;
  margin-bottom: 30px;
}
@media (max-width: 768px) and (max-width: 1023px) {
  .news-highlight .highlight {
    width: 100%;
    float: left;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .news-highlight .highlight {
    width: 30%;
    float: left;
  }
}
.news-highlight .highlight .heading .title:before {
  background: transparent url("/bundles/wetenschappublicationbundle/images/icon-highlight-blue.svg") no-repeat center center;
  background-size: 100% 100%;
}
@media (min-width: 200px) and (max-width: 640px) {
  .news-highlight .highlight .heading .title:before {
    background-size: 80% 80%;
  }
}
.news-highlight .highlight .content {
  height: 100%;
  overflow: none;
}
.news-highlight .highlight .content ul.items {
  list-style-type: none;
}
.news-highlight .highlight .content ul.items li.item {
  float: left;
  width: 50%;
  height: 160px;
  padding: 0 5px 10px;
  margin: 0 0 19px 0;
}
@media (max-width: 640px) {
  .news-highlight .highlight .content ul.items li.item {
    width: 100%;
    float: left;
  }
}
@media (max-width: 767px) {
  .news-highlight .highlight .content ul.items li.item {
    width: 100%;
    float: none;
  }
}
@media (max-width: 1023px) {
  .news-highlight .highlight .content ul.items li.item {
    width: 100%;
    float: none;
  }
}
.news-highlight .highlight .content ul.items li.item .thumbset {
  position: relative;
}
@media (min-width: 1024px) {
  .news-highlight .highlight .content ul.items li.item .thumbset {
    float: none;
  }
}
.news-highlight .highlight .content ul.items li.item .thumbset .thumbbox {
  height: 160px;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  padding: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.news-highlight .highlight .content ul.items li.item .thumbset .thumbbox:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(1, 21, 30, 0) 1%, rgba(1, 21, 30, 0) 60%, #01151e 92%, #01151e 100%);
}
.news-highlight .highlight .content ul.items li.item .thumbset .thumbbox img {
  bottom: 0;
  display: none;
  height: 160px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  width: auto;
  max-width: 100%;
  height: auto;
}
.news-highlight .highlight .content ul.items li.item .thumbset .overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 20px 40px 10px 20px;
  width: 100%;
  max-height: 90%;
  overflow: hidden;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .news-highlight .highlight .content ul.items li.item .thumbset .overlay {
    padding: 20px 50px 10px 20px;
  }
}
.news-highlight .highlight .content ul.items li.item .thumbset .overlay h2 {
  color: #fff;
  font-family: NPOsansLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.3rem;
  line-height: 1.75rem;
}
@media (max-width: 767px) {
  .news-highlight .highlight .content ul.items li.item .thumbset .overlay h2 {
    font-size: 1.2rem;
    margin: 0;
    text-shadow: 1px 1px 0px black;
    line-height: 1.3rem;
  }
}
.news-highlight .highlight .content ul.items li.item .thumbset .overlay .qty {
  text-align: right;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding-top: 0.5rem;
}
.news-highlight .highlight .content ul.items li.item .thumbset .media {
  border-bottom-right-radius: 7px;
  width: 40px;
  height: 40px;
}
@media (max-width: 640px) {
  .news-highlight .highlight .content ul.items li.item .thumbset .media {
    width: 60px;
    height: 60px;
  }
}
.news-highlight .highlight .content ul.items li.item:last-child {
  padding-bottom: 0;
}
.news-highlight .more-button {
  clear: both;
  margin-top: 30px;
}

.article #content {
  width: 100%;
}

.article-body {
  width: 100% !important;
}
@media (min-width: 200px) and (max-width: 640px) {
  .article-body {
    padding: 0px;
  }
  .article-body p {
    font-size: 16px;
    line-height: 24px;
    margin: 20px 0px;
  }
}
.article-body .article-intro {
  display: inline-block;
  font-weight: bold;
}
@media (min-width: 200px) and (max-width: 640px) {
  .article-body .article-intro {
    padding: 0;
    margin: 0 !important;
  }
}
.article-body .article-intro p {
  margin-bottom: 0px;
}
.article-body h2 {
  font-size: 1rem;
  line-height: 0.1rem;
  margin-bottom: -10px;
}
.article-body .margin-top-title {
  margin-top: 40px;
}
.article-body .element-of {
  float: right;
  margin: 0 0 20px 20px;
  width: 290px;
}
@media (min-width: 200px) and (max-width: 640px) {
  .article-body .element-of {
    padding: 15px;
    margin: 0 0 20px 0 !important;
  }
}
.article-body .element-of .title {
  color: #a4a4a4;
  margin-bottom: 1rem;
  font-weight: 700;
}
.article-body .thumb-image {
  max-width: 290px;
  width: 100%;
  margin: 0 auto;
}

.content-middle {
  width: 64%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1280px) {
  .content-middle {
    width: 810px;
  }
}
@media (min-width: 641px) and (max-width: 768px) {
  .content-middle {
    width: 86%;
  }
}
@media (min-width: 200px) and (max-width: 640px) {
  .content-middle {
    display: inline-block;
    width: 100%;
    padding: 20px;
  }
}
.content-middle .detail-resources {
  margin-top: 70px;
}

#start_quiz {
  display: block;
  height: 500px;
  overflow: scroll;
}

.detail-teaser {
  margin-top: 0;
  position: relative;
}
.detail-teaser.detail-image {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.detail-teaser .teaser-label {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 10px 25px 6px 20px;
  background: transparent url("/bundles/wetenschappublicationbundle/images/label-bg-blue.svg") no-repeat right center;
  background-size: auto 100%;
}
.detail-teaser .teaser-label a {
  font-family: NPOsansLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #fff;
  display: inline-block;
  background: transparent url("/bundles/wetenschappublicationbundle/images/icon-discuss.svg") no-repeat left center;
  background-size: auto 100%;
  padding-left: 32px;
  height: 1.667rem;
}
.detail-teaser .copyright {
  color: #adadad;
  font-size: 0.8rem;
  text-align: right;
  margin-top: -25px;
  padding-right: 15px;
  position: absolute;
  right: 0;
  text-shadow: 0px 2px #666666;
  z-index: 100;
}

.copyright {
  color: #adadad;
  font-size: 0.8rem;
  text-align: right;
  margin-top: -25px;
  padding-right: 15px;
  position: absolute;
  right: 0;
  text-shadow: 0px 2px #666666;
  z-index: 100;
}

.article-header {
  padding-bottom: 30px;
}
@media (min-width: 200px) and (max-width: 640px) {
  .article-header {
    display: inline-block;
    width: 100%;
    padding: 0px;
    margin: 0 0 20px 0;
  }
}
.article-header .title {
  position: relative;
  width: 76%;
}
@media (min-width: 200px) and (max-width: 640px) {
  .article-header .title {
    margin: 0px;
    padding-bottom: 20px;
  }
}
@media (max-width: 990px) {
  .article-header .title {
    width: 76%;
  }
}
@media (max-width: 910px) {
  .article-header .title {
    width: 65%;
  }
}
@media (max-width: 640px) {
  .article-header .title {
    width: 100%;
  }
}
.article-header .title h1 {
  margin-top: 40px;
}
@media (min-width: 200px) and (max-width: 640px) {
  .article-header .title h1 {
    display: inline-block;
    width: 100%;
    padding: 0px;
    margin-top: 0px;
    font-size: 2.5rem;
    line-height: 2.85rem;
    color: #343434;
  }
}
.article-header .title .date {
  font-style: italic;
  font-size: 1.0rem;
  font-style: normal;
}
@media (min-width: 200px) and (max-width: 640px) {
  .article-header .title .date {
    font-size: 14px;
    font-style: italic;
    font-weight: normal;
    margin-top: 5px;
  }
}

.article-author .author-container {
  margin: 0;
  padding-bottom: 30px !important;
}
@media (min-width: 200px) and (max-width: 640px) {
  .article-author {
    display: inline-block;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    position: relative;
  }
  .article-author .author-container {
    display: inline-block;
    width: 100%;
    height: auto;
    padding: 0 !important;
    margin: 0;
    position: relative;
  }
  .article-author .author-container .author-social {
    display: inline-block;
    width: 100%;
    height: auto;
    padding: 0;
    margin-left: 10px;
    position: relative;
  }
  .article-author .author-container .author-social .author-image-wrapper {
    display: inline-block;
    width: 80px;
  }
  .article-author .author-container .author-social .author-image-wrapper .author-image {
    width: 50px;
    height: 50px;
  }
  .article-author .author-container .author-social .author-image-wrapper .author-image .thumb::before {
    border: 1px solid rgba(255, 255, 255, 0.4);
  }
  .article-author .author-container .author-social .author-image-wrapper .author-image .thumb::after {
    left: 30px;
    width: 40px;
  }
  .article-author .author-container .author-social .name {
    margin: 0;
    padding: 0;
    font-size: 18px;
    margin-top: 12px;
  }
  .article-author .author-container .author-social .name span {
    font-size: 16px;
    line-height: 16px;
  }
  .article-author .author-container .author-social .author-social {
    display: none;
  }
}

.detail-image {
  text-align: center;
}
.detail-image img {
  width: 100%;
}
.detail-image .copyright {
  color: #adadad;
  font-size: 0.8rem;
  margin-top: -25px;
  padding-right: 20px;
  position: absolute;
  text-shadow: 0px 2px #666666;
  z-index: 100;
}
@media (min-width: 1145px) {
  .detail-image .copyright {
    position: relative;
  }
}

.detail-twitter {
  background-color: #f1f1f1;
  padding: 20px;
  border-radius: 5px;
}
.detail-twitter iframe {
  width: 100% !important;
}

@media (max-width: 640px) {
  .detail-author {
    margin: 20px 0;
  }
}

.detail-resources ul {
  font-family: NPOsansBold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  display: block;
  margin-bottom: 20px;
  margin-top: -20px;
}
.detail-resources ul li {
  display: inline-block;
}
.detail-resources ul li:first-child {
  text-transform: uppercase;
  font-weight: bold;
  margin-right: 10px;
  width: 50px;
}
.detail-resources ul a {
  border-radius: 5px;
  display: inline-block;
  margin: 0 10px 10px 0;
  line-height: 24px;
}
.detail-resources ul a:hover {
  color: #006699;
}
.detail-resources .themas li a {
  background-color: #e6f5fc;
  border-radius: 5px;
  padding: 0 10px;
  line-height: 32px;
}
.detail-resources .themas li a:hover {
  color: white;
  background-color: #079cdd;
}

.detail-reageer {
  margin-bottom: 64px;
}
.detail-reageer .resources {
  background-color: #f1f1f1;
  border-radius: 5px;
  padding: 5.8% 1.85% 1.85% 2.1%;
  width: 100%;
  margin: 0;
}
.detail-reageer .resources h3 {
  font-size: 1.8em;
  line-height: 0.6em;
  letter-spacing: 0.0em;
  text-align: center;
}
.detail-reageer .resources #disqus_thread {
  background-color: #fff;
  padding: 10px;
}
.detail-reageer .arrow-down {
  background: linear-gradient(-45deg, #ffffff 50%, rgba(0, 0, 0, 0) 50%);
}

.detail-poll {
  margin-top: 40px;
  margin-bottom: 40px;
}

.detail-quote .quote {
  font-family: NPOsansBold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 2.7rem;
  max-width: 960px;
}
.detail-quote .quote i {
  color: transparent;
  display: inline;
  padding: 0 7px;
  background-size: 100% auto;
  vertical-align: top;
  margin: 4px 0;
}
.detail-quote .quote i:first-child {
  background: transparent url(/bundles/wetenschappublicationbundle/images/quote-open-grey.svg) no-repeat center top;
}
.detail-quote .quote i:last-child {
  background: transparent url(/bundles/wetenschappublicationbundle/images/quote-close-grey.svg) no-repeat center top;
}

.related-block {
  background-color: #f1f1f1;
  padding: 30px 60px;
}
@media (min-width: 200px) and (max-width: 640px) {
  .related-block {
    padding: 20px;
  }
}
.related-block .related-showcase {
  border-bottom: 1px solid #d2d2d2;
  width: 100%;
  padding: 5px 0 30px;
  margin-bottom: 20px;
}
.related-block .related-showcase:last-of-type {
  border: none;
}
.related-block .related-showcase h2 {
  font-size: 26px;
  margin: 0 0 30px;
}
.related-block .related-showcase .thumbs-wrapper {
  position: relative;
}
.related-block .related-showcase .thumbs-wrapper .thumbs {
  list-style-type: none;
}
.related-block .related-showcase .thumbs-wrapper .thumbs .thumb {
  box-sizing: border-box;
  width: 0;
}
.related-block .related-showcase .thumbs-wrapper .thumbs .thumb .image {
  box-sizing: border-box;
  background-color: #d2d2d2;
  border-radius: 7px;
  overflow: hidden;
  position: relative;
  padding-top: 75.83333%;
  width: 100%;
  z-index: 1;
}
.related-block .related-showcase .thumbs-wrapper .thumbs .thumb .image img {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: auto;
  margin: auto;
}
.related-block .related-showcase .thumbs-wrapper .thumbs .thumb .image .media {
  width: 30px;
  height: 30px;
  z-index: 2;
}
.related-block .related-showcase .thumbs-wrapper .thumbs .thumb .image:after {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(1, 21, 30, 0) 1%, rgba(1, 21, 30, 0) 60%, #01151e 92%, #01151e 100%);
}
.related-block .related-showcase .thumbs-wrapper .thumbs .thumb h3 {
  position: absolute;
  left: 20px;
  bottom: 17px;
  font-size: 18px;
  line-height: 1.5em;
  margin: 0;
  color: #fff;
  z-index: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 85%;
  max-height: 3em;
}
.related-block .related-showcase .thumbs-wrapper .bx-controls-direction a {
  opacity: 1;
  transition: opacity 500ms ease;
  top: 0;
  margin: 0;
  height: 100%;
  width: 40px;
  cursor: pointer;
  background: #d2d2d2 url("/bundles/wetenschappublicationbundle/images/icon-arrow-purple.svg") no-repeat;
  border-radius: 5px;
}
.related-block .related-showcase .thumbs-wrapper .bx-controls-direction a.bx-prev {
  background-position: 14px 134px;
  left: -41px;
}
.related-block .related-showcase .thumbs-wrapper .bx-controls-direction a.bx-prev:hover {
  background-position: 14px -60px;
}
.related-block .related-showcase .thumbs-wrapper .bx-controls-direction a.bx-next {
  background-position: -31px 134px;
  right: -41px;
}
.related-block .related-showcase .thumbs-wrapper .bx-controls-direction a.bx-next:hover {
  background-position: -31px -60px;
}
.related-block .related-showcase .thumbs-wrapper .bx-controls-direction a.disabled {
  display: block;
  visibility: hidden;
  opacity: 0;
}

.media-player {
  background-color: #f1f1f1;
  border-radius: 7px;
  padding: 20px;
  margin: 30px 0;
}
.media-player .player {
  background-color: #333333;
  border-radius: 7px;
  overflow: hidden;
}
.media-player.description h3 {
  margin: 0;
}
.media-player.description p {
  margin: 0;
}
.media-player.video {
  margin-top: 30px;
  margin-bottom: 40px;
}
.media-player.video .auto-resizable-iframe {
  max-width: 100%;
  margin: 0px auto;
}
.media-player.video .auto-resizable-iframe > div {
  position: relative;
  padding-bottom: 56.25%;
  height: 0px;
}
.media-player.video .auto-resizable-iframe > div.soundcloud {
  padding-bottom: 180px;
}
.media-player.video .auto-resizable-iframe iframe {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.media-player.video .player {
  width: 100%;
  min-height: 1px;
  position: relative;
  padding-top: 56.25%;
}
.media-player.video .player .npoplayer_wrapper {
  position: absolute !important;
  left: 0;
  top: 0;
}
.media-player.audio {
  margin-top: 40px;
  margin-bottom: 40px;
}
.media-player.audio .player {
  position: relative;
  height: 100px;
  padding-left: 20px;
  overflow: hidden;
  background-color: #000000;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
}
.media-player.audio .image {
  position: relative;
  float: left;
  height: 100px;
  overflow: hidden;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
}

.jwlogo {
  display: none;
}

.quiz-wrapper {
  display: block;
  width: 64%;
  text-align: center;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 0;
}
@media (min-width: 200px) and (max-width: 640px) {
  .quiz-wrapper {
    width: 100%;
    padding: 10px;
  }
}

.article-body {
  width: 64%;
  margin-left: auto;
  margin-right: auto;
}

.dossier-head {
  background-color: #f1f1f1;
}
.dossier-head .poster {
  position: relative;
  background-color: #f1f1f1;
  overflow: hidden;
  display: block;
  height: 250px;
  text-shadow: 1px 1px 0px black;
}
.dossier-head .poster img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: auto;
}
@media (min-width: 200px) and (max-width: 640px) {
  .dossier-head .poster img {
    min-width: 100%;
    width: auto;
    height: 100%;
  }
}
.dossier-head .poster .box {
  position: absolute;
  text-align: center;
  color: #fff;
  width: 78%;
  height: auto;
  top: 30px;
  bottom: 2rem;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
}
@media (min-width: 200px) and (max-width: 640px) {
  .dossier-head .poster .box {
    top: 20px;
  }
}
.dossier-head .poster .box h1 {
  margin: 0 0 1rem;
  line-height: 100%;
}
.dossier-head .poster .box .sub {
  width: 100%;
  display: table;
}
.dossier-head .poster .box .sub i {
  display: table-cell;
  background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAIAAAAW4yFwAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMDE0IDc5LjE1Njc5NywgMjAxNC8wOC8yMC0wOTo1MzowMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjMyNTI2NzlCRjk1NjExRTQ4Njg0OTEyNDM0QkVFNzUxIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjMyNTI2NzlDRjk1NjExRTQ4Njg0OTEyNDM0QkVFNzUxIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MzI1MjY3OTlGOTU2MTFFNDg2ODQ5MTI0MzRCRUU3NTEiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MzI1MjY3OUFGOTU2MTFFNDg2ODQ5MTI0MzRCRUU3NTEiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7ig6iFAAAAEUlEQVR42mL8//8/IxADBBgAF/wF/di3fbEAAAAASUVORK5CYII=") repeat-x left center;
}
.dossier-head .poster .box .sub span {
  display: table-cell;
  width: 5rem;
}
.dossier-head .poster .box .quiz-intro {
  display: block;
  height: 66px;
}
.dossier-head .poster .box .quiz-intro p {
  margin: 10px;
}
.dossier-head .poster:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.dossier-head .poster:after {
  content: '';
  display: block;
  background: transparent url("/bundles/wetenschappublicationbundle/images/v-band-grey.svg") no-repeat center top;
  background-size: cover;
  height: 38px;
  position: absolute;
  bottom: -1px;
  left: -10px;
  right: -10px;
  z-index: 3;
}
.dossier-head .excerpt {
  padding-top: 45px;
  padding-bottom: 45px;
}
@media (max-width: 640px) {
  .dossier-head .excerpt {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 641px) and (max-width: 768px) {
  .dossier-head .excerpt {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .dossier-head .excerpt {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1025px) {
  .dossier-head .excerpt {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.dossier-head .excerpt p {
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .dossier-head .poster .box h1 {
    margin-top: 10px;
    font-size: 28px;
  }
  .dossier-head .poster .box .sub i {
    background-size: 80% 1px;
  }
  .dossier-head .poster .box .sub span {
    font-size: 12px;
  }
  .dossier-head .poster:after {
    height: 26px;
  }
}

.quiz .poster:after {
  background: transparent url("/bundles/wetenschappublicationbundle/images/v-band-white.svg") no-repeat center top;
}

.dossier-list {
  background-color: #f1f1f1;
  padding-top: 45px;
  padding-bottom: 45px;
}
@media (max-width: 640px) {
  .dossier-list {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 641px) and (max-width: 768px) {
  .dossier-list {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .dossier-list {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1025px) {
  .dossier-list {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.dossier-list .list-head .meta {
  float: left;
  color: #a4a4a4;
  font-style: italic;
  padding-top: 26px;
}
.dossier-list .list-head ul.toggle-widget {
  float: right;
  margin-bottom: 1.5rem;
}
.dossier-list .list-head ul.toggle-widget li {
  width: 58px;
  height: 40px;
  position: relative;
}
.dossier-list .list-head ul.toggle-widget li svg {
  position: absolute;
  width: 22px;
  height: 13px;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.dossier-list .list-head ul.toggle-widget li svg rect {
  fill: #858585;
}
.dossier-list .list-head ul.toggle-widget li:hover svg rect, .dossier-list .list-head ul.toggle-widget li:focus svg rect {
  fill: #ac56bc;
}
.dossier-list .list-head ul.toggle-widget li.selected {
  background-color: #f1f1f1;
}
.dossier-list .list-head ul.toggle-widget li.selected svg rect {
  fill: #874593;
}
.dossier-list ul.thelist {
  border-top: 1px solid #d2d2d2;
  list-style-type: none;
  padding: 0;
}
.dossier-list ul.thelist li {
  margin-left: 30px;
  position: relative;
  padding: 20px 0 0;
}
.dossier-list ul.thelist li:before {
  content: '';
  position: absolute;
  left: -28px;
  top: 0;
  width: 8px;
  bottom: -1px;
  background: transparent url("/bundles/wetenschappublicationbundle/images/bullet-lined.svg") no-repeat center -3px;
  background-size: 100% auto;
}
.dossier-list ul.thelist li.item:first-child:before {
  top: 26px;
  background-position: center -29px;
}
.dossier-list ul.thelist li.more-button:before {
  background-position: center bottom;
}
.dossier-list ul.thelist li.more-button.loading:after {
  top: 20px;
}
.dossier-list ul.thelist li h2 {
  margin: 0 0 0.7rem 0;
}
.dossier-list ul.thelist li .category {
  color: black;
  margin-bottom: 0.8rem;
  font-family: NPOsansBold, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.dossier-list ul.thelist li .category .duration {
  font-family: NPOsansLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.dossier-list ul.thelist li .meta {
  color: #a4a4a4;
  margin-bottom: 0.8rem;
  font-style: italic;
}
.dossier-list ul.thelist li .meta.compact {
  display: none;
}
.dossier-list ul.thelist li .item-container {
  position: relative;
  padding-right: 375px;
  box-sizing: border-box;
  width: 100%;
}
.dossier-list ul.thelist li .item-container .textbox {
  box-sizing: border-box;
  background-color: #fff;
  padding: 20px;
  border-radius: 7px;
  min-height: 180px;
  z-index: 1;
  position: relative;
}
.dossier-list ul.thelist li .item-container .textbox:after {
  content: '';
  display: block;
  position: absolute;
  background: transparent url("/bundles/wetenschappublicationbundle/images/arrow-background-white.svg") no-repeat center center;
  width: 30px;
  height: 100%;
  left: 100%;
  top: 0;
  background-position: right center;
}
.dossier-list ul.thelist li .item-container .textbox .text {
  max-height: 228px;
  overflow: hidden;
  line-height: 1.5rem;
  color: #333333;
}
.dossier-list ul.thelist li .item-container .textbox .text p {
  color: #000;
  line-height: 1.5rem;
}
.dossier-list ul.thelist li .item-container .thumbset {
  position: absolute;
  top: 0;
  right: 0;
  width: 355px;
  bottom: 0;
  z-index: 0;
}
.dossier-list ul.thelist li .item-container .thumbset .thumbbox {
  height: 100%;
  width: 100%;
  border-radius: 7px;
  overflow: hidden;
  position: relative;
}
.dossier-list ul.thelist li .item-container .thumbset .thumbbox img {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
}
.dossier-list ul.thelist li .item-container .thumbset .thumbbox .dossier-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
}
.dossier-list ul.thelist li .item-container .thumbset .media {
  border-radius: 7px 0 7px 0;
}
.dossier-list ul.thelist.compact li.item {
  border-bottom: 1px solid #d2d2d2;
}
.dossier-list ul.thelist.compact li .meta.compact {
  display: block;
  float: right;
  padding-top: 11px;
  margin-left: 2rem;
}
.dossier-list ul.thelist.compact li h2 {
  margin: 0.2rem 0 0.7rem 0;
}
.dossier-list ul.thelist.compact .item-container {
  display: none;
}
@media (max-width: 640px) {
  .dossier-list ul.thelist li .item-container {
    padding-right: 0;
  }
  .dossier-list ul.thelist li .item-container .textbox {
    display: none;
  }
  .dossier-list ul.thelist li .item-container .thumbset {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    bottom: auto;
  }
  .dossier-list ul.thelist li .item-container .thumbset .thumbbox {
    padding: 76.05634% 0 0 0;
  }
}

/* Highligts elements */
.column .highlights {
  margin: 0 11% 0 4%;
}
.column .highlights a:hover {
  color: #fff;
}
.column .highlights h2:before {
  content: '';
  position: relative;
  left: 0;
  top: 10px;
  width: 37px;
  height: 37px;
  display: inline-block;
  background-repeat: no-repeat;
  margin-right: 10px;
  background-image: url("/bundles/wetenschappublicationbundle/images/icon-highlights-header-37x37.png");
}
.column .highlights h3 {
  font-size: 1.25em;
  line-height: 1.5em;
}
.column .highlights li {
  width: 48%;
  height: auto;
  display: inline-block;
  margin: 0 0 3% 0;
}
.column .highlights li .highlight-image {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  height: 214px;
  background-size: cover;
  border-radius: 0.25em;
}
.column .highlights li .highlight-image img {
  display: none;
}
.column .highlights li .highlight-image img, .column .highlights li .gradient-d-t {
  width: auto;
  box-sizing: content-box;
  border-radius: 0.25em;
  margin: 0;
}
.column .highlights li .gradient-d-t {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0);
  background: -webkit-gradient(left top, left bottom, color-stop(25%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(0, 0, 0, 0.5)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 25%, rgba(0, 0, 0, 0.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000', GradientType=0 );
}
.column .highlights li .highlight-icon {
  display: block !important;
  position: absolute;
  height: 30px;
  width: 30px;
  bottom: 0;
  right: 0;
}
.column .highlights li .highlight-icon.video {
  background-image: url("/bundles/wetenschappublicationbundle/images/icon-video-black-30x30.png");
}
.column .highlights li .highlight-icon.audio {
  background-image: url("/bundles/wetenschappublicationbundle/images/icon-audio-black-30x30.png");
}
.column .highlights li .highlight-icon.comment {
  background-image: url("/bundles/wetenschappublicationbundle/images/icon-comment-black-30x30.png");
}
.column .highlights li .highlight-icon.puzzle {
  background-image: url("/bundles/wetenschappublicationbundle/images/icon-puzzle-black-30x30.png");
}
.column .highlights li .highlight-icon.document {
  background-image: url("/bundles/wetenschappublicationbundle/images/icon-document-black-30x30.png");
}
.column .highlights li h3 {
  position: absolute;
  bottom: 18px;
  left: 15px;
  width: 80%;
  margin: 0;
  font-size: 1.25em;
  line-height: 1.35em;
  color: #fff;
}
.column .highlights li h3.dossier {
  font-size: 1.8em;
  line-height: 1.2em;
  bottom: 56px;
}
.column .highlights li .items {
  font-family: NPOSans, Helvetica, sans-serif;
  font-size: 0.9em;
  padding: 1em 0 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  text-align: right;
}
.column .highlights li .type-label {
  position: absolute;
  padding: 0 0.5em 0 0.5em;
  top: 10px;
  left: -2px;
  width: auto;
  height: 24px;
  font-family: NPOsansBold, Helvetica, sans-serif;
  font-size: 0.9em;
  font-weight: normal;
  line-height: 2em;
  color: #fff;
  border-radius: 2px;
}
.column .highlights li .type-label:after {
  content: "";
  position: absolute;
  margin: 0 0 0 0.5em;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-radius: 5px;
}
.column .highlights li .type-label.label-special {
  background: #0c3ba3;
}
.column .highlights li .type-label.label-special:after {
  border-left: 12px solid #0c3ba3;
}
.column .highlights li .type-label.label-dossier {
  background: #884594;
}
.column .highlights li .type-label.label-dossier:after {
  border-left: 12px solid #884594;
}
.column .highlights li:first-child {
  width: 100%;
}
.column .highlights li:first-child .type-label {
  padding: 0 0.8em 0 0.8em;
}
.column .highlights li:first-child .type-label:after {
  margin: 0 0 0 0.7em;
}
.column .highlights li:nth-child(even) {
  margin-right: 2.8%;
}

.indepth-page {
  background: transparent url("/bundles/wetenschappublicationbundle/images/indepth-page-bg.png") no-repeat top left;
  background-size: 100% auto;
}
.indepth-page #content {
  overflow: hidden;
}

.indepth-intro {
  margin: 60px;
}
@media (min-width: 200px) and (max-width: 640px) {
  .indepth-intro {
    margin: 20px;
    color: #343434;
  }
}
.indepth-intro .content-middle {
  width: 69%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: auto;
}
@media (min-width: 1280px) {
  .indepth-intro .content-middle {
    width: 810px;
  }
}
@media (min-width: 641px) and (max-width: 768px) {
  .indepth-intro .content-middle {
    width: 91%;
  }
}
@media (min-width: 200px) and (max-width: 640px) {
  .indepth-intro .content-middle {
    width: 100%;
  }
}
@media (min-width: 200px) and (max-width: 640px) {
  .indepth-intro p {
    font-size: 18px;
    line-height: 22px;
  }
}

.indepth-toolbar {
  margin-top: 60px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #d2d2d2;
}
@media (max-width: 640px) {
  .indepth-toolbar {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (min-width: 641px) and (max-width: 768px) {
  .indepth-toolbar {
    margin-left: 45px;
    margin-right: 45px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .indepth-toolbar {
    margin-left: 60px;
    margin-right: 60px;
  }
}
@media (min-width: 1025px) {
  .indepth-toolbar {
    margin-left: 60px;
    margin-right: 60px;
  }
}
@media (min-width: 200px) and (max-width: 640px) {
  .indepth-toolbar {
    margin: 20px;
  }
}
.indepth-toolbar ul.toggle-widget {
  float: left;
}
.indepth-toolbar ul.toggle-widget li {
  padding-left: 30px;
  padding-right: 30px;
}
.indepth-toolbar .dropdown-menu {
  float: right;
}
.indepth-toolbar .dropdown-menu .list-container {
  left: auto;
  right: 0;
}
@media (max-width: 639px) {
  .indepth-toolbar ul.toggle-widget {
    float: none;
    width: 100%;
    margin: 10px 0;
  }
  .indepth-toolbar ul.toggle-widget li {
    padding-left: 0;
    padding-right: 0;
    width: 33.33%;
    text-align: center;
  }
  .indepth-toolbar .dropdown-menu {
    margin: 10px 0;
    float: none;
    width: 100%;
  }
}

.indepth-content {
  padding-bottom: 10px;
  margin: 60px;
  min-height: 100px;
}
@media (max-width: 640px) {
  .indepth-content {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (min-width: 641px) and (max-width: 768px) {
  .indepth-content {
    margin-left: 45px;
    margin-right: 45px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .indepth-content {
    margin-left: 60px;
    margin-right: 60px;
  }
}
@media (min-width: 1025px) {
  .indepth-content {
    margin-left: 60px;
    margin-right: 60px;
  }
}
@media (min-width: 200px) and (max-width: 640px) {
  .indepth-content {
    margin: 20px;
  }
}
.indepth-content.empty {
  position: relative;
}
.indepth-content.empty:after {
  content: 'Geen artikel gevonden';
  display: block;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 2rem;
  text-align: center;
  margin: auto 0;
  color: #555555;
}
.indepth-content.loading:after {
  left: -10px;
  right: -10px;
}
.indepth-content .more-button {
  padding: 10px 0;
}

ul.indepth-items {
  list-style-type: none;
  margin: 0 -10px;
  padding: 0;
}
ul.indepth-items li.item {
  float: left;
  padding: 10px;
  box-sizing: border-box;
  position: relative;
  background-color: transparent;
}
@media (max-width: 640px) {
  ul.indepth-items li.item {
    width: 100%;
  }
}
@media (min-width: 641px) and (max-width: 1024px) {
  ul.indepth-items li.item {
    width: 50%;
  }
}
@media (min-width: 1025px) {
  ul.indepth-items li.item {
    width: 33.33%;
  }
}
ul.indepth-items li.item a {
  color: #fff;
}
ul.indepth-items li.item .thumbset {
  position: relative;
}
ul.indepth-items li.item .thumbset .thumbbox {
  height: 100%;
  width: 100%;
  border-radius: 7px;
  overflow: hidden;
  position: relative;
}
ul.indepth-items li.item .thumbset .thumbbox img {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
}
ul.indepth-items li.item .thumbset .thumbbox:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(1, 21, 30, 0) 1%, rgba(1, 21, 30, 0) 60%, #01151e 92%, #01151e 100%);
}
ul.indepth-items li.item .thumbset .overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 20px;
  width: 100%;
  max-height: 80%;
  overflow: hidden;
  box-sizing: border-box;
}
ul.indepth-items li.item .thumbset .overlay h2 {
  margin-top: 0;
}
@media (min-width: 200px) and (max-width: 640px) {
  ul.indepth-items li.item .thumbset .overlay h2 {
    line-height: 24px;
    font-size: 18px;
  }
}
@media (min-width: 200px) and (max-width: 640px) {
  ul.indepth-items li.item.special .thumbset .overlay h2 {
    line-height: 24px;
    font-size: 18px;
    text-shadow: 1px 1px 0px black;
  }
}
ul.indepth-items li.item.special .thumbset .overlay .meta {
  display: none;
}
@media (min-width: 200px) and (max-width: 640px) {
  ul.indepth-items li.item.dossier .thumbset .overlay h2 {
    line-height: 24px;
    font-size: 18px;
    text-shadow: 1px 1px 0px black;
  }
}
ul.indepth-items li.item.dossier .thumbset .overlay .meta {
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  text-align: right;
}
ul.indepth-items.normal li.item .thumbset .thumbbox {
  padding: 76.05634% 0 0 0;
}
ul.indepth-items.wide li.item {
  width: 100%;
}
ul.indepth-items.wide li.item .thumbset .thumbbox {
  padding: 28.59375% 0 0 0;
}
ul.indepth-items.wide li.item.special .thumbset .overlay h2 {
  font-size: 18px;
}
ul.indepth-items.wide li.item.special .thumbset .overlay .meta {
  display: none;
}

/* News elements */
body {
  margin: 0px;
}

#container {
  margin: auto;
  max-width: 1280px;
}

.column-wrapper, .column-wrapper-newsletter {
  background-color: #f1f1f1;
  width: 100%;
  padding-bottom: 60px;
}

.column {
  width: 50%;
  height: auto;
  display: inline-block;
  float: left;
}

.column-clear {
  clear: both;
}

.program-intro .content-middle {
  margin-left: 0px;
}

.program-about .content-middle {
  margin-left: 0px;
}

.program-slider .container {
  overflow: hidden;
  max-height: 720px;
}
@media (min-width: 200px) and (max-width: 640px) {
  .program-slider .container {
    max-height: 580px;
  }
}
.program-slider .container .bx-wrapper {
  margin-bottom: 0;
}
.program-slider .container .slides {
  width: 100%;
}
.program-slider .container .slides .slide {
  position: relative;
}
.program-slider .container .slides .slide .image {
  position: relative;
  box-sizing: border-box;
  padding-top: 56.25%;
  width: 100%;
}
.program-slider .container .slides .slide .image img {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: auto;
  margin: auto;
}
.program-slider .container .slides .slide .textbox {
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #079cdd;
  padding: 20px;
  margin: 0 auto 70px auto;
  border-radius: 7px;
  padding-right: 220px;
  min-height: 150px;
  position: absolute;
}
@media (min-width: 641px) {
  .program-slider .container .slides .slide .textbox {
    max-width: 90%;
  }
}
@media (min-width: 725px) and (max-width: 1024px) {
  .program-slider .container .slides .slide .textbox {
    max-width: 680px;
  }
}
@media (min-width: 1024px) {
  .program-slider .container .slides .slide .textbox {
    max-width: 695px;
  }
}
.program-slider .container .slides .slide .textbox:after {
  content: '';
  display: block;
  position: absolute;
  background: transparent url("/bundles/wetenschappublicationbundle/images/arrow-background-blue.svg") no-repeat center center;
  height: 30px;
  width: 100%;
  left: 0;
  bottom: 100%;
  background-position: center top;
}
.program-slider .container .slides .slide .textbox:after {
  opacity: 0.85;
}
.program-slider .container .slides .slide .textbox p {
  color: #fff;
  margin: 0;
  line-height: 22px;
  font-size: 14px;
}
.program-slider .container .slides .slide .textbox .meta {
  position: absolute;
  border-left: 1px solid rgba(52, 52, 52, 0.2);
  box-sizing: border-box;
  color: #343434;
  font-family: NPOsansLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
  width: 200px;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 20px 20px 20px 15px;
  color: #fff;
}
.program-slider .container .slides .slide .textbox .meta .title {
  font-family: NPOsansBold, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.program-slider .container .slides .slide .textbox .meta .airdate {
  font-style: italic;
  margin: 5px 0;
}
.program-slider .container .slides .slide .textbox .meta .airdate span {
  font-style: normal;
}
.program-slider .container .slides .slide .textbox .meta .button {
  margin-top: 5px;
  width: 170px;
}
.program-slider .container .slides .slide h1.title {
  position: absolute;
  width: 80%;
  left: 0;
  right: 0;
  bottom: 0;
  top: 15%;
  margin: auto;
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 0px black;
}
@media (min-width: 200px) and (max-width: 640px) {
  .program-slider .container .slides .slide h1.title {
    font-family: NPOsansLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 2.0rem;
    margin: 0px;
    line-height: 3.0rem;
    padding: 0 20px;
    width: 100%;
    text-align: center;
  }
}
.program-slider .container .slides .slide .cta.button {
  position: absolute;
  font-size: 6vw;
  bottom: 120px;
  left: 0;
  right: 0;
  width: 60%;
  margin: auto;
  padding: 10px;
  border-radius: 7px;
  display: none;
}
@media (min-width: 640px) and (max-width: 767px) {
  .program-slider .container .slides .slide .image {
    padding-top: 75%;
  }
  .program-slider .container .slides .slide .image img {
    width: auto;
    height: 100%;
    max-width: unset;
  }
}
@media (max-width: 639px) {
  .program-slider .container .slides .slide .image {
    padding-top: 135%;
  }
  .program-slider .container .slides .slide .image img {
    width: auto;
    height: 100%;
    max-width: unset;
  }
  .program-slider .container .slides .slide .textbox {
    display: none;
  }
  .program-slider .container .slides .slide h1.title {
    display: block;
    font-size: 9vw;
  }
  .program-slider .container .slides .slide .cta.button {
    display: block;
  }
}

.program-intro {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #d2d2d2;
  margin-top: 45px;
}
@media (max-width: 640px) {
  .program-intro {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (min-width: 641px) and (max-width: 768px) {
  .program-intro {
    margin-left: 45px;
    margin-right: 45px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .program-intro {
    margin-left: 60px;
    margin-right: 60px;
  }
}
@media (min-width: 1025px) {
  .program-intro {
    margin-left: 60px;
    margin-right: 60px;
  }
}
.program-intro h1 {
  margin-top: 0;
}
@media (min-width: 200px) and (max-width: 640px) {
  .program-intro h1 {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
}
.program-intro .logo-ntr {
  float: right;
  margin-left: 20px;
}
@media (min-width: 200px) and (max-width: 640px) {
  .program-intro .logo-ntr {
    float: right;
    margin: -35px -26px 0 0;
    transform: scale(0.5);
  }
}
.program-intro p {
  clear: both;
}
@media (min-width: 200px) and (max-width: 640px) {
  .program-intro .content-middle {
    padding: 0px;
    margin-bottom: 20px;
  }
}

.program-showcases {
  margin-bottom: 30px;
}
@media (max-width: 640px) {
  .program-showcases {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (min-width: 641px) and (max-width: 768px) {
  .program-showcases {
    margin-left: 45px;
    margin-right: 45px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .program-showcases {
    margin-left: 60px;
    margin-right: 60px;
  }
}
@media (min-width: 1025px) {
  .program-showcases {
    margin-left: 60px;
    margin-right: 60px;
  }
}
.program-showcases .showcase {
  padding: 5px 0 30px;
}
@media (min-width: 200px) and (max-width: 640px) {
  .program-showcases {
    margin: 0px;
  }
}

.showcase {
  width: 100%;
  padding: 5px 0 75px;
}
.showcase:last-child {
  border: none;
}
@media (min-width: 200px) and (max-width: 640px) {
  .showcase .showcase-title h2 {
    margin-top: 0px;
    font-size: 18px;
  }
}
.showcase .showcase-title a {
  display: inline-block;
}
.showcase .showcase-title .producer {
  float: right;
  padding-left: 1rem;
  color: #d2d2d2;
  font-family: NPOsansBold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin-top: 0.6rem;
}
@media (max-width: 640px) {
  .showcase .showcase-title .producer {
    margin-top: -18px;
    padding: 0px;
    font-size: 12px;
    position: absolute;
    right: 20px;
    float: none;
  }
}
.showcase .showcase-title h2 span {
  display: inline-block;
  background: transparent url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOC4xLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHdpZHRoPSI0Mi44NXB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCA0Mi44NSAyNCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNDIuODUgMjQ7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+DQoJLnN0MHtmaWxsOm5vbmU7c3Ryb2tlOiNEMkQyRDI7c3Ryb2tlLW1pdGVybGltaXQ6MTA7fQ0KPC9zdHlsZT4NCjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0zMS4yMiwyMy41SDMuNWMtMS42NiwwLTMtMS4zNC0zLTN2LTE3YzAtMS42NiwxLjM0LTMsMy0zaDI3LjcyYzAuODIsMCwxLjYsMC4zMywyLjE3LDAuOTNsOC4xMyw4LjUNCgljMS4xMSwxLjE2LDEuMTEsMi45OSwwLDQuMTVsLTguMTMsOC41QzMyLjgyLDIzLjE3LDMyLjA0LDIzLjUsMzEuMjIsMjMuNXoiLz4NCjwvc3ZnPg0K") no-repeat center center;
  width: 43px;
  height: 24px;
  font-size: 12px;
  line-height: 12px;
  color: #874593;
  box-sizing: border-box;
  text-align: center;
  padding-right: 10px;
  padding-top: 6px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0 0 0 10px;
  vertical-align: top;
}
@media (min-width: 640px) {
  .showcase .showcase-title h2 span {
    margin-top: 6px;
  }
}
.showcase .thumbs-wrapper {
  position: relative;
}
.showcase .thumbs-wrapper .bx-wrapper {
  margin: 0 !important;
  max-width: 100% !important;
}
.showcase .thumbs-wrapper .bx-loading {
  display: none;
}
.showcase .thumbs-wrapper .thumbs {
  list-style-type: none;
  white-space: nowrap;
}
.showcase .thumbs-wrapper .thumbs .thumb {
  box-sizing: content-box;
  display: inline-block;
  vertical-align: top;
  margin-right: 16px;
}
@media (min-width: 200px) and (max-width: 640px) {
  .showcase .thumbs-wrapper .thumbs .thumb p {
    margin: 0px;
    font-size: 18px;
    line-height: 20px;
    width: 80%;
  }
}
.showcase .thumbs-wrapper .thumbs .thumb .image {
  background-color: #d2d2d2;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  width: 290px;
  padding-top: 56.25%;
}
.showcase .thumbs-wrapper .thumbs .thumb .image img {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: auto;
  margin: auto;
}
.showcase .thumbs-wrapper .thumbs .thumb .image .media {
  width: 30px;
  height: 30px;
}
.showcase .thumbs-wrapper .thumbs .thumb h3 {
  margin: 10px 0 5px;
  max-width: 290px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.showcase .thumbs-wrapper .thumbs .thumb .item-meta {
  color: #000;
  font-style: italic;
}
.showcase .thumbs-wrapper .thumbs .thumb .item-meta span {
  color: #999999;
  font-style: normal;
}
.showcase .thumbs-wrapper .thumbs .thumb.meta {
  border-radius: 5px;
  background-color: #f1f1f1;
  color: #555555;
  white-space: normal;
  padding: 20px;
  line-height: 1.667rem;
  width: 290px;
  height: 175px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media (max-width: 640px) {
  .showcase .thumbs-wrapper .thumbs .thumb.meta {
    display: none;
  }
}
.showcase .thumbs-wrapper .bx-controls-direction a {
  opacity: 1;
  transition: opacity 500ms ease;
  top: 0;
  margin: 0;
  height: 100%;
  width: 40px;
  cursor: pointer;
  background: rgba(210, 210, 210, 0.5) url("/bundles/wetenschappublicationbundle/images/icon-arrow-purple.svg") no-repeat;
}
.showcase .thumbs-wrapper .bx-controls-direction a.bx-prev {
  border-radius: 5px;
  background-position: 14px -94px;
  left: -41px;
}
.showcase .thumbs-wrapper .bx-controls-direction a.bx-prev:hover {
  background-position: 14px -94px;
}
.showcase .thumbs-wrapper .bx-controls-direction a.bx-next {
  border-radius: 5px;
  background-position: -31px 100px;
  right: -41px;
}
.showcase .thumbs-wrapper .bx-controls-direction a.bx-next:hover {
  background-position: -31px -94px;
}
.showcase .thumbs-wrapper .bx-controls-direction a.disabled {
  display: block;
  visibility: hidden;
  opacity: 0;
}
@media (max-width: 640px) {
  .showcase .thumbs-wrapper .bx-controls-direction a.bx-prev {
    border-radius: 0 5px 5px 0;
    left: 0;
  }
  .showcase .thumbs-wrapper .bx-controls-direction a.bx-next {
    border-radius: 5px 0 0 5px;
    right: 0;
  }
}

.program-about .image {
  position: relative;
  box-sizing: border-box;
  padding-top: 56.25%;
  width: 100%;
  z-index: 1;
  position: relative;
}
.program-about .image img {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: auto;
  margin: auto;
}
.program-about .image:after {
  content: '';
  display: block;
  position: absolute;
  width: 70px;
  height: 30px;
  margin: 0 auto auto;
  top: -1px;
  left: 0;
  right: 0;
  background: transparent url("/bundles/wetenschappublicationbundle/images/lip-white.svg") no-repeat center top;
}
.program-about .textbox {
  z-index: 2;
  position: relative;
  border-bottom: 1px solid #d2d2d2;
  margin-bottom: 45px;
  padding: 20px 0;
  min-height: 150px;
}
@media (max-width: 640px) {
  .program-about .textbox {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (min-width: 641px) and (max-width: 768px) {
  .program-about .textbox {
    margin-left: 45px;
    margin-right: 45px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .program-about .textbox {
    margin-left: 60px;
    margin-right: 60px;
  }
}
@media (min-width: 1025px) {
  .program-about .textbox {
    margin-left: 60px;
    margin-right: 60px;
  }
}
.program-about .textbox .logo {
  width: 160px;
  height: 160px;
  border: 1px solid #d2d2d2;
  border-radius: 5px;
  overflow: hidden;
  float: left;
  margin: -60px 20px 30px 0;
}
.program-about .textbox .logo img {
  width: 100%;
  height: 100%;
}
.program-about .textbox h3 {
  margin-top: 0;
}
@media (max-width: 639px) {
  .program-about .textbox .logo {
    float: none;
    margin: -100px auto 20px;
  }
}

.featured-programs {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #333333 url("/bundles/wetenschappublicationbundle/images/background-featured-dark.png") repeat-x top left;
  width: 100%;
  height: 400px;
}
@media (max-width: 640px) {
  .featured-programs {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 641px) and (max-width: 768px) {
  .featured-programs {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .featured-programs {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1025px) {
  .featured-programs {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 200px) and (max-width: 640px) {
  .featured-programs {
    padding: 20px;
    height: 360px;
  }
}
.featured-programs .title {
  color: #999999;
}
.featured-programs .programs-showcases {
  padding: 30px 0 0;
}

.tabs-block {
  padding-top: 30px;
  margin-bottom: 45px;
  background: #f1f1f1;
}
@media (max-width: 640px) {
  .tabs-block {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 641px) and (max-width: 768px) {
  .tabs-block {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .tabs-block {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1025px) {
  .tabs-block {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 200px) and (max-width: 640px) {
  .tabs-block {
    padding-left: 0px;
    margin-bottom: 30px;
  }
}
.tabs-block .title {
  color: #079cdd;
  margin-top: 0;
  margin-bottom: 30px;
}
@media (min-width: 200px) and (max-width: 640px) {
  .tabs-block .title {
    padding-left: 20px;
  }
}

.sorter {
  margin-top: 45px;
  margin-bottom: 45px;
}
@media (max-width: 640px) {
  .sorter {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (min-width: 641px) and (max-width: 768px) {
  .sorter {
    margin-left: 45px;
    margin-right: 45px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .sorter {
    margin-left: 60px;
    margin-right: 60px;
  }
}
@media (min-width: 1025px) {
  .sorter {
    margin-left: 60px;
    margin-right: 60px;
  }
}
.sorter .toggle-widget {
  float: right;
}
.sorter .toggle-widget li {
  min-width: 120px;
  text-align: center;
}
@media (max-width: 640px) {
  .sorter .toggle-widget {
    float: none;
    width: 100%;
  }
  .sorter .toggle-widget li {
    width: 50%;
  }
}

@media (max-width: 640px) {
  .programs-list {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (min-width: 641px) and (max-width: 768px) {
  .programs-list {
    margin-left: 45px;
    margin-right: 45px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .programs-list {
    margin-left: 60px;
    margin-right: 60px;
  }
}
@media (min-width: 1025px) {
  .programs-list {
    margin-left: 60px;
    margin-right: 60px;
  }
}
.programs-list .showcase {
  border-top: 1px solid #d2d2d2;
  padding-top: 20px;
  padding-bottom: 45px;
  color: #343434;
}
.programs-list .showcase:last-of-type {
  border-bottom: 1px solid #d2d2d2;
}
@media (min-width: 200px) and (max-width: 640px) {
  .programs-list .showcase {
    padding-top: 0;
    padding-bottom: 20px;
  }
  .programs-list .showcase h2 {
    font-size: 18px;
    font-family: NPOsansLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 22px;
    margin-top: 24px;
  }
  .programs-list .showcase p {
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    padding-right: 40px;
    height: 172px;
    overflow: hidden;
    display: block;
  }
}
.programs-list.loading:after {
  left: -60px;
  right: -60px;
}

.react-page {
  width: 100%;
  margin: 0;
}
.react-page .social-block:after {
  display: none;
}

.react-articles {
  height: 794px;
  padding-top: 45px;
  padding-bottom: 45px;
  background: #f1f1f1;
}
@media (max-width: 640px) {
  .react-articles {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 641px) and (max-width: 768px) {
  .react-articles {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .react-articles {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1025px) {
  .react-articles {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.react-articles .bx-wrapper {
  margin: 0 0 60px 0;
}
.react-articles .bx-wrapper .bx-controls-direction a {
  background: #d2d2d2 url("/bundles/wetenschappublicationbundle/images/icon-arrow-purple.png") no-repeat;
}
.react-articles .bx-wrapper .bx-controls-direction a.bx-prev {
  border-radius: 5px 0 0 5px;
  background-position: 18px 15px;
  left: -60px;
}
.react-articles .bx-wrapper .bx-controls-direction a.bx-prev:hover {
  background-position: 18px -70px;
}
.react-articles .bx-wrapper .bx-controls-direction a.bx-next {
  border-radius: 0 5px 5px 0;
  background-position: -86px 15px;
  right: -60px;
}
.react-articles .bx-wrapper .bx-controls-direction a.bx-next:hover {
  background-position: -86px -70px;
}
.react-articles .bx-wrapper .bx-controls .bx-pager {
  bottom: -40px;
}
.react-articles .bx-wrapper .bx-controls .bx-pager .bx-pager-item a:after {
  background-color: #874593;
}
.react-articles ul {
  width: 100%;
}
.react-articles ul li {
  width: 100%;
  position: relative;
  height: 653px;
}
.react-articles ul li .box {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 5px;
  background: url("/bundles/wetenschappublicationbundle/images/background_articlereact.gif") #00a7f0;
  background-position: bottom;
  overflow: hidden;
}
.react-articles ul li .box .img-container .box .author .image .circle-border {
  border: 2px solid #00a7f0;
}
.react-articles ul li:nth-child(even) .box:nth-child(2n+1) {
  height: 31.2%;
  background: #e59239;
}
.react-articles ul li:nth-child(even) .box:nth-child(2n+1) .img-container img {
  display: none;
}
.react-articles ul li:nth-child(even) .box:nth-child(2n+1) .img-container .author {
  top: 20px;
}
.react-articles ul li:nth-child(even) .box:nth-child(2n+1) .img-container .author .image img {
  display: block;
}
.react-articles ul li:nth-child(even) .box:nth-child(2n+1) .img-container .author .image .circle-border {
  border: 2px solid #f2c99c;
}
.react-articles ul li:nth-child(even) .box:nth-child(2n+1) .img-container .author .image .circle-image {
  background-color: #f2c99c !important;
}
.react-articles ul li:nth-child(even) .box:nth-child(2n+1) .img-container .guide-icon-special {
  top: 34px;
}
@media screen and (min-width: 1150px) {
  .react-articles ul li:nth-child(even) .box:nth-child(2n+1) .img-container .guide-icon-special {
    top: 95px;
  }
}
.react-articles ul li:nth-child(even) .box:nth-child(2n+1) .img-container:after {
  display: none;
}
.react-articles ul li:nth-child(even) .box:nth-child(2n+1) h2 {
  position: absolute;
  top: 60px;
}
.react-articles ul li:nth-child(even) .box:nth-child(2n+1) .button {
  color: #e59239;
}
.react-articles ul li:nth-child(even) .box:nth-child(2n+1) .reactie {
  color: #f2c99c;
}
.react-articles ul li:nth-child(even) .box:nth-child(2n+2) {
  height: 66.0%;
  top: auto;
  bottom: 0;
  background: #874593;
}
.react-articles ul li:nth-child(even) .box:nth-child(2n+2) .img-container .author .image .circle-border {
  border: 2px solid #874593;
}
.react-articles ul li:nth-child(even) .box:nth-child(2n+2) .img-container .author .image .circle-image {
  background-color: #c3a2c9 !important;
}
.react-articles ul li:nth-child(even) .box:nth-child(2n+2) .img-container:after {
  background: linear-gradient(-45deg, #874593 50%, rgba(0, 0, 0, 0) 50%);
}
.react-articles ul li:nth-child(even) .box:nth-child(2n+2) .button {
  color: #874593;
}
.react-articles ul li:nth-child(even) .box:nth-child(2n+2) .reactie {
  color: #c3a2c9;
}
.react-articles ul li:nth-child(even) .box:nth-child(2n+2) h2 {
  margin-top: 14px;
}
.react-articles ul li .img-container {
  position: relative;
  width: 100%;
  padding-top: 75%;
  overflow: hidden;
}
.react-articles ul li .img-container img {
  display: block;
  position: absolute;
  top: -1px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 101%;
  margin: auto;
}
.react-articles ul li .img-container .author {
  position: absolute;
  left: 20px;
  bottom: 20px;
}
.react-articles ul li .img-container .author .image {
  float: left;
  position: relative;
}
.react-articles ul li .img-container .author .image .circle-border {
  border: 2px solid #00a7f0;
  height: 50px;
  width: 50px;
  border-radius: 50%;
}
.react-articles ul li .img-container .author .image .circle-image {
  margin: 3px 0 0 3px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  background-color: #80cded !important;
  background-size: 50px 50px;
  background: no-repeat;
  background-position: center;
  background-size: cover;
}
.react-articles ul li .img-container .author .image .circle-image img {
  opacity: 0;
  filter: alpha(opacity=0);
}
.react-articles ul li .img-container .author .image:after {
  content: '';
  background-image: url("/bundles/wetenschappublicationbundle/images/line-author-white.svg");
  height: 6px;
  width: 32px;
  position: absolute;
  top: 12px;
  left: 30px;
}
.react-articles ul li .img-container .author .name {
  color: #fff;
  font-family: NPOsansBold, Helvetica, sans-serif;
  font-size: 1.2em;
  line-height: 1.3em;
  display: inline-block;
  width: auto;
  float: left;
  margin: 4px 0 0 15px;
}
.react-articles ul li .img-container .author .name .description {
  font-family: NPOsansRegular, Helvetica, sans-serif;
  font-size: 0.75em;
  font-style: italic;
  color: #fff;
}
.react-articles ul li .img-container:after {
  content: '';
  display: block;
  position: absolute;
  left: 36px;
  bottom: -10px;
  width: 18px;
  height: 18px;
  border-radius: 0 0 4px 0;
  transform: rotate(-135deg);
  background: linear-gradient(-45deg, #079cdd 50%, rgba(0, 0, 0, 0) 50%);
  background-color: #079cdd;
}
.react-articles ul li h1 {
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
  color: #fff;
  font-size: 2.4rem;
}
.react-articles ul li h2 {
  padding-right: 40px;
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
  color: #fff;
  font-size: 1.6rem;
}
.react-articles ul li p {
  margin-left: 20px;
  margin-right: 20px;
  color: #fff;
}
.react-articles ul li .button {
  position: absolute;
  background-color: #fff;
  color: #00a7f0;
  height: 40px;
  min-width: 130px;
  width: auto;
  left: 20px;
  bottom: 20px;
}
.react-articles ul li .reactie {
  position: absolute;
  color: #80cded;
  width: 50px;
  bottom: 30px;
  right: 10px;
}
.react-articles ul li .reactie img {
  float: left;
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.react-testyourself {
  width: 100%;
  padding: 45px 0;
}
@media (max-width: 640px) {
  .react-testyourself {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 641px) and (max-width: 768px) {
  .react-testyourself {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .react-testyourself {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1025px) {
  .react-testyourself {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.react-testyourself h2 {
  margin-left: 43px;
}
.react-testyourself h2:before {
  content: " ";
  position: absolute;
  margin: 5px 0 0 -43px;
  width: 32px;
  height: 32px;
  background-image: url("/bundles/wetenschappublicationbundle/images/icon-puzzle-blue-32x32.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.react-testyourself .subtitle {
  margin: -3px 0 0 43px;
  font-family: NPOsansBold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.2em;
  color: #adadad;
}
.react-testyourself .slides-wrapper {
  margin: 0;
  padding: 0;
}
.react-testyourself .slides-wrapper, .react-testyourself .bx-viewport {
  background-color: #fff;
}
.react-testyourself ul {
  list-style-type: none;
  display: block;
  margin: 25px 0 0 0;
}
.react-testyourself li {
  position: relative;
  width: 31.45%;
  height: auto;
  margin: 0 2.75% 2.75% 0;
  border-radius: 5px;
  float: left;
  display: inline-block;
}
.react-testyourself li .react-image {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  height: 160px;
  border-radius: 5px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.react-testyourself li .react-image img {
  display: none;
}
.react-testyourself li h3 {
  position: absolute;
  width: 85%;
  left: 16px;
  bottom: 6px;
  color: #fff;
  font-size: 1.3em;
  line-height: 1.3em;
}
@media (min-width: 200px) and (max-width: 640px) {
  .react-testyourself li h3 {
    line-height: 24px;
    font-size: 18px;
    text-shadow: 1px 1px 0px black;
    left: 20px;
    bottom: 20px;
  }
}
.react-testyourself li .media {
  width: 30px;
  height: 30px;
}
.react-testyourself .showmore {
  margin: 0 0 55px 0;
}

.react-meet {
  width: 100%;
  background-color: #f1f1f1;
  padding: 36px 54px 0 54px;
  display: inline-block;
}
.react-meet h2 {
  margin-left: 43px;
  font-size: 2.2em;
  margin-bottom: 2px;
}
.react-meet h2:before {
  content: " ";
  position: absolute;
  margin: 8px 0 0 -43px;
  width: 32px;
  height: 32px;
  background-image: url("/bundles/wetenschappublicationbundle/images/icon-person.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.react-meet .subtitle {
  margin: -3px 0 0 43px;
  font-family: NPOsansBold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.2em;
  color: #adadad;
}
.react-meet .slides-wrapper {
  padding: 0;
  margin: 24px 0 10px 0;
}
.react-meet ul {
  position: relative;
  list-style-type: none;
}
.react-meet li {
  width: 25%;
  float: left;
  height: 554px;
  display: table-cell;
  margin: 0 1% 0 0;
  padding: 0;
  background-color: #fff;
  border-radius: 7px;
}
.react-meet li.bg-gray {
  background-color: #e4e4e4;
}
.react-meet .reaction {
  height: auto;
}
.react-meet .person {
  height: 184px;
  display: block;
  overflow: hidden;
}
.react-meet .guest, .react-meet .reaction, .react-meet .you {
  margin: 0 20px 0 20px;
}
.react-meet .title {
  width: 100%;
  height: 32px;
  color: #999999;
  text-align: center;
  line-height: 2.2em;
  border-radius: 7px 7px 0 0;
}
.react-meet .guest .title {
  color: #fff;
  width: 122.988%;
  background-color: #079cdd;
  margin: 0 -11.494% 0 -11.494%;
  border-bottom: none;
}
.react-meet .reaction .title {
  background-color: #fff;
  border-bottom: 1px solid #f1f1f1;
}
.react-meet .you .title {
  border-bottom: 1px solid #d7d7d7;
}
.react-meet .image {
  width: auto;
  text-align: center;
  margin: 33px 0 10px 0;
}
.react-meet .circle-border {
  border: 2px solid rgba(153, 153, 153, 0.3);
  height: 75px;
  width: 75px;
  margin: 0 auto;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}
.react-meet .circle-image {
  margin: 4px 0 0 4px;
  height: 63px;
  width: 63px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  background-size: 75px 75px;
  background: no-repeat;
  background-position: center;
  background-size: cover !important;
}
.react-meet .circle-image img {
  display: none;
}
.react-meet .name {
  text-align: center;
  color: #079cdd;
  font-size: 1.2em;
  line-height: 1.2em;
  max-height: 48px;
}
.react-meet .function {
  text-align: center;
  color: #999999;
  font-style: italic;
  font-size: 1em;
  min-height: 40px;
}
.react-meet .description {
  height: 200px;
  border-top: 1px solid #f1f1f1;
  font-size: 0.9em;
  line-height: 1.5em;
  padding: 25px 0 0 0;
}
.react-meet .you .description {
  border-top: 1px solid #d7d7d7;
}
.react-meet .social-icons {
  position: absolute;
  width: auto;
  text-align: center;
  bottom: 90px;
  left: 0;
  right: 0;
}
.react-meet .social-icons a {
  width: 34px;
  height: 34px;
  border: 1px solid #d2d2d2;
  border-radius: 50%;
  margin: 5px;
  padding: 5px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
}
.react-meet .social-icons .twitter {
  background-image: url("/bundles/wetenschappublicationbundle/images/icon-social-twitter-blue.svg");
}
.react-meet .social-icons .facebook {
  background-image: url("/bundles/wetenschappublicationbundle/images/icon-social-facebook-blue.svg");
}
.react-meet .social-icons .email {
  background-image: url("/bundles/wetenschappublicationbundle/images/icon-social-email-blue.svg");
}
.react-meet .more-button {
  position: absolute;
  width: 133px;
  bottom: 30px;
  left: 50%;
  margin: 20px auto 0 -67px;
}
.react-meet .more-button a {
  border: none;
  background-color: #079cdd;
  color: #fff;
}
.react-meet .more-button a:hover, .react-meet .more-button a:focus {
  background-color: #00a7f0;
  color: #fff;
}
.react-meet .bx-wrapper .bx-controls-direction a {
  background: #d2d2d2 url("/bundles/wetenschappublicationbundle/images/icon-arrow-purple.png") no-repeat;
}
.react-meet .bx-wrapper .bx-controls-direction a.bx-prev {
  border-radius: 5px 0 0 5px;
  background-position: 18px 15px;
  left: -60px;
}
.react-meet .bx-wrapper .bx-controls-direction a.bx-prev:hover {
  background-position: 18px -70px;
}
.react-meet .bx-wrapper .bx-controls-direction a.bx-next {
  border-radius: 0 5px 5px 0;
  background-position: -86px 15px;
  right: -60px;
}
.react-meet .bx-wrapper .bx-controls-direction a.bx-next:hover {
  background-position: -86px -70px;
}
.react-meet .bx-controls {
  display: inline-block;
}
.react-meet .bx-wrapper .bx-controls .bx-pager {
  bottom: -20px;
}
.react-meet .bx-wrapper .bx-controls .bx-pager .bx-pager-item a::after {
  background-color: #874593;
}

.arrow-down.white {
  background: linear-gradient(-45deg, #ffffff 50%, rgba(0, 0, 0, 0) 50%);
  margin: -23px auto;
}

.arrow-down.grey {
  background: linear-gradient(-45deg, #f1f1f1 50%, rgba(0, 0, 0, 0) 50%);
}

@media screen and (min-width: 1150px) {
  .react-articles .img-container {
    margin-top: -70px;
  }
  .react-articles ul li {
    height: 740px;
  }
  .react-articles ul li:nth-child(even) .box:nth-child(2n+1) .img-container .author {
    top: 80px;
  }
}
@media screen and (min-width: 1024px) {
  .react-articles {
    height: 847px;
  }
  .react-articles ul li {
    height: 740px;
  }

  .react-testyourself li, .react-testyourself li:nth-child(2n+1) {
    width: 23.5%;
    margin: 0 1.95% 1.95% 0;
    border-radius: 7px;
  }
  .react-testyourself li .react-image, .react-testyourself li:nth-child(2n+1) .react-image {
    border-radius: 7px;
  }
  .react-testyourself li .react-image .gradient-d-t, .react-testyourself li:nth-child(2n+1) .react-image .gradient-d-t {
    border-radius: 0 0 7px 7px;
  }
  .react-testyourself li .react-image .media, .react-testyourself li:nth-child(2n+1) .react-image .media {
    border-radius: 7px 0 7px 0;
  }

  .react-testyourself li:nth-child(4n+4) {
    margin: 0 0 1.95% 0;
  }
}
@media screen and (min-width: 1150px) {
  .react-articles {
    height: 857px;
  }
  .react-articles ul li {
    height: 750px;
  }
  .react-articles .img-container {
    margin-top: -70px;
  }
}
@media screen and (min-width: 1280px) {
  .react-articles {
    height: 877px;
  }
  .react-articles ul li {
    height: 770px;
  }
}
@media screen and (max-width: 768px) {
  .react-articles ul li:nth-child(even) .box:nth-child(2n+1) {
    height: 35.27%;
  }
  .react-articles ul li:nth-child(even) .box:nth-child(2n+2) {
    height: 62.11%;
  }

  .react-meet {
    padding: 21px 44px 0 44px;
  }
  .react-meet li {
    width: 33%;
  }

  .react-testyourself li:nth-child(4n+4) {
    margin: 0 2.9% 2.9% 0;
  }

  .react-testyourself li:nth-child(3n+3) {
    margin: 0 0 2.9% 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .react-testyourself li:nth-child(3n+3) {
    margin: 0 0 2.9% 0;
  }
}
@media screen and (max-width: 640px) {
  .react-articles {
    height: 600px;
  }
  .react-articles .bx-wrapper .bx-controls .bx-pager {
    margin: 0;
    bottom: -50px;
  }
  .react-articles .bx-wrapper .bx-controls .bx-pager .bx-pager-item a {
    margin: 0 15px;
  }
  .react-articles .bx-wrapper .bx-controls .bx-pager .bx-pager-item a:after {
    width: 16px;
    height: 16px;
  }
  .react-articles .bx-wrapper .bx-controls .bx-pager .bx-pager-item a.active:after {
    width: 18px;
    height: 18px;
    margin-top: -2px;
  }
}
@media screen and (max-width: 640px) and (min-width: 480px) {
  .react-articles ul li .box.blue .img-container .author .image .circle-border {
    width: 100px;
    height: 100px;
    margin: 0 0 10px 27px;
  }
  .react-articles ul li .box.blue .img-container .author .image .circle-border .circle-image {
    width: 88px;
    height: 88px;
    margin: 3px 0 0 3px;
  }
  .react-articles ul li .box.blue .img-container .author .image:after {
    width: 50px;
    height: 16px;
    background-size: 50px 16px;
    top: 12px;
    left: 90px;
  }
  .react-articles ul li .box.blue .img-container .author .name {
    font-family: NPOsansBold, Helvetica, sans-serif;
    font-size: 2em;
    line-height: 1em;
  }
  .react-articles ul li h1 {
    font-size: 2.5em !important;
    line-height: 1.25em !important;
  }
  .react-articles ul li h2 {
    height: 60px !important;
    max-height: 60px !important;
    font-size: 1.6em !important;
    line-height: 1.25em !important;
  }
}
@media screen and (max-width: 640px) {
  .react-articles ul li {
    height: 450px;
    width: 100%;
  }
  .react-articles ul li:nth-child(even) .box:nth-child(2n+1) {
    height: 48.7%;
  }
  .react-articles ul li:nth-child(even) .box:nth-child(2n+1) h2 {
    top: 56px;
    line-height: 20px;
    max-height: 46px;
    height: 46px;
    display: block;
    padding-right: 40px;
  }
  .react-articles ul li:nth-child(even) .box:nth-child(2n+2) {
    height: 48.7%;
  }
  .react-articles ul li:nth-child(even) .box:nth-child(2n+2) .img-container img {
    display: none;
  }
  .react-articles ul li:nth-child(even) .box:nth-child(2n+2) .img-container:after {
    display: none;
  }
  .react-articles ul li:nth-child(even) .box:nth-child(2n+2) .img-container .author {
    top: 20px;
  }
  .react-articles ul li:nth-child(even) .box:nth-child(2n+2) .img-container .author .image .circle-border {
    border: 2px solid #c3a2c9;
  }
  .react-articles ul li:nth-child(even) .box:nth-child(2n+2) .img-container .guide-icon-special {
    top: 28px;
  }
  .react-articles ul li:nth-child(even) .box:nth-child(2n+2) h2 {
    top: 56px;
    line-height: 20px;
    max-height: 46px;
    height: 46px;
    display: block;
    padding-right: 40px;
    position: absolute;
  }
  .react-articles ul li .img-container {
    height: 250px;
    padding-top: 0px;
  }
  .react-articles ul li .img-container img {
    position: relative;
    min-height: 200px;
  }
  .react-articles ul li .img-container .author {
    position: absolute;
    left: 0px;
    bottom: 26px;
  }
  .react-articles ul li .img-container .author .image .circle-border {
    height: 45px;
    width: 45px;
    margin: 0px 0px 0px 20px;
    border: 3px solid #00a7f0;
  }
  .react-articles ul li .img-container .author .image .circle-image {
    height: 33px;
    width: 33px;
    margin: 4px 0px 0px 4px;
  }
  .react-articles ul li .img-container .author .image:after {
    top: 8px;
    left: 50px;
  }
  .react-articles ul li .img-container .author .name {
    font-family: NPOsansLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 18px;
    line-height: 1.1em;
    margin: 0px 0px 10px 20px;
  }
  .react-articles ul li .img-container .author .name .description {
    font-family: NPOsansLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.65em;
  }
  .react-articles ul li .img-container .guide-icon-special {
    background-repeat: no-repeat;
    height: 14px;
    width: 40px;
    bottom: 54px;
  }
  .react-articles ul li .img-container:after {
    left: 60px;
    bottom: -18px;
    width: 34px;
    height: 34px;
  }
  .react-articles ul li p {
    display: none;
  }
  .react-articles ul li h1 {
    font-size: 4.0rem;
    margin-top: 34px;
    margin-left: 40px;
  }
}
@media screen and (max-width: 640px) and (min-width: 200px) and (max-width: 640px) {
  .react-articles ul li h1 {
    font-size: 18px;
    line-height: 22px;
    margin: 20px;
    padding-right: 40px;
    display: block;
    height: 94px;
    overflow: hidden;
  }
}
@media screen and (max-width: 640px) {
  .react-articles ul li h2 {
    font-size: 1.3rem;
    margin-left: 20px;
    top: 0px;
  }
  .react-articles ul li .button {
    display: block;
    position: absolute;
    margin: 0;
    width: 114px;
    height: 46px;
    padding: 0;
    line-height: 42px;
    font-size: 18px;
  }
  .react-articles ul li .reactie {
    position: absolute;
    color: #80cded;
    display: block;
    width: 30px;
    height: 30px;
    bottom: 10px;
    right: 10px;
  }
  .react-articles ul li .reactie img {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30px;
    height: 30px;
  }
  .react-articles ul li .reactie span {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30px;
    height: 24px;
    line-height: 24px;
    font-size: 11px;
    padding: 0;
    margin: 0;
    color: #079cdd;
    text-align: center;
  }
  .react-articles ul li .purple .reactie span {
    color: #874593;
  }
  .react-articles ul li .orange .reactie span {
    color: #e59239;
  }

  .react-testyourself {
    width: 100%;
  }
  .react-testyourself h2 {
    font-size: 2.5rem;
    line-height: 4rem;
    text-align: center;
    margin: 0 0 0 20px;
    display: block;
    width: 100%;
    color: #343434;
  }
  .react-testyourself h2:before {
    margin: 12px 0 0 -52px;
    width: 56px;
    height: 56px;
    background-size: 40px;
    background-image: url("/bundles/wetenschappublicationbundle/images/icon-puzzle-blue-56x56.png");
  }
  .react-testyourself .subtitle {
    margin: 0;
    font-family: NPOsansLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.767rem;
    white-space: normal;
    display: block;
    width: 100%;
    text-align: center;
  }
  .react-testyourself .slides-wrapper {
    margin: 0;
    background-color: #fff;
  }
  .react-testyourself .bx-viewport {
    height: 440px !important;
  }
  .react-testyourself .bx-wrapper h3 a {
    background: none;
  }
  .react-testyourself li {
    width: 100%;
    height: 320px;
    margin: 0 4.6% 4.6% 0;
    border-radius: 7px;
    float: left;
  }
  .react-testyourself li .react-image {
    position: absolute;
    height: 320px;
    border-radius: 7px;
  }
  .react-testyourself li .gradient-d-t {
    border-radius: 7px;
  }
  .react-testyourself li h3 {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.05em;
    left: 20px;
    bottom: 20px;
  }
  .react-testyourself li .media {
    width: 60px;
    height: 60px;
    border-radius: 7px 0 7px 0;
  }

  .react-meet {
    padding: 60px 0px 0px 0px;
  }
  .react-meet .you .name {
    height: auto !important;
  }
  .react-meet h2 {
    font-size: 26px;
    line-height: 26px;
    text-align: center;
    margin: 0 0 0 20px;
    display: block;
    width: 100%;
    color: #343434;
  }
  .react-meet h2:before {
    margin: -5px 0px 0px -52px;
    width: 56px;
    height: 56px;
    background-size: 40px;
  }
  .react-meet .subtitle {
    font-family: NPOsansLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    margin: 20px;
    text-align: center;
    color: #adadad;
  }
  .react-meet .slides-wrapper {
    margin: 0px;
  }
  .react-meet li {
    height: 440px;
    width: 80%;
    margin: 0;
  }
  .react-meet .person {
    height: 370px;
  }
  .react-meet .guest, .react-meet .reaction, .react-meet .you {
    padding: 0;
  }
  .react-meet .title {
    position: relative;
    display: inline-block;
    font-size: 1.5rem;
    line-height: 48px;
    text-align: center;
    margin: 0;
    padding: 0;
    height: auto;
    width: 100%;
  }
  .react-meet .author {
    position: relative;
    height: auto;
    width: 100%;
    display: inline-block;
    padding: 20px 0;
  }
  .react-meet .image {
    margin: 0;
  }
  .react-meet .guest .title {
    width: 428px;
    margin: 0 0 0 -40px;
  }
  .react-meet .circle-border {
    height: 76px;
    width: 76px;
    display: inline-block;
  }
  .react-meet .circle-image {
    margin: 3px 0 0 3px;
    width: 65px;
    height: 65px;
    background-size: 140px 140px cover;
  }
  .react-meet .name {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1rem;
    margin-bottom: 5px;
  }
  .react-meet .function {
    font-size: 1rem;
  }
  .react-meet .description {
    position: relative;
    height: auto;
    width: 100%;
    display: inline-block;
    font-size: 14px;
    padding: 20px;
    line-height: 16px;
    color: #343434;
  }
  .react-meet .social-icons {
    position: absolute;
    bottom: 70px;
    height: auto;
    width: 100%;
    display: inline-block;
  }
  .react-meet .social-icons a {
    width: 50px;
    height: 50px;
    border: 1px solid #d2d2d2;
    background-size: 25px 25px;
  }
  .react-meet .more-button {
    position: absolute;
    height: auto;
    width: auto;
    left: 20px;
    right: 20px;
    bottom: 20px;
    margin: 0px;
    display: inline-block;
  }
  .react-meet .bx-pager {
    display: none;
  }
}
.special {
  background-color: #f1f1f1;
}

.special-articles {
  margin: 0 0 40px 7.5%;
  border-left: 2px solid #079cdd;
  max-width: 100%;
}
.special-articles ul {
  padding: 55px 0 0 0;
  list-style-type: none;
}
.special-articles ul.list-special-articles {
  width: 100%;
}
.special-articles li {
  margin: 39px 8% 0 88px;
}
.special-articles li h2:nth-child(1) {
  width: 80%;
}
@media (max-width: 640px) {
  .special-articles li h2:nth-child(1) {
    width: 100%;
  }
}
.special-articles li.contenttype-poll {
  background: url(/bundles/wetenschappublicationbundle/images/pollblock_top.gif) no-repeat 90px top, url(/bundles/wetenschappublicationbundle/images/pollblock_bottom.gif) no-repeat 90px bottom, #22337b;
  margin: 39px 0 0 -98px;
  width: 110%;
  max-width: 1280px;
}
@media (min-width: 640px) and (max-width: 1024px) {
  .special-articles li.contenttype-poll {
    width: 113%;
  }
}
.special-articles li.contenttype-poll .poll-block {
  background: none;
}
.special-articles.loading:after {
  position: fixed;
  z-index: 10;
}
.special-articles:after {
  content: " ";
  display: block;
  clear: both;
  visibility: hidden;
}

.special-reaction {
  margin: 0 0 40px 7.5%;
  max-width: 100%;
}
.special-reaction .detail-reageer .resources {
  padding: 39px 8% 0 88px;
}

.special-header {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}
.special-header img {
  display: none;
}
.special-header h1 {
  margin: 0 0 25px 0;
  padding: 40px 0 0 0;
  font-size: 3em;
  text-shadow: 1px 1px 0px #000;
}
@media (min-width: 200px) and (max-width: 640px) {
  .special-header h1 {
    font-family: NPOsansLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 2rem !important;
    font-size: 2rem !important;
  }
}
.special-header p.subtitle {
  font-family: NPOsans, Helvetica, sans-serif;
  font-size: 1.3em;
  text-align: center;
  text-shadow: 1px 1px 0px #000;
}
@media (min-width: 200px) and (max-width: 640px) {
  .special-header p.subtitle {
    letter-spacing: 1px !important;
    line-height: 10px !important;
    font-size: 20px !important;
    margin: 0 !important;
  }
}
.special-header p.subtitle .h-line:before, .special-header p.subtitle .h-line:after {
  content: url(/bundles/wetenschappublicationbundle/images/line-short.png);
  display: inline-block;
  vertical-align: middle;
  margin: 0px 20px 15px 10px;
}
.special-header p.subtitle .h-line:after {
  margin: 0px 20px 15px 20px;
}
@media (min-width: 200px) and (max-width: 640px) {
  .special-header p.subtitle .h-line:before, .special-header p.subtitle .h-line:after {
    width: 15px;
    overflow: hidden;
    margin: 0px 6px 13px 0px;
  }
}
.special-header p.teaser {
  position: absolute;
  bottom: 50px;
  width: 50%;
  left: 25%;
  font-family: NPOsansBold, Helvetica, sans-serif;
  font-size: 1.65em;
  line-height: 1.6em;
}
.special-header .author-social {
  position: absolute;
  bottom: 30px;
  left: 6.25%;
  margin: 0;
  display: inline-block;
}
@media (min-width: 200px) and (max-width: 640px) {
  .special-header .author-social {
    bottom: 60px;
  }
}
.special-header .author-social .author-image-wrapper {
  clear: none;
  float: left;
  overflow: hidden;
}
.special-header .author-social .author-image-wrapper .thumb:after {
  background: none;
}
.special-header .author-social .name.h5 {
  color: #079cdd;
  font-family: NPOsansBold, Helvetica, sans-serif;
  font-size: 1.4em;
  line-height: 1.3em;
  float: left;
  clear: none;
  text-align: left;
  margin: 1.5rem 0 0 -1.5rem;
}
@media (min-width: 200px) and (max-width: 640px) {
  .special-header .author-social .name.h5 {
    margin: 0 0 0 -1.5rem;
  }
}
.special-header .author-social .name.h5 .role {
  display: block;
  font-weight: normal;
  clear: left;
  font-family: NPOsansRegular, Helvetica, sans-serif;
  font-size: 0.75em;
  font-style: italic;
  color: #fff;
}
.special-header .guide-icon-special {
  background-image: url("/bundles/wetenschappublicationbundle/images/icon-guide-special-15x66.png");
  height: 66px;
  width: 15px;
  position: absolute;
  bottom: 0;
  left: 7.5%;
}

.special-navigation {
  display: none;
  width: 100%;
  height: auto;
  background-color: #333333;
}
.special-navigation ul {
  margin: 0 5% 0 5%;
  padding: 0 0 6em 0;
}
.special-navigation ul li {
  width: 100%;
  height: 3.2em;
  border-bottom: 2px solid #555555;
  color: #858585;
  display: inline-block;
  font-family: NPOsansBold, Helvetica, sans-serif;
  font-size: 2em;
  line-height: 3.2em;
}
.special-navigation ul li a {
  padding: 0 0 0 15%;
  width: 100%;
  display: block;
  color: #858585;
}
.special-navigation ul li a:before {
  content: " ";
  position: absolute;
  margin: 0.9em 0 0 -10%;
  width: 38px;
  height: 38px;
  background-image: url("/bundles/wetenschappublicationbundle/images/icon-special-play-38x38.png");
  opacity: 0.4;
}
.special-navigation ul li.heading {
  height: 4.2em;
  line-height: 4.75em;
  letter-spacing: 0.15em;
  font-family: NPOsansRegular, Helvetica, sans-serif;
  color: #666666;
  text-align: center;
  text-transform: uppercase;
}
.special-navigation ul li.heading a:before {
  background-image: none;
}

.special-navigation.visible {
  display: inline-block;
}

.special p:first-of-type {
  margin-top: 0;
}
@media (min-width: 200px) and (max-width: 640px) {
  .special p {
    font-size: 16px;
    line-height: 24px;
    margin: 0px;
  }
}
.special .arrow-down {
  background: linear-gradient(-45deg, #333333 50%, rgba(0, 0, 0, 0) 50%);
  cursor: pointer;
}
.special .detail-reageer .arrow-down {
  display: none;
}
@media screen and (max-width: 640px) {
  .special .arrow-down {
    border-radius: 0px !important;
    width: 50px !important;
    height: 50px !important;
    margin: -25px auto !important;
  }
}
.special .drop-down-menu {
  transform: rotate(-45deg);
  position: absolute;
  background-image: url("/bundles/wetenschappublicationbundle/images/icon-navigation-plus.png");
  background-size: 13px 13px;
  background-repeat: no-repeat;
  width: 13px;
  height: 13px;
  right: 10px;
  bottom: 10px;
  text-align: center;
  color: #fff;
  font-size: 2em;
  line-height: 1em;
  z-index: 10;
}
.special .drop-down-menu.drop-down-min {
  background-image: url("/bundles/wetenschappublicationbundle/images/icon-navigation-min.png");
}
.special .gradient-d-t {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: content-box;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 75%, #333333 100%);
}
.special .gradient-d-t .copyright {
  bottom: 8px;
}
.special h2.item-title {
  width: 78%;
  color: #079cdd;
  margin-top: 0;
}
@media (min-width: 200px) and (max-width: 640px) {
  .special h2.item-title {
    font-size: 22px !important;
    line-height: 22px;
    font-weight: 100;
    margin: 0 !important;
  }
}
.special h2.item-title:before {
  content: " ";
  position: absolute;
  margin: -4px 0 0 -100px;
  width: 23px;
  height: 34px;
  background-image: url("/bundles/wetenschappublicationbundle/images/icon-special-dot.svg");
  background-color: #f1f1f1;
  background-position: center center;
  background-size: 100%;
  background-repeat: no-repeat;
}
.special h2.item-title.h3.type-video:before {
  background-image: url("/bundles/wetenschappublicationbundle/images/icon-special-play.svg");
  background-size: 80%;
}
.special h2.item-title.h3.type-paragraph:before {
  background-image: url("/bundles/wetenschappublicationbundle/images/icon-special-dot.svg");
  background-size: 100%;
}
.special h2.item-title.h3.type-article:before {
  background-image: url("/bundles/wetenschappublicationbundle/images/icon-special-text.svg");
  background-size: 130%;
}
.special h2.item-title.h3.type-gallery:before {
  background-image: url("/bundles/wetenschappublicationbundle/images/icon-special-gallery.svg");
  background-size: 100%;
}
.special .article-type {
  font-size: 1.0em;
  font-style: italic;
  margin: 0;
  float: left;
  color: #000;
}
@media (min-width: 200px) and (max-width: 640px) {
  .special .article-type {
    font-size: 14px !important;
    line-height: 24px;
    color: #858585;
    margin: 0px;
  }
}
.special .length {
  float: left;
  background-color: #d2d2d2;
  border-radius: 5px;
  color: #555555;
  font-style: normal;
  font-size: 1em;
  line-height: 1.6em;
  margin: 0 0 0 10px;
  padding: 0 10px;
  text-align: center;
}
.special .special-article {
  clear: both;
  display: inline-block;
  margin: 14px 0 0 0;
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}
.special .special-article .item-image-big, .special .special-article .item-image-small {
  background-repeat: no-repeat;
  position: relative;
  float: left;
  width: 425px;
  height: 325px;
  border-radius: 5px;
}
.special .special-article .item-image-small {
  width: 205px;
  height: 155px;
}
.special .special-image {
  float: left;
  border-radius: 5px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 3px;
}
.special .special-image img {
  display: none;
}
.special .article-image-large {
  width: 58%;
  height: 322px;
}
.special .special-text, .special .special-text-small, .special .special-text-big {
  background-color: #fff;
  color: #000;
  padding: 1.5em 1.1em;
  font-size: 1em;
  line-height: 1.6em;
  border-radius: 5px;
}
.special .special-text-small, .special .special-text-big {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 445px;
}
.special .special-text-small:before, .special .special-text-big:before {
  content: '';
  display: block;
  position: absolute;
  border-radius: 0 0 7px 0;
  transform: rotate(135deg);
  background: linear-gradient(-45deg, #ffffff 50%, rgba(0, 0, 0, 0) 50%);
  width: 47px;
  height: 47px;
  left: -23px;
  top: 40%;
}
.special .special-text-big {
  left: 230px;
}
.special .player-icon {
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (min-width: 200px) and (max-width: 640px) {
  .special .player-icon {
    width: 100%;
  }
}
.special .player-icon-big {
  display: none;
}

.special-author {
  margin: 0 12.5% 0 7.5%;
}
@media (min-width: 200px) and (max-width: 640px) {
  .special-author {
    margin: 0 20px;
  }
}
.special-author .arrow-down {
  background: linear-gradient(-45deg, #f1f1f1 50%, rgba(0, 0, 0, 0) 50%) !important;
  margin-left: 50%;
}

.special-dossier {
  background-color: #fff;
  height: 250px;
  padding-top: 50px;
}
.special-dossier .button {
  display: table;
  font-family: NPOsansLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
}
.special-dossier h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0px;
}
.special-dossier h6 {
  font-family: NPOsansLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
  .special-dossier {
    height: 296px;
  }
  .special-dossier .button {
    font-family: NPOsansLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 2rem;
    padding-right: 100px;
    padding-left: 100px;
  }
  .special-dossier h2 {
    font-size: 3.3rem !important;
  }
  .special-dossier h6 {
    line-height: 2.9rem;
    font-size: 1.9rem;
  }
}

.special-related-specials {
  padding-top: 20px;
  padding-bottom: 45px;
  background: #333333 url("/bundles/wetenschappublicationbundle/images/background-featured-dark.png") repeat-x top left;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 640px) {
  .special-related-specials {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 641px) and (max-width: 768px) {
  .special-related-specials {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .special-related-specials {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1025px) {
  .special-related-specials {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (max-width: 640px) {
  .special-related-specials {
    background-size: cover;
  }
}
.special-related-specials .title {
  color: #999999;
}
.special-related-specials .related-showcase {
  border-bottom: 1px solid #d2d2d2;
  width: 100%;
  padding: 5px 0 30px;
  margin-bottom: 20px;
}
.special-related-specials .related-showcase:last-of-type {
  border: none;
}
.special-related-specials .related-showcase h2 {
  font-size: 26px;
  margin: 0 0 30px;
}
.special-related-specials .related-showcase .thumbs-wrapper {
  position: relative;
  margin-top: 10px;
}
.special-related-specials .related-showcase .thumbs-wrapper .thumbs {
  list-style-type: none;
}
.special-related-specials .related-showcase .thumbs-wrapper .thumbs li {
  width: 288px !important;
}
.special-related-specials .related-showcase .thumbs-wrapper .thumbs .thumb {
  box-sizing: border-box;
  width: 0;
}
.special-related-specials .related-showcase .thumbs-wrapper .thumbs .thumb .thumb-label.special {
  z-index: 9;
  font-size: 0.8rem;
  width: 70px;
  height: 20px;
  padding-top: 3px;
}
.special-related-specials .related-showcase .thumbs-wrapper .thumbs .thumb .image {
  box-sizing: border-box;
  background-color: #d2d2d2;
  border-radius: 7px;
  overflow: hidden;
  position: relative;
  padding-top: 56.25%;
  width: 100%;
  z-index: 1;
}
.special-related-specials .related-showcase .thumbs-wrapper .thumbs .thumb .image img {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto;
  margin: auto;
}
.special-related-specials .related-showcase .thumbs-wrapper .thumbs .thumb .image .media {
  width: 30px;
  height: 30px;
  z-index: 2;
}
.special-related-specials .related-showcase .thumbs-wrapper .thumbs .thumb .image:after {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(1, 21, 30, 0) 1%, rgba(1, 21, 30, 0) 60%, #01151e 92%, #01151e 100%);
}
.special-related-specials .related-showcase .thumbs-wrapper .thumbs .thumb h3 {
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-size: 18px;
  margin: 0 40px 0 0;
  color: #fff;
  z-index: 2;
}
@media screen and (max-width: 1023px) {
  .special-related-specials .related-showcase .thumbs-wrapper .bx-controls-direction {
    display: none;
  }
}
.special-related-specials .related-showcase .thumbs-wrapper .bx-controls-direction a {
  opacity: 1;
  transition: opacity 500ms ease;
  top: 0;
  margin: 0;
  height: 100%;
  width: 40px;
  cursor: pointer;
  background: #505050 url("/bundles/wetenschappublicationbundle/images/icon-arrow-white.svg") no-repeat;
  border-radius: 5px;
}
.special-related-specials .related-showcase .thumbs-wrapper .bx-controls-direction a.bx-prev {
  background-position: 14px 110px;
  left: -62px;
}
.special-related-specials .related-showcase .thumbs-wrapper .bx-controls-direction a.bx-prev:hover {
  background-position: 14px 110px;
}
.special-related-specials .related-showcase .thumbs-wrapper .bx-controls-direction a.bx-next {
  background-position: -31px 110px;
  right: -62px;
}
.special-related-specials .related-showcase .thumbs-wrapper .bx-controls-direction a.bx-next:hover {
  background-position: -31px 110px;
}
.special-related-specials .related-showcase .thumbs-wrapper .bx-controls-direction a.disabled {
  display: block;
  visibility: hidden;
  opacity: 0;
}

.special-social .share--buttons {
  display: block;
  padding: 0px;
  margin: 0px;
}
.special-social .share--buttons li {
  margin: -15px 0px 0px 5px;
}
@media (max-width: 640px) {
  .special-social .share--buttons li {
    margin: 0px 5px;
  }
}
@media (max-width: 640px) {
  .special-social .share--buttons {
    display: inline-block;
    width: auto;
    float: none;
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  .special-social {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin: 20px 0px 20px -18px;
  }
}

.special-intro-social .intro-image {
  /* width: 28%; */
  width: 205px;
  height: 155px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 5px;
  margin-left: 3px;
}
.special-intro-social .intro-image img {
  display: none;
}
.special-intro-social .play-icon {
  position: relative;
  width: 40px;
  height: 40px;
  top: 57px;
  left: 80px;
  background-image: url("/bundles/wetenschappublicationbundle/images/icon-play-8x13.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 8px 13px;
  background-color: rgba(0, 0, 0, 0.6);
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.special-intro-social .special-text, .special-intro-social .special .special-text-small, .special .special-intro-social .special-text-small, .special-intro-social .special .special-text-big, .special .special-intro-social .special-text-big {
  width: 69.1%;
}

.special-photogallery {
  margin: 93px 0 50px 0;
  line-height: 18px;
}
.special-photogallery .special-text-small, .special-photogallery .special .special-text-big, .special .special-photogallery .special-text-big {
  z-index: 10;
}
.special-photogallery .item-image-big, .special-photogallery .special .special-article .item-image-small, .special .special-article .special-photogallery .item-image-small {
  float: none !important;
}
.special-photogallery .photogallery img {
  border-radius: 5px;
  width: 425px;
}
.special-photogallery .photogallery .bottom-images {
  margin: 12px 0 0 0;
}
.special-photogallery .photogallery .bottom-images img {
  width: 204px;
  margin: 0 15px 0 0;
}
.special-photogallery .photogallery-small img {
  border-radius: 5px;
  width: 128px;
  margin-right: 17px;
}

.special-overlay-copyright {
  color: #adadad;
  font-size: 0.8rem;
  margin-top: 53%;
  padding-right: 2%;
  position: absolute;
  right: 0;
  text-align: right;
  text-shadow: 0px 2px #666666;
  z-index: 1000;
}
@media (min-width: 1025px) {
  .special-overlay-copyright {
    margin-top: 53.5%;
  }
}
@media (max-width: 1024px) {
  .special-overlay-copyright {
    margin-top: 53%;
    padding-right: 2%;
  }
}
@media (max-width: 768px) {
  .special-overlay-copyright {
    margin-top: 52.5%;
    padding-right: 3%;
  }
}
@media (max-width: 640px) {
  .special-overlay-copyright {
    margin-top: 52%;
  }
}

.special-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: opacity .5s ease-in-out;
  -moz-transition: opacity .5s ease-in-out;
  -webkit-transition: opacity .5s ease-in-out;
  z-index: 2000;
  background-color: rgba(0, 0, 0, 0.5);
  text-align: center;
  opacity: 1;
}
.special-overlay .close-overlay-catcher {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.special-overlay.visible {
  opacity: 1;
  transition: opacity .5s ease-in-out;
  -moz-transition: opacity .5s ease-in-out;
  -webkit-transition: opacity .5s ease-in-out;
}
.special-overlay.loading {
  position: fixed;
}
.special-overlay .overlay-header-image {
  width: 100%;
}
.special-overlay .special-overlay-wrapper {
  height: 90%;
  width: 90%;
  max-width: 800px;
  background: #FFF url("/bundles/wetenschappublicationbundle/images/bg_overlay.png") repeat-x scroll left top 60px;
  display: block;
  overflow: hidden;
  position: relative;
  top: 50px;
  bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.36);
  text-align: left;
}
@media (min-width: 200px) and (max-width: 640px) {
  .special-overlay .special-overlay-wrapper {
    top: 25px;
  }
}
@media screen and (min-width: 200px) and (max-width: 640px) and (max-width: 640px) {
  .special-overlay .special-overlay-wrapper h2 {
    font-size: 2.7rem;
    line-height: 3.0rem;
    margin: 0 0 20px 0;
  }
}

@media (min-width: 640px) and (max-width: 1024px) {
  .special-overlay .special-overlay-wrapper {
    max-width: 600px;
  }
}
.special-overlay .special-overlay-header {
  width: 100%;
  height: 60px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  box-shadow: 0 2px 0 #e4e4e4;
}
.special-overlay .special-overlay-header .special-overlay-close {
  display: block;
  padding: 22px 22px 22px 35px;
  float: left;
}
.special-overlay .special-overlay-content {
  width: 100%;
  top: 60px;
  bottom: 80px;
  overflow-y: auto;
  overflow-x: hidden;
  position: absolute;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 200px) and (max-width: 640px) {
  .special-overlay .special-overlay-content p {
    font-size: 16px;
    line-height: 24px;
  }
}
.special-overlay .special-overlay-content:after {
  content: ".";
  display: block;
  height: 0;
  margin-top: 10px;
  clear: both;
  visibility: hidden;
}
.special-overlay .special-overlay-content .special-article-contenttype {
  font-style: italic;
  margin: 0 0 10px 0;
  display: block;
  clear: both;
}
.special-overlay .special-overlay-content .special-article-videosource {
  font-weight: bold;
  margin: 0 0 20px 0;
  display: block;
  clear: both;
  color: #079cdd;
}
.special-overlay .special-overlay-content .special-overlay-gallery, .special-overlay .special-overlay-content .special-overlay-video-info {
  padding: 25px;
  overflow: visible;
}
@media (max-width: 640px) {
  .special-overlay .special-overlay-content .special-overlay-gallery, .special-overlay .special-overlay-content .special-overlay-video-info {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 641px) and (max-width: 768px) {
  .special-overlay .special-overlay-content .special-overlay-gallery, .special-overlay .special-overlay-content .special-overlay-video-info {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .special-overlay .special-overlay-content .special-overlay-gallery, .special-overlay .special-overlay-content .special-overlay-video-info {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1025px) {
  .special-overlay .special-overlay-content .special-overlay-gallery, .special-overlay .special-overlay-content .special-overlay-video-info {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.special-overlay .special-overlay-content .special-overlay-gallery h1, .special-overlay .special-overlay-content .special-overlay-video-info h1 {
  font-size: 2.7rem;
}
.special-overlay .special-overlay-content .external-media .video {
  margin-top: 0px;
  margin-bottom: 0px;
}
.special-overlay .special-overlay-content .external-media .media-player {
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  margin: 0;
}
.special-overlay .special-overlay-content .special-overlay-gallerycontainer {
  display: block;
  height: auto;
  width: 100%;
  margin-bottom: 20px;
}
.special-overlay .special-overlay-content .special-overlay-gallerycontainer .image-gallery-wrapper {
  position: relative;
  margin: 20px 0 0 0;
  width: 49%;
  float: left;
  border-radius: 10px;
  clear: left;
  overflow: hidden;
}
.special-overlay .special-overlay-content .special-overlay-gallerycontainer .image-gallery-wrapper:nth-child(even) {
  float: right;
  clear: right;
}
.special-overlay .special-overlay-content .special-overlay-gallerycontainer .landscape img {
  width: 100.5%;
}
.special-overlay .special-overlay-content .special-overlay-gallerycontainer .landscape:after {
  padding-top: 75%;
  /* 4:3 ratio */
  display: block;
  content: '';
}
.special-overlay .special-overlay-content .special-overlay-gallerycontainer .portrait img {
  height: 100.5%;
}
.special-overlay .special-overlay-content .special-overlay-gallerycontainer .portrait:after {
  padding-top: 133.333%;
  /* 3:4 ratio */
  display: block;
  content: '';
}
.special-overlay .special-overlay-content .special-overlay-gallerycontainer .portrait-small {
  width: 35%;
}
.special-overlay .special-overlay-content .special-overlay-gallerycontainer .landscape-big {
  width: 62.5%;
}
.special-overlay .special-overlay-content .special-overlay-gallerycontainer .image {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.special-overlay .special-overlay-content .special-overlay-gallerycontainer .image img {
  position: absolute;
}
.special-overlay .special-overlay-content .special-overlay-gallerycontainer .image .copy {
  position: absolute;
  color: #adadad;
  font-size: 0.8rem;
  right: 10px;
  bottom: 5px;
}
.special-overlay .special-overlay-content .special-overlay-gallerycontainer:after {
  content: ".";
  display: block;
  height: 0;
  margin-top: 20px;
  clear: both;
  visibility: hidden;
}
.special-overlay .special-overlay-content .special-overlay-playerwrapper {
  width: 100%;
  display: block;
  position: relative;
  padding-top: 56.25%;
}
.special-overlay .special-overlay-content .special-overlay-playerwrapper .npoplayer_wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.special-overlay .special-overlay-footer {
  width: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  background: #f1f1f1;
  padding: 20px;
  height: 80px;
}
@media (max-width: 640px) {
  .special-overlay .special-overlay-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 641px) and (max-width: 768px) {
  .special-overlay .special-overlay-footer {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .special-overlay .special-overlay-footer {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1025px) {
  .special-overlay .special-overlay-footer {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.special-overlay .special-overlay-footer:before {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  width: 1px;
  background-color: #e4e4e4;
  top: 20px;
  bottom: 20px;
}
.special-overlay .special-overlay-footer .nav {
  display: block;
  width: 50%;
  position: relative;
}
.special-overlay .special-overlay-footer .nav:after {
  content: '';
  display: block;
  position: absolute;
  background: transparent url("/bundles/wetenschappublicationbundle/images/icon-arrow-grey.svg") no-repeat 0 0;
  top: 10px;
  width: 10px;
  height: 16px;
}
.special-overlay .special-overlay-footer .nav.previous {
  float: left;
  padding-right: 10px;
}
.special-overlay .special-overlay-footer .nav.previous:after {
  left: -30px;
  background-position: left -194px;
}
.special-overlay .special-overlay-footer .nav.previous:hover:after {
  background-position: left top;
}
.special-overlay .special-overlay-footer .nav.next {
  float: right;
  text-align: right;
  padding-left: 10px;
}
.special-overlay .special-overlay-footer .nav.next:after {
  background-position: right -194px;
  right: -30px;
}
.special-overlay .special-overlay-footer .nav.next:hover:after {
  background-position: right top;
}
.special-overlay .special-overlay-footer .nav span {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.special-overlay .special-overlay-footer .nav .title {
  display: block;
  font-family: NPOsansBold, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.special-overlay .special-overlay-footer .nav .contenttype {
  color: #000;
  font-style: italic;
}
.special-overlay .author-container {
  width: 100%;
  border-top: 1px solid #d2d2d2;
  border-bottom: 1px solid #d2d2d2;
  margin-top: 0;
  margin-bottom: 0;
}
.special-overlay .author-container .author-social {
  position: relative;
  overflow: hidden;
}
.special-overlay .author-container .author-social .social.twitter {
  margin-top: 20px;
}
.special-overlay .author-container .author-social .social.email {
  margin-top: 20px;
}
@media (min-width: 200px) and (max-width: 640px) {
  .special-overlay .author-container .author-social {
    display: block;
  }
  .special-overlay .author-container .author-social a {
    display: block;
  }
  .special-overlay .author-container .author-social .social {
    width: 50px;
    height: 50px;
    margin-left: 30px;
  }
}
.special-overlay .author-container .author-social .author-image-wrapper {
  clear: none;
  float: left;
  margin: 0;
  overflow: hidden;
  width: 105px;
}
@media (min-width: 200px) and (max-width: 640px) {
  .special-overlay .author-container .author-social .author-image-wrapper {
    width: 68px;
  }
}
.special-overlay .author-container .author-social .author-image-wrapper .thumb {
  border-radius: 50%;
  border: 1px solid #d2d2d2;
  width: 75px;
  height: 75px;
  margin: 12px 0 0 0;
}
@media (min-width: 200px) and (max-width: 640px) {
  .special-overlay .author-container .author-social .author-image-wrapper .thumb {
    width: 52px;
    height: 52px;
  }
}
.special-overlay .author-container .author-social .author-image-wrapper .thumb .image {
  left: 4px;
  top: 5px;
  right: 5px;
  bottom: 4px;
  z-index: 0;
}
@media (min-width: 200px) and (max-width: 640px) {
  .special-overlay .author-container .author-social .author-image-wrapper .thumb .image {
    left: 3px;
    top: 3px;
    right: 3px;
    bottom: 3px;
  }
}
.special-overlay .author-container .author-social .author-image-wrapper .thumb:after {
  width: 45px;
  background: transparent url("/bundles/wetenschappublicationbundle/images/line-author-blue.svg") no-repeat center left;
  right: 105%;
}
.special-overlay .author-container .author-social .name {
  clear: none;
  float: left;
  display: block;
  margin: 25px 0 0 0;
  color: #079cdd;
}
@media (min-width: 200px) and (max-width: 640px) {
  .special-overlay .author-container .author-social .name {
    font-size: 18px;
    margin: 12px 0 0 6px;
  }
}
.special-overlay .author-container .author-social .name .role {
  display: block;
  clear: both;
  font-family: NPOsansLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: italic;
  color: #999999;
  font-size: 1rem;
}
@media (min-width: 200px) and (max-width: 640px) {
  .special-overlay .author-container .author-social .name .role {
    font-size: 16px;
  }
}
.special-overlay .detail-resources {
  margin-top: 20px;
}
.special-overlay .detail-resources .title {
  padding-left: 0;
  font-size: 1rem;
}
.special-overlay .detail-resources .themas .title:first-child {
  margin-top: 20px;
  padding-top: 10px;
  width: 70px;
}
.special-overlay .detail-resources ul {
  margin-bottom: 0;
}
.special-overlay .detail-resources ul.tags {
  margin: 0;
}
.special-overlay .detail-resources ul.tags .title:first-child {
  margin-right: 20px;
  min-height: 70px;
  padding-top: 8px;
  width: 60px;
}

body.noscroll {
  position: fixed;
  overflow-y: scroll;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .special h2.item-title:before {
    left: 4.7%;
    margin: -8px 0 0 0;
  }

  #content {
    overflow: hidden;
  }

  .special-articles {
    margin: 0 0 40px 5.85%;
    width: 100%;
  }
  .special-articles li {
    margin: 39px 12.5% 0 23px;
  }
  .special-articles li.contenttype-poll {
    background: url(/bundles/wetenschappublicationbundle/images/pollblock_top.gif) no-repeat 39px top, url(/bundles/wetenschappublicationbundle/images/pollblock_bottom.gif) no-repeat 39px bottom, #22337b;
    margin: 39px 0 0 -47px;
  }
  .special-articles .special-article .item-image-small {
    width: 130px;
    height: 100px;
  }
  .special-articles .special-text-big {
    left: 150px;
  }
  .special-articles .special-text-big:before {
    top: 27%;
  }

  .special-header .teaser {
    display: none;
  }
  .special-header .guide-icon-special {
    left: 5.85%;
  }

  .article-type {
    margin: -3px 0 0 4%;
  }

  .special-intro-social .intro-image {
    width: 31%;
  }
  .special-intro-social .special-text-small, .special-intro-social .special .special-text-big, .special .special-intro-social .special-text-big {
    width: 65%;
  }
}
@media screen and (max-width: 768px) {
  .special-reaction {
    margin: 0 0 40px 5.85%;
  }
  .special-reaction .detail-reageer .resources {
    padding: 30px 45px 0 23px;
  }
}
@media screen and (max-width: 640px) {
  .special-articles {
    border-left: 3px solid #079cdd;
    margin: 0 0 0 4.68%;
    width: 100%;
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    border-image: linear-gradient(to bottom, #079ddd 0%, #afd6e9 5%, #afd6e9) 1 1%;
  }
  .special-articles ul {
    clear: both;
    margin: 0;
    padding: 50px 0 0 0;
    width: 100%;
  }
  .special-articles ul li {
    margin: 0 10% 39px 34px;
  }
  .special-articles ul li.contenttype-poll {
    background: url("/bundles/wetenschappublicationbundle/images/pollblock_top-640.gif") no-repeat 24px top, url(/bundles/wetenschappublicationbundle/images/pollblock_bottom-640.gif) no-repeat 24px bottom, #22337b;
    margin: 0 0 39px -33px;
    width: 104%;
  }

  .special-reaction {
    margin: 35px 0 0 4.68%;
    max-width: 100%;
  }
  .special-reaction .detail-reageer .resources {
    padding: 0 5% 39px 34px;
  }

  .special .arrow-down {
    width: 110px;
    height: 110px;
    border-radius: 10px;
    margin: -65px auto;
  }
  .special .drop-down-menu {
    background-size: 26px 26px;
    width: 26px;
    height: 26px;
    right: 20px;
    bottom: 20px;
  }
  .special .special-article .item-image-big, .special .special-article .item-image-small {
    background-size: contain;
    width: 100%;
    height: 0;
    padding-top: 76.47%;
  }
  .special .player-icon-big {
    display: block;
  }
  .special .icon-toggle {
    display: none;
  }

  .special-header {
    height: auto;
  }
  .special-header h1 {
    padding: 47px 5% 0 5%;
    font-size: 4em;
  }
  .special-header p.subtitle {
    margin: 10px 0 0 0;
    font-size: 1.8em;
    letter-spacing: 0.01em;
  }
  .special-header p.subtitle .h-line {
    width: 40px;
    margin: 0 20px 8px 20px;
  }
  .special-header .author {
    bottom: 36px;
  }
  .special-header .author .image .circle-border {
    border: 2px solid rgba(255, 255, 255, 0.2);
    height: 162px;
    width: 162px;
  }
  .special-header .author .image .circle-image {
    margin: 9px 0 0 9px;
    height: 136px;
    width: 136px;
  }
  .special-header .author .name {
    font-size: 2.4em;
    line-height: 1.2em;
    float: left;
    margin: 45px 0 0 15px;
  }
  .special-header .author .name .description {
    font-size: 0.8em;
    margin-left: -1.1em;
  }
  .special-header .guide-icon-special {
    background-image: url("/bundles/wetenschappublicationbundle/images/icon-guide-special-23x86.png");
    height: 86px;
    width: 23px;
    left: 4.68%;
  }

  .article-type {
    font-size: 2.0em;
    margin: -10px 0 0 5%;
  }

  .special .special-text-small, .special .special-text-big {
    display: none;
  }

  .special h2.item-title {
    font-size: 2.37em;
  }

  .special .article-type {
    font-size: 1.9em;
  }

  .special .length {
    font-size: 2.1em;
    line-height: 1.2em;
  }

  .special-photogallery .photogallery .item-image-big, .special-photogallery .photogallery .special .special-article .item-image-small, .special .special-article .special-photogallery .photogallery .item-image-small {
    display: inline;
  }
  .special-photogallery .photogallery .item-image-big img, .special-photogallery .photogallery .special .special-article .item-image-small img, .special .special-article .special-photogallery .photogallery .item-image-small img {
    width: 100%;
  }
  .special-photogallery .photogallery .bottom-images {
    display: none;
  }
  .special-photogallery .photogallery-small img.first {
    width: 100%;
  }
  .special-photogallery .photogallery-small img.second {
    display: none;
  }
  .special-photogallery .photogallery-small img.third {
    display: none;
  }

  .special-intro-social {
    height: 780px;
  }
  .special-intro-social .icon {
    background: url("/bundles/wetenschappublicationbundle/images/icon_special_intro_41x60.png") no-repeat 0 0 #f1f1f1;
    display: inline-block;
    margin: -11px 0 0 -19px;
    height: 60px;
    width: 7.1%;
  }
  .special-intro-social h2 {
    font-size: 2.4em;
    margin: -3px 0 30px 0.8%;
  }
  .special-intro-social .length {
    color: #555555;
    float: right;
    font-size: 1.85em;
    margin: -29px 0 0 0;
    padding: 12px;
    width: 74px;
  }
  .special-intro-social .intro-text {
    display: none;
  }
  .special-intro-social .overlay-play {
    margin: 25px 0 0 5.8%;
  }
  .special-intro-social .overlay-play img {
    height: 100%;
    width: 100%;
  }
  .special-intro-social .socialmedia {
    padding-top: 60px;
    height: 245px;
  }
  .special-intro-social .socialmedia a {
    float: right;
    width: 29%;
  }
  .special-intro-social .socialmedia a img {
    width: 68px;
  }

  .special h2.item-title {
    margin: 0 0 15px 0;
  }
  .special h2.item-title img {
    width: 50px;
  }
  .special h2.item-title:before {
    left: 2%;
    margin: -12px 0px 0px -3px;
    background-image: url("/bundles/wetenschappublicationbundle/images/icon-special-dot.svg");
    background-size: 70%;
    width: 40px;
    height: 60px;
  }
  .special h2.item-title.h3.type-video:before {
    background-image: url("/bundles/wetenschappublicationbundle/images/icon-special-play.svg");
    background-size: 70%;
  }
  .special h2.item-title.h3.type-paragraph:before, .special h2.item-title.h3.type-article:before {
    background-image: url("/bundles/wetenschappublicationbundle/images/icon-special-text.svg");
    background-size: 100%;
  }
  .special h2.item-title.h3.type-gallery:before {
    background-image: url("/bundles/wetenschappublicationbundle/images/icon-special-gallery.svg");
    background-size: 70%;
  }
  .special .length {
    line-height: 1px;
    margin: 3px 0 0 8px;
    padding: 10px;
    font-size: 12px;
  }
  .special .special-article {
    margin: 19px 0 0 0;
  }

  .special-intro-social .intro-image {
    width: 100%;
    height: 410px;
    margin-left: 0;
  }
  .special-intro-social .play-icon {
    width: 85px;
    height: 85px;
    top: 162px;
    left: 227px;
    background-image: url("/bundles/wetenschappublicationbundle/images/icon-play-18x19.png");
    background-position: center;
    background-size: 18px 19px;
    background-color: rgba(0, 0, 0, 0.6);
    border-top-right-radius: 5px;
    border-bottom-left-radius: 5px;
  }
}
.poll-block {
  background-color: #22337b;
  padding: 40px;
  color: #fff;
  text-align: center;
  font-family: NPOsansBold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin-top: 0;
  margin-bottom: 0;
}
.poll-block .heading {
  font-family: NPOsansLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: italic;
  margin-bottom: 2rem;
}
.poll-block p {
  font-size: 175%;
  line-height: 175%;
}
.poll-block .box {
  text-align: center;
  margin-bottom: 2rem;
}
.poll-block .box .selection {
  width: 100px;
  height: 100px;
  position: relative;
  display: inline-block;
}
.poll-block .box .selection input {
  display: none;
}
.poll-block .box .selection label {
  width: 100%;
  height: 100%;
  display: block;
}
.poll-block .box .selection span.circle {
  border: 2px solid transparent;
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: all 500ms ease-in-out;
  border-radius: 50%;
  cursor: pointer;
}
.poll-block .box .selection span.circle:before {
  position: absolute;
  content: '';
  display: block;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 88%;
  height: 88%;
  background-color: #079cdd;
  margin: auto;
  border-radius: 50%;
}
.poll-block .box .selection span.text {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  font-family: NPOsansBold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.poll-block .box .selection input:checked + span.circle {
  border-color: rgba(255, 255, 255, 0.5);
}
.poll-block .box .selection input:disabled + span {
  cursor: default;
}
.poll-block .box .selection input:disabled + span:before {
  background-color: #0f7dc0;
}
.poll-block .box .selection input:disabled + span + .text {
  cursor: default;
}
.poll-block .result {
  font-family: NPOsansLight, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 150%;
  line-height: 150%;
}

.column-wrapper-newsletter {
  min-height: 390px;
  padding: 0 60px;
}
@media (max-width: 640px) {
  .column-wrapper-newsletter {
    padding: 0 10px;
    display: block;
  }
}

.column .newsletter {
  background-color: #f1f1f1;
  color: #555555;
  height: 320px;
  margin: auto;
  padding: 10% 0 0 0;
}
.column .newsletter p {
  margin-top: 20px;
}
.column .newsletter .styled-form {
  width: 58%;
  color: #999999;
}
.column .newsletter .button {
  width: 38%;
  margin-left: 2%;
  margin-top: 3px;
  color: #fff;
}
@media screen and (max-width: 640px) {
  .column .newsletter {
    width: 100%;
    margin: 0;
    padding: 20px 10px;
    display: block;
    height: auto;
  }
  .column .newsletter h2 {
    font-size: 2.5em;
    margin: 0 0 15px 0;
    display: block;
  }
  .column .newsletter p {
    font-size: 1.3em;
    line-height: 1.5em;
    margin-bottom: 30px !important;
    display: block;
  }
  .column .newsletter form {
    display: block;
  }
  .column .newsletter form input {
    display: block;
  }
  .column .newsletter form button {
    display: block;
  }
  .column .newsletter .styled-form {
    width: 100%;
    height: 75px;
    padding: 10px;
    font-size: 1.0rem;
  }
  .column .newsletter .button {
    width: 100%;
    font-size: 1.6em;
    margin-top: 30px;
    margin-left: 0;
  }
}

.media-content .content-middle {
  width: 64%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: auto;
}
@media (min-width: 1280px) {
  .media-content .content-middle {
    width: 810px;
  }
}
@media (min-width: 641px) and (max-width: 768px) {
  .media-content .content-middle {
    width: 86%;
  }
}
@media (max-width: 640px) {
  .media-content .content-middle {
    width: 100%;
  }
}
@media (min-width: 200px) and (max-width: 640px) {
  .media-content .content-middle {
    padding: 0 20px;
  }
}
.media-content .content-middle ul.themas {
  margin-left: -12px;
}
.media-content .content-middle .tags {
  margin-left: -12px;
}

.player-block .media-player {
  padding: 0;
  border-radius: 0;
  margin-top: 0;
}
.player-block .media-player .player {
  border-radius: 0;
}

.media-intro {
  margin-top: 45px;
  padding-bottom: 45px;
  border-bottom: 1px solid #f1f1f1;
  margin-bottom: 45px;
}
@media (min-width: 200px) and (max-width: 640px) {
  .media-intro {
    margin-top: 0px;
    margin-bottom: 0px;
  }
}
.media-intro .socialmedia {
  float: right;
  margin-top: 20px;
}
@media (max-width: 640px) {
  .media-intro .socialmedia {
    float: none;
    text-align: center;
    margin-top: 0px;
  }
}
.media-intro .socialmedia .share--buttons {
  margin-right: 0px;
}
.media-intro .socialmedia .whatsapp {
  margin: 7px 5px;
}
.media-intro .socialmedia a {
  margin: 0 5px;
}
@media (max-width: 640px) {
  .media-intro h1 {
    clear: both;
    padding-top: 1rem;
    font-size: 28px;
    line-height: 30px;
    margin: 20px 0px 20px 0px;
  }
}
.media-intro .metadata {
  font-family: NPOsansBold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin-bottom: 6px;
}
@media (min-width: 200px) and (max-width: 640px) {
  .media-intro .metadata {
    margin: 0px;
    line-height: 1.667rem;
    font-size: 18px;
  }
}
.media-intro .description {
  height: auto;
  overflow: hidden;
  line-height: 1.667rem;
}
@media (max-width: 640px) {
  .media-intro .description {
    margin-top: 30px;
  }
}
.media-intro .description .excerpt {
  margin-top: 20px;
}
.media-intro .description .excerpt p {
  margin-top: 0;
}
.media-intro .description .excerpt .body {
  margin-top: 25px;
}
.media-intro .description .related {
  padding: 20px;
  background-color: #f1f1f1;
  border-radius: 5px;
  margin-left: 20px;
  margin: 25px 0 5px 20px;
  max-width: 245px;
  float: right;
  line-height: 1.6rem;
}
@media (max-width: 640px) {
  .media-intro .description .related {
    max-width: 100%;
    margin: 40px 0 0 0;
  }
}
.media-intro .description .related .title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #a4a4a4;
}
@media (max-width: 640px) {
  .media-intro .description {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
  }
  .media-intro .description .excerpt p {
    margin-top: 0;
  }
  .media-intro .description .related {
    float: none;
    border-radius: 5px 0 0 5px;
    width: 100%;
  }
}

.media-wrapper {
  background-color: #f1f1f1;
  background-image: url("/bundles/wetenschappublicationbundle/images/ntr-logo-grey.svg");
  background-repeat: no-repeat;
  background-position: top 75px right 45px;
  padding-top: 65px;
  height: auto;
  overflow: hidden;
}
@media (max-width: 640px) {
  .media-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 641px) and (max-width: 768px) {
  .media-wrapper {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .media-wrapper {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1025px) {
  .media-wrapper {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 200px) and (max-width: 640px) {
  .media-wrapper {
    background-position: right 14px top 14px;
    background-size: 42px;
    padding-top: 20px;
  }
}
.media-wrapper h2 {
  width: 80%;
}
@media (min-width: 200px) and (max-width: 640px) {
  .media-wrapper h2 {
    width: 100%;
    font-size: 24px;
    line-height: 30px;
  }
}
@media (min-width: 200px) and (max-width: 640px) {
  .media-wrapper .episode-info p {
    font-size: 18px;
    line-height: 24px;
    margin: 0px;
  }
}
.media-wrapper .broadcast {
  font-family: NPOsansBold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.067rem;
}
.media-wrapper .dropdown-menu {
  float: left;
  clear: both;
  padding: 25px 0px;
}
@media (max-width: 640px) {
  .media-wrapper .dropdown-menu {
    width: 100%;
  }
  .media-wrapper .dropdown-menu .current {
    text-align: center;
  }
}
.media-wrapper .episode-wrapper {
  position: relative;
  float: left;
  height: auto;
  width: 100%;
  overflow: hidden;
}
.media-wrapper .showcase {
  border-bottom: none;
}
.media-wrapper .showcase .thumbs-wrapper .thumbs {
  margin: 0 -5px;
  padding: 0;
}
.media-wrapper .showcase .thumbs-wrapper .thumbs .thumb {
  float: left;
  margin: 0;
  padding: 10px;
  min-height: 260px;
  box-sizing: border-box;
}
@media (max-width: 640px) {
  .media-wrapper .showcase .thumbs-wrapper .thumbs .thumb {
    width: 100%;
  }
}
@media (min-width: 641px) and (max-width: 768px) {
  .media-wrapper .showcase .thumbs-wrapper .thumbs .thumb {
    width: 50%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .media-wrapper .showcase .thumbs-wrapper .thumbs .thumb {
    width: 33.3333%;
  }
}
@media (min-width: 1025px) {
  .media-wrapper .showcase .thumbs-wrapper .thumbs .thumb {
    width: 25%;
  }
}
.media-wrapper .showcase .thumbs-wrapper .thumbs .thumb .image {
  width: 100%;
}
.media-wrapper .showcase .thumbs-wrapper .thumbs .thumb h3 {
  white-space: normal;
}
@media (min-width: 200px) and (max-width: 640px) {
  .media-wrapper .showcase .thumbs-wrapper .thumbs .thumb h3 {
    white-space: normal;
    font-size: 18px;
    font-weight: 100;
  }
}

.search-input-block {
  background: #f1f1f1 url("/bundles/wetenschappublicationbundle/images/background-grey-diamond.jpg") repeat-x center top;
  padding-top: 45px;
  position: relative;
  z-index: 2;
}
@media (max-width: 640px) {
  .search-input-block {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 641px) and (max-width: 768px) {
  .search-input-block {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .search-input-block {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1025px) {
  .search-input-block {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 200px) and (max-width: 640px) {
  .search-input-block {
    margin: 0px;
    padding: 20px;
    display: block;
  }
}
.search-input-block fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
.search-input-block .row {
  margin-right: -10px;
  margin-left: -10px;
  padding-bottom: 20px;
}
.search-input-block .row input, .search-input-block .row button, .search-input-block .row .dropdown-menu {
  width: 100%;
  display: block;
}
.search-input-block .row input[type="checkbox"] {
  width: auto;
  float: left;
  margin-right: 10px;
}
.search-input-block .row .cell {
  float: left;
  padding: 0 10px;
  position: relative;
}
@media (min-width: 200px) and (max-width: 640px) {
  .search-input-block .row .cell {
    padding: 0px;
  }
}
.search-input-block .row .cell .filter-toggler {
  font-weight: 700;
  color: #079cdd;
  padding: 1rem;
  border-radius: 5px;
  border: 1px solid #d2d2d2;
  cursor: pointer;
  width: 100%;
  display: none;
}
.search-input-block .row .cell .filter-toggler:before {
  content: 'Toon filters';
}
.search-input-block .row .cell .filter-toggler:after {
  content: '';
  display: block;
  background: transparent url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHdpZHRoPSIxMnB4IiBoZWlnaHQ9IjUwcHgiIHZpZXdCb3g9IjQ1NS43IDgxNi41IDEyIDUwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDQ1NS43IDgxNi41IDEyIDUwIiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxnPg0KCTxwYXRoIGZpbGw9IiMwNzlDREQiIGQ9Ik00NTYuNyw4MjMuN2gzLjl2NGMwLDAuNiwwLjUsMS4xLDEsMS4xYzAuNiwwLDEtMC41LDEtMS4xdi00aDMuOWMwLjYsMCwxLTAuNSwxLTEuMWMwLTAuNi0wLjUtMS4xLTEtMS4xaC0zLjl2LTQNCgkJYzAtMC42LTAuNS0xLjEtMS0xLjFjLTAuNiwwLTEsMC41LTEsMS4xdjRoLTMuOWMtMC42LDAtMSwwLjUtMSwxLjFDNDU1LjcsODIzLjIsNDU2LjEsODIzLjcsNDU2LjcsODIzLjd6Ii8+DQoJPHBhdGggZmlsbD0iIzA3OUNERCIgZD0iTTQ2Ni42LDg2MS40YzAuNiwwLDEtMC41LDEtMS4xYzAtMC42LTAuNS0xLjEtMS0xLjFsMCwwaDBoLTkuOWMtMC42LDAtMSwwLjUtMSwxLjFjMCwwLjYsMC41LDEuMSwxLDEuMSIvPg0KPC9nPg0KPC9zdmc+DQo=") no-repeat center top;
  background-size: 100% auto;
  width: 12px;
  height: 13px;
  float: right;
  margin-left: 1rem;
  margin-top: 2px;
}
.search-input-block .row .cell .filter-toggler.expanded:before {
  content: 'Verberg filters';
}
.search-input-block .row .cell .filter-toggler.expanded:after {
  background-position: center bottom;
}
.search-input-block .row .cell.searchfield {
  width: 80%;
}
.search-input-block .row .cell.searchfield .personfield {
  margin-top: 10px;
}
.search-input-block .row .cell.searchbutton {
  width: 20%;
}
.search-input-block .row .cell.dropdown {
  width: 25%;
}
.search-input-block .row .cell.dropdown:nth-child(1) {
  z-index: 4;
}
.search-input-block .row .cell.dropdown:nth-child(2) {
  z-index: 3;
}
.search-input-block .row .cell.dropdown:nth-child(3) {
  z-index: 2;
}
.search-input-block .row .cell.dropdown:nth-child(4) {
  z-index: 1;
}
.search-input-block .row.toggler {
  padding: 0;
}
@media (max-width: 640px) {
  .search-input-block .row .cell {
    padding-bottom: 10px;
    float: none;
  }
  .search-input-block .row .cell .filter-toggler {
    display: block;
  }
  .search-input-block .row .cell.searchfield {
    width: 100%;
  }
  .search-input-block .row .cell.searchbutton {
    width: 100%;
  }
  .search-input-block .row .cell.dropdown {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .search-input-block #search-filter {
    max-height: 0;
    overflow: hidden;
    padding-bottom: 10px;
    opacity: 0;
    transition: all 500ms cubic-bezier(0.645, 0.045, 0.355, 1), opacity 600ms linear;
  }
  .search-input-block #search-filter.expanded {
    max-height: 800px;
    overflow: visible;
    opacity: 1;
    padding-bottom: 20px;
  }
}

.searchresults-list {
  margin-top: 45px;
  margin-bottom: 45px;
  position: relative;
  z-index: 1;
}
@media (max-width: 640px) {
  .searchresults-list {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (min-width: 641px) and (max-width: 768px) {
  .searchresults-list {
    margin-left: 45px;
    margin-right: 45px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .searchresults-list {
    margin-left: 60px;
    margin-right: 60px;
  }
}
@media (min-width: 1025px) {
  .searchresults-list {
    margin-left: 60px;
    margin-right: 60px;
  }
}
@media (min-width: 200px) and (max-width: 640px) {
  .searchresults-list {
    margin: 0px;
    padding: 20px;
    display: block;
  }
}
.searchresults-list .toolbar ul.toggle-widget {
  float: left;
  margin-bottom: 1.5rem;
}
.searchresults-list .toolbar ul.toggle-widget li {
  width: 58px;
  height: 40px;
  position: relative;
}
.searchresults-list .toolbar ul.toggle-widget li svg {
  position: absolute;
  width: 22px;
  height: 13px;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.searchresults-list .toolbar ul.toggle-widget li svg rect {
  fill: #333333;
}
.searchresults-list .toolbar ul.toggle-widget li:hover svg rect, .searchresults-list .toolbar ul.toggle-widget li:focus svg rect {
  fill: #ac56bc;
}
.searchresults-list .toolbar ul.toggle-widget li.selected svg rect {
  fill: #874593;
}
.searchresults-list .toolbar .dropdown-menu {
  float: right;
  min-width: 150px;
}
@media (max-width: 640px) {
  .searchresults-list .toolbar ul.toggle-widget {
    display: none;
  }
  .searchresults-list .toolbar .dropdown-menu {
    float: none;
    width: 100%;
  }
}
@media (min-width: 200px) and (max-width: 640px) {
  .searchresults-list .result-count {
    font-size: 1.7rem;
    line-height: 2rem;
    text-align: center;
    margin: 20px 0;
    display: block;
    width: 100%;
    color: #343434;
  }
}
.searchresults-list ul.result-items {
  list-style-type: none;
  margin: 0 -10px;
  padding: 0;
}
@media (min-width: 200px) and (max-width: 640px) {
  .searchresults-list ul.result-items a {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
  }
}
.searchresults-list ul.result-items li.item {
  position: relative;
  padding: 10px;
  border-bottom: 1px solid #d2d2d2;
}
@media (min-width: 200px) and (max-width: 640px) {
  .searchresults-list ul.result-items li.item {
    padding: 10px 0;
  }
}
@media (min-width: 200px) and (max-width: 640px) {
  .searchresults-list ul.result-items li.item a {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
  }
}
.searchresults-list ul.result-items li.item:first-child {
  border-top: 1px solid #d2d2d2;
}
.searchresults-list ul.result-items li.item .thumbset {
  position: relative;
  float: left;
  margin-right: 20px;
  width: 160px;
}
@media (min-width: 200px) and (max-width: 640px) {
  .searchresults-list ul.result-items li.item .thumbset {
    display: inline-block;
    width: 33%;
    height: auto;
    margin: 0 5% 0 0;
    padding: 0;
  }
}
.searchresults-list ul.result-items li.item .thumbset .thumbbox {
  height: 100%;
  width: 100%;
  border-radius: 7px;
  overflow: hidden;
  position: relative;
  padding: 76.05634% 0 0 0;
}
.searchresults-list ul.result-items li.item .thumbset .thumbbox img {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: 100%;
}
.searchresults-list ul.result-items li.item .thumbset .overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 20px;
  width: 100%;
  max-height: 80%;
  overflow: hidden;
  box-sizing: border-box;
}
.searchresults-list ul.result-items li.item .thumbset .overlay h2 {
  margin-top: 0;
  display: none;
  color: #fff;
}
@media (max-width: 640px) {
  .searchresults-list ul.result-items li.item .thumbset .thumb-label {
    display: none;
  }
}
.searchresults-list ul.result-items li.item .thumbset .media {
  width: 35px;
  height: 35px;
  border-bottom-right-radius: 7px;
}
.searchresults-list ul.result-items li.item .textbox {
  float: left;
  width: 70%;
}
@media (max-width: 960px) {
  .searchresults-list ul.result-items li.item .textbox {
    width: 66%;
  }
}
@media (min-width: 200px) and (max-width: 640px) {
  .searchresults-list ul.result-items li.item .textbox {
    display: inline-block;
    width: 62%;
    height: 72px;
    margin: 0;
    padding: 0;
  }
}
.searchresults-list ul.result-items li.item .textbox .meta {
  float: right;
  color: #a4a4a4;
  font-style: italic;
  margin-top: 3px;
}
.searchresults-list ul.result-items li.item .textbox .list-title {
  position: relative;
  color: #079cdd;
  margin-top: 0;
}
.searchresults-list ul.result-items li.item .textbox .category {
  color: black;
  margin-bottom: 0.8rem;
  font-family: NPOsansBold, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.searchresults-list ul.result-items li.item .textbox .text p {
  margin: 0;
  color: #000;
}
.searchresults-list ul.result-items li.item .textbox .text em {
  font-weight: 700;
  font-style: normal;
}
@media (max-width: 640px) {
  .searchresults-list ul.result-items li.item .textbox .meta {
    display: none;
  }
  .searchresults-list ul.result-items li.item .textbox .list-title {
    font-size: 16px;
    line-height: 20px;
    display: block;
    height: 72px;
    margin: 0px;
    max-height: 72px;
  }
  .searchresults-list ul.result-items li.item .textbox .list-title:before {
    content: '';
    display: block;
    position: absolute;
    top: 10px;
    width: 50px;
    height: 50px;
    left: -60px;
    background: transparent url("/bundles/wetenschappublicationbundle/images/line-author-blue.svg") no-repeat left top;
    background-size: 100% auto;
  }
  .searchresults-list ul.result-items li.item .textbox .list-title div {
    display: block;
    height: 72px;
    max-height: 72px;
    font-size: 16px;
    line-height: 20px;
    overflow: hidden;
    white-space: pre-wrap;
  }
  .searchresults-list ul.result-items li.item .textbox .category {
    display: none;
  }
  .searchresults-list ul.result-items li.item .textbox .text {
    display: none;
  }
}
@media (min-width: 641px) {
  .searchresults-list ul.result-items.asthumbs li.item {
    float: left;
    width: 33.33%;
    border: none;
  }
  .searchresults-list ul.result-items.asthumbs li.item .thumbset {
    float: none;
    width: 100%;
    margin-right: 0;
  }
  .searchresults-list ul.result-items.asthumbs li.item .thumbset .thumbbox:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(1, 21, 30, 0) 1%, rgba(1, 21, 30, 0) 60%, #01151e 92%, #01151e 100%);
  }
  .searchresults-list ul.result-items.asthumbs li.item .thumbset .overlay h2 {
    display: block;
    margin-right: 25px;
  }
  .searchresults-list ul.result-items.asthumbs li.item .thumbset .thumb-label {
    display: block;
  }
  .searchresults-list ul.result-items.asthumbs li.item .thumbset .media {
    display: block;
  }
  .searchresults-list ul.result-items.asthumbs li.item .textbox {
    display: none;
  }
}
@media (min-width: 641px) and (max-width: 768px) {
  .searchresults-list ul.result-items.asthumbs li.item {
    width: 50%;
  }
}
.searchresults-list.loading:after {
  left: -60px;
  right: -60px;
}

.quiz-page .main .related-block .related-showcase .thumbs-wrapper .bx-controls-direction a.bx-prev {
  background-position: 14px 104px;
}
.quiz-page .main .related-block .related-showcase .thumbs-wrapper .bx-controls-direction a.bx-prev:hover {
  background-position: 14px -90px;
}
.quiz-page .main .related-block .related-showcase .thumbs-wrapper .bx-controls-direction a.bx-next {
  background-position: -31px 104px;
}
.quiz-page .main .related-block .related-showcase .thumbs-wrapper .bx-controls-direction a.bx-next:hover {
  background-position: -31px -90px;
}

@media screen and (max-width: 1020px) {
  .teaser_carousel .teaser-items-wrap .item-title {
    font-size: 0.9rem;
  }
  .teaser_carousel .teaser-items-wrap .item-type-light {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 925px) {
  .teaser_carousel .teaser-items-wrap .item-type-light {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 835px) {
  .teaser_carousel .teaser-items-wrap .item-type-light, .teaser_carousel .teaser-items-wrap .item-type {
    display: none;
  }
}
@media screen and (max-width: 715px) {
  .teaser_carousel .item-type-light {
    display: none !important;
  }
}
@media screen and (max-width: 600px) {
  .start-slideshow {
    font-size: 1.2em !important;
    line-height: 4em !important;
  }
}
@media screen and (min-width: 1200px) {
  .special-articles h2 {
    position: relative;
  }

  .article-header .article-social-big,
  .element-mob {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .social ul {
    width: 100%;
  }
  .social li {
    font-size: 1.2em;
    width: 31%;
  }
}
.special-header {
  height: 628px;
}
@media (min-width: 200px) and (max-width: 640px) {
  .special-header {
    height: 528px;
  }
}

.article-type {
  margin: -3px 0 0 4.5%;
}

@media screen and (max-width: 1280px) {
  .article-header .article-social-big,
  .element-mob {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  #content .showmore {
    display: none;
  }

  .column, .c-left, .c-right {
    width: 100% !important;
    float: none;
  }

  .social {
    font-size: 1.6em;
    height: 468px;
    text-align: left;
  }
  .social a {
    text-decoration: none;
  }
  .social ul {
    margin: 32px 0 0 12%;
  }
  .social li {
    display: inline-block;
    font-size: 1.5em;
    line-height: 1.55em;
    padding: 1.0em 2.0em 0 1.0em;
    width: 100%;
  }
  .social p {
    font-family: NPOsansLight, Helvetica, sans-serif;
    font-size: 0.85em;
    font-weight: normal;
    line-height: 1.1em;
  }

  .article-width, .article-body, .detail-twitter, .detail-quote {
    width: 91%;
  }

  .article-header {
    height: 415px;
    width: 90%;
  }
}
@media screen and (max-width: 640px) and (min-width: 200px) and (max-width: 640px) {
  .article-header {
    display: inline-block;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
  }
}
@media screen and (max-width: 640px) {
  .article-header .article-author {
    height: 165px;
  }
  .article-header .article-author .author {
    margin-top: 20px;
  }
  .article-header .article-author .author .author-face {
    width: 70px;
    top: 28px;
    left: 11px;
  }
  .article-header .article-author .author .author-overlay {
    width: 110px;
  }
  .article-header .article-author .author-meta {
    font-size: 1.6rem;
    margin: 45px 0px 0px 15px;
  }
  .article-header .article-author .author-meta .author-name {
    font-size: 1.9rem;
  }
  .article-header .article-author .author-social {
    float: right;
    padding: 0px;
    margin-top: 50px;
  }
  .article-header .article-author .author-social img {
    width: 68px;
  }

  .article-body .article-intro {
    margin-bottom: 45px;
  }
  .article-body .element-of {
    width: 100%;
    background-color: #f1f1f1;
    height: auto;
    padding: 30px 30px 35px 30px;
    margin: 40px 0px;
    border-radius: 5px;
  }
  .article-body .element-of .element-image, .article-body .element-of .element {
    display: none;
  }
  .article-body .element-of .element-mob {
    display: block;
    font-family: NPOsansBold;
  }
  .article-body .element-of .element-mob p {
    line-height: 1.8rem;
  }
  .article-body .element-of .element-mob .element-spec {
    font-size: 1.5rem;
    text-transform: uppercase;
    color: #a4a4a4;
  }
  .article-body .element-of .element-mob .element-title {
    font-size: 2.0rem;
  }

  .detail-quote {
    font-size: 2.0rem;
  }
  .detail-quote .quote {
    width: 85%;
  }
  .detail-quote .quote:before {
    margin-right: 0.5em;
  }
  .detail-quote .quote:after {
    margin-left: 0.5em;
  }

  .program-intro {
    padding: 0;
  }
  .program-intro h2 {
    font-size: 3.01em;
    margin: 0px 0 15px 0;
  }
  .program-intro .content {
    border-bottom: 2px solid #d2d2d2;
  }
  .program-intro .text {
    font-size: 1.995em;
    line-height: 44.8px;
    padding: 10px 0 24px 0;
  }
  .program-intro .logo-ntr img {
    margin: 0 1% 0 0;
    width: 100px;
  }
}
@media screen and (max-width: 768px) {
  .item-type-light, .item-type {
    display: block !important;
  }

  .item-type-light {
    display: inline !important;
  }

  .teaser-description {
    top: 36% !important;
    line-height: 1.40em;
  }

  ul.teaser-item li:nth-child(3) {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }

  ul.teaser-item li {
    width: 26% !important;
  }

  .teaser-media img {
    margin-top: 0px !important;
  }

  .teaser_carousel .slide {
    height: 625px;
  }

  .column.c-left {
    width: 64.8%;
  }

  .column.c-right {
    width: 35.2%;
  }

  .programs-intro h2 {
    font-size: 2.4em;
  }
  .programs-intro .text-mob,
  .programs-intro .text-tab {
    font-size: 1.3em;
  }
}
