html,
body {
  width: 100%;
  height: 100%;
}
html {
  overflow-y: scroll;
  overflow-x: auto;
  -webkit-text-size-adjust: 100%;
}
body {
  background-color: #fff;
  font-family: 'Maven Pro', Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 14px;
  text-align: left;
  color: #444;
  display: flex;
  flex-direction: column;
}


/* Fonts ---------------------------------------------------------------------------------------- */

/*
@font-face {
  font-family: 'Etelka Light Pro';
  src: url('../fonts/EtelkaLightPro.eot');
  src: url('../fonts/EtelkaLightPro.eot?#iefix') format('embedded-opentype'),
       url('../fonts/EtelkaLightPro.woff')       format('woff'),
       url('../fonts/EtelkaLightPro.ttf')        format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Etelka Medium Pro';
  src: url('../fonts/EtelkaMediumPro.eot');
  src: url('../fonts/EtelkaMediumPro.eot?#iefix') format('embedded-opentype'),
       url('../fonts/EtelkaMediumPro.woff')       format('woff'),
       url('../fonts/EtelkaMediumPro.ttf')        format('truetype');
  font-weight: normal;
  font-style: normal;
}
*/


/* General -------------------------------------------------------------------------------------- */

* {
  padding: 0;
  border: 0;
  outline: none;
  margin: 0;
}

a {
  text-decoration: underline;
  color: #444;
  cursor: pointer;
  transition: background-color 0.2s ease 0s, color 0.2s ease 0s;
}

h1, h2, h3, h4 {
  font-weight: normal;
  font-size: 14px;
}

strong {
  font-family: 'Maven Pro', Arial, Helvetica, sans-serif;
  font-weight: bold;
}

address {
  font-style: normal;
}

ul {
  list-style-type: none;
}

table {
  border-collapse: collapse;
}
table th,
table td {
  font-weight: normal;
  text-align: left;
  vertical-align: top;
}

label {
  cursor: pointer;
}
input,
textarea {
  font-family: 'Maven Pro', Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 16px;
  color: #444;
  outline: none;
  transition: background-color 0.2s ease 0s, color 0.2s ease 0s;
}
button {
  background-color: transparent;
  font-family: 'Maven Pro', Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 14px;
  color: #444;
  cursor: pointer;
  transition: background-color 0.2s ease 0s, color 0.2s ease 0s;
}

input,
textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
select {
  cursor: pointer;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
textarea {
  resize: none;
}


/* Messages ------------------------------------------------------------------------------------- */

.message {
  position: relative;
  line-height: 22px;
  padding: 8px 10px 8px 40px;
  border: 1px solid;
  border-radius: 4px;
  margin: 0 0 20px 0;
}
.message:before {
  width: 22px;
  height: 22px;
  display: block;
  position: absolute;
  top: 8px;
  left: 8px;
  font-family: 'FontAwesome';
  font-weight: normal;
  text-align: center;
  color: #fff;
  content: '\f12a';
  border-radius: 2px;
}

.message.error        { background-color: #fdf0f0; border-color: #d00; }
.message.error:before { background-color: #d00; }


/* Page container ------------------------------------------------------------------------------- */

#page_container {
  position: relative;
  flex: 1 0 auto;
}


/* Header --------------------------------------------------------------------------------------- */

#header_placeholder {
  height: 120px;
  display: block;
}

#header_container {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: #fff;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
#header {
  max-width: 960px;
  height: 120px;
  position: relative;
  margin: 0 auto 0 auto;
}

@media only screen and (max-height: 800px) {
  #header_placeholder {
    display: none;
  }
  #header_container {
    position: relative;
  }
}

/* Logo */
#logo {
  position: absolute;
  top: 15px;
  left: 25px;
}
#logo a {
  width: 155px;
  height: 90px;
  display: block;
  background-image: url('../images/logo_fitther.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
#logo span {
  display: none;
}

/* Menu */
#menu {
  position: absolute;
  top: 45px;
  right: 25px;
  display: block;
}
#menu ul li {
  float: left;
  position: relative;
  padding: 0 13px 0 0;
}
#menu ul li:last-child {
  padding-right: 0;
}
#menu ul a,
#menu ul span {
  display: block;
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  text-decoration: none;
  color: #1766a2;
  white-space: nowrap;
  padding: 0 0 3px 0;
  border-bottom: 2px solid transparent;
}
.no-touch #menu ul          a:hover,
          #menu ul          a:active,
.no-touch #menu ul          a:focus,
          #menu ul          span,
          #menu ul li.open  a,
          #menu ul li.open  span,
          #menu ul li.trail a,
          #menu ul li.trail span {
  border-bottom-color: #8fbf2e;
}
#menu ul li.sub a:after,
#menu ul li.sub span:after {
  font-family: 'FontAwesome';
  font-weight: normal;
  content: '\f107';
  margin: 0 0 0 5px;
}

/* Submenu */
#menu .submenu {
  position: absolute;
  top: 22px;
  left: -21px;
  display: none;
  padding: 20px 0 0 0;
}
#menu ul ul {
  background-color: #fff;
  /*
  background-color: rgba(255, 255, 255, 0.9);
  background-image: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0.25));
  */
  padding: 10px 0 10px 0;
  border: 1px solid #1766a2;
  border-radius: 4px;
}
#menu ul ul li {
  float: none;
  padding: 0;
}
#menu ul ul li a:after,
#menu ul ul li span:after {
  display: none !important;
}
#menu ul ul a,
#menu ul ul span {
  display: block;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  padding: 9px 40px 11px 20px;
  border: 0;
}
.no-touch #menu ul ul a:hover,
          #menu ul ul a:active,
.no-touch #menu ul ul a:focus,
          #menu ul ul span,
          #menu ul ul .trail a {
  background-color: #ebefd2;
  color: #8fbf2e;
}

#header a#mobile_menu_button {
  width: 40px;
  height: 40px;
  display: none;
  position: absolute;
  top: 36px;
  right: 25px;
  background-color: #1766a2;
  font-family: 'FontAwesome';
  font-weight: normal;
  font-size: 18px;
  line-height: 40px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  border-radius: 4px;
}
#header a#mobile_menu_button:after {
  content: '\f0c9';
}
#header a#mobile_menu_button span {
  display: none;
}
.no-touch #header a#mobile_menu_button:hover,
          #header a#mobile_menu_button:active,
.no-touch #header a#mobile_menu_button:focus {
  background-color: #8fbf2e;
}

@media only screen and (max-width: 960px) {
  #menu {
    display: none;
  }
  #header a#mobile_menu_button {
    display: block;
  }
}


/* Map ------------------------------------------------------------------------------------------ */

#map_container {
  width: 100%;
  background-color: #e5eac3;
}
#map {
  width: 100%;
  height: 320px;
}


/* Slideshow ------------------------------------------------------------------------------------ */

#slideshow {
  position: relative;
}

#slideshow .slideshow_image {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: opacity 1.0s ease 0s;
}
#slideshow .slideshow_image.placeholder {
  position: static;
  opacity: 0.0;
}
#slideshow .slideshow_image.visible {
  opacity: 1.0;
}
#slideshow .slideshow_image img {
  width: 100%;
  max-width: 1400px;
  height: auto;
  display: block;
  margin: 0 auto 0 auto;
}

#slideshow_overlay_container {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#slideshow_overlay {
  max-width: 960px;
  position: relative;
  margin: 0 auto 0 auto;
}
#slideshow_text_container {
  width: 150px;
  height: 150px;
  position: absolute;
  top: 25px;
  right: 25px;
  display: table;
  background-color: #8fbf2e;
  background-color: rgba(143, 191, 46, 0.95);
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  border-radius: 150px;
}
#slideshow_text {
  display: table-cell;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  padding: 0 20px 0 20px;
}

#slideshow_pagination {
  width: 100%;
  position: absolute;
  bottom: 35px;
  left: 0;
  font-size: 0;
  line-height: 0;
  text-align: center;
}
#slideshow_pagination a {
  width: 10px;
  height: 10px;
  display: inline-block;
  background-color: #fff;
  border: 3px solid #fff;
  border-radius: 16px;
  margin: 0 10px 0 10px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}
.no-touch #slideshow_pagination a:hover,
          #slideshow_pagination a:active,
.no-touch #slideshow_pagination a:focus,
          #slideshow_pagination a.active {
  background-color: #1766a2;
}
#slideshow_pagination a span {
  display: none;
}

@media only screen and (min-width: 1400px) {
  #slideshow .slideshow_image img {
    opacity: 0;
  }
}


/* Intro ---------------------------------------------------------------------------------------- */

#intro_container {
  width: 100%;
}
#intro {
  max-width: 960px;
  padding: 50px 25px 15px 25px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}
#intro_container.no_padding_top #intro {
  padding-top: 0;
}

#intro h1 {
  font-weight: bold;
  font-size: 28px;
  line-height: 32px;
  text-decoration: none;
  text-align: center;
  color: #1766a2;
  margin: 0 0 50px 0;
}

#intro .icon_buttons,
#usps  .icon_buttons {
  font-size: 0;
  line-height: 0;
  text-align: center;
  padding: 0 0 10px 0;
}
#intro .icon_buttons li,
#usps  .icon_buttons li {
  display: inline-block;
  padding: 0 20px 25px 20px;
}
#intro .icon_buttons a,
#usps  .icon_buttons a {
  text-decoration: none;
}
#intro .icon_buttons a:before,
#usps  .icon_buttons a:before {
  width: 140px;
  height: 140px;
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  text-decoration: none;
  content: ' ';
  border: 2px solid #1766a2;
  border-radius: 140px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
  transition: background-color 0.2s ease 0s, color 0.2s ease 0s;
}
#intro .icon_buttons span,
#usps  .icon_buttons span {
  display: block;
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  color: #1766a2;
  margin: 20px 0 0 0;
}
.no-touch #intro .icon_buttons a:hover:before,
          #intro .icon_buttons a:active:before,
.no-touch #intro .icon_buttons a:focus:before,
.no-touch #usps  .icon_buttons a:hover:before,
          #usps  .icon_buttons a:active:before,
.no-touch #usps  .icon_buttons a:focus:before {
  background-color: #1766a2;
  color: #fff;
}

          #intro .icon_buttons .icon_fysiotherapie  a:before,
          #usps  .icon_buttons .icon_fysiotherapie  a:before { background-image: url('../images/items/fysiotherapie2.svg'); border-color: #8fbf2e; }
.no-touch #intro .icon_buttons .icon_fysiotherapie  a:hover:before,
          #intro .icon_buttons .icon_fysiotherapie  a:active:before,
.no-touch #intro .icon_buttons .icon_fysiotherapie  a:focus:before,
.no-touch #usps  .icon_buttons .icon_fysiotherapie  a:hover:before,
          #usps  .icon_buttons .icon_fysiotherapie  a:active:before,
.no-touch #usps  .icon_buttons .icon_fysiotherapie  a:focus:before {
  background-color: #8fbf2e;
  background-image: url('../images/items/fysiotherapie2_hover.svg');
}

          #intro .icon_buttons .icon_fitness        a:before,
          #usps  .icon_buttons .icon_fitness        a:before { background-image: url('../images/items/fitness2.svg');       border-color: #f49c27; }
.no-touch #intro .icon_buttons .icon_fitness        a:hover:before,
          #intro .icon_buttons .icon_fitness        a:active:before,
.no-touch #intro .icon_buttons .icon_fitness        a:focus:before,
.no-touch #usps  .icon_buttons .icon_fitness        a:hover:before,
          #usps  .icon_buttons .icon_fitness        a:active:before,
.no-touch #usps  .icon_buttons .icon_fitness        a:focus:before {
  background-color: #f49c27;
  background-image: url('../images/items/fitness2_hover.svg');
}

          #intro .icon_buttons .icon_lifestyle      a:before,
          #usps  .icon_buttons .icon_lifestyle      a:before { background-image: url('../images/items/lifestyle2.svg');     border-color: #a778b4; }
.no-touch #intro .icon_buttons .icon_lifestyle      a:hover:before,
          #intro .icon_buttons .icon_lifestyle      a:active:before,
.no-touch #intro .icon_buttons .icon_lifestyle      a:focus:before,
.no-touch #usps  .icon_buttons .icon_lifestyle      a:hover:before,
          #usps  .icon_buttons .icon_lifestyle      a:active:before,
.no-touch #usps  .icon_buttons .icon_lifestyle      a:focus:before {
  background-color: #a778b4;
  background-image: url('../images/items/lifestyle2_hover.svg');
}

          #intro .icon_buttons .icon_bodymind       a:before,
          #usps  .icon_buttons .icon_bodymind       a:before { background-image: url('../images/items/bodymind2.svg');      border-color: #3bb0b1; }
.no-touch #intro .icon_buttons .icon_bodymind       a:hover:before,
          #intro .icon_buttons .icon_bodymind       a:active:before,
.no-touch #intro .icon_buttons .icon_bodymind       a:focus:before,
.no-touch #usps  .icon_buttons .icon_bodymind       a:hover:before,
          #usps  .icon_buttons .icon_bodymind       a:active:before,
.no-touch #usps  .icon_buttons .icon_bodymind       a:focus:before {
  background-color: #3bb0b1;
  background-image: url('../images/items/bodymind2_hover.svg');
}

@media only screen and (max-width: 800px) {
  #intro .icon_buttons a:before,
  #usps  .icon_buttons a:before {
    width: 100px;
    height: 100px;
  }
}

#intro .item {
  width: 50%;
  width: calc(50% - 20px);
  position: relative;
  float: left;
  padding: 0 0 0 120px;
  box-sizing: border-box;
  margin: 0 0 40px 0;
}
#intro .item:nth-child(even) {
  float: right;
}

#intro .item:before {
  width: 100px;
  height: 100px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center center;
  line-height: 96px;
  text-align: center;
  color: #8fbf2e;
  content: ' ';
  border: 2px solid #8fbf2e;
  border-radius: 100px;
  box-sizing: border-box;
}
#intro #item_personeel:before {
  background-image: url('../images/items/personeel.svg');
}
#intro #item_apparatuur:before {
  background-image: url('../images/items/apparatuur.svg');
}
#intro #item_programmas:before {
  background-image: url('../images/items/programmas.svg');
}
#intro #item_begeleiding:before {
  background-image: url('../images/items/begeleiding.svg');
}

#intro .item h2 {
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  text-decoration: none;
  color: #1766a2;
  margin: 0 0 12px 0;
}
#intro .item ul {
  line-height: 22px;
}
#intro .item li {
  position: relative;
  padding: 0 0 0 22px;
}
#intro .item li:before {
  width: 6px;
  height: 6px;
  display: block;
  position: absolute;
  top: 9px;
  left: 0;
  background-color: #8fbf2e;
  font-size: 0;
  line-height: 0;
  content: ' ';
  border-radius: 6px;
}

@media only screen and (max-width: 750px) {
  #intro .item {
    width: 100%;
    float: none !important;
  }
}


/* Services ------------------------------------------------------------------------------------- */

#services_container {
  background-color: #c5d9e8;
}
#services {
  max-width: 960px;
  padding: 50px 25px 15px 25px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}

#services h2 {
  font-weight: bold;
  font-size: 28px;
  line-height: 32px;
  text-decoration: none;
  text-align: center;
  color: #1766a2;
  margin: 0 0 50px 0;
}

#services .service {
  padding: 0 0 40px 0;
  border-bottom: 1px solid #fff;
  margin: 0 0 40px 0;
}
#services .service:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
#services .service_image {
  width: 380px;
  float: left;
}
#services .service:nth-child(even) .service_image {
  float: right;
}
#services .service_text {
  width: 490px;
  width: calc(100% - 40px - 380px);
  float: right;
}
#services .service:nth-child(even) .service_text {
  float: left;
}

#services .service_image a {
  display: block;
}
#services .service_image img {
  display: block;
  border-radius: 4px;
}

#services .service_text h3 {
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  text-decoration: none;
  color: #1766a2;
  margin: 0 0 23px 0;
}
#services .service_text h3 a {
  text-decoration: none;
  color: #1766a2;
}
.no-touch #services .service_text h3 a:hover,
          #services .service_text h3 a:active,
.no-touch #services .service_text h3 a:focus {
  color: #444;
}
#services .service_text p {
  line-height: 22px;
  margin: 0 0 23px 0;
}
#services .service_text a.button {
  display: inline-block;
  background-color: #fff;
  font-weight: bold;
  line-height: 38px;
  text-decoration: none;
  color: #1766a2;
  padding: 0 12px 0 12px;
  border: 1px solid #1766a2;
  border-radius: 4px;
  margin: 0;
}
#services .service_text a.button:after {
  font-family: 'FontAwesome';
  font-weight: normal;
  content: '\f105';
  margin: 0 0 0 8px;
}
.no-touch #services .service_text a.button:hover,
          #services .service_text a.button:active,
.no-touch #services .service_text a.button:focus {
  background-color: #1766a2;
  color: #fff;
}

@media only screen and (max-width: 750px) {
  #services .service_image {
    width: 100%;
    float: none !important;
    margin: 0 0 26px 0;
  }
  #services .service_text {
    width: 100%;
    float: none !important;
  }
  #services .service_image img {
    max-width: 100%;
    height: auto;
  }
}


/* News ----------------------------------------------------------------------------------------- */

#news_container {
  width: 100%;
}
#news {
  max-width: 960px;
  padding: 50px 25px 15px 25px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}

#news h2 {
  font-weight: bold;
  font-size: 28px;
  line-height: 32px;
  text-decoration: none;
  text-align: center;
  color: #1766a2;
  margin: 0 0 50px 0;
}

#news .news_message {
  margin: 0 0 40px 0;
}
#news .news_image {
  width: 194px;
  float: left;
}
#news .news_image a {
  display: block;
}
#news .news_image img {
  display: block;
  border-radius: 4px;
}
#news .news_text {
  width: 490px;
  width: calc(100% - 194px - 40px);
  float: right;
}
#news .news_text h3 {
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  text-decoration: none;
  color: #1766a2;
  margin: 0 0 10px 0;
}
#news .news_text h3 a {
  text-decoration: none;
  color: #1766a2;
}
.no-touch #news .news_text h3 a:hover,
          #news .news_text h3 a:active,
.no-touch #news .news_text h3 a:focus {
  color: #444;
}
#news .news_text p {
  line-height: 22px;
  margin: 0 0 10px 0;
}
#news .news_text a.button {
  display: inline-block;
  background-color: #fff;
  font-weight: bold;
  line-height: 38px;
  text-decoration: none;
  color: #1766a2;
  padding: 0 12px 0 12px;
  border: 1px solid #1766a2;
  border-radius: 4px;
  margin: 0;
}
#news .news_text a.button:after {
  font-family: 'FontAwesome';
  font-weight: normal;
  content: '\f105';
  margin: 0 0 0 8px;
}
.no-touch #news .news_text a.button:hover,
          #news .news_text a.button:active,
.no-touch #news .news_text a.button:focus {
  background-color: #1766a2;
  color: #fff;
}

@media only screen and (max-width: 550px) {
  #news .news_image {
    width: 100%;
    float: none;
    margin: 0 0 15px 0;
  }
  #news .news_text {
    width: 100%;
    float: none;
  }
}


/* Content blue --------------------------------------------------------------------------------- */

.content_blue_container {
  background-color: #c5d9e8;
}
.content_blue {
  max-width: 960px;
  padding: 50px 25px 30px 25px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}

.content_blue h2 {
  font-weight: bold;
  font-size: 28px;
  line-height: 32px;
  text-align: center;
  color: #1766a2;
  margin: 0 0 40px 0;
}
.content_blue p {
  line-height: 22px;
  text-align: center;
  margin: 0 0 20px 0;
}
.content_blue table {
  margin: 0 auto 20px auto;
}
.content_blue table th,
.content_blue table td {
  line-height: 22px;
}
.content_blue table thead th {
  font-weight: bold;
  color: #1766a2;
}
.content_blue table th,
.content_blue table td {
  padding: 3px 20px 4px 0;
  border-top: 1px solid rgba(23, 102, 162, 0.5);
}
.content_blue table th:last-child,
.content_blue table td:last-child {
  padding-right: 0;
}
.content_blue table td.nowrap {
  white-space: nowrap;
}


/* USP's ---------------------------------------------------------------------------------------- */

#usps_container {
  width: 100%;
}
#usps {
  max-width: 960px;
  padding: 50px 25px 15px 25px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}

#usps h2 {
  font-weight: bold;
  font-size: 28px;
  line-height: 32px;
  text-align: center;
  color: #1766a2;
  margin: 0 0 40px 0;
}

#usps .usps {
  font-size: 0;
  line-height: 0;
  text-align: center;
  margin: 0 0 20px 0;
}
#usps .usp {
  width: 106px;
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 22px;
  padding: 120px 0 0 0;
  margin: 0 20px 20px 20px;
}
#usps .usp:before {
  width: 100px;
  height: 100px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  content: ' ';
  border: 2px solid #8fbf2e;
  border-radius: 100px;
  box-sizing: border-box;
}
#usps #usp1:before { background-image: url('../images/items/personeel.svg');  }
#usps #usp2:before { background-image: url('../images/items/apparatuur.svg'); }
#usps #usp3:before { background-image: url('../images/items/personeel.svg');  }
#usps #usp4:before { background-image: url('../images/items/programmas.svg'); }


/* Breadcrumbs ---------------------------------------------------------------------------------- */

#breadcrumbs_container {
  width: 100%;
}
#breadcrumbs {
  max-width: 960px;
  padding: 20px 25px 0 25px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}

#breadcrumbs ul {
  line-height: 22px;
}
#breadcrumbs li {
  float: left;
}
#breadcrumbs li:after {
  font-family: 'FontAwesome';
  font-weight: normal;
  color: #1766a2;
  content: '\f105';
  margin: 0 10px 0 10px;
}
#breadcrumbs li:last-child:after {
  content: '';
}
#breadcrumbs a,
#breadcrumbs span {
  text-decoration: none;
}
.no-touch #breadcrumbs a:hover,
          #breadcrumbs a:active,
.no-touch #breadcrumbs a:focus {
  text-decoration: underline;
}
#breadcrumbs li.first a {
  font-family: 'FontAwesome';
  font-weight: normal;
  color: #1766a2;
}
#breadcrumbs li.first a:before {
  content: '\f015';
}
#breadcrumbs li.first a span {
  display: none;
}
.no-touch #breadcrumbs li.first a:hover,
          #breadcrumbs li.first a:active,
.no-touch #breadcrumbs li.first a:focus {
  text-decoration: none;
  color: #444;
}


/* Txt + img ------------------------------------------------------------------------------------ */

.txt_img_container {
  margin: 0;
}

.txt_img_container.bg {
  background-color: #ddd;
}
.fysiotherapie .txt_img_container.bg {
  background-color: #e5eac3;
}
.fitness       .txt_img_container.bg {
  background-color: #ffdbbc;
}
.lifestyle     .txt_img_container.bg {
  background-color: #ddd2e5;
}
.body_mind     .txt_img_container.bg {
  background-color: #d3eded;
}
.over_ons      .txt_img_container.bg {
  background-color: #e5eac3;
}

.txt_img {
  max-width: 960px;
  padding: 50px 25px 30px 25px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}

.txt {
  width: calc(100% - 40px - 380px);
  float: left;
  position: relative;
}
.img {
  width: 380px;
  float: right;
  position: relative;
}
.reverse .txt {
  float: right;
}
.reverse .img {
  float: left;
}

.txt h2 {
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  color: #1766a2;
  margin: 30px 0 20px 0;
}
.txt h2:first-child {
  margin-top: 0;
}
.no-touch .txt a:hover,
          .txt a:active,
.no-touch .txt a:focus {
  color: #1766a2;
}
.txt p,
.txt address {
  line-height: 22px;
  margin: 0 0 20px 0;
}
.txt ul {
  line-height: 22px;
  margin: 0 0 20px 0;
}
.txt ul li {
  position: relative;
  padding: 0 0 0 22px;
}
.txt ul li:before {
  width: 6px;
  height: 6px;
  display: block;
  background-color: #1766a2;
  position: absolute;
  top: 9px;
  left: 0;
  font-size: 0;
  line-height: 0;
  content: ' ';
  border-radius: 6px;
}
.txt strong {
  font-weight: bold;
}
.txt a.button {
  display: inline-block;
  background-color: #fff;
  font-weight: bold;
  line-height: 38px;
  text-decoration: none;
  color: #1766a2;
  padding: 0 12px 0 12px;
  border: 1px solid #1766a2;
  border-radius: 4px;
  margin: 0 0 20px 0;
}
.txt a.button:after {
  font-family: 'FontAwesome';
  font-weight: normal;
  content: '\f105';
  margin: 0 0 0 8px;
}
.no-touch .txt a.button:hover,
          .txt a.button:active,
.no-touch .txt a.button:focus {
  background-color: #1766a2;
  color: #fff;
}

.txt .aangesloten_bij {
  position: absolute;
  top: 44px;
  right: 0;
  text-align: center;
}
.txt .aangesloten_bij span {
  display: block;
  line-height: 22px;
}
.txt .aangesloten_bij a {
  display: block;
  margin: 10px 0 0 0;
}
.txt .aangesloten_bij a span {
  display: none;
}
.txt .aangesloten_bij.gewichtsconsulenten a {
  width: 110px;
  height: 52px;
  background-image: url('../../files/logos/gewichtsconsulenten.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.txt .aangesloten_bij.ngsmassage a {
  width: 110px;
  height: 31px;
  background-image: url('../../files/logos/ngs.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.img img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  margin: 0 0 20px 0;
}
.img span {
  position: absolute;
  bottom: 30px;
  right: 10px;
  line-height: 22px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
  color: #fff;
}

@media only screen and (max-width: 800px) {
  .txt,
  .img {
    width: 100%;
    float: none;
  }
  .img {
    width: auto;
    display: inline-block;
    padding-top: 10px;
  }
}


/* Text ----------------------------------------------------------------------------------------- */

.text_container {
  width: 100%;
}
.text {
  max-width: 960px;
  padding: 0px 25px 30px 25px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}

.text h2 {
  font-weight: bold;
  font-size: 20px;
  line-height: 22px;
  color: #1766a2;
  margin: 30px 0 20px 0;
}
.text p {
  line-height: 22px;
  margin: 0 0 20px 0;
}
.text em {
  font-weight: bold;
  font-style: normal;
}

.text a {
  font-weight: bold;
  text-decoration: underline;
  color: #1766a2;
}
.no-touch .text a:hover,
          .text a:active,
.no-touch .text a:focus {
  color: #444;
}

.text ul {
  line-height: 22px;
  margin: 0 0 20px 0;
}
.text ul li {
  position: relative;
  padding: 0 0 0 20px;
}
.text ul li:before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'FontAwesome';
  font-weight: normal;
  color: #1766a2;
  content: '\f105';
}

.text ol {
  line-height: 22px;
  margin: 0 0 10px 20px;
}
.text ol li {
  padding: 0 0 10px 0;
}
.text ol ul {
  margin-bottom: 0;
}
.text ol ul li {
  padding: 0 0 0 14px;
}

.text ol.inhoudsopgave {
  margin-bottom: 20px;
}
.text ol.inhoudsopgave li {
  padding-bottom: 0;
}
.text ol.inhoudsopgave a {
  font-weight: normal;
  text-decoration: none;
  color: #444;
}
.no-touch .text ol.inhoudsopgave a:hover,
          .text ol.inhoudsopgave a:active,
.no-touch .text ol.inhoudsopgave a:focus {
  text-decoration: underline;
  color: #1766a2;
}

.text a.terug {
  display: block;
  position: relative;
  font-weight: normal;
  line-height: 22px;
  text-decoration: none;
  color: #1766a2;
  padding: 0 0 8px 20px;
  border-bottom: 1px solid #c5d9e8;
  margin: 0 0 20px 0;
}
.text a.terug:before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'FontAwesome';
  font-weight: normal;
  content: '\f106';
}
.no-touch .text a.terug:hover,
          .text a.terug:active,
.no-touch .text a.terug:focus {
  
}


/* Text center ---------------------------------------------------------------------------------- */

.text_center_container {
  width: 100%;
}
.text_center {
  max-width: 960px;
  text-align: center;
  padding: 0 25px 30px 25px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}

.text_center h2 {
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  text-decoration: none;
  text-align: center;
  color: #1766a2;
  margin: 30px 0 20px 0;
}
.text_center h2:first-child {
  margin-top: 0;
}

.text_center p {
  text-align: center;
  line-height: 22px;
  margin: 0 0 20px 0;
}

.text_center p#ngs,
.text_center p#gewichtsconsulenten {
  font-size: 0;
  line-height: 0;
}
.text_center p#ngs                 span,
.text_center p#gewichtsconsulenten span {
  display: inline-block;
  font-size: 14px;
  line-height: 28px;
  vertical-align: middle;
  margin: 0 5px 0 0;
}
.text_center p#gewichtsconsulenten span {
  line-height: 52px;
}
.text_center p#ngs                 a,
.text_center p#gewichtsconsulenten a {
  width: 114px;
  height: 28px;
  display: inline-block;
  background-color: #c5d9e8;
  background-image: url('../images/logo_ngs.png');
  background-repeat: no-repeat;
  background-position: center center;
  vertical-align: middle;
  margin: 0 0 0 5px;
}
.text_center p#gewichtsconsulenten a {
  width: 110px;
  height: 52px;
  background-image: url('../images/logo_gewichtsconsulenten.png');
}
.text_center p#ngs                 a span,
.text_center p#gewichtsconsulenten a span {
  display: none;
}

.text_center ul {
  display: inline-block;
  text-align: left;
  line-height: 22px;
  margin: 0 auto 0 auto;
}
.text_center ul li {
  position: relative;
  padding: 0 0 0 22px;
}
.text_center ul li:before {
  width: 6px;
  height: 6px;
  display: block;
  background-color: #1766a2;
  position: absolute;
  top: 9px;
  left: 0;
  font-size: 0;
  line-height: 0;
  content: ' ';
  border-radius: 6px;
}

.text_center .meer_info {
  font-size: 0;
  line-height: 0;
}
.text_center .meer_info p {
  display: inline-block;
  font-size: 14px;
  line-height: 22px;
  text-align: left;
  padding: 0;
  margin: 0 20px 20px 20px;
}
.text_center .meer_info a {
  text-decoration: none;
}
.no-touch .text_center .meer_info a:hover,
          .text_center .meer_info a:active,
.no-touch .text_center .meer_info a:focus {
  text-decoration: underline;
  color: #1766a2;
}

.text_center a.button {
  height: 40px;
  display: inline-block;
  background-color: #1766a2;
  font-weight: bold;
  line-height: 40px;
  text-decoration: none;
  color: #fff;
  padding: 0 25px 0 25px;
  border-radius: 4px;
  margin: 0 0 20px 0;
}
.no-touch .text_center a.button:hover,
          .text_center a.button:active,
.no-touch .text_center a.button:focus {
  background-color: #8fbf2e;
}


/* Center --------------------------------------------------------------------------------------- */

.center_container {
  width: 100%;
}
.center {
  max-width: 960px;
  padding: 50px 25px 30px 25px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}

.center h1,
.center h2 {
  font-weight: bold;
  font-size: 28px;
  line-height: 32px;
  text-align: center;
  color: #1766a2;
  margin: 0 0 40px 0;
}
.center h2 {
  margin: 0 0 30px 0;
}
.center strong {
  font-weight: bold;
}
.center p {
  line-height: 22px;
  text-align: center;
  margin: 0 0 20px 0;
}
.center p a {
  color: #1766a2;
}
.no-touch .center p a:hover,
          .center p a:active,
.no-touch .center p a:focus {
  color: #444;
}

.center ul {
  line-height: 22px;
  text-align: left;
  margin: 0 0 20px 0;
}
.center ul li {
  position: relative;
  padding: 0 0 0 22px;
}
.center ul li:before {
  width: 6px;
  height: 6px;
  display: block;
  background-color: #8fbf2e;
  position: absolute;
  top: 9px;
  left: 0;
  font-size: 0;
  line-height: 0;
  content: ' ';
  border-radius: 6px;
}

/* Sitemap */
.center #sitemap_container {
  padding: 0 0 20px 0;
}
.center #sitemap_container ul {
  width: 50%;
  margin: 0;
}
.center #sitemap_container ul li {
  padding: 0 0 10px 0;
}
.center #sitemap_container ul li:before {
  display: none;
}
.center #sitemap_container ul ul {
  width: 100%;
}
.center #sitemap_container ul ul li {
  padding: 10px 0 0 40px;
}
.center #sitemap_container ul a,
.center #sitemap_container ul span {
  display: block;
  position: relative;
  background-color: #c5d9e8;
  font-weight: bold;
  line-height: 20px;
  text-decoration: none;
  color: #1766a2;
  padding: 9px 12px 11px 26px;
  border-radius: 4px;
}
.center #sitemap_container ul a:before,
.center #sitemap_container ul span:before {
  position: absolute;
  top: 9px;
  left: 12px;
  font-family: 'FontAwesome';
  font-weight: normal;
  content: '\f105';
}
.no-touch .center #sitemap_container ul a:hover,
          .center #sitemap_container ul a:active,
.no-touch .center #sitemap_container ul a:focus {
  background-color: #1766a2;
  color: #fff;
}
.center #sitemap_container ul ul a,
.center #sitemap_container ul ul span {
  background-color: #e2ecf4;
}

@media only screen and (max-width: 800px) {
  .center #sitemap_container ul {
    width: 100%;
  }
}


/* Teasers -------------------------------------------------------------------------------------- */

.teasers_container {
  width: 100%;
}
.teasers {
  max-width: 960px;
  padding: 0 25px 0 25px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}

.teaser_table_container {
  padding: 20px 0 20px 0;
}
.teaser_table {
  display: table;
}
.teaser,
.teaser_empty {
  width: 47.5%;
  display: table-cell;
  background-color: #c5d9e8;
  border-radius: 4px;
}

.fysiotherapie .teaser {
  background-color: #e5eac3;
}
.fitness       .teaser {
  background-color: #ffdbbc;
}
.lifestyle     .teaser {
  background-color: #ddd2e5;
}
.body_mind     .teaser {
  background-color: #d3eded;
}
.over_ons      .teaser {
  background-color: #e5eac3;
}

.teaser_empty {
  background-color: transparent !important;
}
.teaser_space {
  width: 5%;
}
.teaser h2 a {
  display: block;
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  text-decoration: none;
  color: #1766a2;
  padding: 15px 20px 15px 20px;
}
.no-touch .teaser h2 a:hover,
          .teaser h2 a:active,
.no-touch .teaser h2 a:focus {
  color: #444;
}
.teaser_image img {
  width: 100%;
  height: auto;
  display: block;
}
.teaser_text {
  padding: 15px 20px 0 20px;
}
.teaser_text p {
  line-height: 22px;
  margin: 0 0 15px 0;
}
.teaser_text ul {
  line-height: 22px;
  margin: 0 0 15px 0;
}
.teaser_text ul li {
  position: relative;
  padding: 0 0 0 22px;
}
.teaser_text ul li:before {
  width: 6px;
  height: 6px;
  display: block;
  background-color: #1766a2;
  position: absolute;
  top: 9px;
  left: 0;
  font-size: 0;
  line-height: 0;
  content: ' ';
  border-radius: 6px;
}
.teaser_text h3 {
  font-weight: bold;
  line-height: 22px;
}
.teaser_text table {
  margin: 0 0 15px 0;
}
.teaser_text table th,
.teaser_text table td {
  line-height: 22px;
}
.teaser_text table th {
  padding: 0 10px 0 0;
}

.teaser_button {
  padding: 0 20px 20px 20px;
}
.teaser_button a {
  display: inline-block;
  background-color: #fff;
  font-weight: bold;
  line-height: 22px;
  text-decoration: none;
  color: #1766a2;
  padding: 8px 12px 8px 12px;
  border: 1px solid #1766a2;
  border-radius: 4px;
  margin: 0;
}
.teaser_button a:after {
  font-family: 'FontAwesome';
  font-weight: normal;
  content: '\f105';
  margin: 0 0 0 8px;
}
.no-touch .teaser_button a:hover,
          .teaser_button a:active,
.no-touch .teaser_button a:focus {
  background-color: #1766a2;
  color: #fff;
}

@media only screen and (max-width: 600px) {
  .teaser_table_container {
    padding: 0;
  }
  .teaser_table {
    display: block;
  }
  .teaser {
    width: 100%;
    display: block;
    margin: 20px 0 20px 0;
  }
  .teaser_space {
    display: none;
  }
}


/* Columns 2 ------------------------------------------------------------------------------------ */

.columns2_container {
  width: 100%;
}
.columns2 {
  max-width: 960px;
  padding: 0 25px 30px 25px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}

.columns2 .column1,
.columns2 .column2 {
  width: 50%;
  width: calc(50% - 20px);
}
.columns2 .column1 {
  float: left;
}
.columns2 .column2 {
  float: right;
}

.columns2 .image_container {
  float: right;
  margin: 0 0 20px 0;
}
.columns2 .image_container img {
  display: block;
  border-radius: 4px;
}

.columns2 h2 {
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  text-decoration: none;
  color: #1766a2;
  margin: 0 0 20px 0;
}
.columns2 address {
  line-height: 22px;
  margin: 0 0 20px 0;
}
.columns2 table {
  line-height: 22px;
  margin: 0 0 20px 0;
}
.columns2 table th {
  width: 90px;
}
.columns2 table a {
  color: #444;
}
.no-touch .columns2 table a:hover,
          .columns2 table a:active,
.no-touch .columns2 table a:focus {
  color: #1766a2;
}

.columns2 form {
  width: 100%;
  margin: 0 0 20px 0;
}
.columns2 .field_container {
  position: relative;
  padding: 0 0 0 90px;
  margin: 0 0 10px 0;
}
.columns2 .field_container label {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 40px;
}
.columns2 .field_container span.required {
  font-weight: bold;
  color: #1766a2;
}
.columns2 .input_container {
  width: 100%;
}
.columns2 .input_container .message.error {
  display: none;
  margin: 0 0 10px 0;
}
.columns2 .input_container input,
.columns2 .input_container textarea {
  width: 100%;
  height: 40px;
  background-color: #fff;
  font-size: 16px;
  color: #444;
  padding: 0 0 0 10px;
  border: 1px solid #1766a2;
  box-sizing: border-box;
  border-radius: 4px;
}
.columns2 .input_container textarea {
  height: 160px;
  line-height: 22px;
  padding-top: 8px;
}
.columns2 .input_container input:focus,
.columns2 .input_container textarea:focus {
  background-color: #e2ecf4;
}
.columns2 .button_container button {
  height: 40px;
  float: right;
  background-color: #1766a2;
  font-weight: bold;
  color: #fff;
  padding: 0 25px 0 25px;
  border-radius: 4px;
  margin: 10px 0 0 0;
}
.no-touch .columns2 .button_container button:hover,
          .columns2 .button_container button:active,
.no-touch .columns2 .button_container button:focus {
  background-color: #8fbf2e;
}

@media only screen and (max-width: 950px) {
  .columns2 .image_container {
    float: none;
  }
}

@media only screen and (max-width: 700px) {
  .columns2 .column1,
  .columns2 .column2 {
    width: 100%;
    float: none;
  }
}


/* Team ----------------------------------------------------------------------------------------- */

.team_container {
  width: 100%;
}

.team_member_container {
  background-color: #c5d9e8;
}
.team_member_container:nth-child(even) {
  background-color: #fff;
}
.team_member {
  max-width: 960px;
  min-height: 285px;
  position: relative;
  padding: 35px 25px 35px 230px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}
.team_member_container:nth-child(even) .team_member {
  padding: 35px 230px 35px 25px;
}

.team_member_image {
  position: absolute;
  top: 35px;
  left: 25px;
}
.team_member_container:nth-child(even) .team_member_image {
  left: auto;
  right: 25px;
}
.team_member_image img {
  display: block;
  border-radius: 4px;
}

.team_member_description h2 {
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  color: #1766a2;
  white-space: nowrap;
  margin: 0 0 20px 0;
}
.team_member_description ul {
  font-size: 0;
  line-height: 0;
  margin: 0 0 20px 0;
}
.team_member_description ul li {
  display: inline-block;
  position: relative;
  font-size: 14px;
  line-height: 22px;
  padding: 0 16px 0 0;
  margin: 0 12px 0 0;
}
.team_member_description ul li:after {
  width: 4px;
  height: 4px;
  display: block;
  position: absolute;
  top: 9px;
  right: 0;
  background-color: #444;
  font-size: 0;
  line-height: 0;
  content: ' ';
  border-radius: 4px;
}
.team_member_description ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.team_member_description ul li:last-child:after {
  display: none;
}
.team_member_description p {
  line-height: 22px;
  margin: 0;
}

@media only screen and (max-width: 500px) {
  .team_member {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  .team_member_image {
    position: static;
    margin: 0 0 20px 0;
  }
}


/* Tarieven ------------------------------------------------------------------------------------- */

.tarieven_container {
  background-color: #e5eac3;
  margin: 0;
}
.tarieven {
  max-width: 960px;
  padding: 50px 25px 50px 25px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}

.tarieven table {
  width: 100%;
  border-bottom: 1px solid #7da3ba;
  margin: 0;
}
.tarieven table th,
.tarieven table td {
  line-height: 22px;
  padding: 2px 0 2px 0;
}
.tarieven table thead th,
.tarieven table thead td {
  font-weight: bold;
  color: #1766a2;
}
.tarieven table thead td.bedrag {
  text-align: right;
}
.tarieven table tbody th,
.tarieven table tbody td {
  border-top: 1px solid #7da3ba;
}
.tarieven table tbody th {
  width: 100%;
}
.tarieven table tbody td.euro {
  padding-right: 20px;
}
.tarieven table tbody td.bedrag {
  text-align: right;
}


/* Vragen --------------------------------------------------------------------------------------- */

#vragen_container {
  background-color: #c5d9e8;
}

.fysiotherapie #vragen_container {
  background-color: #e5eac3;
}
.fitness       #vragen_container {
  background-color: #ffdbbc;
}
.lifestyle     #vragen_container {
  background-color: #ddd2e5;
}
.body_mind     #vragen_container {
  background-color: #d3eded;
}
.over_ons      #vragen_container {
  background-color: #e5eac3;
}

#vragen {
  max-width: 960px;
  text-align: center;
  padding: 50px 25px 55px 25px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}

#vragen h2 {
  font-weight: bold;
  font-size: 28px;
  line-height: 32px;
  text-align: center;
  color: #1766a2;
  margin: 0 0 30px 0;
}
#vragen h2 label {
  cursor: pointer;
}

#vragen a.button {
  display: inline-block;
  background-color: #fff;
  font-weight: bold;
  line-height: 38px;
  text-decoration: none;
  color: #1766a2;
  padding: 0 12px 0 12px;
  border: 1px solid #1766a2;
  border-radius: 4px;
  margin: 0;
}
#vragen a.button:after {
  font-family: 'FontAwesome';
  font-weight: normal;
  content: '\f105';
  margin: 0 0 0 8px;
}
.no-touch #vragen a.button:hover,
          #vragen a.button:active,
.no-touch #vragen a.button:focus {
  background-color: #1766a2;
  color: #fff;
}

#vragen form {
  width: 300px;
  height: 40px;
  position: relative;
  margin: 0 auto 0 auto;
}
#vragen form input.input_text {
  width: 260px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  line-height: 38px;
  padding: 0 0 0 12px;
  border: 1px solid #1766a2;
  border-right: 0;
  border-top-left-radius:    4px;
  border-bottom-left-radius: 4px;
  box-sizing: border-box;
}
#vragen form button {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #c5d9e8;
  border: 1px solid #1766a2;
  border-top-right-radius:    4px;
  border-bottom-right-radius: 4px;
  box-sizing: border-box;
}
.no-touch #vragen form button:hover,
          #vragen form button:active,
.no-touch #vragen form button:focus {
  background-color: #fff;
}


/* Form bar ------------------------------------------------------------------------------------- */

.formbar_container {
  width: 100%;
}
.formbar {
  max-width: 960px;
  padding: 0 25px 50px 25px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}

.formbar form {
  padding: 0 80px 0 80px;
}

.formbar .field_container {
  width: 100%;
  position: relative;
  padding: 0 0 10px 100px;
  box-sizing: border-box;
}
.formbar .field_container_group .field_container {
  width: 50%;
  box-sizing: border-box;
}
.formbar .field_container_group .field_container.left {
  float: left;
  padding-right: 10px;
}
.formbar .field_container_group .field_container.right {
  float: right;
  padding-left: 110px;
}
.formbar .field_container label {
  width: 100px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 40px;
}
.formbar .field_container_group .field_container.right label {
  left: 10px;
}
.formbar .field_container label span.required {
  font-weight: bold;
  color: #1766a2;
}
.formbar .field_container .input_container .message {
  display: none;
  margin: 0 0 10px 0;
}
.formbar .field_container .input_text,
.formbar .field_container textarea {
  width: 100%;
  height: 40px;
  background-color: #fff;
  font-size: 16px;
  color: #444;
  padding: 0 0 0 10px;
  border: 1px solid #1766a2;
  box-sizing: border-box;
  border-radius: 4px;
}
.formbar .field_container textarea {
  height: 140px;
  line-height: 22px;
  padding-top: 8px;
}
.formbar .field_container .input_text:focus,
.formbar .field_container textarea:focus {
  background-color: #e2ecf4;
}

.formbar .radio_containers {
  padding: 20px 0 0 100px;
}
.formbar .radio_containers p {
  line-height: 22px;
  margin: 0 0 20px 0;
}
.formbar .radio_containers .message {
  display: none;
}
.formbar .radio_container_grouped {
  padding: 0 0 10px 0;
}
.formbar .radio_container_group {
  width: 217px;
  float: left;
}
.formbar .radio_container_group.last {
  width: 216px;
}
.formbar .radio_container {
  position: relative;
  line-height: 40px;
  cursor: pointer;
  padding: 0 0 10px 50px;
}
.formbar .radio_container:before {
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  font-family: 'FontAwesome';
  font-weight: normal;
  font-size: 18px;
  line-height: 38px;
  text-align: center;
  color: #1766a2;
  content: ' ';
  border: 1px solid #1766a2;
  box-sizing: border-box;
  border-radius: 4px;
}
.formbar .radio_container.checked:before {
  content: '\f00c';
}

.formbar .button_container {
  padding: 10px 0 0 0;
}
.formbar .button_container button {
  height: 40px;
  float: right;
  background-color: #1766a2;
  font-weight: bold;
  color: #fff;
  padding: 0 25px 0 25px;
  border-radius: 4px;
  margin: 0;
}
.no-touch .formbar .button_container button:hover,
          .formbar .button_container button:active,
.no-touch .formbar .button_container button:focus {
  background-color: #8fbf2e;
}

@media only screen and (max-width: 980px) {
  .formbar form {
    padding: 0;
  }
  .formbar .radio_containers {
    padding-bottom: 10px;
  }
  .formbar .radio_container_grouped {
    padding: 0;
  }
}

@media only screen and (max-width: 600px) {
  .formbar .field_container_group .field_container.left,
  .formbar .field_container_group .field_container.right {
    width: 100%;
    float: none;
    padding-right: 0;
    padding-left: 100px;
  }
  .formbar .field_container_group .field_container.right label {
    left: 0;
  }
  .formbar .radio_container_group,
  .formbar .radio_container_group.last {
    width: 100%;
  }
}


/* Columns -------------------------------------------------------------------------------------- */

.columns_container {
  width: 100%;
}
.columns {
  max-width: 960px;
  padding: 0 25px 0 0;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}

.column {
  width: 287px;
  float: left;
  overflow: hidden;
  border-radius: 4px;
  margin: 10px 0 15px 25px;
}
.fitness   .column {
  background-color: #ffdbbc;
}
.body_mind .column {
  background-color: #d3eded;
}
.column_3 {
  width: 286px;
}

.column_row_1 {
  position: relative;
  padding: 10px 20px 12px 20px;
  border-bottom: 1px solid #fff;
}
.column_row_2,
.column_row_3 {
  padding: 20px 20px 2px 20px;
  border-bottom: 1px solid #fff;
}
.column_row_4 {
  height: 380px;
  text-align: center;
  padding: 20px 20px 0 20px;
}

.column_row_1 h2 {
  font-size: 20px;
  line-height: 24px;
  color: #1766a2;
}
.column_row_1 .corner_container {
  width: 120px;
  height: 120px;
  position: absolute;
  top: -60px;
  right: -60px;
  display: table;
  background-color: #f49c27;
  font-weight: bold;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  vertical-align: bottom;
  color: #fff;
  padding: 0;
  transform: rotate(45deg);
}
.column_row_1 .corner {
  display: table-cell;
  text-align: center;
  vertical-align: bottom;
  padding: 0 0 8px 0;
}

.column .column_price {
  position: relative;
  font-size: 20px;
  line-height: 24px;
  margin: 0 0 20px 0;
}

.column a.info_container {
  width: 18px;
  height: 18px;
  display: inline-block;
  position: relative;
  text-decoration: none;
  vertical-align: bottom;
  padding: 2px;
}
.column .column_price a.info_container {
  position: absolute;
  top: 1px;
  right: 0;
}
.column a.info_container .info0 {
  width: 18px;
  height: 18px;
  display: block;
  background-color: #1766a2;
  font-family: 'FontAwesome';
  font-weight: normal;
  font-size: 12px;
  line-height: 18px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  border-radius: 18px;
  transition: background-color 0.2s ease 0s, color 0.2s ease 0s;
}
.column a.info_container .info0:before {
  content: '\f129';
}
.no-touch .column a.info_container:hover  .info0,
          .column a.info_container:active .info0,
.no-touch .column a.info_container:focus  .info0 {
  background-color: #000;
}
.column a.info_container .info1 {
  width: 210px;
  display: none;
  position: absolute;
  top: 20px;
  z-index: 9999;
  padding: 6px 0 0 0;
}
.column a.info_container.left .info1 {
  left: -8px;
}
.column a.info_container.right .info1 {
  right: -8px;
}
.column a.info_container .info1:before {
  width: 0;
  height: 0;
  position: absolute;
  top: -6px;
  font-size: 0;
  line-height: 0;
  content: ' ';
  border-top:    6px solid transparent;
  border-right:  6px solid transparent;
  border-bottom: 6px solid #f49c27;
  border-left:   6px solid transparent;
}
.column a.info_container.left .info1:before {
  left: 13px;
}
.column a.info_container.right .info1:before {
  right: 13px;
}
.column a.info_container .info2 {
  background-color: #f49c27;
  font-family: 'Maven Pro', Arial, Helvetica, sans-serif;
  padding: 10px 10px 12px 10px;
  border-radius: 4px;
}

.column h3 {
  font-weight: bold;
  line-height: 22px;
  text-align: center;
  margin: 0 0 10px 0;
}
.column p {
  line-height: 22px;
  margin: 0 0 20px 0;
}
.column ul {
  line-height: 22px;
  margin: 0 0 20px 0;
}
.column ul li {
  position: relative;
  padding: 0 0 0 18px;
}
.column ul li:before {
  width: 6px;
  height: 6px;
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  background-color: #1766a2;
  font-size: 0;
  line-height: 0;
  content: ' ';
  border-radius: 4px;
}
.column table {
  width: 100%;
  line-height: 22px;
  margin: 0 0 20px 0;
}
.column table th {
  text-align: left;
}
.column table td {
  text-align: right;
}

.column .group_1,
.column .group_2 {
  width: 50%;
  box-sizing: border-box;
}
.column .group_1 {
  float: left;
  padding: 0 10px 0 0;
}
.column .group_2 {
  float: right;
  padding: 0 0 0 10px;
}

.column a.button {
  display: block;
  background-color: #fff;
  font-weight: bold;
  line-height: 38px;
  text-decoration: none;
  text-align: center;
  color: #1766a2;
  border: 1px solid #1766a2;
  margin: 0 0 20px 0;
  border-radius: 4px;
}
.column a.button:after {
  font-family: 'FontAwesome';
  font-weight: normal;
  content: '\f105';
  margin: 0 0 0 6px;
}
.no-touch .column a.button:hover,
          .column a.button:active,
.no-touch .column a.button:focus {
  background-color: #1766a2;
  color: #fff;
}

@media only screen and (max-width: 670px) {
  .column {
    width: calc(100% - 25px);
  }
  .column_row_4 {
    height: auto;
  }
}


/* Widget --------------------------------------------------------------------------------------- */

.widget_container {
  width: 100%;
  background-color: #ffdbbc;
  margin: 30px 0 0 0;
}
.widget {
  max-width: 960px;
  padding: 50px 25px 60px 25px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}

.widget h2 {
  font-weight: bold;
  font-size: 28px;
  line-height: 32px;
  text-align: center;
  color: #1766a2;
  margin: 0 0 30px 0;
}
.widget iframe {
  display: block;
  border: 0;
  margin: 0 auto 0 auto;
}

@media only screen and (max-width: 960px) {
  .widget_container {
    display: none;
  }
}


/* Mobile menu ---------------------------------------------------------------------------------- */

#mobile_menu_container {
  display: none;
  background-color: #fff;
  padding: 15px 25px 30px 25px;
}
#mobile_menu {
  position: relative;
}

#mobile_menu_logo {
  width: 155px;
  height: 90px;
  background-image: url('../images/logo_fitther.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin: 0 0 20px 0;
}
#mobile_menu_logo span {
  display: none;
}

a#mobile_menu_close {
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  top: 21px;
  right: 0;
  background-color: #1766a2;
  font-family: 'FontAwesome';
  font-weight: normal;
  font-size: 20px;
  line-height: 40px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  border-radius: 4px;
}
a#mobile_menu_close:before {
  content: '\f00d';
}
a#mobile_menu_close span {
  display: none;
}
.no-touch a#mobile_menu_close:hover,
          a#mobile_menu_close:active,
.no-touch a#mobile_menu_close:focus {
  background-color: #8fbf2e;
}

#mobile_menu li {
  position: relative;
  border-bottom: 1px solid rgba(23, 102, 162, 0.4);
}
#mobile_menu ul a,
#mobile_menu ul span {
  display: block;
  font-weight: bold;
  font-size: 18px;
  line-height: 30px;
  text-decoration: none;
  color: #1766a2;
  padding: 9px 0 9px 0;
}
.no-touch #mobile_menu ul a:hover,
          #mobile_menu ul a:active,
.no-touch #mobile_menu ul a:focus,
          #mobile_menu ul span {
  color: #8fbf2e;
}
#mobile_menu ul .toggle {
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  top: 4px;
  right: 0;
  font-family: 'FontAwesome';
  font-weight: normal;
  font-size: 24px;
  line-height: 38px;
  text-align: center;
  color: #1766a2;
  cursor: pointer;
  border: 1px solid rgba(23, 102, 162, 0.4);
  border-radius: 4px;
  box-sizing: border-box;
  transition: background-color 0.2s ease 0s, color 0.2s ease 0s, border-color 0.2s ease 0s;
}
#mobile_menu ul .toggle.up:before {
  content: '\f106';
}
#mobile_menu ul .toggle.down:before {
  content: '\f107';
}
.no-touch #mobile_menu ul .toggle:hover,
          #mobile_menu ul .toggle:active,
.no-touch #mobile_menu ul .toggle:focus {
  background-color: #8fbf2e;
  color: #fff;
  border-color: #8fbf2e;
}

#mobile_menu ul ul {
  display: none;
  border-top: 1px solid rgba(23, 102, 162, 0.4);
}
#mobile_menu ul ul li {
  padding: 0 0 0 25px;
  border-bottom: 0;
}
#mobile_menu ul ul a,
#mobile_menu ul ul span {
  font-weight: normal;
  border-bottom: 1px solid rgba(23, 102, 162, 0.4);
}
#mobile_menu ul ul li:last-child a,
#mobile_menu ul ul li:last-child span {
  border-bottom: 0;
}


/* Footer --------------------------------------------------------------------------------------- */

#footer_container {
  background-color: #e5eac3;
}
#footer {
  max-width: 960px;
  padding: 35px 25px 35px 25px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}


/* Footer 1 ------------------------------------------------------------------------------------- */

#footer1 {
  padding: 0 0 30px 0;
  margin: 0 0 0 -25px;
}
#footer1 h2 {
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  color: #8fbf2e;
  white-space: nowrap;
  margin: 0 0 20px 0;
}
#footer1 h3 {
  font-weight: bold;
  font-size: 14px;
  line-height: 22px;
  margin: 0 0 10px 0;
}

#footer_contact,
#footer_openingstijden,
#footer_volg,
#footer_sporter {
  width: 25%;
  float: left;
  padding: 0 0 0 25px;
  box-sizing: border-box;
}

/* Footer contact */
#footer_contact address {
  font-size: 14px;
  line-height: 22px;
  white-space: nowrap;
  margin: 0 0 20px 0;
}
#footer_contact ul {
  font-size: 14px;
  line-height: 22px;
}
/*
#footer_contact ul li {
  position: relative;
  padding: 0 0 0 25px;
}
#footer_contact ul li:before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'FontAwesome';
  font-weight: normal;
}
#footer_contact ul li.contact_tel:before {   content: '\f095'; }
#footer_contact ul li.contact_email:before { content: '\f003'; font-size: 13px; }
#footer_contact ul li.contact_web:before {   content: '\f0ac'; }
*/
#footer_contact ul a {
  text-decoration: none;
}
.no-touch #footer_contact ul a:hover,
          #footer_contact ul a:active,
.no-touch #footer_contact ul a:focus {
  text-decoration: underline;
}

/* Footer openingstijden */
#footer_openingstijden table {
  width: 100%;
  font-size: 14px;
  line-height: 22px;
}
#footer_openingstijden table th {
  text-transform: lowercase;
  white-space: nowrap;
  padding: 0 20px 0 0;
}
#footer_openingstijden table td {
  width: 100%;
  text-transform: lowercase;
  white-space: nowrap;
}

/* Footer volg */
#footer_volg ul li {
  float: left;
  padding: 0 10px 20px 0;
}
#footer_volg ul li.contact_whatsapp {
  padding-right: 0;
}
#footer_volg ul a {
  width: 40px;
  height: 40px;
  display: block;
  font-family: 'FontAwesome';
  font-weight: normal;
  font-size: 20px;
  line-height: 36px;
  text-decoration: none;
  text-align: center;
  color: #8fbf2e;
  border-radius: 40px;
  border: 2px solid #8fbf2e;
  box-sizing: border-box;
}
#footer_volg ul li.contact_facebook  a:before { content: '\f09a'; font-size: 18px; }
#footer_volg ul li.contact_instagram a:before { content: '\f16d'; }
#footer_volg ul li.contact_whatsapp  a:before { content: '\f232'; }

#footer_volg ul span {
  display: none;
}
.no-touch #footer_volg ul a:hover,
          #footer_volg ul a:active,
.no-touch #footer_volg ul a:focus {
  background-color: #fff;
}
/*
#footer_volg ul {
  font-size: 14px;
  line-height: 22px;
  margin: 0 0 20px 0;
}
#footer_volg ul li {
  position: relative;
  padding: 0 0 0 22px;
}
#footer_volg ul li:before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'FontAwesome';
  font-weight: normal;
}
#footer_volg ul li.contact_facebook:before  { content: '\f09a'; }
#footer_volg ul li.contact_instagram:before { content: '\f16d'; }
#footer_volg ul a {
  text-decoration: none;
}
.no-touch #footer_volg ul a:hover,
          #footer_volg ul a:active,
.no-touch #footer_volg ul a:focus {
  text-decoration: underline;
}
*/

#footer_volg form {
  position: relative;
  padding: 0 40px 0 0;
}
#footer_volg input {
  width: 100%;
  height: 40px;
  background-color: #fff;
  font-size: 16px;
  line-height: 22px;
  padding: 0 0 0 12px;
  border: 1px solid #8fbf2e;
  border-right: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  box-sizing: border-box;
}
#footer_volg input::placeholder {
  color: #999;
  opacity: 1;
}
#footer_volg button {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #e5eac3;
  font-size: 14px;
  line-height: 22px;
  border: 1px solid #8fbf2e;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  box-sizing: border-box;
}
.no-touch #footer_volg button:hover,
          #footer_volg button:active,
.no-touch #footer_volg button:focus {
  background-color: #fff;
}

/* Footer sporter */
#footer_sporter blockquote {
  position: relative;
  font-size: 13px;
  line-height: 18px;
  padding: 7px 10px 8px 10px;
  border: 2px solid #8fbf2e;
  border-radius: 10px;
}
#footer_sporter blockquote:after {
  width: 28px;
  height: 23px;
  display: block;
  position: absolute;
  bottom: -23px;
  left: 23px;
  background-color: #e5eac3;
  background-image: url('../images/footer_sporter.svg');
  background-repeat: no-repeat;
  background-position: center center;
  font-size: 0;
  line-height: 0;
  content: ' ';
}
#footer_sporter p {
  font-size: 13px;
  line-height: 18px;
  margin: 24px 0 0 12px;
}

@media only screen and (max-width: 725px) {
  #footer_contact,
  #footer_openingstijden,
  #footer_volg,
  #footer_sporter {
    width: 50%;
  }
  #footer_volg {
    margin-top: 25px;
  }
  #footer_sporter {
    margin-top: 25px;
  }
}

@media only screen and (max-width: 400px) {
  #footer_contact,
  #footer_openingstijden,
  #footer_volg,
  #footer_sporter {
    width: 100%;
    float: none;
  }
  #footer_openingstijden {
    margin-top: 25px;
  }
}


/* Footer 2 ------------------------------------------------------------------------------------- */

#footer2 {
  font-size: 0;
  line-height: 0;
  padding: 30px 0 30px 0;
  border-top: 1px solid #8fbf2e;
}
#footer2 .footer_logo_container {
  width: 25%;
  float: left;
  text-align: center;
  padding: 0 10px 0 10px;
  box-sizing: border-box;
}
#footer2 .footer_logo {
  width: 100%;
  height: 60px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
#footer2 #footer_logo1 {
  background-image: url('../images/footer_nlactief.svg');
}
#footer2 #footer_logo2 {
  background-image: url('../images/footer_gym.svg');
}
#footer2 #footer_logo3 {
  background-image: url('../images/footer_technogym.svg');
}
#footer2 #footer_logo4 {
  background-image: url('../images/footer_kngf.svg');
}


/* Footer 3 ------------------------------------------------------------------------------------- */

#footer3 {
  padding: 15px 0 0 0;
  border-top: 1px solid #8fbf2e;
}

/* Copyright */
#copyright {
  float: left;
}
#copyright ul {
  font-size: 14px;
  line-height: 22px;
}
#copyright ul li {
  float: left;
  position: relative;
  padding: 0 14px 0 0;
  margin: 0 10px 0 0;
}

#copyright ul li:after {
  width: 4px;
  height: 4px;
  display: block;
  position: absolute;
  top: 9px;
  right: 0;
  background-color: #8fbf2e;
  font-size: 0;
  line-height: 0;
  content: ' ';
  border-radius: 4px;
}
#copyright ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}
#copyright ul li:last-child:after {
  display: none;
}

#copyright ul a {
  text-decoration: none;
}
.no-touch #copyright ul a:hover,
          #copyright ul a:active,
.no-touch #copyright ul a:focus {
  text-decoration: underline;
}

/* Credits */
#credits {
  float: right;
  position: relative;
  font-size: 14px;
  line-height: 22px;
  padding: 0 122px 0 0;
}
#credits a {
  width: 112px;
  height: 22px;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background-image: url('../images/logo_whirlwind.svg');
  background-repeat: no-repeat;
  background-position: center center;
  text-decoration: none;
}
#credits span {
  display: none;
}

@media only screen and (max-width: 920px) {
  #copyright {
    float: none;
  }
  #credits {
    float: none;
    display: inline-block;
    margin: 10px 0 0 0;
  }
}


/* Clearing <div> ------------------------------------------------------------------------------- */

.clear {
  width: 0;
  height: 0;
  clear: both;
  font-size: 0;
  line-height: 0;
}