/* Welcome to Compass.
 * In this file you should write your main styles. (or centralize your imports)
 * Import this file using the following HTML or equivalent:
 * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
/* line 5, ../../../../../../../../../Library/Ruby/Gems/2.6.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, .content .inner-content figure figcaption, .content .inner-content .date, .mini-button, .filter-button, .acties .actie-column .actie .tags, .gallery > .gallery-item .gallery-caption, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* line 22, ../../../../../../../../../Library/Ruby/Gems/2.6.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
html {
  line-height: 1;
}

/* line 24, ../../../../../../../../../Library/Ruby/Gems/2.6.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
ol, ul {
  list-style: none;
}

/* line 26, ../../../../../../../../../Library/Ruby/Gems/2.6.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 28, ../../../../../../../../../Library/Ruby/Gems/2.6.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

/* line 30, ../../../../../../../../../Library/Ruby/Gems/2.6.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q, blockquote {
  quotes: none;
}
/* line 103, ../../../../../../../../../Library/Ruby/Gems/2.6.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

/* line 32, ../../../../../../../../../Library/Ruby/Gems/2.6.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
a img {
  border: none;
}

/* line 116, ../../../../../../../../../Library/Ruby/Gems/2.6.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
/* line 3, scss/hamburgers/_base.scss */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  outline: none;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
/* line 21, scss/hamburgers/_base.scss */
.hamburger:hover {
  opacity: 0.7;
}

/* line 31, scss/hamburgers/_base.scss */
.hamburger-box {
  width: 30px;
  height: 22px;
  display: inline-block;
  position: relative;
}

/* line 38, scss/hamburgers/_base.scss */
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
/* line 43, scss/hamburgers/_base.scss */
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 30px;
  height: 4px;
  background-color: #000;
  border-radius: 1px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
/* line 56, scss/hamburgers/_base.scss */
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
/* line 62, scss/hamburgers/_base.scss */
.hamburger-inner::before {
  top: -9px;
}
/* line 66, scss/hamburgers/_base.scss */
.hamburger-inner::after {
  bottom: -9px;
}

/*
 * Collapse
 */
/* line 5, scss/hamburgers/types/_collapse.scss */
.hamburger--collapse {
  outline: none !important;
}
/* line 8, scss/hamburgers/types/_collapse.scss */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
/* line 15, scss/hamburgers/types/_collapse.scss */
.hamburger--collapse .hamburger-inner::after {
  top: -18px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
/* line 21, scss/hamburgers/types/_collapse.scss */
.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 34, scss/hamburgers/types/_collapse.scss */
.menu-active .hamburger--collapse .hamburger-inner {
  outline: none !important;
  transform: translate3d(0, -9px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
/* line 40, scss/hamburgers/types/_collapse.scss */
.menu-active .hamburger--collapse .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
/* line 47, scss/hamburgers/types/_collapse.scss */
.menu-active .hamburger--collapse .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@font-face {
  font-family: ATSurtB;
  font-weight: normal;
  src: url("../fonts/ATSurt-DemiBold.eot?") format("eot"), url("../fonts/ATSurt-DemiBold.woff2") format("woff2"), url("../fonts/ATSurt-DemiBold.woff") format("woff"), url("../fonts/ATSurt-DemiBold.otf") format("opentype");
}
@font-face {
  font-family: ATSurt;
  font-weight: normal;
  src: url("../fonts/ATSurt-Regular.eot?") format("eot"), url("../fonts/ATSurt-Regular.woff2") format("woff2"), url("../fonts/ATSurt-Regular.woff") format("woff"), url("../fonts/ATSurt-Regular.otf") format("opentype");
}
@font-face {
  font-family: ATSurtI;
  font-weight: normal;
  src: url("../fonts/ATSurt-RegularOblique.eot?") format("eot"), url("../fonts/ATSurt-RegularOblique.woff2") format("woff2"), url("../fonts/ATSurt-RegularOblique.woff") format("woff"), url("../fonts/ATSurt-RegularOblique.otf") format("opentype");
}
/* line 79, scss/stylesheet.scss */
body,
html {
  font-size: 16px;
  font-family: ATSurt, sans-serif;
  line-height: 1.4;
  height: 100%;
}

/* line 88, scss/stylesheet.scss */
body {
  display: flex;
  flex-direction: column;
}

/* line 92, scss/stylesheet.scss */
.container {
  flex: 1 0 auto;
  padding-top: 6rem;
}

/* line 97, scss/stylesheet.scss */
.color-black {
  color: #000;
}

/* line 101, scss/stylesheet.scss */
.color-red {
  color: #FF3C3C;
}

/* line 106, scss/stylesheet.scss */
div {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 109, scss/stylesheet.scss */
strong,
h1, h2, h3, h4, h5 {
  font-weight: normal;
}
/* line 112, scss/stylesheet.scss */
strong strong,
h1 strong, h2 strong, h3 strong, h4 strong, h5 strong {
  font-weight: normal;
}

/* line 116, scss/stylesheet.scss */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

/* line 120, scss/stylesheet.scss */
h1, h2, h3, h4 {
  font-family: ATSurtB, sans-serif;
}

/* line 123, scss/stylesheet.scss */
h1 {
  font-size: 2rem;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 3rem;
}

/* line 129, scss/stylesheet.scss */
h3 {
  line-height: 1.2;
}

/* line 133, scss/stylesheet.scss */
h5 {
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* line 137, scss/stylesheet.scss */
em, i {
  font-family: ATSurtI;
}

/* line 140, scss/stylesheet.scss */
blockquote {
  font-family: ATSurtB, sans-serif;
  font-size: 1.25rem;
  margin: 0 10%;
  margin-bottom: 2rem;
  color: #FF3C3C;
}

/* line 148, scss/stylesheet.scss */
a {
  color: inherit;
}

/* line 152, scss/stylesheet.scss */
p {
  margin-bottom: 1rem;
}
/* line 154, scss/stylesheet.scss */
p:last-child {
  margin-bottom: 0;
}

/* line 159, scss/stylesheet.scss */
label, .content .inner-content figure figcaption, .content .inner-content .date, .mini-button, .filter-button, .acties .actie-column .actie .tags, .gallery > .gallery-item .gallery-caption {
  display: block;
  font-size: .7rem;
  opacity: .4;
  font-family: ATSurtB, sans-serif;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
}

/* line 168, scss/stylesheet.scss */
.side-label {
  color: transparent;
  font-size: 1rem;
  letter-spacing: 1px;
  font-family: ATSurtB, sans-serif;
  text-transform: uppercase;
  -webkit-text-stroke: 0.75px #FF3C3C;
  position: absolute;
  transform-origin: 0 0;
  -moz-transform: rotate(-90deg) translate(-50%, 0.75rem);
  -ms-transform: rotate(-90deg) translate(-50%, 0.75rem);
  -webkit-transform: rotate(-90deg) translate(-50%, 0.75rem);
  transform: rotate(-90deg) translate(-50%, 0.75rem);
}
/* line 178, scss/stylesheet.scss */
.side-label.center {
  top: 50%;
  -moz-transform: rotate(-90deg) translate(-50%, 0.75rem);
  -ms-transform: rotate(-90deg) translate(-50%, 0.75rem);
  -webkit-transform: rotate(-90deg) translate(-50%, 0.75rem);
  transform: rotate(-90deg) translate(-50%, 0.75rem);
}
/* line 182, scss/stylesheet.scss */
.side-label.color-black {
  -webkit-text-stroke: .75px #000;
}

/* line 186, scss/stylesheet.scss */
header {
  top: 0;
  position: fixed;
  width: 100%;
  z-index: 100;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
}
/* line 194, scss/stylesheet.scss */
header .primary {
  background: #fff;
  position: relative;
  z-index: 2;
  width: 100%;
}
/* line 200, scss/stylesheet.scss */
header .logo {
  width: 120px;
  padding: 1rem;
}
/* line 203, scss/stylesheet.scss */
header .logo a {
  display: block;
  line-height: 0;
}
/* line 207, scss/stylesheet.scss */
header .logo svg,
header .logo img {
  width: 100%;
  height: auto;
}
/* line 213, scss/stylesheet.scss */
header .main-menu {
  text-align: center;
}
/* line 215, scss/stylesheet.scss */
header .main-menu li {
  display: block;
  margin: .75rem 1rem;
}
/* line 219, scss/stylesheet.scss */
header .main-menu li a {
  text-decoration: none;
}
/* line 222, scss/stylesheet.scss */
header .main-menu li.clone {
  margin-left: 0;
  margin-right: 0;
}
/* line 230, scss/stylesheet.scss */
header .lang-item a {
  text-transform: uppercase;
  font-size: 50%;
  border: 2px solid #000;
  padding: 3px 5px 2px 5px;
  vertical-align: middle;
}
/* line 236, scss/stylesheet.scss */
header .lang-item a:hover {
  color: #FF3C3C;
  border-color: #FF3C3C;
}
/* line 244, scss/stylesheet.scss */
header .secondary-menu {
  text-align: center;
}
/* line 246, scss/stylesheet.scss */
header .secondary-menu li {
  display: block;
  margin: .75rem .5rem;
}
/* line 249, scss/stylesheet.scss */
header .secondary-menu li a {
  text-decoration: none;
}
/* line 255, scss/stylesheet.scss */
header .menu-toggle {
  padding: 1rem 1rem;
  position: absolute;
  right: 0rem;
  top: .5rem;
}
/* line 261, scss/stylesheet.scss */
header .menu-toggle button:after, header .menu-toggle button:before {
  display: none;
}
/* line 268, scss/stylesheet.scss */
header .main-menu {
  padding: 1rem 0;
  font-size: 1.5rem;
  line-height: 1;
  text-transform: lowercase;
  font-family: ATSurtB, sans-serif, Arial;
  display: none;
}
/* line 277, scss/stylesheet.scss */
header .main-menu li.current-menu-item, header .main-menu li:hover {
  color: #FF3C3C;
}
/* line 283, scss/stylesheet.scss */
header .secondary {
  -webkit-font-smoothing: antialiased;
  position: relative;
  background: #96A0A5;
  color: #fff;
  overflow: auto;
  height: auto;
  font-size: .8rem;
  padding: 2rem;
  z-index: 1;
  -moz-transition: all 0s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 0s cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transition: all 0s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0s cubic-bezier(0.77, 0, 0.175, 1);
  margin-top: -1000px;
}
/* line 295, scss/stylesheet.scss */
header .secondary .secondary-menu {
  font-size: 1rem;
  margin-bottom: 2rem;
}
/* line 298, scss/stylesheet.scss */
header .secondary .secondary-menu li {
  margin: .5rem .5rem;
}
/* line 303, scss/stylesheet.scss */
header .secondary .secondary-menu-columns {
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
/* line 311, scss/stylesheet.scss */
header .secondary .social-menu a {
  text-decoration: none;
}
/* line 315, scss/stylesheet.scss */
header .secondary h5 {
  font-size: .8rem;
}
/* line 321, scss/stylesheet.scss */
header .secondary .newsletter form {
  display: flex;
  align-items: flex-end;
  flex-flow: row wrap;
}
/* line 325, scss/stylesheet.scss */
header .secondary .newsletter form .field {
  margin-bottom: .5rem;
}
/* line 327, scss/stylesheet.scss */
header .secondary .newsletter form .field:last-child {
  margin-bottom: 0;
}
/* line 331, scss/stylesheet.scss */
header .secondary .newsletter form .left {
  width: 60%;
}
/* line 334, scss/stylesheet.scss */
header .secondary .newsletter form .right {
  width: 40%;
}
/* line 337, scss/stylesheet.scss */
header .secondary .newsletter form .button {
  margin-left: 1rem;
  font-size: .66rem;
}
/* line 342, scss/stylesheet.scss */
header .secondary .newsletter form input {
  border-bottom-color: #fff;
  color: #fff;
  font-size: .8rem;
}
/* line 347, scss/stylesheet.scss */
header .secondary .newsletter form input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
/* line 350, scss/stylesheet.scss */
header .secondary .newsletter form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
/* line 353, scss/stylesheet.scss */
header .secondary .newsletter form input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
/* line 356, scss/stylesheet.scss */
header .secondary .newsletter form input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 368, scss/stylesheet.scss */
.newsletter input {
  border: none;
  background-color: transparent;
  border-bottom: 1px solid #000;
  width: 100%;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: ATSurt, sans-serif;
  color: #000;
  padding: .25rem 0;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}
/* line 380, scss/stylesheet.scss */
.newsletter input:active, .newsletter input:focus {
  outline: none;
}
/* line 384, scss/stylesheet.scss */
.newsletter input::-webkit-input-placeholder {
  font-family: ATSurt, sans-serif;
}
/* line 388, scss/stylesheet.scss */
.newsletter input::-moz-placeholder {
  font-family: ATSurt, sans-serif;
}
/* line 392, scss/stylesheet.scss */
.newsletter input:-ms-input-placeholder {
  font-family: ATSurt, sans-serif;
}
/* line 396, scss/stylesheet.scss */
.newsletter input:-moz-placeholder {
  font-family: ATSurt, sans-serif;
}
/* line 401, scss/stylesheet.scss */
.newsletter .result {
  margin-top: 1rem;
}

/* line 408, scss/stylesheet.scss */
.menu-active header .main-menu {
  display: block;
}
/* line 411, scss/stylesheet.scss */
.menu-active header .secondary {
  margin-top: 0;
}

/* line 417, scss/stylesheet.scss */
.content {
  padding: 1rem 2.5rem 1rem 2.5rem;
}
/* line 2, scss/_mixins.scss */
.content:after {
  content: '';
  display: block;
  clear: both;
}
/* line 422, scss/stylesheet.scss */
.content .inner-content {
  max-width: 100%;
  padding: 2rem 0rem;
  margin: 0 auto;
}
/* line 426, scss/stylesheet.scss */
.content .inner-content.rtl {
  direction: rtl;
}
/* line 428, scss/stylesheet.scss */
.content .inner-content.rtl .ltr {
  direction: ltr;
  text-align: left;
  float: none;
}
/* line 432, scss/stylesheet.scss */
.content .inner-content.rtl .ltr .mini-button {
  float: none;
  text-align: left;
}
/* line 437, scss/stylesheet.scss */
.content .inner-content.rtl label, .content .inner-content.rtl figure figcaption, .content .inner-content.rtl .date, .content .inner-content.rtl .mini-button, .content .inner-content.rtl .filter-button, .content .inner-content.rtl .acties .actie-column .actie .tags, .acties .actie-column .actie .content .inner-content.rtl .tags, .content .inner-content.rtl .gallery > .gallery-item .gallery-caption, .gallery > .gallery-item .content .inner-content.rtl .gallery-caption {
  text-align: right;
  float: right;
}
/* line 441, scss/stylesheet.scss */
.content .inner-content.rtl .gsection_title,
.content .inner-content.rtl .gform_title {
  text-align: right;
}
/* line 448, scss/stylesheet.scss */
.content .inner-content.rtl .gform_wrapper .ginput_complex.ginput_container.ginput_container_email .ginput_left, .content .inner-content.rtl .gform_wrapper .ginput_complex.ginput_container.ginput_container_email .ginput_right {
  padding-right: 0;
  padding-left: 16px;
}
/* line 453, scss/stylesheet.scss */
.content .inner-content ul,
.content .inner-content ol,
.content .inner-content p {
  margin-bottom: 2rem;
}
/* line 457, scss/stylesheet.scss */
.content .inner-content ul:last-child,
.content .inner-content ol:last-child,
.content .inner-content p:last-child {
  margin-bottom: 0;
}
/* line 463, scss/stylesheet.scss */
.content .inner-content ul li,
.content .inner-content ol li {
  margin-bottom: .25rem;
}
/* line 467, scss/stylesheet.scss */
.content .inner-content ul {
  list-style: disc;
  margin-left: 1.2rem;
}
/* line 471, scss/stylesheet.scss */
.content .inner-content ol {
  list-style: decimal;
  margin-left: 1.2rem;
}
/* line 476, scss/stylesheet.scss */
.content .inner-content figure {
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
}
/* line 481, scss/stylesheet.scss */
.content .inner-content figure img {
  width: 100%;
  height: auto;
}
/* line 484, scss/stylesheet.scss */
.content .inner-content figure img.size-thumbnail, .content .inner-content figure img.size-medium {
  width: auto;
  height: auto;
}
/* line 495, scss/stylesheet.scss */
.content .inner-content a {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}
/* line 506, scss/stylesheet.scss */
.content .inner-content a:hover {
  color: #FF3C3C;
}
/* line 511, scss/stylesheet.scss */
.content .inner-content .tabs {
  position: relative;
  z-index: 10;
  list-style: none;
  margin: 0;
  margin-bottom: 1rem;
  margin-top: calc(-3rem + 4px);
  -moz-transform: translate(0, -100%);
  -ms-transform: translate(0, -100%);
  -webkit-transform: translate(0, -100%);
  transform: translate(0, -100%);
}
/* line 519, scss/stylesheet.scss */
.content .inner-content .tabs li {
  display: inline-block;
  margin-right: 1rem;
  margin-bottom: 0;
  padding-bottom: .25rem;
  cursor: pointer;
}
/* line 525, scss/stylesheet.scss */
.content .inner-content .tabs li.active {
  color: #FF3C3C;
  border-bottom: 4px solid #FF3C3C;
}
/* line 531, scss/stylesheet.scss */
.content .inner-content strong {
  font-family: ATSurtB, sans-serif;
}
/* line 534, scss/stylesheet.scss */
.content .inner-content h2, .content .inner-content h3 {
  font-size: 1.5rem;
}
/* line 536, scss/stylesheet.scss */
.content .inner-content h2 strong, .content .inner-content h3 strong {
  font-family: ATSurtB, sans-serif;
}
/* line 540, scss/stylesheet.scss */
.content .inner-content h4, .content .inner-content h5 {
  font-size: 1rem;
  font-family: ATSurt, sans-serif;
  color: #96A0A5;
}
/* line 545, scss/stylesheet.scss */
.content .inner-content .intro {
  color: #FF3C3C;
  font-size: 1.5rem;
}
/* line 552, scss/stylesheet.scss */
.content .inner-content .update img {
  float: left;
  margin: 0 2rem 2rem 0;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  width: 30%;
  height: auto;
}
/* line 560, scss/stylesheet.scss */
.content .inner-content .update:hover img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
/* line 565, scss/stylesheet.scss */
.content .inner-content .update h2 {
  font-size: 1.5rem;
}
/* line 567, scss/stylesheet.scss */
.content .inner-content .update h2 a {
  text-decoration: none;
}
/* line 571, scss/stylesheet.scss */
.content .inner-content .update h3 {
  font-size: 1rem;
}
/* line 573, scss/stylesheet.scss */
.content .inner-content .update h3 a {
  text-decoration: none;
}
/* line 579, scss/stylesheet.scss */
.content .inner-content .date {
  line-height: 1.4;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
/* line 585, scss/stylesheet.scss */
.content .inner-content .date.date-alt {
  color: #000;
}
/* line 589, scss/stylesheet.scss */
.content .inner-content .social {
  position: relative;
  line-height: 1.4;
  max-width: 100px;
  margin-bottom: 1rem;
}
/* line 595, scss/stylesheet.scss */
.content .inner-content .social ul {
  list-style: none;
  margin: 0;
}
/* line 598, scss/stylesheet.scss */
.content .inner-content .social ul li {
  margin-bottom: 0;
}
/* line 600, scss/stylesheet.scss */
.content .inner-content .social ul li a {
  text-decoration: none;
}
/* line 607, scss/stylesheet.scss */
.content.background-grey {
  background: #F4F5F6;
}

/* line 612, scss/stylesheet.scss */
.actie-header {
  margin-bottom: 2rem;
}
/* line 615, scss/stylesheet.scss */
.actie-header .image-title {
  width: 100%;
  position: relative;
}
/* line 618, scss/stylesheet.scss */
.actie-header .image-title.no-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* line 627, scss/stylesheet.scss */
.actie-header .image-title img {
  margin-top: 1.5rem;
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
  filter: grayscale(100%);
}
/* line 634, scss/stylesheet.scss */
.actie-header .image-title label, .actie-header .image-title .content .inner-content figure figcaption, .content .inner-content figure .actie-header .image-title figcaption, .actie-header .image-title .content .inner-content .date, .content .inner-content .actie-header .image-title .date, .actie-header .image-title .mini-button, .actie-header .image-title .filter-button, .actie-header .image-title .acties .actie-column .actie .tags, .acties .actie-column .actie .actie-header .image-title .tags, .actie-header .image-title .gallery > .gallery-item .gallery-caption, .gallery > .gallery-item .actie-header .image-title .gallery-caption {
  text-align: center;
  position: relative;
  z-index: 1;
}
/* line 638, scss/stylesheet.scss */
.actie-header .image-title label a, .actie-header .image-title .content .inner-content figure figcaption a, .content .inner-content figure .actie-header .image-title figcaption a, .actie-header .image-title .content .inner-content .date a, .content .inner-content .actie-header .image-title .date a, .actie-header .image-title .mini-button a, .actie-header .image-title .filter-button a, .actie-header .image-title .acties .actie-column .actie .tags a, .acties .actie-column .actie .actie-header .image-title .tags a, .actie-header .image-title .gallery > .gallery-item .gallery-caption a, .gallery > .gallery-item .actie-header .image-title .gallery-caption a {
  text-decoration: none;
}
/* line 642, scss/stylesheet.scss */
.actie-header .image-title h1 {
  padding: 1rem 2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
/* line 648, scss/stylesheet.scss */
.actie-header .image-title:after {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  background: #FF3C3C;
  height: 100%;
  content: '';
  display: block;
  z-index: 0;
  opacity: 1;
  mix-blend-mode: multiply;
}
/* line 663, scss/stylesheet.scss */
.actie-header .actie-info {
  -webkit-font-smoothing: antialiased;
  padding: 2rem;
  background: #FF3C3C;
  text-align: center;
  width: 100%;
  position: relative;
}
/* line 671, scss/stylesheet.scss */
.actie-header .actie-info .location {
  text-transform: uppercase;
  font-family: ATSurtB, sans-serif;
  font-size: 1.5rem;
  display: inline-block;
  padding: 0.25rem .5rem;
  border-bottom: 2px solid #000;
  margin-bottom: 1rem;
}
/* line 680, scss/stylesheet.scss */
.actie-header .actie-info .location-map {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}
/* line 685, scss/stylesheet.scss */
.actie-header .actie-info h2 {
  font-size: 1rem;
  line-height: 1.3;
  display: block;
  text-align: center;
  padding-left: 15%;
  padding-right: 15%;
  font-family: ATSurt, sans-serif;
}
/* line 693, scss/stylesheet.scss */
.actie-header .actie-info h2 a {
  text-decoration: none;
}
/* line 697, scss/stylesheet.scss */
.actie-header .actie-info label, .actie-header .actie-info .content .inner-content figure figcaption, .content .inner-content figure .actie-header .actie-info figcaption, .actie-header .actie-info .content .inner-content .date, .content .inner-content .actie-header .actie-info .date, .actie-header .actie-info .mini-button, .actie-header .actie-info .filter-button, .actie-header .actie-info .acties .actie-column .actie .tags, .acties .actie-column .actie .actie-header .actie-info .tags, .actie-header .actie-info .gallery > .gallery-item .gallery-caption, .gallery > .gallery-item .actie-header .actie-info .gallery-caption,
.actie-header .actie-info p {
  text-align: left;
}
/* line 702, scss/stylesheet.scss */
.actie-header .actie-info .button {
  position: absolute;
  bottom: 0;
  white-space: nowrap;
  left: 50%;
  -moz-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}
/* line 712, scss/stylesheet.scss */
.actie-header label, .actie-header .content .inner-content figure figcaption, .content .inner-content figure .actie-header figcaption, .actie-header .content .inner-content .date, .content .inner-content .actie-header .date, .actie-header .mini-button, .actie-header .filter-button, .actie-header .acties .actie-column .actie .tags, .acties .actie-column .actie .actie-header .tags, .actie-header .gallery > .gallery-item .gallery-caption, .gallery > .gallery-item .actie-header .gallery-caption {
  color: #fff;
  opacity: 1;
}

/* line 722, scss/stylesheet.scss */
.single-post .content .inner-content .intro {
  color: #96A0A5;
}
/* line 729, scss/stylesheet.scss */
.single-post .actie-header .image-title img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
/* line 732, scss/stylesheet.scss */
.single-post .actie-header .image-title:after {
  background: #96A0A5;
}
/* line 736, scss/stylesheet.scss */
.single-post .actie-header .image-title label, .single-post .actie-header .image-title .content .inner-content figure figcaption, .content .inner-content figure .single-post .actie-header .image-title figcaption, .single-post .actie-header .image-title .content .inner-content .date, .content .inner-content .single-post .actie-header .image-title .date, .single-post .actie-header .image-title .mini-button, .single-post .actie-header .image-title .filter-button, .single-post .actie-header .image-title .acties .actie-column .actie .tags, .acties .actie-column .actie .single-post .actie-header .image-title .tags, .single-post .actie-header .image-title .gallery > .gallery-item .gallery-caption, .gallery > .gallery-item .single-post .actie-header .image-title .gallery-caption {
  color: #000;
}
/* line 740, scss/stylesheet.scss */
.single-post .actie-header .actie-info {
  background: #96A0A5;
}

/* line 2, scss/_mixins.scss */
.columns:after {
  content: '';
  display: block;
  clear: both;
}
/* line 750, scss/stylesheet.scss */
.columns .column {
  margin-bottom: 2rem;
}

/* line 756, scss/stylesheet.scss */
button,
.button {
  -webkit-font-smoothing: auto;
  -moz-appearance: none;
  -webkit-appearance: none;
  vertical-align: middle;
  padding: .25rem .35rem;
  line-height: 1.2;
  border: 3px solid;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: transparent;
  font-family: ATSurtB, sans-serif;
  font-size: 1rem;
  color: #000;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  outline: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
/* line 763, scss/stylesheet.scss */
button:after,
.button:after {
  position: absolute;
  z-index: 0;
  background: #000;
  width: 100%;
  height: 6px;
  top: 100%;
  left: 6px;
  content: '';
  display: block;
}
/* line 774, scss/stylesheet.scss */
button:before,
.button:before {
  position: absolute;
  z-index: 0;
  background: #000;
  width: 6px;
  height: 100%;
  top: 6px;
  left: 100%;
  content: '';
  display: block;
}
/* line 801, scss/stylesheet.scss */
button:active,
.button:active {
  outline: none;
}
/* line 805, scss/stylesheet.scss */
button:hover,
.button:hover {
  color: #FF3C3C;
}
/* line 808, scss/stylesheet.scss */
button:hover:before, button:hover:after,
.button:hover:before,
.button:hover:after {
  background: #FF3C3C;
}
/* line 814, scss/stylesheet.scss */
button.large,
.button.large {
  font-size: 1.5rem;
  padding: .5rem .75rem;
}
/* line 817, scss/stylesheet.scss */
button.large:after,
.button.large:after {
  height: 8px;
  left: 8px;
}
/* line 821, scss/stylesheet.scss */
button.large:before,
.button.large:before {
  width: 8px;
  top: 8px;
}
/* line 825, scss/stylesheet.scss */
button.large span,
.button.large span {
  -webkit-text-stroke: 1px #000;
  color: transparent;
}
/* line 830, scss/stylesheet.scss */
button.large:hover span,
.button.large:hover span {
  -webkit-text-stroke: 1px #FF3C3C;
}
/* line 835, scss/stylesheet.scss */
button.white-background,
.button.white-background {
  background: #fff;
}
/* line 838, scss/stylesheet.scss */
button.white,
.button.white {
  color: #fff;
}
/* line 841, scss/stylesheet.scss */
button.white:after, button.white:before,
.button.white:after,
.button.white:before {
  background: #fff;
}
/* line 845, scss/stylesheet.scss */
button.white:hover,
.button.white:hover {
  color: #000;
}
/* line 848, scss/stylesheet.scss */
button.white:hover:before, button.white:hover:after,
.button.white:hover:before,
.button.white:hover:after {
  background: #000;
}

/* line 856, scss/stylesheet.scss */
.mini-button {
  opacity: 1;
  border: 1px solid #000;
  background: #fff;
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
  margin: 0 .25rem .25rem 0;
  padding: .25rem .3rem .15rem .3rem;
}
/* line 866, scss/stylesheet.scss */
.mini-button:hover {
  color: #FF3C3C;
  border-color: #FF3C3C;
}
/* line 870, scss/stylesheet.scss */
.mini-button.active {
  background: #000;
  color: #fff;
}

/* line 876, scss/stylesheet.scss */
hr {
  margin: 2rem 0;
  height: 1px;
  background: #000;
  border: none;
}

/* line 883, scss/stylesheet.scss */
.filter-button {
  cursor: pointer;
  color: #000;
  position: fixed;
  font-family: ATSurtB, sans-serif;
  opacity: 1;
  z-index: 80;
  background: #F4F5F6;
  width: 100%;
  text-align: center;
  z-index: 50;
  padding: .5rem 0;
  line-height: 1.2;
}
/* line 893, scss/stylesheet.scss */
.filter-button:hover {
  background: #96A0A5;
  color: #fff;
}

/* line 904, scss/stylesheet.scss */
.filter-options {
  background: #F4F5F6;
  z-index: 90;
  position: fixed;
  padding: 2rem;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -moz-transform: translate(0, -150%);
  -ms-transform: translate(0, -150%);
  -webkit-transform: translate(0, -150%);
  transform: translate(0, -150%);
  -moz-transition: ease-in-out 0.2s all;
  -o-transition: ease-in-out 0.2s all;
  -webkit-transition: ease-in-out 0.2s all;
  transition: ease-in-out 0.2s all;
}
/* line 916, scss/stylesheet.scss */
.filter-options .inner {
  overflow: auto;
  border-bottom: 1px solid #000;
  border-top: 1px solid #000;
  padding: 2rem 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  flex-flow: row wrap;
  max-width: 1070px;
  margin: 0 auto;
}
/* line 928, scss/stylesheet.scss */
.filter-options .inner .part {
  width: 100%;
}
/* line 933, scss/stylesheet.scss */
.filter-options .filter-section {
  margin-bottom: 1rem;
}
/* line 936, scss/stylesheet.scss */
.filter-options h4 {
  font-size: 1rem;
}
/* line 939, scss/stylesheet.scss */
.filter-options .close-filter {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
/* line 943, scss/stylesheet.scss */
.filter-options .close-filter label, .filter-options .close-filter .content .inner-content figure figcaption, .content .inner-content figure .filter-options .close-filter figcaption, .filter-options .close-filter .content .inner-content .date, .content .inner-content .filter-options .close-filter .date, .filter-options .close-filter .mini-button, .filter-options .close-filter .filter-button, .filter-options .close-filter .acties .actie-column .actie .tags, .acties .actie-column .actie .filter-options .close-filter .tags, .filter-options .close-filter .gallery > .gallery-item .gallery-caption, .gallery > .gallery-item .filter-options .close-filter .gallery-caption {
  cursor: pointer;
  opacity: 1;
}

/* line 950, scss/stylesheet.scss */
.filter-active .filter-button {
  color: #000;
}
/* line 955, scss/stylesheet.scss */
.filter-active .filter-options {
  display: block;
  -moz-transform: translate(0, 0%);
  -ms-transform: translate(0, 0%);
  -webkit-transform: translate(0, 0%);
  transform: translate(0, 0%);
}

/* line 963, scss/stylesheet.scss */
.acties {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
/* line 968, scss/stylesheet.scss */
.acties .actie-column {
  padding: 2rem 0;
  position: relative;
  z-index: 10;
  -webkit-transition: -webkit-transform .25s ease;
  -moz-transition: -moz-transform .25s ease;
  transition: transform .25s ease;
  text-align: center;
}
/* line 969, scss/stylesheet.scss */
.acties .actie-column:first-child {
  padding-top: 4rem !important;
}
/* line 980, scss/stylesheet.scss */
.acties .actie-column h2 {
  font-size: 1.5rem;
  text-transform: uppercase;
  line-height: 1;
  display: inline-block;
  margin-bottom: 5rem;
}
/* line 988, scss/stylesheet.scss */
.acties .actie-column h2 span {
  -webkit-text-stroke: .75px #000;
  color: transparent;
  display: block;
}
/* line 994, scss/stylesheet.scss */
.acties .actie-column .actie-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-flow: row wrap;
}
/* line 1000, scss/stylesheet.scss */
.acties .actie-column .actie {
  width: 100%;
  max-width: 500px;
  margin: 2rem 2rem 4rem 2rem;
  position: relative;
}
/* line 1005, scss/stylesheet.scss */
.acties .actie-column .actie h3 {
  max-height: 3.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  position: absolute;
  bottom: 100%;
  width: 100%;
  text-align: center;
  margin-bottom: .5rem;
}
/* line 1013, scss/stylesheet.scss */
.acties .actie-column .actie h3:hover {
  max-height: 5rem;
  display: block;
}
/* line 1022, scss/stylesheet.scss */
.acties .actie-column .actie h3 a {
  text-decoration: none;
}
/* line 1028, scss/stylesheet.scss */
.acties .actie-column .actie .image {
  margin-bottom: .5rem;
}
/* line 1030, scss/stylesheet.scss */
.acties .actie-column .actie .image img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
/* line 1038, scss/stylesheet.scss */
.acties .actie-column .actie .tags {
  color: inherit;
  opacity: 1;
  text-align: center;
}
/* line 1043, scss/stylesheet.scss */
.acties .actie-column .actie .tags a {
  margin: 0 .25rem;
}
/* line 1050, scss/stylesheet.scss */
.acties .actie-column .actie:hover .image:after {
  display: none !important;
}
/* line 1053, scss/stylesheet.scss */
.acties .actie-column .actie:hover .image img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
/* line 1062, scss/stylesheet.scss */
.acties .actie-column.red {
  background: #FF3C3C;
  color: #000;
}
/* line 1067, scss/stylesheet.scss */
.acties .actie-column.red h2 span {
  font-size: 75%;
  -webkit-text-stroke: .75px #000;
}
/* line 1077, scss/stylesheet.scss */
.acties .actie-column.red .actie h3 {
  color: #000;
}
/* line 1080, scss/stylesheet.scss */
.acties .actie-column.red .actie .image {
  position: relative;
}
/* line 1082, scss/stylesheet.scss */
.acties .actie-column.red .actie .image img {
  position: relative;
  z-index: 1;
}
/* line 1086, scss/stylesheet.scss */
.acties .actie-column.red .actie .image:after {
  content: '';
  display: none;
  z-index: 2;
  width: 100%;
  height: 90%;
  background: #FF3C3C;
  position: absolute;
  top: 10%;
  left: 10%;
  mix-blend-mode: multiply;
}
/* line 1102, scss/stylesheet.scss */
.acties .actie-column.black {
  background: #000;
  color: #fff;
}
/* line 1111, scss/stylesheet.scss */
.acties .actie-column.black h2 span {
  font-size: 60%;
  -webkit-text-stroke: .75px #fff;
}

/* line 1124, scss/stylesheet.scss */
.archief {
  background: #F4F5F6;
}
/* line 1127, scss/stylesheet.scss */
.archief .filter-button {
  left: calc(50% - 600px);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  text-align: left;
  color: #000;
}
/* line 1133, scss/stylesheet.scss */
.archief .filter-options {
  left: 0px;
  width: 50%;
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
/* line 1136, scss/stylesheet.scss */
.archief .filter-options .inner {
  max-width: 500px;
  float: right;
}
/* line 1141, scss/stylesheet.scss */
.archief .filter-options .close-filter {
  display: none;
}
/* line 1145, scss/stylesheet.scss */
.archief .acties {
  margin-left: 50%;
  width: 50vw;
}
/* line 1148, scss/stylesheet.scss */
.archief .acties .actie-column {
  width: 100%;
}

/* line 1155, scss/stylesheet.scss */
.pagination {
  background: #fff;
  text-align: center;
  color: #000;
}
/* line 1159, scss/stylesheet.scss */
.pagination a {
  text-decoration: none;
}
/* line 1162, scss/stylesheet.scss */
.pagination .page-numbers {
  padding: 1rem .5rem;
  font-size: 1rem;
  display: inline-block;
  vertical-align: middle;
}
/* line 1167, scss/stylesheet.scss */
.pagination .page-numbers.current {
  background: #000;
  color: #fff;
}
/* line 1172, scss/stylesheet.scss */
.pagination .page-numbers.next, .pagination .page-numbers.prev {
  padding: 0;
}
/* line 1176, scss/stylesheet.scss */
.pagination .page-numbers .pag {
  height: 0px;
  width: 0px;
  border: 1.66rem solid;
  border-left-color: transparent;
  border-top-color: transparent;
  border-bottom-color: transparent;
}
/* line 1183, scss/stylesheet.scss */
.pagination .page-numbers .pag.next {
  border-right-color: transparent;
  border-left-color: #000;
}

/* line 1197, scss/stylesheet.scss */
.donatie-container .form {
  margin-bottom: 2rem;
}
/* line 1201, scss/stylesheet.scss */
.donatie-container .donatie-form p {
  margin-bottom: 1rem;
}
/* line 1204, scss/stylesheet.scss */
.donatie-container .donatie-form .errors {
  background: #000;
  color: #fff;
  margin: 0;
  font-size: .8rem;
  padding: 1rem;
  list-style: none;
}
/* line 1211, scss/stylesheet.scss */
.donatie-container .donatie-form .errors li {
  margin: 0;
}
/* line 1216, scss/stylesheet.scss */
.donatie-container .donatie-form label, .donatie-container .donatie-form .content .inner-content figure figcaption, .content .inner-content figure .donatie-container .donatie-form figcaption, .donatie-container .donatie-form .content .inner-content .date, .content .inner-content .donatie-container .donatie-form .date, .donatie-container .donatie-form .mini-button, .donatie-container .donatie-form .filter-button, .donatie-container .donatie-form .acties .actie-column .actie .tags, .acties .actie-column .actie .donatie-container .donatie-form .tags, .donatie-container .donatie-form .gallery > .gallery-item .gallery-caption, .gallery > .gallery-item .donatie-container .donatie-form .gallery-caption {
  margin-bottom: .25rem;
}
/* line 53, scss/stylesheet.scss */
.donatie-container .donatie-form select,
.donatie-container .donatie-form textarea,
.donatie-container .donatie-form input[type='text'],
.donatie-container .donatie-form input[type='search'] {
  -moz-appearance: none;
  -webkit-appearance: none;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  border: 2px solid #000;
  font-family: ATSurt, sans-serif;
  font-size: .8rem;
  padding: .4rem;
  background: #fff;
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/* line 66, scss/stylesheet.scss */
.donatie-container .donatie-form select:focus, .donatie-container .donatie-form select:active,
.donatie-container .donatie-form textarea:focus,
.donatie-container .donatie-form textarea:active,
.donatie-container .donatie-form input[type='text']:focus,
.donatie-container .donatie-form input[type='text']:active,
.donatie-container .donatie-form input[type='search']:focus,
.donatie-container .donatie-form input[type='search']:active {
  outline: none;
}
/* line 71, scss/stylesheet.scss */
.donatie-container .donatie-form select {
  background: #fff url(../img/down.png) no-repeat;
  background-position: right 15px top 50%;
}
/* line 75, scss/stylesheet.scss */
.donatie-container .donatie-form textarea {
  height: 100px !important;
}
/* line 1221, scss/stylesheet.scss */
.donatie-container .donatie-form [readonly="readonly"] {
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
/* line 1232, scss/stylesheet.scss */
.donatie-container .donatie-form #dmm_amount {
  margin-top: .5rem;
}
/* line 1235, scss/stylesheet.scss */
.donatie-container .donatie-form #dmm_permission {
  margin-bottom: 1rem;
  display: inline;
}
/* line 1240, scss/stylesheet.scss */
.donatie-container .donatie-form .methods label, .donatie-container .donatie-form .methods .content .inner-content figure figcaption, .content .inner-content figure .donatie-container .donatie-form .methods figcaption, .donatie-container .donatie-form .methods .content .inner-content .date, .content .inner-content .donatie-container .donatie-form .methods .date, .donatie-container .donatie-form .methods .mini-button, .donatie-container .donatie-form .methods .filter-button, .donatie-container .donatie-form .methods .acties .actie-column .actie .tags, .acties .actie-column .actie .donatie-container .donatie-form .methods .tags, .donatie-container .donatie-form .methods .gallery > .gallery-item .gallery-caption, .gallery > .gallery-item .donatie-container .donatie-form .methods .gallery-caption {
  opacity: 1;
  cursor: pointer;
}
/* line 1247, scss/stylesheet.scss */
.donatie-container .reasons {
  margin-top: 2rem;
  flex-shrink: 0;
  background-color: #FF3C3C;
  padding: 2rem;
  padding-bottom: calc(2rem + 60px);
  color: #000;
  max-width: 350px;
  width: 100%;
  background-image: url(../img/logo.svg);
  background-repeat: no-repeat;
  background-position: left 20px bottom 20px;
  background-size: 100px;
}
/* line 1260, scss/stylesheet.scss */
.donatie-container .reasons ul {
  margin: 0 !important;
  padding: 0;
}
/* line 1263, scss/stylesheet.scss */
.donatie-container .reasons ul li {
  position: relative;
  margin-left: 40px;
  display: block;
}
/* line 1267, scss/stylesheet.scss */
.donatie-container .reasons ul li:before {
  display: block;
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  left: -40px;
  top: 0;
  background: url(../img/vink.png) no-repeat;
}

/* line 1282, scss/stylesheet.scss */
.search-form {
  text-align: center;
  padding: 2rem 0;
}
/* line 53, scss/stylesheet.scss */
.search-form select,
.search-form textarea,
.search-form input[type='text'],
.search-form input[type='search'] {
  -moz-appearance: none;
  -webkit-appearance: none;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  border: 2px solid #000;
  font-family: ATSurt, sans-serif;
  font-size: .8rem;
  padding: .4rem;
  background: #fff;
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/* line 66, scss/stylesheet.scss */
.search-form select:focus, .search-form select:active,
.search-form textarea:focus,
.search-form textarea:active,
.search-form input[type='text']:focus,
.search-form input[type='text']:active,
.search-form input[type='search']:focus,
.search-form input[type='search']:active {
  outline: none;
}
/* line 71, scss/stylesheet.scss */
.search-form select {
  background: #fff url(../img/down.png) no-repeat;
  background-position: right 15px top 50%;
}
/* line 75, scss/stylesheet.scss */
.search-form textarea {
  height: 100px !important;
}
/* line 1287, scss/stylesheet.scss */
.search-form input {
  max-width: 130px;
  display: inline-block;
  vertical-align: middle;
}
/* line 1292, scss/stylesheet.scss */
.search-form button {
  vertical-align: middle;
}
/* line 1295, scss/stylesheet.scss */
.search-form .search-submit {
  margin-right: 1rem;
}
/* line 1298, scss/stylesheet.scss */
.search-form .reset {
  margin-top: 1rem;
}

/* line 1303, scss/stylesheet.scss */
.gform_wrapper {
  padding: 1rem !important;
  background: #fff;
  margin: 0 auto !important;
}
/* line 53, scss/stylesheet.scss */
.gform_wrapper select,
.gform_wrapper textarea,
.gform_wrapper input[type='text'],
.gform_wrapper input[type='search'] {
  -moz-appearance: none;
  -webkit-appearance: none;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  border: 2px solid #000;
  font-family: ATSurt, sans-serif;
  font-size: .8rem;
  padding: .4rem;
  background: #fff;
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/* line 66, scss/stylesheet.scss */
.gform_wrapper select:focus, .gform_wrapper select:active,
.gform_wrapper textarea:focus,
.gform_wrapper textarea:active,
.gform_wrapper input[type='text']:focus,
.gform_wrapper input[type='text']:active,
.gform_wrapper input[type='search']:focus,
.gform_wrapper input[type='search']:active {
  outline: none;
}
/* line 71, scss/stylesheet.scss */
.gform_wrapper select {
  background: #fff url(../img/down.png) no-repeat;
  background-position: right 15px top 50%;
}
/* line 75, scss/stylesheet.scss */
.gform_wrapper textarea {
  height: 100px !important;
}
/* line 1310, scss/stylesheet.scss */
.gform_wrapper label.gfield_label, .gform_wrapper .content .inner-content figure figcaption.gfield_label, .content .inner-content figure .gform_wrapper figcaption.gfield_label, .gform_wrapper .content .inner-content .gfield_label.date, .content .inner-content .gform_wrapper .gfield_label.date, .gform_wrapper .gfield_label.mini-button, .gform_wrapper .gfield_label.filter-button, .gform_wrapper .acties .actie-column .actie .gfield_label.tags, .acties .actie-column .actie .gform_wrapper .gfield_label.tags, .gform_wrapper .gallery > .gallery-item .gfield_label.gallery-caption, .gallery > .gallery-item .gform_wrapper .gfield_label.gallery-caption {
  font-size: .7rem !important;
}
/* line 1314, scss/stylesheet.scss */
.gform_wrapper .gform_title {
  font-size: 1.25rem !important;
  text-transform: uppercase;
  font-family: ATSurtB, sans-serif;
  font-weight: normal !important;
}
/* line 1321, scss/stylesheet.scss */
.gform_wrapper .gsection .gfield_label,
.gform_wrapper h2.gsection_title,
.gform_wrapper h3.gform_title {
  font-size: 2rem;
}
/* line 1326, scss/stylesheet.scss */
.gform_wrapper .gsection {
  margin: 0 -1rem !important;
  padding: 1rem !important;
  border-top: 1rem solid #F4F5F6 !important;
  border-bottom: none !important;
}
/* line 1333, scss/stylesheet.scss */
.gform_wrapper .top_label div.ginput_container {
  margin-top: 0 !important;
}
/* line 1336, scss/stylesheet.scss */
.gform_wrapper .gfield_required {
  color: #FF3C3C !important;
  opacity: 1;
}

/* line 1342, scss/stylesheet.scss */
.gform_wrapper .top_label .field_sublabel_above label.gfield_label + .ginput_complex.ginput_container, .gform_wrapper .top_label .field_sublabel_above .content .inner-content figure figcaption.gfield_label + .ginput_complex.ginput_container, .content .inner-content figure .gform_wrapper .top_label .field_sublabel_above figcaption.gfield_label + .ginput_complex.ginput_container, .gform_wrapper .top_label .field_sublabel_above .content .inner-content .gfield_label.date + .ginput_complex.ginput_container, .content .inner-content .gform_wrapper .top_label .field_sublabel_above .gfield_label.date + .ginput_complex.ginput_container, .gform_wrapper .top_label .field_sublabel_above .gfield_label.mini-button + .ginput_complex.ginput_container, .gform_wrapper .top_label .field_sublabel_above .gfield_label.filter-button + .ginput_complex.ginput_container, .gform_wrapper .top_label .field_sublabel_above .acties .actie-column .actie .gfield_label.tags + .ginput_complex.ginput_container, .acties .actie-column .actie .gform_wrapper .top_label .field_sublabel_above .gfield_label.tags + .ginput_complex.ginput_container, .gform_wrapper .top_label .field_sublabel_above .gallery > .gallery-item .gfield_label.gallery-caption + .ginput_complex.ginput_container, .gallery > .gallery-item .gform_wrapper .top_label .field_sublabel_above .gfield_label.gallery-caption + .ginput_complex.ginput_container, .gform_wrapper .top_label .field_sublabel_above label.gfield_label + div[class*=gfield_time_].ginput_container, .gform_wrapper .top_label .field_sublabel_above .content .inner-content figure figcaption.gfield_label + div[class*=gfield_time_].ginput_container, .content .inner-content figure .gform_wrapper .top_label .field_sublabel_above figcaption.gfield_label + div[class*=gfield_time_].ginput_container, .gform_wrapper .top_label .field_sublabel_above .content .inner-content .gfield_label.date + div[class*=gfield_time_].ginput_container, .content .inner-content .gform_wrapper .top_label .field_sublabel_above .gfield_label.date + div[class*=gfield_time_].ginput_container, .gform_wrapper .top_label .field_sublabel_above .gfield_label.mini-button + div[class*=gfield_time_].ginput_container, .gform_wrapper .top_label .field_sublabel_above .gfield_label.filter-button + div[class*=gfield_time_].ginput_container, .gform_wrapper .top_label .field_sublabel_above .acties .actie-column .actie .gfield_label.tags + div[class*=gfield_time_].ginput_container, .acties .actie-column .actie .gform_wrapper .top_label .field_sublabel_above .gfield_label.tags + div[class*=gfield_time_].ginput_container, .gform_wrapper .top_label .field_sublabel_above .gallery > .gallery-item .gfield_label.gallery-caption + div[class*=gfield_time_].ginput_container, .gallery > .gallery-item .gform_wrapper .top_label .field_sublabel_above .gfield_label.gallery-caption + div[class*=gfield_time_].ginput_container {
  clear: both;
}

/* line 1349, scss/stylesheet.scss */
.gform_wrapper .top_label input.medium, .gform_wrapper .top_label select.medium {
  width: 100% !important;
}

/* line 1352, scss/stylesheet.scss */
body .gform_wrapper ul li.gfield {
  margin-top: 0 !important;
}

/* line 1355, scss/stylesheet.scss */
.gform_wrapper .field_sublabel_above .ginput_complex.ginput_container label, .gform_wrapper .field_sublabel_above .ginput_complex.ginput_container .content .inner-content figure figcaption, .content .inner-content figure .gform_wrapper .field_sublabel_above .ginput_complex.ginput_container figcaption, .gform_wrapper .field_sublabel_above .ginput_complex.ginput_container .content .inner-content .date, .content .inner-content .gform_wrapper .field_sublabel_above .ginput_complex.ginput_container .date, .gform_wrapper .field_sublabel_above .ginput_complex.ginput_container .mini-button, .gform_wrapper .field_sublabel_above .ginput_complex.ginput_container .filter-button, .gform_wrapper .field_sublabel_above .ginput_complex.ginput_container .acties .actie-column .actie .tags, .acties .actie-column .actie .gform_wrapper .field_sublabel_above .ginput_complex.ginput_container .tags, .gform_wrapper .field_sublabel_above .ginput_complex.ginput_container .gallery > .gallery-item .gallery-caption, .gallery > .gallery-item .gform_wrapper .field_sublabel_above .ginput_complex.ginput_container .gallery-caption, .gform_wrapper .field_sublabel_above div[class*=gfield_date_].ginput_container label, .gform_wrapper .field_sublabel_above div[class*=gfield_date_].ginput_container .content .inner-content figure figcaption, .content .inner-content figure .gform_wrapper .field_sublabel_above div[class*=gfield_date_].ginput_container figcaption, .gform_wrapper .field_sublabel_above div[class*=gfield_date_].ginput_container .content .inner-content .date, .content .inner-content .gform_wrapper .field_sublabel_above div[class*=gfield_date_].ginput_container .date, .gform_wrapper .field_sublabel_above div[class*=gfield_date_].ginput_container .mini-button, .gform_wrapper .field_sublabel_above div[class*=gfield_date_].ginput_container .filter-button, .gform_wrapper .field_sublabel_above div[class*=gfield_date_].ginput_container .acties .actie-column .actie .tags, .acties .actie-column .actie .gform_wrapper .field_sublabel_above div[class*=gfield_date_].ginput_container .tags, .gform_wrapper .field_sublabel_above div[class*=gfield_date_].ginput_container .gallery > .gallery-item .gallery-caption, .gallery > .gallery-item .gform_wrapper .field_sublabel_above div[class*=gfield_date_].ginput_container .gallery-caption, .gform_wrapper .field_sublabel_above div[class*=gfield_time_].ginput_container label, .gform_wrapper .field_sublabel_above div[class*=gfield_time_].ginput_container .content .inner-content figure figcaption, .content .inner-content figure .gform_wrapper .field_sublabel_above div[class*=gfield_time_].ginput_container figcaption, .gform_wrapper .field_sublabel_above div[class*=gfield_time_].ginput_container .content .inner-content .date, .content .inner-content .gform_wrapper .field_sublabel_above div[class*=gfield_time_].ginput_container .date, .gform_wrapper .field_sublabel_above div[class*=gfield_time_].ginput_container .mini-button, .gform_wrapper .field_sublabel_above div[class*=gfield_time_].ginput_container .filter-button, .gform_wrapper .field_sublabel_above div[class*=gfield_time_].ginput_container .acties .actie-column .actie .tags, .acties .actie-column .actie .gform_wrapper .field_sublabel_above div[class*=gfield_time_].ginput_container .tags, .gform_wrapper .field_sublabel_above div[class*=gfield_time_].ginput_container .gallery > .gallery-item .gallery-caption, .gallery > .gallery-item .gform_wrapper .field_sublabel_above div[class*=gfield_time_].ginput_container .gallery-caption, .gform_wrapper .field_sublabel_below .ginput_complex.ginput_container label, .gform_wrapper .field_sublabel_below .ginput_complex.ginput_container .content .inner-content figure figcaption, .content .inner-content figure .gform_wrapper .field_sublabel_below .ginput_complex.ginput_container figcaption, .gform_wrapper .field_sublabel_below .ginput_complex.ginput_container .content .inner-content .date, .content .inner-content .gform_wrapper .field_sublabel_below .ginput_complex.ginput_container .date, .gform_wrapper .field_sublabel_below .ginput_complex.ginput_container .mini-button, .gform_wrapper .field_sublabel_below .ginput_complex.ginput_container .filter-button, .gform_wrapper .field_sublabel_below .ginput_complex.ginput_container .acties .actie-column .actie .tags, .acties .actie-column .actie .gform_wrapper .field_sublabel_below .ginput_complex.ginput_container .tags, .gform_wrapper .field_sublabel_below .ginput_complex.ginput_container .gallery > .gallery-item .gallery-caption, .gallery > .gallery-item .gform_wrapper .field_sublabel_below .ginput_complex.ginput_container .gallery-caption, .gform_wrapper .field_sublabel_below div[class*=gfield_date_].ginput_container label, .gform_wrapper .field_sublabel_below div[class*=gfield_date_].ginput_container .content .inner-content figure figcaption, .content .inner-content figure .gform_wrapper .field_sublabel_below div[class*=gfield_date_].ginput_container figcaption, .gform_wrapper .field_sublabel_below div[class*=gfield_date_].ginput_container .content .inner-content .date, .content .inner-content .gform_wrapper .field_sublabel_below div[class*=gfield_date_].ginput_container .date, .gform_wrapper .field_sublabel_below div[class*=gfield_date_].ginput_container .mini-button, .gform_wrapper .field_sublabel_below div[class*=gfield_date_].ginput_container .filter-button, .gform_wrapper .field_sublabel_below div[class*=gfield_date_].ginput_container .acties .actie-column .actie .tags, .acties .actie-column .actie .gform_wrapper .field_sublabel_below div[class*=gfield_date_].ginput_container .tags, .gform_wrapper .field_sublabel_below div[class*=gfield_date_].ginput_container .gallery > .gallery-item .gallery-caption, .gallery > .gallery-item .gform_wrapper .field_sublabel_below div[class*=gfield_date_].ginput_container .gallery-caption, .gform_wrapper .field_sublabel_below div[class*=gfield_time_].ginput_container label, .gform_wrapper .field_sublabel_below div[class*=gfield_time_].ginput_container .content .inner-content figure figcaption, .content .inner-content figure .gform_wrapper .field_sublabel_below div[class*=gfield_time_].ginput_container figcaption, .gform_wrapper .field_sublabel_below div[class*=gfield_time_].ginput_container .content .inner-content .date, .content .inner-content .gform_wrapper .field_sublabel_below div[class*=gfield_time_].ginput_container .date, .gform_wrapper .field_sublabel_below div[class*=gfield_time_].ginput_container .mini-button, .gform_wrapper .field_sublabel_below div[class*=gfield_time_].ginput_container .filter-button, .gform_wrapper .field_sublabel_below div[class*=gfield_time_].ginput_container .acties .actie-column .actie .tags, .acties .actie-column .actie .gform_wrapper .field_sublabel_below div[class*=gfield_time_].ginput_container .tags, .gform_wrapper .field_sublabel_below div[class*=gfield_time_].ginput_container .gallery > .gallery-item .gallery-caption, .gallery > .gallery-item .gform_wrapper .field_sublabel_below div[class*=gfield_time_].ginput_container .gallery-caption {
  font-size: .7rem !important;
}

/* line 1358, scss/stylesheet.scss */
body .gform_wrapper li.gfield.field_description_below + li.gsection {
  margin-top: 2rem !important;
}

/* line 1361, scss/stylesheet.scss */
.gform_wrapper .field_sublabel_below .ginput_complex.ginput_container label, .gform_wrapper .field_sublabel_below .ginput_complex.ginput_container .content .inner-content figure figcaption, .content .inner-content figure .gform_wrapper .field_sublabel_below .ginput_complex.ginput_container figcaption, .gform_wrapper .field_sublabel_below .ginput_complex.ginput_container .content .inner-content .date, .content .inner-content .gform_wrapper .field_sublabel_below .ginput_complex.ginput_container .date, .gform_wrapper .field_sublabel_below .ginput_complex.ginput_container .mini-button, .gform_wrapper .field_sublabel_below .ginput_complex.ginput_container .filter-button, .gform_wrapper .field_sublabel_below .ginput_complex.ginput_container .acties .actie-column .actie .tags, .acties .actie-column .actie .gform_wrapper .field_sublabel_below .ginput_complex.ginput_container .tags, .gform_wrapper .field_sublabel_below .ginput_complex.ginput_container .gallery > .gallery-item .gallery-caption, .gallery > .gallery-item .gform_wrapper .field_sublabel_below .ginput_complex.ginput_container .gallery-caption {
  text-transform: none;
  opacity: 1;
  letter-spacing: 0;
  font-family: ATSurt, sans-serif;
}

/* line 1367, scss/stylesheet.scss */
.gform_wrapper .description, .gform_wrapper .gfield_description, .gform_wrapper .gsection_description, .gform_wrapper .instruction {
  font-size: 0.7rem !important;
}

/* line 1370, scss/stylesheet.scss */
.gform_wrapper .field_description_below .gfield_description {
  padding-top: .25rem !important;
}

/* line 1373, scss/stylesheet.scss */
.gform_wrapper .field_sublabel_above .description, .gform_wrapper .field_sublabel_above .gfield_description, .gform_wrapper .field_sublabel_above .gsection_description {
  margin-top: 0 !important;
}

/* line 1376, scss/stylesheet.scss */
body .gform_wrapper .top_label div.ginput_container {
  line-height: 1 !important;
}

/* line 1379, scss/stylesheet.scss */
.ginput_container_fileupload {
  font-size: .7rem !important;
}
/* line 1380, scss/stylesheet.scss */
.ginput_container_fileupload span {
  margin-top: .5rem !important;
  display: block !important;
}

/* line 1386, scss/stylesheet.scss */
.gform_wrapper div.validation_error {
  color: #fff !important;
  background-color: #FF3C3C !important;
  border-color: #FF3C3C !important;
}

/* line 1391, scss/stylesheet.scss */
.gform_wrapper .validation_message {
  color: #FF3C3C !important;
  font-weight: normal !important;
  font-size: .7rem !important;
}

/* line 1396, scss/stylesheet.scss */
.gform_wrapper li.gfield.gfield_error, .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
  background: none !important;
  border: none !important;
}

/* line 1400, scss/stylesheet.scss */
.gform_wrapper li.gfield_error div.ginput_complex.ginput_container label, .gform_wrapper li.gfield_error div.ginput_complex.ginput_container .content .inner-content figure figcaption, .content .inner-content figure .gform_wrapper li.gfield_error div.ginput_complex.ginput_container figcaption, .gform_wrapper li.gfield_error div.ginput_complex.ginput_container .content .inner-content .date, .content .inner-content .gform_wrapper li.gfield_error div.ginput_complex.ginput_container .date, .gform_wrapper li.gfield_error div.ginput_complex.ginput_container .mini-button, .gform_wrapper li.gfield_error div.ginput_complex.ginput_container .filter-button, .gform_wrapper li.gfield_error div.ginput_complex.ginput_container .acties .actie-column .actie .tags, .acties .actie-column .actie .gform_wrapper li.gfield_error div.ginput_complex.ginput_container .tags, .gform_wrapper li.gfield_error div.ginput_complex.ginput_container .gallery > .gallery-item .gallery-caption, .gallery > .gallery-item .gform_wrapper li.gfield_error div.ginput_complex.ginput_container .gallery-caption, .gform_wrapper li.gfield_error ul.gfield_checkbox, .gform_wrapper li.gfield_error ul.gfield_radio {
  color: #FF3C3C !important;
}

/* line 1403, scss/stylesheet.scss */
.gform_wrapper li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), .gform_wrapper li.gfield_error textarea {
  border-color: #FF3C3C !important;
  border-width: 2px !important;
}

/* line 1408, scss/stylesheet.scss */
.gform_wrapper .gfield_error .gfield_description,
.gform_wrapper .gfield_error .gfield_label {
  color: #FF3C3C !important;
  opacity: 1 !important;
}

/* line 1417, scss/stylesheet.scss */
.home-intro .side-intro .logo-container {
  position: relative;
  padding: 1rem;
}
/* line 1420, scss/stylesheet.scss */
.home-intro .side-intro .logo-container img {
  position: relative;
  z-index: 2;
}
/* line 1424, scss/stylesheet.scss */
.home-intro .side-intro .logo-container:after {
  background: #FF3C3C;
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  mix-blend-mode: multiply;
}
/* line 1439, scss/stylesheet.scss */
.home-intro .news {
  position: relative;
}
/* line 1441, scss/stylesheet.scss */
.home-intro .news .news-inner {
  padding: 4rem 1rem 1rem 3rem;
}
/* line 1445, scss/stylesheet.scss */
.home-intro .news .news-item {
  margin-bottom: 2rem;
  display: flex;
}
/* line 1447, scss/stylesheet.scss */
.home-intro .news .news-item:hover {
  color: #FF3C3C;
}
/* line 1452, scss/stylesheet.scss */
.home-intro .news .news-item img {
  width: 100px;
  height: 100px;
  margin-right: 1rem;
}
/* line 1457, scss/stylesheet.scss */
.home-intro .news .news-item h3 {
  font-size: 1.5rem;
  margin-bottom: .5rem;
}
/* line 1460, scss/stylesheet.scss */
.home-intro .news .news-item h3 a {
  text-decoration: none;
}
/* line 1466, scss/stylesheet.scss */
.home-intro .side-image {
  display: none;
  margin-top: 1.5rem;
  flex-grow: 1;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

/* line 1478, scss/stylesheet.scss */
.home-intro .side-intro {
  width: 100%;
  max-width: 600px;
  position: relative;
}
/* line 1483, scss/stylesheet.scss */
.home-intro .side-intro .logo-container {
  width: 40%;
}
/* line 1486, scss/stylesheet.scss */
.home-intro .side-intro .logo-container:after {
  width: 150%;
}
/* line 1490, scss/stylesheet.scss */
.home-intro .side-intro .side-image-alt {
  width: 60%;
  position: absolute;
  top: .5rem;
  left: 40%;
  height: 40vw;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  background-size: cover;
  background-repeat: no-repeat;
}
/* line 1503, scss/stylesheet.scss */
.home-intro .side-image {
  display: block;
}
/* line 1508, scss/stylesheet.scss */
.home-intro .news .news-item h3 {
  font-size: 1rem;
}
/* line 1511, scss/stylesheet.scss */
.home-intro .news .news-item img {
  width: 50px;
  height: 50px;
}

/* line 1521, scss/stylesheet.scss */
.home-map {
  padding: 1rem 0;
  position: relative;
}
/* line 1524, scss/stylesheet.scss */
.home-map #map {
  height: 70vh;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  -moz-transition: width 1s ease-in-out;
  -o-transition: width 1s ease-in-out;
  -webkit-transition: width 1s ease-in-out;
  transition: width 1s ease-in-out;
}
/* line 1532, scss/stylesheet.scss */
.home-map.interacted-with .map-container {
  padding: 0 2.75rem;
}
/* line 1535, scss/stylesheet.scss */
.home-map.interacted-with #map {
  width: 100%;
}
/* line 1539, scss/stylesheet.scss */
.home-map .reset {
  display: none;
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 50%;
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  background-color: #000;
  color: #fff;
  padding: .5rem;
  z-index: 100;
}
/* line 1541, scss/stylesheet.scss */
.home-map .reset.on {
  display: inline-block;
}
/* line 1554, scss/stylesheet.scss */
.home-map h2 {
  font-size: 2rem;
  text-align: center;
  max-width: 80%;
  margin: 2rem auto;
  line-height: 1;
}
/* line 1561, scss/stylesheet.scss */
.home-map .map-container {
  position: relative;
}
/* line 1564, scss/stylesheet.scss */
.home-map .filters {
  position: absolute;
  z-index: 2;
  width: 100%;
  left: 0%;
  bottom: 2rem;
  padding: 1rem;
  text-align: center;
}
/* line 1572, scss/stylesheet.scss */
.home-map .filters ul {
  list-style: none;
  display: inline-block;
}
/* line 1575, scss/stylesheet.scss */
.home-map .filters ul li {
  display: inline-block;
  cursor: default;
}
/* line 1578, scss/stylesheet.scss */
.home-map .filters ul li:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

@media (max-width: 512px) {
  /* line 1589, scss/stylesheet.scss */
  .home-map #map {
    width: 100%;
  }
}
@media (min-width: 513px) and (max-width: 1024px) {
  /* line 1595, scss/stylesheet.scss */
  .home-map {
    padding: 2rem 0;
  }
  /* line 1598, scss/stylesheet.scss */
  .home-map #map {
    width: 512px;
  }
}
@media (min-width: 1025px) and (max-width: 2048px) {
  /* line 1604, scss/stylesheet.scss */
  .home-map {
    padding: 4rem 0;
  }
  /* line 1607, scss/stylesheet.scss */
  .home-map #map {
    width: 1024px;
  }
}
@media (min-width: 2048px) {
  /* line 1613, scss/stylesheet.scss */
  .home-map {
    padding: 4rem 0;
  }
  /* line 1616, scss/stylesheet.scss */
  .home-map #map {
    width: 2048px;
  }
}
/* line 1623, scss/stylesheet.scss */
.follow-us {
  background: #FF3C3C;
  width: 100%;
  padding: 2rem 2rem;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/* line 1628, scss/stylesheet.scss */
.follow-us h3 {
  text-align: center;
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 2rem;
}
/* line 1634, scss/stylesheet.scss */
.follow-us label, .follow-us .content .inner-content figure figcaption, .content .inner-content figure .follow-us figcaption, .follow-us .content .inner-content .date, .content .inner-content .follow-us .date, .follow-us .mini-button, .follow-us .filter-button, .follow-us .acties .actie-column .actie .tags, .acties .actie-column .actie .follow-us .tags, .follow-us .gallery > .gallery-item .gallery-caption, .gallery > .gallery-item .follow-us .gallery-caption {
  margin-bottom: 1rem;
}
/* line 1637, scss/stylesheet.scss */
.follow-us .columns {
  max-width: 800px;
  margin: 0 auto;
}
/* line 1642, scss/stylesheet.scss */
.follow-us .social-menu li {
  margin-bottom: .5rem;
  font-size: 1.5rem;
}
/* line 1645, scss/stylesheet.scss */
.follow-us .social-menu li a {
  text-decoration: none;
}
/* line 1651, scss/stylesheet.scss */
.follow-us .newsletter .field {
  margin-bottom: 1rem;
}
/* line 1654, scss/stylesheet.scss */
.follow-us .newsletter input {
  border-bottom-color: #000;
  color: #000;
  font-size: .8rem;
}
/* line 1658, scss/stylesheet.scss */
.follow-us .newsletter input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
/* line 1661, scss/stylesheet.scss */
.follow-us .newsletter input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
/* line 1664, scss/stylesheet.scss */
.follow-us .newsletter input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
/* line 1667, scss/stylesheet.scss */
.follow-us .newsletter input:-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

/* line 1676, scss/stylesheet.scss */
.donate-actie {
  padding: 4rem 0;
  position: relative;
}
/* line 1679, scss/stylesheet.scss */
.donate-actie h2 {
  font-size: 2rem;
  padding: 0 2rem;
  max-width: 800px;
  margin: 0 auto;
  color: #FF3C3C;
  margin-bottom: 2rem;
  line-height: 1.1;
  text-align: center;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/* line 1690, scss/stylesheet.scss */
.donate-actie .donate-form-actie {
  background: #F4F5F6;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem;
}
/* line 1695, scss/stylesheet.scss */
.donate-actie .donate-form-actie h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
/* line 1699, scss/stylesheet.scss */
.donate-actie .donate-form-actie .gform_wrapper {
  padding: 0 !important;
  background: transparent !important;
}
/* line 1703, scss/stylesheet.scss */
.donate-actie .donate-form-actie .donatie-form {
  width: 100%;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #000;
}
/* line 1709, scss/stylesheet.scss */
.donate-actie .donate-form-actie .share-on-social {
  width: 100%;
}

/* line 1718, scss/stylesheet.scss */
.share-box .button {
  margin-bottom: 1rem;
}

/* line 1723, scss/stylesheet.scss */
.about {
  padding: 4rem 0;
  color: #FF3C3C;
  position: relative;
}
/* line 1727, scss/stylesheet.scss */
.about h2 {
  font-size: 2rem;
  padding: 0 2rem;
  line-height: 1.1;
  text-align: center;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/* line 1734, scss/stylesheet.scss */
.about p {
  font-size: 1rem;
  max-width: 1000px;
  width: 100%;
  padding: 1rem 3rem;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  line-height: 1.3;
  text-align: left;
}
/* line 1743, scss/stylesheet.scss */
.about p .read-more {
  font-size: 1rem;
  color: #000;
}

/* line 1750, scss/stylesheet.scss */
.donate {
  margin-bottom: 4rem;
  min-height: 40vh;
}
/* line 1753, scss/stylesheet.scss */
.donate .side-text {
  padding: 4rem;
  position: relative;
}
/* line 1757, scss/stylesheet.scss */
.donate .side-text p {
  font-size: 1.5rem;
}
/* line 1760, scss/stylesheet.scss */
.donate .side-text:after {
  margin-top: 1.5rem;
  background: #FF3C3C;
  content: '';
  width: 150%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -50%;
  z-index: 1;
  mix-blend-mode: multiply;
}
/* line 1772, scss/stylesheet.scss */
.donate .side-text .button {
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}
/* line 1776, scss/stylesheet.scss */
.donate .side-text .button:hover {
  background-color: #000;
  color: #FF3C3C;
}
/* line 1779, scss/stylesheet.scss */
.donate .side-text .button:hover:before, .donate .side-text .button:hover:after {
  background-color: #000;
}
/* line 1783, scss/stylesheet.scss */
.donate .side-text .button:hover span {
  -webkit-text-stroke: 1px #FF3C3C;
  color: transparent;
}
/* line 1791, scss/stylesheet.scss */
.donate .side-image {
  position: relative;
  flex-grow: 1;
  height: 50vh;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin-bottom: 1.5rem;
}
/* line 1802, scss/stylesheet.scss */
.donate .side-image label, .donate .side-image .content .inner-content figure figcaption, .content .inner-content figure .donate .side-image figcaption, .donate .side-image .content .inner-content .date, .content .inner-content .donate .side-image .date, .donate .side-image .mini-button, .donate .side-image .filter-button, .donate .side-image .acties .actie-column .actie .tags, .acties .actie-column .actie .donate .side-image .tags, .donate .side-image .gallery > .gallery-item .gallery-caption, .gallery > .gallery-item .donate .side-image .gallery-caption {
  position: absolute;
  top: 100%;
  padding: .5rem 2rem;
}
/* line 1806, scss/stylesheet.scss */
.donate .side-image label a, .donate .side-image .content .inner-content figure figcaption a, .content .inner-content figure .donate .side-image figcaption a, .donate .side-image .content .inner-content .date a, .content .inner-content .donate .side-image .date a, .donate .side-image .mini-button a, .donate .side-image .filter-button a, .donate .side-image .acties .actie-column .actie .tags a, .acties .actie-column .actie .donate .side-image .tags a, .donate .side-image .gallery > .gallery-item .gallery-caption a, .gallery > .gallery-item .donate .side-image .gallery-caption a {
  text-decoration: none;
}

/* line 1814, scss/stylesheet.scss */
footer {
  text-align: center;
  background: #000;
  color: #fff;
  min-height: 200px;
  flex-shrink: 0;
  position: relative;
  z-index: 0;
  font-size: .8rem;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 3rem 2rem;
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
}
/* line 1828, scss/stylesheet.scss */
footer .logo img,
footer .logo svg {
  width: 60%;
  max-width: 200px;
  height: auto;
}
/* line 1837, scss/stylesheet.scss */
footer ul li a {
  text-decoration: none;
}
/* line 1842, scss/stylesheet.scss */
footer .columns {
  width: 100%;
  margin: 0 auto;
}
/* line 1846, scss/stylesheet.scss */
footer h5 {
  font-size: .8rem;
}
/* line 1850, scss/stylesheet.scss */
footer .newsletter form {
  width: 100%;
}
/* line 1854, scss/stylesheet.scss */
footer .newsletter .field {
  margin-bottom: 1rem;
}
/* line 1857, scss/stylesheet.scss */
footer .newsletter .button {
  font-size: .8rem;
}
/* line 1860, scss/stylesheet.scss */
footer .newsletter input {
  border-bottom-color: #fff;
  color: #fff;
  font-size: .8rem;
}
/* line 1864, scss/stylesheet.scss */
footer .newsletter input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
/* line 1867, scss/stylesheet.scss */
footer .newsletter input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
/* line 1870, scss/stylesheet.scss */
footer .newsletter input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
/* line 1873, scss/stylesheet.scss */
footer .newsletter input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
/* line 1878, scss/stylesheet.scss */
footer .payoff {
  margin: 0;
  padding: 0;
  font-size: 0;
  width: 70px;
  height: 70px;
  position: absolute;
  bottom: 0;
  right: 0;
}
/* line 1884, scss/stylesheet.scss */
footer .payoff .layer {
  pointer-events: none;
  background: url(../img/payoff_layer_2.png) no-repeat 0% 0%;
  width: 100%;
  height: 100%;
  background-size: 200%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  -moz-animation: rollin;
  -webkit-animation: rollin;
  animation: rollin;
  -moz-animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -moz-animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}
/* line 1898, scss/stylesheet.scss */
footer .payoff img,
footer .payoff svg {
  width: 100%;
  height: auto;
}
/* line 1904, scss/stylesheet.scss */
footer .payoff .base {
  position: relative;
  background-color: #fff;
  z-index: 1;
}

/* line 1916, scss/stylesheet.scss */
.gallery {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-flow: row wrap;
  margin-bottom: 2rem;
}
/* line 1922, scss/stylesheet.scss */
.gallery > br {
  display: none;
}
/* line 1925, scss/stylesheet.scss */
.gallery > .gallery-item {
  width: 47%;
  margin-bottom: 1rem;
}
/* line 1929, scss/stylesheet.scss */
.gallery > .gallery-item img {
  width: 100%;
  height: auto;
}

@keyframes rollin {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}
@media (min-width: 768px) {
  /* line 1955, scss/stylesheet.scss */
  .gallery > .gallery-item {
    width: 23%;
  }

  /* line 1961, scss/stylesheet.scss */
  h1 {
    font-size: 3rem;
  }

  /* line 1964, scss/stylesheet.scss */
  .menu-toggle {
    padding: 1rem 2rem;
  }

  /* line 1967, scss/stylesheet.scss */
  header {
    display: block;
  }
  /* line 1969, scss/stylesheet.scss */
  header .primary {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  /* line 1976, scss/stylesheet.scss */
  header .menu-toggle {
    position: relative;
    top: auto;
    right: auto;
  }
  /* line 1981, scss/stylesheet.scss */
  header .main-menu {
    padding: 0;
    padding-bottom: 7px;
  }
  /* line 1985, scss/stylesheet.scss */
  header .main-menu {
    display: block;
  }
  /* line 1987, scss/stylesheet.scss */
  header .main-menu li {
    display: inline-block;
    margin: 0 1rem;
  }
  /* line 1992, scss/stylesheet.scss */
  header .secondary-menu {
    display: block;
  }
  /* line 1994, scss/stylesheet.scss */
  header .secondary-menu li {
    display: inline-block;
    margin: 0 .5rem;
  }
  /* line 2001, scss/stylesheet.scss */
  header .secondary {
    -moz-transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
    -o-transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
    -webkit-transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  }
  /* line 2004, scss/stylesheet.scss */
  header .secondary .secondary-menu-columns {
    text-align: left;
  }

  /* line 2010, scss/stylesheet.scss */
  .home-intro {
    display: flex;
    flex-direction: row;
  }
  /* line 2013, scss/stylesheet.scss */
  .home-intro .side-intro {
    width: 40%;
  }
  /* line 2015, scss/stylesheet.scss */
  .home-intro .side-intro .logo-container {
    padding: 4rem;
    width: 100%;
  }
  /* line 2022, scss/stylesheet.scss */
  .home-intro .news .news-inner {
    padding: 4rem;
  }
  /* line 2026, scss/stylesheet.scss */
  .home-intro .side-image-alt {
    display: none;
  }

  /* line 2033, scss/stylesheet.scss */
  .follow-us h3 {
    font-size: 2rem;
    line-height: 1.1;
  }

  /* line 2040, scss/stylesheet.scss */
  .about h2,
  .home-map h2 {
    font-size: 4rem;
    line-height: 1;
  }

  /* line 2049, scss/stylesheet.scss */
  .donate-actie h3 {
    font-size: 4rem;
  }

  /* line 2055, scss/stylesheet.scss */
  .about p {
    font-size: 1.5rem;
  }

  /* line 2059, scss/stylesheet.scss */
  .donate {
    display: flex;
    flex-direction: row;
  }
  /* line 2062, scss/stylesheet.scss */
  .donate .side-text {
    width: 40%;
    max-width: 600px;
  }
  /* line 2066, scss/stylesheet.scss */
  .donate .side-text p {
    max-width: 300px;
  }
  /* line 2070, scss/stylesheet.scss */
  .donate .side-image {
    height: auto;
  }

  /* line 2, scss/_mixins.scss */
  .columns:after {
    content: '';
    display: block;
    clear: both;
  }
  /* line 2076, scss/stylesheet.scss */
  .columns .column {
    float: left;
    width: 50%;
    margin-bottom: 0rem;
  }
  /* line 2080, scss/stylesheet.scss */
  .columns .column.c-10 {
    width: 10%;
  }
  /* line 2083, scss/stylesheet.scss */
  .columns .column.c-15 {
    width: 15%;
  }
  /* line 2086, scss/stylesheet.scss */
  .columns .column.c-20 {
    width: 20%;
  }
  /* line 2089, scss/stylesheet.scss */
  .columns .column.c-25 {
    width: 25%;
  }
  /* line 2092, scss/stylesheet.scss */
  .columns .column.c-30 {
    width: 30%;
  }
  /* line 2095, scss/stylesheet.scss */
  .columns .column.c-35 {
    width: 35%;
  }
  /* line 2098, scss/stylesheet.scss */
  .columns .column.c-40 {
    width: 40%;
  }
  /* line 2101, scss/stylesheet.scss */
  .columns .column.c-50 {
    width: 50%;
  }
  /* line 2104, scss/stylesheet.scss */
  .columns .column.c-60 {
    width: 60%;
  }

  /* line 2110, scss/stylesheet.scss */
  .actie-header {
    display: flex;
  }
  /* line 2112, scss/stylesheet.scss */
  .actie-header .image-title {
    width: 70%;
  }
  /* line 2115, scss/stylesheet.scss */
  .actie-header .actie-info {
    width: 30%;
  }

  /* line 2121, scss/stylesheet.scss */
  .single-post .actie-header .image-title {
    width: 100%;
  }
  /* line 2123, scss/stylesheet.scss */
  .single-post .actie-header .image-title img {
    width: 75%;
  }
  /* line 2128, scss/stylesheet.scss */
  .single-post .actie-header.has-actie .image-title {
    width: 70%;
  }
  /* line 2130, scss/stylesheet.scss */
  .single-post .actie-header.has-actie .image-title img {
    width: 100%;
  }
  /* line 2134, scss/stylesheet.scss */
  .single-post .actie-header.has-actie .actie-info {
    width: 30%;
  }

  /* line 2143, scss/stylesheet.scss */
  .search-form input {
    max-width: 300px;
  }
  /* line 2148, scss/stylesheet.scss */
  .search-form .reset {
    margin-top: 0;
  }

  /* line 2153, scss/stylesheet.scss */
  .filter-options {
    height: auto;
  }
  /* line 2156, scss/stylesheet.scss */
  .filter-options .inner .part {
    width: 50%;
  }

  /* line 2163, scss/stylesheet.scss */
  .gform_wrapper {
    padding: 2rem 4rem !important;
  }
  /* line 2165, scss/stylesheet.scss */
  .gform_wrapper .gsection {
    margin: 0 -4rem !important;
    padding: 2rem 4rem 1rem 4rem !important;
  }
  /* line 2171, scss/stylesheet.scss */
  .gform_wrapper .gform_title {
    font-size: 2rem !important;
  }

  /* line 2179, scss/stylesheet.scss */
  .donate-actie .donate-form-actie {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  /* line 2185, scss/stylesheet.scss */
  .donate-actie .donate-form-actie .donatie-form {
    flex-grow: 0;
    width: 50%;
    padding-right: 4rem;
    border-right: 1px solid;
    padding-bottom: none;
    margin-bottom: none;
    border-bottom: none;
  }
  /* line 2196, scss/stylesheet.scss */
  .donate-actie .donate-form-actie .share-on-social {
    width: 50%;
    padding-left: 4rem;
  }

  /* line 2205, scss/stylesheet.scss */
  .donatie-container {
    display: flex;
  }
  /* line 2207, scss/stylesheet.scss */
  .donatie-container .donatie-form {
    flex-grow: 1;
    padding-right: 4rem;
  }
  /* line 2211, scss/stylesheet.scss */
  .donatie-container .reasons {
    margin-top: 0rem;
  }

  /* line 2215, scss/stylesheet.scss */
  footer {
    text-align: left;
  }
}
@media (min-width: 1024px) {
  /* line 2222, scss/stylesheet.scss */
  body,
  html {
    font-size: 18px;
  }

  /* line 2231, scss/stylesheet.scss */
  .acties .actie-column {
    padding: 2rem 0;
  }
  /* line 2234, scss/stylesheet.scss */
  .acties .actie-column h2 {
    font-size: 2rem;
  }

  /* line 2239, scss/stylesheet.scss */
  .content {
    padding: 2rem 4rem;
  }
  /* line 2241, scss/stylesheet.scss */
  .content .inner-content {
    max-width: 1000px;
    padding: 2rem 4rem;
  }
  /* line 2244, scss/stylesheet.scss */
  .content .inner-content .social {
    position: absolute;
    -moz-transform: translate(-120px, 0);
    -ms-transform: translate(-120px, 0);
    -webkit-transform: translate(-120px, 0);
    transform: translate(-120px, 0);
  }
  /* line 2250, scss/stylesheet.scss */
  .content .inner-content .update img {
    width: auto;
    height: auto;
  }
  /* line 2255, scss/stylesheet.scss */
  .content .inner-content .tabs {
    margin-top: calc(-4rem + 4px);
    margin-bottom: 2rem;
  }
  /* line 2258, scss/stylesheet.scss */
  .content .inner-content .tabs li {
    margin-right: 2rem;
  }

  /* line 2269, scss/stylesheet.scss */
  .home-intro .news .news-item img {
    width: 100px;
    height: 100px;
  }
  /* line 2274, scss/stylesheet.scss */
  .home-intro .news .news-item img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
  }
  /* line 2278, scss/stylesheet.scss */
  .home-intro .news .news-item:hover img {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
  }

  /* line 2290, scss/stylesheet.scss */
  .home-map.interacted-with .map-container {
    padding: 0 3.5rem;
  }

  /* line 2296, scss/stylesheet.scss */
  .side-label {
    font-size: 1.5rem;
    -moz-transform: rotate(-90deg) translate(-50%, 1rem);
    -ms-transform: rotate(-90deg) translate(-50%, 1rem);
    -webkit-transform: rotate(-90deg) translate(-50%, 1rem);
    transform: rotate(-90deg) translate(-50%, 1rem);
  }

  /* line 2304, scss/stylesheet.scss */
  footer {
    padding: 4rem 2rem;
  }
  /* line 2307, scss/stylesheet.scss */
  footer .columns {
    width: 100%;
  }

  /* line 2320, scss/stylesheet.scss */
  .pagination .page-numbers {
    padding: 2rem 1rem;
    font-size: 1.5rem;
  }
  /* line 2325, scss/stylesheet.scss */
  .pagination .page-numbers .pag {
    border-width: 2rem;
  }
}
@media (min-width: 1280px) {
  /* line 2337, scss/stylesheet.scss */
  body,
  html {
    font-size: 20px;
  }

  /* line 2342, scss/stylesheet.scss */
  header .main-menu {
    font-size: 1.5rem;
  }
  /* line 2347, scss/stylesheet.scss */
  header .secondary .secondary-menu-columns {
    width: 70%;
  }

  /* line 2355, scss/stylesheet.scss */
  .acties .actie-column {
    padding: 4rem 0;
  }
  /* line 2358, scss/stylesheet.scss */
  .acties .actie-column h2 {
    font-size: 3rem;
  }

  /* line 2367, scss/stylesheet.scss */
  .content .inner-content .social {
    -moz-transform: translate(-200px, 0);
    -ms-transform: translate(-200px, 0);
    -webkit-transform: translate(-200px, 0);
    transform: translate(-200px, 0);
  }

  /* line 2376, scss/stylesheet.scss */
  footer .columns {
    width: 70%;
  }
  /* line 2383, scss/stylesheet.scss */
  footer .payoff {
    width: 150px;
    height: 150px;
  }
}
/* line 2394, scss/stylesheet.scss */
.ie-edge .actie-header .image-title img {
  position: relative;
  z-index: 1;
}
/* line 2403, scss/stylesheet.scss */
.ie-edge .home-intro .side-intro .logo-container {
  position: relative;
  z-index: 0;
}
/* line 2406, scss/stylesheet.scss */
.ie-edge .home-intro .side-intro .logo-container:after {
  z-index: 0;
}
/* line 2410, scss/stylesheet.scss */
.ie-edge .home-intro .side-intro .logo-container svg {
  z-index: 1;
  position: relative;
}
/* line 2417, scss/stylesheet.scss */
.ie-edge .home-intro .side-image {
  position: relative;
  z-index: 10;
}
/* line 2423, scss/stylesheet.scss */
.ie-edge .donate .side-image {
  position: relative;
  z-index: 10;
}
/* line 2428, scss/stylesheet.scss */
.ie-edge .donate .side-text:after {
  z-index: -1;
}

/* line 2435, scss/stylesheet.scss */
.gm-style .gm-style-iw {
  padding: 1rem;
}
/* line 2437, scss/stylesheet.scss */
.gm-style .gm-style-iw p {
  font-size: .8rem;
  line-height: 1.3;
}

/* line 3, scss/_counter.scss */
.counter {
  padding: 4rem 0;
  /*margin: 4rem 0;*/
  background: #F4F5F6;
  text-align: center;
}
/* line 7, scss/_counter.scss */
.counter h2 {
  text-align: center;
}
/* line 11, scss/_counter.scss */
.counter .button {
  margin-top: 2rem;
}

/* line 15, scss/_counter.scss */
.clearfix {
  *zoom: 1;
}

/* line 18, scss/_counter.scss */
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
  line-height: 0;
}

/* line 24, scss/_counter.scss */
.clearfix:after {
  clear: both;
}

/* line 28, scss/_counter.scss */
.counter-wrapper {
  float: right;
  position: relative;
  left: -50%;
  margin-top: 20px;
}

/* line 34, scss/_counter.scss */
.flip-counter {
  position: relative;
  left: 50%;
  list-style-type: none;
}

/* line 39, scss/_counter.scss */
.flip-counter li {
  float: right;
}

/* line 42, scss/_counter.scss */
.no-csstransforms3d span.back {
  display: none;
}

/* line 45, scss/_counter.scss */
.flip-counter.default .digit {
  position: relative;
  z-index: 0;
  width: 60px;
  height: 90px;
  margin-left: 10px;
  background-color: black;
  text-align: center;
  line-height: 0;
  -webkit-text-stroke: 2px;
  -webkit-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.5);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

/* line 62, scss/_counter.scss */
.flip-counter.default .digit:last-child {
  margin-left: 0;
}

/* line 65, scss/_counter.scss */
.flip-counter.default .digit span {
  position: absolute;
  left: 0;
  height: 45px;
  width: 60px;
  overflow: hidden;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  font-size: 90px;
  font-family: ATSurtB, 'Ubuntu', sans-serif;
  font-weight: 700;
  text-indent: 2px;
  background-color: black;
  color: white;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* line 85, scss/_counter.scss */
.flip-counter.default .digit span.front {
  top: 0;
  padding-top: 45px;
}

/* line 89, scss/_counter.scss */
.flip-counter.default .digit span.back {
  bottom: 0;
}

/* line 92, scss/_counter.scss */
.flip-counter.default .digit .line {
  position: absolute;
  z-index: 10;
  height: 45px;
  width: 60px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.7);
  -webkit-box-shadow: 0px 5px 7px -4px rgba(0, 0, 0, 0.7);
  -moz-box-shadow: 0px 5px 7px -4px rgba(0, 0, 0, 0.7);
  box-shadow: 0px 5px 7px -4px rgba(0, 0, 0, 0.7);
}

/* line 102, scss/_counter.scss */
.flip-counter.default .digit .hingeX-wrap {
  z-index: 5;
  position: relative;
  overflow: visible;
  -webkit-perspective: 300px;
  -moz-perspective: 300px;
  -ms-perspective: 300px;
  perspective: 300px;
}

/* line 111, scss/_counter.scss */
.flip-counter.default .digit .hingeX {
  position: absolute;
  height: 45px;
  width: 60px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: -webkit-transform 0.3s ease-in;
  -moz-transition: -moz-transform 0.3s ease-in;
  transition: transform 0.3s ease-in;
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -o-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}

/* line 128, scss/_counter.scss */
.flip-counter.default .digit .hingeX span {
  height: 0;
  z-index: 5;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* line 136, scss/_counter.scss */
.flip-counter.default .digit .hingeX span.front {
  padding-top: 45px;
}

/* line 139, scss/_counter.scss */
.flip-counter.default .digit .hingeX span.back {
  height: 45px;
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

/* line 147, scss/_counter.scss */
.flip-counter.default .digit.animating .hingeX {
  -webkit-transform: rotateX(-180deg);
  -moz-transform: rotateX(-180deg);
  -ms-transform: rotateX(-180deg);
  -o-transform: rotateX(-180deg);
  transform: rotateX(-180deg);
}

/* line 154, scss/_counter.scss */
.flip-counter.default .digit-delimiter {
  padding-top: 38px;
  margin-right: -5px;
  font-family: ATSurtB, 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: 52px;
  color: black;
  text-indent: 3.33333333px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* line 164, scss/_counter.scss */
.flip-counter.light .digit {
  position: relative;
  z-index: 0;
  width: 60px;
  height: 90px;
  margin-left: 10px;
  background-color: #e8f1ff;
  text-align: center;
  line-height: 0;
  -webkit-text-stroke: 2px;
  -webkit-box-shadow: 1px 1px 5px 0px rgba(232, 241, 255, 0.5);
  -moz-box-shadow: 1px 1px 5px 0px rgba(232, 241, 255, 0.5);
  box-shadow: 1px 1px 5px 0px rgba(232, 241, 255, 0.5);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

/* line 181, scss/_counter.scss */
.flip-counter.light .digit:last-child {
  margin-left: 0;
}

/* line 184, scss/_counter.scss */
.flip-counter.light .digit span {
  position: absolute;
  left: 0;
  height: 45px;
  width: 60px;
  overflow: hidden;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  font-size: 90px;
  font-family: ATSurtB, 'Ubuntu', sans-serif;
  font-weight: 700;
  text-indent: 2px;
  background-color: #e8f1ff;
  color: white;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* line 204, scss/_counter.scss */
.flip-counter.light .digit span.front {
  top: 0;
  padding-top: 45px;
}

/* line 208, scss/_counter.scss */
.flip-counter.light .digit span.back {
  bottom: 0;
}

/* line 211, scss/_counter.scss */
.flip-counter.light .digit .line {
  position: absolute;
  z-index: 10;
  height: 45px;
  width: 60px;
  border-bottom: 1px solid rgba(232, 241, 255, 0.7);
  -webkit-box-shadow: 0px 5px 7px -4px rgba(232, 241, 255, 0.7);
  -moz-box-shadow: 0px 5px 7px -4px rgba(232, 241, 255, 0.7);
  box-shadow: 0px 5px 7px -4px rgba(232, 241, 255, 0.7);
}

/* line 221, scss/_counter.scss */
.flip-counter.light .digit .hingeX-wrap {
  z-index: 5;
  position: relative;
  overflow: visible;
  -webkit-perspective: 300px;
  -moz-perspective: 300px;
  -ms-perspective: 300px;
  perspective: 300px;
}

/* line 230, scss/_counter.scss */
.flip-counter.light .digit .hingeX {
  position: absolute;
  height: 45px;
  width: 60px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: -webkit-transform 0.3s ease-in;
  -moz-transition: -moz-transform 0.3s ease-in;
  transition: transform 0.3s ease-in;
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -o-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}

/* line 247, scss/_counter.scss */
.flip-counter.light .digit .hingeX span {
  height: 0;
  z-index: 5;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* line 255, scss/_counter.scss */
.flip-counter.light .digit .hingeX span.front {
  padding-top: 45px;
}

/* line 258, scss/_counter.scss */
.flip-counter.light .digit .hingeX span.back {
  height: 45px;
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

/* line 266, scss/_counter.scss */
.flip-counter.light .digit.animating .hingeX {
  -webkit-transform: rotateX(-180deg);
  -moz-transform: rotateX(-180deg);
  -ms-transform: rotateX(-180deg);
  -o-transform: rotateX(-180deg);
  transform: rotateX(-180deg);
}

/* line 273, scss/_counter.scss */
.flip-counter.light .digit-delimiter {
  padding-top: 38px;
  margin-right: -5px;
  font-family: ATSurtB, 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: 52px;
  color: #e8f1ff;
  text-indent: 3.33333333px;
  text-shadow: 1px 1px 5px rgba(232, 241, 255, 0.5);
}

/* line 283, scss/_counter.scss */
.flip-counter.small .digit {
  position: relative;
  z-index: 0;
  width: 30px;
  height: 40px;
  margin-left: 5px;
  background-color: black;
  text-align: center;
  line-height: 0;
  -webkit-text-stroke: 2px;
  -webkit-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.5);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

/* line 300, scss/_counter.scss */
.flip-counter.small .digit:last-child {
  margin-left: 0;
}

/* line 303, scss/_counter.scss */
.flip-counter.small .digit span {
  position: absolute;
  left: 0;
  height: 20px;
  width: 30px;
  overflow: hidden;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  font-size: 34px;
  font-family: ATSurtB, 'Ubuntu', sans-serif;
  font-weight: 700;
  text-indent: 2px;
  background-color: black;
  color: white;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* line 323, scss/_counter.scss */
.flip-counter.small .digit span.front {
  top: 0;
  padding-top: 20px;
}

/* line 327, scss/_counter.scss */
.flip-counter.small .digit span.back {
  bottom: 0;
}

/* line 330, scss/_counter.scss */
.flip-counter.small .digit .line {
  position: absolute;
  z-index: 10;
  height: 20px;
  width: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.7);
  -webkit-box-shadow: 0px 5px 7px -4px rgba(0, 0, 0, 0.7);
  -moz-box-shadow: 0px 5px 7px -4px rgba(0, 0, 0, 0.7);
  box-shadow: 0px 5px 7px -4px rgba(0, 0, 0, 0.7);
}

/* line 340, scss/_counter.scss */
.flip-counter.small .digit .hingeX-wrap {
  z-index: 5;
  position: relative;
  overflow: visible;
  -webkit-perspective: 300px;
  -moz-perspective: 300px;
  -ms-perspective: 300px;
  perspective: 300px;
}

/* line 349, scss/_counter.scss */
.flip-counter.small .digit .hingeX {
  position: absolute;
  height: 20px;
  width: 30px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: -webkit-transform 0.3s ease-in;
  -moz-transition: -moz-transform 0.3s ease-in;
  transition: transform 0.3s ease-in;
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -o-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}

/* line 366, scss/_counter.scss */
.flip-counter.small .digit .hingeX span {
  height: 0;
  z-index: 5;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* line 374, scss/_counter.scss */
.flip-counter.small .digit .hingeX span.front {
  padding-top: 20px;
}

/* line 377, scss/_counter.scss */
.flip-counter.small .digit .hingeX span.back {
  height: 20px;
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

/* line 385, scss/_counter.scss */
.flip-counter.small .digit.animating .hingeX {
  -webkit-transform: rotateX(-180deg);
  -moz-transform: rotateX(-180deg);
  -ms-transform: rotateX(-180deg);
  -o-transform: rotateX(-180deg);
  transform: rotateX(-180deg);
}

/* line 392, scss/_counter.scss */
.flip-counter.small .digit-delimiter {
  padding-top: 15px;
  margin-right: -2.5px;
  font-family: ATSurtB, 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: 25px;
  color: black;
  text-indent: 1.66666667px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* line 402, scss/_counter.scss */
.flip-counter.huge .digit {
  position: relative;
  z-index: 0;
  width: 140px;
  height: 200px;
  margin-left: 20px;
  background-color: black;
  text-align: center;
  line-height: 0;
  -webkit-text-stroke: 2px;
  -webkit-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.5);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

/* line 419, scss/_counter.scss */
.flip-counter.huge .digit:last-child {
  margin-left: 0;
}

/* line 422, scss/_counter.scss */
.flip-counter.huge .digit span {
  position: absolute;
  left: 0;
  height: 100px;
  width: 140px;
  overflow: hidden;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  font-size: 190px;
  font-family: ATSurtB, 'Ubuntu', sans-serif;
  font-weight: 700;
  text-indent: 2px;
  background-color: black;
  color: white;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* line 442, scss/_counter.scss */
.flip-counter.huge .digit span.front {
  top: 0;
  padding-top: 100px;
}

/* line 446, scss/_counter.scss */
.flip-counter.huge .digit span.back {
  bottom: 0;
}

/* line 449, scss/_counter.scss */
.flip-counter.huge .digit .line {
  position: absolute;
  z-index: 10;
  height: 100px;
  width: 140px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.7);
  -webkit-box-shadow: 0px 6px 7px -4px rgba(0, 0, 0, 0.7);
  -moz-box-shadow: 0px 6px 7px -4px rgba(0, 0, 0, 0.7);
  box-shadow: 0px 6px 7px -4px rgba(0, 0, 0, 0.7);
}

/* line 459, scss/_counter.scss */
.flip-counter.huge .digit .hingeX-wrap {
  z-index: 5;
  position: relative;
  overflow: visible;
  -webkit-perspective: 800px;
  -moz-perspective: 800px;
  -ms-perspective: 800px;
  perspective: 800px;
}

/* line 468, scss/_counter.scss */
.flip-counter.huge .digit .hingeX {
  position: absolute;
  height: 100px;
  width: 140px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: -webkit-transform 0.3s ease-in;
  -moz-transition: -moz-transform 0.3s ease-in;
  transition: transform 0.3s ease-in;
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -o-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}

/* line 485, scss/_counter.scss */
.flip-counter.huge .digit .hingeX span {
  height: 0;
  z-index: 5;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* line 493, scss/_counter.scss */
.flip-counter.huge .digit .hingeX span.front {
  padding-top: 100px;
}

/* line 496, scss/_counter.scss */
.flip-counter.huge .digit .hingeX span.back {
  height: 100px;
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

/* line 504, scss/_counter.scss */
.flip-counter.huge .digit.animating .hingeX {
  -webkit-transform: rotateX(-180deg);
  -moz-transform: rotateX(-180deg);
  -ms-transform: rotateX(-180deg);
  -o-transform: rotateX(-180deg);
  transform: rotateX(-180deg);
}

/* line 511, scss/_counter.scss */
.flip-counter.huge .digit-delimiter {
  padding-top: 130px;
  margin-right: -10px;
  font-family: ATSurtB, 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: 70px;
  color: black;
  text-indent: 6.66666667px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}
