/*
Theme Name: Mediplan
Theme URI: http://www.101media.nl
Version: 1.0
Description: Maatwerk WordPress thema.
Author: 101Media
Author URI: http://www.101media.nl
Tags: 101Media
*/
/* Coding by 101Media.nl */
/* ===================
=== NON-RESPONSIVE ===
=================== */
/* VARIABLES */
/* GENERAL */
body {
  font-family: "Lato", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  position: relative;
  max-width: 1400px;
}
article.contact form .form-group-custom:after{
	content: none !important;
}

a {
  cursor: pointer;
}

a:hover {
  text-decoration: none;
}

a:focus {
  outline: 0;
}

.nogutter {
  padding: 0;
  margin: 0 auto;
}

.clear {
  clear: both;
}

h1.center {
  text-align: center;
}

#swipebox-bottom-bar {
  bottom: 0px !important;
  -webkit-transform: translate3d(0, 0, 0) !important;
          transform: translate3d(0, 0, 0) !important;
}

#swipebox-overlay {
  background-color: rgba(0, 0, 0, 0.8);
}

.button {
  position: relative;
  overflow: hidden;
}

.button:before {
  content: "";
  -webkit-transition: all 300ms;
          transition: all 300ms;
  position: absolute;
  margin: auto;
  width: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: #f79d99;
}

.button:hover:before {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  article.frontpage #category-blocks .column {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

/* IE Fix for not respecting height of SVG's */
.ie9 img[src*=".svg"] {
  width: 100%;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  img[src*=".svg"] {
    width: 100%;
  }
}

@media print {
  body * {
    visibility: hidden;
  }
  #text-content, #text-content * {
    visibility: visible;
  }
  #text-content {
    position: absolute;
    left: 0;
    top: 0;
  }
  footer {
    display: none;
  }
  header {
    display: none;
  }
  #red-banner-page {
    display: none;
  }
  #advantages {
    display: none;
  }
  .splash {
    display: none;
  }
  .image {
    display: none;
  }
  .print-button {
    display: none;
  }
}

body .logged-in {
  display: none;
}

body.is-logged-in {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

body.is-logged-in .logged-in {
  display: list-item;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  display: block;
  width: 100%;
  z-index: 999;
  max-height: 100%;
  overflow: auto;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 2px 2px 0px rgba(50, 50, 50, 0.1);
}

header .logo img {
  padding: 15px;
  max-width: 150px;
}

header .navbar-toggle {
  margin-top: 26px;
}

header .navbar-toggle .icon-bars {
  display: none;
}

header .navbar-toggle .icon-bars .icon-bar {
  background-color: #f79d99;
}

header .navbar-toggle .menutext {
  font-size: 1.1em;
  color: #f79d99;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  padding-left: 32px;
}

header .navbar-toggle .menutext i {
  color: #f79d99;
  font-size: 1.7em;
  position: absolute;
  left: 0;
  top: -6px;
}

header .navbar-collapse {
  padding: 0;
}

header .menu {
  list-style: none;
  padding-left: 0;
  left: 0;
  margin: 0;
  border-bottom: 8px solid #1b93b0;
}

header .menu li {
  position: relative;
}

header .menu li a {
  padding: 7px 20px;
  font-weight: 900;
  display: block;
  color: #fff;
  background-color: #1daacc;
  border-bottom: 1px solid #1b93b0;
}

header .menu li.menu-item-has-children .dropdown {
  cursor: pointer;
  color: #fff;
  font-size: 1.3em;
  height: 30px;
  position: absolute;
  right: 20px;
  top: 6px;
}

header .menu li .sub-menu {
  border-bottom: 8px solid #ff8985;
  padding-left: 0;
  left: 0;
  margin: 0;
}

header .menu li .sub-menu li a {
  padding: 10px 20px;
  background-color: #f79d99;
  border-bottom: 1px solid #ff8985;
}

header .enroll-cta {
  display: none;
}

.splash {
  position: relative;
  height: 300px;
}

.splash .parallax {
  max-width: 1920px;
  margin: 0 auto;
  z-index: 0;
  position: fixed;
  height: 400px;
  background: url("images/headerimage.jpg") center center no-repeat;
  background-size: cover;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
}

.baby-banner {
  z-index: 2;
  height: 300px;
  position: absolute;
  width: 100%;
  overflow: hidden;
  left: 0;
  right: 0;
  top: -16px;
  margin: 0 auto;
/*   background: url("images/baby-2019.png?test") no-repeat center bottom; */
  background-size: 1050px auto;
  background-size: contain !important;
}

/* ALL PAGES */
article {
  background-color: #fff;
  position: relative;
  z-index: 1;
  padding: 30px 0 90px 0;
  margin-top: -31px;
}

article .divider {
  display: block;
  background-color: #f79d99;
  height: 2px;
  width: 120px;
}

article .divider.center {
  margin: 0 auto;
}

article a {
  color: #f79d99;
  -webkit-transition: all 300ms;
          transition: all 300ms;
}

article a:hover {
  color: #1daacc;
}

article #text-content {
  padding: 20px 0 50px 0;
}

article #text-content .inner-column {
  background-color: #f8f8f8;
  padding: 40px;
}

article #text-content h1 {
  font-family: "Merriweather", serif;
  font-size: 2em;
  margin: 0 0 15px 0;
  font-weight: 700;
  color: #848484;
}

article #text-content h2 {
  font-size: 1.1em;
  margin: 15px 0 0 0;
}

article #text-content h2 a {
  -webkit-transition: all 300ms;
          transition: all 300ms;
  color: #848484;
}

article #text-content h2 a:hover {
  color: #f79d99;
}

article #text-content .text {
  display: block;
  margin-top: 30px;
  color: #2c2c2c;
  font-size: 1.1em;
  line-height: 1.8em;
}

article #text-content .image {
  position: relative;
  width: 100%;
  background: center center no-repeat;
  background-size: cover;
  margin-top: 30px;
}

article #text-content .image a {
  //position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

article #red-banner-page {
  padding: 30px 0;
  text-align: center;
  background-color: #f79d99;
  background-size: 1500px auto;
}

article #red-banner-page h1 {
  color: #fff;
  font-family: "Courgette", cursive;
  margin: 0;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.7em;
  line-height: 1.3em;
}

article #advantages {
  padding: 60px 0 0 0;
}

article #advantages .inner-column.third {
  padding-bottom: 0;
}

article #advantages .inner-column.first .icon, article #advantages .inner-column.first .divider {
  background-color: #1daacc;
}

article #advantages .inner-column.second .icon {
  background-color: #f79d99;
}

article #advantages .inner-column.third .icon, article #advantages .inner-column.third .divider {
  background-color: #b7d167;
}

article #advantages .inner-column {
  text-align: center;
  padding-bottom: 50px;
}

article #advantages .inner-column .icon {
  position: relative;
  background-color: #aaa;
  border-radius: 500px;
  width: 85px;
  height: 85px;
  border: 6px solid #fff;
  box-shadow: 0 0 0 2px #8c8c8c;
  display: block;
  margin: auto;
}

article #advantages .inner-column .icon i {
  position: absolute;
  width: 38px;
  height: 42px;
  color: #fff;
  margin: auto;
  display: block;
  font-size: 2.5em;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

article #advantages .inner-column h1 {
  font-family: "Merriweather", serif;
  color: #848484;
  font-size: 2.3em;
  font-weight: 700;
  margin: 30px 0 15px 0;
}

article #advantages .inner-column span {
  color: #848484;
  font-size: 1.1em;
  display: block;
  margin: 15px 0 0 0;
}

article .requirements {
  list-style: circle;
  padding-left: 20px;
  left: 0;
  margin: 0;
}

article .print-button {
  padding: 5px 15px;
  margin-top: 25px;
  display: block;
  text-align: center;
  background-color: #f79d99;
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  border-radius: 5px;
  border: 0;
  width: 100%;
  max-width: 200px;
}

article .print-button:before {
  background-color: #ff8985;
  height: 4px;
  border-radius: 5px;
}

article .print-button:hover {
  color: #fff;
}

/* FRONTPAGE */
article.frontpage #entry-title {
  text-align: center;
  color: #848484;
}

article.frontpage #entry-title h1 {
  font-family: "Merriweather", serif;
  font-weight: 700;
  font-size: 2.1em;
  margin: 0 0 10px 0;
  line-height: 1.5em;
  font-weight: 700;
}

article.frontpage #entry-title h2 {
  font-size: 1.1em;
  line-height: 1.5em;
  margin: 10px 0 0 0;
}

article.frontpage #category-blocks {
  margin-top: 80px;
}

article.frontpage #category-blocks .inner-column.second, article.frontpage #category-blocks .inner-column.second .bottom-square {
  background-color: #f79d99;
}

article.frontpage #category-blocks .inner-column.third, article.frontpage #category-blocks .inner-column.third .bottom-square {
  background-color: #b7d167;
}

article.frontpage #category-blocks .inner-column {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 50px 20px 60px 20px;
  margin-bottom: 100px;
  background: #1daacc;
}

article.frontpage #category-blocks .inner-column .icon {
  border-radius: 500px;
  border: 6px solid #fff;
  background-color: #1daacc;
  top: -45px;
  left: 0;
  right: 0;
  width: 90px;
  height: 90px;
  position: absolute;
  margin: 0 auto;
}

article.frontpage #category-blocks .inner-column .icon i {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  color: #fff;
  width: 45px;
  height: 45px;
  font-size: 3em;
}

article.frontpage #category-blocks .inner-column h2 {
  z-index: 2;
  position: relative;
  font-family: "Merriweather", serif;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 2px;
  font-size: 1.6em;
}

article.frontpage #category-blocks .inner-column span {
  z-index: 2;
  position: relative;
  font-weight: 300;
  display: block;
  margin-bottom: 30px;
  font-size: 1.1em;
}

article.frontpage #category-blocks .inner-column a {
  z-index: 2;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  -webkit-transition: all 300ms;
          transition: all 300ms;
  color: #fff;
  letter-spacing: 0px;
  font-family: "Merriweather", serif;
}

article.frontpage #category-blocks .inner-column a:hover {
  letter-spacing: 2px;
}

article.frontpage #category-blocks .inner-column .bottom-square {
  z-index: 0;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: auto;
  width: 40px;
  height: 40px;
  background-color: #1daacc;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

article.frontpage #category-blocks .inner-column .background {
  background: url("images/category-blue.png") no-repeat center bottom;
  background-size: 200px auto;
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

article.frontpage #category-blocks .inner-column.second .background {
  background-image: url("images/category-red.png");
  opacity: .2;
}

article.frontpage #category-blocks .inner-column.third .background {
  background-image: url("images/category-green.png");
}

article.frontpage #red-banner {
  text-align: center;
  background-color: #f79d99;
  background-size: 1500px auto;
  color: #fff;
  padding: 30px 0;
  font-size: 1em;
  margin-bottom: 60px;
  margin-top: 60px;
  display: block;
}

article.frontpage #red-banner h1 {
  max-width: 600px;
  font-family: "Courgette", cursive;
  margin: 0 auto 5px auto;
  font-size: 2em;
  line-height: 1.3em;
}

article.frontpage #red-banner h2 {
  max-width: 500px;
  font-family: "Courgette", cursive;
  margin: 0 auto;
  font-size: 1.4em;
}

article.frontpage #red-banner a {
  color: #fff;
  background-color: #1daacc;
  padding: 10px 20px;
  display: inline-block;
  margin: 20px 0 0 0;
  text-transform: uppercase;
  font-weight: 900;
  border-radius: 5px;
}

article.frontpage #red-banner a:before {
  background-color: #1b93b0;
  height: 4px;
}

article.frontpage #advantages-list {
  display: block;
}

article.frontpage #advantages-list .inner-column {
  background-color: #f8f8f8;
  padding: 30px;
}

article.frontpage #advantages-list h1 {
  max-width: 400px;
  color: #848484;
  font-family: "Merriweather", serif;
  font-weight: 700;
  font-size: 2em;
  margin: 0 0 20px 0;
  line-height: 1.3em;
}

article.frontpage #advantages-list ul {
  display: block;
  list-style: none;
  left: 0;
  padding-left: 0;
  margin: 30px 0 0 0;
}

article.frontpage #advantages-list ul li {
  background: url("images/list-element.png") 0 5px no-repeat;
  background-size: 15px auto;
  padding: 0 0 8px 40px;
  font-size: 1.2em;
}

article.frontpage #advantages-list a {
  background-color: #1daacc;
  border-radius: 5px;
  text-transform: uppercase;
  margin: 30px 0 0 0;
  font-weight: 900;
  display: inline-block;
  color: #fff;
  padding: 13px 40px;
}

article.frontpage #advantages-list a:before {
  background-color: #1b93b0;
  height: 4px;
}

article.frontpage #advantages-list img {
  display: block;
  width: 500px;
  margin: 0 auto;
}

/* DOCUMENTS PAGE */
article.documents #text-content .inner-column {
  width: 100%;
}

article.documents #text-content .inner-column .text {
  max-width: 100%;
}

article.documents #text-content .inner-column .document-list {
  list-style: none;
  padding-left: 0;
  left: 0;
  margin: 0;
}

article.documents #text-content .inner-column .document-list li {
  float: left;
  width: 100%;
  vertical-align: top;
  margin-bottom: 10px;
}

article.documents #text-content .inner-column .document-list li a {
  display: block;
  color: #fff;
  background-color: #1daacc;
  padding: 15px 20px 15px 60px;
  position: relative;
  font-weight: 900;
  font-size: 1em;
  text-transform: uppercase;
  border-radius: 5px;
}

article.documents #text-content .inner-column .document-list li a:before {
  background-color: #1b93b0;
  height: 2px;
  -webkit-transition: all 700ms;
          transition: all 700ms;
}

article.documents #text-content .inner-column .document-list li a i {
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 1.7em;
}

article.login-page .loggedin-text {
  font-size: 1.3em;
  color: #5f5f5f;
  display: block;
}

article.login-page .loggedin-text.two {
  font-size: 1.1em;
  margin: 10px 0;
}

article.login-page .button {
  text-transform: uppercase;
  background-color: #f79d99;
  color: #fff;
  display: block;
  border-radius: 5px;
  font-weight: 900;
  padding: 7px 0;
  margin: 20px 0 0 0;
  width: 130px;
  text-align: center;
}

article.login-page .button:before {
  height: 4px;
  background-color: #ff8985;
}

article.login-page .login-form {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f1f1f1;
  border: 1px solid #ccc;
  border-radius: 5px;
}

article.login-page .login-form i {
  font-size: 10em;
  color: #f79d99;
  margin: 0 auto;
  width: 140px;
  display: block;
  line-height: 0.9em;
}

article.login-page .login-form label {
  display: block;
}

article.login-page .login-form input[type=text], article.login-page .login-form input[type=password] {
  display: block;
  width: 100%;
  border-radius: 3px;
  padding: 5px 15px;
  border: 1px solid #ccc;
}

article.login-page .login-form input[type=text].submit_error, article.login-page .login-form input[type=password].submit_error {
  border: 1px solid red;
}

article.login-page .login-form input:focus {
  outline: 0;
}

article.login-page .login-form input[type=submit] {
  -webkit-transition: all 300ms;
          transition: all 300ms;
  border: 0;
  background-color: #f79d99;
  padding: 5px 20px;
  color: #fff;
  border-radius: 5px;
}

article.login-page .login-form input[type=submit]:hover {
  background-color: #da453f;
}

article.login-page .login-form .login-error-message {
  color: #f79d99;
  font-weight: 700;
}

article.news {
  margin-top: -51px;
}

article.news #text-content .inner-column {
  width: 100%;
}

article.news #text-content .inner-column .divider {
  margin-bottom: 40px;
}

article.news #text-content .inner-column h2 {
  font-weight: 700;
  font-size: 1.2em;
  text-transform: uppercase;
  margin: 0;
  color: #848484;
}

article.news #text-content .inner-column h3 {
  font-weight: 700;
  font-size: 0.9em;
  text-transform: uppercase;
  margin: 15px 0 10px 0;
  color: #9e9e9e;
  display: inline-block;
}

article.news #text-content .inner-column i {
  display: inline-block;
  color: #9e9e9e;
  margin-right: 10px;
  font-size: 0.8em;
}

article.news #text-content .inner-column p {
  line-height: 1.8em;
}

article.news #text-content .inner-column .newsitem {
  margin-bottom: 50px;
}

/* CONTACT PAGE */
article.contact {
  /* padding-top: 250px; */
}

article.contact h2 {
  font-family: "Merriweather", serif;
  font-weight: 700;
  font-size: 1.3em;
  margin: 0 0 15px 0;
  color: #848484;
}

article.contact h3 {
  font-family: "Merriweather", serif;
  font-size: 1.3em;
  font-weight: 700;
  color: #f79d99;
  margin-top: 30px;
}

article.contact #facebook-section {
  padding: 70px 0;
  text-align: center;
  background: #f79d99 url("images/pattern.svg") repeat-x center center;
  background-size: 1500px auto;
}

article.contact #facebook-section .social-media a {
  font-size: 32px;
  color: #fff;
  padding: 0.5rem;
  transition: 0.1s;
}

article.contact #facebook-section .social-media a:hover {
  color: #1daacc;
}

article.contact #facebook-section .facebook-feed {
  margin-top: 20px;
  max-width: 500px;
  margin: 0 auto;
  width: 90%;
  overflow: hidden;
}

article.contact #facebook-section h1 {
  color: #fff;
  font-family: "Courgette", cursive;
  font-weight: 400;
  margin: 0 0 30px 0;
}

article.contact #text-content .inner-column.two {
  padding-top: 0;
}

article.contact .contact-form {
  margin-top: 15px;
}

article.contact form {
  /* .form-group:before { content: ""; display: block; position: absolute; top:0;left:0;right:0; height: 3px; border-width: 1px 1px 0 1px; border-style: solid; border-color: $main-blue; } */
}

article.contact form .form-group {
  position: relative;
  margin-bottom: 25px;
  z-index: 1;
}

article.contact form .form-group:after {
  -webkit-transition: all 300ms;
          transition: all 300ms;
  content: "";
  z-index: 2;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  border-width: 0 1px 1px 1px;
  border-style: solid;
  border-color: #1daacc;
}

article.contact form .form-group textarea {
  height: 150px;
}

article.contact form .form-group i {
  -webkit-transition: all 300ms;
          transition: all 300ms;
  position: absolute;
  bottom: 3px;
  left: 15px;
  color: #1daacc;
  font-size: 1.2em;
}

article.contact form .form-group .icon-bubble {
  top: 35px;
}

article.contact form .form-control {
  background-color: transparent;
  padding: 8px 15px 8px 45px;
  -webkit-transition: all 300ms;
          transition: all 300ms;
  border: 1px solid transparent;
  max-width: 100%;
  box-shadow: none;
  border-radius: 0;
}

.grecaptcha-badge{
	visibility: collapse !important;  
}

.wpcf7-form .wpcf7-field-group .row { width: 87%; float: left; }
.wpcf7-form .wpcf7-field-group p { width: 18%; float: left; padding-left: 30px; }
.wpcf7-form .wpcf7-field-group p button { transition: all 300ms; padding: 4px 15px; background-color: #1daacc; border-radius: 5px; border: 0; color: #fff; }
.wpcf7-form .wpcf7-field-group p button:first-child { margin-right: 3px; }

article.contact form .form-control.wpcf7-not-valid {
  border: 1px solid #f79d99;
}

article.contact form .form-control:focus {
  border: 1px solid #1daacc;
  box-shadow: none;
}

article.contact .contact-details {
  padding-left: 0;
  left: 0;
  list-style: none;
  margin-top: 10px;
}

article.contact .contact-details li {
  padding: 15px 0 15px 50px;
  font-size: 1.1em;
  position: relative;
}

article.contact .contact-details li:last-child {
  border-bottom: 0;
}

article.contact .contact-details li i {
  -webkit-transition: all 300ms;
          transition: all 300ms;
  color: #1daacc;
  font-size: 1.6em;
  position: absolute;
  left: 0;
  top: 13px;
}

article.contact .contact-details li a {
  color: #2c2c2c;
}

article.contact .contact-details li a:hover {
  color: #1daacc;
}

article.contact .contact-details li .icon-envelope {
  top: 11px;
}

article.contact .contact-details li .icon-map-marker {
  top: 21px;
}

article.contact .contact-details li .icon-btw {
  font-size: 2em;
  top: 8px;
}

#wpcf7-f238-p28-o1 {
  max-width: 600px;
}

#wpcf7-f238-p28-o1 label {
  margin-bottom: 5px;
  font-weight: 400;
}

#wpcf7-f238-p28-o1 .form-group {
  margin-bottom: 10px;
}

#wpcf7-f238-p28-o1 .form-group.short {
  width: 100px;
  display: inline-block;
}

#wpcf7-f238-p28-o1 .form-group.medium {
  width: 100%;
  width: -webkit-calc(100% - 104px);
  width: calc(100% - 104px);
  display: inline-block;
}

#wpcf7-f238-p28-o1 .btn-primary {
  margin-top: 15px;
}

#wpcf7-f238-p28-o1 .form-control:focus {
  border-color: #1daacc;
}

#wpcf7-f238-p28-o1 select {
  padding: 5px 10px;
  background-color: #fff;
  color: #1f1f1f;
}

#wpcf7-f238-p28-o1 input[type="radio"] {
  margin-top: 7px;
}

#wpcf7-f238-p28-o1 .radio .wpcf7-list-item {
  margin-right: 20px;
}

#wpcf7-f238-p28-o1 .radio label {
  padding-left: 10px;
}

div.wpcf7-response-output.wpcf7-mail-sent-ok {
  display: inline-block !important;
  margin: 0; padding: 15px 25px;
  border-radius: 5px;
  background-color: #b7d167;
  border: 0;
  color: #fff;
  
}

.wpcf7-submit { margin-bottom: 15px; }

.wpcf7-not-valid {
  border-color: red;
}

form span.wpcf7-not-valid-tip {
  display: none;
}

.btn-primary {
  content: "Verzend bericht";
  position: relative;
  -webkit-transition: all 300ms;
          transition: all 300ms;
  padding: 15px 25px 15px 65px;
  background-color: #1daacc;
  border-radius: 5px;
  border: 0;
}

.btn-primary:hover {
  background-color: #1b93b0;
}

.btn-primary:focus {
  background-color: #1daacc;
  outline: 0;
}

.btn-primary:before {
  color: #fff;
  position: absolute;
  left: 20px;
  top: 4px;
  font-size: 2em;
  font-family: mediplan;
  content: "k";
}

.btn-primary:after {
  padding: 25px 11px 11px 5px;
  -webkit-transition: all 300ms;
          transition: all 300ms;
  color: #fff;
  position: absolute;
  left: 59px;
  text-align: left;
  width: 120px;
  top: 9px;
  content: " ";
  height: 40px;
  opacity: 0;
}

.btn-primary.sent {
  padding: 15px 25px 15px 65px;
  background-color: #b7d167 !important;
}

.btn-primary.sent:hover {
  background-color: #b7d167 !important;
}

.btn-primary.sent:before {
  content: "i";
}

.btn-primary.sent:after {
  padding-top: 5px;
  content: "Verzonden!";
  opacity: 1;
  background-color: #b7d167;
}

.btn-primary.error {
  padding: 15px 55px 15px 65px;
  -webkit-animation: shake 0.5s;
          animation: shake 0.5s;
  background-color: #f79d99 !important;
}

.btn-primary.error:hover {
  background-color: #f79d99 !important;
}

.btn-primary.error:before {
  content: "j";
}

.btn-primary.error:after {
  padding-top: 5px;
  content: "Er is iets fout gegaan!";
  opacity: 1;
  background-color: #f79d99;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}

#map_canvas.contactpage {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  height: 200px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

#map_canvas.workfield {
  width: 100%;
  height: 400px;
  margin-top: 20px;
}

/* 404 */
article.nopagefound #text-content .inner-column {
  width: 100%;
  min-height: auto;
}

article.nopagefound #text-content .inner-column h1 {
  margin-bottom: 20px;
}

article.nopagefound #text-content .inner-column .text {
  margin-top: 10px;
}

/* Categorie pagina */
article.page-parent #text-content .inner-column {
  width: 100%;
}

article.page-parent #text-content .category-list {
  margin-top: 50px;
}

article.page-parent #text-content .category-list .category-icons {
  margin-bottom: 30px;
}

article.page-parent #text-content a {
  margin-bottom: 50px;
  display: block;
}

article.page-parent #text-content a:hover .icon {
  background-color: #fff;
}

article.page-parent #text-content a:hover .icon i {
  color: #aaa;
}

article.page-parent #text-content a .icon {
  -webkit-transition: all 300ms;
          transition: all 300ms;
  margin: 0 auto 20px auto;
  position: relative;
  background-color: #1daacc;
  border-radius: 500px;
  border: 4px solid #fff;
  width: 85px;
  height: 85px;
  box-shadow: 0 0 0 2px #8c8c8c;
}

article.page-parent #text-content a .icon i {
  color: #fff;
  font-size: 3em;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  margin: auto;
  height: 52px;
  width: 44px;
}

article.page-parent #text-content a .icon .icon-file242 {
  width: 35px;
}

article.page-parent #text-content a .icon .icon-file-text-o {
  width: 40px;
}

article.page-parent #text-content a .icon .icon-clock96 {
  width: 41px;
}

article.page-parent #text-content a h1 {
  color: #848484;
  text-align: center;
  font-size: 1.5em;
}

/* FOOTER */
footer {
  background-color: #fff;
  color: #fff;
  width: 100%;
  position: relative;
}

footer .top {
  padding: 50px 0 30px 0;
  background-color: #1daacc;
  position: relative;
}

footer .top .logo {
  z-index: 2;
  position: absolute;
  left: 0;
  right: 0;
  top: -40px;
  border-radius: 500px;
  background-color: #1daacc;
  border: 4px solid #fff;
  display: block;
  margin: 0 auto;
  width: 70px;
  height: 70px;
}

footer .top .logo i {
  font-size: 3em;
  position: absolute;
  margin: auto;
  width: 42px;
  height: 50px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

footer .top .border {
  position: absolute;
  left: 0;
  right: 0;
  top: -8px;
  height: 8px;
  background: url("images/spike-border.png") repeat-x;
  background-size: 22px auto;
  z-index: 1;
}

footer .top h1, footer .top h2 {
  text-align: center;
  margin: 0;
}

footer .top h1 {
  font-family: "Courgette", cursive;
  font-weight: 400;
  font-size: 1.5em;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

footer .top h2 {
  font-weight: 300;
  font-size: 1em;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

footer .top .col-inner.organisations {
  padding-bottom: 0;
}

footer .top .col-inner {
  padding-bottom: 50px;
  letter-spacing: 1.5px;
  line-height: 1.6em;
}

footer .top .col-inner a {
  color: #fff;
  -webkit-transition: all 300ms;
          transition: all 300ms;
}

footer .top .col-inner a:hover {
  color: #1788a3;
}

footer .top .col-inner ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
  left: 0;
}

footer .top .col-inner ul li .sub-menu {
  display: none;
}

footer .top .col-inner h3 {
  font-family: "Courgette", cursive;
  font-size: 1.3em;
  margin: 0 0 8px 0;
  letter-spacing: 2px;
}

footer .top .col-inner .line {
  height: 2px;
  width: 75px;
  background-color: #fff;
  display: block;
  margin-bottom: 30px;
}

footer .top .col-inner .desc {
  margin-bottom: 20px;
  display: block;
}

footer .top .col-inner .facebook {
  font-size: 2.5em;
  display: inline-block;
  margin-top: -3px;
}

footer .top .col-inner .facebook:hover {
  color: #3b5998;
}

footer .top .col-inner .org-logo img {
  width: 200px;
  height: auto;
  display: block;
  margin: 0 40px 20px 0;
  opacity: 1;
  -webkit-transition: all 300ms;
          transition: all 300ms;
  display: inline-block;
}

footer .top .col-inner .org-logo img:hover {
  opacity: 0.5;
}

footer .top .col-inner .org-logo.second img {
  width: 100px;
}

footer .top .col-inner .org-logo.third {
  margin-bottom: 0;
}

footer .top .col-inner .org-logo.fourth {
  margin-bottom: 0;
}

footer .top .col-inner .org-logo.fourth img {
  width: 100px;
}

footer .top .col-inner .org-logo.fifth {
  margin-bottom: 0;
}

footer .top .col-inner .org-logo.fifth img {
  width: 100px;
}

footer .top .newsletter form {
  color: #a0a0a0;
}

footer .top .newsletter form input[type=text] {
  background-color: #fff;
  border: 0;
  padding: 5px 10px;
  width: 100%;
  max-width: 200px;
  display: block;
  margin-bottom: 15px;
}

footer .top .newsletter *:focus {
  outline: 0;
}

footer .top .newsletter form button {
  padding: 7px 0;
  text-align: center;
  background-color: #f79d99;
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  border-radius: 5px;
  border: 0;
  width: 100%;
  max-width: 200px;
}

footer .top .newsletter form .button:before {
  background-color: #ff8985;
  height: 4px;
}

footer .middle ul {
  list-style: none;
  left: 0;
  padding-left: 0;
  margin: 0;
}

footer .middle ul li a {
  -webkit-transition: all 300ms;
          transition: all 300ms;
  background-color: #f79d99;
  display: block;
  padding: 15px 30px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 900;
}

footer .middle ul li:nth-child(3) a {
  background-color: #ff8985;
}

footer .middle ul li:nth-child(2) a {
  background-color: #ec7975;
}

footer .middle ul li a:hover {
  background-color: #ff6e69;
}

footer .bottom {
  background-color: #fff;
  color: #aaa;
  font-weight: 900;
  font-size: 1.1em;
}

footer .bottom ul {
  list-style: none;
  padding-left: 0;
  left: 0;
  margin: 0;
  padding: 10px 0;
}

footer .bottom ul li:first-child {
  color: #aaa;
  display: inline-block;
  padding: 5px 20px;
}

footer .bottom ul li a {
  -webkit-transition: all 300ms;
          transition: all 300ms;
  color: #aaa;
  display: inline-block;
  padding: 5px 20px;
}

footer .bottom ul li a:hover {
  color: #f79d99;
}

footer .bottom ul li a span {
  display: inline-block;
  vertical-align: middle;
}

footer .bottom ul li a i {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.3em;
  margin-left: 5px;
  line-height: 12px;
}

footer .bottom ul li:last-child a i {
  font-size: 1em;
  margin-left: 0;
  margin-right: 5px;
}

/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter, div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* ===================
=== RESPONSIVE     ===
=================== */
/* Smallest devices (phones (.col-xs-)) below 768px) */
/* Small devices (tablets (.col-sm-), 768px and up) */
@media screen and (min-width: 768px) {
  .sticky header .enroll-cta {
    margin-top: -150px;
  }
  .sticky header .logo img {
    max-width: 130px;
  }
  .sticky header .menu {
    margin-top: 35px;
  }
  header {
    overflow: visible;
  }
  header .menu {
    -webkit-transition: all 500ms;
            transition: all 500ms;
    border-bottom: 0;
    margin: 70px 15px 0 0;
    float: right;
  }
  header .menu li {
    float: left;
  }
  header .menu li a {
    -webkit-transition: all 300ms;
            transition: all 300ms;
    padding: 0 5px 30px 5px;
    min-width: 60px;
    text-align: center;
    display: inline-block;
    color: #000;
    background-color: transparent;
    font-size: 0.85em;
    border-bottom: 0;
    font-weight: 400;
  }
  header .menu li a:hover {
    color: #f79d99;
  }
  header .menu li a:before {
    position: absolute;
    right: 0;
    bottom: 18px;
    left: 0;
    -webkit-transition: all 300ms;
            transition: all 300ms;
    display: block;
    margin: 10px auto 0 auto;
    content: "";
    height: 2px;
    width: 0;
    background-color: #f79d99;
  }
  header .menu li a:hover:before {
    width: 45px;
  }
  header .menu li.menu-item-has-children a:after {
    -webkit-transition: all 300ms;
            transition: all 300ms;
    color: transparent;
    font-size: 1.8em;
    margin: auto;
    line-height: 0.4em;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
    width: 30px;
    font-family: mediplan;
    content: "b";
    display: block;
    text-transform: lowercase;
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
  }
  header .menu li.menu-item-has-children:hover a:after {
    color: #1daacc;
  }
  header .menu li.current-menu-item a, header .menu li.current-page-ancestor a {
    color: #f79d99;
  }
  header .menu li.current-menu-item a:before, header .menu li.current-page-ancestor a:before {
    width: 45px;
  }
  header .menu li.menu-item-has-children .dropdown {
    display: none;
  }
  header .menu li:hover .sub-menu {
    visibility: visible;
    opacity: 1;
    z-index: 2;
  }
  header .menu li .sub-menu {
    text-align: center;
    display: block !important;
    -webkit-transition: all 300ms;
            transition: all 300ms;
    border-bottom: 0;
    visibility: hidden;
    opacity: 0;
    padding-left: 0;
    left: 0;
    right: 0;
    margin: 0;
    background-color: rgba(29, 170, 204, 0.9);
    list-style: none;
    position: fixed;
  }
  header .menu li .sub-menu li {
    display: inline;
    float: none;
    margin-left: -3px;
  }
  header .menu li .sub-menu li a {
    font-style: italic;
    color: #fff;
    padding: 20px 20px;
    background-color: transparent;
    border-bottom: 0;
  }
  header .menu li .sub-menu li a:hover {
    color: #1788a3;
    background-color: rgba(255, 255, 255, 0.5);
  }
  header .menu li .sub-menu li a:before {
    display: none;
  }
  header .menu li .sub-menu li a:after {
    display: none;
  }
  header .logo img {
    max-width: 180px;
    -webkit-transition: all 500ms;
            transition: all 500ms;
  }
  header .enroll-cta {
    -webkit-transition: margin-top 500ms;
            transition: margin-top 500ms;
    display: inline-block;
    letter-spacing: 2px;
    position: absolute;
    right: 15px;
    top: -2px;
    font-weight: 900;
    color: #fff;
    padding: 10px 20px 12px 20px;
    background-color: #1daacc;
    border-radius: 0 0 5px 5px;
  }
  header .enroll-cta.zorgkaart {
    right: 160px;
  }
  header .enroll-cta:before {
    height: 4px;
    background-color: #1b93b0;
  }
  .splash {
    margin-top: 0;
    height: 350px;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
  }
  .splash .parallax {
    height: 450px;
  }
  .baby-banner {
    background-size: 1200px auto;
    height: 350px;
  }
  article {
    margin-top: -35px;
    padding-top: 35px;
  }
  .cutout {
    float: right;
    width: 36%;
  }
  article #text-content .inner-column {
    width: 90%;
    min-height: 400px;
  }
  article #text-content .inner-column .text {
    max-width: 100%;
  }
  article #text-content .inner-column .image {
    /* position: absolute;
    right: 15px;
    top: 50px;
    width: 40%;
    padding-bottom: 25%; */
    width: 130%;
    max-width: unset;
    padding-left: 10px;
  }
  article #red-banner-page h1 {
    font-size: 2.2em;
  }
  article #advantages .inner-column {
    padding-bottom: 0;
  }
  article #advantages .inner-column h1 {
    font-size: 1.7em;
  }
  article.frontpage #advantages-list .inner-column {
    max-width: 90%;
  }
  article.frontpage #advantages-list .inner-column img {
    position: absolute;
    right: 0;
    top: 100px;
    width: 45%;
  }
  article.documents #text-content .inner-column .document-list li {
    width: 49%;
    margin-right: 2%;
  }
  article.documents #text-content .inner-column .document-list li:nth-child(even) {
    margin-right: 0;
  }
  article.news {
    margin-top: -55px;
  }
  article.contact #text-content .inner-column {
    width: 100%;
  }
  article.contact #text-content .inner-column.two {
    padding-top: 40px;
  }
  article.page-parent #text-content .category-list {
    margin-bottom: -40px;
  }
  article.page-parent #text-content a {
    margin-bottom: 0;
  }
  article #advantages {
    padding: 90px 0 30px 0;
  }
  footer .top {
    padding: 50px 0 30px 0;
  }
  footer .top .col-inner.organisations {
    float: right;
  }
  footer .top h1 {
    font-size: 1.9em;
  }
  footer .top h2 {
    font-size: 1.2em;
    margin-bottom: 30px;
  }
  footer .top .col-inner .org-logo img {
    width: 150px;
  }
  footer .top .col-inner .org-logo.second img {
    width: 80px;
  }
  footer .middle ul li {
    float: left;
    width: 50%;
    text-align: center;
  }
  footer .middle ul li a {
    padding: 20px 0;
  }
  footer .bottom {
    padding: 10px 0;
  }
  footer .bottom ul {
    text-align: center;
  }
  footer .bottom ul li {
    display: inline;
  }
  footer .bottom ul li:first-child {
    border-right: 1px solid #aaa;
  }
  footer .bottom ul li a {
    border-right: 1px solid #aaa;
  }
  footer .bottom ul li:last-child a {
    border-right: 0;
  }
}

/* Medium devices (desktops (.col-md-), 992px and up) */
@media screen and (min-width: 992px) {
  header .menu li a {
    padding: 0 10px 30px 10px;
    font-size: 1.1em;
  }
  footer .middle ul li {
    float: left;
    width: 25%;
    text-align: center;
  }
  header .logo img {
    max-width: 200px;
  }
  article #advantages .inner-column h1 {
    font-size: 2.3em;
  }
  article.frontpage #advantages-list .inner-column {
    padding: 60px;
  }
  article #text-content .inner-column .image {
    /* padding-bottom: 20%; */
  }
  .cutout {
    float: right;
    width: 36%;
  }
  footer .top .col-inner {
    padding-bottom: 0;
  }
}

/* Large devices (large desktops (.col-lg-), 1200px and up) */
@media screen and (min-width: 1200px) {
  header .menu li a {
    padding: 0 15px 30px 15px;
    font-size: 1.15em;
  }
  .splash {
    height: 500px;
  }
  .splash .parallax {
    height: 600px;
  }
  .baby-banner {
    background-size: 1920px auto;
    height: 500px;
  }
  article {
    margin-top: -56px;
    padding-top: 55px;
  }
  article.frontpage #category-blocks .inner-column {
    padding: 50px 30px 60px 30px;
  }
  #category-blocks .column.first {
    padding-right: 95px;
  }
  #category-blocks .column.second {
    padding-right: 55px;
    padding-left: 55px;
  }
  #category-blocks .column.third {
    padding-left: 95px;
  }
  article.news {
    margin-top: -76px;
  }
  article.documents #text-content .inner-column .document-list li {
    margin-bottom: 20px;
  }
}


.zkn-widget-type-2 .zkn-widget-body .widget_content .fractional_number_circled sup, .zkn-widget-type-4 .zkn-widget-body .widget_content .fractional_number_circled sup {
  top: .3em !important;
}


@media screen and (max-width: 768px) { 
  article #text-content .inner-column {
    display: flex;
    flex-direction: column;
  }

  article #text-content .inner-column .cutout {
    order: 13;
  }
}

article #text-content .inner-column .image {
  min-height: 300px;
  object-fit: cover;
}

.werkgebied {
	max-width: 50%;
}

@media screen and (max-width: 768px) { 
	.werkgebied {
		max-width: 100%;
	}
}

.clear-both {
	clear: both;
}

.org-logo.fifth img {
  filter: invert(1) brightness(1);
}