@charset "UTF-8";
@import url("//fonts.googleapis.com/css2?family=Pacifico&family=Inter:ital,wght@0,400;0,500;0,700;1,400;1,700&display=swap");
@import url("//fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");
@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../fonts/font-awesome/fa-brands-400.eot");
  src: url("../fonts/font-awesome/fa-brands-400.eot#iefix") format("embedded-opentype"), url("../fonts/font-awesome/fa-brands-400.woff") format("woff2"), url("../fonts/font-awesome/fa-brands-400.woff") format("woff"), url("../fonts/font-awesome/fa-brands-400.ttf") format("truetype"), url("../fonts/font-awesome/fa-brands-400.svg") format("svg");
}
@font-face {
  font-family: "chevrons";
  src: url("../fonts/chevrons_twt2.eot");
  src: url("../fonts/chevrons.eot") format("embedded-opentype"), url("../fonts/chevrons_twt2.ttf") format("truetype"), url("../fonts/chevrons_twt2.woff") format("woff"), url("../fonts/chevrons.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
/* https://www.toptal.com/designers/subtlepatterns/groovepaper */
@keyframes subtilefadeIn {
  0% {
    opacity: 0;
    transform: translateY(-1rem);
  }
  50% {
    opacity: 0;
    transform: translateY(-1rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0rem);
  }
}
@keyframes subtilefadeInFast {
  0% {
    opacity: 0;
    transform: translateY(-1rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0rem);
  }
}
@keyframes subtilefadeInUpFast {
  0% {
    opacity: 0;
    transform: translateY(1rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0rem);
  }
}
@keyframes subtilefadeInUpScaled {
  from {
    opacity: 0;
    transform: scale(1.2) translateY(1rem);
  }
  100% {
    opacity: 1;
    transform: scale(1.2) translateY(0rem);
  }
}
.subtileFadeIn {
  animation: subtilefadeIn ease 2s;
}

.subtileFadeInFast {
  animation: subtilefadeIn ease 1s;
}

.subtileFadeInUpFast {
  animation: subtilefadeInUpFast ease 3s;
}

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none !important;
  box-sizing: border-box;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  outline: none;
}

li, a, span {
  transition: 0.2s;
}

html, body {
  background: white;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  color: #161616;
}

strong {
  font-size: inherit;
  font-style: inherit;
  display: inline;
  color: inherit;
}

p a, p em, p i {
  font-size: inherit;
  color: inherit;
}

p a {
  text-decoration: underline;
  font-weight: inherit;
}

a {
  cursor: pointer;
  transition: opacity 0.5s;
}

button {
  cursor: pointer;
}

.hamburger {
  padding: 0;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  z-index: 5;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.is-active:hover {
  opacity: 0.9;
}
.hamburger.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  background-color: white;
}
.hamburger.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
  background-color: white;
}
.hamburger.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  background-color: white;
}

.hamburger-box {
  width: 24px;
  height: 14px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: calc(2px / -2 );
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 24px;
  height: 2px;
  background-color: #161616;
  border-radius: 0;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -6px;
}
.hamburger-inner::after {
  bottom: -6px;
}

.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.open-search-box {
  position: fixed;
  right: 225px;
  z-index: 8;
  top: 4px;
  cursor: pointer;
  padding: 10px;
  transition: transform 0.1s ease-in-out;
}
@media screen and (max-width: 767px) {
  .open-search-box {
    right: 50px;
    top: 5px;
  }
}
.open-search-box:hover {
  transform: scale(1.1);
}
.open-search-box:hover svg * {
  fill: #DBE2DB;
}
@media screen and (min-width: 767px) {
  body.header-state-alt .open-search-box {
    opacity: 0;
    pointer-events: none;
  }
}

section.header-wrapper {
  background: white;
  z-index: 9;
  top: 0;
  width: 100vw;
  transition: 0.1s linear background;
  position: fixed;
}
body.hamburger-visible section.header-wrapper {
  background: transparent;
}
section.header-wrapper .header-container {
  padding-left: 3.5rem;
  padding-right: 3.5rem;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  height: 8.6rem;
  position: relative;
  transition: height 0.4s ease-out;
}
section.header-wrapper > div {
  position: relative;
  z-index: 2;
}
section.header-wrapper .header-left {
  height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 1;
}
body.hamburger-visible section.header-wrapper .header-left {
  opacity: 0;
}
section.header-wrapper .header-left .header-logo {
  display: inline-block;
  vertical-align: top;
}
section.header-wrapper .header-left .header-logo img {
  width: auto;
  height: calc(8.6rem / 2.6);
  transition: 0.4s ease-in-out;
  transform: translateY(-0.5rem);
}
section.header-wrapper .header-right-container {
  width: 100%;
  height: inherit;
}
section.header-wrapper .header-right-container .header-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: inherit;
}
section.header-wrapper .header-right-container .header-right .header-right-inner {
  align-self: flex-end;
  display: flex;
  flex-direction: row;
  font-size: 1.7rem;
}
section.header-wrapper .header-right-container .header-right .header-right-inner nav.header-menu {
  position: relative;
}
section.header-wrapper .header-right-container .header-right .header-right-inner ul.header-menu-items {
  display: block;
}
section.header-wrapper .header-right-container .header-right .header-right-inner ul.header-menu-items > li {
  margin: 0 0.5rem;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
section.header-wrapper .header-right-container .header-right .header-right-inner ul.header-menu-items > li > a {
  display: flex;
  align-items: center;
  position: relative;
  height: 8.6rem;
  color: #161616;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  padding: 0 2.2rem;
}
section.header-wrapper .header-right-container .header-right .header-right-inner ul.header-menu-items > li > a:hover:not(.active) {
  color: #7b9b7e;
}
section.header-wrapper .header-right-container .header-right .header-right-inner ul.header-menu-items > li > a span {
  background: white;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
section.header-wrapper .header-right-container .header-right .header-right-inner ul.header-menu-items > li.current-menu-parent > a > span {
  font-weight: 700;
}
section.header-wrapper .header-right-container .header-right .header-right-inner ul.header-menu-items li {
  transition: none;
}
section.header-wrapper .header-right-container .header-right .header-right-inner ul.header-menu-items li .sub-menu {
  opacity: 0;
  position: absolute;
  background: #7b9b7e;
  top: 7.1rem;
  left: calc(-50% + 1rem);
  padding: 2rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-delay: 0;
}
body.header-state-alt section.header-wrapper .header-right-container .header-right .header-right-inner ul.header-menu-items li .sub-menu {
  top: 5.2rem;
}
section.header-wrapper .header-right-container .header-right .header-right-inner ul.header-menu-items li .sub-menu:before {
  content: "";
  display: inline-block;
  vertical-align: top;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -1rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0.9rem 1.1rem 0.9rem;
  border-color: transparent transparent #7b9b7e transparent;
}
section.header-wrapper .header-right-container .header-right .header-right-inner ul.header-menu-items li .sub-menu a {
  padding: 0;
  padding-right: 1rem;
  line-height: 3.5rem;
  white-space: nowrap;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  color: white;
  transition: color 0.4s ease;
  height: inherit;
  display: block;
}
section.header-wrapper .header-right-container .header-right .header-right-inner ul.header-menu-items li .sub-menu a span {
  transition: none;
}
section.header-wrapper .header-right-container .header-right .header-right-inner ul.header-menu-items li .sub-menu a:hover {
  color: #161616;
}
section.header-wrapper .header-right-container .header-right .header-right-inner ul.header-menu-items li .sub-menu li.current-menu-item a {
  color: #161616;
}
section.header-wrapper .header-right-container .header-right .header-right-inner ul.header-menu-items li .sub-menu li.current-menu-item a:hover {
  color: #161616;
}
section.header-wrapper .header-right-container .header-right .header-right-inner ul.header-menu-items li.current-menu-item a {
  color: #7b9b7e;
}
section.header-wrapper .header-right-container .header-right .header-right-inner ul.header-menu-items li:hover .sub-menu {
  opacity: 1;
  pointer-events: auto;
}
section.header-wrapper .header-bag-account {
  display: flex;
  flex-direction: row;
  align-items: center;
}
section.header-wrapper .header-bag-account .header-account {
  display: flex;
  flex-direction: row;
  align-items: center;
}
section.header-wrapper .header-bag-account .header-account a {
  padding: 1rem;
  color: #161616;
}
section.header-wrapper .header-bag-account .header-account a:after {
  content: "\e922";
  font-family: "chevrons";
  font-size: 2rem;
}
section.header-wrapper .header-bag-account .header-account a:hover {
  color: #7b9b7e;
}
section.header-wrapper .header-bag-account .header-account:before, section.header-wrapper .header-bag-account .header-account:after {
  content: "";
  height: 2.4rem;
  width: 1px;
  background: #cacaca;
  margin-right: 3.4rem;
  margin-left: 3.4rem;
}
section.header-wrapper .header-bag-account .header-account:after {
  display: none;
}
section.header-wrapper .hm-toggle {
  display: none;
}
body.header-state-alt section.header-wrapper {
  background: rgb(255, 255, 255);
}
body.header-state-alt section.header-wrapper .header-container {
  height: 4.3rem;
}
body.header-state-alt section.header-wrapper .header-left .header-logo img {
  height: calc(8.6rem / 4.9 );
}
body.header-state-alt section.header-wrapper .header-right-container .header-right {
  height: 4.3rem;
}
body.header-state-alt section.header-wrapper .header-right-container .header-right .header-right-inner ul.header-menu-items > li > a {
  height: 4.3rem;
  line-height: 4.3rem;
}
body.header-state-alt section.header-wrapper .header-right-container .header-right .header-right-inner ul.header-menu-items > li > a svg {
  top: calc(4.3rem / 1.45);
}
body.header-state-alt section.header-wrapper .header-bag-account .header-account a:after {
  font-size: 1.8rem;
}
body.header-state-alt section.header-wrapper .header-bag-account .header-account:before {
  height: 2rem;
}

.site-footer .section-footer {
  background: #E2DACF;
}
.site-footer .footer-cols {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  color: #161616;
  font-size: 1.5rem;
}
.site-footer .footer-cols h5 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
}
.site-footer .footer-cols .footer-col-top {
  height: 5.8rem;
}
.site-footer .footer-cols .footer-col-top h5 {
  transform: translateY(1.25rem);
}
.site-footer .footer-cols p {
  font-size: 1.5rem;
  line-height: 2.1rem;
}
.site-footer .footer-cols a {
  font-size: 1.5rem;
  color: inherit;
  text-decoration: underline;
}
.site-footer .footer-cols .footer-col {
  padding-right: 7rem;
  box-sizing: content-box;
  min-width: 17rem;
}
.site-footer .footer-cols .footer-col.footer-col-1 {
  max-width: 37rem;
}
.site-footer .footer-cols .footer-col.footer-col-1 img {
  width: 20rem;
}
.site-footer .footer-bottom {
  color: #161616;
  padding-top: 2rem;
  text-align: left;
}
.site-footer .footer-bottom * {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
}
.site-footer .footer-bottom ul li {
  display: inline-block;
  vertical-align: top;
}
.site-footer .footer-bottom a {
  color: #606060;
  text-decoration: underline;
}
.site-footer .footer-bottom a:hover {
  color: white;
}
.site-footer .certificaten-logos {
  display: inline-flex;
}
.site-footer .certificaten-logos ul li {
  display: inline-block;
  vertical-align: top;
  margin-right: 0.5rem;
}
.site-footer .certificaten-logos img {
  height: 7rem;
  width: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
}
.site-footer .certificaten-logos img.postnl-large {
  background: white;
  padding: 1rem;
}
.site-footer .certificaten-logos img.gft, .site-footer .certificaten-logos img.fairtrade {
  padding: 0.5rem;
  background: black;
}

.footer-social-media {
  margin-bottom: 2.5rem;
}
.footer-social-media a {
  text-align: center;
  display: inline-block;
  vertical-align: top;
  background: transparent !important;
  padding: 0 0.5rem;
  text-decoration: none !important;
}
.footer-social-media a:first-of-type {
  margin-left: 0;
}
.footer-social-media a:after {
  color: #161616;
  font-size: 2.5rem;
  font-family: "Font Awesome 5 Brands";
}
.footer-social-media a.facebook:after {
  content: "\f39e";
}
.footer-social-media a.instagram:after {
  content: "\f16d";
}
.footer-social-media a.twitter:after {
  content: "\f099";
}
.footer-social-media a.youtube:after {
  content: "\f167";
}
.footer-social-media a.linkedin:after {
  content: "\f08c";
}
.footer-social-media a.whatsapp:after {
  content: "\f232";
}
.footer-social-media a:hover {
  transform: translateY(-0.1rem);
}
.footer-social-media a {
  margin: 0.5rem;
}

section.section-usps {
  padding: 0;
  height: 4.9rem;
  position: relative;
  z-index: 1;
  background: #E2DACF;
}
section.section-usps .page-section-inner {
  max-width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
section.section-usps .usps-list {
  font-size: 1.2rem;
}
section.section-usps .usps-list li {
  display: inline-block;
  vertical-align: top;
  color: #706A62;
  font-size: 1.4rem;
  padding: 0;
}
section.section-usps .usps-list li:before {
  font-family: "chevrons";
  content: "\e910";
  color: #7b9b7e;
  line-height: inherit;
  transition: 0.1s ease-out;
  display: inline-block;
  vertical-align: top;
  transform: translateY(0rem);
  font-size: 1rem;
  font-weight: 600;
  height: 2.5rem;
  width: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 100%;
  margin-left: 1rem;
  margin-right: 1rem;
}
section.section-usps .usps-list li.current-item > span span {
  display: block;
}
section.section-usps .usps-list li > a, section.section-usps .usps-list li > span {
  transition: 0s ease-out;
}
section.section-usps .usps-list li > a span, section.section-usps .usps-list li > span span {
  color: inherit;
}
section.section-usps .usps-list li > a span:after, section.section-usps .usps-list li > span span:after {
  font-family: "chevrons";
  content: "\e900";
  color: #6c6c6c;
  line-height: inherit;
  transition: 0.1s ease-out;
  display: inline-block;
  vertical-align: top;
  transform: translateY(0.05rem);
  font-size: 1.2rem;
  padding-left: 0.2rem;
}
section.section-usps .usps-list li > span a span {
  color: #6c6c6c;
}
section.section-usps .usps-list li > span a:hover span {
  color: #556955;
  text-decoration: underline;
}
section.section-usps .usps-list li > span span:not([property=name]):after {
  display: none;
}
section.section-usps .usps-list li.current-page a span[property=name]:after, section.section-usps .usps-list li.current-page span span[property=name]:after, section.section-usps .usps-list li.current-item a span[property=name]:after, section.section-usps .usps-list li.current-item span span[property=name]:after {
  display: none;
}
section.section-usps .usps-list li:hover:not(.current-page) a {
  color: #7b9b7e;
}

form input[type=text],
form input[type=email],
form input[type=password],
form textarea {
  border: 1px solid #cacaca;
  border-radius: 0.4rem;
  min-height: 4.3rem;
  padding-left: 1rem;
}
form p em {
  font-size: 1.5rem;
}
form fieldset {
  border: none;
}
form fieldset legend {
  color: #7b9b7e;
  font-weight: 800;
  padding-top: 2.5rem;
  padding-bottom: 2rem;
  font-size: 2.5rem;
}

section.section-content-block {
  padding-top: 5vw;
  padding-bottom: 5vw;
}
section.section-content-block .content-block-inner {
  max-width: 84rem;
}
section.section-content-block .content-block-inner h2 {
  line-height: 1.2;
}
section.section-content-block .content-block-inner h5 {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 4.8rem;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 4rem;
  padding: 1.5rem 0;
  margin-bottom: 1.5rem;
}
section.section-content-block .content-block-inner p {
  font-size: 1.7rem;
  line-height: 3.5rem;
  margin-bottom: 3rem;
}
section.section-content-block .content-block-inner .readmore-area {
  max-height: 0;
  transition: 0.2s ease-out;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}
section.section-content-block .content-block-inner .readmore-area.expanded {
  opacity: 1;
  pointer-events: auto;
  max-height: 999rem;
  overflow: visible;
}
section.section-content-block .content-block-inner .button.button-readmore {
  margin-bottom: -3rem;
  position: relative;
  top: -3rem;
  padding-left: 0;
  margin-top: 0.6rem;
  position: relative;
  cursor: pointer;
  padding-right: 3rem;
  color: #E2DACF;
  cursor: pointer;
}
section.section-content-block .content-block-inner .button.button-readmore:after {
  font-size: 1.4rem;
  position: absolute;
  top: 0;
  font-family: "doccs-icons";
  content: "\e801";
  transition: transform 0.2s ease-in-out;
  transform: rotate(0deg);
  z-index: 2;
  color: white;
  right: 0;
}
section.section-content-block .content-block-inner .button.button-readmore:hover:after {
  transform: rotate(0deg) translateX(0.5rem);
}
section.section-content-block .content-block-inner .button.button-readmore:after {
  color: #E2DACF;
  transform: rotate(90deg) !important;
}
section.section-content-block .content-block-inner .button.button-readmore:before {
  content: attr(data-readmore-text);
  text-transform: initial;
  color: #E2DACF;
}
section.section-content-block .content-block-inner .button.button-readmore:hover:after, section.section-content-block .content-block-inner .button.button-readmore:hover:before {
  color: #628164;
}
section.section-content-block .content-block-inner .button.button-readmore.open:before {
  content: attr(data-readless-text);
}
section.section-content-block .content-block-inner .button.button-readmore.open:after {
  content: "\e80a";
}
section.section-content-block.content-block-home {
  padding-bottom: 0;
}
section.section-content-block.content-block-home p {
  font-size: 2rem;
  line-height: 3.7rem;
}
section.section-content-block.align-center .content-block-inner {
  margin: 0 auto;
}
body.page-template-tpl_inschrijfform .content-block-inner h1 {
  font-size: 5rem;
  font-weight: 900;
}
body.page-template-tpl_inschrijfform .content-block-inner h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
body.page-template-tpl_inschrijfform .content-block-inner a:not(.button-cta),
body.page-template-tpl_inschrijfform .content-block-inner a:not(.button) {
  color: #E2DACF;
  font-weight: bold;
}
body.page-template-tpl_inschrijfform .content-block-inner .accordion-items .acci-label {
  font-size: 2rem;
}

section.section-page-header {
  padding: 2.5rem 0;
}
section.section-page-header + section {
  padding-top: 3rem;
}

.inventory-list {
  display: grid;
  grid-gap: 4rem;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.3rem;
}
.inventory-list > * {
  width: 100%;
}

li.invlist-item .invlist-image {
  position: relative;
  overflow: hidden;
  padding-top: 100%;
}
li.invlist-item .invlist-image > img {
  display: none;
  max-width: 100%;
  height: auto;
  transition: 0.4s ease-out;
}
li.invlist-item .invlist-image .image-self {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-size: cover;
  background-position: center center;
  transition: 0.4s ease-out;
}
li.invlist-item .invlist-image span.qt {
  position: absolute;
  bottom: 0.6rem;
  right: 0.6rem;
  font-size: 1.5rem;
  color: white;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  padding: 0.5rem 0.8rem 0.6rem 0.8rem;
  background: rgba(0, 0, 0, 0.5);
}
li.invlist-item .invlist-image span.label {
  width: 6.6rem;
  height: 6.6rem;
  position: absolute;
  right: 1.6rem;
  top: 1.8rem;
  border-radius: 100%;
  background: #7b9b7e;
  color: white;
  font-size: 1.7rem;
  line-height: 1.6rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
}
li.invlist-item .invlist-image span.label.label-new, li.invlist-item .invlist-image span.label.label-updated {
  background: #7b9b7e;
}
li.invlist-item .invlist-image span.label.label-updated {
  background: #E2DACF;
  font-size: 1.4rem;
  color: #161616;
}
li.invlist-item .invlist-image span.label.label-sold {
  background: #161616;
}
li.invlist-item .invlist-info {
  padding: 1.9rem 0;
  color: #161616;
  height: 100%;
  margin-top: auto;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.frontpage-cats-list li.invlist-item .invlist-info {
  padding-bottom: 1rem;
  text-align: center;
}
.inventory-items-list li.invlist-item .invlist-info {
  justify-content: space-between;
}
li.invlist-item .invlist-info .invlist-title {
  font-size: 1.9rem;
  line-height: 1;
  padding-bottom: 0.5rem;
  min-height: 4rem;
}
.frontpage-cats-list li.invlist-item .invlist-info .invlist-title {
  min-height: auto;
}
li.invlist-item .invlist-info .desc {
  margin-top: -2rem;
  display: block;
  font-size: 1.5rem;
  padding-top: 1.3rem;
  line-height: 2rem;
}
li.invlist-item .invlist-info .invlist-info-bottom .price-indicators {
  font-size: 1.5rem;
  line-height: 1.2;
}
li.invlist-item .invlist-info .invlist-info-bottom .price-indicators .price-chf {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  color: #161616;
  padding-top: 0.3rem;
  display: block;
}
li.invlist-item .invlist-info .invlist-info-bottom .price-indicators .price-currencies {
  display: block;
  line-height: 1;
  color: #969696;
  padding-top: 0.2rem;
}
li.invlist-item .invlist-info .invlist-info-bottom .price-indicators .price-currencies .currency:after {
  content: " | ";
}
li.invlist-item .invlist-info .invlist-info-bottom .price-indicators .price-currencies .currency:last-of-type:after {
  content: "";
}
li.invlist-item .invlist-info .invlist-info-bottom .price-indicators .request {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
}
li.invlist-item .invlist-info .to-product {
  font-size: 1.5rem;
  text-decoration: underline;
  position: absolute;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  right: 0;
  bottom: 1.9rem;
  line-height: 1.2;
}
li.invlist-item a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
li.invlist-item a:hover .invlist-image > img,
li.invlist-item a:hover .invlist-image .image-self {
  transform: scale(1.05);
  transition-duration: 0.4s;
}
li.invlist-item a:hover .invlist-info .invlist-title {
  color: #7b9b7e;
}
li.invlist-item a:hover .invlist-info .to-product {
  color: #7b9b7e;
}

.product-items.box-list {
  display: grid;
  grid-gap: 5rem;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2.1rem;
  margin-top: 3rem;
}
.product-items.box-list > * {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .product-items.box-list {
    margin-top: 1rem;
  }
}
.product-items.flavours-picklist {
  display: grid;
  grid-gap: 5rem;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2.1rem;
}
.product-items.flavours-picklist > * {
  width: 100%;
}
.product-items.item-slots {
  display: grid;
  grid-gap: 4rem;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 5.3rem;
  padding-bottom: 2rem;
  padding-top: 2rem;
}
.product-items.item-slots > * {
  width: 100%;
}

.product-item .pi-inner {
  display: block;
  border: 1px solid #cacaca;
  border-radius: 1.4rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  color: #161616;
  height: 100%;
  transition: 0.2s ease-out;
  overflow: hidden;
  position: relative;
}
.product-item .pi-inner .pi-image {
  width: auto;
  max-width: 100%;
  height: auto;
  text-align: center;
}
.product-item .pi-inner .pi-image img {
  max-width: 70%;
  height: auto;
}
.product-item .pi-inner h5 {
  min-width: 50%;
  min-height: 2.7rem;
  max-height: 4rem;
  font-size: 1.8rem;
  margin: 0.8rem 0;
  padding: 0.2rem 0;
  line-height: 1.1;
}
.product-item .pi-inner .desc {
  display: inline-block;
  vertical-align: top;
  font-size: 1.7rem;
  min-width: 60%;
  min-height: 1.9rem;
  line-height: 1.4;
}
.product-item .pi-inner .pi-bottom {
  margin-top: auto;
  padding-top: 1.5rem;
  z-index: 6;
}
.product-item .pi-inner .pi-bottom .price {
  display: block;
  padding-bottom: 2rem;
  color: #bebebe;
}
.product-item .pi-inner .smaak-logo-container {
  height: 17.6rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media screen and (min-width: 767px) and (max-width: 980px) {
  .product-item .pi-inner .smaak-logo-container {
    height: 12.6rem;
  }
}
.product-item .pi-inner .smaak-logo-container .smaak-logo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  z-index: 6;
}
.product-item .pi-inner .smaak-logo-container .smaak-logo:after {
  display: block;
  content: "";
  border-radius: 100%;
  height: 12.4rem;
  width: 12.4rem;
  background: linear-gradient(-45deg, var(--smaak-kleur-1) 50%, var(--smaak-kleur-2) 50%);
  transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) transform;
}
@media screen and (min-width: 767px) and (max-width: 980px) {
  .product-item .pi-inner .smaak-logo-container .smaak-logo:after {
    height: 8rem;
    width: 8rem;
  }
}
.product-item .pi-inner .smaak-logo-container .smaak-logo.placeholder:after {
  background: #f2f2f2;
}
.product-item .pi-inner .smaak-logo-container .smaak-impressie {
  pointer-events: none;
  top: 0;
  position: absolute;
  opacity: 0.02;
  left: 0;
  right: 0;
  text-align: center;
  transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.product-item .pi-inner .smaak-logo-container .smaak-impressie img {
  max-width: initial;
  width: 180%;
  height: auto;
}
.product-item .pi-inner:not(.surprise-product) .smaak-logo:hover:after {
  transform: scale(1.2);
  border: 4px solid rgb(255, 255, 255);
}
.product-item .pi-inner:not(.surprise-product) .smaak-logo:hover + .smaak-impressie {
  opacity: 1;
  z-index: 5;
}
.item-slot .pi-inner .desc {
  max-width: 100%;
}
.item-slot .pi-inner.surprise-product {
  cursor: default;
}
.item-slot .pi-inner.surprise-product .title {
  font-size: 0;
}
.item-slot .pi-inner.surprise-product .title:after {
  font-size: 1.8rem;
  content: "Surprise!";
}
.item-slot .pi-inner.surprise-product .smaak-logo:after {
  background: url(../images/boxen/box-product-surprise.svg) no-repeat center center;
  background-size: auto 100%;
  border-radius: 0;
}
.item-slot .pi-inner.surprise-product .smaak-logo:before {
  content: "?";
  font-family: "Pacifico";
  color: #7b9b7e;
  font-size: 4rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: #DBE2DB;
  opacity: 0.5;
}
.item-slot .pi-inner.surprise-product .button-product {
  visibility: hidden;
  background: #D7D7D7;
  font-size: 0;
  cursor: default;
}
.item-slot .pi-inner.surprise-product .button-product:after {
  content: "Vaste keuze";
  font-size: initial;
}
.item-slot.filled .top:before {
  font-family: "chevrons";
  content: "\e910";
  padding-right: 1rem;
  color: #7b9b7e;
  font-size: 1.5rem;
}
.item-slot.filled .item-slot-inner .pi-inner:not(.surprise-product) .pi-bottom .button-product {
  background: white;
  color: #628164;
  border: 1px solid #7b9b7e;
}
.item-slot.filled .item-slot-inner .pi-inner:not(.surprise-product) .pi-bottom .button-product:hover {
  background: #7b9b7e;
  color: white;
}

.item-slot,
.flavour-pick {
  position: relative;
}
.item-slot .pi-inner:hover,
.flavour-pick .pi-inner:hover {
  border-color: #b1b1b1;
}
.item-slot.focused .top,
.flavour-pick.focused .top {
  color: #161616;
}
.item-slot .placeholder:not(.smaak-logo),
.flavour-pick .placeholder:not(.smaak-logo) {
  background: #f2f2f2;
  display: inline-block;
  vertical-align: top;
  border-radius: 1.35rem;
}
.item-slot .top,
.flavour-pick .top {
  font-size: 1.6rem;
  font-weight: 700;
  position: absolute;
  padding: 0 1rem;
  top: 0;
  transform: translateX(2rem) translateY(1rem);
  z-index: 6;
}
.flavours-picklist .flavour-pick .pi-inner:hover {
  background: #f2f2f2;
  border-color: #f2f2f2;
}
.flavours-picklist .flavour-pick.surprise-pick {
  display: none;
}

.item-slot-variation-switch {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 1.5rem;
  opacity: 0.5;
  transform: translateY(0.5rem);
  transition: 0.2s ease-in-out;
  transition-delay: 0.3s;
  border: 1px solid #cacaca;
}
.item-slot-variation-switch:before {
  line-height: 3rem;
  font-size: 1.7rem;
  padding-right: 1rem;
  color: #717171;
}
.item-slot.filled .item-slot-variation-switch {
  opacity: 1;
  transform: translateY(0rem);
}
.item-slot-variation-switch li {
  cursor: pointer;
  color: #717171;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 3rem;
  padding: 0rem 1.5rem;
  font-size: 1.4rem;
  border-radius: 2.45rem;
  background: #f2f2f2;
  font-weight: bold;
  margin: 0 0.5rem;
  pointer-events: none;
}
.item-slot.filled .item-slot-variation-switch li {
  pointer-events: auto;
}
.item-slot.filled .item-slot-variation-switch li.selected {
  background: #7b9b7e;
  color: white;
}
.item-slot-variation-switch li:before {
  font-family: "chevrons";
  padding-right: 0.4rem;
}
.item-slot-variation-switch li.variation-soilon:before {
  content: "\e91b";
  transform: scale(1.2);
  padding-right: 0.6rem;
}
.item-slot-variation-switch li.variation-losse:before {
  content: "\e920";
}

.flavours-picklist-container {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: white;
  z-index: 10;
  transition: opacity 0.2s ease-in-out;
  overflow: auto;
}
.flavours-picklist-container .flavour-picklist-bar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 1rem 3.5rem;
  padding-top: 1.5rem;
  margin-bottom: -1.5rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .flavours-picklist-container .flavour-picklist-bar {
    padding: 1rem 1.5rem;
  }
}
.flavours-picklist-container .flavour-picklist-bar .picklist-bar-title {
  font-size: 2.5rem;
  color: #7b9b7e;
}
@media screen and (max-width: 767px) {
  .flavours-picklist-container .flavour-picklist-bar .picklist-bar-title {
    font-size: 2rem;
    padding-top: 0.5rem;
  }
}
.flavours-picklist-container .flavours-picklist {
  margin: 0 auto;
  max-width: 123rem;
  padding: 2rem 3.5rem;
}
.flavours-picklist-container.picklist-show {
  opacity: 1;
  pointer-events: auto;
}

.blog-list-grid {
  display: grid;
  grid-gap: 4rem;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 1rem;
  margin-top: 8rem;
}
.blog-list-grid .blog-item {
  background: white;
}
.blog-list-grid .blog-item .blog-item-image {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease-out;
}
.blog-list-grid .blog-item .blog-item-image img {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: auto;
  transition: 0.4s ease-out;
}
.blog-list-grid .blog-item .blog-item-info {
  padding-top: 2rem;
  text-align: left;
}
.blog-list-grid .blog-item .blog-item-info h5 {
  color: #161616;
  font-size: 1.9rem;
  line-height: 2.4rem;
  padding-top: 0rem;
}
.blog-list-grid .blog-item:hover {
  transform-origin: center center;
}
.blog-list-grid .blog-item:hover img {
  transform: scale(1.02);
}

.section-blogs-overview .page-indicator {
  display: inline-block;
  vertical-align: top;
  font-size: 1.5rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  top: -1rem;
  position: relative;
  margin-bottom: 2rem;
}

.section-newly-added-items {
  background: #E2DACF;
}
.section-newly-added-items .button-container {
  padding-top: 2rem;
  text-align: center;
}

.newly-added-items {
  margin-top: 8rem;
  display: grid;
  grid-gap: 5rem;
  grid-template-columns: repeat(4, 1fr);
}
.newly-added-items > * {
  width: 100%;
}

.section-member-logos .member-logos-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}
.section-member-logos .member-logos-list .member-logo {
  padding: 0.8rem 1.4rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.section-member-logos .member-logos-list .member-logo a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.section-member-logos .member-logos-list .member-logo a img {
  max-width: 16rem;
  max-height: 8rem;
  width: auto;
  height: auto;
}
.section-member-logos .member-logos-list .member-logo a:hover {
  opacity: 0.8;
}

section.section-smaken-list {
  background-image: url("../../../subtlepatterns-production/designers/subtlepatterns/uploads/groovepaper.png");
  margin-bottom: 4rem;
}
section.section-smaken-list.compact-smaken-list {
  padding-top: 0;
}
section.section-smaken-list.compact-smaken-list .page-section-inner {
  max-width: 80rem;
}
section.section-smaken-list.compact-smaken-list .page-section-inner h2 {
  text-align: center;
}
section.section-smaken-list .smaken-list {
  padding-top: 3rem;
}

.smaken-list-item {
  padding: 1rem 0;
  display: flex;
  flex-direction: row;
  background: white;
  box-shadow: -10px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 1.5rem;
  margin-bottom: 2rem;
  overflow: hidden;
  padding: 0;
  padding-right: 3rem;
  position: relative;
}
.smaken-list-item .smaak-detail-btn {
  position: absolute;
  right: 2rem;
  top: 2rem;
  z-index: 4;
}
.smaken-list-item .sli-image {
  flex: 0 0 35%;
  padding: 0 2.5rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.smaken-list-item .sli-image img {
  position: relative;
  max-width: 80%;
  max-height: 80%;
  height: auto;
  width: auto;
  transform: scale(2.2);
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-delay: 0;
  transition-duration: 8s;
  left: -25%;
}
.compact-smaken-list .smaken-list-item .sli-image {
  flex: 0 0 33%;
  padding-left: 0;
}
.smaken-list-item .sli-info {
  flex: 0 0 65%;
  padding-top: 6.1rem;
  padding-bottom: 3rem;
  padding-left: 6rem;
  padding-right: 3rem;
  position: relative;
  z-index: 6;
}
.compact-smaken-list .smaken-list-item .sli-info {
  flex: 0 0 66%;
  padding-left: 3rem;
}
.smaken-list-item .sli-info .sli-info-header {
  display: flex;
  flex-direction: row;
}
.smaken-list-item .sli-info .sli-info-header .smaak-logo {
  padding-right: 2.2rem;
}
.smaken-list-item .sli-info .sli-info-header .smaak-logo:after {
  display: block;
  content: "";
  border-radius: 100%;
  height: 5.1rem;
  width: 5.1rem;
  background: linear-gradient(-45deg, var(--smaak-kleur-1) 50%, var(--smaak-kleur-2) 50%);
}
.smaken-list-item .sli-info .sli-info-header .smaak-titles {
  font-size: 2.2rem;
}
.compact-smaken-list .smaken-list-item .sli-info .sli-info-header .smaak-titles {
  font-size: 1.8rem;
}
.smaken-list-item .sli-info .sli-info-header .smaak-titles .title {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: inherit;
}
.smaken-list-item .sli-info .sli-info-header .smaak-titles .desc {
  font-size: inherit;
}
.smaken-list-item .sli-info .sli-info-content {
  padding-top: 1.9rem;
}
.compact-smaken-list .smaken-list-item .sli-info .sli-info-content p {
  font-size: 1.4rem;
}
.smaken-list-item .sli-info .sli-info-ingredients {
  padding-top: 1.7rem;
}
.compact-smaken-list .smaken-list-item .sli-info .sli-info-ingredients {
  padding-top: 1.2rem;
}
.smaken-list-item .sli-info .sli-info-ingredients li {
  display: inline-block;
  vertical-align: top;
  font-size: 1.3rem;
  line-height: 2.7rem;
  color: #a8a8a8;
}
.smaken-list-item .sli-info .sli-info-ingredients li:after {
  content: " | ";
}
.smaken-list-item .sli-info .sli-info-ingredients li:last-of-type:after {
  content: "";
}
.section-smaken-list .smaken-list-item:nth-child(even) {
  flex-direction: row-reverse;
  box-shadow: 10px 0px 20px rgba(0, 0, 0, 0.1);
  padding-left: 3rem;
  padding-right: 0;
}
.section-smaken-list .smaken-list-item:nth-child(even) .sli-info {
  padding-right: 3rem;
  padding-left: 3rem;
}
.compact-smaken-list .section-smaken-list .smaken-list-item:nth-child(even) .sli-info {
  padding-left: 3rem;
}
.section-smaken-list .smaken-list-item:nth-child(even) .sli-image img {
  left: 25%;
}
.smaken-list-item:hover .sli-image img {
  transform: scale(2.3);
}

section.section-abonneer-cta {
  padding-top: 0;
}
section.section-abonneer-cta .section-heading {
  padding-top: 0;
}
section.section-abonneer-cta .button-container {
  text-align: center;
}

section.section-diensten {
  background-image: url("../../../subtlepatterns-production/designers/subtlepatterns/uploads/groovepaper.png");
}
section.section-diensten .diensten-inner {
  padding: 3.3rem 0;
  padding-bottom: 0rem;
}
section.section-diensten .diensten-inner ul.diensten-items {
  display: flex;
  flex-direction: row;
  grid-gap: 2rem;
  margin-top: 0rem;
  margin-bottom: 61px;
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}
section.section-diensten .diensten-inner ul.diensten-items li.diensten-item {
  padding: 2rem;
  width: 33.3333333333%;
  text-align: center;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 1.4rem;
  position: relative;
  margin-bottom: 5rem;
}
section.section-diensten .diensten-inner ul.diensten-items li.diensten-item span.icon {
  display: block;
  margin-bottom: 2rem;
  margin-top: 2rem;
}
section.section-diensten .diensten-inner ul.diensten-items li.diensten-item span.icon img {
  height: 5.3rem;
  width: auto;
}
section.section-diensten .diensten-inner ul.diensten-items li.diensten-item span.icon svg {
  height: 5.3rem;
  width: auto;
}
section.section-diensten .diensten-inner ul.diensten-items li.diensten-item span.icon svg * {
  fill: white;
}
section.section-diensten .diensten-inner ul.diensten-items li.diensten-item h5.title {
  min-height: 2.5rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
  font-size: 2.1rem;
  line-height: 1.2;
  font-weight: 500;
  position: absolute;
  left: 0;
  right: 0;
  top: 26rem;
}
@media screen and (max-width: 1100px) {
  section.section-diensten .diensten-inner ul.diensten-items li.diensten-item h5.title {
    top: 30rem;
  }
}
section.section-diensten .diensten-inner ul.diensten-items li.diensten-item h5.title:before {
  font-family: "chevrons";
  content: "\e910";
  font-size: 1.8rem;
  position: relative;
  left: -1.5rem;
  color: #d2ddd3;
}
section.section-diensten .diensten-inner ul.diensten-items li.diensten-item p.desc {
  font-size: 2rem;
  padding: 0 5%;
  color: white;
  line-height: 2.7rem;
}

.woocommerce .product.post-503 .summary {
  float: none;
}
.woocommerce .product.post-503 .woocommerce-price-suffix:before {
  content: "incl. ";
}
.woocommerce .product.post-503 form.cart .single_add_to_cart_button {
  background: #7b9b7e;
  font-size: 0;
}
.woocommerce .product.post-503 form.cart .single_add_to_cart_button:before {
  content: "Bestel proefpakket";
  font-size: 1.4rem;
}
.woocommerce .product.post-503 .product_meta {
  display: none;
}
.woocommerce .product.post-503:after {
  display: table;
  clear: both;
  content: "";
}
.woocommerce .product .woocommerce-tabs.wc-tabs-wrapper {
  display: none;
}

section.page-textpage.article-content {
  margin-top: 0rem;
}
section.page-textpage.article-content .page-header {
  text-align: center;
}
section.page-textpage.article-content .article-content-inner .article-content-image {
  text-align: center;
  margin-bottom: 3.9rem;
}
section.page-textpage.article-content .article-content-inner .article-content-image img {
  border-radius: 1.5rem;
  max-width: 100%;
  height: auto;
}
section.page-textpage.article-content .page-section-button {
  text-align: center;
}

.share-buttons {
  display: block;
  background: white;
  padding: 3.5rem;
  border-radius: 1.5rem;
  padding-bottom: 5rem;
  border: 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.6);
}
.share-buttons h5 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 3rem;
}

.post-navigation {
  margin-top: -7rem;
}
.post-navigation a.post-nav-item {
  color: #161616;
  font-size: 1.5rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  position: relative;
  width: 33%;
}
.post-navigation a.post-nav-item:after, .post-navigation a.post-nav-item:before {
  font-family: "chevrons";
  content: "\e900";
  color: #161616;
  line-height: inherit;
  transition: 0.1s ease-out;
  display: inline-block;
  vertical-align: top;
  font-size: 1.6rem;
  font-weight: 600;
  position: absolute;
  top: 0;
}
.post-navigation a.post-nav-item.previous-post {
  padding-left: 2rem;
  float: left;
}
.post-navigation a.post-nav-item.previous-post:after {
  display: none;
}
.post-navigation a.post-nav-item.previous-post:before {
  transform: rotate(180deg);
  left: 0;
  padding-left: 0.2rem;
}
.post-navigation a.post-nav-item.next-post {
  text-align: right;
  padding-right: 2rem;
  float: right;
}
.post-navigation a.post-nav-item.next-post:before {
  display: none;
}
.post-navigation a.post-nav-item.next-post:after {
  right: -0.2rem;
}
.post-navigation a.post-nav-item:hover {
  color: #7b9b7e;
}
.post-navigation a.post-nav-item:hover:after, .post-navigation a.post-nav-item:hover:before {
  color: #7b9b7e;
}

section.page-section.page-faq .faq-inner {
  max-width: 83rem;
  margin: 0 auto;
  padding: 0 2rem;
}
section.page-section.page-faq .faq-inner .faq-heading {
  font-size: 2.2rem;
}
section.page-section.page-faq .faq-inner .faq-heading > img {
  position: relative;
  top: 1.4rem;
  left: -0.5rem;
}
section.page-section.page-faq .faq-inner ul.faq-items {
  display: block;
  margin-top: 1rem;
  margin-bottom: 3.5rem;
}
section.page-section.page-faq .faq-inner ul.faq-items li.faq-item {
  display: block;
  text-align: left;
  margin-bottom: 1rem;
}
section.page-section.page-faq .faq-inner ul.faq-items li.faq-item .fi-label {
  display: block;
  min-height: 4rem;
  background: #f2f2f2;
  padding: 1.1rem;
  padding-left: 1.5rem;
  font-weight: bold;
  font-size: 1.6rem;
  padding-right: 3.4rem;
  position: relative;
  cursor: pointer;
}
section.page-section.page-faq .faq-inner ul.faq-items li.faq-item .fi-label:after {
  content: "";
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.3rem;
  height: 0.9rem;
  background: url(../images/icons/faq-arrow-down.svg) center center no-repeat;
  background-size: 100%;
  transition: 0.2s;
}
section.page-section.page-faq .faq-inner ul.faq-items li.faq-item .fi-label.open:after {
  transform: rotate(180deg);
  top: 40%;
}
section.page-section.page-faq .faq-inner ul.faq-items li.faq-item .fi-text {
  opacity: 0;
  display: none;
  font-size: 1.6rem;
  padding: 2rem;
  padding-left: 23px;
  transition: 0.2s 0.2s ease-in-out;
  background: #f9f9f9;
}
section.page-section.page-faq .faq-inner ul.faq-items li.faq-item .fi-text p {
  margin-bottom: 1.5rem;
}

.section-order-process .wc-tabs-wrapper {
  display: none;
}
.section-order-process .order-process-heading {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .section-order-process .order-process-heading {
    flex-direction: column-reverse;
    align-items: initial;
  }
}
@media screen and (max-width: 767px) {
  .section-order-process .order-process-heading .steps-indicator {
    margin-left: -1.15rem;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
  }
}
.section-order-process .order-process-heading .steps-indicator ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.section-order-process .order-process-heading .steps-indicator li {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #DBE2DB;
  border-radius: 50%;
  height: 3.7rem;
  width: 3.7rem;
  color: white;
  margin: 0 1.15rem;
  position: relative;
  z-index: 2;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .section-order-process .order-process-heading .steps-indicator li {
    height: 2.7rem;
    width: 2.7rem;
    font-size: 1.5rem;
    margin: 0 0.8rem;
  }
}
.section-order-process .order-process-heading .steps-indicator li:before {
  position: absolute;
  top: 1.6rem;
  height: 0.5rem;
  content: "";
  left: -2.3rem;
  right: 3.7rem;
  background: #DBE2DB;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .section-order-process .order-process-heading .steps-indicator li:before {
    height: 0.4rem;
    top: 1.15rem;
    left: -1.6rem;
    right: 2.7rem;
  }
}
.section-order-process .order-process-heading .steps-indicator li:first-child:before {
  display: none;
}
.section-order-process .order-process-heading .steps-indicator li a {
  color: inherit;
}
.section-order-process .order-process-heading .steps-indicator li.current-step, .section-order-process .order-process-heading .steps-indicator li.finished-step {
  background: #7b9b7e;
}
.section-order-process .order-process-heading .steps-indicator li.current-step:before, .section-order-process .order-process-heading .steps-indicator li.finished-step:before {
  background: #7b9b7e;
}
.section-order-process .order-process-info {
  display: flex;
  flex-direction: row;
  transform: translateY(-3rem);
}
@media screen and (max-width: 767px) {
  .section-order-process .order-process-info {
    justify-content: center;
    margin-top: 1rem;
  }
}
.section-order-process .order-process-info .info-element {
  font-size: 1.3rem;
  display: flex;
  flex-direction: row;
  padding-right: 1rem;
}
@media screen and (max-width: 767px) {
  .section-order-process .order-process-info .info-element {
    font-size: 1.1rem;
  }
}
.section-order-process .order-process-info .info-element h5 {
  line-height: 2.8rem;
  font-weight: normal;
  font-size: inherit;
  padding-right: 1rem;
}
@media screen and (max-width: 767px) {
  .section-order-process .order-process-info .info-element h5 {
    line-height: 2rem;
  }
}
.section-order-process .order-process-info .info-element li {
  display: inline-block;
  vertical-align: top;
  color: #3e3e3e;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 2.8rem;
  padding: 0rem 1.5rem;
  font-size: 1.3rem;
  border-radius: 2.45rem;
  background: #f2f2f2;
  margin: 0 0.025rem;
}
@media screen and (max-width: 767px) {
  .section-order-process .order-process-info .info-element li {
    font-size: 1.1rem;
    height: 2rem;
  }
}
.section-order-process + .section-smaken-list {
  padding-top: 0;
}
.section-order-process + .section-smaken-list .section-heading {
  padding-top: 0;
  padding-bottom: 0;
}

.order-process-buttons {
  border-top: 1px dashed #D7D7D7;
  padding-top: 3rem;
  margin-top: -2rem;
}
.order-process-buttons ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.order-process-buttons a {
  display: inline-block;
  vertical-align: top;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  position: relative;
  text-align: center;
  height: 4.9rem;
  line-height: 4.9rem;
  padding: 0 4rem;
  font-size: 1.8rem;
  border-radius: 2.45rem;
  color: white;
  background: #7b9b7e;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0px 0px 0 rgba(0, 0, 0, 0);
  background: #D7D7D7;
}
.order-process-buttons a:hover {
  box-shadow: 0px 0px 2rem rgba(0, 0, 0, 0.2);
}
.order-process-buttons a:before, .order-process-buttons a:after {
  font-family: "chevrons";
  content: "\e900";
  color: white;
  line-height: inherit;
  transition: 0.1s ease-out;
  display: inline-block;
  vertical-align: top;
  font-size: 1.5rem;
  font-weight: 600;
  position: absolute;
  top: 0;
  transform: translateY(0.05rem);
}
.order-process-buttons a.button-prev {
  padding-left: 5rem;
}
.order-process-buttons a.button-prev:before {
  left: 2rem;
  transform: translateY(0.05rem) scaleX(-1);
}
.order-process-buttons a.button-prev:after {
  display: none;
}
.order-process-buttons a.button-next {
  padding-right: 5rem;
}
.order-process-buttons a.button-next:before {
  display: none;
}
.order-process-buttons a.button-next:after {
  right: 2rem;
}
.order-process-buttons a.button-next.active {
  animation: subtilefadeInUpScaled cubic-bezier(0.165, 0.84, 0.44, 1) 1s;
  animation-fill-mode: forwards;
  position: fixed;
  right: 5rem;
  bottom: 4vh;
  z-index: 2;
  background: #7b9b7e;
}
.order-process-buttons a.button-next.active:hover {
  background: #161616;
}
.order-process-buttons a.active {
  background: #7b9b7e;
}
.order-process-buttons a:hover:not(.active) {
  background: #D7D7D7;
  cursor: default;
}

.products-order-grid .woocommerce-notices-wrapper {
  display: none;
}
.products-order-grid p.price {
  display: none;
}
.products-order-grid .product_meta {
  display: none;
}
.products-order-grid .summary.entry-summary {
  display: none;
}
.products-order-grid .wcsatt-add-to-subscription-action-label {
  display: none;
}
.products-order-grid .wcsatt-options-wrapper {
  display: none;
}
.products-order-grid ul.products {
  display: none;
}
.products-order-grid .wcsatt-options-product-prompt {
  text-align: center;
  display: block;
  padding-top: 2rem;
  font-weight: 700;
  font-size: 1.8rem;
}
.products-order-grid .bundle_error {
  display: none !important;
}
.products-order-grid .bundle_button {
  display: none;
}
.products-order-grid .bundle_availability {
  display: none;
}
.products-order-grid ul.wcsatt-options-product {
  margin-bottom: 0;
  margin-top: 2rem;
  text-align: center;
}
.products-order-grid ul.wcsatt-options-product li.subscription-option {
  display: inline-block;
  vertical-align: top;
}
.products-order-grid ul.wcsatt-options-product li.subscription-option .subscription-option-details {
  padding: 1rem 2rem;
  margin: 0 1rem;
  font-weight: 600;
  border: 1px solid #7b9b7e;
  border-radius: 0.6rem;
}
.products-order-grid ul.wcsatt-options-product li.subscription-option .subscription-option-details .subscription-details {
  text-transform: lowercase;
}
.products-order-grid ul.wcsatt-options-product li.subscription-option .subscription-option-details .subscription-details:hover {
  cursor: pointer;
  color: #7b9b7e;
}
.products-order-grid ul.wcsatt-options-product li.subscription-option input[type=radio] {
  -webkit-appearance: none;
}
.products-order-grid ul.wcsatt-options-product li.subscription-option input[type=radio]:checked + .subscription-option-details {
  color: white;
  background: #7b9b7e;
}
.products-order-grid ul.wcsatt-options-product li.subscription-option input[type=radio]:checked + .subscription-option-details .subscription-details:hover {
  color: white;
}

.box-extra-info {
  border-radius: 1.4rem;
  padding: 2.5rem;
  padding-bottom: 0.7rem;
  margin-bottom: 4rem;
  background: #eff2ef;
  position: relative;
}
.box-extra-info p {
  font-size: 1.4rem;
  padding-left: 2rem;
}
.box-extra-info p:before {
  font-family: "Times";
  font-size: 1.2rem;
  content: "i";
  border-radius: 100%;
  background: white;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 1.5rem;
  width: 1.5rem;
  font-weight: 700;
  position: absolute;
  left: 1.75rem;
  top: 2.75rem;
}

.woocommerce .woocommerce-form-coupon-toggle .woocommerce-info,
.woocommerce .woocommerce-form-login-toggle .woocommerce-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: 5rem;
  border: 1px solid #cacaca;
  background: white;
}
.woocommerce .woocommerce-form-coupon-toggle .woocommerce-info a,
.woocommerce .woocommerce-form-login-toggle .woocommerce-info a {
  padding-left: 0.5rem;
}
@media screen and (max-width: 767px) {
  .woocommerce .woocommerce-form-coupon-toggle .woocommerce-info,
.woocommerce .woocommerce-form-login-toggle .woocommerce-info {
    flex-direction: column;
    justify-content: center;
  }
  .woocommerce .woocommerce-form-coupon-toggle .woocommerce-info a,
.woocommerce .woocommerce-form-login-toggle .woocommerce-info a {
    display: block;
    padding-left: 0;
  }
}
.woocommerce .woocommerce-info {
  font-size: 1.5rem;
  border-top: 0;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 1rem;
  line-height: 1.2;
  padding-top: 1rem;
}
.woocommerce .woocommerce-info:before {
  display: none;
}
.woocommerce .woocommerce-info a {
  color: #7b9b7e;
  font-weight: 600;
}
.woocommerce .woocommerce-message[role=alert] {
  display: none;
}
.woocommerce form[name=checkout] * {
  font-size: 1.6rem;
}
.woocommerce form[name=checkout] h3.checkout-title,
.woocommerce form[name=checkout] #order_review_heading {
  font-size: 2.2rem;
  padding-bottom: 2rem;
  float: none;
}
.woocommerce form[name=checkout] .woocommerce-billing-fields__field-wrapper {
  padding-bottom: 2rem;
}
.woocommerce form[name=checkout] .woocommerce-shipping-fields__field-wrapper {
  padding-top: 2rem;
  border-top: 2px solid white;
  margin-top: 3rem;
}
.woocommerce form[name=checkout] .form-row {
  width: 50%;
  display: flex;
  flex-direction: row;
  width: 50%;
  display: flex;
  flex-direction: row;
  justify-content: left;
}
.woocommerce form[name=checkout] .form-row.form-row-last {
  float: none;
}
.woocommerce form[name=checkout] .form-row label {
  width: 17.6rem;
  height: 4.3rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  line-height: 1;
}
.woocommerce form[name=checkout] .form-row label abbr.required {
  color: #7b9b7e;
}
.woocommerce form[name=checkout] .form-row label .optional {
  display: none;
}
.woocommerce form[name=checkout] .form-row label[for=billing_country] + .woocommerce-input-wrapper strong, .woocommerce form[name=checkout] .form-row label[for=shipping_country] + .woocommerce-input-wrapper strong {
  display: flex;
  flex-direction: row;
  height: 4.3rem;
  align-items: center;
}
.woocommerce form[name=checkout] .form-row span.woocommerce-input-wrapper input.input-text,
.woocommerce form[name=checkout] .form-row span.woocommerce-input-wrapper textarea {
  border: 1px solid #D7D7D7;
  border-radius: 0.4rem;
  min-height: 4.3rem;
  width: 25.9rem;
  padding-left: 1rem;
}
.woocommerce form[name=checkout] #customer_details {
  background: #f2f2f2;
  padding: 3rem;
  padding-left: 2.3rem;
  padding-right: 2.3rem;
  margin-bottom: 3rem;
  border: 1px solid #cacaca;
}
.woocommerce form[name=checkout] .shipping_address {
  display: none;
}
.woocommerce form[name=checkout] table.shop_table.cart .cart_item .product-name .product-quantity {
  display: inline-block;
  background: gray;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  color: white;
  text-align: center;
  letter-spacing: 0.05rem;
  margin-right: 0.8rem;
  line-height: 2.5rem;
}
.woocommerce form[name=checkout] table.shop_table.cart .cart_item:not(.bundled_table_item) .product-name .product-quantity {
  display: none;
}
@media screen and (max-width: 767px) {
  .woocommerce form[name=checkout] table.shop_table.cart .change-freq,
.woocommerce form[name=checkout] table.shop_table.cart .delete-product-link {
    text-align: left;
  }
}
.woocommerce form[name=checkout] table.shop_table.cart .change-freq a,
.woocommerce form[name=checkout] table.shop_table.cart .delete-product-link a {
  display: block;
  padding-top: 1rem;
  color: gray;
}
.woocommerce form[name=checkout] table.shop_table.cart .change-freq a span,
.woocommerce form[name=checkout] table.shop_table.cart .delete-product-link a span {
  text-decoration: underline;
  display: inline-block;
  vertical-align: top;
  padding-right: 0.3rem;
}
.woocommerce form[name=checkout] table.shop_table.cart .change-freq a:hover,
.woocommerce form[name=checkout] table.shop_table.cart .delete-product-link a:hover {
  color: #161616;
}
.woocommerce form[name=checkout] table.shop_table.cart .bundled_table_item .bundled_table_item_indent {
  padding-left: 3rem;
}
.woocommerce form[name=checkout] table.shop_table.woocommerce-checkout-review-order-table {
  border: 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid #cacaca;
}
.woocommerce form[name=checkout] .woocommerce-checkout-review-order-table tr.cart-subtotal,
.woocommerce form[name=checkout] .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals,
.woocommerce form[name=checkout] .woocommerce-checkout-review-order-table tr.recurring-totals,
.woocommerce form[name=checkout] .woocommerce-checkout-review-order-table tr.order-total:not(.recurring-total),
.woocommerce form[name=checkout] .woocommerce-checkout-review-order-table tr.shipping.recurring-total,
.woocommerce form[name=checkout] .woocommerce-checkout-review-order-table tr.cart-discount.recurring-total {
  display: none;
}
.woocommerce form[name=checkout] .woocommerce-checkout-review-order-table th.product-subtotal,
.woocommerce form[name=checkout] .woocommerce-checkout-review-order-table td.product-subtotal {
  display: none;
}
.woocommerce form[name=checkout] .woocommerce-checkout-review-order-table tr.order-total.recurring-total {
  display: flex;
  flex-direction: column;
}
.woocommerce form[name=checkout] .woocommerce-checkout-review-order-table tr.order-total.recurring-total th {
  padding-top: 1.5rem;
}
.woocommerce form[name=checkout] .woocommerce-checkout-review-order-table tr.order-total.recurring-total td {
  border-top: 0;
}
.woocommerce form[name=checkout] .woocommerce-checkout-review-order-table div.first-payment-date small {
  color: #7b9b7e;
}
.woocommerce .woocommerce-checkout #payment {
  background: transparent;
}
.woocommerce .woocommerce-checkout #payment div.payment_box {
  background: #f2f2f2;
}
.woocommerce .woocommerce-checkout #payment div.payment_box:before {
  border-bottom-color: #f2f2f2;
}

.woocommerce form #order_review_heading {
  font-size: 2.5rem;
  font-weight: 700;
  padding-bottom: 2.5rem;
  margin-top: 3rem;
}

.woocommerce-cart table.cart td.product-thumbnail,
.woocommerce-checkout table.cart td.product-thumbnail {
  position: relative;
  padding-right: 2rem;
  padding-left: 1rem;
}
.woocommerce-cart table.cart img.attachment-woocommerce_thumbnail,
.woocommerce-cart table.cart img.attachment-woocommerce_thumbnail,
.woocommerce-checkout table.cart img.attachment-woocommerce_thumbnail,
.woocommerce-checkout table.cart img.attachment-woocommerce_thumbnail {
  width: 7.6rem;
  position: absolute;
  top: -1rem;
  padding-left: 1rem;
}
.woocommerce-cart #payment:before,
.woocommerce-checkout #payment:before {
  display: block;
  content: "Betaalmethode";
  font-size: 2.2rem;
  font-weight: 700;
  padding: 1rem 0;
}
.woocommerce-cart #payment .payment_box p,
.woocommerce-checkout #payment .payment_box p {
  font-size: 1.5rem;
}
.woocommerce-cart #payment .payment_box select,
.woocommerce-checkout #payment .payment_box select {
  font-size: 1.4rem;
  padding: 1rem;
  border-radius: 0.45rem;
}
.woocommerce-cart #payment .woocommerce-privacy-policy-text p,
.woocommerce-checkout #payment .woocommerce-privacy-policy-text p {
  font-size: 1.5rem;
  color: #aaa;
}
.woocommerce-cart #payment .place-order .button#place_order,
.woocommerce-checkout #payment .place-order .button#place_order {
  background-color: #7b9b7e;
  height: 4rem;
  line-height: 4rem;
  font-size: 1.7rem;
}
.woocommerce-cart #payment .place-order .button#place_order:hover,
.woocommerce-checkout #payment .place-order .button#place_order:hover {
  color: #161616;
}
.woocommerce-cart #payment .form-row,
.woocommerce-checkout #payment .form-row {
  width: 100%;
  display: block;
}
.woocommerce-cart .mollie-gateway-icon svg,
.woocommerce-cart label .mollie-gateway-icon,
.woocommerce-checkout .mollie-gateway-icon svg,
.woocommerce-checkout label .mollie-gateway-icon {
  float: none;
  max-height: 4.5rem;
}
.woocommerce-cart form .form-row,
.woocommerce-checkout form .form-row {
  width: 100%;
  display: block;
}

.bundle_table_item .product-thumbnail a:after {
  content: "Aanpassen";
  position: absolute;
  z-index: 4;
  display: inline-block;
  transform: translateY(4rem);
  display: inline-block;
  vertical-align: top;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  position: relative;
  text-align: center;
  height: 4.9rem;
  line-height: 4.9rem;
  padding: 0 4rem;
  font-size: 1.8rem;
  border-radius: 2.45rem;
  color: white;
  background: #7b9b7e;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0px 0px 0 rgba(0, 0, 0, 0);
  height: 3rem;
  line-height: 3rem;
  font-size: 1.5rem;
  padding: 0 3rem;
}
.bundle_table_item .product-thumbnail a:after:hover {
  box-shadow: 0px 0px 2rem rgba(0, 0, 0, 0.2);
}
body.twt-switch-cart .bundle_table_item .product-thumbnail a {
  pointer-events: none;
}
body.twt-switch-cart .bundle_table_item .product-thumbnail a:after {
  display: none;
}

.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  background: white;
  border-radius: 0;
}

.woocommerce form.checkout_coupon,
.woocommerce form.login {
  margin-top: -4rem;
}
.woocommerce form.checkout_coupon p:first-of-type,
.woocommerce form.login p:first-of-type {
  display: none;
}

.section-frontpage-top {
  width: 100%;
  background-color: #D7D7D7;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 55rem;
  text-align: center;
  position: relative;
}
.section-frontpage-top .page-section-inner {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
}
.section-frontpage-top .page-section-inner .sft-img {
  position: relative;
  transform: translateX(-10rem);
  flex: 0 0 40%;
}
.section-frontpage-top .page-section-inner .sft-img img {
  max-width: 120%;
  height: auto;
}
.section-frontpage-top .page-section-inner .sft-usp {
  position: absolute;
  left: 15rem;
  top: -5rem;
}
.section-frontpage-top .page-section-inner .sft-usp img {
  max-width: 12rem;
  height: auto;
}
.section-frontpage-top .page-section-inner .sft-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.section-frontpage-top .page-section-inner .sft-content .sft-content-inner {
  max-width: 85%;
}
.section-frontpage-top .page-section-inner .sft-content .sft-content-inner br {
  content: "";
  display: block;
  margin-top: 0.5rem;
}
.section-frontpage-top .page-section-inner .sft-content h1 {
  font-size: 4rem;
  line-height: 1.2;
  padding-bottom: 2rem;
}
.section-frontpage-top .page-section-inner .sft-content p {
  display: inline-block;
  vertical-align: top;
  font-size: 2.2rem;
  line-height: 3rem;
  font-weight: 600;
}
.section-frontpage-top .page-section-inner .sft-content i {
  font-weight: inherit;
}
.section-frontpage-top .page-section-inner .sft-content .buttons {
  margin-top: 4.3rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.section-frontpage-top .page-section-inner .sft-content .buttons .link-cta {
  margin-top: 0rem;
  margin-left: 0.9rem;
}
.section-frontpage-top .usp-a {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
}
.section-frontpage-top .certificaten-logos {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.section-frontpage-top .certificaten-logos ul {
  display: flex;
  flex-direction: column;
}
.section-frontpage-top .certificaten-logos ul li {
  margin-bottom: 0.4rem;
}
.section-frontpage-top .certificaten-logos img {
  width: 7rem;
  height: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  background: white;
}
.section-frontpage-top .certificaten-logos img.postnl-large {
  background: white;
  padding: 1rem;
}
.section-frontpage-top .certificaten-logos img.gft, .section-frontpage-top .certificaten-logos img.fairtrade {
  padding: 0.5rem;
  background: black;
}
.section-frontpage-top .certificaten-logos img.trustpilot {
  padding: 0.7rem;
}

section.section-homepage-why {
  padding-top: 0;
}
section.section-homepage-why .section-image {
  float: left;
  transform: translateX(-4rem);
}
section.section-homepage-why .section-image img {
  max-width: 60rem;
  height: auto;
}

.section-homepage-korte-keten {
  background-size: cover;
}
.section-homepage-korte-keten .page-section-inner {
  display: flex;
  flex-direction: row;
}
.section-homepage-korte-keten .section-image {
  flex: 1 1 50%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.section-homepage-korte-keten .section-image img {
  max-width: 49rem;
  height: auto;
}
.section-homepage-korte-keten .section-content {
  flex: 1 1 50%;
  padding-left: 8.6rem;
}
.section-homepage-korte-keten .section-content .content-part {
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
}
.section-homepage-korte-keten .section-heading {
  text-align: left;
  padding-bottom: 1rem;
}
.section-homepage-korte-keten .section-heading .styled-font {
  color: white;
}

section.section-homepage-img-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
}
section.section-homepage-img-bg *,
section.section-homepage-img-bg *:before {
  color: white !important;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
section.section-homepage-img-bg .section-heading {
  padding: 0 25%;
}
section.section-homepage-img-bg .styled-font {
  padding-right: 2rem;
}
section.section-homepage-img-bg .link-cta {
  font-weight: 600;
}

.page-landingspage h1, .page-landingspage h2 {
  text-align: center;
  line-height: 1.5;
  color: #7b9b7e;
}

.sp-order-button {
  text-align: center;
  padding-bottom: 3rem;
  padding-top: 3rem;
}
.page-landingspage .sp-order-button .button {
  transform: scale(1.1);
}
@media screen and (max-width: 767px) {
  .page-landingspage .sp-order-button .button {
    transform: scale(1.5);
  }
}
.sp-order-button .sp-price {
  color: #628164;
  display: block;
  padding-top: 2rem;
  font-size: 1.8rem;
}

.sp-content {
  padding: 2rem;
}

@media screen and (max-width: 767px) {
  .flavour-detail-content p {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    line-height: 1.4;
  }
}

.woocommerce {
  font-size: 1.4rem;
  /**
  * Buttons
  */
}
.woocommerce form .form-row {
  width: 100%;
  display: block;
}
.woocommerce table.shop-table {
  font-size: 1.4rem;
}
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-block;
  vertical-align: top;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  position: relative;
  text-align: center;
  height: 4.9rem;
  line-height: 4.9rem;
  padding: 0 4rem;
  font-size: 1.8rem;
  border-radius: 2.45rem;
  color: white;
  background: #7b9b7e;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0px 0px 0 rgba(0, 0, 0, 0);
  height: 4rem;
  line-height: 4rem;
  font-size: 1.4rem;
  margin: 0.25rem 0;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  box-shadow: 0px 0px 2rem rgba(0, 0, 0, 0.2);
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  color: white;
}
.woocommerce .woocommerce-customer-details address {
  border: none;
  background: #f2f2f2;
}

body.woocommerce-account .woocommerce .woocommerce-message[role=alert] {
  display: block;
}
body.woocommerce-account .woocommerce .twt-action-button {
  text-decoration: none;
  font-weight: 600;
  padding: 1rem 0;
  display: block;
}
body.woocommerce-account .woocommerce .twt-action-button:before {
  transform: none;
}
body.woocommerce-account .woocommerce .twt-action-button:hover {
  color: #161616;
}
body.woocommerce-account .woocommerce .twt-action-button:hover:before {
  color: #161616;
}
body.woocommerce-account .woocommerce .twt-subscription-actions-buttons {
  display: inline-flex;
  flex-direction: column-reverse;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  body.woocommerce-account .woocommerce .twt-subscription-actions-buttons .link-cta {
    font-size: 1.75rem;
  }
}
body.woocommerce-account .woocommerce .shop_table {
  border-left: 0;
  border-right: 0;
}
body.woocommerce-account .woocommerce .shop_table tr td {
  padding-left: 0;
  padding-right: 0;
}
body.woocommerce-account .woocommerce .shop_table tr td:first-child {
  font-weight: 500;
}
body.woocommerce-account .woocommerce .shop_table.order_details .order_item.bundle_table_item .product-name {
  font-weight: 600;
}
body.woocommerce-account .woocommerce .shop_table.order_details .order_item.bundle_table_item .product-name a.wcs-switch-link {
  display: block;
  padding: 0 1rem;
  margin-top: 1.7rem;
  text-decoration: underline;
}
body.woocommerce-account .woocommerce .shop_table.order_details .order_item.bundle_table_item .product-name .product-quantity {
  display: none;
}
body.woocommerce-account .woocommerce .woocommerce-customer-details .addresses > div {
  float: none;
  width: 100%;
}
body.woocommerce-account .woocommerce table {
  font-size: 1.5rem;
  border-top: 0;
}
body.woocommerce-account .woocommerce table th {
  padding-left: 0;
}
body.woocommerce-account tr.woocommerce-orders-table__row--status-switch-order {
  display: none;
}
body.woocommerce-account.twt-teammember tr.woocommerce-orders-table__row--status-switch-order {
  display: table-row;
}
body.woocommerce-account.twt-teammember tr.woocommerce-orders-table__row--status-switch-order td {
  background: #f5f7f5;
}
@media screen and (max-width: 767px) {
  body.woocommerce-account.woocommerce-view-subscription .choose-next-ship-date .button {
    margin-top: 1rem;
  }
}
body.woocommerce-account.woocommerce-view-subscription #ui-datepicker-div {
  transform: scale(1.5);
  transform-origin: top left;
}
body.woocommerce-account h2,
body.woocommerce-account h3 {
  color: #7b9b7e;
}
body.woocommerce-account .order_item.bundle_table_item .product-name a:first-of-type {
  pointer-events: none;
  color: #161616;
}
body.woocommerce-account .bundled_table_item_indent {
  pointer-events: none;
}
body.woocommerce-account .bundled_table_item_indent a {
  color: #161616;
}
body.woocommerce-account mark {
  background: #7b9b7e;
  color: white;
  display: inline-block;
  padding: 0 1rem;
}
body.woocommerce-account .yith-wcmap .user-profile {
  display: block;
  margin-bottom: 2rem;
}
body.woocommerce-account .yith-wcmap .user-profile .user-avatar {
  display: none;
}
body.woocommerce-account .yith-wcmap .user-profile .user-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
}
body.woocommerce-account .yith-wcmap .user-profile .user-email {
  font-size: inherit;
}
body.woocommerce-account #my-account-menu-tab .myaccount-menu {
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
body.woocommerce-account #my-account-menu-tab.layout-modern .myaccount-menu > li {
  padding-left: 2rem;
  padding-right: 2rem;
  margin-right: 0;
}
body.woocommerce-account #my-account-menu-tab.layout-modern .myaccount-menu > li a.yith-edit-account .item-label:after {
  content: " bewerken";
}
@media screen and (max-width: 767px) {
  body.woocommerce-account #my-account-menu-tab.layout-modern .myaccount-menu > li {
    padding-left: 1.5rem;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 0.6rem;
    width: 49%;
    line-height: 1;
  }
  body.woocommerce-account #my-account-menu-tab.layout-modern .myaccount-menu > li .item-icon {
    margin-right: 1rem;
  }
  body.woocommerce-account #my-account-menu-tab.layout-modern .myaccount-menu > li a.yith-edit-account .item-label:after {
    content: "";
  }
}
body.woocommerce-account .wcs-toolbox-action {
  display: inline-block;
  vertical-align: top;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  position: relative;
  text-align: center;
  height: 4.9rem;
  line-height: 4.9rem;
  padding: 0 4rem;
  font-size: 1.8rem;
  border-radius: 2.45rem;
  color: white;
  background: #7b9b7e;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0px 0px 0 rgba(0, 0, 0, 0);
}
body.woocommerce-account .wcs-toolbox-action:hover {
  box-shadow: 0px 0px 2rem rgba(0, 0, 0, 0.2);
}
body.woocommerce-account .wcs-toolbox-popup h2 {
  font-size: 1.8rem;
  line-height: 1.5;
  color: #161616;
  font-weight: 500;
}
body.woocommerce-account #my-account-menu .myaccount-menu li a span.item-icon,
body.woocommerce-account #my-account-menu .myaccount-submenu li a span.item-icon,
body.woocommerce-account #my-account-menu-tab .myaccount-menu li a span.item-icon,
body.woocommerce-account #my-account-menu-tab .myaccount-submenu li a span.item-icon {
  margin-right: 5px;
}
body.woocommerce-account .twt-new-frequency-selects {
  display: none;
}
body.woocommerce-account .twt-change-frequency-options {
  margin-bottom: 2rem;
}
body.woocommerce-account .twt-change-frequency-options .frequency-option {
  display: inline-block;
  padding-right: 2rem;
  padding-bottom: 1.5rem;
}
body.woocommerce-account .twt-change-frequency-options .frequency-option:first-of-type {
  padding-left: 0;
}
body.woocommerce-account .twt-change-frequency-options .frequency-option span {
  font-size: 1.8rem;
  color: #7b9b7e;
  font-weight: 700;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  cursor: pointer;
}
body.woocommerce-account .twt-change-frequency-options .frequency-option span:before {
  content: "";
  border-radius: 100%;
  border: 1px solid #D7D7D7;
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
}
body.woocommerce-account .twt-change-frequency-options .frequency-option:hover span {
  color: #161616;
}
body.woocommerce-account .twt-change-frequency-options .frequency-option.selected span {
  color: #161616;
}
body.woocommerce-account .twt-change-frequency-options .frequency-option.selected span:after {
  font-family: "chevrons";
  content: "\e910";
  border-radius: 100%;
  border: 1px solid transparent;
  background: #7b9b7e;
  color: white;
  font-size: 1.2rem;
  width: 2rem;
  height: 2rem;
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  left: 0;
  top: 0;
}
body.woocommerce-account .twt-change-frequency-options .frequency-option.selected:hover span {
  color: #161616;
}

body, html {
  font-size: 10px;
}

body {
  background: white;
  background-size: cover;
}
body.fixed {
  position: fixed;
  overflow-y: scroll;
}

p,
ul {
  font-size: 1.6rem;
  line-height: 2.6rem;
  hyphens: manual;
}
p a,
ul a {
  color: #7b9b7e;
  hyphens: manual;
  font-size: inherit;
}

strong, strong span {
  font-weight: 700;
}

h1, h2 {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 4.8rem;
  font-weight: 500;
  font-size: 3.5rem;
  line-height: 4rem;
  margin: 1.7rem 0;
}

h3 {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 4.8rem;
  font-weight: 900;
  font-size: 4rem;
  line-height: 5rem;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
  text-decoration: underline;
}

.bg-type-2 {
  background: #DBE2DB;
}

.styled-font {
  color: #7b9b7e;
  margin: 0 !important;
  padding: 0 !important;
}

.rhea-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}
.rhea-bg svg {
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  position: absolute;
}
.rhea-bg .zvm-bg-desktop,
.rhea-bg .zvm-bg-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .rhea-bg .zvm-bg-mobile {
    display: block;
    position: relative;
    top: 6rem;
  }
}
@media screen and (min-width: 768px) {
  .rhea-bg .zvm-bg-desktop {
    display: block;
  }
}

.view-all-cats {
  font-weight: 500;
}

.site-wrapper {
  background-color: white;
  margin: 0 auto;
  background-size: cover;
  position: relative;
  min-height: 100vh;
  height: auto;
  padding-top: 8.6rem;
}
.button {
  display: inline-block;
  vertical-align: top;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  position: relative;
  text-align: center;
  height: 4.9rem;
  line-height: 4.9rem;
  padding: 0 4rem;
  font-size: 1.8rem;
  border-radius: 2.45rem;
  color: white;
  background: #7b9b7e;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0px 0px 0 rgba(0, 0, 0, 0);
  appearance: none;
  -webkit-appearance: none;
}
.button:hover {
  box-shadow: 0px 0px 2rem rgba(0, 0, 0, 0.2);
}

.button-cta {
  display: inline-block;
  vertical-align: top;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  position: relative;
  text-align: center;
  height: 4.9rem;
  line-height: 4.9rem;
  padding: 0 4rem;
  font-size: 1.8rem;
  border-radius: 2.45rem;
  color: white;
  background: #7b9b7e;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0px 0px 0 rgba(0, 0, 0, 0);
  border: none;
  padding-right: 4.8rem;
  padding-left: 3.2rem;
  transition: background 0.2s ease-in-out;
}
.button-cta:hover {
  box-shadow: 0px 0px 2rem rgba(0, 0, 0, 0.2);
}
.button-cta:before {
  font-family: "chevrons";
  content: "\e900";
  color: white;
  line-height: inherit;
  transition: 0.1s ease-out;
  display: inline-block;
  vertical-align: top;
  font-size: 1.5rem;
  font-weight: 600;
  padding-right: 0.8rem;
}
.button-cta:hover {
  background: #628164;
}
.button-cta:hover:after {
  transform: translateX(5px);
}

.button-product {
  display: inline-block;
  vertical-align: top;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  position: relative;
  text-align: center;
  height: 4.9rem;
  line-height: 4.9rem;
  padding: 0 4rem;
  font-size: 1.8rem;
  border-radius: 2.45rem;
  color: white;
  background: #7b9b7e;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0px 0px 0 rgba(0, 0, 0, 0);
  height: 3.6rem;
  line-height: 3.6rem;
  padding: 0 2.8rem;
  font-size: 1.4rem;
  text-transform: uppercase;
}
.button-product:hover {
  box-shadow: 0px 0px 2rem rgba(0, 0, 0, 0.2);
}

.link-cta {
  font-size: 1.7rem;
  color: #161616;
  text-decoration: underline;
}
.link-cta:before {
  font-family: "chevrons";
  content: "\e900";
  color: #161616;
  line-height: inherit;
  transition: 0.1s ease-out;
  display: inline-block;
  vertical-align: top;
  font-size: 1.5rem;
  font-weight: 600;
  padding-right: 0.2rem;
}
.link-cta:hover {
  text-decoration: none;
}
.link-cta:hover:before {
  color: #7b9b7e;
}

.input-wrapper input[type=text], .input-wrapper input[type=email] {
  border: 1px solid #cacaca;
  height: 4.8rem;
  border-radius: 2.1rem;
  padding: 0 2.1rem;
  font-size: 1.6rem;
  color: #7b9b7e;
}

.page-section {
  padding: 6.5rem 0;
}
.page-section .page-section-inner {
  margin: 0 auto;
  max-width: 123rem;
  padding-left: 3.5rem;
  padding-right: 3.5rem;
  height: 100%;
}
.page-section.page-section-narrow .page-section-inner {
  max-width: 86.7rem;
  margin: 0 auto;
}
.page-section.page-section-narrow .page-section-inner .content-block-inner h2 {
  padding: 0;
}
.page-section .align-center {
  text-align: center;
}
.page-section .page-section-button {
  text-align: center;
  padding: 2rem 0;
}
.page-section h3 {
  font-size: 2.2rem;
  line-height: 2.7rem;
  padding-bottom: 1.5rem;
  font-weight: 600;
}
.page-section p {
  font-size: 1.7rem;
  line-height: 1.58;
  padding-bottom: 1.8rem;
}
.page-section .content-part {
  padding-bottom: 2.5rem;
  padding-top: 1rem;
}

.section-heading {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 4.8rem;
  text-align: center;
  padding-top: 6.5rem;
  padding-bottom: 4rem;
  line-height: 4.8rem;
}
.section-heading > p {
  display: inline-block;
  vertical-align: top;
  max-width: 60%;
  font-weight: normal;
}

.section-heading-underline {
  display: block;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 4rem;
}
.section-heading + .section-heading-underline {
  margin-top: -4rem;
}

.page-section-top-text {
  text-align: center;
  max-width: 86.7rem;
  margin: 0 auto;
}
.page-section-top-text p {
  margin-bottom: 2rem;
}

.jw-quads {
  display: grid;
  grid-gap: 5rem;
  grid-template-columns: repeat(4, 1fr);
}
.jw-quads > * {
  width: 100%;
}

.jw-thirds {
  display: grid;
  grid-gap: 4rem;
  grid-template-columns: repeat(3, 1fr);
}
.jw-thirds > * {
  width: 100%;
}

.jw-halves {
  display: grid;
  grid-gap: 4rem;
  grid-template-columns: repeat(2, 1fr);
}
.jw-halves > * {
  width: 100%;
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

.hamburger-menu-wrapper {
  display: none;
}

.cookie-bar {
  height: 0;
  overflow: hidden;
  transition: 0.5s ease-in-out;
  background: #E2DACF;
  width: 100%;
  color: white;
  line-height: 3.4rem;
  font-size: 1.4rem;
  text-align: center;
  position: relative;
}
.cookie-bar.show {
  height: 3.4rem;
  overflow: visible;
}
.cookie-bar p {
  display: inline-block;
  vertical-align: top;
}
.cookie-bar .close-cookie-bar {
  position: absolute;
  right: 5%;
  line-height: 3.4rem;
  cursor: pointer;
}
.cookie-bar .close-cookie-bar:hover {
  text-decoration: underline;
}

.zvm-underline {
  position: relative;
  display: inline-block;
  vertical-align: top;
}
.zvm-underline svg {
  position: absolute;
  top: 1.9rem;
  left: 0;
  transform: scaleX(1.05);
}
@media screen and (min-width: 1440px) {
  .zvm-underline svg {
    top: 2.1rem;
  }
}
.zvm-underline svg path {
  transform: translateY(0.1rem);
  transition: 0.5s linear;
}
.zvm-underline.loaded svg path {
  stroke-dashoffset: 0;
}

.section-inverted-style h1,
.section-inverted-style h2,
.section-inverted-style h3,
.section-inverted-style p {
  color: white;
}

.contact-cols {
  display: flex;
  flex-direction: row;
  margin-top: 5rem;
}
.contact-cols .form {
  flex: 0 0 60%;
  margin-right: 5rem;
  position: sticky;
  top: 0;
}
.contact-cols .form p {
  font-weight: 500;
}
.contact-cols .contact-sidebar {
  background: #E2DACF;
}
.contact-cols .contact-sidebar .contact-img img {
  width: 100%;
  height: auto;
}
.contact-cols .contact-sidebar .contact-text {
  padding: 1.9rem;
  padding-right: 3rem;
}
.contact-cols .contact-sidebar .contact-text p {
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 1rem;
}
.contact-cols .contact-sidebar .contact-text h2, .contact-cols .contact-sidebar .contact-text h3 {
  font-size: 1.9rem;
  padding: 1rem 0;
  line-height: 1.3;
  padding-bottom: 1.5rem;
}

.switcher {
  position: fixed;
  right: 5.5rem;
  top: 1rem;
  z-index: 9;
}
body.header-state-alt .switcher {
  display: none;
}

.popup-container {
  position: fixed;
  z-index: 1004;
  display: none;
  justify-content: center;
  align-items: center;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: opacity 3s ease-in-out;
}
.popup-container.show {
  display: flex;
  flex-direction: column;
  opacity: 1;
}

.popup-inner {
  padding: 5rem;
  max-width: 90vw;
  background: white;
  position: relative;
  display: none;
}
@media (max-width: 500px) {
  .popup-inner {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
.popup-inner.show {
  display: block;
}
.popup-inner .popup-content .popup-heading {
  text-align: center;
}
.popup-inner .popup-content .popup-heading h4 {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .popup-inner .popup-content .popup-heading h4 {
    font-size: 2rem;
  }
}
.popup-inner .popup-content .search-form form {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  margin-top: 1rem;
}
.popup-inner .popup-content .search-form form input[type=search] {
  padding-left: 1rem;
  padding-right: 0.5rem;
  border: 1px solid #D6D6D6;
  flex: 1 1 auto;
  height: 4.1rem;
  text-size-adjust: none;
  -webkit-appearance: none;
}
@media screen and (max-width: 767px) {
  .popup-inner .popup-content .search-form form input[type=submit] {
    height: 4.1rem;
    line-height: 4.1rem;
  }
}
.popup-inner .close-popup {
  position: absolute;
  right: 2rem;
  top: 2rem;
  z-index: 4;
  cursor: pointer;
  transform: scale(1);
  transition: 0.1s ease-out;
}
.popup-inner .close-popup img {
  height: 1.5rem;
  width: 1.5rem;
}
.popup-inner .close-popup:hover {
  transform: scale(1.05);
}

section.section-smaken-top-img-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  text-align: center;
}
section.section-smaken-top-img-bg *,
section.section-smaken-top-img-bg *:before {
  color: white !important;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
section.section-smaken-top-img-bg .section-heading {
  padding: 0 25%;
}
section.section-smaken-top-img-bg .styled-font {
  padding-right: 2rem;
}
section.section-smaken-top-img-bg .link-cta {
  font-weight: 600;
}

section.page-section-smaken .section-heading {
  padding: 0;
}
section.page-section-smaken .section-heading .styled-font {
  padding-right: 1.5rem;
}
@media screen and (max-width: 767px) {
  section.page-section-smaken .section-heading .styled-font {
    padding-right: 1rem;
  }
}
section.page-section-smaken + .section-smaken-list {
  padding-top: 0;
}

div[class*=surveyBranding] {
  display: none !important;
}

.trustpilot-elem.trustpilot-row {
  padding: 2rem 2rem;
  border-bottom: 1px solid #f2f2f2;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.trustpilot-elem.trustpilot-row .img {
  flex: 1 1 0;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .trustpilot-elem.trustpilot-row .img {
    flex: initial;
  }
}
.trustpilot-elem.trustpilot-row .img img {
  height: 2.5rem;
  width: auto;
}
@media screen and (max-width: 767px) {
  .trustpilot-elem.trustpilot-row .img img {
    height: 2rem;
  }
}
.trustpilot-elem.trustpilot-row .text {
  text-align: left;
  flex: 1 1 0;
  padding-top: 0.3rem;
  padding-left: 2rem;
}
.trustpilot-elem.trustpilot-row .text p {
  font-weight: 600;
  color: #333333;
  font-size: 1.4rem;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .trustpilot-elem.trustpilot-row .text p {
    font-size: 1rem;
    line-height: 1;
  }
}
.trustpilot-elem.trustpilot-row .text p .rating {
  font-weight: 800;
}
.trustpilot-elem.trustpilot-row + .section-heading {
  padding-top: 4rem;
}
@media screen and (max-width: 767px) {
  .trustpilot-elem.trustpilot-row + .section-heading {
    padding-top: 2rem;
  }
}

.wdgk_donation_content {
  max-width: 100%;
  background: white;
  padding: 2rem;
  border: 1px solid #cacaca;
  margin-bottom: 3rem;
  position: relative;
}
.wdgk_donation_content h3 {
  font-weight: 500;
  font-size: 2rem;
  position: relative;
  padding-right: 6rem;
}
.wdgk_donation_content h3 img {
  position: absolute;
  right: 2rem;
  top: 0;
  max-height: 2rem;
  width: auto;
  transform: scale(1.8);
}
@media screen and (max-width: 767px) {
  .wdgk_donation_content h3 img {
    transform: scale(1.3);
    top: -0.5rem;
    right: 1rem;
  }
}
.wdgk_donation_content:after {
  clear: both;
}
.wdgk_donation_content .wdgk_display_option span {
  background: #DBE2DB;
}
.wdgk_donation_content input.wdgk_donation {
  padding-left: 1rem;
  border: 1px solid #cacaca;
  font: inherit;
}
@media screen and (max-width: 767px) {
  .wdgk_donation_content input.wdgk_donation {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 767px) {
  .wdgk_donation_content input.wdgk_donation {
    max-width: 20rem;
  }
}
.wdgk_donation_content a.button.wdgk_add_donation {
  position: absolute;
  right: 2.2rem;
  bottom: 2.3rem;
}
@media screen and (min-width: 767px) {
  .wdgk_donation_content a.button.wdgk_add_donation {
    right: auto;
    left: 28rem;
  }
}

.button-alt {
  display: inline-block;
  vertical-align: top;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  position: relative;
  text-align: center;
  line-height: 1;
  min-height: 3rem;
  padding: 1rem 1.5rem;
  font-size: 1.5rem;
  border-radius: 1rem;
  color: #161616;
  background: white;
  text-decoration: none;
  border: 1px solid #cacaca;
  cursor: pointer;
  transition: 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0px 0px 0 rgba(0, 0, 0, 0);
}
.button-alt:hover {
  box-shadow: 0px 0px 2rem rgba(0, 0, 0, 0.1);
}
.button-alt.small {
  min-height: 2rem;
  padding: 0.5rem 1rem;
  font-size: 1.5rem;
  border-radius: 0.8rem;
}

section.page-section.section-order-process {
  background-image: url("../../../subtlepatterns-production/designers/subtlepatterns/uploads/groovepaper.png");
}
section.page-section.section-order-process.box-detail {
  padding-bottom: 0;
}

.product-item .pi-inner {
  border: 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid #cacaca;
}
.product-item .pi-inner .pi-bottom .price {
  font-weight: 600;
}

section.section-usps .usps-list li {
  font-weight: 600;
}

.item-slot-variation-switch {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 1.4rem;
  padding: 1.4rem;
}

section.section-smaken-list.compact-smaken-list {
  padding-top: 4rem;
}

section.section-smaken-top-img-bg .section-heading {
  padding: 0 10%;
}

.styled-font {
  transform: scale(1.15) translateY(-7%);
}

.link-cta:before {
  transform: translateY(0.4rem);
}
@media screen and (max-width: 767px) {
  .link-cta:before {
    transform: translateY(0.2rem);
  }
}

@media screen and (max-width: 767px) {
  body .item-slot .top, body .flavour-pick .top {
    padding: 0;
    transform: none;
    top: -3.5rem;
    background: none;
    font-size: 2rem;
    padding-left: 1.4rem;
  }
  body .item-slot {
    margin-top: 4rem;
  }
  body section.section-smaken-list.compact-smaken-list {
    padding-top: 2.5rem;
  }
}
.content-inner {
  font-size: 2rem;
  line-height: 2.4rem;
  background: rgb(255, 255, 255);
}
.content-inner h1,
.content-inner h2,
.content-inner h3,
.content-inner h4,
.content-inner h5,
.content-inner h6 {
  padding: 2rem 0;
}
.content-inner p,
.content-inner > div {
  margin-bottom: 2.5rem;
  line-height: inherit;
}
.content-inner p a,
.content-inner > div a {
  color: #7b9b7e;
}
.content-inner ul {
  margin-bottom: 3rem;
}
.content-inner ul li {
  font-size: inherit;
  padding-top: 0.2rem;
  padding-bottom: 0.4rem;
  position: relative;
  padding-left: 1.4rem;
  list-style: disc;
  list-style-position: inside;
}
.content-inner img {
  max-width: 100%;
  height: auto;
}

section.page-section.page-textpage {
  margin-top: 0rem;
  margin-bottom: 0rem;
}
section.page-section.page-textpage .textpage-inner {
  position: relative;
  z-index: 2;
  margin-bottom: 4rem;
}
section.page-section.page-textpage .textpage-inner .textpage-top {
  color: white;
}
section.page-section.page-textpage .textpage-inner .textpage-content {
  max-width: 91rem;
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 2.2rem;
  text-align: left;
}
section.page-section.page-textpage .textpage-inner .textpage-content-self {
  padding: 0 6rem;
}

.textpage-content-inner {
  font-size: 1.9rem;
  line-height: 1.5;
  /* cookiebot */
}
.textpage-content-inner .textpage-image {
  text-align: center;
  margin-top: -25rem;
}
@media (max-width: 1025px) and (min-height: 1200px) {
  .textpage-content-inner .textpage-image {
    margin-top: -17rem;
  }
}
.textpage-content-inner .textpage-image img {
  max-width: 100%;
  height: auto;
}
.textpage-content-inner > div a {
  color: #7b9b7e;
  font-weight: 700;
  text-decoration: underline;
}
.textpage-content-inner h2 {
  font-weight: 700;
  line-height: 5.6rem;
  font-size: 3rem;
  margin-top: 0;
  margin-bottom: 2rem;
  color: #7b9b7e;
}
.textpage-content-inner h3 {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  line-height: 5.6rem;
  font-size: 2.3rem;
  margin-top: 1rem;
  margin-bottom: 0;
}
.textpage-content-inner h4 {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  line-height: 5.6rem;
  font-size: 2.4rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.textpage-content-inner p {
  margin-bottom: 0.8rem;
  font-size: inherit;
  line-height: inherit;
  padding-bottom: 0.6rem;
}
.textpage-content-inner p img {
  margin-bottom: 1rem !important;
  border-radius: 0.6rem;
}
.textpage-content-inner p img.aligncenter {
  margin: 0 auto;
}
.textpage-content-inner blockquote {
  background: #f9f9f9;
  border-left: 1px solid #DBE2DB;
  margin: 4rem 1rem;
  padding: 0.5em 10px;
  quotes: "“" "”" "‘" "’";
}
.textpage-content-inner blockquote:before {
  color: #ccc;
  content: "“";
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}
.textpage-content-inner blockquote p {
  display: inline;
}
.textpage-content-inner ul {
  font-size: inherit;
  line-height: inherit;
  margin-bottom: 2rem;
  padding-left: 2rem;
}
.textpage-content-inner ul li {
  display: list-item;
  padding: 0.4rem 0;
  list-style: disc !important;
  padding-left: 0.5rem;
}
.textpage-content-inner img {
  max-width: 100%;
  height: auto;
  margin: 2rem auto;
}
.textpage-content-inner img.aligncenter {
  display: block;
}
.textpage-content-inner img.size-blog_detail_content_image {
  width: 100%;
}
.textpage-content-inner .alignleft {
  margin: 0;
  float: left;
  margin-right: 1rem;
}
.textpage-content-inner .alignright {
  float: right;
  margin: 0;
  margin-left: 1rem;
}
.textpage-content-inner table {
  border: 1px solid lightgray;
  width: 100% !important;
  font-size: 1.4rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  padding: 1rem;
  margin-bottom: 2rem;
}
.textpage-content-inner table thead {
  border-bottom: 1px solid gray;
}
.textpage-content-inner table tr td {
  border-bottom: 1px solid gray;
  border-right: 1px solid gray;
  padding: 0 0.5rem;
  vertical-align: top;
}
.textpage-content-inner table tr td:last-child {
  border-right: 0;
}
.textpage-content-inner table tbody tr:last-child td {
  border-bottom: 0;
}

@media screen and (max-width: 1440px) {
  html, body {
    font-size: 9px;
  }
}
@media screen and (max-width: 970px) {
  section.header-wrapper .header-left {
    padding-left: 2rem;
  }
  section.header-wrapper .header-right-container .header-right .header-right-inner ul.header-menu-items > li {
    padding: 0 0.7rem;
  }

  .diensten-list .flex-row .flex-row-image img {
    width: 14rem;
  }
}
@media screen and (max-width: 767px) {
  html, body {
    font-size: 10px;
  }

  body.fixed {
    overflow-y: hidden;
  }

  * {
    max-width: 100%;
  }

  .jw-thirds {
    display: block;
  }

  .jw-halves {
    display: block;
  }

  p {
    font-size: 1.3rem;
    line-height: 1.2;
  }

  h1 {
    font-size: 2rem;
    line-height: 3rem;
  }

  h2 {
    font-size: 2rem;
    line-height: 2.7rem;
  }

  h3 {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  .page-section {
    padding: 3rem 0;
  }
  .page-section .page-section-inner {
    padding: 0 1.6rem;
  }
  .page-section .section-heading {
    padding-top: 4rem;
    padding-bottom: 2rem;
    font-size: 2.4rem;
    line-height: 2.5rem;
  }
  .page-section .page-section-button {
    text-align: center;
    padding: 2rem 0;
  }
  .page-section h3 {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
  .page-section p {
    font-size: 1.3rem;
    line-height: 1.7rem;
    padding-bottom: 1.5rem;
  }
  .page-section .content-part {
    padding-bottom: 1.5rem;
    padding-top: 0rem;
  }

  .site-wrapper {
    padding-top: 5.3rem;
  }
  .mobile-only {
    display: block;
  }

  .desktop-only {
    display: none;
  }

  .cookie-bar {
    display: none;
  }

  .flex-row {
    display: block;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
  }
  .flex-row .flex-row-image img {
    max-width: 100%;
  }
  .flex-row .flex-row-content {
    padding: 0;
  }
  .flex-row .flex-row-content .button {
    margin-bottom: 5rem;
  }
  .section-frontpage-projects .flex-row {
    padding-top: 0;
  }

  body.single .page-section-inner .section-heading {
    line-height: 2.5rem;
    padding-top: 1.5rem;
  }
  body.single .page-section-inner .single-top-image {
    width: 100%;
    margin-bottom: 2.5rem;
    transform: translateX(0);
  }
  body.single .page-section-inner .content-inner {
    padding: 0 1.92rem;
  }

  .section-member-logos .member-logos-list .member-logo {
    padding: 0.8rem;
  }
  .section-member-logos .member-logos-list .member-logo a img {
    max-width: 25vw;
    max-height: 8rem;
    width: auto;
    height: auto;
  }
  .section-member-logos .member-logos-list .member-logo a:hover {
    opacity: 0.8;
  }

  .page-section-button .text-button {
    font-size: 1.3rem;
  }

  .button {
    height: 3.3rem;
    line-height: 3.3rem;
    padding: 0 2.5rem;
    font-size: 1.3rem;
  }

  .button-product {
    height: 2.7rem;
    line-height: 2.7rem;
    padding: 0 1.5rem;
    font-size: 1.1rem;
  }

  .contact-cols {
    flex-direction: column-reverse;
  }
  .contact-cols .form {
    margin-right: 0;
    padding-top: 5rem;
  }
  .contact-cols .form > p {
    font-size: 2rem;
    line-height: 1.2;
  }
  .contact-cols .form .gform_wrapper {
    margin-top: 2rem;
  }
  .link-cta {
    font-size: 1.3rem;
  }
  .link-cta:before {
    font-size: 1.3rem;
  }

  .section-frontpage-top {
    min-height: initial;
    padding-bottom: 5rem;
  }
  .section-frontpage-top .page-section-inner {
    flex-direction: column;
  }
  .section-frontpage-top .page-section-inner .sft-img {
    padding-top: 3.5rem;
    position: relative;
    transform: translateX(-4rem);
  }
  .section-frontpage-top .page-section-inner .sft-img img {
    max-width: 80%;
  }
  .section-frontpage-top .page-section-inner .sft-usp {
    position: absolute;
    left: 11rem;
    top: 1rem;
  }
  .section-frontpage-top .page-section-inner .sft-usp img {
    max-width: 7rem;
    height: auto;
  }
  .section-frontpage-top .page-section-inner .sft-content {
    flex-direction: column;
  }
  .section-frontpage-top .page-section-inner .sft-content .sft-content-inner {
    max-width: 100%;
  }
  .section-frontpage-top .page-section-inner .sft-content h1 {
    font-size: 2rem;
    line-height: 1.2;
    padding-top: 1rem;
    padding-bottom: 0;
  }
  .section-frontpage-top .page-section-inner .sft-content p {
    font-size: 1.5rem;
    line-height: 2rem;
    padding-bottom: 0;
  }
  .section-frontpage-top .page-section-inner .sft-content p .styled-font {
    transform: scale(1.15);
  }
  .section-frontpage-top .page-section-inner .sft-content p + p {
    padding-top: 2rem;
  }
  .section-frontpage-top .page-section-inner .sft-content .buttons {
    margin-top: 2rem;
    flex-direction: column;
  }
  .section-frontpage-top .page-section-inner .sft-content .buttons .link-cta {
    margin-left: 0;
    margin-top: 1.5rem;
  }
  .section-frontpage-top .certificaten-logos {
    right: 0;
    left: auto;
    top: 2rem;
    transform: none;
    padding: 1rem;
    padding-right: 0.8rem;
    padding-bottom: 0.3rem;
  }
  .section-frontpage-top .certificaten-logos ul li {
    margin-bottom: 0;
  }
  .section-frontpage-top .certificaten-logos img {
    width: 4.5rem;
    height: auto;
    box-shadow: initial;
    border-radius: 0;
  }
  .section-frontpage-top .certificaten-logos img.fairtrade, .section-frontpage-top .certificaten-logos img.gft {
    padding: 0;
  }
  .section-frontpage-top .usp-a {
    right: 1rem;
    bottom: 1rem;
  }

  section.section-homepage-why {
    padding-top: 0;
    position: relative;
    width: 100vw;
    overflow-x: hidden;
  }
  section.section-homepage-why .section-image {
    float: none;
    transform: 0;
    position: absolute;
    right: -60%;
  }
  section.section-homepage-why .section-image img {
    opacity: 0.8;
    width: 120vw;
    height: auto;
  }
  section.section-homepage-why .section-content {
    width: 60vw;
    position: relative;
    z-index: 2;
  }
  section.section-homepage-why .section-content p {
    text-shadow: 0 0 2px rgb(255, 255, 255);
  }

  .section-homepage-korte-keten {
    background-size: 237%;
    background-position: top right;
    background-repeat: no-repeat;
  }
  .section-homepage-korte-keten .page-section-inner {
    flex-direction: column;
  }
  .section-homepage-korte-keten .section-image {
    display: none;
    flex: 1 1 100%;
    text-align: center;
  }
  .section-homepage-korte-keten .section-image img {
    max-width: 80vw;
    height: auto;
  }
  .section-homepage-korte-keten .section-content {
    flex: 0 0 50%;
    padding-left: 0;
    text-align: center;
  }
  .section-homepage-korte-keten .section-content .content-part {
    box-shadow: none;
  }
  .section-homepage-korte-keten .section-heading {
    text-align: center;
    padding-bottom: 1rem;
    padding-top: 1rem;
  }
  .section-homepage-korte-keten .section-heading .styled-font {
    color: white;
  }
  .section-homepage-korte-keten .content-part:last-child {
    margin-top: 1.5rem;
  }

  section.section-diensten .section-heading {
    padding-top: 0.5rem;
  }
  section.section-diensten .section-heading > p {
    width: 100%;
    max-width: initial;
  }
  section.section-diensten .diensten-inner {
    padding: 0 0;
    margin-top: 1rem;
  }
  section.section-diensten .diensten-inner ul.diensten-items {
    flex-direction: column;
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
  }
  section.section-diensten .diensten-inner ul.diensten-items li.diensten-item {
    width: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: initial;
  }
  section.section-diensten .diensten-inner ul.diensten-items li.diensten-item h5.title {
    width: 30%;
    min-height: initial;
    margin: initial;
    position: initial;
    font-size: 1.5rem;
    font-weight: 500;
  }
  section.section-diensten .diensten-inner ul.diensten-items li.diensten-item h5.title:before {
    font-size: 1.3rem;
    left: -0.2rem;
    top: 0;
    margin-right: 0.3rem;
  }
  section.section-diensten .diensten-inner ul.diensten-items li.diensten-item span.icon {
    width: 25%;
    text-align: center;
    padding: 0 0.5rem;
  }
  section.section-diensten .diensten-inner ul.diensten-items li.diensten-item span.icon img {
    height: 4rem;
    margin-top: 0;
  }
  section.section-diensten .diensten-inner ul.diensten-items li.diensten-item p {
    width: 40%;
    padding: 0;
    text-align: center;
    font-size: 1.2rem;
  }

  section.section-homepage-img-bg {
    background-position: center center;
  }
  section.section-homepage-img-bg .section-heading {
    padding: 0 10vw;
  }
  section.section-homepage-img-bg .styled-font {
    padding-right: 0;
  }
  section.section-homepage-img-bg .link-cta {
    font-weight: 600;
  }

  .section-product-detail .page-section-inner.product-detail-container {
    display: block;
    padding-top: 6rem;
    position: relative;
  }

  section.page-textpage.article-content .page-header h1 {
    margin: 0;
    margin-top: -1rem;
  }
  section.page-textpage.article-content .article-content-inner {
    padding: 0 calc(1.6rem * 2);
  }
  section.page-textpage.article-content .article-content-inner .article-content-image {
    text-align: center;
    margin-bottom: 1rem;
    width: calc(100% + ( 1.6rem * 2 ));
    max-width: initial;
    transform: translateX(-1.6rem);
  }
  section.page-textpage.article-content .article-content-inner .article-content-image img {
    margin: 1.5rem auto;
    border-radius: 0;
    box-shadow: none;
  }
  section.page-textpage.article-content .article-content-inner .textpage-content-self {
    padding: 0;
  }
  .share-buttons h5 {
    font-size: 1.5rem;
  }

  .post-navigation {
    margin-top: 0;
  }
  .post-navigation a.post-nav-item {
    font-size: 1.3rem;
    width: 45%;
    line-height: 1.25;
  }
  .content-inner {
    font-size: 1.5rem;
    line-height: 1.25;
  }
  .content-inner h1,
.content-inner h2,
.content-inner h3,
.content-inner h4,
.content-inner h5,
.content-inner h6 {
    padding: 1.5rem 0;
  }
  .content-inner p,
.content-inner > div {
    margin-bottom: 1.5rem;
    line-height: inherit;
  }
  .content-inner p a,
.content-inner > div a {
    color: #7b9b7e;
  }
  .content-inner ul {
    margin-bottom: 2rem;
  }
  .content-inner ul li {
    font-size: inherit;
    padding-top: 0.2rem;
    padding-bottom: 0.4rem;
    position: relative;
    padding-left: 1.4rem;
    list-style: disc;
    list-style-position: inside;
  }
  .content-inner img {
    max-width: 100%;
    height: auto;
  }

  section.page-section.page-textpage {
    margin-top: 0rem;
    margin-bottom: 0rem;
  }
  section.page-section.page-textpage .textpage-inner {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
  }
  section.page-section.page-textpage .textpage-inner .textpage-top {
    color: white;
  }
  section.page-section.page-textpage .textpage-inner .textpage-content {
    max-width: 91rem;
    margin: 0 auto;
    font-size: 1.6rem;
    line-height: 2.2rem;
    text-align: left;
  }

  .textpage-content-inner .textpage-image {
    text-align: center;
    margin-top: -25rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 1025px) and (min-height: 1200px) {
  .textpage-content-inner .textpage-image {
    margin-top: -17rem;
  }
}
@media screen and (max-width: 767px) {
  .textpage-content-inner .textpage-image img {
    max-width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .textpage-content-inner h2 {
    line-height: 1.25;
    font-size: 1.8rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .textpage-content-inner h3 {
    line-height: 1.25rem;
    font-size: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .textpage-content-inner p {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  .textpage-content-inner p img {
    width: calc(100% + 4 * 1.6rem);
    margin-left: calc(2* -1.6rem) !important;
    max-width: initial;
    margin-bottom: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .textpage-content-inner blockquote {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .textpage-content-inner blockquote:before {
    transform: translateY(8px);
    display: inline-block;
  }
}
@media screen and (max-width: 767px) {
  .textpage-content-inner blockquote p {
    display: inline-block;
  }
}
@media screen and (max-width: 767px) {
  .textpage-content-inner ul {
    font-size: 1.5rem;
    line-height: 1.7;
    margin-bottom: 2rem;
  }
  .textpage-content-inner ul li {
    list-style: circle;
    list-style-position: inside;
  }
}
@media screen and (max-width: 767px) {
  .textpage-content-inner img {
    max-width: 100%;
    height: auto;
    margin: 2rem auto;
  }
  .textpage-content-inner img.aligncenter {
    display: block;
  }
  .textpage-content-inner img.size-blog_detail_content_image {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .section-order-process .box-extra-info {
    padding: 2rem;
    padding-bottom: 0.2rem;
    margin-bottom: 2rem;
  }
  .section-order-process .box-extra-info p {
    font-size: 1.4rem;
    line-height: 1.5;
    padding-left: 2rem;
  }
  .section-order-process .box-extra-info p:before {
    left: 1.5rem;
    top: 2rem;
  }
  .section-order-process .order-process-info {
    transform: translateY(0.5rem);
    justify-content: left;
  }
  .section-order-process .order-process-info + h2 {
    margin-bottom: 0.5rem;
  }
  .section-order-process .order-process-info + h2 + p {
    margin-bottom: 1.5rem;
  }
  .section-order-process .order-process-heading {
    padding-bottom: 0;
  }
  .section-order-process + .page-section {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .order-process-buttons a {
    height: 3.3rem;
    line-height: 3.3rem;
    padding: 0 2rem;
    font-size: 1.3rem;
  }
  .order-process-buttons a.button-prev {
    padding-left: 3rem;
  }
  .order-process-buttons a.button-prev:before {
    left: 1rem;
    transform: translateY(0) scaleX(-1);
  }
  .order-process-buttons a.button-next {
    padding-right: 3rem;
  }
  .order-process-buttons a.button-next:after {
    right: 1rem;
    transform: translateY(0);
  }
  .order-process-buttons a.button-next.active {
    left: 50%;
    transform: translateX(-50%) scale(1.3);
    bottom: 4vh;
    z-index: 7;
  }
  .order-process-buttons a.button-next.active:hover {
    background: inherit;
  }
  .order-process-buttons a.active {
    background: #7b9b7e;
  }
  .order-process-buttons a:hover:not(.active) {
    background: #D7D7D7;
    cursor: default;
  }
}
@media screen and (max-width: 767px) {
  .woocommerce form[name=checkout] * {
    font-size: 1.5rem;
  }
  .woocommerce form[name=checkout] h3.checkout-title,
.woocommerce form[name=checkout] #order_review_heading {
    font-size: 2rem;
  }
  .woocommerce form[name=checkout] .form-row {
    flex-direction: column;
    width: 100%;
    width: 100%;
    flex-direction: column;
  }
  .woocommerce form[name=checkout] .form-row label {
    width: 100%;
    height: 3rem;
  }
  .woocommerce form[name=checkout] .form-row span.woocommerce-input-wrapper input.input-text,
.woocommerce form[name=checkout] .form-row span.woocommerce-input-wrapper textarea {
    min-height: 4rem;
    width: 100%;
  }
  .woocommerce form[name=checkout] #customer_details {
    background: #f2f2f2;
    padding: 2.5rem 2rem;
  }
  .woocommerce form[name=checkout] table.shop_table.cart .bundled_table_item td:before {
    display: none;
  }
  .woocommerce form[name=checkout] table.shop_table.cart .bundled_table_item .bundled-product-name {
    text-align: left;
  }
  .woocommerce form[name=checkout] table.shop_table.cart .bundled_table_item .product-price {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .woocommerce-cart #payment:before,
.woocommerce-checkout #payment:before {
    font-size: 2rem;
  }
  .woocommerce-cart #payment .payment_box p,
.woocommerce-checkout #payment .payment_box p {
    font-size: 1.3rem;
    line-height: 1.2;
  }
  .woocommerce-cart #payment .woocommerce-privacy-policy-text p,
.woocommerce-checkout #payment .woocommerce-privacy-policy-text p {
    font-size: 1.3rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 767px) {
  section.header-wrapper {
    height: 5.3rem;
    padding: 0 2rem;
    justify-content: space-between;
    z-index: 9;
    position: fixed;
    background: rgba(255, 255, 255, 0.9) !important;
  }
  body.hamburger-visible section.header-wrapper {
    background: transparent !important;
  }
  section.header-wrapper .header-container {
    padding: 0;
    height: 5.3rem;
    justify-content: left;
  }
  body.header-state-alt section.header-wrapper .header-container {
    height: 5.3rem;
  }
  section.header-wrapper .header-left {
    padding-left: 0;
  }
  section.header-wrapper .header-left .header-logo img {
    width: auto;
    height: calc(5.3rem / 2.2);
    transition: 0.2s ease-in-out;
    transform: translateY(-0.2rem);
  }
  body.header-state-alt section.header-wrapper .header-left .header-logo img {
    height: calc(5.3rem / 2.2);
  }
  section.header-wrapper .header-right-container {
    display: none;
  }
  section.header-wrapper .hm-toggle {
    padding: 1.8rem;
    display: block;
    position: absolute;
    right: -1.4rem;
    top: 0;
    transform: translateY(0.2rem);
  }
  section.header-wrapper .header-bag-account {
    margin-left: auto;
    margin-right: 4rem;
  }
  section.header-wrapper .header-bag-account .header-account a:after {
    font-size: 1.8rem;
    position: relative;
    top: 0.1rem;
  }
  body.hamburger-visible section.header-wrapper .header-bag-account .header-account a:after {
    color: white;
  }
  section.header-wrapper .header-bag-account .header-account:before, section.header-wrapper .header-bag-account .header-account:after {
    height: 2rem;
    margin-right: 1rem;
    margin-left: 1rem;
  }
  section.header-wrapper .header-bag-account .header-account:after {
    display: block;
  }
  section.header-wrapper .header-bag-account .header-account:before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  section.section-usps {
    height: 2.8rem;
  }
  section.section-usps .page-section-inner {
    padding: 0 0.8rem;
  }
  section.section-usps .usps-list {
    font-size: 0.9rem;
  }
  section.section-usps .usps-list li {
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
  }
  section.section-usps .usps-list li:before {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.7rem;
    padding: 0;
  }
}
@media screen and (max-width: 767px) and (max-width: 400px) {
  section.section-usps .usps-list li:first-child:before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  section.hamburger-menu-wrapper {
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #628164;
    background-image: linear-gradient(rgba(98, 129, 100, 0.8), rgba(98, 129, 100, 0.8)), url("../../../subtlepatterns-production/designers/subtlepatterns/uploads/groovepaper.png");
    z-index: 8;
    transition: transform 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  section.hamburger-menu-wrapper.hm-visible {
    transform: translateX(0);
  }
  section.hamburger-menu-wrapper.hm-hidden {
    transform: translateX(-110vw);
  }
  section.hamburger-menu-wrapper .hb-inner {
    padding: 0 2rem;
    height: calc(85vh - 5.3rem);
    padding-top: 4rem;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
  }
  section.hamburger-menu-wrapper .hb-logo {
    padding-bottom: 2rem;
    margin-top: auto;
  }
  section.hamburger-menu-wrapper .hb-logo img {
    width: auto;
    max-width: 80%;
    transition: 0.2s ease-in-out;
    transform: translateY(-0.2rem);
  }
  body.header-state-alt section.hamburger-menu-wrapper .hb-logo img {
    height: calc(5.3rem / 2.2);
  }
  section.hamburger-menu-wrapper .hb-menu {
    text-align: left;
  }
  section.hamburger-menu-wrapper .hb-menu > li {
    height: auto;
    min-height: 4.4rem;
  }
  section.hamburger-menu-wrapper .hb-menu > li > a {
    height: 4.3rem;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    position: relative;
    cursor: pointer;
    font-weight: 500;
  }
  section.hamburger-menu-wrapper .hb-menu > li > a svg {
    position: absolute;
    left: 0;
    top: 2.4rem;
    transform: scale(1.1);
  }
  section.hamburger-menu-wrapper .hb-menu > li > a svg path {
    transition: 0.3s;
    transform: translateY(0.1rem);
  }
  section.hamburger-menu-wrapper .hb-menu > li.current_page_item a svg path, section.hamburger-menu-wrapper .hb-menu > li.current_menu_parent a svg path, section.hamburger-menu-wrapper .hb-menu > li.current_page_parent a svg path {
    stroke-dashoffset: 0;
  }
  section.hamburger-menu-wrapper .hb-menu > li.current-menu-item a {
    color: white !important;
  }
  section.hamburger-menu-wrapper .hb-menu > li.menu-item-has-children ul.sub-menu {
    opacity: 0;
    max-height: 0;
    transition: 0.2s ease-in;
    pointer-events: none;
  }
  section.hamburger-menu-wrapper .hb-menu > li.menu-item-has-children ul.sub-menu li a {
    font-size: 1.7rem;
    color: white;
    padding: 1rem 0;
    display: block;
    font-weight: 600;
    padding-left: 4.3rem;
  }
  section.hamburger-menu-wrapper .hb-menu > li.menu-item-has-children ul.sub-menu li a.active {
    color: #7b9b7e;
  }
  section.hamburger-menu-wrapper .hb-menu > li.menu-item-has-children ul.sub-menu li.current-menu-item a {
    color: #E2DACF !important;
  }
  section.hamburger-menu-wrapper .hb-menu > li.menu-item-has-children.open > a:after {
    transform: rotate(45deg);
  }
  section.hamburger-menu-wrapper .hb-menu > li.menu-item-has-children.open ul.sub-menu {
    opacity: 1;
    max-height: 30rem;
    pointer-events: initial;
  }
}
@media screen and (max-width: 767px) {
  .site-footer .footer-cols {
    display: block;
    font-size: 1.3rem;
  }
  .site-footer .footer-cols p {
    font-size: 1.3rem;
  }
  .site-footer .footer-cols a {
    font-size: 1.3rem;
  }
  .site-footer .footer-cols .footer-col {
    width: 100% !important;
    box-sizing: border-box;
    padding: 0 10vw;
    max-width: 100% !important;
    justify-content: space-between;
    padding-bottom: 1rem;
    text-align: center;
  }
  .site-footer .footer-cols .footer-col > * {
    flex: 1 1 50%;
    padding-left: 0;
  }
  .site-footer .footer-cols .footer-contact {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
  }
  .site-footer .footer-bottom {
    color: #606060;
    padding-top: 2rem;
    text-align: center;
  }
  .site-footer .footer-bottom * {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
  }
  .site-footer .footer-bottom ul li {
    display: inline-block;
    vertical-align: top;
  }
  .site-footer .footer-bottom ul li:first-child:after {
    content: "|";
  }
  .site-footer .footer-bottom a {
    color: #606060;
    text-decoration: underline;
  }
  .site-footer .footer-bottom a:hover {
    color: white;
  }
}
@media screen and (max-width: 767px) {
  body.single .site-footer .page-section-inner ul {
    margin: 0;
  }
  body.single .site-footer .page-section-inner li {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .footer-social-media {
    padding: 2rem 0;
    text-align: center;
    margin-bottom: 2.5rem;
  }
  .footer-social-media a {
    text-align: center;
    display: inline-block;
    vertical-align: top;
    background: transparent !important;
    padding: 0 0.5rem;
    text-decoration: none !important;
  }
  .footer-social-media a:first-of-type {
    margin-left: 0;
  }
  .footer-social-media a:after {
    color: #161616;
    font-size: 2.5rem;
    font-family: "Font Awesome 5 Brands";
  }
  .footer-social-media a.facebook:after {
    content: "\f39e";
  }
  .footer-social-media a.instagram:after {
    content: "\f16d";
  }
  .footer-social-media a.twitter:after {
    content: "\f099";
  }
  .footer-social-media a.youtube:after {
    content: "\f167";
  }
  .footer-social-media a.linkedin:after {
    content: "\f08c";
  }
  .footer-social-media a.whatsapp:after {
    content: "\f232";
  }
  .footer-social-media a:hover {
    transform: translateY(-0.1rem);
  }
  .footer-social-media a {
    margin: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  section.section-smaken-list {
    margin-top: 2rem;
  }
  section.section-smaken-list ul.smaken-list {
    padding-top: 0;
    transform: translateY(-2.5rem);
  }
  section.section-smaken-list.compact-smaken-list {
    margin-top: 0;
  }
  section.section-smaken-list.compact-smaken-list ul.smaken-list {
    padding-top: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .smaken-list-item {
    flex-direction: column;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e4e4e4;
    padding: 0 !important;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1) !important;
  }
  .smaken-list-item .sli-image {
    height: 25vh;
    flex: initial !important;
    overflow: initial;
  }
  .smaken-list-item .sli-image img {
    left: 0 !important;
    top: -100% !important;
    transform: scale(4.5);
  }
  .compact-smaken-list .smaken-list-item .sli-image img {
    max-width: 90%;
  }
  .smaken-list-item .sli-image:hover img {
    transform: scale(4.5);
  }
  .smaken-list-item .sli-info {
    padding: 0;
    padding: 3rem !important;
  }
  .smaken-list-item .sli-info:before {
    display: none;
  }
  .smaken-list-item .sli-info .sli-info-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .smaken-list-item .sli-info .sli-info-header .smaak-logo {
    padding-right: 0;
    margin-bottom: 2rem;
    margin-top: -2rem;
  }
  .smaken-list-item .sli-info .sli-info-header .smaak-logo:after {
    width: 5.5rem;
    height: 5.5rem;
  }
  .smaken-list-item .sli-info .sli-info-header .smaak-titles {
    font-size: 2rem;
  }
  .smaken-list-item .sli-info .sli-info-header .smaak-titles .title {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: inherit;
    line-height: 1.2;
  }
  .smaken-list-item .sli-info .sli-info-header .smaak-titles .desc {
    font-size: inherit;
    display: block;
    padding-top: 1rem;
    line-height: 2rem;
    color: #628164;
  }
  .smaken-list-item .sli-info .sli-info-content {
    text-align: center;
    padding-top: 1.9rem;
  }
  .smaken-list-item .sli-info .sli-info-content [class^=button] {
    margin-bottom: 1.5rem;
  }
  .smaken-list-item .sli-info .sli-info-ingredients {
    padding-top: 0.5rem;
    text-align: center;
  }
  .smaken-list-item .sli-info .sli-info-ingredients ul {
    line-height: 1.2;
  }
  .smaken-list-item .sli-info .sli-info-ingredients li {
    font-size: 1.3rem;
    line-height: 1;
  }
  .smaken-list-item .sli-info .sli-info-ingredients li:after {
    font-size: 1rem;
    position: relative;
    top: -0.1rem;
    color: #dadada;
  }
  .section-smaken-list .smaken-list-item:nth-child(even) {
    flex-direction: column;
  }
  .section-smaken-list .smaken-list-item:nth-child(even) .sli-image img {
    left: 0;
    top: -30%;
  }
  .section-smaken-list .smaken-list-item:nth-child(even) .sli-info {
    padding-left: 0;
    padding-right: 0;
  }
  .section-smaken-list .smaken-list-item:nth-child(even) .sli-info:before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .product-items.box-list {
    display: block;
  }
  .product-items.flavours-picklist {
    display: block;
  }
  .product-items.item-slots {
    display: block;
    padding-bottom: 0rem;
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .product-item {
    margin-bottom: 1rem;
  }
  .product-item .pi-inner {
    padding: 1.4rem;
    flex-direction: row;
    align-items: center;
    position: relative;
    justify-content: space-between;
  }
  .product-item .pi-inner .pi-image {
    min-width: 12.4rem;
    max-width: 12.4rem;
    padding-right: 1rem;
  }
  .product-item .pi-inner .pi-info {
    min-width: 44%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .product-item .pi-inner h5 {
    min-width: 70%;
    min-height: 1.6rem;
    font-size: 1.5rem;
    margin: 0;
    margin-bottom: 1rem;
    line-height: 1;
  }
  .product-item .pi-inner .desc {
    display: block;
    font-size: 1.3rem;
    min-width: 90%;
    min-height: 1.1rem;
    line-height: 1;
  }
  .product-item .pi-inner .pi-bottom {
    margin-top: initial;
    padding-top: 0;
    margin-left: auto;
  }
  .product-item .pi-inner .smaak-logo-container {
    height: 7rem;
  }
  .product-item .pi-inner .smaak-logo-container .smaak-logo {
    padding-right: 1.5rem;
  }
  .product-item .pi-inner .smaak-logo-container .smaak-logo:after {
    height: 5rem;
    width: 5rem;
  }
  .box-list .product-item .pi-inner {
    padding-bottom: 4rem;
  }
  .box-list .product-item .pi-inner .pi-info {
    display: block;
  }
  .box-list .product-item .pi-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    left: 0;
    right: 2.4rem;
    position: absolute;
    padding-top: 0;
    bottom: 2rem;
  }
  .box-list .product-item .pi-bottom .price {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .item-slot {
    padding-bottom: 3rem;
    position: relative;
  }
  .item-slot:after {
    content: "";
    position: absolute;
    bottom: 1.5rem;
    height: 1px;
    left: 0;
    right: 0;
    border-bottom: 1px dashed #DBE2DB;
  }
  .item-slot:last-of-type.filled {
    margin-bottom: 0rem;
  }
  .item-slot:last-of-type.filled:after {
    border-bottom: 0;
  }
  .item-slot .pi-inner {
    text-align: left;
  }
  .item-slot .pi-inner .desc {
    max-width: 100%;
  }
  .item-slot .pi-inner .button-product {
    min-width: 11rem;
  }
  .item-slot .pi-inner.surprise-product {
    cursor: default;
  }
  .item-slot .pi-inner.surprise-product .title:after {
    font-size: 1.5rem;
  }
  .item-slot .pi-inner.surprise-product .smaak-logo {
    position: relative;
  }
  .item-slot .pi-inner.surprise-product .smaak-logo:before {
    font-size: 2rem;
    left: 40%;
  }
  .item-slot .pi-inner.surprise-product .pi-info {
    min-width: 60%;
  }
  .item-slot .pi-inner.surprise-product .button-product:after {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 767px) {
  .item-slot .top,
.flavour-pick .top {
    font-size: 1.8rem;
    z-index: 1;
    transform: translateX(1rem) translateY(-1.3rem);
  }
}
@media screen and (max-width: 767px) {
  .flavours-picklist .flavour-pick .pi-inner {
    text-align: left;
  }
  .flavours-picklist .flavour-pick .pi-inner .pi-info {
    min-width: 50%;
    padding-right: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .item-slot-variation-switch {
    justify-content: left;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .item-slot-variation-switch li {
    height: 2rem;
    font-size: 1.2rem;
    padding-left: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .flavours-picklist-container .flavours-picklist {
    padding: 2rem 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  section.section-page-header,
section.section-page-info-block {
    padding: 0 0;
  }
  section.section-page-header h1,
section.section-page-info-block h1 {
    font-size: 2rem;
  }
  section.section-page-header h1 ~ p,
section.section-page-info-block h1 ~ p {
    display: inline-block;
    vertical-align: top;
    font-size: 1.3rem;
    line-height: 1.5rem;
    max-width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .blog-list-grid {
    grid-gap: 0.6rem;
    margin-top: 2rem;
  }
  .blog-list-grid .blog-item .blog-item-info {
    padding-top: 1rem;
  }
  .blog-list-grid .blog-item .blog-item-info h5 {
    font-size: 1.3rem;
    line-height: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .section-blogs-overview .page-indicator {
    display: inline-block;
    vertical-align: top;
    font-size: 1.5rem;
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    top: -1rem;
    position: relative;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .blog-overview-list {
    padding: 0 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .inventory-list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
  }
}
@media screen and (max-width: 767px) {
  li.invlist-item .invlist-image span.qt {
    display: none;
  }
  li.invlist-item .invlist-image span.label {
    transform: scale(0.5);
    transform-origin: right top;
    right: 1rem;
    top: 1rem;
  }
  li.invlist-item .invlist-image span.label.label-updated {
    font-size: 1.4rem;
  }
  li.invlist-item .invlist-info {
    padding: 1.2rem 0;
    margin-bottom: 0rem;
  }
  li.invlist-item .invlist-info .item-cat {
    font-size: 1.3rem;
    margin-top: -0.5rem;
  }
  li.invlist-item .invlist-info .invlist-title {
    font-size: 1.3rem;
    padding-bottom: 0;
    min-height: 2rem;
  }
  li.invlist-item .invlist-info .desc {
    margin-top: -1rem;
    font-size: 1.2rem;
    line-height: 1.3;
  }
  li.invlist-item .invlist-info .invlist-info-bottom .price-indicators {
    font-size: 1.2rem;
  }
  li.invlist-item .invlist-info .to-product {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .section-newly-added-items {
    background: #E2DACF;
  }
  .section-newly-added-items .button-container {
    padding-top: 2rem;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .newly-added-items {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 767px) {
  section.section-content-block {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  section.section-content-block .content-block-inner h2 {
    padding: 0;
    padding-right: 10rem;
    padding-bottom: 2rem;
  }
  section.section-content-block .content-block-inner h5 {
    font-size: 2rem;
    line-height: 3.9rem;
  }
  section.section-content-block .content-block-inner p {
    margin-bottom: 2rem;
  }
  section.section-content-block .content-block-inner .button.button-readmore {
    margin-bottom: -2rem;
    top: -2rem;
  }
  section.section-content-block.content-block-home p {
    font-size: 1.7rem;
    line-height: 3.5rem;
  }
  section.section-content-block.align-center .content-block-inner {
    margin: 0;
  }
  section.section-content-block.align-center .content-block-inner * {
    text-align: left !important;
  }
  section.section-content-block.align-center .content-block-inner h2 {
    padding-left: 0;
    padding-right: 8.5rem;
    padding-bottom: 2rem;
  }
}
@media screen and (max-width: 767px) {
  section.section-content-block.section-werken-bij-doccs {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 321px) {
  html, body {
    font-size: 9.5px;
  }
}

/*# sourceMappingURL=main.css.map */