@charset "utf-8";
/******
font used in:
font-family: 'Hind', sans-serif;
font-family: 'Open Sans', sans-serif;

*****/

/* hind-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Hind";
  font-style: normal;
  font-weight: 400;
  src:
    url("fonts/hind-v16-latin-regular.woff2") format("woff2"),
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
      url("fonts/hind-v16-latin-regular.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* hind-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Hind";
  font-style: normal;
  font-weight: 700;
  src:
    url("fonts/hind-v16-latin-700.woff2") format("woff2"),
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
      url("fonts/hind-v16-latin-700.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

:root {
  --text-color: #07273b;
  --text-color-secondary: #ffffff;
  --text-color-teriary: #595959;
  --color-blue: #4d8fcc;
  --color-blue-transparent: rgba(14, 67, 102, 0.92);
  --color-light-blue: #a8c7e6;
  --bg-body: #ffffff;
  --bg-body-transparent: rgba(255, 255, 255, 0.85);
  --bg-primary: #f7da6d;
  --bg-secondary: #f5f5f5;
  --bg-tertiary: #414141;
  --bg-quaternary: #fff9de;
  --bg-quinary: #f5f5f5;
  --modal-close-btn-bg: var(--text-color);
}

.dark-mode {
  --text-color: #ffffff;
  --text-color-secondary: #2e2e2e;
  --text-color-teriary: #d1d1d1;
  --color-light-blue: #141414;
  --color-blue: #141414;
  --color-blue-transparent: rgba(14, 67, 102, 0.92);
  --bg-body: #2e2e2e;
  --bg-body-transparent: rgba(46, 46, 46, 0.85);
  --bg-primary: #141414;
  --bg-secondary: #0e0e0e;
  --bg-tertiary: #000000;
  --bg-quaternary: #414141;
  --bg-quinary: #ffffff;
  --modal-close-btn-bg: var(--color-blue);
}

/************************************************************ Reset */

article,
aside,
footer,
header,
nav,
section,
figcaption,
figure {
  display: block;
}

sup {
  line-height: 1;
}

* {
  box-sizing: border-box;
}

* {
  margin: 0px;
  padding: 0px;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
}

.clr {
  clear: both;
}

.clr.h20 {
  height: 20px;
}

input,
textarea,
select {
  border: 0px none;
  background: none;
  outline: none;
  font-family: "Hind", sans-serif;
  font-weight: 400;
}

img {
  outline: none;
  max-width: 100%;
  height: auto;
  border: 0px none;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

h1 span.subtitle {
  font-size: 1.25rem;
  font-weight: normal;
  color: var(--text-color);
  display: block;
}

input[type="submit"] {
  border-radius: 0px;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

input.numberInput {
  border: 1px solid var(--text-color);
  border-radius: 39px;
  color: var(--text-color);
  padding: 10px 20px;
  width: 270px;
  font-size: 18px;
}

textarea {
  resize: none;
  overflow: auto;
}

:focus {
  outline: none;
}

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

.clearfix {
  display: block;
  zoom: 1;
}

/********************************************************General  */

html {
  position: relative;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  background: var(--bg-body);
  color: var(--text-color);
  width: 100%;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

.hidden,
body.hidden {
  overflow: hidden;
}

.no-transitions * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}

.wrapper {
  width: 100%;
  position: relative;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

/******************************************************************************* Fonts */

html {
  font-size: 100%;
}

body {
  font-family: Hind, Arial, Sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.3px;
}

p {
  font-size: 1.25rem;
}

ol {
  font-size: 1.25rem;
}

h1,
.h1 {
  /* Content page heading, homepage catchphrase */
  font-size: 2.4375rem;
  font-weight: bold;
  color: var(--text-color);
  line-height: 1.2em;
  padding-bottom: 20px;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.7em;
}

h3 {
  /* Homepage tips headings */
  font-size: 1.25rem;
  font-weight: normal;
  color: var(--text-color);
}

h4 {
  /* homepage 3 bananas */
  font-size: 1.625rem;
  font-weight: normal;
  color: var(--text-color);
}

h5 {
  /* Content subhead, Content beige head, Content highlight head */
  font-size: 1.5rem;
  font-weight: normal;
  padding-bottom: 0px;
  color: var(--text-color);
}

.accordion h5 {
  font-size: 1.375rem;
}

h5 span {
  padding-right: 10px;
}

a {
  /* Links in text */
  font-size: 1.25rem;
  color: var(--color-blue);
}

.dark-mode a {
  /* Links in text */
  color: #fff;
}

a:hover {
  text-decoration: underline;
}

/******************************************************************************* Buttons */

/* rounded button standard */

a.rounded-button,
span.rounded-button {
  display: inline-block;
  padding: 10px 15px 10px 15px;
  border-radius: 15px;
  color: var(--text-color);
  font-size: 1.3125rem;
  font-weight: 600;
  line-height: 39px;
  letter-spacing: -0.5px;
  border: 2px solid var(--text-color);
  transition: all 0.3s ease;
  overflow: hidden;
  cursor: pointer;
}

a.rounded-button.wide {
  padding: 10px 30px 10px 30px;
}

.dark-mode a.rounded-button,
.dark-mode span.rounded-button {
  border-color: var(--color-blue);
}

a.rounded-button:hover,
span.rounded-button:hover {
  text-decoration: underline;
}

a.rounded-button i,
span.rounded-button i {
  width: 39px;
  height: 39px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  float: right;
  margin-left: 15px;
  margin-right: 0;
  transition: all 0.3s ease;
}

/* rounded button vatiations */

a.rounded-button.blue,
span.rounded-button.blue {
  background-color: var(--color-blue);
  border-color: var(--color-blue);
  color: var(--text-color-secondary);
}

a.rounded-button.white,
span.rounded-button.white {
  background-color: var(--text-color-secondary);
  border-color: var(--text-color-secondary);
  color: var(--text-color);
}

a.rounded-button.fade-in-yellow {
  background-color: var(--bg-primary);
  border-color: var(--bg-primary);
  color: #141414;
  border-radius: 100px;
  padding: 6px 8px 6px 24px;
}

a.rounded-button.fade-in-yellow i {
  margin-right: 0px !important;
  visibility: visible !important;
  margin-left: 16px !important;
}

.dark-mode a.rounded-button.blue,
.dark-mode span.rounded-button.blue {
  color: var(--text-color);
}

a.rounded-button.fade-in.fade-in-blue:hover {
  background-color: var(--color-blue);
  border-color: var(--color-blue);
  background-image: linear-gradient(247deg, #119cff, #168adc);
  color: var(--text-color-secondary);
}

.dark-mode a.rounded-button.fade-in.fade-in-blue:hover {
  color: var(--text-color);
}

a.rounded-button.fade-in.fade-in-white:hover {
  background-color: var(--bg-body);
  border-color: var(--bg-body);
  color: var(--color-blue);
}

.dark-mode a.rounded-button.fade-in.fade-in-white:hover {
  color: var(--text-color);
}

a.rounded-button.clickable.active {
  background-color: #000000;
  border-color: #000000;
  color: var(--text-color-secondary);
}

a.rounded-button.back {
  padding-right: 30px;
  padding-left: 15px;
}

a.rounded-button.back--wide {
  padding-right: 30px;
  padding-left: 30px;
}

/* rounded buttons actions */

a.rounded-button.fade-in i,
a.rounded-button.clickable i {
  visibility: hidden;
  margin-right: -39px;
}

a.rounded-button.fade-in:hover i,
a.rounded-button.clickable.active i {
  visibility: visible;
  margin-right: 0px;
}

/* rounded buttons icons */

a.rounded-button i.arrow-right-white-bgr,
span.rounded-button i.arrow-right-white-bgr {
  background-image: url(/images/icons/arrow_right_white_bgr.svg);
}

i.arrow-right-blue-bgr,
a.rounded-button i.arrow-right-blue-bgr {
  background-image: url(/images/icons/arrow_right_blue_bgr.svg);
}

i.arrow-right-yellow-bgr,
a.rounded-button i.arrow-right-yellow-bgr {
  background-image: url(/images/icons/arrow_right_yellow_bgr.svg);
}

i.arrow-left-blue-bgr {
  background-image: url(/images/icons/arrow_right_blue_bgr.svg);
  transform: rotate(180deg);
}

a.rounded-button i.x-black {
  background-image: url(/images/icons/x_black.svg);
}

a.rounded-button .share {
  background-image: url(/images/icons/share.svg);
}

.dark-mode a.rounded-button .share {
  background-image: url(/images/icons/share-white.svg);
}

a.rounded-button i.print {
  background-image: url(/images/icons/print.svg);
}

.dark-mode a.rounded-button i.print {
  background-image: url(/images/icons/print-white.svg);
}

a.rounded-button i.print-blue {
  background-image: url(/images/icons/print-blue.svg);
}

a.rounded-button i.arrow-back {
  float: left;
  margin-left: 0px;
  margin-right: 15px;
  background-image: url(/images/icons/arrow_left_black_circle.svg);
}

.dark-mode a.rounded-button i.arrow-back {
  background-image: url(/images/icons/arrow_left_white_circle.svg);
}

a i.arrow-right-transparent-bgr {
  position: absolute;
  width: 18px;
  height: 20px;
  margin-top: 3px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  margin-left: 8px;
  transition: all 0.3s ease;
  background-image: url(/images/icons/arrow_right_transparent_bgr.svg);
}

a i.plus-right-transparent-bgr {
  position: absolute;
  width: 18px;
  height: 20px;
  margin-top: 3px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  margin-left: 7px;
  transition: all 0.3s ease;
  background-image: url(/images/icons/plus-light.svg);
}

/******************************************************************************* General */

.auto-contant {
  margin: auto;
  max-width: 1350px;
  padding: 0 15px;
  position: relative;
  padding: 0 32px;

  @media screen and (max-width: 768px) {
    padding: 0 15px;
  }
}

.auto-contant.col-2 {
  width: 100%;
  padding: 0;
}

.auto-contant.col-2 .panel {
  width: calc(50% - 10px);
}

/******************************************************************************* Nav */

/* Main nav */

:root {
  --header-height: 132px;
}

body {
  padding-top: var(--header-height);
}

@media (max-width: 1300px) {
  :root {
    --header-height: 126px;
  }
}

.menu-items-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.header--home .search-icon-link {
  margin-top: 9px;
  margin-right: 16px;
}

@media (max-width: 1200px) {
  .header--eengoedmomentisnu .search-icon-link {
    margin-top: 9px;
    margin-right: 16px;
  }

  :root {
    --header-height: 64px;
  }
}

@media (min-width: 1201px) {
  .header--home .search-icon-link {
    margin-top: 0;
    margin-right: 0;
  }

  .header--home .menu-items-right .search-icon-link {
    display: none;
  }
}

.header {
  width: 100%;
  z-index: 6;
  background: var(--bg-primary);
  min-height: 132px;
  transition: all 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: transform 0.8s ease;
}

@media (max-width: 1200px) {
  .header {
    min-height: 64px;
  }
}

.c-home-hero {
  position: relative;
  width: 100%;
  height: 500px;

  h1 {
    span {
      font-weight: normal;
      display: block;
    }
  }

  .auto-contant {
    position: absolute;
    top: 20%;
    left: 32px;
    right: 32px;
    transform: translateY(-20%);
  }

  .hero-content {
    width: 100%;
  }

  img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .hero-content {
    width: 100%;
    padding-top: 1rem;
  }

  .c-home-hero__banner {
    width: 100%;
    max-height: 500px;
    object-position: center;
  }
}

@media (min-width: 1201px) {
  .c-home-hero {
    height: 620px;

    .c-home-hero__banner {
      max-height: 620px;
    }
  }
}

@media (max-width: 580px) {
  .c-home-hero {
    .auto-contant {
      top: 10%;
      left: 0;
      right: 0;
      transform: translateY(-10%);
    }

    .hero-content {
      h1 {
        font-size: 2rem;
        margin-bottom: 0;
        padding-bottom: 0;
      }
    }
  }
}

@media (max-width: 967px) {
  .c-home-hero {
    height: 600px;
  }

  .c-home-hero__banner {
    min-height: 600px;
    object-position: right;
  }
}

/* @media (max-width: 1050px) {
  .c-home-hero {
    .hero-content {
      width: 100%;
    }
  }
} */

@media (min-width: 1500px) {
  .c-home-hero {
    .hero-content {
      h1 {
        font-size: 3.75rem;
        padding-top: 5rem;
        padding-bottom: 0;
      }
    }
  }
}

@media (min-width: 1201px) {
  .c-home-hero {
    img {
      position: relative;
    }

    .auto-contant {
      width: 1065px;
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      transform: translateY(-50%);
    }
  }

  @media (min-width: 1600px) {
    .c-home-hero {
      height: 700px;

      .c-home-hero__banner {
        max-height: 700px;
      }
    }
  }

  @media (min-width: 1900px) {
    .c-home-hero {
      height: 800px;

      .c-home-hero__banner {
        max-height: 800px;
      }
    }
  }

  @media (min-width: 2200px) {
    .c-home-hero {
      height: 900px;

      .c-home-hero__banner {
        max-height: 900px;
      }
    }
  }

  @media (min-width: 2700px) {
    .c-home-hero {
      .c-home-hero__banner {
        object-position: bottom -200px right 0;
      }
    }
  }

  @media (min-width: 3200px) {
    .c-home-hero {
      .c-home-hero__banner {
        object-position: bottom -400px right 0;
      }
    }
  }

  @media (min-width: 3700px) {
    .c-home-hero {
      .c-home-hero__banner {
        object-position: bottom -600px right 0;
      }
    }
  }

  @media (min-width: 4200px) {
    .c-home-hero {
      .c-home-hero__banner {
        object-position: bottom -800px right 0;
      }
    }
  }

  @media (min-width: 4700px) {
    .c-home-hero {
      .c-home-hero__banner {
        object-position: bottom -1000px right 0;
      }
    }
  }

  @media (min-width: 5200px) {
    .c-home-hero {
      .c-home-hero__banner {
        object-position: bottom -1200px right 0;
      }
    }
  }

  .c-home-hero__banner {
    max-height: 900px;
    object-position: bottom right;
  }

  .hero-content {
    max-width: 55%;
  }

  .dark-mode .auto-contant .hero-content {
    h1 {
      color: var(--text-color);
    }
    span {
      color: var(--text-color);
    }
  }

  .header.header--home.header--top {
    background: transparent;
    min-height: none;
    padding: 0;

    .header-nav {
      padding-top: 36px;
    }

    .logo a figure {
      background-image: url("../images/logo-white.svg");
    }
  }

  .header.header--overlay.header--top .auto-contant .header-nav .logo a figure {
    background-image: url("../images/logo-white.svg");
  }

  .dark-mode
    .header.header--overlay.header--top
    .auto-contant
    .header-nav
    .logo
    a
    figure {
    background-image: url("../images/logo.svg");
  }

  .header.header--home {
    background: var(--bg-primary);
    display: flex;

    .header-nav {
      padding: 0;
      display: flex;
      align-items: center;
      gap: 30px;
    }

    .clearfix::after {
      display: none;
    }

    .header-menu {
      display: flex;
      align-items: center;
      gap: 30px;
    }

    .header-right {
      border-top: 0;
      background-color: var(--color-light-blue);
      border-radius: 20px;
      float: unset;
      padding-left: 33px;
      padding-right: 33px;
      width: fit-content;
      transition: all 0.8s ease;
    }

    &.header--down .header-right {
      background-color: transparent;
    }

    &.header--top .header-right {
      background-color: var(--color-light-blue);
    }

    &.header--up .header-right {
      background-color: transparent;
    }

    .c-themeswitch,
    .font-size {
      display: none;
    }

    .header-menu .c-themeswitch {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 1rem;
      order: 22;
    }

    .header-menu .c-themeswitch input[type="checkbox"] {
      display: none;
    }

    .header-menu .font-size {
      display: none;
    }
  }
}

@media (min-width: 1201px) {
  .c-home-hero {
    .auto-contant {
      width: 1110px;
    }
  }
}

@media (min-width: 1351px) {
  .c-home-hero {
    .auto-contant {
      width: 1200px;
    }
  }
}

@media (max-width: 1200px) {
  .header-menu.open-menu .c-themeswitch {
    a {
      display: none;
    }

    .font-size {
      display: none;
    }
  }

  .header-menu .c-themeswitch {
    .search-icon-link {
      display: none;
    }
  }
}

.header--static {
  position: relative;
}

.header--up {
  transform: translateY(calc(var(--header-height) * -1));
}

.header--down {
  transform: translateY(0);
  transition: transform 0.275s ease;
}

.header--down
  + main
  article
  section
  .levenmet-content-out
  .zorgen-content
  .auto-contant
  .zorgen-content-inner
  .zorgen-left {
  top: 160px;
}

.header--top {
  transform: translateY(0) !important;
}

.header-nav {
  width: 100%;
  padding: 46px 0 0 0;
}

.logo {
  width: 178px;
  float: left;
}

.logo a {
  display: block;
  max-width: 178px;
}

.logo a img {
  /* max-width: none;
    width: 100%;
    height: auto;
    display: block; */
  display: none;
}

.logo a figure {
  background: url("../images/logo.svg") top left / contain no-repeat;
  height: 52px;
  width: 178px;
  margin-right: 42px;
}

.dark-mode .logo a figure {
  background-image: url("../images/logo-white.svg");
}

.header-right {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  width: calc(100% - 220px);
  float: right;
  position: relative;
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-right .rounded-button.blue {
  font-size: 20px;
  padding: 6px 6px 6px 16px;
}

.header-menu {
  display: inline-block;
}

.header-menu .c-themeswitch {
  display: none;
}

.header-menu ul {
  display: inline-block;
}

.header-menu ul li {
  float: left;
  margin-left: 24px;
  position: relative;
}

.header-menu ul li:first-child,
.header-menu ul li.less-margin:first-child {
  margin-left: 0px;
}

.header-menu > ul > li.less-margin {
  margin-left: 10px;
}

.header-menu ul li a {
  font-size: 1rem;
  color: var(--text-color);
  display: block;
  transition: all 0.3s ease;
  text-shadow: 0.5px 0px 0px var(--text-color);
  position: relative;
}

@media (min-width: 1201px) {
  .header-menu ul li:hover .header-subnav {
    transform: translateX(calc(-50% + 62px)) translateY(0);
    opacity: 1;
    z-index: 1;
    visibility: visible;
  }
}

.header-menu > ul > li > a {
  padding: 24px 1rem 20px 0;
}

.header-menu > ul > li > a:after {
  content: url("../images/icon-carrot.svg");
  display: inline-block;
  transform: translate(0.5rem, -2px);
}

.header-menu > ul > li > a.no-icon:after {
  display: none;
}

.dark-mode .header-menu > ul > li > a:after {
  content: url("../images/icon-carrot-white.svg");
}

.dark-mode .header-menu > ul > li > a.no-icon:after {
  display: none;
}

.header-menu ul li:hover a {
  text-decoration: none;
}

.header-menu > ul > li:first-child .header-subnav {
  transform: translateX(calc(-50% + 132px)) translateY(0);
}

.header-menu > ul > li:first-child .header-subnav:before {
  background-position: top left calc(50% - 140px);
}

@media (min-width: 1201px) {
  .header-menu > ul > li:last-child .header-subnav {
    left: auto;
    right: 50%;
    transform: translateX(calc(20% + 62px)) translateY(0);
  }
}

.header-menu > ul > li:last-child .header-subnav:before {
  background-position: top right 202px;
}

.header-menu ul li.active a {
  text-decoration: underline;
}

.header-menu .has-subs a button {
  display: none;
}

.header-subnav {
  background: #eef4f9;
  border-radius: 8px;
  width: 774px;
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(calc(-50% + 62px)) translateY(-1rem);
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  transition: all 0.125s ease-in-out;
}

.dark-mode .header-subnav {
  background: rgb(46, 46, 46);
}

.header-subnav:before {
  background: url("../images/decal-subnav.svg") top left calc(50% - 70px) / 55px
    29px no-repeat;
  content: "";
  height: 20px;
  width: 100%;
  position: absolute;
  top: -19px;
}

.header-subnav__back {
  display: none;
}

.dark-mode .header-subnav:before {
  background-image: url("../images/decal-subnav-dark.svg");
}

.header-subnav__header {
  font-size: 1.5625rem;
  font-weight: 700;
  padding: 24px 46px 8px 46px;
  color: #0e4366;
}

.dark-mode .header-subnav__header {
  color: #ffffff;
}

.header-subnav__contain {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-bottom: 46px;
}

.header-subnav__main ul,
.header-subnav__sub ul {
  display: block;
}

.header-subnav__main ul {
  border-right: 1px solid rgba(122, 122, 122, 0.14);
}

.header-subnav__main ul li,
.header-subnav__sub ul li {
  display: block;
  float: none;
  margin: 0;
}

.header-subnav__main ul li a,
.header-subnav__sub ul li a {
  display: block;
  border-left: 4px solid transparent;
  text-decoration: none !important;
  padding: 14px 46px;
}

.header-subnav__main ul li.has-subs a {
  background-image: url("../images/angle-right.svg");
  background-position: top 50% right 28px;
  background-repeat: no-repeat;
}

.header-subnav__main ul li.has-subs a button {
  display: none;
}

.header-subnav__main ul li a:hover,
.header-subnav__main ul li.active a,
.header-subnav__sub ul li a:hover {
  background-color: rgba(21, 143, 231, 0.09);
  border-color: #4d8fcc;
}

.header-subnav__main ul li.indent a {
  text-indent: 2rem;
}

.header-subnav__sub ul {
  display: none;
}

.header--home.header--hide .auto-contant {
  margin-left: 2rem;
  margin-right: 0;
}

.header--home.header--hide .auto-contant .header-nav .header-right {
  display: none;
}

@media (max-width: 1200px) {
  .header--home.header--hide .auto-contant .header-nav .header-right {
    display: unset;
    margin-left: unset;
    margin-right: unset;
  }

  .header--home.header--hide
    .auto-contant
    .header-nav
    .header-right
    .rounded-button.blue {
    display: none;
  }
}

@media (max-width: 580px) {
  .header--home.header--hide .auto-contant {
    margin-left: 0;
  }
}

.font-size {
  display: flex;
  justify-content: space-evenly;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  margin: 0;
  padding: 0 12px;
  width: 80px;
  position: absolute;
  right: 15px;
  top: 6px;
}

.font-size li {
  /* float: right; */
}

.font-size a {
  color: var(--text-color);
  display: block;
  font-size: 1.5rem;
  line-height: 1.5em;
}

.font-size a.font-size-small {
  font-size: 0.875rem;
  padding-right: 20px;
  background: url(/images/icons/arrow_right_black.svg) no-repeat right 2px;
  background-size: 16px auto;
  font-weight: 400;
  margin: 10px 10px 0 0;
}

.dark-mode .font-size a.font-size-small {
  background-image: url("/images/icons/arrow_right_white.svg");
}

/* Subnav */

.zorgen-left-nav {
  background: var(--color-light-blue);
  border-radius: 8px;
  overflow: hidden;
  max-width: 312px;
}

.dark-mode .zorgen-left-nav {
  background: #0e4366;
  color: white;
}

.dark-mode .zorgen-left-nav ul li a {
  color: white;
}

.dark-mode .zorgen-left-nav ul li.active:not(.strong) > a {
  border-color: white;
}

.zorgen-left-nav ul li a {
  border-left: 4px solid transparent;
  color: #141414;
  line-height: 1.2;
  display: block;
  padding: 20px 25px;
}

.zorgen-left-nav ul li a:hover {
  text-decoration: none;
}

.zorgen-left-nav ul li.active:not(.strong) > a {
  border-color: #0e4366;
  background-color: #4d8fcc;
  color: white;
}

.zorgen-left-nav ul li.strong > a {
  font-weight: 700;
}

.zorgen-left-nav ul li.back > a {
  background-image: url("../images/icon-arrow-left.svg");
  background-position: center left 20px;
  background-size: 14px 16px;
  background-repeat: no-repeat;
}

.zorgen-left-nav ul li.back + li > a {
  padding-left: 25px;
}

.zorgen-left-nav ul > li > a {
  padding-left: 48px;
}

.zorgen-left-nav ul > li.main.active a {
  padding-left: 25px;
}

/******************************************************************************* Home */

/* Homepage banner */

.home-banner__button-container {
  display: inline-flex;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
  gap: 30px;
  background: var(--bg-body-transparent);
  border-radius: 20px;
  padding: 20px;
}

.home-banner__button-container a.rounded-button {
  min-width: max-content;
  font-size: 20px;
  padding: 10px 15px 10px 15px;
}

@media (max-width: 600px) {
  .c-home-hero .c-home-hero__banner {
    object-position: 0 -170px;
  }
}

@media (max-width: 1351px) {
  .home-banner__button-container {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
    margin-bottom: 20px;
    gap: 20px;
  }

  .home-banner__button-container span.divider {
    display: none;
  }

  .c-home-hero h1 {
    max-width: 50%;
  }

  .c-home-hero .auto-contant {
    top: inherit;
    bottom: 0;
    transform: translateY(0);
  }
}

@media (min-width: 1200px) and (max-width: 1351px) {
  .c-home-hero h1 {
    max-width: 90%;
  }
}

@media (max-width: 550px) {
  .c-home-hero h1 {
    max-width: 100%;
  }
}

@media (max-width: 460px) {
  .home-banner__button-container a.rounded-button {
    width: 100%;
  }

  .home-banner__button-container a.rounded-button i {
    margin-left: -30px;
  }
}

.home-banner__button-container span {
  display: block;
  position: relative;
}

.home-banner__button-container span.divider::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 20px;
  background-color: #707070;
  top: -24px;
  left: 7px;
}

.home-banner__button-container span.divider::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 20px;
  background-color: #707070;
  bottom: -24px;
  left: 7px;
}

@media (min-width: 1201px) {
  body.home {
    padding-top: 0;
  }
}

/* c.text-img */

.c-text-img {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.c-text-img img {
  width: 100%;
  height: auto;
  display: block;
  margin: unset;
}

.c-text-img--leftwide {
  grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
}

.c-text-img--rightwide {
  grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
}

@media (max-width: 767px) {
  .c.text-img {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .c-text-img--leftwide {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .c-text-img--rightwide {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }
}

/* Banner */

.banner {
  width: 100%;
}

.banner .banner-yellow {
  width: 100%;
  background: var(--bg-primary);
  padding: 0 0 40px 0;
}

.banner .banner-yellow.light {
  background: var(--bg-quaternary);
}

.banner .banner-yellow .auto-contant {
  display: flex;
}

.banner .banner-yellow .banner-text {
  max-width: 400px;
  padding-top: 80px;
  position: relative;
  z-index: 2;
}

.banner .banner-image {
  width: 48%;
  float: right;
  margin-top: -310px;
  position: relative;
  z-index: 2;
}

.banner .banner-image img {
  max-width: none;
  width: 100%;
  height: auto;
  display: block;
  margin: auto;
  padding: 0 0 80px 0;
}

.banner .about-verdermetparkinson {
  max-width: 580px;
  margin: 40px 0;
}

.banner .about-verdermetparkinson p:first-child {
  margin: 0 0 20px 0;
}

.search-icon-link-container {
}

.search-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.search-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  background: url("../images/icons/magnifying-glass-black.svg") no-repeat center
    center;
  background-size: 100% auto;
  /* margin-left: 10px; */
}

.dark-mode {
  .search-icon {
    background-image: url("../images/icons/magnifying-glass-white.svg");
  }
  @media (max-width: 1200px) {
    .dark-mode .hero-content h1 {
      color: var(--text-color);
    }
  }
  .c-ervaring__container-info p {
    border-top: 1px solid var(--text-color);
  }
  .footer-menu ul li a:hover {
    color: var(--text-color);
  }
  .c-sleep-test-hint a:hover {
    color: var(--text-color);
    text-decoration: none;
  }
  .c-home-tips .filters-result-box p a:hover {
    color: var(--text-color);
    text-decoration: none;
  }
  a.rounded-button.fade-in-yellow {
    color: var(--text-color);
  }
  .accordion-item-header {
    background-color: var(--bg-quaternary);
  }
  .c-sleep-test__question-buttons .back {
    color: var(--text-color);
  }
  .c-sleep-tips__tip-more {
    color: var(--text-color);
  }
  .c-sleep-tips__tip-content .c-sleep-tips__tip-more {
    color: var(--text-color);
  }
  .c-sleep-tips__tip:hover .c-sleep-tips__tip-more,
  .c-sleep-tips__tip:hover .c-sleep-tips__tip-content h4 {
    color: var(--text-color);
  }
  .symptoms-text-block {
    color: var(--text-color);
  }
  #teconsent {
    background-color: var(--bg-primary) !important;
    color: var(--text-color) !important;
  }
  a.rounded-button.blue,
  span.rounded-button.blue {
    background-color: var(--bg-quaternary);
    border-color: var(--bg-quaternary);
    color: var(--text-color);
  }
  .c-home-tips a.rounded-button {
    background-color: var(--bg-quaternary);
    border-color: var(--bg-quaternary);
    color: var(--text-color);
  }
  .c-home-tips .filters-result ul li:hover .result-box-text a.rounded-button {
    background-color: var(--bg-primary);
    border-color: var(--bg-primary);
    &:hover {
      @media (max-width: 1200px) {
        background-color: var(--bg-quaternary) !important;
        border-color: var(--bg-quaternary) !important;
      }
    }
  }
  .information-result ul li a {
    color: var(--text-color);
  }
  @media (max-width: 1200px) {
    .header-menu ul li {
      border-bottom: 1px solid var(--bg-quaternary);
    }
    .header-menu ul li a {
      color: var(--text-color);
      background-color: var(--bg-secondary);
    }
  }
}

/* 3 bananas */

.best-offers {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 80px;
}

.best-offer-listing {
  width: 100%;
}

.best-offer-listing ul {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.best-offer-listing ul li {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  width: 33.3333%;
  vertical-align: top;
  float: left;
  border-radius: 11px;
  background-color: var(--bg-secondary);
  transition: all 0.3s ease;
  padding: 40px 20px;
}

.best-offer-listing ul li:nth-child(2) {
  margin: 0 20px;
}

.best-offer-listing ul li:hover {
  background: var(--bg-secondary);
}

.best-offer-listing ul li a {
  flex: 0 0 auto;
}

.best-offer-listing.best-offer-listing--4 ul {
  flex-wrap: wrap;
}

.best-offer-listing.best-offer-listing--4 ul li {
  margin-right: 20px;
  margin-bottom: 20px;
  width: calc(50% - 10px);
}

.best-offer-listing.best-offer-listing--4 ul li:before {
  display: none !important;
}

.best-offer-listing.best-offer-listing--4 ul li:nth-child(2) {
  margin: 0 20px 20px 0;
}

.best-offer-listing.best-offer-listing--4 ul li:nth-child(2n + 2) {
  margin-right: 0;
}

.best-offer-listing.best-offer-listing--4 .best-offer-icon {
  height: 150px;
  width: 180px;
}

.best-offer-listing.best-offer-listing--4 ul li h4 {
  font-weight: 600;
  padding-bottom: 0;
}

.best-offer-listing.best-offer-listing--4 ul li p {
  margin-bottom: 35px;
}

.best-offer-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.best-offer-icon figure img {
  display: block;
  width: 100%;
  height: auto;
}

.best-offer-icon figure svg path:not(.outline) {
  fill: var(--text-color);
}

.best-offer-icon figure svg path.outline {
  stroke: var(--text-color);
}

.best-offer-icon figure svg circle,
.best-offer-icon figure svg polygon {
  fill: var(--text-color);
}

.best-offer-listing ul li h4 {
  padding-bottom: 36px;
  max-width: 280px;
  margin: auto;
}

/* Information image Grid */

.information-grid.information-grid--cards ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 32px;
  margin-bottom: 20px;
}

.information-grid.information-grid--cards ul li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border-radius: 11px;
  background-color: var(--bg-secondary);
}

@media (max-width: 1350px) {
  .information-grid.information-grid--cards ul {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .information-grid.information-grid--cards ul li {
    max-width: unset;
    max-height: unset;
  }
}

.information-grid.information-grid--cards ul li img {
  height: 100%;
  width: auto;
  object-fit: cover;
  border-top-left-radius: 11px;
  border-bottom-left-radius: 11px;
}

@media (max-width: 767px) {
  .information-grid.information-grid--cards ul li {
    grid-template-columns: minmax(0, 1fr);
  }

  .information-grid.information-grid--cards ul li img {
    border-top-left-radius: 11px;
    border-top-right-radius: 11px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    height: auto;
    object-fit: unset;
  }
}

.information-grid.information-grid--cards ul li div {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  padding: 24px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  position: relative;
}

.information-grid.information-grid--cards ul li div h4 {
  font-size: 24px;
  padding: 0;
  margin: 0;
  color: var(--color-blue);
}

.information-grid.information-grid--cards ul li div:before {
  display: none;
}

.information-grid.information-grid--cards ul li div p {
  font-size: 20px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  padding-bottom: unset;
}

.information-grid.information-grid--cards ul li div a {
  font-size: 18px;
}

.information-grid.information-grid--cards ul li div a:hover i {
  margin-left: 16px;
}

.information-grid.information-grid--cards ul li div a:before {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.information-cards__readmore {
  display: flex;
  justify-content: center;
}

/* Information search */

.information-search {
  display: flex;
  flex-direction: column;
}

.information-search__title {
  width: 100%;
  font-size: 2.4375rem;
  font-weight: bold;
  color: var(--text-color);
  line-height: 1.2em;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
  display: flex;
  white-space: nowrap;
}

.search-title__line {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: lightgray;
  margin-bottom: 20px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.search-title__line:first-of-type {
  margin-right: 10px;
}

.search-title__line:last-of-type {
  margin-left: 10px;
}

@media (max-width: 1150px) {
  .search-title__line {
    display: none;
  }
}

.information-search {
  margin-bottom: 40px;
}

.information-search__input {
  position: relative;
  align-self: center;
  width: 700px;
  border-radius: 30px;
  padding: 10px 15px 10px 30px;
  color: var(--text-color);
  font-size: 1rem;
  background: url("../images/icons/magnifying-glass-light.svg") no-repeat scroll
    15px 15px;
  background-size: 20px;
  background-position: 95% 50%;
  padding-right: 60px;
  text-overflow: ellipsis;
}

.dark-mode .information-search__input {
  background-color: var(--bg-tertiary);
}

@media (max-width: 767px) {
  .information-search__title {
    font-size: 1.5rem;
    width: 100%;
    white-space: normal;
  }

  .information-search__input {
    width: 100%;
  }
}

.information-result span {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 20px;
}

.information-result ul {
  column-count: 4;
}

@media (max-width: 1150px) {
  .information-result ul {
    column-count: 3;
  }
}

@media (max-width: 900px) {
  .information-result ul {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .information-result ul {
    column-count: 1;
  }
}

.information-result ul li {
  margin-bottom: 10px;
  break-inside: avoid;
}

.information-result ul li a {
  font-size: 1.125rem;
  text-decoration: none;
  color: var(--color-blue);
  position: relative;
}

.information-result ul li a:hover {
  text-decoration: underline;
}

.information-result--no-result {
  display: none;
  justify-content: center;
  align-items: center;
}

/* Overview Grid */

.overview-grid.overview-grid--cards ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 32px;
  margin-bottom: 20px;
}

@media (max-width: 1350px) {
  .overview-grid.overview-grid--cards ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .overview-grid.overview-grid--cards ul {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.overview-grid.overview-grid--cards ul li {
  width: 100%;
  border-radius: 11px;
  background-color: #0e4366;
  transition: all 0.3s ease;
  padding: 40px 24px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.overview-grid.overview-grid--cards ul li h4 {
  font-size: 24px;
  padding: 0;
  margin: 0;
  color: white;
}

.overview-grid.overview-grid--cards ul li:before {
  display: none;
}

.overview-grid.overview-grid--cards ul li p {
  font-size: 20px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  padding-bottom: unset;
  color: white;
}

.overview-grid.overview-grid--cards ul li a {
  font-size: 18px;
}

.dark-mode .overview-grid.overview-grid--cards ul li a {
  color: #fff;
}

.dark-mode .information-result ul li a {
  color: #fff;
}

.overview-grid.overview-grid--cards ul li a:hover i {
  margin-left: 16px;
}

.overview-grid.overview-grid--cards ul li a:before {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.overview-grid.overview-grid--2 ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .overview-grid.overview-grid--2 ul {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.information-page__subtitle {
  width: 50%;
}

@media (max-width: 967px) {
  .information-page__subtitle {
    width: 100%;
  }
}

/* Home Comment */

.home-comment-main {
  width: 100%;
  background: url(../images/home_comment_image.png) no-repeat top center;
  background-size: cover;
}

.home-comment-inner {
  width: 100%;
}

.home-comment-box {
  margin: 50px 0 120px 0;
  position: relative;
  float: right;
  margin-right: 180px;
  padding: 40px 50px;
  background-color: var(--bg-body);
  max-width: 510px;
  border-radius: 10px;
}

.home-comment-box.first {
  float: left;
  margin: 120px 0 0 0;
  max-width: 420px;
}

.home-comment-box:before {
  width: 30px;
  height: 15px;
  background: var(--bg-body);
  position: absolute;
  left: -10px;
  top: 50%;
  content: "";
  transform: rotate(45deg);
}

.home-comment-box.first:before {
  left: auto;
  right: -10px;
}

/* Tips */

.home-tips {
  padding: 50px 0 100px;
}

.home-tips-inner {
  width: 100%;
}

.home-tips h2 {
  font-size: 2.4375rem;
  text-align: center;
  margin: auto;
  padding-bottom: 2rem;
}

.home-tips:not(.stap-result-tips) ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  max-height: 620px;
  overflow: hidden;
  margin-bottom: 2rem;

  @media screen and (max-width: 860px) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  @media screen and (max-width: 520px) {
    grid-template-columns: minmax(0, 1fr);
  }
}

.home-tips ul.active {
  max-height: 4000px;
}

.home-tips .filters-result-box {
  text-align: left;
}

.home-tips .result-box-text {
  background: var(--bg-secondary);
  padding: 28px;
  transition: background-color 0.3s ease;
}

.home-tips .result-box-text h3 {
  font-size: 24px;
}

.home-tips .result-box-more {
  color: var(--color-blue);
  position: relative;
}

.home-tips .filters-result-box p {
  margin-bottom: 1rem;
}

.home-tips .result-box-more:after {
  content: url("../images/icon-arrow-right.svg");
  display: inline-block;
  height: 0.9375rem;
  width: 1.09375rem;
  transform: translate(10px, 2px);
}

.home-tips .filters-result-box:hover {
  text-decoration: none;
}

.home-tips .filters-result-box:hover .result-box-text {
  background: var(--color-blue);
}

.home-tips .filters-result-box:hover h3,
.home-tips .filters-result-box:hover p {
  color: white;
}

.home-tips .filters-result-box:hover .result-box-more {
  color: white;
}

.home-tips .filters-result-box:hover .result-box-more:after {
  content: url("../images/icon-arrow-right-white.svg");
}

.home-tips-more {
  background: transparent;
  border: 0;
  color: var(--color-blue);
  cursor: pointer;
  display: block;
  font-size: 18px;
  margin: 0 auto;
  position: relative;
}

.home-tips-more:after {
  background: url("../images/icon-plus.svg") top left / contain no-repeat;
  content: "";
  display: inline-block;
  height: 15px;
  width: 15px;
  transform: translate(8px, 2px);
}

/* Home-content */

.home-content {
  padding: 50px 0px;
  background: var(--bg-secondary);
}

.home-content .readmore {
  text-decoration: underline;
  color: var(--text-color);
}

.home-content .readmore:after {
  content: url(../images/icon-carrot.svg);
  display: inline-block;
  transform: translate(0.5rem, -2px);
}

.home-content .readmore.active:after {
  transform: translate(0.5rem, 0px) rotate(180deg);
}

.home-content .readmore:hover {
  text-decoration: none;
}

.home-content p {
  margin-bottom: 20px;
  line-height: 1.7em;
}

p a,
.zorgen-right li a {
  text-decoration: underline;
}

p a:hover,
.zorgen-right li a:hover {
  text-decoration: none;
}

.home-content .rounded-button {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.home-content .readmore.active {
  text-decoration: none;
}

.home-content .innertext {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.home-content .innertext.open {
  max-height: 1000px;
}

.c-ervaring__container-title {
  font-size: 2.5rem;
  color: var(--text-color);
  margin-bottom: 40px;
}

.c-ervaring__container-card {
  display: grid;
  grid-template-columns: 1fr 448px;
  gap: 15px;
  margin-bottom: 15px;
  background-color: var(--bg-body);
}

.c-ervaring__container-card:nth-child(even) {
  grid-template-columns: 448px 1fr;
}

.c-ervaring__container-card:last-child a.rounded-button br {
  display: none;
}

.c-ervaring__container-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--color-blue);
  color: var(--text-color-secondary);
  border-radius: 30px;
  padding: 24px;
  min-height: 644px;
}

.c-ervaring__container-card:nth-child(even) .c-ervaring__container-info {
  background-color: var(--bg-primary);
  color: var(--text-color);
}

.c-ervaring__container-card:nth-child(3n) .c-ervaring__container-info {
  background-color: var(--color-blue-transparent);
}

.c-ervaring__container-card:nth-child(even) .c-ervaring__container-info h3,
.c-ervaring__container-card:nth-child(even) .c-ervaring__container-age,
.c-ervaring__container-card:nth-child(even) .c-ervaring__container-quote {
  color: var(--text-color);
}

.c-ervaring__container-card:nth-child(even) .c-ervaring__container-quote i {
  color: var(--color-blue);
}

.c-ervaring__container-card:nth-child(even) .c-ervaring__container-info p {
  border-color: var(--text-color);
}

.c-ervaring__container-card:last-child {
  grid-template-columns: 1fr;
}

.c-ervaring__container-card:last-child .c-ervaring__container-info {
  background-color: var(--bg-secondary);
  align-items: flex-start;
  min-height: inherit;
}

.c-ervaring__container-card:last-child p {
  border: 0;
  padding: 0;
  font-size: 2.5rem;
  line-height: 1.2;
  width: calc(100% - 448px);
  margin-bottom: 40px;
}

.c-ervaring__container-info h3 {
  color: var(--text-color-secondary);
  font-size: 2.875rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  line-height: 1;
}

.c-ervaring__container-info p {
  font-size: 1.375rem;
  border-top: 1px solid var(--text-color-secondary);
  margin: 0;
  padding-top: 19px;
  line-height: 30px;
}

.dark-mode .c-ervaring__container-card .c-ervaring__container-quote,
.dark-mode .c-ervaring__container-info h3,
.dark-mode .c-ervaring__container-info p,
.dark-mode .c-ervaring__container-age,
.dark-mode .c-ervaring__container-quote i {
  color: var(--text-color) !important;
}

.c-ervaring__container-age {
  font-size: 1.75rem;
  color: var(--text-color-secondary);
  font-weight: normal;
}

.c-ervaring__container-video {
  overflow: hidden;
  position: relative;
}

.c-ervaring__container-video iframe,
.c-ervaring__container-video .video-js {
  width: 100%;
  height: 100%;
  border: 0;
}

.c-ervaring__container-video .vjs-control-bar {
  bottom: 0 !important;
  top: inherit !important;
}

.vjs-poster {
  background: var(--bg-body) !important;
}

.c-ervaring__container-video .video-unmute-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  background-color: var(--color-blue);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  opacity: 0.9;
  border: 0;
  cursor: pointer;
  font-size: 3rem;
}

.c-ervaring__container-quote {
  font-size: 1.5rem;
  color: var(--text-color-secondary);
  line-height: 34px;
  margin-bottom: 19px;
}

.c-ervaring__container-quote i {
  color: var(--bg-primary);
  font-size: 1.125rem;
}

.c-ervaring__container-quote i:first-child {
  margin-right: 8px;
}

.c-ervaring__container-quote i:last-child {
  margin-left: 8px;
}

/* Filters */

.filters {
  border-radius: 11px;
  width: 100%;
  margin-bottom: 60px;
  display: table;
  background: rgba(255, 255, 255, 0.23);
  padding: 35px 35px 15px 35px;
}

.filters h5 {
  display: table-cell;
  vertical-align: top;
  line-height: 1.5em;
  padding-right: 35px;
  width: 215px;
  padding-top: 12px;
}

.filters-inner {
  display: table-cell;
  vertical-align: top;
  width: auto;
}

.filters-inner ul {
  margin: 0px -10px;
}

.filters-inner ul li {
  display: inline-block;
  vertical-align: top;
  padding: 0px 10px 20px 10px;
}

/* Filter results */

.filters-result {
  width: 100%;
}

.filters-result__heading {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 767px) {
  .filters-result__heading {
    font-size: 32px;
    /* margin-bottom: 10px; */
  }
}

.c-home-tips {
  padding-block: 60px;
}

.c-home-tips .filters-result ul li .filters-result-box {
  text-align: left;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.c-home-tips:not(.c-home-tips__themas)
  .filters-result
  ul
  li
  .filters-result-box {
  background-color: var(--color-blue-transparent) !important;
}

.dark-mode
  .c-home-tips:not(.c-home-tips__themas)
  .filters-result
  ul
  li
  .filters-result-box
  h3,
.dark-mode
  .c-home-tips:not(.c-home-tips__themas)
  .filters-result
  ul
  li
  .filters-result-box
  a,
.dark-mode
  .c-home-tips:not(.c-home-tips__themas)
  .filters-result
  ul
  li
  .filters-result-box
  p {
  color: var(--text-color) !important;
}

.c-home-tips:not(.c-home-tips__themas)
  .filters-result
  ul
  li:nth-child(3n + 2)
  .filters-result-box {
  background-color: var(--color-blue) !important;
}

.c-home-tips .filters-result-box p,
.c-home-tips .filters-result-box h3 {
  color: var(--text-color-secondary);
}

.c-home-tips .filters-result-box p a {
  color: var(--text-color-secondary);
  text-decoration: underline;
}

.c-home-tips .result-box-image {
  max-height: 434px;
}

.c-home-tips .result-box-text {
  position: relative;
  padding: 40px 25px;
}

.c-home-tips .result-box-text h3 {
  padding-bottom: 12px;
  font-size: 1.5rem;
  font-weight: 600;
}

.c-home-tips a.rounded-button {
  position: absolute;
  top: -25px;
  left: 13px;
  border-color: var(--bg-primary);
  border-radius: 25px;
  height: 50px;
  padding-right: 11px;
  display: flex;
  align-items: center;
}

.c-home-tips a.rounded-button:hover {
  background-color: var(--text-color-secondary) !important;
  border-color: var(--text-color-secondary) !important;
}

.c-home-tips a.rounded-button i {
  height: 35px;
  width: 35px;
}

.c-home-tips .filters-result ul li:hover .filters-result-box {
  background-color: var(--color-blue-transparent);
}

.c-home-tips .filters-result ul li:hover .result-box-text a.rounded-button {
  background-color: var(--bg-primary);
  border-color: var(--bg-primary);
}

.c-home-tips .filters-result__heading {
  text-align: left;
  line-height: 40px;
  margin-bottom: 32px;
}

.c-home-tips.c-home-tips__themas .filters-result ul li .filters-result-box {
  background-color: var(--bg-secondary);
}

.c-home-tips__themas .filters-result ul li:hover .result-box-text h3,
.c-home-tips__themas .filters-result-box p,
.c-home-tips__themas .filters-result-box h3 {
  color: var(--text-color);
}

.filters-result ul {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.c-home-tips.c-home-tips__themas .filters-result ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));

  @media screen and (max-width: 768px) {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.filters-result ul li {
  display: block;
  vertical-align: top;
  padding: 0;
  text-align: left;
  float: left;
}

.filters-result ul li.tip-hidden {
  display: none;
}

.filters-result-box {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  border-radius: 20px;
  background-color: var(--bg-body);
  transition: all 0.3s ease;
  overflow: hidden;
  text-align: center;
}

.filters-result-box.filters-result-box--light {
  background-color: var(--bg-secondary);
}

.dark-mode .stap-result-tips .filters-result-box {
  background-color: var(--bg-primary);
}

.filters-result-box.yellow {
  display: flex;
  text-align: center;
}

.filters-result-box.yellow .result-box-text {
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

.filters-result-box.yellow h3 {
  padding-bottom: 0;
}

.filters-result-box.yellow a {
  margin-top: auto;
  align-self: center;
}

.result-box-image {
  width: 100%;
  max-height: 240px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.result-box-image.svg {
}

.dark-mode .result-box-image.svg figure svg path:not(.outline) {
  fill: var(--text-color);
}

.dark-mode .result-box-image.svg figure svg path.outline {
  stroke: var(--text-color);
}

.dark-mode .result-box-image.svg figure svg circle,
.dark-mode .result-box-image.svg figure svg polygon {
  fill: var(--text-color);
}

.result-box-image.svg figure {
  min-height: 240px;
}

.result-box-image.svg figure img,
.result-box-image.svg figure svg {
  margin: 90px auto 0;
  min-width: auto;
}

.result-box-image.svg.icon figure img,
.result-box-image.svg.icon figure svg {
  margin: 40px auto 0;
}

.result-box-image figure {
  display: block;
}

.result-box-image figure img,
.result-box-image figure svg {
  display: block;
  width: auto;
  height: auto;
  max-height: 240px;
  min-width: 100%;
}

.result-box-text {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  padding: 40px;
}

.result-box-text .rounded-button {
  margin-top: auto;
}

.result-box-text h3 {
  padding-bottom: 36px;
  transition: all 0.3s ease;
}

.filters-result ul li:hover .filters-result-box {
  background: #4d8fcc;
}

.filters-result ul li:hover .filters-result-box.yellow {
  background: var(--bg-primary);
}

.filters-result ul li:hover .filters-result-box.yellow h3 {
  color: var(--text-color);
}

.filters-result ul li:hover .result-box-text h3 {
  color: var(--text-color-secondary);
}

.filters-result ul li:hover .result-box-text a.rounded-button {
  background-color: var(--bg-body);
  border-color: var(--bg-body);
}

.filters-result ul li:hover .result-box-text a.rounded-button.fade-in-blue {
  color: var(--color-blue);
}

.filters-result
  ul
  li:hover
  .result-box-text
  a.rounded-button.fade-in-blue:hover {
  color: var(--text-color-secondary);
}

/* Footer */

.footer-top-wrapper {
  background: var(--bg-primary);
}

.footer-gray--variant {
  background: var(--color-blue);
}

section.footer-cookie-message {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: rgba(45, 41, 38, 0.75);
  z-index: 999;
}

section.footer-cookie-message p {
  color: #fff;
  padding: 40px 0;
}

section.footer-cookie-message p #closeCookieMessage {
  text-decoration: underline;
}

section.footer-cookie-message p #closeCookieMessage:hover {
  cursor: pointer;
  text-decoration: none;
}

section.footer-cookie-message.animate-hide {
  animation: footer-cookie 0.3s forwards;
}

section.footer-cookie-message.hide {
  opacity: 0;
  z-index: -1;
}

@keyframes footer-cookie {
  0% {
    opacity: 1;
    z-index: 1;
  }

  99% {
    opacity: 0;
    z-index: 1;
  }

  100% {
    opacity: 0;
    z-index: -1;
  }
}

footer ul li a {
  font-size: 1rem;
}

.footer {
  width: 100%;
}

.footer-white {
  width: 100%;
  padding: 70px 0px 100px 0px;
  background: var(--bg-body);
}

.footer-white-inner {
  width: 100%;
}

.footer-gray-inner {
  display: flex;
  flex-direction: column;
}

.footer-logo-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.footer-logo {
  background: url("../images/logo.svg") top left / contain no-repeat;
  display: block;
  height: 72px;
  width: 250px;
}

.dark-mode .footer-logo {
  background-image: url("../images/logo-white.svg");
}

.footer-menu-main {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.footer-menu h2 {
  font-size: 1.25rem;
  padding-bottom: 10px;
  font-weight: 600;
}

.footer-menu h2 i {
  display: none;
}

.footer-menu h2 a {
  color: var(--text-color);
}

.footer-menu ul li {
  width: 100%;
  padding-bottom: 6px;
}

.footer-menu ul li:last-child {
  padding-bottom: 0;
}

.footer-menu ul li a {
  color: var(--text-color);
  transition: all 0.3s ease;
}

.footer-menu ul li a:hover,
.footer-menu ul li a.active {
  color: var(--color-blue);
}

.footer-bottom-wrapper,
.footer-top-wrapper {
  padding: 40px 0px;
  width: 100%;
}

.footer-bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 80px;
}

.footer-bottom-wrapper .abbvie-logo {
  width: 200px;
  height: auto;
  margin: 0 40px 0 0;
}

.footer-bottom-wrapper .abbvie-logo a img {
  max-width: none;
  width: 100%;
  height: auto;
  display: block;
}

.footer-bottom-wrapper .abbvie-nav ul li {
  float: left;
  margin-left: 30px;
  color: #ffffff;
  line-height: 1.5em;
  font-weight: 400;
  letter-spacing: 0.3px;
  position: relative;
}

.footer-bottom-wrapper .abbvie-nav ul li a {
  display: inline-block;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  line-height: 1;
}

.footer-bottom-wrapper .abbvie-nav ul li a:hover {
  text-decoration: underline;
}

.footer-bottom-wrapper .zinc p {
  color: #ffffff;
  line-height: 1;
  font-size: 0.875rem;
}

.footer-bottom-wrapper .up {
  float: right;
  margin: 40px 0 0 0;
}

.footer-bottom-wrapper .up button.back-to-top {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1rem;
}

.footer-bottom-wrapper .up button.back-to-top:after {
  content: "";
  float: right;
  margin: -5px 0 0 10px;
  width: 30px;
  height: 30px;
  background: url(/images/icons/arrow_right_black.svg) #ffffff no-repeat center
    center;
  transform: rotate(-90deg);
  transition: all 0.3s ease;
}

.footer-bottom-wrapper .up button.back-to-top:hover {
  cursor: pointer;
}

.footer-bottom-wrapper .up button.back-to-top:hover:after {
  background: url(/images/icons/arrow_right_black.svg) var(--bg-body) no-repeat
    center right;
}

.menu-icon,
.menu-close {
  display: none;
}

/* title with share buttons */

div.title-share {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100vw;
}

.title-share h1 {
  flex-shrink: 0;
}

.title-share .title-share__line {
  flex-grow: 1;
  width: 100%;
  margin-left: 1rem;
  margin-right: 1rem;
  border-bottom: 1px solid var(--bg-quinary);
}

.title-share__items {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: -75px;
  flex-shrink: 0;
}

@media (max-width: 1180px) {
  .title-share__items {
    display: none;
  }

  .title-share__line {
    display: none;
  }

  .title-share h1 {
    flex-shrink: unset;
  }
}

.title-share__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

a.title-share__item p {
  font-size: 16px;
  padding-bottom: 0;
}

.title-share__button {
  height: 50px;
  width: 50px;
  border-radius: 4px;
  background-color: var(--bg-secondary);
}

.share-button__share {
  background-image: url(/images/icons/share-blue-transparent.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50%;
  height: 50px;
  width: 50px;
  display: block;
}

.share-button__print {
  background-image: url(/images/icons/print-blue-transparent.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50%;
  height: 50px;
  width: 50px;
  display: block;
}

/********* Patient stappen ************/

.patient-stap-main {
  width: 100%;
  padding: 0px 0px 100px 0px;
}

.stap-headline-main {
  background-color: var(--bg-secondary);
  padding: 60px 0px 40px 0px;
  width: 100%;
  margin-bottom: 40px;
}

.stap-headline-main.smaller {
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.stap-progress.smaller {
  padding-bottom: 10px;
}

.stap-headline {
  width: 100%;
}

.stap-headline h2 {
  line-height: 1.28em;
  letter-spacing: 0.3px;
  float: left;
}

.stap-headline-button {
  font-size: 21px;
  font-weight: 600;
  line-height: 39px;
  letter-spacing: 0.3px;
  color: var(--text-color);
  display: inline-block;
  padding-right: 56px;
  margin-left: 150px;
  position: relative;
  transition: all 0.3s ease;
}

.stap-headline-button:after {
  content: "";
  width: 39px;
  height: 39px;
  border: 2px solid var(--text-color);
  border-radius: 50%;
  background: url(/images/icons/arrow_right_black.svg) no-repeat center center;
  background-size: 16px auto;
  display: block;
  position: absolute;
  right: 0px;
  top: -2px;
  transition: all 0.3s ease;
}

.dark-mode .stap-headline-button:after {
  background-image: url("../images/icons/arrow_right_white.svg");
}

.stap-headline-button.active:after {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.stap-headline-button span.less {
  display: none;
}

.stap-headline-button span.more {
  display: inline;
}

.stap-headline-button.active span.less {
  display: inline;
}

.stap-headline-button.active span.more {
  display: none;
}

.stap-headline-show {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: all 0.2s ease;
}

.stap-headline-show.active {
  max-height: 540px;
}

.stap-headline-show p {
  padding-bottom: 20px;
}

.stap-headline-show p:last-child {
  padding-bottom: 0px;
}

.stap-headline-show p strong {
  display: block;
  font-weight: 600;
}

.stap-ques-main {
  width: 100%;
}

.stap-progress {
  width: 100%;
  padding-bottom: 30px;
}

.progress-bar {
  border-radius: 5px;
  background-color: #fffae2;
  width: 100%;
  height: 10px;
  position: relative;
  overflow: hidden;
}

.dark-mode .progress-bar {
  background-color: var(--bg-secondary);
}

.progress-bar-run {
  border-radius: 5px;
  background-color: #f7da6d;
  width: 0%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
}

.stap-ques_ans {
  width: 100%;
  padding-bottom: 40px;
}

.stap-ques-content {
  width: 100%;
}

.stap-ques-content p.question {
  font-size: 1.375rem;
  line-height: 1.73em;
  padding-bottom: 20px;
}

.stap-ques-content p.vraag strong {
  font-weight: bold;
}

.stap-ques_ans ul li {
  width: 100%;
  padding-bottom: 1rem;
}

input[type="radio"],
input[type="checkbox"] {
  opacity: 0;
  position: absolute;
}

input[type="radio"] + label,
input[type="checkbox"] + label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  font-size: 1.25rem;
  line-height: 1.5em;
  letter-spacing: 0.3px;
  color: var(--text-color);
  background: url(../images/ques_radio_unchecked.png) no-repeat left 0px;
  background-size: 30px auto !important;
  padding-left: 45px;
}

label.input-label {
  color: var(--text-color);
  font-size: 1.25rem;
  line-height: 1.5em;
  letter-spacing: 0.3px;
}

input[type="radio"]:checked + label {
  background: url(../images/ques_radio_checked.png) no-repeat left 0px;
  color: var(--text-color);
}

input[type="checkbox"] + label {
  background: url(../images/ques_checkbox_unchecked.png) no-repeat left 0px;
}

input[type="checkbox"]:checked + label {
  background: url(../images/ques_checkbox_checked.png) no-repeat left 0px;
  color: var(--text-color);
}

.ans-check input {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  opacity: 0;
  cursor: pointer;
}

.ques-next-prev {
  width: 100%;
}

.ques-next-prev ul li {
  float: left;
}

.ques-next-prev ul li:last-child {
  float: right;
  padding-left: 15px;
}

.ques-next-prev ul li a:hover {
  opacity: 0.9;
}

.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.stap-ques_range {
  max-width: 940px;
  padding-bottom: 100px;
  padding-top: 20px;
}

.stap-ques_range .irs-min,
.stap-ques_range .irs-max {
  display: none !important;
}

.irs-line {
  height: 6px !important;
  background: #e6e6e6 !important;
  border-radius: 10px !important;
  top: 28px !important;
}

.irs-bar,
.irs-bar-edge {
  height: 10px !important;
  background: #008edb !important;
}

.irs-bar-edge {
  border-radius: 10px 0px 0px 10px !important;
  width: 13px !important;
}

.irs-slider {
  background: var(--bg-body) !important;
  border: 7px solid #008edb !important;
  border-radius: 50%;
  width: 25px !important;
  height: 25px !important;
  top: 17px !important;
}

.irs-single {
  top: 50px !important;
  padding: 10px 16px !important;
  background: #168de2 !important;
  font-size: 1.125rem !important;
  color: var(--text-color-secondary) !important;
  z-index: 2;
}

.irs-from::after,
.irs-to::after,
.irs-single::after {
  bottom: inharit;
  top: -6px !important;
  border-bottom-color: #168de2 !important;
  border-top-color: transparent !important;
}

.irs-grid-pol.small {
  display: none !important;
}

.irs-grid-text {
  padding: 10px !important;
  font-size: 1.125rem !important;
  color: #9b9b9b !important;
  bottom: -16px !important;
}

.actual-value {
  display: none;
}

.irs-grid-text:hover {
  color: #000000 !important;
  cursor: pointer;
}

.stap-results {
  padding-bottom: 30px;
  width: 100%;
}

.stap-results-data {
  width: 100%;
}

.stap-results-data strong {
  padding-bottom: 4px;
}

.stap-results-data strong.answer,
.stap-results-data ul.answer {
  display: block;
  padding-bottom: 40px;
}

.stap-results-data ul {
  padding-bottom: 40px;
}

.stap-results-data ul li {
  font-size: 1.25rem;
  padding-left: 32px;
  position: relative;
  padding-bottom: 4px;
}

.stap-results-data ul li:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0093e3;
  position: absolute;
  left: 0px;
  top: 8px;
}

.print-to-send {
  width: 100%;
  margin: 20px 0;
}

.print-to-send ul li {
  float: left;
  padding-right: 50px;
}

.stap-result-tips {
  background: var(--bg-body);
}

.home-tips-inner h5 {
  padding-bottom: 40px;
}

/************************** Content pages ******************************/


/* TODO: Remove when placeholders are removed */

.c-quote__panel:has(img[data-placeholder="true"]) {
  grid-template-columns: 1fr;
}
.c-quote__figure:has(img[data-placeholder="true"]) {
  display: none !important;
  height: 0 !important;
  width: 0 !important;
}
.c-experience__panel--horizontal:has(img[data-placeholder="true"]) {
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
}
.c-experience__figure:has(img[data-placeholder="true"]) {
  display: none !important;
  height: 0 !important;
  width: 0 !important;
}
.c-person-modal__figure:has(img[data-placeholder="true"]) {
  display: none !important;
  height: 0 !important;
  width: 0 !important;
}

.zorgen-content {
  width: 100%;
  padding: 80px 0px;
}

.zorgen-content-inner {
  width: 100%;
  display: flex;
}

.zorgen-left {
  width: 27%;
  padding-right: 30px;
  position: sticky;
  top: 40px;
  align-self: flex-start;
}

/* on mobile, position static for zorgen-left */
@media (max-width: 767px) {
  .zorgen-left {
    position: static;
    flex-direction: column;
  }

  .zorgen-content-inner {
    display: unset;
  }
}

.zorgen-right {
  width: 73%;
}

.zorgen-right-inner {
  width: 100%;
}

.zorgen-right-text {
  width: 100%;
  padding-bottom: 40px;
}

.zorgen-right-text p,
.zorgen-right-text h2 {
  line-height: 1.7em;
  padding-bottom: 20px;
}

.zorgen-right-text h2 {
  padding-bottom: 0px;
}

.zorgen-right-text h2 span {
  padding-right: 10px;
}

.zorgen-right-text h3 {
  font-weight: 600;
  line-height: 2.125rem;
}

.zorgen-right-text img {
  display: block;
  height: auto;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

.c-experience__figure img {
  border-radius: 0 !important;
}

.zorgen-right-text .head-img {
  max-width: 590px;
  margin: 0 0 75px;
}

.zorgen-right-text .slider {
  width: 100%;
  max-width: 830px;
  overflow: hidden;
  position: relative;
}

.zorgen-right-text .slider.at-end {
  animation: wiggle 0.2s ease 1;
}

@keyframes wiggle {
  0% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-10px);
  }

  75% {
    transform: translateX(10px);
  }

  100% {
    transform: translateX(0);
  }
}

.zorgen-right-text .slider .slider-btn {
  border: 0;
  border-radius: 50%;
  float: left;
  width: 35px;
  height: 35px;
  left: 20px;
  top: 50%;
  position: absolute;
  z-index: 2;
  transform: translateY(-50%);
}

.zorgen-right-text .slider .slider-btn:hover {
  cursor: pointer;
}

.zorgen-right-text .slider .slider-btn img {
  width: 100%;
  height: auto;
  margin: 0;
}

.zorgen-right-text .slider .slider-btn.slick-disabled img {
  opacity: 0.25;
}

.zorgen-right-text .slider .slider-btn.btn-left img {
  transform: rotate(180deg);
}

.zorgen-right-text .slider .slider-btn.btn-right {
  right: 20px;
  left: auto;
}

.zorgen-right-text .slider ul {
  transition: all 0.2s ease;
  /* 15 slides */
  width: 1500%;
}

.zorgen-right-text .slider ul li {
  float: left;
  list-style: none;
  /* 100% / 16 slides */
  width: 6.66667%;
}

.zorgen-right-text .slider ul li:before {
  content: none;
  width: 0;
  height: 0;
}

.zorgen-right-text article ul {
  margin: 0;
  padding: 0;
}

.zorgen-right-text article ul li {
  list-style: none;
  font-size: 1.25rem;
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
}

.zorgen-right-text article ul li:before {
  content: "";
  background: #0093e3;
  width: 10px;
  height: 10px;
  float: left;
  border-radius: 5px;
  margin: 9px 10px 0 0;
  position: absolute;
  top: 0;
  left: 0;
}

.zorgen-right-text article ul.no-list-style li {
  padding-left: 0;
}

.zorgen-right-text article ul.no-list-style li:before {
  background: none;
  width: 0;
  height: 0;
}

.zorgen-right-text article ol:not(.c-cited ol) {
  margin-left: 19px;
}

.zorgen-right-text article ol:not(.c-cited ol) l {
  padding-left: 15px;
  list-style-position: outside;
  margin-bottom: 20px;
  font-size: 1.25rem;
  line-height: 1.7;
}

/* Back to top button */
.btn.btn--back-to-top {
  visibility: visible;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background-color: #141414;
  border: 0;
  border-radius: 8px;
  width: 50px;
  height: 50px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.btn.btn--back-to-top.hidden {
  visibility: hidden;
}

.btn.btn--back-to-top:hover {
  cursor: pointer;
}

i.arrow-top-white {
  background: url(/images/arrow-up-light.svg) no-repeat center center;
  background-size: 50%;
  width: 60%;
  height: 60%;
  display: block;
  position: relative;
}

/* Share & Print buttons */

.delen-printen-btns {
  width: 100%;
  margin: 60px 0;
  position: relative;
}

.delen-printen-btns .share-options {
  position: absolute;
  background: #fedc51;
  padding: 20px 54px 16px 20px;
  border-radius: 10px;
  top: -80px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.2s ease;
}

.delen-printen-btns .share-options i.x-black {
  width: 20px;
  height: 20px;
  background: url(../images/icons/x_black.svg);
  background-size: 20px 20px;
  position: absolute;
  top: 24px;
  right: 20px;
}

.delen-printen-btns .share-options i:hover {
  cursor: pointer;
}

.delen-printen-btns .share-options.visible {
  transform: translateY(0);
  opacity: 1;
}

.delen-printen-btns .share-options ul li {
  float: left;
  margin: 0 20px 0 0;
  line-height: 1;
}

.delen-printen-btns .share-options ul li:last-child {
  margin: 0;
  border-right: 1px solid #000;
  padding: 0 20px 0 0;
}

.delen-printen-btns ul.main-buttons li {
  display: inline-block;
  vertical-align: top;
  padding-right: 25px;
}

/* Beige section */

.heeft-section {
  width: 100%;
  background: var(--bg-secondary);
  border-radius: 11px;
  padding: 50px 36px;
}

.heeft-section h5 {
  padding: 0 0 40px 0;
}

.heeft-section-inner {
  width: 100%;
}

.heeft-left {
  width: 50%;
  float: left;
  padding-right: 30px;
}

.heaft-text {
  width: 100%;
}

.heaft-text p {
  line-height: 1.5em;
  color: var(--text-color);
  letter-spacing: 0.3px;
  font-weight: 400;
  padding-bottom: 30px;
}

.heaft-text ul li {
  margin-bottom: 20px;
}

.heaft-text ul li:last-child {
  margin-bottom: 0px;
}

.heaft-text a,
.heaft-text strong {
  line-height: 1.2em;
  color: #ff7700;
  display: inline-block;
  letter-spacing: 0.3px;
  font-weight: 600;
  text-decoration: underline;
}

.heaft-text a:hover {
  text-decoration: none;
}

.heeft-right p {
  padding-bottom: 5px;
  text-decoration: none;
  margin-bottom: 0px;
}

.heeft-right {
  width: 50%;
  float: right;
  border-left: 1px solid #000;
  padding-left: 30px;
}

.heeft-doebtn {
  width: 100%;
}

/* Yellow highlight */

.highlight {
  width: 100%;
  padding: 66px 66px 46px 66px;
  background: var(--bg-primary);
  border-radius: 11px;
  margin-bottom: 30px;
}

.highlight a {
  color: var(--text-color) !important;
  font-weight: 400 !important;
  text-decoration: underline;
}

.highlight a:hover {
  text-decoration: none;
}

/* Accordion */
.accordion {
}

.accordion-item {
  margin-bottom: 20px;
}

.accordion-item-header {
  background: url("../images/icon-plus.svg") center right 26px no-repeat
    var(--bg-body);
  border-radius: 8px;
  border: 1px solid rgba(122, 122, 122, 0.14);
  cursor: pointer;
  padding: 20px 48px 18px 32px;
}

.dark-mode .accordion-item-header {
  color: #fff;
}

.accordion-item-header.active {
  background-image: url("../images/icon-min.svg");
}

.accordion-item-header h2 {
  color: var(--color-blue);
}

.dark-mode .accordion-item-header h2 {
  color: #fff;
}

.accordion-item-content {
  background: var(--bg-secondary);
  display: none;
  padding: 40px 40px 46px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.accordion-item:first-child .accordion-item-content {
  display: block;
}

.accordion-item-content p:last-of-type {
  padding-bottom: 0;
}

.medicine-table {
  width: 100%;
  padding: 0px 0px 30px 0px;
}

.medicine-table-header p {
  font-size: 1.125rem;
  font-weight: 600;
}

.medicine-table-header,
.medicine-table-row {
  width: 100%;
  padding: 16px 0px;
  display: table;
  table-layout: fixed;
  border-bottom: 1px solid #f4f4f4;
}

.medicine-table-column {
  display: table-cell;
  vertical-align: middle;
  padding: 0px 4px;
}

.medicine-table p,
.medicine-tabl h3 {
  padding-bottom: 0px;
}

@media print {
  header,
  footer,
  .zorgen-left,
  .delen-printen-btns,
  .heeft-section,
  .stap-result-tips,
  .self-test-print-share-message,
  .zelf-test-print-to-send,
  .stap-headline-button,
  .stap-headline-show,
  .hide-for-print {
    display: none;
  }

  .print-pdf {
    padding: 20px;
    display: block !important;
  }

  .zorgen-right {
    width: 100%;
  }

  .stap-headline-main {
    padding: 0;
    margin: 0;
  }

  .stap-results-data strong.answer,
  .stap-results-data ul.answer {
    padding-bottom: 10px;
  }

  .stap-results-data ul li {
    padding-left: 0;
    padding-bottom: 0;
  }

  .stap-results-data ul li:before {
    display: none;
  }

  .stap-results-data p,
  .stap-results-data .list-answers {
    page-break-inside: avoid;
  }

  .stap-results-data .list-answers p {
    margin: 0;
    padding: 0;
  }
}

.half {
  width: 50%;
  float: left;
}

.btn {
  color: #000;
  display: inline-block;
  font-size: 21px;
  font-weight: 600;
  margin-top: 50px;
}

.btn.btn-back {
  background: url("/images/icons/arrow_left_black_circle.svg") top left
    no-repeat;
  padding-left: 45px;
}

.btn.btn-forward {
  background: url("/images/icons/arrow_right_black_circle.svg") top right 1px
    no-repeat;
  padding-right: 45px;
  float: right;
}

.is-flex {
  display: flex;
}

.panel {
  background: var(--bg-secondary);
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 50px 36px;
  text-align: center;
  width: calc(25% - 10px);
  margin-right: 20px;
}

.panel:last-child {
  margin-right: 0;
}

.panel img {
  margin: -20px auto 0;
  max-width: 140px;
}

.panel img + h2 {
  margin: 0;
}

.panel h2 {
  display: block;
  font-size: 1.625rem;
  font-weight: 600;
  padding-bottom: 0px;
  margin: 40px 0 0 0;
  width: 100%;
}

.panel p {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}

.panel a {
  align-self: center;
  margin-top: auto;
}

.panel.panel-yellow {
  background: #fff9de;
  text-align: left;
  width: calc(50% - 20px);
}

.panel.panel-yellow h2 {
  font-size: 1.5rem;
  padding: 0 0 40px 0;
  margin: 0;
}

.panel.panel-yellow p {
  padding-bottom: 30px;
}

.panel.panel-yellow a {
  align-self: flex-start;
}

.popup {
  background: var(--bg-body);
  position: absolute;
  top: 50px;
  left: 50%;
  width: calc(100% - 30px);
  padding: 10px;
  max-width: 760px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  border-radius: 5px;
}

.popup.popup-share-experience {
  width: calc(100% - 60px);
}

.popup .close {
  width: 50px;
  height: 50px;
  display: block;
  background-image: url(/images/icons/close-btn.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  top: 0px;
  right: -50px;
  cursor: pointer;
  z-index: 1;
}

.popup.open {
  display: block;
  visibility: visible;
  opacity: 1;
}

.overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 50px 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.dark-mode .overlay {
  background: rgba(255, 255, 255, 0.75);
}

.overlay.open {
  visibility: visible;
  opacity: 1;
  z-index: 10;
}

.overlay.nav-open {
  visibility: visible;
  opacity: 1;
  z-index: 5;
}

.input-with-span-wrapper {
  position: relative;
  display: inline-block;
}

.input-with-span-wrapper input {
  padding-right: 65px;
  width: 280px;
}

.input-with-span-wrapper span.text-in-input {
  position: absolute;
  right: 23px;
  top: 10px;
  font-size: 1.25rem;
}

label.greyed-out {
  color: #afafaf !important;
}

.button-test {
  background: var(--bg-body);
  border-radius: 1.5625rem;
  color: var(--text-color);
  font-size: 1.125rem;
  position: relative;
  padding: 8px 50px 6px 20px;
  vertical-align: top;
  margin-left: 32px;
  white-space: nowrap;
  margin-top: -8px;
  display: inline-block;
  text-shadow: 0.5px 0px 0px var(--text-color);
}

.button-test:hover {
  text-decoration: none;
}

.button-test:hover:after {
  right: 10px;
}

.button-test:after {
  background: url("../images/arrow-test.svg") top right no-repeat;
  content: "";
  height: 20px;
  width: 20px;
  position: absolute;
  top: 0.6875rem;
  right: 1.125rem;
  transition: all 0.3s ease;
}

.dark-mode .button-test:after {
  background-image: url("../images/arrow-test-white.svg");
}

.c-experience h2 {
  font-size: 2rem;
  font-weight: 700;
}

.c-experience h4 {
  font-size: 20px;
  font-weight: 500;
}

.c-experience h4 + ul {
  margin-top: 0.5rem;
}

.c-experience ul:not([class]),
.c-experience ul:not([class]) li {
  list-style: inside;
  list-style-type: disc;
}

.dark-mode .c-experience ul:not([class]),
.dark-mode .c-experience ul:not([class]) li {
  color: #fff;
}

.c-experience__intro {
  display: grid;
  grid-template-columns: 325px minmax(0, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.c-experience__panel {
  align-self: flex-start;
  background: #0e4366;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.c-experience__figure {
  padding: 0;
  margin: -2rem -2rem 0rem;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  overflow: hidden;
}

.c-experience__figure img {
  margin: 0 auto;
  overflow: hidden;
}

.c-experience__list {
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

.c-experience__list-item {
  border-top: 1px solid rgba(122, 122, 122, 0.27);
  font-size: 1rem !important;
  padding: 1rem 0 1rem 2rem !important;
  margin: 0 !important;
  position: relative;
  color: var(--text-color-secondary);
}

.dark-mode .c-experience__list-item {
  color: var(--text-color);
}

.c-experience__list-item:before {
  content: none !important;
}

.c-experience__list-item p,
.c-experience__list-item a {
  font-size: 1rem !important;
  margin: 0 !important;
  padding: 0 !important;
}

.c-experience__list-item:last-child {
  padding-bottom: 0;
}

.c-experience__icon {
  border-radius: 0 !important;
  max-height: 19px;
  max-width: 19px;
  margin: 0 !important;
  position: absolute;
  top: 1rem;
  left: 0;
}

.c-experience__icon g {
  opacity: 1;
}

.c-experience__icon path {
  stroke: var(--color-blue) !important;
}

.dark-mode .c-experience__icon path {
  stroke: #fff !important;
}

.c-experience__other {
  border-top: 1px solid rgba(122, 122, 122, 0.27);
  margin-top: 3.5rem;
  padding-top: 2rem;
}

.c-experience__other h3 {
  margin-bottom: 2rem;
}

.c-experience__other-item {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 130px;
  gap: 2rem;
  margin-bottom: 3.75rem;
}

.c-experience__other-item:nth-child(odd) .c-experience__other-avatar {
  grid-column: 3;
}

.c-experience__other-item:nth-child(odd) .c-experience__other-quote-balloon {
  right: -20px;
  left: auto;
  transform: rotate(180deg);
}

.c-experience__other-figure {
  padding: 0;
  margin: 0 0 0.5rem;
}

.c-experience__other-figure img {
  margin-bottom: 0 !important;
}

.c-experience__other-avatar {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  grid-column: 1;
  grid-row: 1;
}

.c-experience__other-avatar figure img {
  border-radius: 50%;
  overflow: hidden;
}

.c-experience__other-quote {
  background: var(--bg-secondary);
  border-radius: 8px;
  font-size: 23px;
  font-weight: 400;
  text-align: center;
  padding: 2rem 4rem;
  position: relative;
  grid-column: 2;
  grid-row: 1;
}

.c-experience__other-quote:before,
.c-experience__other-quote:after {
  background: url("/images/quote.svg") top left / contain no-repeat;
  content: "";
  height: 26px;
  width: 32px;
  position: absolute;
  top: 18px;
  left: 20px;
}

.c-experience__other-quote:after {
  top: auto;
  right: 20px;
  left: auto;
  bottom: 18px;
  transform: rotate(180deg);
}

.c-experience__other-quote-balloon {
  background: url("/images/triangle.svg") top left / contain no-repeat;
  height: 35px;
  width: 40px;
  position: absolute;
  top: 52px;
  left: -20px;
}

.dark-mode .c-experience__other-quote-balloon {
  background-image: url("../images/triangle-darker.svg");
}

.c-experience__other-quote a {
  display: block;
  font-size: 1.125rem;
  font-weight: 400;
  margin-top: 1rem;
}

.c-overlay {
  background-color: rgba(0, 0, 0, 0.58);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.275s ease;
}

.dark-mode .c-overlay {
  background-color: rgba(255, 255, 255, 0.58);
}

.c-overlay.c-overlay--active {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}

.modal-wrapper {
  display: flex;
}

.modal-side {
  padding: 0rem;
  width: 14rem;
}

.modal-side img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 750px) {
  .modal-side {
    display: none;
  }
}

.modal-content {
  flex: 2 0 0;
  padding: 2rem;
}

.modal-title {
  margin-bottom: 1rem;
}

.modal-text {
  margin-bottom: 1rem;
  font-size: 16px;
}

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.dash {
  list-style: none;
  margin-left: 0;
  padding-left: 1em;
}

.dash > li:before {
  display: inline-block;
  content: "-";
  width: 1em;
  margin-left: -1em;
}

.dash li {
  margin-bottom: 1rem;
}

.c-person-modal {
  background: #0e4366;
  border-radius: 8px;
  width: 325px;
  padding: 2rem;
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.275s ease;
}

.c-person-modal.c-person-modal--active {
  opacity: 1;
  visibility: visible;
  z-index: 11;
}

.c-person-modal__btn-close {
  background: url("/images/icon-close.svg") center center no-repeat #000000;
  border: 0;
  cursor: pointer;
  height: 60px;
  width: 64px;
  position: absolute;
  top: 8px;
  right: -64px;
  z-index: -1;
}

.c-person-modal__figure {
  padding: 0;
  margin: -2rem -2rem 0.5rem;
}

.c-person-modal__figure img {
  border-radius: 8px 8px 0 0;
}

.c-person-modal__heading {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-color-secondary);
}

.dark-mode .c-person-modal__heading {
  color: var(--text-color);
}

.c-person-modal a {
  display: block;
  font-size: 18px;
  text-align: center;
  margin-top: 1rem;
  color: var(--text-color-secondary);
  text-decoration: underline;
}

.dark-mode .c-person-modal a {
  color: var(--text-color);
}

.c-person-modal .c-experience__list-item:last-child {
  border-bottom: 1px solid rgba(122, 122, 122, 0.27);
  padding-bottom: 1rem;
}

.c-home-exprience {
  background: var(--bg-secondary);
  padding: 100px 0;
}

.c-home-exprience__heading {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin: auto;
  padding-bottom: 70px;
}

.c-home-exprience__contain {
  max-width: 945px;
  margin: 0 auto;
  padding: 0px 15px;
}

.c-home-exprience__contain
  .c-experience__other-item:nth-child(odd)
  .c-experience__other-quote {
  justify-self: flex-end;
}

.c-home-exprience__contain .c-experience__other-item:last-child {
  margin-bottom: 0;
}

.c-home-exprience__contain .c-experience__other-quote {
  background: var(--bg-body);
  max-width: 548px;
}

.c-home-exprience__contain .c-experience__other-quote-balloon {
  background-image: url("/images/triangle-white.svg");
}

.dark-mode .c-home-exprience__contain .c-experience__other-quote-balloon {
  background-image: url("/images/triangle-dark.svg");
}

/* Start .c-home-sleep */

.c-home-sleep {
  background-color: var(--bg-quaternary);
  margin-top: 100px;
  margin-bottom: 100px;
}

@media (max-width: 767px) {
  .c-home-sleep {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

.c-home-sleep__container {
  position: relative;
}

.c-home-sleep__container-leftholder {
  max-width: 79.875rem;
  margin: auto;
}

.c-home-sleep__container-left {
  padding: 100px 180px 100px 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1278.064" height="626" viewBox="0 0 1278.064 626"><defs><clipPath id="clip-path"><rect id="Rectangle_4579" data-name="Rectangle 4579" width="1278.064" height="626" fill="%23fff9de"/></clipPath></defs><g id="Group_1106" data-name="Group 1106" transform="translate(0.001)"><g id="Group_1106-2" data-name="Group 1106" transform="translate(-0.001)" clip-path="url(%23clip-path)"><path id="Path_3977" data-name="Path 3977" d="M1139.678,0H0V626H1211.434c40.279,0,71.343-41.219,66.038-87.624l-71.756-471.15C1201.316,28.746,1173.079,0,1139.678,0" transform="translate(0)" fill="%23fff9de"/></g></g></svg>');
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
  width: calc(50% + 200px);
  position: relative;
  z-index: 4;
}

.c-home-sleep__container-left h1 span {
  display: block;
}

@media (max-width: 767px) {
  .c-home-sleep__container-left h1 span {
    display: inline;
  }
}

.dark-mode .c-home-sleep__container-left {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1278.064" height="626" viewBox="0 0 1278.064 626"><defs><clipPath id="clip-path"><rect id="Rectangle_4579" data-name="Rectangle 4579" width="1278.064" height="626" fill="%23fff9de"/></clipPath></defs><g id="Group_1106" data-name="Group 1106" transform="translate(0.001)"><g id="Group_1106-2" data-name="Group 1106" transform="translate(-0.001)" clip-path="url(%23clip-path)"><path id="Path_3977" data-name="Path 3977" d="M1139.678,0H0V626H1211.434c40.279,0,71.343-41.219,66.038-87.624l-71.756-471.15C1201.316,28.746,1173.079,0,1139.678,0" transform="translate(0)" fill="%23414141"/></g></g></svg>');
}

.c-home-sleep__container-left h3 {
  font-size: 40px;
  font-weight: 700;
  padding-bottom: 20px;
}

.c-home-sleep__container-left p {
  margin-bottom: 20px;
}

.c-home-sleep__container-right {
  background-color: var(--bg-body);
  padding: 40px 0;
  right: 0;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 4;
}

.c-home-sleep__container-right img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* end .c-home-sleep */

/* start .c-sleep-test */

.c-block-test {
  margin: 60px 0;
}

.c-sleep-test {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
}

.c-sleep-test--results {
  margin: 0 auto;
}

.c-sleep-test--results .c-sleep-test__content p {
  margin-right: -60px;
}

.c-sleep-test__content {
  padding: 40px 20px 0;
}

.c-sleep-test__content h3 {
  font-size: 40px;
  font-weight: 700;
  padding-bottom: 20px;
  line-height: 1;
}

.c-sleep-test__question {
  background: var(--bg-quaternary);
  border-radius: 0.75rem;
  margin: 20px;
  padding: 40px 40px 105px 40px;
  min-height: 400px;
  position: relative;
}

.c-sleep-test__question-number {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.c-sleep-test__question-number svg {
  width: 16px;
  height: 16px;
}

.c-sleep-test__question-progress {
  height: 5px;
  border-radius: 5px;
  margin-bottom: 20px;
  background: #d8d8d8;
}

.c-sleep-test__question-progress-bar {
  height: 5px;
  border-radius: 5px;
  background: var(--color-blue);
  width: 0%;
  transition: width 0.15s ease-in-out;
}

.c-sleep-test__question-title {
  font-size: 1rem;
  margin-bottom: 10px;
}

.c-sleep-test__question-text {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 40px;
}

.c-sleep-test__question-answers {
  display: flex;
}

.c-sleep-test__question-answer label {
  padding-right: 80px;
}

.c-sleep-test__question-buttons {
  display: flex;
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  padding: 0 40px;
}

.c-sleep-test__question-buttons .back {
  color: var(--color-blue);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 500;
  transition: color 0.15s ease-in-out;
}

.c-sleep-test__question-buttons .back svg {
  width: 18px;
}

.c-sleep-test__question-buttons .back:hover {
  color: var(--text-color-teriary);
}

.c-sleep-test__question-buttons .push-right {
  margin-left: auto;
}

.c-sleep-test__results {
  position: relative;
  height: 325px;
  display: flex;
  justify-content: center;
}

.c-sleep-test__results img {
  position: absolute;
  top: -140px;
  left: 0;
  width: 100%;
  height: 500px;
  object-fit: contain;
  z-index: 0;
}

.c-sleep-test__results .push-down {
  position: absolute;
  bottom: 40px;
  margin: auto;
  z-index: 1;
}

/* end .c-sleep-test */

/* start .c-sleep-tips */

.c-sleep-tips {
  margin-bottom: -150px;
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 20px;
}

.c-sleep-tips__tip {
  background: var(--bg-secondary);
  border-radius: 0.75rem;
  overflow: hidden;
  position: relative;
  transition: all 0.15s ease-in-out;
}

.c-sleep-tips__tip:hover {
  background: var(--color-blue);
}

.c-sleep-tips__tip-image {
  height: 200px;
  width: 100%;
  overflow: hidden;
}

.c-sleep-tips__tip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.15s ease-in-out;
}

.c-sleep-tips__tip:hover .c-sleep-tips__tip-image img {
  opacity: 0.9;
}

.c-sleep-tips__tip-content {
  padding: 20px 20px 60px;
}

.c-sleep-tips__tip-content .c-sleep-tips__tip-more {
  color: var(--color-blue);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 500;
  position: absolute;
  bottom: 20px;
  width: 100%;
}

.c-sleep-tips__tip-content .c-sleep-tips__tip-more svg {
  width: 18px;
  height: 18px;
  transition: transform 0.15s ease-in-out;
}

.c-sleep-tips__tip:hover .c-sleep-tips__tip-more,
.c-sleep-tips__tip:hover .c-sleep-tips__tip-content h4 {
  color: var(--text-color-secondary);
}

.c-sleep-tips__tip-content:hover .c-sleep-tips__tip-more svg {
  transform: translateX(5px);
}

.c-sleep-tips__tip-content a {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
}

/* end .c-sleep-tips */

/* start .c-sleep-test-hint */

.c-sleep-test-hint {
  background: var(--color-blue);
  border-radius: 0.75rem 0 0 0.75rem;
  padding: 40px 20px 30px 30px;
  width: 290px;
  position: fixed;
  right: 0;
  bottom: 20px;
  color: #fff;
  z-index: 20;
  transition: all 0.5s ease-in-out;
  visibility: visible;
  opacity: 1;
}

.c-sleep-test-hint--hidden {
  visibility: hidden;
  opacity: 0;
}

.c-sleep-test-hint__close {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px;
  opacity: 0.7;
  transition: opacity 0.15s ease-in-out;
}

.c-sleep-test-hint__close svg {
  width: 18px;
  height: 20px;
}

.c-sleep-test-hint__close:hover {
  opacity: 1;
  cursor: pointer;
}

.c-sleep-test-hint h5 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
}

.c-sleep-test-hint a {
  color: #fff;
  text-decoration: underline;
}

/* end .c-sleep-test-hint */

.c-persons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.c-persons--horizontal {
  display: flex;
  flex-direction: row;
  width: 100%;
  flex-wrap: wrap;
}

.normal-counter {
  list-style-type: none;
  counter-reset: step-counter;
  margin-top: 40px;
}

.normal-counter li {
  counter-increment: step-counter;
  margin-bottom: 10px;
  position: relative;
}

.normal-counter li::before {
  content: counter(step-counter);
}

.custom-counter {
  list-style-type: none;
  counter-reset: step-counter;
}

.custom-counter li {
  counter-increment: step-counter;
  margin-bottom: 30px;
  padding-left: 60px;
  position: relative;
}

.custom-counter li span {
  display: block;
  font-weight: 700;
  font-size: larger;
}

.custom-counter .symptom {
  counter-increment: step-counter;
  margin-bottom: 20px;
  padding-left: 50px;
  position: relative;
}

.custom-counter li::before {
  --height: 40px;
  box-sizing: border-box;
  height: var(--height);
  width: var(--height);
  content: counter(step-counter);
  display: grid;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  font-size: 24px;
  background-color: #f7da6d;
  color: white;
  font-weight: 600;
  border-radius: calc(var(--height) / 2);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.1875rem 0 0 0.125rem;
}

.custom-counter--smaller li::before {
  --height: 30px;
  font-size: 16px;
  background-color: #bfa94d;
}

.custom-counter--orange li::before {
  background-color: #ff7701;
}

.card {
  background-color: var(--bg-secondary);
  text-align: center;
  border-radius: 10px;
}

.card-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 20px;
  gap: 40px;
}

.card-container img {
  width: 100%;
  border-radius: 10px 10px 0px 0px;
}

.card-container .custom-card-video {
  width: 100%;
}

.card p {
  padding: 20px;
  margin-bottom: 10px;
}

.card .rounded-button {
  padding: 10px 50px 10px 50px;
  margin-bottom: 40px;
}

.card-overlay {
  position: relative;
  cursor: pointer;
}

.card-overlay::after {
  font-family: FontAwesome;
  content: "\f04b";
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
  background-color: #0093e3;
  color: var(--text-color-secondary);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: grid;
  justify-content: center;
  align-items: center;
}

.cardtext {
  padding-top: 1.5rem;
}

.area {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 100px;
  margin-bottom: 40px;
}

.yellow {
  background-color: var(--bg-primary);
}

.rounded-button.yellow {
  border-color: var(--bg-primary);
}

.gray {
  background-color: var(--bg-secondary);
}

.row {
  display: flex;
  flex-direction: row;
  justify-content: start;
  flex-wrap: wrap;
  gap: 40px;
}

.col {
  display: flex;
  flex-direction: column;
}

span.mark {
  position: relative;
}

span.mark:before {
  content: "";
  position: absolute;
  height: 54%;
  width: calc(100% + 8%);
  max-width: 120px;
  background: var(--bg-primary);
  transform: skewX(-16deg) translateX(-4px);
  z-index: -1;
}

.c-landing-header {
  position: relative;
  margin-bottom: 60px;
}

.c-landing-header--container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  grid-template-areas:
    "content content"
    "image image";
  gap: 0 50px;
}

.c-landing-header--heading:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100vw;
  top: 0;
  right: calc(-50vw - 25px);
  background: var(--bg-primary);
  z-index: -1;
}

.c-landing-header--heading strong {
  display: block;
  margin-bottom: 10px;
}

.c-landing-header--heading {
  position: relative;
  padding: 60px 0 40px 32px;
}

.c-landing-header--heading h1 {
  font-size: 2.75rem;
  font-weight: normal;
}

.c-landing-header--heading h1 span {
  display: inline-block;
}

.c-landing-header--content {
  padding: 60px 32px 40px 0;
}

.c-landing-header--content p {
  font-size: 1.375rem;
  line-height: 34px;
}

.c-landing-header--image {
  grid-area: image;
}

.c-image-fullwidth {
  padding: 20px 0;
}

.c-image-fullwidth img {
  margin-left: -15px;
  margin-right: -15px;
  width: calc(100% + 30px);
  max-width: calc(100% + 30px);
}

/* c-verhalen */
.tns-ovh {
  padding-bottom: 10px;
}

.c-verhalen__container {
  background-color: var(--bg-primary);
}

.c-verhalen__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding: 40px 0px;
}

.c-verhalen__footer {
  display: flex;
  padding: 40px 0px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap-reverse;
}

.c-verhalen__footer--navigation {
  display: flex;
  align-items: center;
  width: 145px;
  justify-content: space-between;
}

.c-verhalen__footer--navigation-btn {
  display: flex;
}

.c-verhalen__footer--navigation-btn i {
  cursor: pointer;
  display: inline-block;
  height: 65px;
  width: 65px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
}

.c-verhalen__footer--navigation-btn i[aria-disabled="true"] {
  opacity: 0.5;
}

.c-verhalen__footer--navigation-btn i:hover {
  opacity: 0.8;
}

.c-verhalen__header-heading {
  font-size: 3.75rem;
  font-weight: 700;
  text-align: left;
  margin-bottom: 20px;
  line-height: 1.2;
}

.c-verhalen-item {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 31.79%, rgba(0, 0, 0, 0.9) 99.96%),
    lightgray -342.676px -80px / 230.543% 111.004% no-repeat;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.c-verhalen-item__img,
.c-verhalen-item__img figure {
  width: 100%;
  height: 100%;
}

.c-verhalen-item__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transform: scale(1.01);
}

.c-verhalen-item__content {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  color: var(--text-color-secondary);
  padding: 34px;
}

.c-verhalen-item__content-text {
  font-size: 1.5rem;
}

.dark-mode .c-verhalen-item__content-text {
  color: #fff;
}

.c-verhalen-item__content-quote {
  min-height: 4.5em;
}

.dark-mode .c-verhalen-item__content-quote {
  color: #fff;
}

.c-verhalen-item__content-text span {
  font-weight: 600;
}

/* c-control */

.c-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  margin-top: 2rem;
}

.c-control .c-control__left {
  /* padding: 30px; */
  border-radius: 11px;
  background-color: transparent;
  color: var(--text-color);
  position: relative;
}

.c-control .c-control__left::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 0;
  bottom: 24px;
  width: 1px;
  background-color: #d8d8d8;
  translate: 10px;
}

.c-control .c-control__title {
  font-size: 24px;
  margin-bottom: 16px;
}

.c-control .c-control__content {
  font-size: 20px;
}

.c-control .c-control__left .c-control__content {
  margin-bottom: 20px;
}

.c-control .c-control__right .c-control__title {
  display: flex;
  align-items: center;
}

.c-control .c-control__title--strong {
  font-size: 24px;
  font-weight: 700;
}

.c-control .c-control__right hr {
  color: var(--bg-tertiary);
  margin-bottom: 20px;
}

.c-control .c-control__right .c-control__read-time {
  font-size: 15px;
  color: var(--text-color-teriary);
  margin-bottom: 20px;
  display: block;
}

.c-control__body--right {
  background-color: var(--bg-primary);
  padding: 24px;
  border-radius: 10px;
}

.c-control .c-control__right .c-control__content {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  padding-bottom: unset;
}

.c-control a:hover i {
  margin-left: 16px;
}

@media screen and (max-width: 1150px) {
  .c-control {
    grid-template-columns: 100%;
  }

  .c-control .c-control__left::after {
    display: none;
  }
}

/* c-quote */

.c-quote__panel {
  background-color: #0e4366;
  border-radius: 10px;
  padding: 24px;
  margin: 64px auto 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
  gap: 20px;
  max-width: 774px;
  color: white;

  &.c-quote__panel--reverse {
    grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);

    .c-quote__figure {
      margin-left: 0;

      figure {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
      }
    }
  }
}

@media screen and (max-width: 930px) {
  .c-quote__panel {
    display: flex;
    flex-direction: column;
    align-items: center;

    &.c-quote__panel--reverse {
      flex-direction: column-reverse;

      .c-quote__figure figure {
        border-bottom-right-radius: 0;
        border-top-left-radius: 10px;
      }
    }
  }

  div.c-quote__panel .c-quote__figure {
    margin-right: 0;
    padding-right: 0;
    width: calc(100% + 48px);
    margin: -24px 0 0 0;
    aspect-ratio: 4 / 3;
  }

  div.c-quote__panel .c-quote__figure figure {
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0;
  }

  .c-quote__figure img {
    border-radius: 50%;
    overflow: hidden;
  }

  .c-quote__panel .c-quote__figure::after {
    display: none;
  }
}

@media screen and (max-width: 530px) {
  div.c-quote__panel .c-quote__figure {
    aspect-ratio: 1 / 1;
  }
}

.c-quote__panel .c-quote__figure {
  height: calc(100% + 48px);
  width: calc(100% + 24px);
  margin: -24px;
}

.c-quote__panel .c-quote__figure figure {
  height: 100%;
  width: 100%;
  border-radius: 10px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}

.c-quote__panel .c-quote__figure figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 0;
  border-radius: 0;
  aspect-ratio: 1/1;
}

.c-quote__panel .c-quote__figure strong {
  font-size: 20px;
  font-weight: 700;
}

.c-quote__panel .c-quote__figure span {
  font-size: 16px;
  padding-bottom: 0;
}

.c-quote__panel .c-quote__quote {
  position: relative;
  font-size: 20px;
  display: flex;
  flex-direction: column;
}

.c-quote__panel .c-quote__quote a {
  color: var(--text-color-secondary);
  text-decoration: underline;
}

.dark-mode .c-quote__panel .c-quote__quote a {
  color: var(--text-color);
}

.c-quote__quote blockquote {
  margin-top: 10px;
  font-weight: 700;
}

.c-quote__quote blockquote {
  quotes: "“" "”" "‘" "’";
}

.c-quote__quote blockquote::before {
  content: "";
  font-size: 1.5em;
  color: var(--bg-primary);
  background: url(/images/quote-before.svg) center / contain no-repeat;
  display: inline-block;
  width: 17px;
  height: 14px;
  margin-right: 0.25em;
}

.c-quote__quote blockquote::after {
  content: "";
  font-size: 1.5em;
  color: var(--bg-primary);
  background: url(/images/quote-after.svg) center / contain no-repeat;
  display: inline-block;
  width: 17px;
  height: 14px;
  margin-left: 0.25em;
}

/* c-experience */

.c-experience__bottom {
  margin: 64px 0 84px;
}

.c-experience__bottom h2 {
  margin-bottom: 1rem;
}

.c-experience__panel--horizontal {
  width: 100%;
}

.c-experience__panel--horizontal {
  width: 100%;
  padding: 24px;
  background-color: #0e4366;
  color: white;
  border-radius: 10px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 3fr) minmax(0, 2fr);
  gap: 20px;
  margin-bottom: 20px;
}

.c-experience__panel--horizontal .c-experience__information i {
  transform: translateY(-4px);
}

@media screen and (max-width: 1150px) {
  .c-experience__panel--horizontal {
    display: flex;
    flex-direction: column;
  }

  .c-experience__panel--horizontal .c-experience__figure {
    grid-column-start: 1;
  }

  .c-experience__panel--horizontal .c-experience__information {
    grid-column-start: 2;
  }

  .c-experience__panel--horizontal .c-experience__quote {
    grid-column-start: 1;
    grid-column-end: 3;
    margin-left: auto;
    margin-right: auto;
  }

  .c-experience__panel--horizontal .c-experience__information::after {
    display: none;
  }
}

@media screen and (max-width: 610px) {
  .c-experience__panel--horizontal .c-experience__figure::after {
    display: none;
  }

  .c-experience__panel--horizontal .c-experience__quote {
    grid-row-start: 2;
    grid-column-start: 1;
    grid-column-end: 3;
  }

  .c-experience__panel--horizontal .c-experience__figure {
    grid-row-start: 1;
    grid-column-start: 1;
    grid-column-end: 3;
  }

  .c-experience__panel--horizontal .c-experience__information {
    grid-row-start: 3;
    grid-column-start: 1;
    grid-column-end: 3;
  }
}

.c-experience__panel--horizontal .c-experience__figure {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  margin: -24px 0 -24px -24px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  padding-right: 10px;
  overflow: hidden;
}

@media screen and (max-width: 1150px) {
  .c-experience__panel--horizontal .c-experience__figure {
    margin: -24px;
    padding-right: 0;
    border-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding-bottom: 24px;
    aspect-ratio: 4 / 3;
  }
}

@media screen and (max-width: 540px) {
  .c-experience__panel--horizontal .c-experience__figure {
    aspect-ratio: 1 / 1;
  }
}

.quote-icon-left {
  position: relative;
  display: inline-flex;
  width: 17px;
  height: 14px;
  background: url(/images/quote-before.svg) center / contain no-repeat;
}

.quote-icon-right {
  position: relative;
  display: inline-flex;
  width: 17px;
  height: 14px;
  background: url(/images/quote-after.svg) center / contain no-repeat;
  align-self: flex-end;
}

.c-experience__panel--horizontal .zorgen-right-text img {
  border-radius: 0 !important;
}

.c-experience__panel--horizontal .c-experience__figure::after {
  content: "";
  position: absolute;
  top: 0;
  right: -10px;
  height: 100%;
  width: 1px;
  background-color: #d8d8d8;
}

.c-experience__panel--horizontal .c-experience__figure figure {
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
}

.c-experience__panel--horizontal .c-experience__figure figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.c-experience__panel--horizontal .c-experience__figure strong {
  font-size: 20px;
  font-weight: 700;
}

.c-experience__panel--horizontal .c-experience__figure span {
  font-size: 16px;
  padding-bottom: 0;
}

.c-experience__panel--horizontal .c-experience__information {
  position: relative;
  padding-right: 10px;
  margin-right: 10px;
}

.c-experience__panel--horizontal .c-experience__information ul li {
  padding-left: 0;
  display: flex;
  align-items: start;
}

.c-experience__panel--horizontal
  .c-experience__information
  ul
  li:has(strong + span) {
  display: flex;
  align-items: center;
  gap: 10px;

  strong {
    line-height: 1;
  }
}

.c-experience__panel--horizontal .c-experience__information ul li span {
  font-size: 17px;
  padding-bottom: 0;
}

.c-experience__panel--horizontal .c-experience__information ul li::before {
  display: none;
}

.c-experience__panel--horizontal .c-experience__information::after {
  content: "";
  position: absolute;
  top: 0;
  right: -10px;
  height: 100%;
  width: 1px;
  background-color: #d8d8d8;
}

.information-icon__open-book {
  display: inline-flex;
  min-width: 18px;
  width: 18px;
  height: 25px;
  margin-right: 8px;
  margin-bottom: 4px;
  background-image: url(/images/icons/icon-open-book.svg);
  background-position: center;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.information-icon__hour-glass {
  display: inline-flex;
  min-width: 11px;
  width: 11px;
  height: 15px;
  margin-right: 8px;
  background-image: url(/images/icons/icon-hour-glass.svg);
  background-position: center;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.information-icon__calendar {
  display: inline-flex;
  min-width: 18px;
  width: 18px;
  height: 30px;
  margin-right: 8px;
  background-image: url(/images/icons/icon-calendar.svg);
  background-position: center;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.information-icon__clipboard {
  display: inline-block;
  min-width: 18px;
  width: 18px;
  height: 30px;
  margin-right: 8px;
  background-image: url(/images/icons/icon-clipboard.svg);
  background-position: center;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.c-experience__interview {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 10px;
}

.c-experience__interview span {
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 0;
}

.dark-mode .c-experience__interview a {
  color: var(--text-color);
}

.c-experience__interview a {
  font-size: 16px;
  font-weight: 400;
  flex-wrap: wrap;
  color: var(--text-color-secondary);
  text-decoration: underline;
}

.c-experience__panel--horizontal .c-experience__quote {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  margin-block: auto;
  display: inline-flex;
}

.c-experience__panel--horizontal .c-experience__quote blockquote {
  quotes: "“" "”" "‘" "’";
}

.c-experience__panel--horizontal .c-experience__quote blockquote::before {
  content: "";
  font-size: 1.5em;
  color: var(--bg-primary);
  background: url(/images/quote-before.svg) center / contain no-repeat;
  display: inline-block;
  width: 17px;
  height: 14px;
  margin-right: 0.25em;
}

.c-experience__panel--horizontal .c-experience__quote blockquote::after {
  content: "";
  font-size: 1.5em;
  color: var(--bg-primary);
  background: url(/images/quote-after.svg) center / contain no-repeat;
  display: inline-block;
  width: 17px;
  height: 14px;
  margin-left: 0.25em;
}

.c-experience__panel--horizontal .c-experience__quote::after {
  display: none;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .c-persons {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .c-persons .c-experience__panel {
    width: calc(100% / 3 - (2rem / 3));
    margin-bottom: 1rem;
  }

  .c-experience__intro {
    display: flex;
    justify-content: space-between;
  }

  .c-experience__intro .c-experience__panel {
    width: calc(325px - 1rem);
  }

  .c-experience__intro .c-experience__text {
    width: calc(100% - 1rem - 325px);
  }

  .c-experience__other-item {
    display: flex;
    justify-content: space-between;
  }

  .c-experience__other-item .c-experience__other-avatar {
    width: calc(130px - 1rem);
  }

  .c-experience__other-item .c-experience__other-quote {
    width: calc(100% - 2rem - (2 * 130px));
  }
}

/* Slaapkamer */

.l-contain {
  max-width: 79.875rem;
  padding: 0 1.5rem;
  margin: 0 auto;
}

.l-contain--small {
  max-width: 60.5rem;
}

.c-banner {
  /* background: url('../images/banner-sleep.jpg') top center / cover no-repeat; */
  display: flex;
  height: 540px;
  padding: 80px 155px;
  position: relative;
}

.c-banner__overlay {
  background: rgba(0, 0, 0, 0.2);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.c-banner img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.c-banner__panel {
  align-self: flex-end;
  border: 1px solid #fff;
  border-top-left-radius: 60px;
  border-bottom-right-radius: 60px;
  color: #fff;
  padding: 36px 50px;
  font-size: 39px;
  font-weight: 700;
  line-height: 1;
  max-width: 444px;
  z-index: 1;
}

.c-banner__panel--mb-20 {
  margin-bottom: 20px;
}

.c-block {
  padding: 60px 0;
}

.c-block--sleep {
  background: url("../images/bg-sleep-light.png") top left / cover no-repeat;
  position: relative;
  z-index: -1;
}

.dark-mode .c-block--sleep {
  background-image: url("../images/bg-sleep-dark.png");
}

.c-block--questionlist {
  position: relative;
  margin-bottom: 100px;
}

.c-block--questionlist .c-block__col {
  width: calc(50% - 25px);
}

.c-block--questionlist img {
  position: absolute;
  right: 0;
  bottom: -100px;
  max-width: calc(50% - 25px);
}

.c-block p {
  margin-bottom: 1.5rem;
}

.c-block .card p {
  margin-bottom: 0.625rem;
}

.c-interview {
  display: flex;
}

.c-interview__figure {
  flex-shrink: 0;
  margin-right: 44px;
}

.c-interview__figure img {
  border-radius: 0.75rem;
}

.c-cited__title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.c-cited ol {
  font-size: 14px;
  margin-left: 0.8rem;
}
.c-cited ol li {
  font-size: 14px;
}
.c-cited ol li a {
  font-size: 14px;
}

.c-themeswitch {
  --height: 28px;
  --width: 60px;
  display: flex;
  flex-direction: column;
}

.c-themeswitch--header {
  position: absolute;
  top: 10px;
  right: 112px;
}

.c-themeswitch input[type="checkbox"] + label {
  background: url("../images/bg-theme-switch.svg") top 5px center no-repeat #000;
  background-size: 44px 17px !important;
  border: 1px solid transparent;
  border-radius: calc(var(--height) / 2);
  box-sizing: border-box;
  height: var(--height);
  width: var(--width);
  padding: 0;
  position: relative;
}

.dark-mode .c-themeswitch input[type="checkbox"] + label {
  background-color: #414141;
}

.c-themeswitch input[type="checkbox"] + label:after {
  --localheight: calc(var(--height) - 6px);
  background: var(--bg-body);
  border-radius: calc(var(--localheight) / 2);
  content: "";
  height: var(--localheight);
  width: var(--localheight);
  position: absolute;
  top: 2px;
  left: 2px;
  transition: all 0.275s ease-out;
}

.c-themeswitch input[type="checkbox"]:checked + label:after {
  left: calc(var(--width) - var(--localheight) - 4px);
}

.c-theme-switch__text {
  font-size: 14px;
  text-align: center;
  margin-top: 0.5rem;
}

.c-themeswitch--body {
  --height: 45px;
  --width: 100px;
  width: var(--width);
}

.c-themeswitch--body input[type="checkbox"] + label {
  background-color: var(--color-blue);
  background-position: center 6px;
  background-size: auto 30px !important;
}

.dark-mode .c-themeswitch--body input[type="checkbox"] + label {
  background-color: #000;
}

/* .c-popup-sleep */

.c-popup-sleep {
  background: var(--color-blue);
  border-radius: 10px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  color: #fff;
  max-width: 290px;
  padding: 45px 15px 40px 35px;
  position: fixed;
  bottom: 246px;
  right: 0;
  z-index: 10;
  transform: translateX(110%);
  transition: transform 0.125s ease-out;
}

.c-popup-sleep--active {
  transform: translateX(0);
  transition: transform 0.125s ease-in;
}

.c-popup-sleep__close {
  background: url("/images/icon-close-light.svg") center center / 13px 13px
    no-repeat transparent;
  border: 0;
  cursor: pointer;
  height: 40px;
  width: 40px;
  position: absolute;
  top: 4px;
  left: 0;
}

.c-popup-sleep__title {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.c-popup-sleep p {
  color: #fff;
  font-size: 20px;
  margin-bottom: 0.5rem;
  padding-bottom: 0;
}

.c-popup-sleep__link {
  color: #fff;
  font-size: 20px;
  text-decoration: underline;
}

/* Global */

@media only screen and (max-width: 540px) {
  .l-contain {
    padding: 0 0.9375rem;
  }

  .c-block {
    padding: 32px 0;
  }
}

/* .c-parkinson-day */

@media only screen and (max-width: 640px) {
  .c-parkinson-day {
    padding: 1rem 2rem;
  }

  .c-parkinson-day__title {
    font-size: 1rem;
  }

  .c-parkinson-day__more {
    font-size: 0.875rem;
  }
}

@media only screen and (max-width: 480px) {
  .c-parkinson-day__title {
    margin: 0;
  }

  .c-parkinson-day__top {
    flex-direction: column;
  }
}

/* .c-banner */

@media only screen and (max-width: 810px) {
  .c-banner {
    /* background-position: top left; */
    padding: 80px 32px;
    height: 420px;
  }

  .c-banner__panel {
    font-size: 28px;
    max-width: 360px;
  }
}

@media only screen and (max-width: 540px) {
  .c-banner {
    flex-direction: column-reverse;
    height: auto;
    padding: 0;
  }

  .c-banner img {
    position: static;
  }

  .c-banner__panel {
    color: #141414;
    border-color: #141414;
    font-size: 1rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
    max-width: none;
  }

  .dark-mode .c-banner__panel {
    color: #fff;
    border-color: #fff;
  }

  .c-banner__overlay {
    background: none;
  }
}

/* .card-container */

@media only screen and (max-width: 680px) {
  .card-container {
    flex-direction: column;
  }
}

/* .c-block--questionlist */

@media only screen and (max-width: 1400px) {
  .c-block--questionlist img {
    bottom: -30px;
  }
}

@media only screen and (max-width: 1180px) {
  .c-block--questionlist img {
    top: 60px;
    bottom: auto;
  }
}

@media only screen and (max-width: 920px) {
  .c-block--questionlist {
    margin-bottom: 0;
  }

  .c-block--questionlist .c-block__col {
    width: 100%;
  }

  .c-block--questionlist img {
    display: none;
  }
}

/* .c-interview */

@media only screen and (max-width: 780px) {
  .c-interview__figure {
    width: 25%;
  }
}

@media only screen and (max-width: 520px) {
  .c-interview {
    flex-direction: column;
  }

  .c-interview__figure {
    width: auto;
    margin-bottom: 1rem;
  }
}

/* .c-themeswitch */

@media only screen and (max-width: 1200px) {
  .c-themeswitch--header {
    display: none;
  }
}

@media only screen and (max-width: 600px) {
  .c-popup-sleep {
    max-width: calc(100% - 1rem);
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0;
    bottom: 0;
    right: 0.5rem;
    left: 0.5rem;
    transform: translateY(110%);
  }

  .c-popup-sleep--active {
    transform: translateY(0);
  }
}

/* .c-home-intro */
.c-index-intro {
  max-width: 70%;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 40px;

  .c-index-intro__text {
    font-size: 2rem;

    span {
      margin-bottom: 30px;
      display: block;
      line-height: 39px;
    }

    p {
      font-size: 1.25rem;
      line-height: 21px;
      margin-bottom: 30px;
    }
  }
}

.c-index-intro__blocks {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 50px;

  .c-index-intro__block {
    background-color: var(--bg-secondary);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    padding: 25px;
    background-repeat: no-repeat;
    background-position: top 30px right 30px;

    &.icon-smiley {
      background-image: url(../images/icon-smiley.png);
    }

    &.icon-plus {
      background-image: url(../images/icon-plus.png);
    }

    &.icon-heart {
      background-image: url(../images/icon-heart.png);
    }
  }

  h4 {
    font-size: 2rem;
    font-weight: bold;
    line-height: 35px;
    max-width: calc(100% - 90px);
    margin-bottom: 30px;
  }
}

a.c-index-intro__block-btn {
  border-color: var(--bg-primary);
}

.c-block--head-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  margin: 50px 0;

  div {
    position: relative;
    display: flex;
    align-items: center;

    &:first-child {
      padding-right: 40px;

      &::after,
      &::before {
        content: "";
        position: absolute;
        height: 44px;
        width: 44px;
        border-radius: 50%;
        right: -44px;
        top: 0;
        background-color: var(--color-blue);
      }

      &::before {
        top: 30%;
        transform: translateY(-50%);
        bottom: 0;
      }

      &::after {
        bottom: 30%;
        transform: translateY(50%);
        top: unset;
      }
    }

    &:last-child {
      padding-left: 40px;
    }
  }

  h4 {
    font-weight: bold;
    font-size: 3.125rem;
    line-height: 50px;
  }
}

.c-block--video {
  width: 100%;
  height: 744px;
  max-height: 75vh;
  overflow: hidden;
  border-radius: 30px;

  iframe,
  .video-js {
    height: 100%;
    width: 100%;
  }
}

.c-block--video-home {
  width: 100%;
  height: 744px;
  max-height: 75vh;
  overflow: hidden;

  @media only screen and (max-width: 820px) {
    height: 500px;
  }

  @media only screen and (max-width: 540px) {
    height: 250px;
  }

  iframe,
  .video-js {
    height: 100%;
    width: 100%;
  }
}

.c-block--grey-bg {
  border-radius: 30px;
  background-color: var(--bg-secondary);
  padding-top: 40px;
  padding-bottom: 40px;
}

.c-block--image-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  height: 100%;
  max-height: 800px;

  div {
    display: flex;
    flex-direction: column;

    &:first-child img {
      object-fit: cover;
      object-position: right;
      width: 100%;
      height: 100%;
    }

    &:last-child {
      padding: 50px;
      background-image: url(../images/kris-rechts.jpg);
      background-repeat: no-repeat;
      background-size: cover;
      background-position: left bottom;
    }
  }

  a {
    align-self: flex-start;
    margin-top: auto;
  }

  h3 {
    font-size: 3.75rem;
    line-height: 3.75rem;
    color: var(--text-color-secondary);
    margin-bottom: 30px;
    text-wrap-style: balance;
  }

  p {
    font-size: 1.125rem;
    color: var(--text-color-secondary);
    margin-bottom: 30px;
  }
}

.c-home-intro {
  padding: 32px;
  background-color: var(--bg-quaternary);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  border-radius: 10px;
  margin-top: 80px;
  margin-bottom: 80px;
}

.c-home-intro__text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
  margin-left: 32px;
  margin-right: 32px;
}

.c-home-intro__text span {
  font-size: 24px;
  line-height: 40px;
  font-weight: 400;
}

.dark-mode .c-home-intro__text span {
  color: #fff;
}

.c-home-intro__text p {
  font-size: 20px;
  line-height: 34px;
  font-weight: 400;
}

.c-home-intro__blocks {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media only screen and (max-width: 1330px) {
  .c-home-intro {
    grid-template-columns: 1fr;
  }

  .c-home-intro__text {
    margin-left: 0;
    margin-right: 0;
    justify-content: unset;
  }
}

.c-home-intro__block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 4fr) minmax(0, 5fr);
  gap: 20px;
  align-items: center;
  background-color: var(--bg-primary);
  padding: 20px;
  border-radius: 10px;

  a {
    width: fit-content;
    justify-self: flex-end;
    font-size: 20px;
    /* on hover the content goes on two lines, we dont want this */
    white-space: nowrap;
  }
}

.c-home-intro__block:nth-child(2) {
  grid-template-columns: minmax(0, 1fr) minmax(0, 5fr) minmax(0, 4fr);
}

.c-home-intro__block:nth-child(3) {
  grid-template-columns: minmax(0, 1fr) minmax(0, 4fr) minmax(0, 4fr);
}

.c-home-intro__block h4 {
  font-size: 23px;
  font-weight: 700;
  line-height: 1.4rem;
}

.c-home-intro__block-icon {
  height: 55px;
  width: 55px;
}

.dark-mode .c-home-intro__block-icon {
  filter: invert(1);
}

@media screen and (max-width: 767px) {
  .c-home-intro__block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* .c-modal */

.c-wizard-modal {
  background: var(--bg-secondary);
  min-width: 990px;
  max-width: 75%;
  border-radius: 10px;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) scale(0.9) translateY(-2rem);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: all 0.275s var(--ease-in);
  display: grid;
  grid-template-columns: 2fr 5fr;
}

.c-wizard-modal aside {
  height: 100%;
  width: 100%;
  padding: 10px;
}

.c-wizard-modal aside img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  object-position: center;
}

.c-wizard-modal p {
  font-size: 1.5rem;
  margin-top: 1.125rem;
  margin-bottom: 1.125rem;
}

.c-wizard-modal--active {
  opacity: 1;
  visibility: visible;
  z-index: 16;
  transform: translateX(-50%) scale(1) translateY(0);
  transition: all 0.275s var(--ease-out);
}

.c-wizard-modal__header {
  position: relative;
  padding: 2rem;
}

.c-wizard-modal__header span {
  font-size: 1.0625rem;
}

.c-wizard-modal__header h2 {
  font-size: 1.875rem;
  margin-right: 50px;
}

.c-wizard-modal__close {
  border: 0;
  border-radius: 0;
  display: grid;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  font-size: 1.9375rem;
  height: 50px;
  width: 50px;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
}

.c-wizard-modal__close::after {
  content: "\f00d";
  font-family: FontAwesome;
  font-size: 1.9375rem;
  color: var(--text-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c-wizard-modal__content {
  background-color: var(--text-color-secondary);
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem;
  margin-top: 0;
  margin-bottom: 0;
}

.c-wizard-modal__content span {
  display: block;
  font-weight: 700;
}

.c-wizard-modal__content .c-wizard-modal__steps {
  display: inline;
}

.c-wizard-modal__content span.c-wizard-modal__content--title {
  font-size: 1.25rem;
}

.c-wizard-modal__divider {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  display: flex;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.c-wizard-modal__divider .line {
  width: 100%;
  height: 1px;
  margin-bottom: 5px;
  background-color: lightgray;
}

@media screen and (max-width: 1150px) {
  .c-wizard-modal__divider .line {
    display: none;
  }
}

.c-wizard-modal__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.c-wizard-modal__footer {
  font-size: 1.0625rem;
  padding: 2rem;
}

.c-wizard-modal__footer-buttons {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;

  .c-wizard-modal__step {
    color: white;
  }
}

@media screen and (max-width: 1150px) {
  .c-wizard-modal {
    grid-template-columns: minmax(0, 1fr);
    min-width: 90%;
    max-width: 90%;
    top: 20px;
  }

  .c-wizard-modal aside {
    display: none;
  }

  .c-wizard-modal__close {
    right: 0;
    margin: 10px;
    padding: 10px;
  }
}

@media screen and (max-width: 983px) {
  .c-wizard-modal a.rounded-button {
    padding: 10px 30px 10px 30px;
  }

  .c-wizard-modal h2 {
    line-height: 2rem;
  }
}

@media screen and (max-width: 663px) {
  .c-wizard-modal a.rounded-button {
    width: 100%;
    text-align: center;
  }

  .c-wizard-modal a.rounded-button.blue.wide {
    order: -1;
  }
}

@media screen and (max-width: 540px) {
  .c-wizard-modal {
    top: 20px;
  }

  .c-wizard-modal__content {
    margin: 1rem;
  }

  .c-wizard-modal__divider .line {
    display: none;
  }
}

.c-podcast-modal {
  background: var(--bg-secondary);
  width: 100svw;
  max-width: 820px;
  padding: 40px;
  border-radius: 10px;
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translateX(-50%) scale(0.9) translateY(-2rem);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: all 0.275s var(--ease-in);

  @media screen and (max-width: 640px) {
    padding: 30px;
  }
}

.c-podcast-modal--active {
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}

.c-podcast-modal__close {
  border: 0;
  border-radius: 0;
  background: transparent;
  display: grid;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  font-size: 1.9375rem;
  height: 50px;
  width: 50px;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
}

.c-podcast-modal__close::after {
  content: "\f00d";
  font-family: FontAwesome;
  font-size: 1.9375rem;
  color: var(--text-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c-podcast-modal__video-link {
  display: block;
}

.c-podcast-modal video {
  max-width: 100%;
}

.c-podcast-modal__buttons {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;

  @media screen and (max-width: 460px) {
    flex-direction: column-reverse;
    justify-content: stretch;
    gap: 1rem;
  }
}

.c-podcast-modal__footer {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;

  @media screen and (max-width: 640px) {
    flex-direction: column;
  }
}

.c-podcast-modal h2 {
  font-size: 1.875rem;
}

.c-podcast-modal p {
  margin-bottom: 1.5rem;
}

.c-podcast-modal .rounded-button {
  padding: 10px 15px;

  @media screen and (max-width: 767px) {
    padding: 5px 8px 4px;
  }

  @media screen and (max-width: 460px) {
    text-align: center;
  }
}

.c-progress-bar {
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: var(--bg-secondary);
  width: 100%;
  border-radius: 15px;
}

.c-progress-bar__progress {
  background-color: var(--color-blue);
  color: white;
  padding: 0.7%;
  text-align: right;
  font-size: 20px;
  border-radius: 15px;
}

.symptoms-text-block {
  align-self: center;
  padding: 24px;
  width: 360px;
  font-size: 26px;
  background-color: var(--bg-secondary);
  color: var(--color-blue);
  border-radius: 10px;
}

@media screen and (max-width: 980px) {
  .symptoms-text-block {
    display: none;
  }
}

.c-themeswitch__label {
  text-indent: -99999px;
}

@media (max-width: 1200px) {
  .dark-mode .hero-content h1 {
    color: var(--text-color);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  }

  .dark-mode .hero-content span {
    color: #ffffff;
  }
}

/* VIDEO JS STYLING */
.video-js {
  width: 100%;
  background-color: var(--bg-body);
}

.dark-mode .video-js {
  --bg-body: #2e2e2e;
}

.bc-player-default_default .vjs-play-progress {
  background: #4d8fcc;
}

.bc-player-default_default-index-0 {
  height: 38px;
}

.video-js .vjs-slider {
  background-color: var(--bg-body);
}

.vjs-mouse.bc-player-default_default .vjs-control-bar {
  font-size: 12px;
  padding: 1px 10px 0;
}

.bc-player-default_default.vjs-audio-only-mode .vjs-progress-control {
  margin: 9px 16px 0;
}

.bc-player-default_default .vjs-progress-control {
  height: 6px;
  position: static;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
}

.bc-player-default_default .vjs-big-play-button,
.bc-player-default_default .vjs-big-play-state.vjs-play-control.vjs-control,
.bc-player-default_default .vjs-control-bar {
  background: var(--bg-body);
}

.bc-player-default_default .vjs-big-play-button,
.bc-player-default_default .vjs-big-play-state,
.bc-player-default_default .vjs-control-bar {
  color: #4d8fcc;
}

body.zelf-test {
  background: var(--bg-primary);
}

.zelf-test .gesprekshulp-container {
  padding: 4rem 0;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 2fr);
  gap: 4rem;

  @media screen and (max-width: 1049px) {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.zelf-test .test-container {
  background-color: var(--text-color-secondary);
  border-radius: 10px;
  padding: 2rem;
}

.zelf-test .gesprekshulp-header {
  margin-bottom: 1rem;
}

.zelf-test .gesprekshulp-header h2 {
  line-height: 1.1em;
}

.zelf-test .gesprekshulp-header span {
  display: block;
  font-size: initial;
  font-weight: initial;
  line-height: initial;
}

.zelf-test .progress-bar {
  height: 7px;
  margin-bottom: 1rem;
  background-color: #d9eefd;
}

.zelf-test .progress-bar-run {
  background-color: #1397f4;
}

.zelf-test .gesprekshulp-list {
  margin-bottom: 1rem;

  &:last-child {
    margin-bottom: 0;
  }
}

.zelf-test .gesprekshulp-list--2-col {
  columns: 2;

  @media screen and (max-width: 767px) {
    columns: 1;
  }
}

.zelf-test .divider {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  font-weight: 700;

  &::after {
    content: "";
    position: absolute;
    top: 50%;
    left: auto;
    transform: translateY(-50%) translateX(5px);
    width: 100%;
    height: 1px;
    background-color: #e6e6e6;
  }

  @media screen and (max-width: 567px) {
    &::after {
      display: none;
    }
  }
}

.zelf-test textarea {
  display: block;
  background-color: var(--bg-secondary);
  color: var(--text-color);
  border: 1.5px solid #b0b0b0;
  /* Gray border */
  border-radius: 5px;
  padding: 1rem;
  font-family: Arial, sans-serif;
  font-size: 14px;
  resize: vertical;
  width: 100%;
  max-width: 400px;

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

.zelf-test .custom-textarea--fullwidth {
  width: 100%;
  max-width: 100%;
}

.zelf-test label + .custom-textarea--fullwidth {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.zelf-test textarea:focus {
  outline: none;
}

.zelf-test label.ans-check.ans-checkbox + textarea {
  margin-top: 0.5rem;
  margin-left: 2.75rem;

  @media screen and (max-width: 567px) {
    margin-left: 0;
  }
}

.zelf-test label.ans-check.ans-radio + textarea {
  margin-top: 0.5rem;
  margin-left: 2.75rem;

  @media screen and (max-width: 567px) {
    margin-left: 0;
  }
}

.zelf-test label.ans-check.ans-checkbox + input[type="email"] {
  display: inline-block;
  background-color: var(--bg-secondary);
  color: var(--text-color);
  border: 1px solid #b0b0b0;
  border-radius: 5px;
  padding: 1rem;
  font-family: Arial, sans-serif;
  font-size: 14px;
  resize: vertical;
  width: calc(100% - 2.75rem);
  max-width: 100%;
  margin-top: 0.5rem;
  margin-left: 2.75rem;

  @media screen and (max-width: 567px) {
    margin-left: 0;
    width: 100%;
  }
}

.zelf-test input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.zelf-test .ques-next-prev.clearfix ul li {
  @media screen and (max-width: 379px) {
    width: 100%;
    margin: 0;
    padding: 0;

    a {
      width: 100%;
      text-align: center;
      margin: 0;
    }
  }
}

.zelf-test .irs-bar,
.irs-bar-edge {
  top: 28px !important;
  height: 6px !important;
}

.zelf-test .irs-line-mid,
.irs-line-left,
.irs-line-right {
  background: #d9eefd !important;
}

.zelf-test .irs-slider.single {
  background: #fff !important;
}

.zelf-test .irs-single {
  color: #fff !important;
}

.zelf-test .dark-mode .irs-grid-text {
  &:hover {
    color: #fff !important;
  }
}

.zelf-test .stap-ques_range {
  width: 100%;
  padding: 0;
}

.zelf-test .range-slider-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 2rem;
  padding-bottom: 2rem !important;

  @media screen and (max-width: 991px) {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-bottom: 4rem !important;
  }
}

.zelf-test .range-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.zelf-test .range-slider-item .range-slider-item-title {
  display: flex;
  margin-top: auto;
  margin-bottom: 1rem;
}

.zelf-test input[type="checkbox"] + .ans-check.ans-checkbox {
  background: url(../images/checkbox-unchecked.png) no-repeat left 0px;
}

.zelf-test input[type="checkbox"]:checked + .ans-check.ans-checkbox {
  background: url(../images/checkbox-checked.png) no-repeat left 0px;
  color: var(--text-color);
}

.zelf-test input[type="radio"] + .ans-check.ans-radio {
  background: url(../images/radio-unchecked.png) no-repeat left 0px;
}

.zelf-test input[type="radio"]:checked + .ans-check.ans-radio {
  background: url(../images/radio-checked.png) no-repeat left 0px;
  color: var(--text-color);
}
