@font-face {
  font-family: Breathing;
  src: url("../fonts/Breathing-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
}

:root {
  --dark-bg: #181717;
  --white-bg: #fdfaf5;
  --diest-orange: #f68929;
  --linesdark: #2a2a2a;
  --grey: #737474;
  --pop-orange: #ff5f00;
  --lineslight: #dadada;
  --darkblue: #1c352d;
}

.event-success-box {
  background: linear-gradient(135deg, #e9fbe9, #f4fff4);
  border: 1px solid #b7e4b7;
  padding: 24px;
  border-radius: 12px;
  text-align: left;
  color: #2e7d32;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.event-success-box.info {
  background: linear-gradient(135deg, #fff7d6, #fffbeb);
  border: 1px solid #f2d36b;
  color: #6a5200;
}
.event-success-box.error {
  background: linear-gradient(135deg, #ffe1e1, #fff5f5);
  border: 1px solid #ff8f8f;
  color: #7a1b1b;
}

.event-success-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.event-success-text {
  font-size: 14px;
  line-height: 1.5;
}

.date-tag-event {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 10px;
  background: var(--dark-bg);
  color: var(--white-bg);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.4px;
  border: 1px solid var(--lineslight);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.ui-message {
  position: fixed;
  top: 20px;
  right: 10px;
  z-index: 200;

  max-width: 300px;
  padding: 16px 20px;
  padding-right: 30px;

  background-color: #f6fff6;
  color: #175106;

  border: 1px solid #b7e4b7;
  border-radius: 10px;

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);

  transition: opacity 0.3s ease;
}

.ui-message.info {
  background-color: #fbf7ce;
  color: #ed8432;
}

.ui-message.error {
  background-color: #fbe9e1;
  color: #7a1202;
}

.close-ui-message {
  background-color: transparent;
  position: absolute;
  right: 5px;
  top: 5px;
  cursor: pointer;
}

.holder-achievement-front {
  background: #ffffff;
  border: 1px solid var(--lineslight);
  border-radius: 10px;
  padding: 8px 12px;
  margin-bottom: 10px;
  color: var(--dark-bg);
  box-shadow: 0 2px 6px #00000015;
  transition: 0.25s ease;
  width: 90%;
}

.achievement-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--diest-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.achievement-icon img {
  width: 18px;
  height: 18px;
  object-fit: cover;
}

.holder-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.image-in-list {
  border-radius: 5px;
}

.loading-spinner {
  width: 100px;
}

.alwaysflexhorizontal {
  align-items: center;
  max-width: 100%;
  display: flex;
}

.flexhorizontal {
  flex-flow: wrap;
  align-items: center;
  max-width: 100%;
  display: flex;
}

.pasword-forget-holder {
  justify-content: flex-end;
  margin-top: -10px;
  display: flex;
}

.paswoord-forget {
  color: var(--grey);
  text-decoration: none;
  font-size: 12px;
}

.loading-ui {
  display: none;
  width: 100px;
}

#coachesreel {
  animation: scroll-left linear infinite;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.coach:first-child {
  animation-delay: 20s; /* Half of the total animation duration */
}

.blockoption {
  width: 380px;
  max-width: 100%;
  height: 380px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: var(--white-bg);
  background-color: var(--dark-bg);
}

.blockoption-content {
  padding-bottom: 40px;
  z-index: 2;
  position: relative;
}

.blockoption-title {
  min-height: 60px;
  display: flex;
  justify-content: center;
  left: 0px;
  padding: 10px;
  min-width: 100px;
  background-image: linear-gradient(
    270deg,
    transparent 0px,
    transparent 80%,
    var(--diest-orange)
  );
  text-align: left;
  text-transform: uppercase;
  flex-flow: column;
  font-family: Poppins, sans-serif;
  margin-block-start: 0px;
  margin-block-end: 0px;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: 800;
  font-size: 28px;
}

.blockoption-undertitle {
  font-family: Breathing, Trebuchet MS, sans-serif;
  font-size: 28px;
  padding-left: 40px;
  margin-block-start: 0px;
  margin-block-end: 0px;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: 400;
}

/* ===== FORM WRAPPER ===== */
.tsFormGroup {
  position: relative;
  margin-bottom: 22px;
  font-family: Poppins, sans-serif;
}

/* ===== INPUT + TEXTAREA ===== */
.tsInput,
.tsTextarea,
.tsSelect {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border: 1px solid #d7dce1;
  border-radius: 10px;
  background: #fff;
  color: var(--dark-bg);
  transition: all 0.25s ease;
  outline: none;
  appearance: none;
}

/* Hover */
.tsInput:hover,
.tsTextarea:hover,
.tsSelect:hover {
  border-color: #b8c0c7;
}

/* Focus */
.tsInput:focus,
.tsTextarea:focus,
.tsSelect:focus {
  border-color: var(--main);
  box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.15);
}

/* ===== FLOATING LABEL ===== */
.tsLabel {
  position: absolute;
  top: 14px;
  left: 16px;
  font-size: 15px;
  color: #777;
  pointer-events: none;
  transition: all 0.25s ease;
}

/* When input has value or focus */
.tsInput:focus + .tsLabel,
.tsTextarea:focus + .tsLabel,
.tsSelect:focus + .tsLabel,
.tsInput:not(:placeholder-shown) + .tsLabel,
.tsTextarea:not(:placeholder-shown) + .tsLabel {
  top: -8px;
  left: 12px;
  font-size: 12px;
  background: #fff;
  padding: 0 6px;
  color: var(--main);
}

/* ===== TEXTAREA ===== */
.tsTextarea {
  min-height: 120px;
  resize: vertical;
}

/* ===== SELECT ARROW ===== */
.tsSelect {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='10' viewBox='0 0 14 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l6 7 6-7' stroke='%23666' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
}

/* ===== SUBMIT BUTTON ===== */
.tsFormButton {
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--diest-orange), var(--pop-orange));
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 15px;
}

.tsFormButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.membershipGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .membershipGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .membershipGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Membership card */
.membershipCard {
  background: #fafafa;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Title */
.membershipTitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-bg);
}

/* Rows */
.membershipRow {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.membershipLabel {
  font-size: 13px;
  font-weight: 600;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.membershipValue {
  font-size: 15px;
  color: var(--dark-bg);
}

/* Bullet list */
.tsFaqListBullets {
  margin: 10px 0 16px 20px;
  padding: 0;
  list-style-type: square;
  color: var(--dark-bg);
  font-size: 15px;
  line-height: 22px;
}

/* WhatsApp grid */
.waGrid {
  display: grid;
  gap: 20px;
  margin-top: 20px;
  grid-template-columns: repeat(3, 1fr);
}

/* Individual card */
.waCard {
  background: #fafafa;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.waCard .tsFaqButton {
  align-self: center;
}

/* Title */
.waTitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-bg);
}

/* QR image */
.waQR {
  width: 75%;
  max-width: 180px;
  margin: 0 auto;
  border-radius: 8px;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 16px;
  color: var(--dark-bg);
  user-select: none;
  margin-bottom: 10px;
  width: 100%;
  font-weight: 300;
}

/* Hide native checkbox */
.custom-checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Custom box */
.custom-checkbox .checkmark {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  border: 2px solid var(--lineslight);
  border-radius: 4px;
  display: inline-block;
  transition: all 0.25s ease;
  background: var(--white-bg);
  position: relative;
}

/* Hover */
.custom-checkbox:hover .checkmark {
  border-color: var(--diest-orange);
}

/* Checked state */
.custom-checkbox input:checked + .checkmark {
  background: var(--diest-orange);
  border-color: var(--diest-orange);
}

.custom-checkbox input:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.date-range-input {
  background: var(--white-bg);
  border: 1px solid var(--lineslight);
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  color: var(--dark-bg);
}

.date-range-input:hover {
  border-color: var(--diest-orange);
  box-shadow: 0 0 0 3px rgba(246, 137, 41, 0.25);
}

/* Flatpickr calendar container */
.flatpickr-calendar {
  border-radius: 12px;
  background: var(--white-bg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--lineslight);
}

/* Month navigation arrows */
.flatpickr-prev-month svg,
.flatpickr-next-month svg {
  fill: var(--darkblue);
  transition: fill 0.2s ease;
}

.flatpickr-prev-month:hover svg,
.flatpickr-next-month:hover svg {
  fill: var(--diest-orange);
}

/* Month title */
.flatpickr-months .flatpickr-month {
  color: var(--darkblue);
}

/* Weekday labels */
.flatpickr-weekday {
  color: var(--grey);
  font-weight: 600;
}

/* Day cells */
.flatpickr-day {
  color: var(--dark-bg);
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
}

.flatpickr-day:hover {
  background: var(--diest-orange);
  color: white;
}

/* Selected range */
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: var(--diest-orange);
  color: white;
  border-color: var(--diest-orange);
}

/* In-between range days */
.flatpickr-day.inRange {
  background: rgba(246, 137, 41, 0.25);
  color: var(--dark-bg);
}

/* Today highlight */
.flatpickr-day.today {
  border-color: var(--pop-orange);
  color: var(--dark-bg);
}

/* Selector container */
.ageSelector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

/* Buttons */
.ageBtn {
  padding: 8px 16px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  color: var(--dark-bg);
}

.ageBtn:hover {
  background: linear-gradient(135deg, var(--diest-orange), var(--pop-orange));
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}

/* Active state */
.ageBtn.active {
  background: linear-gradient(135deg, var(--diest-orange), var(--pop-orange));
  color: white;
  border-color: transparent;
}

/* Highlight selected card */
.tsFaqPriceCard.highlight {
  border: 2px solid var(--diest-orange);
  box-shadow: 0 6px 20px rgba(246, 137, 41, 0.15);
  transition: all 0.3s ease;
}

.tsFaqBody {
  background-color: var(--white-bg);
  color: var(--dark-bg);
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}
/* ===== CONTAINER ===== */
.tsFaqContainer {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* ===== SECTION CARD ===== */
.tsFaqSection {
  background: white;
  border-radius: 12px;
  padding: 22px 24px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* ===== TITLE ===== */
.tsFaqTitle {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-bg);
}
/* ===== SUBTITLE ===== */
.tsFaqSubtitle {
  font-size: 14px;
  font-weight: 600;
  color: var(--main);
  margin-top: 10px;
}
/* ===== TEXT ===== */
.tsFaqText {
  font-size: 15px;
  color: #333;
  line-height: 24px;
}
/* ===== TABLE ===== */
.tsFaqTable {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 14px;
}
.tsFaqTable th {
  text-align: left;
  font-weight: 600;
  padding: 10px;
  background: #f5f7f9;
  border-bottom: 2px solid #e5e7eb;
}
.tsFaqTable td {
  padding: 10px;
  border-bottom: 1px solid #e5e7eb;
}
.tsFaqTable tr:last-child td {
  border-bottom: none;
}
/* ===== HIGHLIGHT BOX ===== */
.tsFaqHighlight {
  background: #f0f6ff;
  border-left: 4px solid var(--main);
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
}
/* ===== LIST ===== */
.tsFaqList {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}
.tsFaqListItem {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #ddd;
  padding: 4px 0;
  font-size: 14px;
  color: var(--dark-bg);
}
/* ===== LINK BUTTON ===== */
.tsFaqLink {
  color: var(--main);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}
.tsFaqLink:hover {
  text-decoration: underline;
}
/* ===== FAQ STYLE ===== */
.tsFaqItem {
  border-top: 1px solid #eee;
  padding: 10px 0;
}
.tsFaqItem:first-child {
  border-top: none;
}
.tsFaqItemTitle {
  font-weight: 600;
  cursor: pointer;
}
.tsFaqItemText {
  margin-top: 6px;
  font-size: 14px;
  color: #444;
}
/* ===== SMALL INFO BOX ===== */
.tsFaqInfoBox {
  background: #fafafa;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px;
  font-size: 14px;
}
/* ===== PRICE TABLE STYLE ===== */
.tsFaqPriceTable {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.tsFaqPriceTable th {
  background: #f3f4f6;
  font-weight: 600;
  padding: 10px;
  text-align: left;
}
.tsFaqPriceTable td {
  padding: 10px;
  border-bottom: 1px solid #e5e7eb;
}
/* ===== IMPORTANT WARNING ===== */
.tsFaqWarning {
  background: #fff7ed;
  border-left: 4px solid #f97316;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
}
/* ===== SUCCESS / NOTE ===== */
.tsFaqNote {
  background: #ecfdf5;
  border-left: 4px solid #10b981;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
}

/* ===== PRICE CARD (REPLACES TABLE) ===== */
.tsFaqPriceCard {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fafafa;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 18px 20px;
  margin-top: 10px;
}

/* Each row */
.tsFaqPriceRow {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
  margin-top: 10px;
}

/* Label */
.tsFaqPriceLabel {
  font-size: 13px;
  font-weight: 600;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Value */
.tsFaqPriceValue {
  font-size: 15px;
  color: var(--dark-bg);
  line-height: 22px;
}

/* Button */
.tsFaqButton {
  margin-top: 10px;
  align-self: flex-start;
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--diest-orange), var(--pop-orange));
  color: white;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.tsFaqButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* ===== DATE LIST (REPLACES tsFaqList) ===== */
.tsFaqDates {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 6px;
}

/* Each row */
.tsFaqDateRow {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #e2e2e2;
}

.tsFaqDateRow:last-child {
  border-bottom: none;
}

/* Label */
.tsFaqDateLabel {
  font-size: 13px;
  font-weight: 600;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Value */
.tsFaqDateValue {
  font-size: 15px;
  color: var(--dark-bg);
  line-height: 22px;
}

/* ===== BESTUUR GRID ===== */
.bestuur-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px 16px;
}

.bestuur-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 20px 12px;
  border-radius: 14px;
  transition: background 0.15s ease, transform 0.2s ease;
}

.bestuur-card:hover {
  background: #f8f4ef;
  transform: translateY(-2px);
}

.bestuur-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--diest-orange), var(--pop-orange));
  box-shadow: 0 4px 12px rgba(246, 137, 41, 0.25);
  flex-shrink: 0;
}

.bestuur-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bestuur-avatar-initials {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.5px;
  line-height: 1;
}

.bestuur-member-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-bg);
  line-height: 1.3;
}

.bestuur-member-function {
  font-size: 12px;
  color: var(--grey);
  font-weight: 400;
  margin-top: -4px;
}

@media screen and (max-width: 991px) {
  .bestuur-grid { grid-template-columns: repeat(4, 1fr); }
}

@media screen and (max-width: 767px) {
  .bestuur-grid { grid-template-columns: repeat(3, 1fr); }
}

@media screen and (max-width: 479px) {
  .bestuur-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 10px; }
}

/* ===== OVER ONS ===== */
.over-ons-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.over-ons-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.over-ons-stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--diest-orange);
  line-height: 1;
}

.over-ons-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.over-ons-clubinfo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

/* sponsor card inside the scrolling reel */
.sponsor-reel-card {
  background: var(--white-bg);
  display: flex !important;
  flex-direction: column;
  overflow: hidden;
}

.sponsor-reel-img {
  flex: 1;
  width: 207px;
  height: 167px;
  object-fit: contain;
  padding: 20px;
  display: block;
  background: var(--white-bg);
}

.sponsor-reel-name {
  background: var(--dark-bg);
  color: var(--white-bg);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  text-align: center;
  padding: 8px 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sponsors-logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.sponsor-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--lineslight);
  border-radius: 10px;
  padding: 16px 20px;
  width: 140px;
  height: 80px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

a.sponsor-logo-card:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.sponsor-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 991px) {
  .over-ons-clubinfo-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .over-ons-stats {
    gap: 20px;
  }
  .over-ons-stat-number {
    font-size: 26px;
  }
}

/* ===== PREVIOUS EDITIONS ===== */
.previous-editions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.previous-edition-btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border: 1.5px solid var(--lineslight);
  border-radius: 10px;
  background: transparent;
  color: var(--dark-bg);
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.previous-edition-btn:hover {
  border-color: var(--diest-orange);
  color: var(--diest-orange);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(246, 137, 41, 0.12);
}

.previous-edition-btn-label {
  font-weight: 600;
}

.previous-edition-btn-arrow {
  margin-left: 8px;
  opacity: 0.5;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.previous-edition-btn:hover .previous-edition-btn-arrow {
  transform: translateX(3px);
  opacity: 1;
}

/* ===== GALLERY OVERVIEW (album cards) ===== */
.gallery-albums-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-album-card {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e8e8e8;
  text-decoration: none;
  cursor: pointer;
}

.gallery-album-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-album-card:hover .gallery-album-img {
  transform: scale(1.05);
}

.gallery-album-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px 16px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0) 100%);
  color: #fff;
}

.gallery-album-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 3px;
}

.gallery-album-meta {
  font-size: 12px;
  opacity: 0.75;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .gallery-albums-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 479px) {
  .gallery-albums-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* ===== GALLERY ===== */
.gallery-hero {
  margin-bottom: 40px;
}

.gallery-hero-title {
  margin-bottom: 10px;
}

.gallery-meta {
  font-size: 13px;
  color: var(--grey);
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
}

.gallery-description {
  font-size: 15px;
  color: #444;
  line-height: 1.65;
  max-width: 680px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}

.gallery-grid-item {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  background: #f0f0f0;
  cursor: pointer;
}

.gallery-grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  display: block;
}

.gallery-grid-item:hover .gallery-grid-img {
  transform: scale(1.04);
}

@media screen and (max-width: 479px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 6px;
  }
}

/* ===== SITE CREDIT BAR ===== */
.site-credit {
  text-align: center;
  padding: 8px 20px;
  font-size: 11px;
  color: #aaa;
  background: var(--white-bg);
}

.site-credit-link {
  color: #888;
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-credit-link:hover {
  color: var(--diest-orange);
}

.site-credit-name {
  color: #888;
}

/* ===== CONTACT PAGE ===== */
.contact-page-grid {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
}

.contact-info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  text-decoration: none;
  color: var(--dark-bg);
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px;
  transition: color 0.15s ease;
}

.contact-info-row:last-child {
  border-bottom: none;
}

.contact-info-row:hover {
  color: var(--diest-orange);
}

.contact-info-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  background: rgba(246, 137, 41, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--diest-orange);
}

.contact-info-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 1px;
}

@media screen and (max-width: 767px) {
  .contact-page-grid {
    flex-direction: column;
  }
}

/* ===== PROF COACH CARDS ===== */
.prof-coach-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.prof-coach-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--lineslight);
}

/* ===== KALENDER BANNER ===== */
.kalender-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--diest-orange), var(--pop-orange));
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: filter 0.2s ease;
}

.kalender-banner:hover {
  filter: brightness(1.08);
}

/* ===== ADD-ON OPTIONS ===== */
.addon-options-list {
  display: flex;
  flex-direction: column;
  margin-top: 6px;
}

.addon-option-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px dashed #e2e2e2;
  gap: 16px;
}

.addon-option-row:last-child {
  border-bottom: none;
}

.addon-option-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.addon-option-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-bg);
  line-height: 1.4;
}

.addon-option-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--grey);
  letter-spacing: 0.3px;
}

/* ===== QTY SELECTOR ===== */
.addon-qty-selector {
  display: inline-flex;
  align-items: center;
  background: #f3f3f3;
  border: 1px solid #e2e2e2;
  border-radius: 50px;
  overflow: hidden;
  flex-shrink: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.addon-qty-selector:has(.addon-qty-display:not([data-value="0"])) {
  border-color: var(--diest-orange);
  box-shadow: 0 2px 8px rgba(246, 137, 41, 0.18);
}

.addon-qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  font-size: 19px;
  font-weight: 500;
  color: var(--grey);
  cursor: pointer;
  line-height: 1;
  user-select: none;
  flex-shrink: 0;
  transition: background 0.15s ease, color 0.15s ease;
}

.addon-qty-btn:hover {
  background: rgba(246, 137, 41, 0.12);
  color: var(--diest-orange);
}

.addon-qty-btn:active {
  background: rgba(246, 137, 41, 0.25);
}

.addon-qty-minus {
  border-radius: 50px 0 0 50px;
}

.addon-qty-plus {
  border-radius: 0 50px 50px 0;
  color: var(--diest-orange);
}

.addon-qty-plus:hover {
  background: linear-gradient(135deg, var(--diest-orange), var(--pop-orange));
  color: white;
}

.addon-qty-display {
  min-width: 32px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-bg);
  padding: 0 2px;
  pointer-events: none;
  line-height: 34px;
  font-variant-numeric: tabular-nums;
}

/* --- HAMBURGER BASE --- */
.hamburger {
  width: 26px;
  height: 20px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  z-index: 9999;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
  border-radius: 3px;
  transition: transform 0.35s ease, background 0.35s ease;
}
/* 
.hamburger.fade-out {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
} */

.hamburger.active span {
  background: var(--dark-bg);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url("https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.videoherosection video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heroVideoMobile {
  display: none;
}

@media (max-width: 768px) {
  .heroVideoDesktop {
    display: none;
  }

  .heroVideoMobile {
    display: block;
  }
}

.herosection {
  background-color: var(--dark-bg);
  color: var(--white-bg);
  width: 100vw;
  height: 100svh;
  position: relative;
}

.herosection.events {
  height: 300px;
}

.videoherosection {
  object-fit: cover;
  position: absolute;
  inset: 0%;
}

.overlayhero {
  z-index: 2;
  background-image: linear-gradient(45deg, #181717, #181717f2 17%, #18171726);
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 5vw;
  display: flex;
  position: absolute;
  inset: 0%;
}

.div-block {
  background-color: var(--diest-orange);
}

.holdercoachview.is-fixed {
  position: fixed;
  bottom: 0;
}
.holdercoachview.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.holderfilterbtn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  height: 30px;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    var(--white-bg) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}
.logoball {
  width: 30px;
  position: absolute;
  inset: auto auto 380px -15px;
  transform-origin: center;
  will-change: transform;
  opacity: 1;
}
.logoball.spin {
  animation: roll-forward 0.8s linear infinite;
}
@keyframes roll-forward {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

.containcenter {
  width: 90%;
  transition: opacity 0.5s;
}

.containcenter.inv {
  opacity: 0;
  transition: opacity 0.2s;
}

.containcenter.infrontcoach {
  z-index: 4;
  position: relative;
}

.containcenter.centered {
  flex-flow: column;
  align-items: center;
  max-width: 90%;
  display: flex;
}

.body {
  background-color: var(--white-bg);
  color: var(--dark-bg);
  flex-flow: column;
  align-items: center;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 200;
  line-height: 26px;
  display: flex;
}

.texthero {
  width: 100%;
  max-width: 400px;
}

.boldtext {
  font-weight: 700;
}

.holdernavhero {
  z-index: 999;
  flex-flow: column;
  align-items: center;
  width: 100%;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.navbar {
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
}

.logonav {
  width: 80px;
}

.holdernavlinks {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.navlink {
  color: var(--white-bg);
  text-transform: uppercase;
  padding: 10px;
  text-decoration: none;
}

.navlink.close-nav {
  display: none;
}

.herooverlaytop {
  z-index: 2;
  background-image: linear-gradient(#000, #07070700 50%, #18171700);
  height: 100%;
  position: absolute;
  inset: 0% 0% auto;
}

.herooverlaytop.events {
  background-image: linear-gradient(#000, #07070700 100%, #18171700);
}

.section {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 160px;
  display: flex;
}

.section.withcoach {
  min-height: 100vh;
  position: relative;
}

.section.nopaddbottom {
  padding-bottom: 0;
}

.section.nopaddbottom.firstsection,
.section.firstsection,
.sectiondark.firstsection {
  padding-top: 40px;
}

.twosidecontent {
  justify-content: space-around;
  display: flex;
}

.twosidecontent.withstickyside {
  align-items: flex-start;
}

.stackedimagesholder {
  justify-content: flex-end;
  align-items: stretch;
  height: 550px;
  display: flex;
  position: relative;
}

.sidecontent {
  width: 47%;
  padding: 20px;
}

.sidecontent.infrontcoach {
  z-index: 4;
  position: relative;
}

.sidecontent.centered {
  justify-content: center;
  align-items: center;
  display: flex;
}

.sidecontent.centered.sticking-on-large {
  position: sticky;
  top: 0;
}

.sidecontent.centered.small {
  width: 25%;
}

.sidecontent.centered.small.vertical {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
}

.sidecontent.sticky {
  position: sticky;
  top: 20px;
}

.sidecontent.bigger {
  width: 65%;
}

.mainstackedimage {
  object-fit: cover;
  border-radius: 20px;
  width: 70%;
  height: 80%;
}

.secondstackedimage {
  z-index: 2;
  border: 10px solid var(--white-bg);
  object-fit: cover;
  border-radius: 20px;
  width: 50%;
  height: 60%;
  position: absolute;
  inset: auto auto 0% 0%;
}

.secondstackedimage.darkbg {
  border-color: var(--dark-bg);
}

.textsidecontent {
  padding-top: 20px;
}

.breathing-header {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 40px;
  font-family: Breathing, Trebuchet MS, sans-serif;
  font-size: 32px;
  line-height: 48px;
}

.breathing-header.centered {
  text-align: center;
  margin-top: 0;
}

.breathing-header.rightonlarge {
  text-align: right;
}

.breathing-header.titlecoach {
  text-transform: none;
  margin-bottom: 0;
}

.holdericonwithsubtitle {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.icon {
  width: 40px;
}

.icon.small {
  width: 16px;
}

.icon.mid {
  width: 30px;
}

.subtitle {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 28px;
}

.subtitle.thin {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 300;
}

.subtitle.smaller {
  font-size: 16px;
  line-height: 26px;
}

.spacer {
  height: 10px;
}

.holdercoachview {
  z-index: 3;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  height: 0%;
  padding-right: 200px;
  transition: opacity 0.3s;
  display: flex;
  position: absolute;
  bottom: 0;
}

.coachview {
  z-index: 4;
  width: 300px;
  transition: opacity 0.2s;
  position: absolute;
}

.coachview.blackwhite {
  z-index: 3;
  opacity: 0.03;
}

.coachview.main {
  z-index: 10;
  opacity: 0;
  cursor: pointer;
  transition-duration: 0.5s;
}

.sectiondark {
  color: var(--white-bg);
  flex-flow: column;
  align-items: center;
  width: 100%;
  margin-bottom: 60px;
  display: flex;
}

.darkbox {
  background-color: var(--dark-bg);
  border-radius: 10px;
  flex-flow: column;
  align-items: center;
  width: 100%;
  padding: 60px;
  display: flex;
}

.vertical-list-holder {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  align-items: center;
  width: 100%;
  max-width: 900px;
  display: flex;
}

.aanbod-holder {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.aanbod-image-box {
  border-radius: 10px;
  justify-content: flex-start;
  align-items: center;
  width: 200px;
  min-width: 200px;
  height: 200px;
  min-height: 200px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.aanbod-im {
  opacity: 0.4;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.aanbod-im-text {
  align-items: center;
  width: 100%;
  height: 40px;
  padding-left: 20px;
  display: flex;
  position: relative;
}

.gradient-im-aanbod {
  background-image: linear-gradient(90deg, var(--diest-orange), #f6892900);
  width: 120px;
  height: 100%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.text-block {
  z-index: 2;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  position: relative;
}

.buttons-list {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.quick-actions-box {
  gap: 40px;
}

.quick-action-cards {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  gap: 0;
}

.quick-action-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 30px 10px;
}

.quick-action-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(246, 137, 41, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(246, 137, 41, 0.25);
}

.quick-action-desc {
  flex: 1;
  margin: 0;
  opacity: 0.8;
  font-size: 15px;
  line-height: 1.6;
}

.quick-action-btn {
  margin-top: 6px;
  align-self: flex-start;
}

.quick-action-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  align-self: stretch;
  flex-shrink: 0;
}

.button {
  --radius: 10px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 26px;
  min-width: 150px;

  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;

  color: #fff;
  background: linear-gradient(135deg, var(--diest-orange), var(--pop-orange));
  border-radius: var(--radius);
  border: none;

  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.35s ease;
  box-shadow: var(--shadow);
  z-index: 10;
}

.button {
  padding: 6px 12px;
}

/* Hover: subtle lift + brighter gradient */
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  background: linear-gradient(135deg, var(--pop-orange), var(--diest-orange));
}

/* Active: gentle press */
.button:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
}

/* --- DARK VARIANT --- */
.button.dark {
  background: var(--linesdark);
  color: #fdfaf5;
  border: 1px solid var(--lineslight);
  box-shadow: none;
}

.button.dark:hover {
  background: linear-gradient(135deg, var(--diest-orange), var(--pop-orange));
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.button.grey {
  background-image: none;
}

.button.caps {
  text-transform: uppercase;
}

.button-2 {
  text-transform: uppercase;
  background-color: #db8aa7;
  border-radius: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
  font-weight: 400;
}

.footersection {
  background-color: var(--dark-bg);
  color: #fffcf8;
  border-radius: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin-top: 100px;
  margin-bottom: 0;
  padding: 100px 40px 40px;
  display: flex;
  position: relative;
}

.google-maps {
  background-image: url("../images/maps.jpeg");
  background-position: 0 0;
  background-size: auto;
  border-radius: 100px;
  align-self: auto;
  width: 50px;
  min-width: 50px;
  height: 50px;
  min-height: 50px;
  margin-right: 20px;
}

.google-maps.zomer {
  background-image: url("../images/diest-buiten.JPG");
  background-position: 50% 100%;
  background-size: cover;
}

.google-maps.winter {
  background-image: url("../images/karteria.JPG");
  background-position: 50% 100%;
  background-size: cover;
}

.holderlogofooter {
  border: 1px solid var(--white-bg);
  background-color: var(--white-bg);
  border-radius: 50%;
  justify-content: center;
  align-items: flex-end;
  width: 20vw;
  height: 10vw;
  padding-bottom: 20px;
  display: flex;
  position: absolute;
  inset: -5vw auto auto 35vw;
}

.logofooter {
  width: 75px;
}

.footercontentholder {
  flex-flow: wrap;
  justify-content: space-around;
  align-items: flex-start;
  display: flex;
}

.mapslink {
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  text-decoration: none;
  display: flex;
}

.link-footer {
  color: #fafafa;
  text-transform: uppercase;
  padding-right: 5px;
  font-size: 14px;
  text-decoration: none;
}

.link-footer:hover {
  padding-left: 5px;
  padding-right: 0;
}

.link-footer.title {
  font-weight: 700;
}

.link-footer.title:hover {
  padding-left: 0;
}

.link-footer.dark {
  color: var(--dark-bg);
}

.footerpart {
  flex-flow: column;
  align-items: flex-start;
  max-width: 32%;
  padding: 20px;
  display: flex;
}

.spacer10px {
  height: 10px;
}

.containcenter-2 {
  width: 95%;
  max-width: 1500px;
}

._100-widthcenter {
  flex-flow: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.dividerondark {
  background-color: var(--linesdark);
  width: 100%;
  height: 1px;
}

.pinktext {
  color: #db8aa7;
}

.section-2 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 300px;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.colouredcontainer {
  z-index: 5;
  background-color: var(--dark-bg);
  color: #f5eeed;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  padding: 60px;
  display: flex;
  position: relative;
}

.colouredcontainer.socials {
  width: 100%;
}

.socialmedialink {
  color: #c1bdbd;
  text-transform: uppercase;
  align-items: center;
  margin-top: 10px;
  font-size: 14px;
  text-decoration: none;
  display: flex;
}

.socialmediatitle {
  font-size: 32px;
  line-height: 36px;
  margin-top: 20px;
}

.socialmediaholder {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  max-width: 900px;
  display: flex;
}

.holdertitleandsocialmedialinks {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 290px;
  display: flex;
}

.holder-phone {
  position: relative;
  display: flex;
  justify-content: center;
}

.heading {
  text-transform: uppercase;
  margin-top: 0;
  font-weight: 400;
}

.phone-image {
  border: 2px solid #fff;
  border-radius: 10px;
  width: 160px;
  overflow: hidden;
  max-width: 380px;
}

.phone-image.black {
  border-color: #000;
}

.holdersocialhandles {
  margin-top: 20px;
}

.holder-instagram-phone-and-buttons {
  justify-content: space-around;
  width: 350px;
  display: flex;
}

.socialmediaicon {
  margin-right: 10px;
}

.breathing-span {
  font-family: Breathing, Trebuchet MS, sans-serif;
}

.holder-event-list {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: center;
  align-items: flex-start;
  max-width: 900px;
  display: flex;
}

.event-holder {
  border: 1px solid var(--lineslight);
  border-radius: 10px;
  width: 100%;
  padding: 20px 20px 20px 230px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 5px #0003;
  min-height: 200px;
}

.event-im {
  object-fit: cover;
  width: 200px;
  height: 100%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.smalltext {
  opacity: 0.8;
  font-size: 0.8rem;
}

.gradientimevent {
  display: none;
}

.filters-en-results {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.holder-filter-checks {
  color: #868686;
  align-items: center;
  height: 15px;
  margin-top: 10px;
  padding-left: 25px;
  font-size: 12px;
  line-height: 18px;
  display: flex;
}

.holder-filter-checks:hover {
  color: #000;
}

.holder-filter-checks.alone {
  padding-left: 10px;
}

.filter-and-reset {
  border-bottom: 1px solid var(--lineslight);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 10px;
  padding-top: 10px;
  display: flex;
}

.button-3 {
  text-transform: uppercase;
  background-color: #846e44;
  border-radius: 5px;
  font-weight: 200;
}

.button-3:hover {
  background-image: linear-gradient(135deg, #846e44, #ccb087);
}

.checkbox {
  width: 15px;
  height: 15px;
  margin-top: 0;
  margin-left: -25px;
  position: absolute;
}

.checkbox.w--redirected-checked {
  background-color: #846e44;
  background-image: url("../images/checkmark-1.svg");
  background-size: 7px 7px;
  border-color: #846e44;
}

.checkbox.w--redirected-focus {
  box-shadow: none;
}

.holder-button-show-results {
  display: flex;
  position: sticky;
  inset: auto 0% 0%;
}

.blue-cap-text {
  color: var(--linesdark);
  -webkit-text-stroke-color: #846e44;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 300;
}

.form {
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  display: flex;
}

.filters-holder {
  z-index: 20;
  align-items: center;
  width: 300px;
  display: flex;
  position: sticky;
  top: 40px;
  overflow: auto;
}

.holder-see-filter-results {
  display: none;
}

.filter-category {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 20px;
  padding-right: 10px;
  display: flex;
}

.go-back {
  display: none;
}

.cap-text {
  text-transform: uppercase;
  font-size: 16px;
}

.reset {
  color: var(--darkblue);
  font-size: 12px;
  line-height: 14px;
}

.reset:hover {
  color: #846e44;
  font-weight: 400;
}

.holderfilterbtn {
  z-index: 10;
  background-color: var(--white-bg);
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 80px;
  margin-top: -20px;
  margin-bottom: 20px;
  margin-left: -5vw;
  display: none;
  position: sticky;
  top: 0;
  left: 0;
}

.filterbutton {
  color: #1b1d1c;
  background-color: #f0f0f0;
  border-radius: 9px;
  margin-bottom: 0;
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px 20px;
  display: none;
  text-decoration: none;
  align-items: center;
}

.icon-filter {
  width: 15px;
  margin-right: 10px;
}

.smallcenteredparagraf {
  text-align: center;
  width: 400px;
  max-width: 100%;
}

.holder-locations {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: center;
  margin-top: 40px;
  display: flex;
}

.locationdiv {
  text-align: center;
  width: 300px;
  max-width: 100%;
}

.locationim {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 200px;
  margin-bottom: 10px;
}

.address-text {
  color: var(--lineslight);
  text-transform: uppercase;
  font-size: 14px;
}

.serve-gif,
.logoball {
  display: none;
}

.logoball.spin {
  transform-style: preserve-3d;
}

.hamburger-icon {
  display: none;
}

.containcenter-3 {
  flex-flow: column;
  align-items: flex-start;
  max-width: 80vw;
  display: flex;
}

.section-leveranciers {
  text-align: center;
  flex-flow: column;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 100px;
  display: flex;
}

.headingonwhite {
  font-size: 40px;
  font-weight: 900;
  line-height: 48px;
}

.coach {
  background-color: var(--white-bg);
  opacity: 0.85;
  border: 1px #c18732;
  justify-content: center;
  align-items: center;
  min-width: 200px;
  min-height: 200px;
  padding: 20px;
  display: flex;
  position: relative;
}

.coach:hover {
  opacity: 1;
  background-color: #fcf3e7;
}

.coach.fullpage {
  border-style: solid;
  border-color: var(--lineslight);
  border-radius: 10px;
  width: 300px;
  max-width: 100%;
  min-height: 330px;
  overflow: hidden;
}

.coach.fullpage.fullopacity {
  opacity: 1;
}

.line-partners {
  background-color: var(--dark-bg);
  width: 100%;
  height: 1px;
}

.slider-partner {
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  display: flex;
}

.partners-holder {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 200px;
  margin-top: 40px;
  display: flex;
  position: relative;
}

.box-partners {
  z-index: 3;
  border: 1px solid var(--dark-bg);
  background-color: var(--dark-bg);
  border-radius: 20px;
  height: 300px;
  margin-top: 10vw;
  margin-bottom: 10vw;
  display: flex;
  position: absolute;
  left: 15vw;
  right: 15vw;
  overflow: hidden;
}

.coachimageinslider {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
}

.coachimageinslider.smaller {
  width: 75%;
}

.namecoachinslider {
  color: var(--dark-bg);
  text-align: center;
  background-image: linear-gradient(#fff0, #ffffff61 17%, #fff);
  justify-content: center;
  align-items: flex-end;
  padding: 10px;
  font-family: Breathing, Trebuchet MS, sans-serif;
  font-weight: 700;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.namecoachinslider.basic {
  background-image: linear-gradient(
    180deg,
    #18171700,
    #18171726 17%,
    var(--dark-bg)
  );
  color: var(--white-bg);
  text-align: center;
  text-transform: uppercase;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  font-family: Poppins, sans-serif;
  font-weight: 600;
}

.namecoachinslider.basic.left {
  text-align: left;
  align-items: flex-start;
}

.bgimevent {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.holdereventdetails {
  z-index: 5;
  background-color: #fff;
  border-radius: 10px;
  justify-content: space-between;
  align-items: stretch;
  width: 90%;
  max-width: 800px;
  display: flex;
  position: relative;
  top: -120px;
  box-shadow: 0 2px 5px #0003;
}

.contentdetails-event {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 20px;
  display: flex;
}

.rightsideeventdetails {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border-left: 1px solid var(--lineslight);
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 280px;
  min-width: 280px;
  padding: 20px;
  display: flex;
}

.leftsideeventdetails {
  padding: 40px;
}

.event-image-page {
  border-radius: 10px;
}

.title-event {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 28px;
  line-height: 36px;
}

.navbarsoloholder {
  background-color: var(--dark-bg);
  justify-content: center;
  width: 100%;
  display: flex;
}

.full-coach-list {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: wrap;
  justify-content: center;
  width: 100%;
  max-width: 1100px; 
  display: flex;
}

.full-coach-list.vertical {
  flex-flow: column;
  align-items: center;
}

.verantwoordelijke {
  border-radius: 50%;
  width: 140px;
}

.italictext {
  font-style: italic;
}

.basiclink {
  color: var(--dark-bg);
}

.gelica {
  font-family: gelica, sans-serif;
}

.undertitle-coach {
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 12px;
}

.undertitle-coach.incard {
  margin-bottom: 0;
  font-weight: 300;
  line-height: 18px;
}

.logo-kids-tennis {
  max-width: 200px;
}

@media screen and (min-width: 1280px) {
  .button-2 {
    font-size: 1.2vw;
  }

  .socialmediaholder {
    max-width: none;
  }

  .holdertitleandsocialmedialinks {
    max-width: 25vw;
  }

  .heading {
    font-size: 3vw;
    line-height: 3.5vw;
  }

  .phone-image {
    width: 16vw;
  }

  .holder-instagram-phone-and-buttons {
    width: 35vw;
  }
}

@media screen and (max-width: 991px) {
  .holdernavlinks {
    background-color: var(--white-bg);
    flex-flow: column;
    width: 200px;
    transition: width 0.4s;
    display: none;
    position: fixed;
    inset: 0% 0% 0% auto;
    z-index: 999;
  }

  .hamburger-icon {
    z-index: 100;
    justify-content: center;
    align-items: center;
    display: flex;
  }
  .hamburger {
    display: flex;
  }

  .holdernavlinks.startopen {
    display: flex;
    left: auto;
    right: 0;
  }

  .holdernavlinks.endopen {
    width: 100vw;
    display: flex;
  }

  .navlink {
    opacity: 0;
    color: var(--linesdark);
  }

  .navlink.close-nav {
    display: block;
    position: absolute;
    inset: 10px 10px auto auto;
  }

  .stackedimagesholder {
    height: 450px;
  }

  .secondstackedimage {
    width: 55%;
  }

  .breathing-header.centered {
    font-size: 26px;
  }

  .darkbox,
  .footersection {
    padding-left: 20px;
    padding-right: 20px;
  }

  .google-maps {
    align-self: auto;
    width: 50px;
    height: 50px;
  }

  .footercontentholder {
    justify-content: space-between;
  }

  .footerpart {
    padding: 10px;
  }

  .containcenter-2 {
    width: 90%;
  }

  .serve-gif {
    opacity: 0.1;
    object-fit: cover;
    width: 200px;
    height: 400px;
    display: block;
    position: absolute;
    inset: auto 0% 0 auto;
  }

  .logoball {
    width: 30px;
    display: block;
    position: absolute;
    inset: auto auto 380px -15px;
  }

  .logoball.spin {
    transform: rotateX(360deg) rotateY(0) rotateZ(360deg);
  }

  .headingonwhite {
    font-size: 32px;
    line-height: 40px;
  }

  .coach {
    min-width: 200px;
    min-height: 200px;
  }

  .partners-holder {
    height: 240px;
    margin-top: 0;
  }

  .box-partners {
    height: 210px;
    left: 5vw;
    right: 5vw;
  }

  .coachimageinslider {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}

@media screen and (max-width: 767px) {
  .quick-action-cards {
    flex-direction: column;
  }

  .quick-action-divider {
    width: 100%;
    height: 1px;
    align-self: auto;
  }

  .quick-action-card {
    padding: 10px 10px;
  }

  .body {
    font-size: 14px;
    line-height: 24px;
  }

  .holder-images {
    grid-template-columns: repeat(2, 1fr);
  }

  .waGrid {
    grid-template-columns: 1fr;
  }

  .twosidecontent {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .twosidecontent.phonereverse {
    flex-direction: column-reverse;
  }

  .twosidecontent.withstickyside {
    align-items: center;
    flex-direction: column-reverse;
  }

  .sidecontent,
  .sidecontent.centered.small {
    width: 100%;
  }

  .sidecontent.centered.sticking-on-large {
    position: static;
  }

  .sidecontent.sticky {
    position: static;
  }

  .sidecontent.bigger {
    width: 100%;
  }

  .sidecontent.invphone {
    display: none;
  }

  .breathing-header.centered {
    font-size: 18px;
    line-height: 28px;
  }

  .breathing-header.rightonlarge {
    text-align: center;
  }

  .holdercoachview {
    padding-right: 40px;
  }

  .coachview {
    width: 200px;
  }

  .aanbod-holder {
    flex-flow: column;
    align-items: flex-start;
  }

  .button {
    z-index: 10;
    min-width: 120px;
  }

  .footersection {
    padding: 20px 0;
  }

  .google-maps {
    width: 40px;
    height: 40px;
  }

  .holderlogofooter {
    width: 40%;
    height: 100px;
    top: -50px;
    left: 30%;
  }

  .footercontentholder {
    flex-flow: column;
    justify-content: center;
    padding-top: 60px;
  }

  .footerpart {
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .colouredcontainer {
    padding: 40px;
  }

  .socialmedialink {
    margin-top: 0;
    margin-bottom: 10px;
  }

  .socialmediaholder {
    flex-flow: column;
  }

  .holdertitleandsocialmedialinks {
    flex-flow: row;
    align-items: center;
    max-width: 100%;
  }

  .holdersocialhandles {
    margin-top: 0;
  }

  .holder-instagram-phone-and-buttons {
    justify-content: space-around;
    width: 100%;
    margin-top: 40px;
  }

  .filter-and-reset {
    background-color: #fff;
    justify-content: center;
    height: 40px;
    position: absolute;
    inset: 0% 0% auto;
  }

  .button-3.show-results {
    justify-content: center;
    width: 90%;
    display: flex;
  }

  .holder-button-show-results {
    background-color: #fff;
    justify-content: center;
    align-items: center;
    height: 60px;
    display: flex;
    position: fixed;
    inset: auto 0% 0%;
  }

  .filters-holder {
    z-index: 20;
    background-color: #fff;
    border-top: 1px solid #e0e0e0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    overflow: auto;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
  }

  .filters-holder.open {
    transform: translateX(0);
  }

  .holder-see-filter-results {
    display: flex;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    align-items: center;
    justify-content: center;
  }

  .go-back {
    justify-content: center;
    align-items: center;
    height: 100%;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 16px;
    display: flex;
    position: absolute;
    inset: 0% auto auto 15px;
  }

  .reset {
    align-items: center;
    height: 100%;
    display: flex;
    position: absolute;
    inset: 0% 20px auto auto;
  }

  .filterbutton {
    display: flex;
  }

  .holderfilterbtn {
    display: flex;
  }

  .holder-locations {
    flex-flow: column;
  }

  .containcenter-3 {
    width: 90%;
  }

  .headingonwhite {
    font-size: 26px;
    line-height: 32px;
  }

  .partners-holder {
    padding-top: 0;
  }

  .holdereventdetails {
    flex-flow: column;
  }

  .rightsideeventdetails {
    border-top: 1px solid var(--lineslight);
    border-left-style: none;
    width: 100%;
  }

  .invphone {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  .containcenter {
    width: 85%;
  }

  .holder-images {
    display: flex;
    flex-direction: column;
  }

  .image-in-list {
    width: 100%;
  }

  .coach.fullpage {
    width: 100%;
    min-height: 330px;
  }

  .containcenter.centeredonphone {
    flex-flow: column;
    align-items: center;
    display: flex;
  }

  .containcenter.withdark {
    width: 90%;
  }

  .section {
    max-width: 100%;
  }

  .sidecontent {
    padding: 0;
  }

  .sectiondark {
    max-width: 100%;
  }

  .aanbod-image-box {
    width: 100%;
  }

  .button {
    min-width: 100px;
  }

  .holderlogofooter {
    width: 50%;
    left: 25%;
  }

  .mapslink {
    text-align: left;
    width: 220px;
  }

  .mapslink.event {
    width: 100%;
  }

  .footerpart {
    text-align: center;
    align-items: center;
  }

  ._100-widthcenter.leftphone {
    align-items: flex-start;
  }

  .colouredcontainer {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
    align-items: flex-end;
    padding-left: 20px;
    padding-right: 20px;
  }

  .colouredcontainer.socials {
    align-items: center;
    width: 100%;
  }

  .holdertitleandsocialmedialinks {
    text-align: center;
    flex-flow: column;
  }

  .holder-phone {
    width: 70%;
  }

  .phone-image {
    width: 100%;
  }

  .holdersocialhandles {
    margin-top: 20px;
  }

  .holder-instagram-phone-and-buttons {
    flex-direction: row;
  }

  .event-holder {
    padding-bottom: 100vw;
    padding-left: 20px;
  }

  .event-im {
    width: 100%;
    height: 90vw;
    inset: auto 0% 0%;
  }

  .gradientimevent {
  background-image: linear-gradient(180deg, var(--white-bg), #fdfaf500 25%, #fdfaf500);
    height: 90vw;
    display: block;
    position: absolute;
    inset: auto 0% 0%;
  }
  
  .filterbutton {
    padding-left: 15px;
    padding-right: 15px;
  }

  .holderfilterbtn {
    width: 100%;
    margin-left: 0;
  }

  .holder-locations,
  .locationdiv {
    width: 100%;
  }

  .contentdetails-event {
    padding-left: 0;
  }

  .leftsideeventdetails {
    padding: 20px;
  }
}

@font-face {
  font-family: "Breathing";
  src: url("../fonts/Breathing-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
