@charset "UTF-8";
/* CSS Document */

/* Muted helper text under a form label. */
.form-hint {
  color: #888;
  font-size: 13px;
  line-height: 1.4;
}

/* Password field with a show/hide eye toggle. */
.ks-password-field {
  position: relative;
}
.ks-password-field input {
  padding-right: 48px !important;
}
.ks-password-toggle {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  background: none;
  border: 0;
  color: #888;
  cursor: pointer;
  line-height: 0;
  transition: color 0.2s ease;
}
.ks-password-toggle:hover {
  color: #111013;
}
.ks-password-toggle .icon-eye-off {
  display: none;
}
.ks-password-toggle.is-visible .icon-eye {
  display: none;
}
.ks-password-toggle.is-visible .icon-eye-off {
  display: inline;
}

/* Repeatable programma activities (aanmelden stap 3). */
.program-activity {
  position: relative;
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  padding: 20px 18px 4px;
  margin-bottom: 18px;
  background: #fafafa;
}
.program-activity-head {
  margin-bottom: 10px;
}
.program-activity-title {
  font-size: 15px;
}
.program-activity-remove {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: #ececec;
  color: #111013;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}
.program-activity-remove:hover {
  background: #ddd;
}
.program-add-activity {
  background: none;
  border: 1px dashed #999;
  border-radius: 24px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #111013;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.program-add-activity:hover {
  border-color: #111013;
  background: #f3f3f3;
}

/* Location-photo dropzone (aanmelden stap 2). */
.ks-dropzone {
  position: relative;
  border: 2px dashed #c9c9c9;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  background: #fafafa;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.ks-dropzone.is-dragover {
  border-color: #111013;
  background: #f0f0f0;
}
.ks-dropzone.is-uploading {
  opacity: 0.6;
  pointer-events: none;
}
.ks-dropzone-prompt {
  color: #555;
}
.ks-dropzone-prompt svg {
  color: #111013;
  margin-bottom: 6px;
}
.ks-dropzone-prompt p {
  margin: 6px 0 2px;
  font-size: 15px;
}
.ks-dropzone-prompt small {
  color: #888;
  font-size: 12px;
}
.ks-dropzone-browse {
  text-decoration: underline;
  cursor: pointer;
}
.ks-dropzone-preview {
  display: none;
  position: relative;
}
.ks-dropzone.has-file .ks-dropzone-prompt {
  display: none;
}
.ks-dropzone.has-file .ks-dropzone-preview {
  display: inline-block;
}
.ks-dropzone-preview img {
  max-height: 220px;
  max-width: 100%;
  border-radius: 8px;
  display: block;
}
.ks-dropzone-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 16, 19, 0.85);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.ks-dropzone-remove:hover {
  background: #111013;
}
.ks-dropzone-status:not(:empty) {
  margin-top: 10px;
  font-size: 13px;
}

/* The header turns position:fixed (≈70px tall, z-index 10) after scrolling.
   When iOS scrolls a focused form field to the top of the viewport it would
   land under that fixed header ("can't see what you're typing"). Reserve room
   so focused inputs / anchor targets land just below the header instead. */
html {
  scroll-padding-top: 85px;
}

/* =========================================================
   AANMELDEN / DASHBOARD feedback + badges
========================================================= */
.form-error {
  color: #b30000;
  display: inline-block;
  margin-top: 4px;
  font-size: 0.9em;
}
.form-notice {
  background: #e8f4ea;
  border-left: 3px solid #2d7a4a;
  padding: 12px 16px;
  font-size: 0.95em;
}
.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.8em;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.status-live {
  background: #e3f5e8;
  color: #1e6b3a;
}
.status-pending {
  background: #fff2d1;
  color: #7a5a00;
}
.status-neutral {
  background: #ecedef;
  color: #4a4f57;
}
.dashboard-section {
  border-top: 1px solid #e5e5e5;
  padding-top: 30px;
}
.dashboard-list {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 8px 20px;
  margin: 0;
}
.dashboard-list dt {
  font-weight: 500;
  color: #4a4f57;
}
.dashboard-list dd {
  margin: 0;
}
.dashboard-programme-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dashboard-notifications {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dashboard-notification {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  border-left: 4px solid #ccc;
  background: #fafafa;
}
.dashboard-notification--live {
  background: #e8f4ea;
  border-left-color: #2d7a4a;
}
.dashboard-notification--pending {
  background: #fff8e1;
  border-left-color: #c89600;
}
.dashboard-notification--rejected {
  background: #fde8e8;
  border-left-color: #b30000;
}
.dashboard-notification-icon {
  font-size: 1.3em;
  line-height: 1;
  font-weight: 700;
  flex-shrink: 0;
}
.dashboard-notification-body {
  flex: 1;
  min-width: 0;
}
.dashboard-notification-meta {
  display: block;
  margin-top: 6px;
  font-size: 0.8em;
  color: #777;
}
.dashboard-notification-dismiss {
  flex-shrink: 0;
}
.dashboard-notification-dismiss button {
  background: none;
  border: none;
  color: #777;
  font-size: 1.4em;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
}
.dashboard-notification-dismiss button:hover {
  color: #111;
  background: rgba(0, 0, 0, 0.08);
}

/* =========================================================
   HEADER — center the menu button vertically with DOE MEE
========================================================= */
#header-sticky .tp-header-bar {
  display: flex;
  align-items: center;
}

/* User/login knop tussen DOE MEE en menu */
.ks-header-user {
  display: flex;
  align-items: center;
}

.ks-header-user-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 0;
  background-color: var(--tp-common-black, #000);
  color: var(--tp-common-white, #fff);
  border: 0;
  transition: background-color .2s ease, color .2s ease;
}

.ks-header-user-btn:hover,
.ks-header-user-btn:focus-visible {
  background-color: var(--tp-common-white, #fff);
  color: var(--tp-common-black, #000);
}

.ks-header-user-btn svg {
  display: block;
}

/* =========================================================
   ROOT / GLOBAL
========================================================= */

:root {
  --bs-body-bg: var(--tp-common-white);
}

html {
  scroll-behavior: smooth;
}

.content-block h2,
.content-block h3 {
  margin-top: 0;
}

.content-block p:last-child {
  margin-bottom: 0;
}

.content-image img,
.content-image-full img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.quote-block {
  background: var(--tp-common-yellow);
}

.quote-block[data-bg-color] {
  background-color: attr(data-bg-color color);
}

hr {
  border: 3px solid var(--tp-common-black);
  opacity: 1;
}

.rounded-custom {
  border-radius: 20px;
}


/* =========================================================
   DOT ICONS
========================================================= */

.dot-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.3em;
  height: 0.3em;
  margin-left: 35px;
  transform: translateY(-0.18em);
}

.dot-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.des-text-item .dot-icon {
  width: 0.32em;
  height: 0.32em;
  margin: 0 0.28em;
  transform: translateY(-0.20em);
}

.tp-text-slide-item .dot-icon {
  width: 1em;
  height: 1em;
  margin: 0 0.28em;
  transform: translateY(-0.20em);
}


/* =========================================================
   VIDEO
========================================================= */

.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
  overflow: hidden;
  background: #000;
  border-radius: 20px;
}

.video-wrapper iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}


/* =========================================================
   GENERAL ELEMENTS
========================================================= */

.divider-line {
  width: 100%;
  height: 3px;
  margin: 0 0 0 15px;
  border: none;
  background-color: var(--tp-common-black);
  opacity: 1;
}

.ar-banner-wrap-custompage {
  height: 320px;
  overflow: hidden;
}


/* =========================================================
   TEXT LINKS
========================================================= */

a.textlink {
  position: relative;
  color: var(--tp-common-black);
  font-weight: 500;
  text-decoration: none;
  transition: all 500ms ease;
}

a.textlink::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: var(--tp-common-yellow);
  opacity: 0.7;
  transition: all 100ms ease;
}

a.textlink:hover::after {
  bottom: -6px;
  opacity: 1;
}

a.textlink.active::after {
  bottom: -7px;
  background: var(--tp-common-black);
}


/* =========================================================
   MASONRY GALLERY
========================================================= */

.masonry-gallery {
  column-count: 3;
  column-gap: 20px;
}

/* Compact / header variant of the Parallax banner block. main.css ties
   .ar-banner-wrap to a series of large heights per breakpoint; override
   each one with a matching media query so the cascade wins by load order. */
.ar-banner-wrap.is-compact {
  height: 360px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .ar-banner-wrap.is-compact { height: 320px; }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ar-banner-wrap.is-compact { height: 280px; }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ar-banner-wrap.is-compact { height: 240px; }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ar-banner-wrap.is-compact { height: 220px; }
}
@media (max-width: 767px) {
  .ar-banner-wrap.is-compact { height: 180px; }
}

/* Footer copyright row — copyrightText and "Webdesign by" stay on one row,
   side by side, no wrapping onto a second line. */
.ks-copyright-left {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1.5rem;
}
.ks-copyright-left > span {
  white-space: nowrap;
}
@media (max-width: 767px) {
  .ks-copyright-left {
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 0.25rem;
  }
  .ks-copyright-left > span {
    white-space: normal;
  }
}

/* "Doe mee!" menu item hides outside desktop xl. The CTA button to the
   right of the header is the mobile entry-point. Bootstrap's d-none /
   d-xl-inline-block classes on the <li> handle it. Belt-and-braces here
   in case the theme's offcanvas clone strips Bootstrap classes. */
@media (max-width: 1199px) {
  .ks-nav-doemee {
    display: none !important;
  }
}

/* Header logo: show the full wide SVG normally, swap to the compact
   mobile "KS" logo on phones where the wide logo gets cropped. */
.ks-logo-mobile {
  display: none;
  height: 32px !important;
  width: auto !important;
  max-width: none !important;
}
@media (max-width: 767px) {
  /* Cover the sticky-on-scroll selector too — main.css forces .logo-black
     to display:block !important with higher specificity. */
  .tp-header-logo .ks-logo-full,
  .header-sticky.sticky-white-bg .tp-header-logo .ks-logo-full,
  .header-sticky .tp-header-logo .ks-logo-full {
    display: none !important;
  }
  .tp-header-logo .ks-logo-mobile {
    display: inline-block;
  }
}

/* Section titles with .lts modifier — main.css applies text-transform:
   capitalize globally, which yields Title Case Per Word. Disable it
   everywhere so editors' casing wins. */
.tp-section-title.lts {
  text-transform: none !important;
}

/* Partner-logo marquee: slides are all equal width but the logos vary a lot in
   natural size, so a wide logo fills its whole slide and touches the neighbour
   with no gap (most noticeable at the loop seam, last → first). Pad each slide
   so every logo keeps a consistent side gutter regardless of its width, and
   center each logo vertically + horizontally within its slide so logos of
   different heights line up on a common middle line. */
.creative-brand-active .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.creative-brand-item {
  padding: 0 30px;
}
/* Cap logo height so a large-resolution source (e.g. the sharper Stad van
   Makers logo) can't blow up; aspect ratio is preserved automatically. */
.creative-brand-item img {
  max-height: 80px;
  width: auto;
}

/* "Doe mee" CTA (.green-solid) is a flex item in the header's right column.
   At narrow desktop widths it shrinks and wraps the label to two lines
   ("DOE / MEE"), collapsing the pill into a square. Keeping the label on one
   line raises its min-content width so the flex item can't squeeze it. */
.tp-btn-yellow-green.green-solid,
.tp-btn-yellow-green.green-solid span,
.tp-btn-yellow-green.green-solid span span {
  white-space: nowrap;
}

/* Nieuwsbrief block (dark theme) — force every text element to white so
   CKEditor-output <p> with inherited dark color doesn't disappear. Button
   keeps its dark label on the green pill. */
.ks-nieuwsbrief,
.ks-nieuwsbrief h1,
.ks-nieuwsbrief h2,
.ks-nieuwsbrief h3,
.ks-nieuwsbrief h4,
.ks-nieuwsbrief p,
.ks-nieuwsbrief li,
.ks-nieuwsbrief .dgm-about-content,
.ks-nieuwsbrief .dgm-about-content * {
  color: #fff !important;
}
.ks-nieuwsbrief .tp-btn-yellow-green,
.ks-nieuwsbrief .tp-btn-yellow-green span,
.ks-nieuwsbrief .tp-btn-yellow-green .text-1,
.ks-nieuwsbrief .tp-btn-yellow-green .text-2 {
  color: #111013 !important;
}
.ks-nieuwsbrief .tp-btn-yellow-green {
  background-color: #e2ff00 !important;
  white-space: nowrap;
  padding: 0 28px;
  height: 100%;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/* Force the button's column to stretch full row height so height:100% above
   actually has something to fill. */
.ks-nieuwsbrief .row.align-items-center {
  align-items: stretch !important;
}
.ks-nieuwsbrief .col-md-auto {
  display: flex;
}

/* Brand tickers (.it-brand-style) are rotated full-width bars (3deg / -5deg).
   At those angles the bar corners tilt inward from the viewport edges and
   expose white wedges, so the ticker appears to "start inside" a white margin.
   Widen the bars past the screen and clip the area so the rotated ends run
   off-screen on both sides. */
.tp-brand-area.it-brand-style {
  overflow: hidden;
}
/* The .it-brand-style rotation overrides main.css's mobile rotate(0) reset
   (higher specificity beats the media query), so the bars stay tilted on
   phones too — widen on every breakpoint so the wedges never reappear. */
.it-brand-style .tp-brand-wrapper {
  width: calc(100% + 80px);
  margin-left: -40px;
}

/* Video-grid block — main.css lets each .tp-video-thumb size to its own
   image's natural aspect ratio, so rows look ragged. Pin tiles to a 3:2
   aspect, crop images, and give the block some breathing room on top. */
.tp-video-area {
  padding-top: 60px;
}
/* The wrap is a flex row with default align-items: stretch. The markup only
   adds mb-25 to the middle tiles, so each row's first/last (no margin) tile
   stretches +25px to match the row height — overriding their 3:2 ratio and
   making them taller. flex-start stops the stretch so every tile keeps its
   aspect-ratio height and they all match. */
.tp-video-thumb-wrap {
  align-items: flex-start;
}
/* Below xl the block was hidden (d-none d-xl-block); it's now visible and
   main.css already stacks the tiles full-width — add a row gap so the stacked
   images don't touch (main.css zeroes their margin on mobile), plus a little
   side padding so they aren't edge-to-edge. */
@media (max-width: 1199px) {
  .tp-video-thumb-wrap {
    row-gap: 16px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.tp-video-thumb {
  aspect-ratio: 3 / 2 !important;
  height: auto !important;
  overflow: hidden !important;
  border-radius: 20px;
  position: relative !important;
}
.tp-video-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 20px;
}
/* iframe can't object-fit, so emulate "cover" by oversizing it horizontally
   (3:2 container ÷ 16:9 video ≈ 118.5%) and centering it. The video's left/right
   edges crop slightly; height fills the tile, no letterbox bars. */
.tp-video-thumb .video-wrapper {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden;
}
.tp-video-thumb .video-wrapper iframe {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 118.6% !important;
  height: 100% !important;
  transform: translate(-50%, -50%) !important;
  border: 0;
  display: block;
}

/* Fact-sheet block — YouTube iframe must cover the wrapper the same way
   the <video> element does. main.css only styles the <video> child. */
.cnt-portfolio-video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  pointer-events: none;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
}

.masonry-item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

@media (max-width: 575px) {
  .masonry-gallery {
    column-count: 1;
  }
}

/* Archief gallery: 2 photos per row (1 on phones). */
.archief-tab-panel {
  column-count: 2;
}

@media (max-width: 575px) {
  .archief-tab-panel {
    column-count: 1;
  }
}


/* =========================================================
   LOCATION FILTERS
========================================================= */

.locations-filters-row {
  position: relative;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
  overflow: visible;
  align-items: flex-start;
}

.locaties-map-page .tp-portfolio-masonry-wrap {
  padding-bottom: 260px;
}

.locations-filter {
  position: relative;
  flex: 0 0 auto;
}

.locations-filter.is-open {
  z-index: 200;
}

.locations-filter-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 18px 0 22px;
  border: 3px solid #000;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.locations-filter-btn:hover {
  border-color: rgba(0, 0, 0, 0.28);
}

.locations-filter.is-open .locations-filter-btn,
.locations-filter.is-active .locations-filter-btn {
  background: #111;
  color: #fff;
  border-color: #111;
}

.locations-filter-label {
  white-space: nowrap;
}

.locations-filter-count {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  flex: 0 0 auto;
}

.locations-filter-count.is-active {
  display: inline-flex;
}

.locations-filter.is-open .locations-filter-count.is-active,
.locations-filter.is-active .locations-filter-count.is-active {
  background: #fff;
  color: #111;
}

.locations-filter-arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 2px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
  flex: 0 0 auto;
}

.locations-filter.is-open .locations-filter-arrow {
  transform: rotate(-135deg) translateY(-1px);
}

.locations-filter-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: none;
  flex-direction: column;
  min-width: 320px;
  max-width: 360px;
  max-height: 420px;
  overflow: hidden;
  background: #fff;
  border: 3px solid #000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.locations-filter.is-open .locations-filter-dropdown {
  display: flex;
}

.locations-filter-options {
  max-height: 340px;
  overflow-y: auto;
}

.locations-filter-options::-webkit-scrollbar {
  width: 6px;
}

.locations-filter-options::-webkit-scrollbar-track {
  background: transparent;
}

.locations-filter-options::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.18);
  border-radius: 10px;
}

.locations-filter-options::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.35);
}

.locations-filter-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  margin: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  color: #111;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  flex: 0 0 auto;
}

.locations-filter-option:hover {
  background: #f3f3f3;
}

.locations-filter-option input {
  width: 18px;
  height: 18px;
  accent-color: #111;
  flex: 0 0 auto;
}

.locations-filter-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: auto;
  border-top: 1px solid #111;
}

.locations-filter-reset,
.locations-filter-apply {
  min-height: 62px;
  border: 0;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.locations-filter-reset {
  background: #fff;
  color: rgba(17, 17, 17, 0.35);
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.locations-filter-apply {
  background: #cfcfcf;
  color: #fff;
}

.locations-filter-reset:hover {
  color: #111;
}

.locations-filter-apply:hover,
.locations-filter.has-selection .locations-filter-apply {
  background: #111;
}

.locations-filter-clear-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
  align-self: center;
  background: none;
  border: none;
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.locations-filter-clear-all.is-hidden {
  display: none;
}

.locations-filter-clear-all svg {
  opacity: 0.5;
  transition: all 0.2s ease;
}

.locations-filter-clear-all:hover {
  color: #000;
}

.locations-filter-clear-all:hover svg {
  opacity: 1;
  transform: rotate(90deg);
}


/* =========================================================
   LOCATIE BADGE
========================================================= */

.locatie-badge {
  position: absolute;
  top: 38px;
  left: -65px;
  z-index: 3;
  width: 250px;
  padding: 8px 0;
  background: var(--tp-common-white);
  color: var(--tp-common-black);
  text-align: center;
  font-family: "Tickerbit", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transform: rotate(-45deg);
  transform-origin: center;
  pointer-events: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.tp-portfolio-inner-thumb:hover .locatie-badge {
  background: var(--tp-common-yellow);
  font-size: 14px;
  letter-spacing: 0.1em;
  transform: rotate(-45deg) scale(1.05) translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}


/* =========================================================
   AZ OVERVIEW
========================================================= */

.az-overview-wrap {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.az-overview {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.az-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #dcdcdc;
  border-radius: 999px;
  background: transparent;
  color: #111013;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease,
    opacity 0.2s ease;
}

.az-link:not(.disabled):hover {
  background: var(--tp-common-yellow);
  color: #111013;
  border-color: #111013;
  transform: translateY(-2px);
}

.az-link.active {
  background: #111013;
  color: #fff;
  border-color: #111013;
}

.az-link.active:hover {
  background: var(--tp-common-yellow);
  color: #fff;
  border-color: #000;
  transform: none;
}

.az-link.disabled {
  pointer-events: none;
  color: #575759;
  background: #E6E6E6;
}

[id^="letter-"],
#cijfers {
  scroll-margin-top: 120px;
}


/* =========================================================
   FORM ELEMENTS
========================================================= */

input[type="checkbox"] {
  appearance: none;
  position: relative;
  top: 3px;
  width: 18px;
  height: 18px;
  border: 2px solid #000;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

input[type="checkbox"]:checked {
  background: #e2ff00;
  border-color: #e2ff00;
}

input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 4px;
  height: 8px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

input[type="radio"] {
  appearance: none;
  position: relative;
  top: 3px;
  width: 20px;
  height: 20px;
  border: 2px solid #000;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

input[type="radio"]:checked {
  background: #e2ff00;
  border-color: #e2ff00;
}

input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #000;
  transform: translate(-50%, -50%);
}

.tp-time-item input[type="time"] {
  appearance: none;
  -webkit-appearance: none;
  width: 140px;
  height: 44px;
  padding: 0 12px;
  border: 2px solid #000;
  border-radius: 0;
  background: transparent;
  color: #000;
  font-family: var(--tp-ff-inter);
  font-size: 16px;
}


/* =========================================================
   FORM / AANMELDEN
========================================================= */

.btn-aanmelden {
  background: #e2ff00 !important;
  color: #000 !important;
  border: 2px solid #e2ff00;
  transition: all 0.3s ease;
}

.btn-aanmelden .text-1,
.btn-aanmelden .text-2 {
  color: inherit;
}

.tp-contact-form-input {
  position: relative;
}

.tp-contact-form-input label.d-block {
  margin-bottom: 16px;
}

.tp-contact-form-input select {
  width: 100%;
  height: 60px;
  padding: 0 48px 0 18px;
  border: 1px solid #d9d9d9;
  border-radius: 14px;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23111013' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 14px 9px;
  color: #111013;
  font-size: 17px;
  font-weight: 500;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all 0.25s ease;
}

.tp-contact-form-input select:focus {
  border-color: #c6f500;
  box-shadow: 0 0 0 3px rgba(198, 245, 0, 0.18);
}

.tp-radio-group label {
  display: block;
  margin-bottom: 14px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
}

.tp-radio-group label:last-child {
  margin-bottom: 0;
}

.tp-radio-group input {
  margin-right: 10px;
  transform: translateY(-1px);
}

/* Error message under a checkbox/radio label: align with the label text
   (past the input + its right margin) and visually attach to the label
   above by pulling up over its bottom margin. */
.tp-radio-group .form-error {
  display: block;
  margin-top: -10px;
  margin-bottom: 14px;
  padding-left: 24px;
}

.program-fields {
  display: none;
}

.tp-time-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tp-time-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tp-time-item span {
  font-weight: 500;
  white-space: nowrap;
}

.tp-time-item input {
  width: 120px;
}

.tp-summary-box {
  padding: 30px;
  border: 1px solid #dcdcdc;
  border-radius: 20px;
  background: #f7f7f7;
}

.tp-summary-title {
  margin-bottom: 16px;
  font-size: 24px;
}

.tp-summary-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tp-summary-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid #e6e6e6;
}

.tp-summary-list li:last-child {
  border-bottom: 0;
}

.tp-summary-list li span {
  min-width: 180px;
  color: #6f6f6f;
}

.tp-summary-list li strong {
  color: #111013;
  font-weight: 600;
  text-align: right;
}

/* Square the aanmelden step buttons — main.css forces 30px on
   .tp-contact-form-btn button, and .tp-btn-yellow-green is 10px. */
.tp-contact-form-btn button.tp-btn-yellow-green,
.tp-contact-form-btn a.tp-btn-yellow-green {
  border-radius: 0;
}

/* Simple paginator on /locaties — prev | current/total | next, separated by
   a thin top border. */
.locations-paginator {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px 0;
  margin-top: 30px;
  border-top: 3px solid #000;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.locations-paginator-prev { justify-self: start; }
.locations-paginator-next { justify-self: end; }
.locations-paginator-info { justify-self: center; color: #111013; }
.locations-paginator a {
  color: #111013;
  text-decoration: none;
}
.locations-paginator a:hover {
  text-decoration: underline;
}

/* Locatie list/map view-switch pills — main.css renders them white-on-white
   without a .agntix-light wrapper. Force dark text/border for visibility. */
.tp-portfolio-masonry-social a {
  color: #111013;
  border-color: rgba(0, 0, 0, 0.15);
}
.tp-portfolio-masonry-social a:hover {
  color: #fff;
  background-color: #111013;
  border-color: #111013;
}

/* Lift the locatie view-switch pills + filter form above the Google Maps
   stacking context on /locaties/map (map div uses `p-relative` and Google's
   canvas creates a sibling stacking context that wins on equal z-index). */
.tp-portfolio-masonry-social,
.locations-filter-form {
  position: relative;
  z-index: 10;
}


/* Inline prefix symbol inside form inputs (e.g. @ for Instagram). */
.tp-input-prefix-wrap {
  position: relative;
}
.tp-input-prefix-wrap .tp-input-prefix-symbol {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #6f6f6f;
  pointer-events: none;
  font-size: 16px;
  line-height: 1;
}
.tp-input-prefix-wrap input {
  padding-left: 36px;
}


/* =========================================================
   HEADER
========================================================= */

.tp-header-menu ul {
  display: inline-flex;
  gap: 30px;
  padding: 10px 20px;
  border-radius: 999px;
  background: #eee;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {
  .masonry-gallery {
    column-count: 2;
  }

  .locations-filter-dropdown {
    min-width: 280px;
    max-width: min(320px, calc(100vw - 40px));
  }

  .az-overview {
    gap: 8px;
  }

  .az-link {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
}

@media (max-width: 767.98px) {
  /* ---------- Location filters ---------- */

  .locations-filters-row {
    position: relative;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
    overflow: visible;
    align-items: start;
  }

  .locations-filter {
    position: relative;
    width: 100%;
    min-width: 0;
  }

  .locations-filter.is-open {
    z-index: 300;
    grid-column: 1 / -1;
  }

  .locations-filter-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    min-height: 62px;
    padding: 0 18px;
    border: 1px solid #111;
    border-radius: 4px;
    background: #fff;
    color: #111;
    box-shadow: none;
    font-size: 15px;
    font-weight: 600;
  }

  .locations-filter.is-open .locations-filter-btn,
  .locations-filter.is-active .locations-filter-btn {
    background: #111;
    color: #fff;
    border-color: #111;
  }

  .locations-filter-label {
    flex: 0 1 auto;
    white-space: nowrap;
  }

  .locations-filter-count {
    min-width: 22px;
    height: 22px;
    margin-left: 4px;
    margin-right: 0;
    flex: 0 0 auto;
  }

  .locations-filter-arrow {
    width: 14px;
    height: 14px;
    margin-left: auto;
    transform: rotate(45deg) translateY(-1px);
  }

  .locations-filter.is-open .locations-filter-arrow {
    transform: rotate(-135deg) translateY(-1px);
  }

  .locations-filter-dropdown {
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    max-height: none;
    margin-top: 10px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #111;
    box-shadow: none;
  }

  .locations-filter-options {
    max-height: 320px;
    overflow-y: auto;
  }

  .locations-filter-option {
    gap: 14px;
    padding: 18px;
    font-size: 15px;
    font-weight: 600;
  }

  .locations-filter-option input {
    width: 18px;
    height: 18px;
  }

  .locations-filter-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .locations-filter-reset,
  .locations-filter-apply {
    min-height: 56px;
    font-size: 15px;
    font-weight: 700;
  }

  .locations-filter-clear-all {
    grid-column: 1 / -1;
    margin-top: 2px;
    margin-left: 0;
    align-self: flex-start;
  }

  /* ---------- AZ overview ---------- */

  .az-overview-wrap {
    margin-bottom: 30px;
  }

  .az-overview {
    gap: 8px;
  }

  .az-link {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  /* ---------- Summary ---------- */

  .tp-summary-list li {
    flex-direction: column;
    gap: 6px;
  }

  .tp-summary-list li strong {
    text-align: left;
  }

  /* ---------- Mobile hero ---------- */

  .ks-mobile-hero {
    overflow: hidden;
    padding: 120px 0 40px;
    background: #e2ff00;
  }

  .ks-mobile-hero-inner {
    position: relative;
  }

  .ks-mobile-hero-sticker {
    max-width: 150px;
    margin-bottom: 20px;
  }

  .ks-mobile-hero-title {
    margin: 0 0 10px;
    font-family: var(--tp-ff-mango);
    font-size: 16em;
    font-weight: 900;
    line-height: 0.8em;
    word-break: normal;
    overflow-wrap: normal;
  }

  .ks-mobile-hero-subtitle {
    color: var(--tp-common-black);
    font-size: 6em;
    font-weight: 800;
    text-transform: uppercase;
  }

  /* ---------- Mobile atelier ---------- */

  .ks-mobile-atelier-block {
    position: relative;
    margin-top: 70px;
    overflow: visible !important;
  }

  .ks-mobile-atelier-inner {
    position: relative;
    padding: 0 10px;
    overflow: visible !important;
  }

  .ks-mobile-atelier-tag {
    position: relative;
    z-index: 3;
    display: block;
    max-width: 150px;
    margin: 0 auto 24px;
  }

  .ks-mobile-atelier-block .tp-section-title-clash,
  .ks-mobile-atelier-block p {
    position: relative;
    z-index: 2;
  }

  .ks-mobile-atelier-block .tp-section-title-clash {
    font-size: 48px !important;
    line-height: 0.95 !important;
  }

  .ks-mobile-atelier-block p {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.5;
  }

  /* ---------- Floating stickers ---------- */

  .ks-bg-sticker {
    position: absolute;
    width: 220px;
    opacity: 1;
    pointer-events: none;
  }

  .ks-bg-sticker-left {
    top: 10px;
    left: -70px;
    transform: rotate(-18deg);
  }

  .ks-bg-sticker-right {
    top: 360px;
    right: -80px;
    transform: rotate(16deg);
  }

  .tp-header-btn-box {
    position: relative;
    overflow: visible !important;
  }

  .ks-bg-sticker-top {
    position: absolute;
    width: 100px;
    opacity: 1;
    pointer-events: none;
  }

  .ks-bg-sticker-left-top {
    top: 30px;
    left: -40px;
    transform: rotate(-18deg);
  }

  .ks-bg-sticker-right-top {
    top: 120px;
    right: -50px;
    transform: rotate(16deg);
  }

  .ks-bg-sticker-mid-top {
    top: -50px;
    left: 60px;
    transform: rotate(16deg);
  }

  /* ---------- About ---------- */

  .it-about-title-box {
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
  }

  .it-about-title-box p {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.6;
  }

  .it-about-thumb img {
    width: 100% !important;
    height: auto;
  }

  /* ---------- Ticker ---------- */

  .ks-mobile-ticker {
    padding: 14px 16px;
    background: #FF01FF;
    color: #fff;
    font-family: "Tickerbit", sans-serif;
    font-size: 18px;
    line-height: 1.4;
    text-align: center;
    text-transform: uppercase;
  }

  /* ---------- Dates ---------- */

  .ks-mobile-dates {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .ks-mobile-date {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
  }

  .ks-mobile-date,
  .ks-mobile-line-title {
    padding: 26px 0;
  }

  .ks-mobile-date .ar-about-us-4-text-title,
  .ks-mobile-line-title .ar-about-us-4-text-title {
    font-size: 100px;
    line-height: 1em;
    letter-spacing: 0;
  }

  /* ---------- Stickers / gallery ---------- */

  .ks-mobile-stickers {
    padding-top: 10px;
  }

  .ks-mobile-stickers img {
    display: block;
    width: 100%;
    height: auto;
  }

  .ks-mobile-gallery {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  /* ---------- Section spacing ---------- */

  .des-about-area {
    padding-bottom: 90px !important;
  }

  .des-about-text p {
    font-size: 40px;
    line-height: 30px;
  }

  .tp-service-5-features-ptb {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }

  .tp-service-5-feature-title {
    font-size: 36px !important;
    line-height: 1 !important;
  }

  /* ---------- Mobile button ---------- */

  .tp-btn-yellow-green.green-solid {
    padding: 18px 16px;
    font-size: 14px;
    white-space: nowrap;
  }
	 .tp-header-logo img:not(.ks-logo-mobile) {
    width: 170px !important;
  }

}

/* ---------------------------------------------------------------------------
   Footer newsletter form (.ks-footer-signup / .dgm-footer-widget-input)
   --------------------------------------------------------------------------- */

/* Visually-hidden label for screen readers (used by the footer email input). */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* Safari/iOS autofill repaints the field background pale yellow-green, which
   hides the green airplane submit icon. Override with an inset shadow so the
   dark theme + light text stay intact. */
.dgm-footer-widget-input input:-webkit-autofill,
.dgm-footer-widget-input input:-webkit-autofill:hover,
.dgm-footer-widget-input input:-webkit-autofill:focus,
.dgm-footer-widget-input input:-webkit-autofill:active {
  -webkit-box-shadow: inset 0 0 0 1000px #1e1e1e !important;
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff;
  transition: background-color 5000s ease-in-out 0s;
}

/* Subtle "good to go" hint: green border once a valid email has been typed.
   Uses :not(:placeholder-shown) so the empty state stays neutral. */
.dgm-footer-widget-input input:valid:not(:placeholder-shown) {
  border-color: var(--tp-common-green-regular);
}

/* Make sure the submit button sits above the input visually (the input has
   padding-right reserved, but a high z-index avoids any stacking surprises). */
.dgm-footer-widget-input .input-button {
  z-index: 2;
}
.dgm-footer-widget-input .input-button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Inline feedback paragraph for the AJAX response. */
.ks-footer-signup .mc-signup-result {
  min-height: 1em;
  margin-top: 10px;
  font-size: 14px;
  color: #fff;
  scroll-margin-top: 120px;
}