:root {
  --color-green: #4d8b2c;
  --color-blue: #A3C0CB;
  --color-red: #E7A9A9;
  --color-green-light: #accba3;
  --color-blue-light: #D8EDF3;
  --color-green-hover: #478029;
  --color-blue-hover: #839DA7;
  --color-red-hover: #CE9595;
  --color-green-light-hover: #82ae7d;
  --heading-font: aktiv-grotesk-condensed, sans-serif;
  --text-font: miller-text, serif;
}

html {
  scroll-behavior: smooth;
}

footer .social-media.social-media {
  margin-top: 0;
}

.project_cards {
  overflow-x: clip;
}

.project_cards .project_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 5rem;
  margin-top: 30px;
  margin-bottom: 30px;
}

@media (max-width: 1100px) {
  .project_cards .project_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 750px) {
  .project_cards .project_grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.project_cards .project_card {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 20px 99px rgba(0, 0, 0, 0.1960784314);
}

.project_cards .project_card h1 {
  font-family: var(--heading-font);
}

.project_cards .project_card .card_content {
  flex: 1;
}

.project_cards .project_card .card_content p {
  font-family: var(--text-font);
}

.project_cards .project_card .bg-cover {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

.project_cards .project_card .label {
  width: fit-content;
  border-radius: 99px;
  padding: 0.2rem 0.5rem;
  font-weight: 700;
  margin: 0 0 1rem 1rem;
  font-size: 1.1em;
}

.project_cards .project_card .read-more {
  position: relative;
  width: fit-content;
}

.project_cards .project_card .read-more::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: -30px;
  height: 0.8em;
  aspect-ratio: 1/1;
  background-color: black;
  /* background mask at /assets/images/arrow-right.svg */
  -webkit-mask: url("../images/arrow-right.svg") no-repeat 50% 50%;
  mask: url("../images/arrow-right.svg") no-repeat 50% 50%;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: 0.2s ease-in-out;
}

.project_cards .project_card .read-more:hover {
  opacity: 0.6;
}

.project_cards .project_card .read-more:hover::after {
  right: -20px;
}

.project_cards .project_card .amount {
  display: flex;
  flex-direction: column;
}

.project_cards .project_card .amount .precentage {
  text-align: right;
  opacity: 0.6;
  font-style: italic;
}

.project_cards .project_card .amount .bar {
  background-color: #FFFFFF;
  position: relative;
  height: 5px;
}

.project_cards .project_card .amount .bar .bar-inner {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 100%;
}

.project_cards .project_card .money {
  display: flex;
  width: 100%;
  justify-content: space-between;
  font-style: italic;
}

.project_cards .project_card .money span {
  opacity: 0.6;
}

.project_cards .project_card.scale {
  transform: scale(1.15);
  box-shadow: 0px 30px 99px rgba(0, 0, 0, 0.2705882353);
}

.page-header:before {
  content: unset;
}

.home-header {
  display: flex;
  align-items: center;
  min-height: 60svh;
  padding-block: 10rem;
}

.home-header--has-video-cta {
  display: grid;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  padding-inline: clamp(0.75rem, 3vw, 2rem);
  column-gap: clamp(1.25rem, 4vw, 3rem);
  row-gap: 0;
  grid-template-columns: minmax(0, 1fr) auto;
}

.home-header--has-video-cta > .container {
  min-width: 0;
  grid-column: 1;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .home-header--has-video-cta {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    row-gap: 2rem;
    padding-bottom: clamp(3rem, 10vw, 5rem);
  }
  .home-header--has-video-cta > .home-header__video-cta {
    grid-column: 1;
    justify-self: end;
    max-width: calc(100vw - 2.5rem);
  }
}
.home-header__video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.home-header__iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78vh;
  border: 0;
  transform: translate(-50%, -50%);
}

.home-header__poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.home-header__video-cta {
  position: relative;
  z-index: 2;
  grid-column: 2;
  justify-self: end;
  align-self: center;
  box-sizing: border-box;
  display: inline-flex;
  max-width: min(27.75rem, 100vw - 2rem);
  padding: 1rem 1.35rem 1.15rem;
  text-decoration: none;
  font-family: var(--heading-font);
  font-weight: 700;
  color: #3b3b3b;
  background-color: rgba(255, 255, 255, 0.95);
  border: 3px solid #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.18);
  transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.home-header__video-cta:hover {
  background-color: #ffffff;
  color: var(--color-green);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.22);
}

.home-header__video-cta:hover .home-header__video-cta-eyebrow {
  color: var(--color-green);
  opacity: 1;
}

.home-header__video-cta:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 4px;
}

.home-header__video-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  width: 25rem;
  max-width: 100%;
}

.home-header__video-cta-eyebrow {
  display: block;
  align-self: stretch;
  margin: 0;
  padding: 0;
  text-align: right;
  font-family: inherit;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: normal;
  text-transform: none;
  color: #3b3b3b;
}

.home-header__video-cta-eyebrow--media {
  line-height: 0;
  text-align: right;
  max-width: 100%;
}

.home-header__video-cta-eyebrow-img {
  display: inline-block;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 7rem;
  object-fit: contain;
  vertical-align: top;
}

.home-header__video-cta-thumb-wrap {
  align-self: stretch;
  overflow: hidden;
  width: 25rem;
  max-width: 100%;
  border-radius: 8px;
  line-height: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

.home-header__video-cta-thumb {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.home-header__video-cta-label {
  align-self: stretch;
  margin: 0;
  padding: 0;
  text-align: right;
  font-size: 1.25rem;
  line-height: 1.25;
  font-family: inherit;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .home-header__video-cta {
    padding: 0.9rem 1rem 1rem;
  }
  .home-header__video-cta-eyebrow {
    font-size: 2.25rem;
    line-height: 1.1;
  }
  .home-header__video-cta-eyebrow-img {
    max-height: 5.75rem;
  }
  .home-header__video-cta-label {
    font-size: 1.25rem;
  }
}
.home-header .title_text {
  max-width: 35rem;
  font-family: var(--text-font);
}

.home-header__video-dialog::backdrop {
  background: rgba(20, 20, 20, 0.72);
  cursor: pointer;
}

.home-header__video-dialog:not([open]) {
  display: none !important;
}

.home-header__video-dialog[open] {
  position: fixed;
  inset: 0;
  z-index: 100050;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  max-width: none;
  height: 100%;
  min-height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 1rem;
  overflow: visible;
  border: none;
  background: transparent;
  color: inherit;
  box-shadow: none;
  outline: none;
}

.home-header__video-dialog-inner {
  width: min(1200px, 100%);
  max-height: min(90dvh, 100%);
  overflow: hidden;
  overflow-y: auto;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
}

.home-header__video-dialog-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.home-header__video-dialog-title {
  margin: 0;
  padding: 0;
  font-family: var(--heading-font);
  font-size: 1.0625rem;
  font-weight: 700;
  color: #3b3b3b;
}

.home-header__video-dialog-close-form {
  margin: 0;
}

.home-header__video-dialog-close {
  margin: 0;
  appearance: none;
  padding: 0.45rem 1.05rem;
  font-family: var(--heading-font);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  background-color: var(--color-green);
  border: 2px solid var(--color-green);
  border-radius: 333px;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.home-header__video-dialog-close:hover {
  background-color: var(--color-green-hover);
  border-color: var(--color-green-hover);
}

.home-header__video-dialog-close:focus-visible {
  outline: 3px solid var(--color-green);
  outline-offset: 2px;
}

.home-header__video-dialog-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #0f0f0f;
}

.home-header__video-dialog-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.home-header__video-dialog-fallback {
  margin: 0;
  padding: 0.65rem 1rem 1rem;
  font-family: var(--text-font);
  font-size: 0.875rem;
  line-height: 1.45;
}

.home-header__video-dialog-fallback a {
  color: var(--color-green);
  text-underline-offset: 0.18em;
}

.home-header__video-dialog-fallback a:hover {
  color: var(--color-green-hover);
}

@media (prefers-reduced-motion: reduce) {
  .home-header--has-video .home-header__video-wrap {
    display: none;
  }
}
body {
  overflow-x: hidden;
}

.hero_text {
  position: relative;
  background-color: #F3E9DD;
  overflow-x: clip;
  --_height: 10rem;
  margin: 0;
}

.hero_text::before, .hero_text::after {
  content: "";
  width: calc(100% + 2rem);
  height: var(--_height);
  position: absolute;
  left: -1rem;
  z-index: 10s;
  background-color: #F3E9DD;
}

.hero_text::before {
  -webkit-mask: url(../images/top-side.svg) no-repeat 50% 50%;
  mask: url(../images/top-side.svg) no-repeat 50% 50%;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: bottom;
  mask-position: bottom;
  top: calc((var(--_height) - 1px) * -1);
}

.hero_text::after {
  -webkit-mask: url(../images/bottom-side.svg) no-repeat 50% 50%;
  mask: url(../images/bottom-side.svg) no-repeat 50% 50%;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: top;
  mask-position: top;
  bottom: calc((var(--_height) - 1px) * -1);
}

.hero_text * {
  font-family: var(--text-font);
}

.buttons {
  display: flex;
  column-gap: 2rem;
  flex-wrap: wrap;
}

.button, .button__cream, .button__red, .button__blue, .button__green {
  border-radius: 333px;
  padding: 0.5rem 1.5rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.button *, .button__cream *, .button__red *, .button__blue *, .button__green * {
  font-weight: bold;
  color: #FFFFFF;
}

.button__green {
  background-color: var(--color-green);
  height: fit-content;
}

.button__green:hover {
  background-color: var(--color-green-hover);
}

.button__blue {
  background-color: var(--color-blue);
}

.button__blue:hover {
  background-color: var(--color-blue-hover);
}

.button__red {
  background-color: var(--color-red);
}

.button__red:hover {
  background-color: var(--color-red-hover);
}

.button__cream {
  background-color: var(--color-green-light);
}

.button__cream:hover {
  background-color: var(--color-green-light-hover);
}

.topnav .topnav-content {
  display: flex;
  gap: 2rem;
}

.topnav .searchform {
  position: relative;
  margin-left: 2rem;
}

.topnav .searchform input[type=text] {
  background-color: #FFFFFF;
  border-radius: 999px;
  font-family: var(--heading-font);
  font-weight: bold;
  padding-top: calc(0.75em + 4px);
}

.topnav .searchform .zoeken-sumbit {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1em;
  text-indent: -9999px;
  background: black;
  opacity: 0.7;
  border: unset;
  height: 1.2em;
  aspect-ratio: 1/1;
  padding: 0.5rem;
  -webkit-mask: url("../images/search.svg") no-repeat 50% 50%;
  mask: url("../images/search.svg") no-repeat 50% 50%;
  -webkit-mask-size: contain;
  mask-size: contain;
  mask-size: contain;
}

.topnav .searchform .zoeken-sumbit:hover {
  opacity: 1;
  background-color: black;
}

nav > div {
  margin-right: 10rem;
}

nav > .menu-item-has-children {
  position: relative;
  margin-right: 3rem;
}

nav > .menu-item-has-children::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -1.2em;
  height: 0.8em;
  aspect-ratio: 1/1;
  background-color: var(--color-green);
  /* background mask at /assets/images/arrow-right.svg */
  -webkit-mask: url(../images/cheveron.svg) no-repeat 50% 50%;
  mask: url(../images/cheveron.svg) no-repeat 50% 50%;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: 0.2s ease-in-out;
}

.pretty-banner {
  position: relative;
  padding-bottom: 5rem;
  padding-top: 4rem;
  overflow: clip;
}

.pretty-banner::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 101%;
  height: 4rem;
  background-color: #ffffff;
  z-index: 10;
  -webkit-mask: url("../images/top-side.svg") no-repeat 50% 50%;
  mask: url("../images/top-side.svg") no-repeat 50% 50%;
  -webkit-mask-size: contain;
  mask-size: contain;
  mask-position: bottom;
  mask-size: 100%;
}

.text-image .default {
  padding-block: 2rem;
}

.text-image h2 {
  margin-bottom: 2rem;
  font-family: var(--heading-font);
}

.text-image p {
  font-family: var(--text-font);
}

.text-image a {
  position: relative;
  width: fit-content;
  color: black;
  text-decoration: none;
  font-family: var(--heading-font);
  font-weight: bold;
}

.text-image a::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: -30px;
  height: 0.8em;
  aspect-ratio: 1/1;
  background-color: black;
  transition: 0.2s ease-in-out;
  -webkit-mask: url("../images/arrow-right.svg") no-repeat 50% 50%;
  mask: url("../images/arrow-right.svg") no-repeat 50% 50%;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.text-image a:hover {
  opacity: 0.6;
}

.text-image a:hover::after {
  right: -20px;
}

.text-image p:has(a) {
  margin-bottom: 0;
}

.text-image .image {
  position: relative;
  overflow: hidden;
}

.text-image .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-image .image::before {
  content: "";
  height: calc(100% + 10px);
  bottom: 0;
  width: 100%;
  left: -1px;
  background-color: var(--color-red);
  position: absolute;
  top: -5px;
  -webkit-mask: url("../images/blue-divider.svg") no-repeat 50% 50%;
  mask: url("../images/blue-divider.svg") no-repeat 50% 50%;
  -webkit-mask-size: contain;
  mask-size: contain;
  mask-position: left;
  z-index: 1;
}

.text-image .image::after {
  content: "";
  height: calc(100% + 10px);
  top: 0;
  bottom: -5px;
  left: 0;
  width: 100%;
  background-color: var(--color-red);
  position: absolute;
  -webkit-mask: url("../images/blue-divider.svg") no-repeat 50% 50%;
  mask: url("../images/blue-divider.svg") no-repeat 50% 50%;
  -webkit-mask-size: contain;
  mask-size: contain;
  mask-position: left;
  z-index: 1;
  transform: rotate(90deg);
  display: none;
}

@media screen and (max-width: 992px) {
  .text-image .image {
    padding-left: 0;
  }
  .text-image .image::before {
    display: none;
  }
  .text-image .image::after {
    display: block;
  }
}
.blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 5rem;
}

.blocks .one-block {
  box-shadow: 0px 10px 99px rgba(0, 0, 0, 0.1960784314);
  position: relative;
  max-width: 100%;
  aspect-ratio: 684/625;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.blocks .one-block:has(.default .text-white) .image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.58));
}

.blocks .one-block .image-wrapper {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
}

.blocks .one-block img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: top;
}

.blocks .one-block .block-content {
  padding-bottom: 1rem;
  width: 100%;
}

@media (max-width: 62rem) {
  .blocks .one-block {
    aspect-ratio: unset;
  }
  .blocks .one-block .image-wrapper {
    position: static;
    max-height: 15rem;
    background: none;
  }
  .blocks .one-block:has(.default .text-white) .image-wrapper::after {
    content: none;
  }
  .blocks .one-block .block-content {
    padding: 1.5rem;
  }
  .blocks .one-block .block-content *:not(button) {
    color: #000000;
  }
}
@media (max-width: 62rem) {
  .blocks {
    grid-template-columns: repeat(1, 1fr);
  }
}
.my-shadow {
  box-shadow: 0px 20px 99px rgba(0, 0, 0, 0.1960784314);
}

.megazine-cta {
  margin-inline: auto;
}

.megazine-cta .inner .image {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  display: flex;
  place-items: center;
  max-width: min(22rem, 100%);
  max-height: min(28rem, 100%);
}

.megazine-cta .inner .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.megazine-cta .inner .text-center {
  padding-left: 22rem;
}

@media (max-width: 48rem) {
  .megazine-cta .inner .image {
    position: static;
    transform: unset;
    margin-top: -6rem;
  }
  .megazine-cta .inner .text-center {
    padding-left: 0;
  }
}
@media (min-width: 62rem) {
  .megazine-cta {
    width: 80%;
  }
}
@media (min-width: 75rem) {
  .megazine-cta {
    width: 70%;
  }
}
@media (min-width: 96rem) {
  .megazine-cta {
    width: 55%;
  }
}
.footer_donation .donation input[type=radio] + label,
.footer_donation .donation input[type=radio] + label input[type=number] {
  border: none;
  background-color: #ffffff;
  color: var(--color-green);
  display: flex;
  align-items: center;
}

.footer_donation .donation input[type=radio]:checked + label,
.footer_donation .donation input[type=radio]:checked + label input[type=number] {
  border: none;
  background-color: var(--color-green);
  color: #ffffff;
}

.hero-image {
  position: relative;
}

.hero-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.5882352941) 90%);
}

.nodig-uit-container {
  margin-top: 10rem;
}

.nodig-uit-container .cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2rem;
}

@media (max-width: 768px) {
  .nodig-uit-container .cards {
    grid-template-columns: 1fr;
  }
}
.nodig-uit-container .card .card_inner {
  position: relative;
}

.nodig-uit-container .card .card_inner svg {
  position: absolute;
  top: -28px;
  left: 0;
  right: 0;
  width: 100%;
}

.nodig-uit-container .card .card_inner .card_content {
  padding: 3rem 2rem;
}

.nodig-uit-container .card h2 {
  font-size: 2rem;
}

.nodig-uit-container .card picture {
  width: 100%;
  height: 30rem;
  display: block;
}

.nodig-uit-container .card picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nodig-uit-container .read-more {
  position: relative;
  width: fit-content;
}

.nodig-uit-container .read-more::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: -30px;
  height: 0.8em;
  aspect-ratio: 1/1;
  background-color: black;
  /* background mask at /assets/images/arrow-right.svg */
  -webkit-mask: url("../images/arrow-right.svg") no-repeat 50% 50%;
  mask: url("../images/arrow-right.svg") no-repeat 50% 50%;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: 0.2s ease-in-out;
}

.nodig-uit-container .read-more:hover {
  opacity: 0.6;
}

.nodig-uit-container .read-more:hover::after {
  right: -20px;
}

.woocommerce-variation-price {
  margin-block: 1rem;
}

.woocommerce-variation-price::before {
  content: "Prijs per ticket:";
  margin-right: 1rem;
}

.variations_button .quantity::before {
  content: "Aantal tickets:";
  margin-right: 1rem;
}

.variations {
  margin-block: 1rem;
}

.variations tr {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.5rem;
}

.variations select {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  background-color: #ededed;
}

.variations .reset_variations {
  display: none;
}

.donation-page {
  display: flex;
  gap: 24px;
  padding-inline: 7rem;
}

.donation-page .donation-information {
  flex: 1;
}

.donation-page .donation-information .select-control {
  position: relative;
}

.donation-page .donation-information .select-control::after {
  position: absolute;
  top: 50%;
  right: 20px;
  content: " ";
  width: 0;
  height: 0;
  margin-top: -5px;
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #fff transparent transparent transparent;
  pointer-events: none;
}

.donation-page .donation-information select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.donation-page .project-information {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  height: 100%;
  justify-content: space-between;
}

.donation-page .project-information .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.donation-page .project-information .img-wrapper {
  align-self: bottom;
}

.donation-page .project-information .img-wrapper img {
  height: 100%;
  width: 100%;
}

.donation-page .donation-contact-information {
  flex: 1;
  padding: 45px 65px;
  height: fit-content;
}

.donation-page .donation-contact-information input[type=radio]:checked + label,
.donation-page .donation-contact-information input[type=radio]:checked + label input {
  background-color: var(--color-green);
  color: #fff;
}

.donation-page .donation-contact-information label,
.donation-page .donation-contact-information input {
  max-width: 100%;
}

.donation-page .amount-choice {
  gap: 1rem;
}

.donation-page .shadow-2xl {
  box-shadow: 0px 32px 64px -12px rgba(0, 0, 0, 0.14);
}

.donation-page .h-100 {
  height: 100%;
}

.donation-page .grid {
  display: grid;
}

.donation-page .place-items-center {
  place-items: center;
}

.donation-page .gap-4 {
  gap: 1rem;
}

@media (max-width: 1200px) {
  .donation-page {
    flex-direction: column;
    padding-inline: unset;
  }
}
.project-content p {
  font-family: var(--text-font);
  margin-bottom: 1rem;
}

.project-content p b,
.project-content p strong {
  font-family: var(--heading-font);
  font-weight: bold;
  font-size: 1.3em;
  display: block;
}

[data-to-category] .bg-cover {
  transition: 0.2s ease-in-out;
}

[data-to-category] .image {
  overflow: hidden;
}

[data-to-category]:hover .bg-cover {
  scale: 1.2;
}

.project-light {
  padding-bottom: 5rem;
  position: relative;
}

.project-light::after {
  content: "";
  position: absolute;
  bottom: -5rem;
  left: 0;
  width: 100%;
  height: 5rem;
  background-color: inherit;
  -webkit-mask: url("../images/bottom-side.svg") no-repeat 50% 50%;
  mask: url("../images/bottom-side.svg") no-repeat 50% 50%;
  -webkit-mask-size: contain;
  mask-size: contain;
  mask-position: top;
  mask-size: 100%;
}

.table .table-top {
  display: grid;
  grid-template-columns: 1fr 1fr 3fr 36px;
  grid-gap: 1rem;
  padding: 1rem 2rem 1rem 0;
}

.table .table-top * {
  font-family: var(--heading-font);
  font-weight: bold;
  font-size: 1.3em;
}

.table .table-top .item:first-of-type {
  text-align: center;
}

@media (max-width: 568px) {
  .table .table-top .item {
    padding-left: 2rem;
    grid-column: 1/-1;
    text-align: left !important;
  }
}
.table .inner:not(:has(svg)) {
  padding-top: 0.65rem;
}

.table .table-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.table .table-body .item {
  padding: 1rem 2rem 1rem 0;
  background-color: #ffffff;
  display: grid;
  grid-template-columns: 1fr 1fr 3fr 36px;
  grid-gap: 1rem;
  grid-template-rows: fit-content 1fr;
  align-items: center;
}

.table .table-body .item .col {
  font-family: var(--text-font);
  height: fit-content;
}

.table .table-body .item .col .project-opener {
  cursor: pointer;
}

.table .table-body .item .col:last-of-type {
  grid-column: 3;
}

@media (max-width: 768px) {
  .table .table-body .item .col:last-of-type {
    padding-left: 2rem;
    grid-column: 1/-1;
  }
}
.table .table-body .item .col:nth-of-type(4) {
  text-align: center;
}

@media (max-width: 568px) {
  .table .table-body .item .col {
    padding-left: 2rem;
    grid-column: 1/-1;
    text-align: left !important;
  }
}
.table .table-body .item .col .content_project {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s;
}

.table .table-body .item .col .content_project > div {
  overflow: hidden;
}

.table .table-body .item .col .content_project > div .content-inside {
  padding-block: 1rem;
}

.table .table-body .item .col .content_project > div .content-inside p:not(:last-of-type) {
  margin-bottom: 1rem;
}

.table .table-body .item .col svg {
  transition: 0.3s;
}

.table .table-body .item .col:first-of-type {
  text-align: center;
}

.table .table-body .item[data-project-open=true] .content_project {
  grid-template-rows: 1fr;
}

.table .table-body .item[data-project-open=true] svg {
  rotate: 180deg;
}

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