/*
Main colors:
- 1e: #694f5a
- 2e: #9c3135
*/

/* Colors for 'De Eigenwijze Kikker */
:root {
  /* Greens */
  --c-dark-green: #184f2d; /* woodland shadow */
  --c-leaf-green: #3b8d46; /* fresh leaves */
  --c-mint-green: #e1edd3; /* morning mist */

  /* Browns */
  --c-bark-brown: #6f4d27;
  --c-dark-brown: #4e3417;

  /* Accents */
  --c-sky-blue: #a6d7e1;
  --c-crown-yellow: #f4d63c;
  --c-scarlet: #c92729;
  --c-gold: #d7a615;
}

/* +=+=+=+=+=+=+=+=+=+=+ */
/* RESET                 */
/* +=+=+=+=+=+=+=+=+=+=+ */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

input,
select {
  border-radius: 0;
  outline: none;
  color: #694f5a;
  background-color: white;
}
select {
  appearance: none;
  -webkit-appearance: none;
}

/* +=+=+=+=+=+=+=+=+=+=+ */
/* MAX WEBSITE WIDTH     */
/* +=+=+=+=+=+=+=+=+=+=+ */
nav,
main,
footer {
  max-width: 1600px;
  margin: 0 auto;
}
/* -----------------------> responsive: */
@media screen and (min-width: 1600px) {
  html,
  input,
  select {
    font-size: 16px !important;
  }
}
/* <----------------------- responsive */

/* +=+=+=+=+=+=+=+=+=+=+ */
/* GENERAL               */
/* +=+=+=+=+=+=+=+=+=+=+ */
*::selection {
  background-color: #694f5a;
  color: white;
}
html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  color: #694f5a;
}
body {
  box-sizing: border-box;
  font-family: ainslie-sans, sans-serif;
  font-weight: 600;
  font-style: normal;
}

.display-none {
  display: none !important;
}
.display-block {
  display: block !important;
}
.display-flex-center-center {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}
.align-items-flex-end {
  align-items: flex-end !important;
}

.visibility-hidden {
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease;
}

.hide-on-mobile {
  display: inherit !important;
}
.show-on-mobile {
  display: none !important;
}
@media screen and (max-width: 950px) {
  .hide-on-mobile {
    display: none !important;
  }
  .show-on-mobile {
    display: inherit !important;
  }
  .nav-row.show-on-mobile {
    display: flex !important;
  }
  .hide-on-tablet-table {
    display: none !important;
  }
}
@media screen and (max-width: 500px) {
  .hide-on-mobile-table {
    display: none !important;
  }
}

.hide-on-tablet {
  display: inherit !important;
}
.show-on-tablet {
  display: none !important;
}
@media screen and (max-width: 1100px) {
  .hide-on-tablet {
    display: none !important;
  }
  .show-on-tablet {
    display: inherit !important;
  }
}

.user-drag-none {
  user-drag: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
}

.width-100 {
  width: 100% !important;
}
.margin-left-5 {
  margin-left: 5px !important;
}

.cursor-default {
  cursor: default !important;
}
.cursor-pointer:hover {
  cursor: pointer;
}

.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 25px;
}
.sticky-bottom {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0px;
}
.fixed-bottm {
  position: fixed;
  bottom: 0px;
  width: 100%;
}

a {
  color: #694f5a;
  text-decoration: none;
  outline: none;
}
a:hover:not(.cta-button-2) {
  color: #694f5a;
}
a.a-no-hover:hover {
  color: #694f5a;
  cursor: default;
}
.anchor-links a {
  margin: 0px 5px;
  text-transform: lowercase;
}
a.colored-and-underlined,
.a-colored-and-underlined a {
  color: #694f5a;
  text-decoration: underline;
}

hr {
  width: 100%;
  height: 1px;
  border: none;
  border-top: 2px solid #f9b721;
}
.hr-separator {
  display: flex;
  align-items: center;
  margin: 10px 0;
}
.hr-separator::before,
.hr-separator::after {
  content: "";
  width: 100%;
  border-top: 2px solid #694f5a;
}
.hr-separator::before {
  margin-right: 10px;
}
.hr-separator::after {
  margin-left: 10px;
}

.tag {
  display: inline-block;
  margin: 0vw 1vw 1vw 0vw;
  padding: 0.5vw 1vw;
  border-radius: 999px;
  background-color: #f9b721;
  color: #694f5a;
}
.tag-warning {
  background-color: #be1522;
  color: white;
}
.tag.out-of-stock {
  pointer-events: none;
  opacity: 0.66;
  text-decoration: line-through;
  user-select: none;
}
/* -----------------------> responsive: */
@media screen and (max-width: 1100px) {
  .tag {
    margin: 0vw 2vw 2vw 0vw;
    padding: 1vw 2vw;
  }
}
@media screen and (max-width: 800px) {
  .tag {
    margin: 0vw 4vw 4vw 0vw;
    padding: 2vw 4vw;
  }
}
@media screen and (min-width: 1600px) {
  .tag {
    margin: 0px 16px 16px 0px;
    padding: 8px 16px;
  }
}
/* <----------------------- responsive */

img {
  width: 100%;
}
img.black-border {
  border: 2px solid #694f5a !important;
}

.circle-image {
  display: block;
  margin: 0 auto;
  margin-top: 2vw;
  width: 20%;
  aspect-ratio: 1 / 1;
  border-radius: 100%;
  object-fit: cover;
  border: 2px solid #694f5a !important;
}
.circle-images-in-a-row {
  display: flex;
  justify-content: center;
}
.circle-images-in-a-row a {
  width: 10%;
  margin-left: 10px;
  margin-right: 10px;
}
.circle-images-in-a-row a .circle-image {
  width: 100%;
}
/* -----------------------> responsive: */
@media screen and (max-width: 1100px) {
  .circle-image {
    width: 40%;
  }
}
@media screen and (max-width: 800px) {
  .circle-image {
    width: 55%;
  }
}
@media screen and (min-width: 1600px) {
  .circle-image {
    margin-top: 32px;
  }
}
/* <----------------------- responsive */

/* +=+=+=+=+=+=+=+=+=+=+ */
/* VIDEO (outside TINY)  */
/* +=+=+=+=+=+=+=+=+=+=+ */

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0; /* Remove default iframe border */
}

/* +=+=+=+=+=+=+=+=+=+=+ */
/* KIKKER ANNIVERSARY    */
/* +=+=+=+=+=+=+=+=+=+=+ */

.kikker-anniversary-section ::selection {
  color: var(--c-crown-yellow);
  background-color: var(--c-dark-green);
}

.kikker-anniversary-section {
  margin-top: -2px;
  margin-bottom: 4vw;
  background: var(--c-mint-green);
  background-image: url("https://ams3.digitaloceanspaces.com/hildevanbulck/website/content/de-eigenwijze-kikker/de-eigenwijze-kikker-background.jpg");
  background-size: cover;
  background-position: center;
  border-top: 2px solid var(--c-dark-green);
  border-bottom: 0.25vw solid var(--c-dark-green);
  color: #ffffff;
  padding: 0 15% 5vw 15%;
  text-align: center;
  position: relative;
  z-index: 1;
}

.kikker-anniversary-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(24, 79, 45, 0.3);
  z-index: -1;
}

.kikker-anniversary-section h1,
.kikker-anniversary-section h2.tagline {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.kikker-anniversary-section .kikker-image-title {
  width: 100%;
  max-width: 600px;
  margin: 100px 0;
}

.kikker-anniversary-section .video-container {
  margin-left: auto;
  margin-right: auto;
  overflow: visible;
}

.kikker-anniversary-section .video-container::before {
  content: "";
  position: absolute;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  top: -10px;
  left: -10px;
  right: 0;
  bottom: 0;
  background-color: var(--c-gold);
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.kikker-anniversary-section .video-container iframe {
  border-radius: 6px;
}

.kikker-anniversary-text {
  position: relative; /* Preventing the text to fall behind the shadow of the video */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin-top: 50px;
  color: #ffffff;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.kikker-anniversary-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 10px;
}

.kikker-anniversary-links .anniversary-link {
  display: inline-block;
  color: var(--c-crown-yellow);
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  font-weight: 600;
  transition: color 0.3s ease, border-color 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.kikker-anniversary-links .anniversary-link:hover {
  color: var(--c-crown-yellow);
  border-color: var(--c-dark-green);
}

/* Design 1: List Layout */
.kikker-purchase-options {
  position: relative; /* Keep it in flow but allow z-index if needed */
  margin-top: 40px;
  padding: 25px;
  background-color: rgba(
    255,
    255,
    255,
    0.85
  ); /* Semi-transparent white background */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.kikker-purchase-options h3 {
  color: var(--c-dark-green);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--c-leaf-green);
  font-size: 1.4em; /* Slightly larger heading */
  text-shadow: none; /* Remove text shadow from section */
}

.kikker-purchase-options ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.kikker-purchase-options li {
  margin-bottom: 12px;
}

.kikker-purchase-options li:last-child {
  margin-bottom: 0;
}

.kikker-purchase-options li a {
  display: block; /* Make the whole area clickable */
  padding: 10px 15px;
  color: var(--c-dark-brown);
  background-color: rgba(225, 237, 211, 0.7); /* Light mint green background */
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: 1px solid var(--c-leaf-green);
  text-shadow: none; /* Remove text shadow from section */
}

.kikker-purchase-options li a:hover {
  background-color: var(--c-leaf-green);
  color: white;
}

.kikker-purchase-options li a strong {
  color: var(--c-dark-green); /* Make vendor name stand out */
}

.kikker-purchase-options li a:hover strong {
  color: white; /* Adjust vendor name color on hover */
}

/* Design 3: Horizontal Layout Styles */
.kikker-purchase-options-horizontal {
  position: relative;
  margin-top: 40px;
  padding: 25px;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  text-align: center; /* Center heading */
}

.kikker-purchase-options-horizontal h3 {
  color: var(--c-dark-green);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--c-leaf-green);
  font-size: 1.4em;
  text-shadow: none;
  display: inline-block;
}

.purchase-horizontal-container {
  display: flex;
  flex-wrap: wrap; /* Allow items to wrap on smaller screens */
  justify-content: center; /* Center items horizontally */
  gap: 10px; /* Space between items */
}

.purchase-item-horizontal {
  display: flex;
  flex-direction: column; /* Stack vendor/format/price vertically */
  align-items: center; /* Center text within the item */
  padding: 12px 18px;
  background-color: rgba(225, 237, 211, 0.7);
  border: 1px solid var(--c-leaf-green);
  border-radius: 5px;
  color: var(--c-dark-brown);
  text-decoration: none;
  text-shadow: none;
  transition: background-color 0.3s ease, transform 0.2s ease,
    box-shadow 0.3s ease;
  flex-grow: 1; /* Allow items to grow */
  min-width: 150px; /* Minimum width before wrapping */
  text-align: center;
}

.purchase-item-horizontal:hover {
  background-color: var(--c-leaf-green);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.purchase-item-horizontal .vendor {
  font-weight: 900;
  color: var(--c-dark-green);
  font-size: 1.05em;
  margin-bottom: 4px;
}

.purchase-item-horizontal .format {
  font-size: 0.9em;
  margin-bottom: 6px;
}

.purchase-item-horizontal .price {
  font-weight: 600;
  font-size: 1em;
  color: var(--c-dark-green);
}

.purchase-item-horizontal:hover .vendor,
.purchase-item-horizontal:hover .format,
.purchase-item-horizontal:hover .price {
  color: white;
}

/* Design 4: Grouped by Format Styles */
.kikker-purchase-options-grouped {
  position: relative;
  margin-top: 40px;
  padding: 25px;
}

.kikker-purchase-options-grouped h3 {
  color: #ffffff;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-size: 1.4em;
  font-weight: 600;
  text-align: center;
  display: inline-block; /* Correct centering */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.purchase-groups-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px; /* Space between Paperback and E-book groups */
}

.purchase-group {
  background-color: rgba(225, 237, 211, 0.95); /* Very light mint */
  padding: 15px;
  border-radius: 4px;
  border: 2px solid var(--c-dark-green);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.purchase-group h4 {
  color: var(--c-dark-green);
  font-size: 1.2em;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--c-leaf-green);
  text-align: center;
  display: block; /* Ensure h4 takes full width */
}

.purchase-group-items {
  display: flex;
  flex-wrap: wrap; /* Allow vendor links to wrap */
  gap: 10px; /* Space between vendor links */
  justify-content: flex-start; /* Align items to the start */
}

.purchase-item-grouped {
  display: inline-block;
  padding: 8px 14px;
  background-color: var(--c-dark-green);
  border-radius: 4px;
  color: #ffffff;
  text-decoration: none;
  text-shadow: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-weight: 600;
}

.purchase-item-grouped:hover {
  color: var(--c-crown-yellow) !important;
}

.purchase-item-grouped .shipping-note {
  font-size: 0.85em;
  opacity: 0.8;
}

/* Responsive adjustments for grouped layout if needed */
@media screen and (max-width: 1100px) {
  .purchase-groups-container {
    flex-direction: column;
  }
}
@media screen and (max-width: 950px) {
  .purchase-group-items {
    justify-content: center; /* Center items on small screens */
  }
  .purchase-item-grouped {
    flex-grow: 1; /* Allow items to take more space */
    text-align: center;
  }
}

.kikker-sitting {
  position: absolute;
  bottom: 0;
  width: 15vw;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

.kikker-sitting.kikker-1 {
  left: 2%;
  transform: translateY(20%);
}

.kikker-sitting.kikker-2 {
  right: 2%;
  transform: translateY(19%) scaleX(-1);
}

@media screen and (max-width: 950px) {
  .kikker-anniversary-section {
    padding: 0 5% 22vw 5%;
    border-bottom: 2px solid var(--c-dark-green);
  }
  .kikker-sitting {
    width: 25vw;
  }
}

/* +=+=+=+=+=+=+=+=+=+=+ */
/* TYPOGRAPHY            */
/* +=+=+=+=+=+=+=+=+=+=+ */
html,
input,
select {
  font-size: 1vw;
}
@media screen and (max-width: 1350px) {
  html,
  input,
  select {
    font-size: 1.3vw;
  }
}
@media screen and (max-width: 1100px) {
  html,
  input,
  select {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 950px) {
  html,
  input,
  select {
    font-size: 2vw;
  }
}
@media screen and (max-width: 800px) {
  html,
  input,
  select {
    font-size: 2.4vw;
  }
}
@media screen and (max-width: 650px) {
  html,
  input,
  select {
    font-size: 2.8vw;
  }
}
@media screen and (max-width: 500px) {
  html,
  input,
  select {
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 350px) {
  html,
  input,
  select {
    font-size: 3.6vw;
  }
}
@media screen and (max-width: 200px) {
  html,
  input,
  select {
    font-size: 4vw;
  }
}
p,
ul,
ol {
  font-size: 110%;
}
input,
select {
  font-size: 80%;
}

html {
  line-height: 1.5;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
}

h1 {
  font-weight: 600;
  font-size: 150%;
}
h1.h1-300 {
  font-size: 300%;
}
h1.h1-200 {
  font-size: 200%;
}
h2 {
  font-weight: 400;
  font-size: 130%;
}
h3 {
  display: inline-block;
  font-weight: 400;
}
h4 {
  display: inline-block;
  font-weight: 400;
}
h5 {
  font-weight: 400;
}
h6 {
  font-weight: 400;
  font-size: 90%;
}

.text-main-color {
  color: #694f5a;
}
.text-left {
  text-align: left !important;
}
.text-center {
  text-align: center !important;
}
.text-justify {
  text-align: justify !important;
}

.align-items-flex-start {
  align-items: flex-start !important;
}

.emphasize {
  border-bottom: 2px solid #694f5a;
}
.emphasize-filled {
  padding: 5px 10px;
  background-color: #694f5a;
  color: white;
  border-radius: 3px;
}
.emphasize-filled-second {
  padding: 5px 10px;
  background-color: #f9b721;
  color: #694f5a;
  border-radius: 3px;
}
.emphasize-transparent {
  border-bottom: 2px solid transparent;
}
.emphasize-bold {
  border-bottom: 4px solid #694f5a;
}

.font-size-80 {
  font-size: 80%;
}
.font-size-160 {
  font-size: 160%;
}
.font-size-200 {
  font-size: 200%;
}

.font-weight-400 {
  font-weight: 400;
}
.font-weight-strong-to-normal strong {
  font-weight: normal;
}

.black-text-color {
  color: #694f5a !important;
}

.two-columns {
  display: flex;
  text-align: left;
}
.two-columns img {
  max-width: 20vw;
  height: 100%;
  margin-left: 2vw;
}
/* -----------------------> responsive: */
@media screen and (max-width: 1100px) {
  .two-columns {
    flex-direction: column-reverse;
  }
  .two-columns img {
    max-width: initial;
    width: 100%;
    margin: 0 0 8vw 0;
  }
}
@media screen and (min-width: 1600px) {
  .two-columns img {
    max-width: 320px;
    margin-left: 32px;
  }
}
/* <----------------------- responsive */

/* -----------------------> responsive: */
@media screen and (max-width: 1100px) {
  .white-space-pre-wrap-mobile-and-tablet {
    white-space: pre-wrap;
  }
}
/* <----------------------- responsive */

/* +=+=+=+=+=+=+=+=+=+=+ */
/* BUTTONS               */
/* +=+=+=+=+=+=+=+=+=+=+ */
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  margin: 0;
  font: inherit;
  cursor: pointer;
}
button:disabled {
  opacity: 0.1;
  cursor: default;
}

.cta-button-2 {
  position: relative;
  margin-top: 20px;
  text-align: center;
  color: #694f5a;
  border: 2px solid #694f5a;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 3px;
}

.back-to-top .cta-button-2 {
  display: flex;
  align-content: center;
  justify-content: center;
  border-radius: 100%;
}

.cta-button-inverted,
.cta-button-2:hover:not(.disabled) {
  color: white;
  border: 2px solid #694f5a;
  background-color: #694f5a;
}

.cta-button-invisible {
  border: none;
}
.cta-button-invisible:hover {
  border: none !important;
  background: none !important;
}

.cta-button-2.disabled {
  opacity: 0.1;
  cursor: default;
  pointer-events: none;
}

.all-in-one-row-buttons {
  display: flex;
  justify-content: center;
  align-items: baseline;
  width: 100%;
  white-space: nowrap;
  gap: 10px;
}

/* -----------------------> responsive: */
.cta-button-2 {
  padding: 0.75vw 2vw;
}
.back-to-top .cta-button-2 {
  width: 1vw;
  padding: 1vw;
}

.all-in-one-row-buttons-margin {
  margin: 0 0.5vw;
}
@media screen and (max-width: 1100px) {
  .cta-button-2 {
    padding: 1.5vw 4vw;
  }
  .back-to-top .cta-button-2 {
    width: 2vw;
    padding: 2vw;
  }

  .all-in-one-row-buttons .cta-button-2 {
    width: -webkit-fill-available;
  }

  .all-in-one-row-buttons {
    flex-direction: column;
  }
  .all-in-one-row-buttons-margin {
    margin: 1vw 0;
  }
}
@media screen and (max-width: 800px) {
  .cta-button-2 {
    padding: 3vw 6vw;
  }
  .back-to-top .cta-button-2 {
    width: 3vw;
    padding: 3vw;
  }

  .all-in-one-row-buttons-margin {
    margin: 2vw 0;
  }
}
@media screen and (min-width: 1600px) {
  .cta-button-2 {
    padding: 12px 32px;
  }
  .back-to-top .cta-button-2 {
    width: 16px;
    padding: 16px;
  }
  .all-in-one-row-buttons-margin {
    margin: 0px 8px;
  }
}
/* <----------------------- responsive */

/* +=+=+=+=+=+=+=+=+=+=+ */
/* HONING                */
/* +=+=+=+=+=+=+=+=+=+=+ */
.honing {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  opacity: 0;
}
/* --- */

/* +=+=+=+=+=+=+=+=+=+=+ */
/* ANNOUNCEMENT BAR      */
/* +=+=+=+=+=+=+=+=+=+=+ */
.announcement-bar {
  position: sticky;
  top: 0;
  z-index: 2; /* don't make it too high because of TinyMCE-edit-box */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  overflow: hidden;

  background-color: #be1522; /* Default */
  background: linear-gradient(
    to right,
    #f9b721,
    #ff9500,
    #f9b721
  ); /* Zomermixweek */
  /* background-color: #be1522; Kerst */
  text-align: center;
}
.announcement-bar p {
  position: relative;
  z-index: 5;
  font-weight: bold; /* Zomermixweek */
  text-shadow: 0 0 8px #ff9500, 0 0 8px #ff9500; /* Zomermixweek */
}
.announcement-bar a {
  color: #694f5a; /* Default */
  color: #694f5a; /* Zomermixweek */
  /* color: white; Kerst */
}
.announcement-bar a:hover {
  color: #694f5a;
  text-decoration: underline; /* Default */
  color: #694f5a; /* Zomermixweek */
  /* color: white; Kerst */
}

/* -----------------------> responsive: */
.announcement-bar {
  padding: 0.5vw 2%;
  letter-spacing: 0.025vw;
}
@media screen and (max-width: 1100px) {
  .announcement-bar {
    padding: 1.5vw 2%;
    letter-spacing: 0.05vw;
  }
}
@media screen and (max-width: 800px) {
  .announcement-bar {
    padding: 3vw 2%;
    letter-spacing: 0.1vw;
  }
}
@media screen and (min-width: 1600px) {
  .announcement-bar {
    padding: 8px 2%;
    letter-spacing: 0.4px;
  }
}
/* <----------------------- responsive */
/* Kerst */
/* Sneeuwvlokken */
.snowflake {
  position: absolute;
  top: -20px;
  color: white;
  opacity: 0.8;
  animation: snowFall 0.5s linear infinite;
}
/* Gecombineerde animatie voor vallen en driften */
@keyframes snowFall {
  0% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(100px) translateX(-10px);
  }
  100% {
    transform: translateY(200px) translateX(-13px);
  }
}
/* Willekeurige instellingen voor sneeuwvlokken */
.snowflake:nth-child(1) {
  left: 2%;
  animation-duration: 3s;
  animation-delay: 0.5s;
}

.snowflake:nth-child(2) {
  left: 8%;
  animation-duration: 4s;
  animation-delay: 1.2s;
}

.snowflake:nth-child(3) {
  left: 14%;
  animation-duration: 5s;
  animation-delay: 0.8s;
}

.snowflake:nth-child(4) {
  left: 20%;
  animation-duration: 3.5s;
  animation-delay: 1.6s;
}

.snowflake:nth-child(5) {
  left: 26%;
  animation-duration: 4.5s;
  animation-delay: 0.3s;
}

.snowflake:nth-child(6) {
  left: 32%;
  animation-duration: 3.2s;
  animation-delay: 1s;
}

.snowflake:nth-child(7) {
  left: 38%;
  animation-duration: 4.8s;
  animation-delay: 1.4s;
}

.snowflake:nth-child(8) {
  left: 44%;
  animation-duration: 3.7s;
  animation-delay: 0.7s;
}

.snowflake:nth-child(9) {
  left: 50%;
  animation-duration: 5s;
  animation-delay: 1.8s;
}

.snowflake:nth-child(10) {
  left: 56%;
  animation-duration: 3.5s;
  animation-delay: 0.4s;
}

.snowflake:nth-child(11) {
  left: 62%;
  animation-duration: 4.2s;
  animation-delay: 1.3s;
}

.snowflake:nth-child(12) {
  left: 68%;
  animation-duration: 3.8s;
  animation-delay: 0.9s;
}

.snowflake:nth-child(13) {
  left: 74%;
  animation-duration: 4.9s;
  animation-delay: 1.5s;
}

.snowflake:nth-child(14) {
  left: 80%;
  animation-duration: 3.4s;
  animation-delay: 0.6s;
}

.snowflake:nth-child(15) {
  left: 86%;
  animation-duration: 5.2s;
  animation-delay: 1.1s;
}

.snowflake:nth-child(16) {
  left: 92%;
  animation-duration: 3.1s;
  animation-delay: 0.2s;
}

.snowflake:nth-child(17) {
  left: 96%;
  animation-duration: 4.6s;
  animation-delay: 0.8s;
}

.snowflake:nth-child(18) {
  left: 70%;
  animation-duration: 3.9s;
  animation-delay: 1.7s;
}

.snowflake:nth-child(19) {
  left: 15%;
  animation-duration: 4.4s;
  animation-delay: 0.5s;
}

.snowflake:nth-child(20) {
  left: 10%;
  animation-duration: 3.6s;
  animation-delay: 1.2s;
}

/* Zomermixweek - Animated Flowers */
.flower-container {
  position: absolute;
  bottom: 0;
  left: var(--position);
  height: 30px;
  width: 40px;
  z-index: 1;
  animation: appearDisappear 12s ease-in-out infinite,
    swayFlower var(--sway-speed) ease-in-out infinite alternate;
  animation-delay: var(--delay);
  opacity: 0;

  transform: rotate(var(--lean-angle));
}

.stem {
  position: absolute;
  width: 3px;
  background-color: #4caf50;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 0;
  border-radius: 2px;
  animation: growStem 12s ease-in-out infinite;
  animation-delay: var(--delay);
}

.flower {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scale(0);
  animation: bloomFlower 12s ease-in-out infinite;
  animation-delay: calc(var(--delay) + 1s);
  transform-origin: center bottom;
}

.flower-center {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #ff8800;
  border-radius: 50%;
  z-index: 2;
  top: -6px;
  left: -6px;
}

.petal {
  position: absolute;
  width: 20px;
  height: 10px;
  background-color: var(
    --petal-color,
    #ff69b4
  ); /* Use the custom color property */
  border-radius: 50% 50% 0 0;
  top: 0;
  left: 0;
  transform-origin: 0 0;
  transform: rotate(var(--rotate));
  z-index: 1;
  opacity: 0.9;
}

@keyframes appearDisappear {
  0%,
  100% {
    opacity: 0;
  }
  10%,
  90% {
    opacity: 0.5;
  }
}

@keyframes growStem {
  0%,
  100% {
    height: 0;
  }
  15%,
  85% {
    height: 20px;
  }
}

@keyframes bloomFlower {
  0%,
  12%,
  88%,
  100% {
    transform: translateX(-50%) scale(0);
  }
  25%,
  75% {
    transform: translateX(-50%) scale(1);
  }
}

@keyframes swayFlower {
  0%,
  100% {
    transform: rotate(var(--lean-angle));
  }
  50% {
    transform: rotate(
      calc(var(--lean-angle) * -1deg + var(--sway-direction) * 5deg)
    );
  }
}
/* --- */

/* +=+=+=+=+=+=+=+=+=+=+ */
/* NAVIGATION            */
/* +=+=+=+=+=+=+=+=+=+=+ */
nav {
  padding: 0 5%;
  white-space: nowrap;
}
nav a {
  color: #694f5a;
}
nav a:hover {
  color: #694f5a;
}
.nav-row {
  display: flex;
}
.nav-row-1 {
  justify-content: space-between;
  border-bottom: 2px solid #f9b721;
}
.nav-language-profile {
  display: flex;
  align-items: center;
}
.nav-language-profile div {
  margin-left: 1vw;
}
.nav-dropdown-parent {
  position: relative;
  display: inline-block;
  cursor: default;
}
.nav-dropdown {
  z-index: 2;
  display: none;
  position: absolute;
  top: 100%;
  left: 0px;
  margin-left: 0 !important;
  border: 2px solid #f9b721;
  padding: 0.5vw;
  background-color: white;
  text-align: left;
}
.nav-dropdown a {
  padding: 10px;
}
.nav-dropdown-parent:hover .nav-dropdown {
  display: flex;
  flex-direction: column;
}
.nav-row-2 {
  justify-content: space-between;
  border-bottom: 2px solid #f9b721;
}
.nav-separator {
  height: 100%;
  border-right: 2px solid #f9b721;
}
/* -----------------------> responsive: */
.nav-row {
  padding: 1.5vw 2%;
  letter-spacing: 0.025vw;
}
@media screen and (max-width: 1100px) {
  .nav-row {
    padding: 3vw 2%;
    letter-spacing: 0.05vw;
  }
  .nav-language-profile div {
    margin-left: 2vw;
  }
}
@media screen and (max-width: 950px) {
  .nav-row {
    padding: 6vw 2%;
    letter-spacing: 0.1vw;
  }
  .nav-row-1.show-on-mobile {
    justify-content: space-between;
  }
  .nav-row-1 {
    justify-content: center;
  }
  .nav-language-profile {
    justify-content: center;
  }
  .nav-language-profile div {
    margin-left: 4vw;
  }
  .nav-language-profile div:first-of-type {
    margin-left: 0;
  }
  .nav-row-2 {
    justify-content: space-between;
  }
  .nav-row-2 div:first-of-type {
    margin-left: 0;
  }
  .nav-row-2 div:last-of-type {
    margin-right: 0;
  }
}
@media screen and (min-width: 1600px) {
  .nav-row {
    padding: 24px 2%;
    letter-spacing: 0.4px;
  }
  .nav-language-profile div {
    margin-left: 16px;
  }
  .nav-dropdown {
    padding: 8px;
  }
}
/* <----------------------- responsive */
/* --- */

/* +=+=+=+=+=+=+=+=+=+=+ */
/* FULL WIDTH IMAGES     */
/* +=+=+=+=+=+=+=+=+=+=+ */
.full-width-images {
  height: 33vw;
  max-height: 528px;
  border: 2px solid #694f5a;
  background-color: #eeeeee;
  background-size: cover;
  background-position: center;
}

/* +=+=+=+=+=+=+=+=+=+=+ */
/* FOOTER                */
/* +=+=+=+=+=+=+=+=+=+=+ */
footer {
  padding: 0 5%;
  margin-top: 3vw;
}
footer a {
  color: #694f5a;
}
footer a:hover {
  color: #694f5a;
}
.footer-row {
  display: block;
  text-align: center;
  padding: 1.5vw 2%;
  letter-spacing: 0.025vw;
}
.footer-row-1 {
  border-top: 2px solid #f9b721;
}
.footer-row-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0 !important;
  margin-top: -0.5vw;
  font-size: larger;
}
.footer-row-2 a {
  margin: 0 0.5vw;
}
/* -----------------------> responsive: */
@media screen and (max-width: 1100px) {
  footer {
    margin-top: 6vw;
  }
  .footer-row {
    padding: 3vw 2%;
    letter-spacing: 0.05vw;
  }
  .footer-row-2 {
    margin-top: -1vw;
  }
  .footer-row-2 a {
    margin: 0 1vw;
  }
}
@media screen and (max-width: 800px) {
  footer {
    margin-top: 12vw;
  }
  .footer-row {
    padding: 6vw 2%;
    letter-spacing: 0.1vw;
  }
  .footer-row-2 {
    margin-top: -2vw;
  }
  .footer-row-2 a {
    margin: 0 2vw;
  }
}
@media screen and (min-width: 1600px) {
  footer {
    margin-top: 48px;
  }
  .footer-row {
    padding: 24px 2%;
    letter-spacing: 0.4px;
  }
  .footer-row-2 {
    margin-top: -8px;
  }
  .footer-row-2 a {
    margin: 0 8px;
  }
}
/* <----------------------- responsive */

/* +=+=+=+=+=+=+=+=+=+=+ */
/* MOBILE STICKY ACTIONS */
/* +=+=+=+=+=+=+=+=+=+=+ */
.mobile-sticky-actions {
  z-index: 999;
  position: fixed;
  bottom: 0;
  right: 0;
  margin: 3vw;
}
.mobile-sticky-actions .cta-button-2 {
  box-shadow: 10px 10px 50px 0px rgba(0, 0, 0, 0.075);
}
/* -----------------------> responsive: */
@media screen and (max-width: 800px) {
  mobile-sticky-actions {
    margin: 6vw;
  }
}
@media screen and (min-width: 1600px) {
  .mobile-sticky-actions {
    margin: 48px;
  }
}
/* <----------------------- responsive */

/* +=+=+=+=+=+=+=+=+=+=+ */
/* HVB 2                 */
/* +=+=+=+=+=+=+=+=+=+=+ */
.hvb-wrapper-2 {
  position: relative;
  z-index: 1;
  height: 66vh;
  min-height: 700px;
  border: 2px solid #694f5a;
  background-size: cover;
  background-position: center;
}

/* +=+=+=+=+=+=+=+=+=+=+ */
/* HVB                   */
/* +=+=+=+=+=+=+=+=+=+=+ */
.hvb-wrapper {
  position: relative;
  z-index: 1;
  height: 66vh;
  min-height: 700px;
  background: black;
  color: white;
  border: 2px solid black;
}
.hvb-background {
  margin-left: 80px;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
}

.hvb {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: 600px;
}
.hvb h1 {
  font-size: 48px;
}
.hvb a {
  display: inline-block;
  margin-bottom: 64px;
  padding-bottom: 2px;
  font-size: 16px;
  color: white;
  border-bottom: 3px solid white;
}
.hvb a:hover {
  color: white;
}
.hvb h2 {
  font-size: 32px;
  margin-bottom: 16px;
}
.hvb .tag {
  font-size: 16px;
  background-color: unset;
  border: 3px solid white;
}
/* -----------------------> responsive: */
@media screen and (max-width: 1425px) {
  .hvb {
    max-width: 55vw;
  }
}
@media screen and (max-width: 1200px) {
  .hvb {
    max-width: 45vw;
  }
}
@media screen and (max-width: 1150px) {
  .hvb {
    max-width: 40vw;
  }
}
@media screen and (max-width: 1000px) {
  .hvb-wrapper {
    height: 950px;
    overflow: hidden;
  }
  .hvb {
    height: auto;
    max-width: 100%;
    padding: 5vw 0;
    margin-top: -30vw;
  }
  .hvb-background {
    margin-left: 0;
    padding: 0 5vw;
    padding-top: 30vw;
  }
}
@media screen and (max-width: 650px) {
  .hvb {
    margin-top: -10vw;
  }
  .hvb-background {
    padding-top: 10vw;
  }
}
@media screen and (max-width: 500px) {
  .hvb-wrapper {
    height: 900px;
  }
  .hvb {
    margin-top: 0;
  }
  .hvb-background {
    padding-top: 0;
  }
}
@media screen and (max-width: 400px) {
  .hvb-wrapper {
    height: 800px;
  }
  .hvb h1 {
    font-size: 40px;
  }
  .hvb h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 300px) {
  .hvb-wrapper {
    height: 900px;
  }
}
/* <----------------------- responsive */

/* +=+=+=+=+=+=+=+=+=+=+ */
/* THE EXPERIENCES       */
/* +=+=+=+=+=+=+=+=+=+=+ */
.the-experiences {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.experience {
  display: flex;
  align-items: center;
  padding: 0 5vw;
}
.experience-ltr {
  flex-direction: row-reverse;
}
.experience-image {
  position: relative;
  margin-right: 5vw;
}
.experience-ltr .experience-image {
  margin-right: 0;
  margin-left: 2.5vw;
}
.experience-image img {
  width: 100%;
  border-radius: 100%;
  border: 2px solid #694f5a;
}
.experience-content h1 {
  font-size: 300%;
}

#experience0 .experience-image {
  width: 45%;
}
#experience0 .experience-content {
  width: 55%;
}
#experience1 {
  margin-top: -5vw;
}
#experience1 .experience-image {
  width: 45%;
}
#experience1 .experience-content {
  width: 50%;
}
#experience2 {
  margin-top: -5vw;
}
#experience2 .experience-image {
  width: 45%;
}
#experience2 .experience-content {
  width: 55%;
}
#experience3 {
  margin-top: -5vw;
}
#experience3 .experience-image {
  width: 85%;
}
#experience4 {
  margin-top: -5vw;
}
#experience4 .experience-image {
  width: 85%;
}

.experience-background-circle {
  position: absolute;
  z-index: -1;
  border-radius: 100%;
  border: 2px solid white;
  border-left: 2px solid #694f5a;
}
#experience2 .experience-background-circle {
  top: -13vw;
  right: -8vw;
  height: 42vw;
  width: 18vw;
  transform: rotate(-33deg);
}
#experience4 .experience-background-circle {
  top: -22vw;
  left: 2vw;
  height: 42vw;
  width: 18vw;
  transform: rotate(-120deg);
}

/* -----------------------> responsive: */
@media screen and (min-width: 1351px) {
  #experience2 .experience-background-circle {
    animation: rotateCircleExperience2 25s ease-in-out infinite alternate;
  }
  #experience4 .experience-background-circle {
    animation: rotateCircleExperience4 25s ease-in-out infinite alternate;
  }
}
@media screen and (max-width: 1350px) {
  #experience1,
  #experience2,
  #experience3,
  #experience4 {
    margin-top: 4vw;
  }
}
@media screen and (max-width: 1100px) {
  .the-experiences {
    margin-top: 0;
  }
  .experience,
  .experience-ltr {
    flex-direction: column;
    padding: 0;
    text-align: center;
  }
  .experience-content {
    width: unset !important;
    margin: 5vw !important;
  }
  .experience-image {
    margin: 0 !important;
    width: 45% !important;
  }
  #experience2 .experience-background-circle,
  #experience4 .experience-background-circle {
    display: none;
  }
}
@media screen and (min-width: 1600px) {
  .experience {
    padding: 0 80px;
  }
  .experience-image {
    margin-right: 80px;
  }
  .experience-ltr .experience-image {
    margin-left: 40px;
  }
  .experience-content h1 {
    font-size: 48px;
  }

  #experience1,
  #experience2,
  #experience3,
  #experience4 {
    margin-top: -80px;
  }

  #experience2 .experience-background-circle {
    top: -208px;
    right: -128px;
    height: 672px;
    width: 288px;
  }
  #experience4 .experience-background-circle {
    top: -352px;
    left: -32px;
    height: 672px;
    width: 288px;
  }
}
/* <----------------------- responsive */
@keyframes rotateCircleExperience2 {
  from {
    transform: rotate(-33deg);
  }
  to {
    transform: rotate(-23deg);
  }
}
@keyframes rotateCircleExperience4 {
  from {
    transform: rotate(-120deg);
  }
  to {
    transform: rotate(-110deg);
  }
}

/* +=+=+=+=+=+=+=+=+=+=+ */
/* QUOTE                 */
/* +=+=+=+=+=+=+=+=+=+=+ */
.quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.quote-no-bottom-margin {
  margin-bottom: 0 !important;
}
.quote-no-left-right-margin {
  margin-left: 5vw !important;
  margin-right: 5vw !important;
}
/* -----------------------> responsive: */
.quote {
  margin: 5vw 20vw;
}
.quote-compact {
  margin: 2vw 20vw;
}
.quote-less-top-margin {
  margin-top: 3vw;
}
.quote-less-bottom-margin {
  margin-bottom: 1vw;
}
@media screen and (max-width: 1100px) {
  .quote {
    margin: 10vw 10vw;
  }
  .quote-compact {
    margin: 4vw 10vw;
  }
  .quote-less-top-margin {
    margin-top: 6vw;
  }
  .quote-less-bottom-margin {
    margin-bottom: 2vw;
  }
}
@media screen and (max-width: 800px) {
  .quote {
    margin: 20vw 5vw;
  }
  .quote-compact {
    margin: 8vw 5vw;
  }
  .quote-less-top-margin {
    margin-top: 12vw;
  }
  .quote-less-bottom-margin {
    margin-bottom: 4vw;
  }
}
@media screen and (min-width: 1600px) {
  .quote {
    margin: 80px 320px;
  }
  .quote-compact {
    margin: 32px 320px;
  }
  .quote-less-top-margin {
    margin-top: 48px;
  }
  .quote-less-bottom-margin {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 1800px) {
  .quote-no-left-right-margin {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
/* <----------------------- responsive */

/* --- */

/* +=+=+=+=+=+=+=+=+=+=+ */
/* QUOTE WITH IMAGE      */
/* +=+=+=+=+=+=+=+=+=+=+ */
.quote-with-image {
  flex-direction: row;
}
.quote-image {
  margin-right: 40px;
}
.quote-with-image-text a {
  padding-bottom: 1px;
  border-bottom: 1px solid #694f5a;
}
.quote-with-image-text a:hover {
  border-bottom: 1px solid #694f5a;
}
/* -----------------------> responsive: */
@media screen and (max-width: 800px) {
  .quote-with-image {
    flex-direction: column;
  }
  .quote-image {
    width: 75%;
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .quote-with-image-text {
    width: 75%;
  }
}
/* <----------------------- responsive */

/* --- */

/* +=+=+=+=+=+=+=+=+=+=+ */
/* EVENT CARDS 2 -- EC2  */
/* +=+=+=+=+=+=+=+=+=+=+ */
.ec2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ec2-card {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% / 4 * 3);
  margin: 5vw 0;
}
.ec2-card.ec2-card-ltr {
  flex-direction: row-reverse;
}
.ec2-card-last {
  margin-bottom: 0;
}
.ec2-card-photo {
  width: calc(100% / 5 * 3);
  transform: translate(25px);
  line-height: 0;
  border: 2px solid #694f5a;
}
.ec2-card-ltr .ec2-card-photo {
  transform: translate(-25px);
}
.ec2-card-photo img {
  width: 100%;
}
.ec2-card-info {
  width: calc(100% / 5 * 2);
  transform: translate(-25px);
  padding: 2vw 2vw 3vw 2vw;
  border: 2px solid #694f5a;
  background-color: white;
}
.ec2-card-ltr .ec2-card-info {
  transform: translate(25px);
}
.ec2-card-info .cta-button-2 {
  display: inline-block;
}
/* -----------------------> responsive: */
@media screen and (max-width: 1350px) {
  .ec2-card {
    width: calc(100% / 4 * 3.5);
  }
}
@media screen and (max-width: 1100px) {
  .ec2-card {
    width: 100%;
  }
}
@media screen and (max-width: 950px) {
  .ec2-card,
  .ec2-card.ec2-card-ltr {
    flex-direction: column-reverse;
  }
  .ec2-card-photo,
  .ec2-card-ltr .ec2-card-photo {
    transform: none;
  }
  .ec2-card-info {
    text-align: center;
    width: auto;
    transform: none;
    border: none;
  }
  .ec2-card-ltr .ec2-card-info {
    transform: none;
  }
}
@media screen and (min-width: 1600px) {
  .ec2-card {
    margin: 80px 0;
  }
  .ec2-card-info {
    padding: 32px 32px 48px 32px;
  }
}

/* +=+=+=+=+=+=+=+=+=+=+ */
/* EVENT PAGE            */
/* +=+=+=+=+=+=+=+=+=+=+ */
.event-page-buttons {
  display: flex;
}
.event-page-buttons a {
  margin-right: 1vw;
}
/* -----------------------> responsive: */
@media screen and (max-width: 1100px) {
  .event-page-buttons a {
    margin-right: 2vw;
  }
}
@media screen and (max-width: 800px) {
  .event-page-buttons a {
    margin-right: 4vw;
  }
}
@media screen and (min-width: 1600px) {
  .event-page-buttons a {
    margin-right: 16px;
  }
}
/* <----------------------- responsive */
/* +=+=+=+=+=+=+=+=+=+=+ */
/* CALENDAR PAGE         */
/* +=+=+=+=+=+=+=+=+=+=+ */
.calendar {
  display: block;
  margin: 0 auto;
  width: 75%;
}

.calendar .calendar-title {
  margin-top: 32px;
}

.calendar .calendar-highlight {
  margin: 20px 0 40px 0;
}

.calendar td a:not(.cta-button-2) {
  text-decoration: underline;
}

/* non-full-series */
.calendar-item {
  display: flex;
  margin-bottom: 5vw;
  border: 2px solid #694f5a;
}
.calendar-item i {
  margin-right: 5px;
}
.calendar-image {
  width: 38%; /* 43% als locaties getoond worden */
  border-right: 2px solid #694f5a;
  background-size: cover;
  background-position: bottom;
}
.calendar-image a {
  display: block;
  width: 100%;
  height: 100%;
}
.calendar-details {
  width: 62%; /* 57% als locaties getoond worden */
  padding: 2vw;
}
.calendar-details form {
  display: inline-block;
  margin-right: 1vw;
}
/* -----------------------> responsive: */
@media screen and (max-width: 1350px) {
  .calendar {
    width: 85%;
  }
}
@media screen and (max-width: 1100px) {
  .calendar {
    width: 90%;
  }
  .calendar-item {
    flex-direction: column;
  }
  .calendar-image {
    width: 100%;
    height: 65vw;
    border-right: none;
    border-bottom: 2px solid #694f5a;
  }
  .calendar-details {
    width: 100%;
    padding: 4vw;
    box-sizing: border-box;
  }
  .calendar form {
    margin-top: 2vw;
  }
}
@media screen and (max-width: 800px) {
  .calendar-image {
    height: 90vw;
  }
  .calendar form,
  .calendar .cta-button-2 {
    width: 100%;
  }
  .calendar a.cta-button-2 {
    width: -webkit-fill-available;
  }
}
@media screen and (min-width: 1600px) {
  .calendar-item {
    margin-bottom: 80px;
  }
  .calendar-details {
    padding: 32px;
  }
  .calendar-details form {
    margin-right: 16px;
  }
}
/* <----------------------- responsive */

/* full-series */
.calendar-item-full-series {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5vw;
  padding: 2vw;
  border: 2px solid #694f5a;
}
.calendar-item-full-series i {
  margin-right: 5px;
}
.calendar-image-full-series a {
  display: block;
  width: 100%;
  height: 100%;
}
.calendar-image-full-series {
  display: block;
  margin: 0 auto 2vw auto;
  width: 10vw;
  height: 10vw;
  border-radius: 100%;
  border: 2px solid #694f5a;
  background-size: cover;
  background-position: bottom;
}
.calendar-form-full-series {
  display: inline-block;
  margin-right: 1vw;
}
.calendar-full-series-occurrences {
  margin-top: 0.5vw;
  width: 100%;
}
.calendar-full-series-separator {
  width: 66%;
  border-top: 2px solid #694f5a;
}
.calendar-item-full-series hr:last-of-type {
  display: none;
}
/* -----------------------> responsive: */
@media screen and (max-width: 1100px) {
  .calendar-image-full-series {
    margin: 3vw auto 3vw auto;
    width: 20vw;
    height: 20vw;
  }
}
@media screen and (max-width: 800px) {
  .calendar-image-full-series {
    margin: 6vw auto 6vw auto;
    width: 40vw;
    height: 40vw;
  }
}
@media screen and (min-width: 1600px) {
  .calendar-item-full-series {
    margin-bottom: 80px;
    padding: 32px;
  }
  .calendar-image-full-series {
    margin: 0 auto 32px auto;
    width: 160px;
    height: 160px;
  }
  .calendar-form-full-series {
    margin-right: 16px;
  }
  .calendar-full-series-occurrences {
    margin-top: 8px;
  }
}
/* <----------------------- responsive */

.calendar-table-overflow-container {
  overflow-x: scroll;
}
.calendar table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.calendar table,
.calendar th,
.calendar td {
  border: 2px solid #694f5a;
  padding: 5px 7px 5px 7px;
}
.calendar thead,
.calendar tfoot,
.calendar thead th,
.calendar tfoot td {
  background-color: rgba(250, 250, 250, 1);
}

.calendar table .cta-button-2 {
  margin: 0;
}

.calendar table .out-of-stock {
  pointer-events: none;
  opacity: 0.66;
  text-decoration: line-through;
  user-select: none;
}

.calendar table .calendar-image-title-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.calendar table .calendar-image-title-wrapper .circle-image {
  width: 65px;
  height: 65px;
}

/* +=+=+=+=+=+=+=+=+=+=+ */
/* CALENDAR FILTERS      */
/* +=+=+=+=+=+=+=+=+=+=+ */
#calendar-controls-and-filters {
  user-select: none;
}

#toggle-filter-panel {
  display: inline-flex;
  align-items: center;
  margin-top: 0px;
  margin-bottom: 8px;
  padding: 8px 16px;
}
#toggle-filter-panel i {
  margin-right: 8px;
}
#toggle-filter-panel[aria-expanded="true"] {
  margin-bottom: -2px;
  color: white;
  border: 2px solid #694f5a;
  background-color: #694f5a;
}

.filter-count-badge {
  display: inline-block;
  margin-left: 10px;
  font-size: 0.8em;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 2px 6px;
  border-radius: 10px;
  font-weight: normal;
}
#toggle-filter-panel.cta-button-2:hover:not(.disabled) .filter-count-badge,
#toggle-filter-panel[aria-expanded="true"] .filter-count-badge {
  color: white;
  background-color: #4e3d46; /* Slightly darker than #694f5a */
}

#filter-panel {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
  padding: 16px 16px 8px 16px;
  border: 2px solid #694f5a;
  background-color: #f9f9f9;
}

.filter-group {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}
.filter-group-label {
  font-weight: bold;
  margin-right: 10px;
  white-space: nowrap;
}

.calendar-filter-label {
  margin-bottom: 8px;
  margin-right: 8px;
  cursor: pointer;
  display: inline-block;
  transition: opacity 0.2s ease-in-out;
}

.calendar-filter-label input[type="checkbox"] {
  display: none;
}

.calendar-filter-label span {
  display: inline-block;
  padding: 6px 12px;
  border: 2px solid #694f5a;
  border-radius: 16px;
  background-color: #fff;
  font-size: 0.85em;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out,
    border-color 0.2s ease-in-out;
  line-height: 1.4;
  vertical-align: middle;
}

.calendar-filter-label input[type="checkbox"]:checked + span {
  background-color: #694f5a;
  color: #fff;
  border-color: #694f5a;
}

.calendar-filter-label.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.calendar-filter-label.disabled span {
  background-color: #eee;
  border-color: #ddd;
  color: #999;
  pointer-events: none;
}

#calendar-table-body tr.calendar-row-hidden {
  visibility: collapse;
}
@media screen and (max-width: 500px) {
  #calendar-table-body tr.calendar-row-hidden {
    display: none;
  }
}

/* +=+=+=+=+=+=+=+=+=+=+ */
/* EVENT REGISTRATION    */
/* +=+=+=+=+=+=+=+=+=+=+ */

/* EVENT REGISTRATION */
.event-registration {
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: 110%;
}
.event-registration hr {
  border-top: 2px solid #694f5a;
}

.order-configurator-overview {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  margin-top: 2vw;
}
.order-configurator {
  padding: 0 5vw;
  width: 60%;
  max-width: 900px;
  border-right: 2px solid #694f5a;
}
.order-configurator.no-border {
  border: none;
}
.order-configurator.not-too-wide {
  width: 40%;
}
.order-configurator.not-too-wide-2 {
  width: auto;
}
.order-overview {
  padding: 0 5vw;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 40%;
  max-width: 600px;
}
.order-overview.not-too-wide {
  width: 30%;
}

/* -----------------------> op sign-up-details page */
.quote-compact .order-configurator-overview {
  justify-content: left;
}
.quote-compact .order-configurator {
  width: 45%;
  padding: 0 3vw 0 0;
}
.quote-compact .order-overview {
  position: initial;
  padding: 0 0 0 3vw;
  width: 55%;
}
/* <----------------------- op sign-up-details page */
/* -----------------------> responsive: */
@media screen and (max-width: 1100px) {
  .order-configurator-overview {
    flex-direction: column;
    align-items: center;
    margin-top: 4vw;
  }
  .order-configurator {
    width: 80%;
    max-width: unset;
    margin-bottom: 5vw;
    padding-bottom: 5vw;
    border-right: none;
    border-bottom: 2px solid #694f5a;
  }
  .order-configurator.not-too-wide {
    width: 60%;
  }
  .order-configurator.not-too-wide-2 {
    width: 80%;
  }
  .order-overview {
    width: 80%;
    max-width: unset;
  }
  .order-overview.not-too-wide {
    width: 80%;
  }

  .quote-compact .order-configurator {
    padding: 0 0 3vw 0;
  }
  .quote-compact .order-overview {
    padding: 0;
  }
  .quote-compact .order-configurator.not-too-wide-2,
  .quote-compact .order-overview.not-too-wide {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .order-configurator.not-too-wide {
    width: 80%;
  }
  .order-configurator-overview {
    margin-top: 8vw;
  }
}
@media screen and (min-width: 1600px) {
  .order-configurator-overview {
    margin-top: 32px;
  }
  .order-configurator {
    padding: 0px 80px;
  }
  .order-overview {
    padding: 0px 80px;
  }

  .quote-compact .order-overview {
    padding: 0 0 0 48px;
  }
}
/* <----------------------- responsive */

.order-overview-information,
.order-lines {
  margin-top: 20px;
}
.order-personal-discount,
.order-subtotal,
.order-total {
  margin-top: 15px;
}
.order-overview-information,
.order-lines,
.order-personal-discount,
.order-subtotal,
.order-total {
  padding-top: 14px;
  border-top: 2px solid #694f5a;
}
.order-personal-discount,
.order-subtotal {
  border-top: 3px double #694f5a;
}
.order-line {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.order-line-left {
  max-width: 78%;
}
.order-line-right {
  position: absolute;
  width: 20%;
  bottom: 0px;
  right: 0px;
  text-align: right;
}
.order-line-options {
  padding-left: 7px;
  border-left: 1px solid #694f5a;
}
/* .order-line-option:not(.no-margin-top) {     margin-top: 14px; margin-top: 5px; } */
.order-line-choice:not(.no-margin-top) {
  /* margin-top: 14px; */
  margin-top: 5px;
}
.order-line-separator {
  /* margin-top: 14px; */
  margin-top: 5px;
}
.order-line-date {
  margin-top: 5px;
}

.discounted-price-order-overview,
.order-overview-discount-striketrough,
.order-overview-total-discount .order-line-left {
  margin-top: 5px;
}

.order-personal-discount .order-line:not(.no-margin-top),
.order-subtotal .order-line:not(.no-margin-top) {
  margin-top: 5px;
}

.order-overview-discount-striketrough {
  text-decoration: line-through;
}

.order-configurator-instructions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 20px;
  color: #694f5a;
}
.order-configurator-instructions-cta {
  cursor: pointer;
  color: #694f5a;
}
.order-configurator-instructions-cta:hover {
  color: #694f5a;
}
.order-configurator-instructions-discount-applied {
  color: #694f5a;
}
.order-configurator-instructions-full-series {
  margin-bottom: 20px;
  text-align: center;
}

.discount-underlined {
  position: relative;
}
.discount-underlined::after {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 0;
  width: 100%;
  border-top: solid 1px white;
}
.tag .discount-underlined::after {
  border-top: solid 1px #694f5a;
}

.registration-card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.registration-card-background:first-of-type {
  margin: 0px;
}
.registration-card-background {
  margin: 40px 0px;
  /* border-radius: 16px; /* bewust 1px hoger tegen retina-artefacten */
  background-color: #694f5a;
}
.registration-card-background-two-prices:first-child,
.registration-card-background-two-prices {
  margin: 10px;
  width: 100%;
}
.registration-card {
  display: flex;
  justify-content: space-between;
  /* border-radius: 15px; */
  background-color: white;
  cursor: pointer;
  box-shadow: 10px 10px 50px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}
/* .registration-card:hover,  */
.registration-card.selected {
  color: white;
  box-shadow: 10px 10px 50px 0px rgba(0, 0, 0, 0.075);
}
/* .registration-card:hover {              background-color: rgba(255,255,255,0.10); } */
/* .registration-card.selected:hover, */
.registration-card.selected {
  background-color: transparent;
}
.registration-card-background-two-prices .registration-card {
  cursor: initial;
}
.registration-group-full-series {
  padding: 20px;
  /* border-radius: 15px; */
  color: white;
  background-color: #694f5a;
  box-shadow: 10px 10px 50px 0px rgba(0, 0, 0, 0.075);
}
.registration-card-full-series:not(:last-of-type) {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 2px solid white;
}
.registration-card-info {
  padding: 20px;
}
.registration-card-background-two-prices .registration-card-info {
  width: 100%;
}
.registration-card-title i {
  position: relative;
  top: -2px;
  margin-right: 10px;
  display: none;
}
.registration-card.selected .registration-card-title i {
  display: inline-block;
}
.registration-card h4,
.registration-card-full-series h4 {
  margin-bottom: 10px;
}

.registration-card-price {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 17%;
  padding: 1.5vw;
  margin-left: 1.5vw;
  color: #694f5a;
  font-size: 120%;
  white-space: nowrap;
  background-color: white;
  /* border-top-right-radius: 15px; border-bottom-right-radius: 15px; */
  border-left: 2px solid #694f5a;
  transition: all 0.2s ease;
}

.registration-card-two-prices-wrapper {
  display: flex;
}
.registration-card-two-prices-item {
  margin: 10px 10px 0 0;
  padding: 8px 16px;
  flex: 1;
  text-align: center;
  border: 2px solid #694f5a;

  cursor: pointer;
}
.registration-card-two-prices-item.selected,
.registration-card-two-prices-item:hover {
  background-color: #694f5a;
  color: white;
}
.registration-card-two-prices-item.out-of-stock {
  pointer-events: none;
  opacity: 0.66;
  text-decoration: line-through;
  user-select: none;
}

/* -----------------------> responsive: */
@media screen and (min-width: 1600px) {
  .registration-card-price {
    padding: 24px;
    margin-left: 24px;
  }
}
/* <----------------------- responsive */
/* .registration-card:hover.registration-card-price, */
.registration-card.selected .registration-card-price {
  color: #694f5a;
  border-left: 1px solid white;
}
.strikethrough {
  position: relative;
  opacity: 0.25;
}
.strikethrough::before {
  position: absolute;
  content: "";
  left: -5%;
  top: 50%;
  width: 110%;
  border-top: 1px solid;
  border-color: inherit;
  transform: rotate(-15deg);
}
.registration-card-details {
  display: flex;
  align-items: center;
}
.registration-card-location {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.registration-card-details .fas,
.registration-card-details .far,
.registration-card-location .fas,
.registration-card-location .far {
  padding: 9px;
  margin-right: 9px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  font-size: 80%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.05);
}
.registration-option {
  margin-bottom: 40px;
  padding: 20px 30px 20px 20px;
  background-color: white;
  /* border-radius: 15px; */
  box-shadow: 10px 10px 50px 0px rgba(0, 0, 0, 0.05);
}
.registration-option-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 20px;
}
.registration-option-title h3::before {
  display: none;
}
.registration-option-dates {
  padding-bottom: 5px;
  border-bottom: 2px solid #694f5a;
  text-align: center;
}
.registration-choices {
  margin: 10px 0px 20px 0px;
}
.registration-choice-item {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.registration-choice-item.separator {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 2px solid #694f5a;
}
.registration-choice-item:hover {
  color: #694f5a;
  opacity: 0.8;
}
.registration-choice-item.selected {
  color: #694f5a;
  opacity: 1;
}
.registration-choice-item.out-of-stock {
  pointer-events: none;
  opacity: 0.66;
  user-select: none;
}
.registration-choice-item.out-of-stock h4,
.registration-choice-item.out-of-stock h6 {
  text-decoration: line-through;
}
.registration-choice-info {
  display: flex;
  justify-content: flex-start;
}
.registration-choice-selector {
  display: flex;
  align-items: center;
  margin-right: 10px;
  visibility: hidden;
}
/*
.registration-choice-selector .far,
.registration-choice-selector .fas {        font-size: 12px; }
*/
.registration-choice-item:hover .registration-choice-selector,
.registration-choice-item.selected .registration-choice-selector {
  visibility: visible;
}
.registration-choice-title {
}
.registration-choice-description {
}
.registration-choice-price {
  width: 17%;
  text-align: right;
  white-space: nowrap;
}

.customer-details-card {
  margin-bottom: 20px;
  padding: 20px 30px 20px 20px;
  background-color: white;
  /* border-radius: 15px; */
  box-shadow: 10px 10px 50px 0px rgba(0, 0, 0, 0.05);
}
.customer-details-card h4 {
  margin: 0px 0px 10px 0px;
}
.customer-details-card div {
  display: flex;
  flex-direction: column;
}
.customer-details-card div.title-with-action {
  flex-direction: column;
  margin-bottom: 12px;
}
.customer-details-card div.title-with-action.title-one-line {
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 0;
}
.customer-details-card div.title-with-action div {
  flex-grow: 0;
  display: inline;
}
.customer-details-card input {
  margin: 0px 5px 10px 0px;
  padding: 2px 0px 8px 0px;
  border: none;
  border-bottom: 2px solid #694f5a;
  background-color: white;
}
.customer-details-card input[type="checkbox"] {
  margin: 0px 5px 0px 0px;
}
.customer-details-card select {
  margin: 0px 5px 10px 0px;
  padding: 2px 0px 8px 0px;
  border: none;
  border-radius: 0px;
  border-bottom: 2px solid #694f5a;
}
.customer-details-card input:focus,
.customer-details-card select:focus {
  color: #694f5a;
  border-bottom: 2px solid #694f5a;
}
.customer-details-card label {
  padding: 2px 0px 0px 0px;
  font-size: 80%;
  opacity: 1;
}
.customer-details-card label.label-clickable {
  display: flex;
  align-items: center;
  opacity: 1;
  cursor: pointer;
}
.customer-details-card div div {
  flex-direction: row;
  flex-grow: 1;
}
.customer-details-card div div div {
  flex-direction: column;
}
.form-help-cta {
  margin-top: 15px;
}
.form-description {
  flex-direction: row !important;
  justify-content: space-between;
  margin-top: 5px;
}
.form-buttons {
  flex-direction: row !important;
  justify-content: space-between;
}
.form-description div,
.form-buttons div {
  flex-grow: 0 !important;
}
.form-buttons.form-button-right {
  flex-direction: row-reverse !important;
}

.no-invoice-requested {
  display: none !important;
}

/* +=+=+=+=+=+=+=+=+=+=+ */
/* SIGN UP DETAILS       */
/* +=+=+=+=+=+=+=+=+=+=+ */
.sign-up-details-icon-text {
  display: flex;
  align-items: center;
}
.sign-up-details-icon-text i {
  margin-right: 10px;
}

/* +=+=+=+=+=+=+=+=+=+=+ */
/* INVOICE               */
/* +=+=+=+=+=+=+=+=+=+=+ */
.body-invoice {
  background-color: #eeeeee;
}

.invoice {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  font-size: initial;
  line-height: 1.4;
  height: 297mm;
  width: 210mm;
  color: black;
  background-color: white;
}

.invoice-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 0.5cm;
  margin: 1cm 1cm 0.5cm 1cm;
  font-size: 80%;
}

.invoice-title-number-dates {
  padding-bottom: 0.5cm;
  margin-bottom: 0.5cm;
  width: 100%;
}
.invoice-title-number-dates h1 {
  padding-bottom: 0.5cm;
  margin: 1cm 0 0.5cm 0;
  font-size: 200%;
}
.invoice-title-number-dates .invoice-title-logo {
  display: flex;
  justify-content: space-between;
}

.invoice-number-dates {
  display: flex;
  justify-content: space-between;
}
.invoice-number-dates div:nth-child(2) {
  text-align: center;
}
.invoice-number-dates div:nth-child(3) {
  text-align: right;
}

.invoice-addresses {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.invoice-addresses div:nth-child(2) {
  text-align: right;
}

.invoice-main {
  display: flex;
  justify-content: center;
}
.invoice-main .order-overview {
  width: 100% !important;
  max-width: unset !important;
  padding: 0 !important;
  margin: 1cm;
}
.invoice .invoice-max-40 {
  display: block;
  width: 40%;
}

.invoice .order-line-left {
  max-width: 40%;
}
.invoice .order-line-right {
  display: flex;
  justify-content: flex-end;
  width: auto;
}
.invoice .order-line-right div {
  width: 2cm;
  margin-left: 0.25cm;
}

.invoice .order-personal-discount .order-line,
.invoice .order-subtotal .order-line,
.invoice .order-total .order-line {
  justify-content: flex-end;
}
.invoice .order-personal-discount .order-line-right,
.invoice .order-subtotal .order-line-right,
.invoice .order-total .order-line-right {
  display: contents;
}

.invoice-footer {
  padding-top: 0.5cm;
  margin: auto 1cm 1cm 1cm;
  text-align: center;
  font-size: 80%;
}

.invoice hr {
  border-top: 2px solid black;
}
.invoice-hr {
  width: 210mm;
  border-top: 1px solid lightgrey;
}
@media print {
  .invoice-hr {
    display: none;
  }
}

.invoice-terms-and-conditions {
  margin: 1cm;
  font-size: 60%;
  column-count: 2;
  column-gap: 1cm;
}

/* +=+=+=+=+=+=+=+=+=+=+ */
/* TEAM                  */
/* +=+=+=+=+=+=+=+=+=+=+ */
.team {
  display: flex;
}
.team-card {
  margin: 1vw;
  padding: 2vw;
  border: 2px solid #694f5a;
  background-color: rgba(0, 0, 0, 0.02);
}
.team-card img {
  margin-bottom: 1vw;
  width: 100%;
  border-radius: 100%;
  border: 2px solid #694f5a;
}
.team-social-icons {
  display: flex;
  justify-content: center;
  margin: 1vw 0 0 0;
}
.team-social-icons a {
  margin: 0 0.5vw;
}
/* -----------------------> responsive: */
@media screen and (max-width: 1100px) {
  .team {
    flex-direction: column;
  }
  .team-card {
    margin: 2vw;
    padding: 4vw;
  }
  .team-card img {
    margin-bottom: 2vw;
  }
  .team-social-icons {
    margin: 2vw 0 0 0;
  }
  .team-social-icons a {
    margin: 0 1vw;
  }
}
@media screen and (max-width: 800px) {
  .team-card {
    margin: 4vw;
    padding: 8vw;
  }
  .team-card img {
    margin-bottom: 4vw;
  }
  .team-social-icons {
    margin: 4vw 0 0 0;
  }
  .team-social-icons a {
    margin: 0 4vw;
  }
}
@media screen and (min-width: 1600px) {
  .team-card {
    margin: 16px;
    padding: 32px;
  }
  .team-card img {
    margin-bottom: 16px;
  }
  .team-social-icons {
    margin: 16px 0 0 0;
  }
  .team-social-icons a {
    margin: 0 8px;
  }
}
/* <----------------------- responsive */

/* +=+=+=+=+=+=+=+=+=+=+ */
/* COOKIES               */
/* +=+=+=+=+=+=+=+=+=+=+ */
.cookies-container {
  z-index: 998;
  position: fixed;
  bottom: 50px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cookies {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 20px;
  padding: 20px;
  border: 2px solid #694f5a;
  background-color: rgba(255, 255, 255, 0.95);
}
.cookies-label,
.cookies-buttons {
  margin: 0 10px;
}
.cookies-buttons {
  display: flex;
  flex-shrink: 0;
}
.cookies-buttons .cta-button-2 {
  margin: 0;
}
/* -----------------------> responsive: */
@media screen and (max-width: 1100px) {
  .cookies {
    flex-direction: column;
  }
  .cookies-label {
    margin-bottom: 20px;
    text-align: center;
  }
}
/* <----------------------- responsive */

/* +=+=+=+=+=+=+=+=+=+=+ */
/* PAGE END // WAVES     */
/* +=+=+=+=+=+=+=+=+=+=+ */
.wave {
  aspect-ratio: 4/1;
  width: 100%;
  opacity: 0.875;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
}
.wave-flip {
  transform: rotate(180deg);
}

/* +=+=+=+=+=+=+=+=+=+=+ */
/* SHORTS WIDGET         */
/* +=+=+=+=+=+=+=+=+=+=+ */

/* =========================================
   YOUTUBE SHORTS WIDGET (FINAL - HIDDEN SCROLL & WIDE FIX)
   ========================================= */

/* --- 1. WIDGET CONTAINER & HEADER --- */
.shorts-widget-container {
  width: 100%;
  max-width: none;
  margin: 4vw 0;
  padding: 0;
  color: #694f5a;
  font-family: ainslie-sans, sans-serif;

  /* Disable text selection */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.shorts-header {
  /* Align header text with your site's standard padding */
  max-width: 1600px;
  margin: 0 auto 2vw auto;
  padding: 0 5%;
  text-align: center;
}

.shorts-header h3 {
  font-weight: 400;
  font-size: 150%;
  color: #694f5a;
  display: inline-block;
}

/* --- 2. HORIZONTAL SLIDER --- */
.shorts-slider {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  box-sizing: border-box;

  /* 
       DEFAULT PADDING: 5% 
       Aligns with your standard container on most screens.
    */
  padding: 20px 5%;
  scroll-padding: 0 5%; /* Fixes the snap offset */

  /* Scroll Physics */
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;

  /* Drag Interaction Cursor */
  cursor: grab;

  /* HIDE SCROLLBAR (Firefox / IE / Edge) */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* HIDE SCROLLBAR (Chrome / Safari) */
.shorts-slider::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
  background: transparent;
}

.shorts-slider:active {
  cursor: grabbing;
  scroll-snap-type: none; /* Disable snap during drag */
}

/* --- 3. WIDE SCREEN OVERRIDE (> 1750px) --- */
/* Caps the padding so the gap doesn't get huge on big monitors */
@media screen and (min-width: 1750px) {
  .shorts-slider {
    padding-left: 20px;
    padding-right: 20px;
    scroll-padding: 0 20px;
  }
}

/* --- 4. INDIVIDUAL CARDS --- */
.short-card {
  /* DEFAULT (Desktop/Laptop): Show ~4.5 items */
  flex: 0 0 22%;
  width: 22%;

  aspect-ratio: 9 / 16;
  height: auto;

  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  background-color: #000;

  /* FLAT DESIGN */
  border: 2px solid #694f5a;
  border-radius: 0;
  box-shadow: none;

  transition: border-color 0.2s ease;
}

.short-card:hover {
  border-color: #f9b721;
}

.short-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  /* Prevent dragging the image file itself */
  pointer-events: none;
  -webkit-user-drag: none;
}

/* --- GHOST CARD STYLING --- */

.short-card-ghost {
  background-color: rgba(105, 79, 90, 0.05); /* Very faint brand color */
  border: 2px dashed #694f5a; /* Dashed border implies "slot" */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default; /* No pointer cursor */
  opacity: 0.6; /* Fade it out slightly */
}

/* Remove hover effect for ghosts */
.short-card-ghost:hover {
  border-color: #694f5a; /* Don't change to gold */
  transform: none;
}

.ghost-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px;
}

.ghost-icon {
  color: #694f5a;
  margin-bottom: 10px;
  opacity: 0.5;
}

.ghost-text {
  color: #694f5a;
  font-size: 0.9rem;
  font-weight: 600;
  text-shadow: none; /* No shadow needed on light background */
}

/* --- 5. RESPONSIVE CARD SIZING --- */

/* LARGE SCREENS (> 1600px): Show ~6.5 items */
@media screen and (min-width: 1600px) {
  .short-card {
    flex: 0 0 15%;
    width: 15%;
  }
}

/* TABLET / SMALL LAPTOP (< 1100px): Show ~3.5 items */
@media screen and (max-width: 1100px) {
  .short-card {
    flex: 0 0 28%;
    width: 28%;
  }
}

/* MOBILE (< 650px): Show ~2.2 items */
@media screen and (max-width: 650px) {
  .short-card {
    flex: 0 0 42%;
    width: 42%;
  }
  .shorts-slider {
    /* Reduce side padding on mobile */
    padding: 20px 15px;
    scroll-padding: 0 15px;
  }
}

/* --- 6. OVERLAYS (PLAY ICON & TITLE) --- */
.play-icon {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;

  background: #f9b721;
  color: #694f5a;

  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  border: 2px solid #694f5a;
  transition: transform 0.2s, background-color 0.2s;
}

.short-card:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.1);
  background: #694f5a;
  color: #f9b721;
  border-color: #f9b721;
}

.short-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 15px;
  box-sizing: border-box;
  pointer-events: none;
  z-index: 2;
}

.short-title {
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 2px;
}

/* =========================================
   MODAL (DESKTOP DEFAULT)
   ========================================= */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(105, 79, 90, 0.95);
  z-index: 9999;

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.modal-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Video Container (Desktop) */
.modal-content {
  position: relative;
  background: #000;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;

  /* Dynamic Sizing */
  height: 90vh;
  aspect-ratio: 9 / 16;
  width: auto;

  border: 2px solid #f9b721;
  overflow: visible;
}

#player-wrapper {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}

#player-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

/* Close Button (Desktop) - Hanging Outside */
.close-btn-desktop {
  position: absolute;
  top: 0;
  right: -70px; /* Float to the right */

  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #f9b721;
  color: #f9b721;

  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.close-btn-desktop:hover {
  background: #f9b721;
  color: #694f5a;
  transform: scale(1.1);
}

/* Hide Mobile Header by default */
.modal-header-mobile {
  display: none;
}

/* =========================================
   MODAL (MOBILE OVERRIDES)
   ========================================= */

@media screen and (max-width: 650px) {
  .modal-overlay {
    align-items: flex-start; /* Align to top */
    background: #000;
  }

  .modal-wrapper {
    width: 100%;
    height: 100%;
    height: 100dvh;
  }

  /* 1. Show Mobile Header Bar */
  .modal-header-mobile {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 50px;
    background-color: #111;
    border-bottom: 1px solid #333;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .close-text {
    color: #fff;
    font-family: ainslie-sans, sans-serif;
    font-size: 14px;
    margin-right: 12px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .close-btn-mobile {
    background: none;
    border: none;
    color: #fff;
    padding: 0;
    display: flex;
    cursor: pointer;
  }

  /* 2. Resize Video Content */
  .modal-content {
    width: 100%;
    /* Fill remaining height accurately */
    height: calc(100dvh - 50px);
    max-width: none;
    max-height: none;

    border: none;
    border-radius: 0;
    aspect-ratio: unset;
    box-shadow: none;
  }

  /* Hide Desktop Button */
  .close-btn-desktop {
    display: none;
  }
}

/* =========================================================================
   BLOG
   ========================================================================= */
.blog-meta {
  font-size: 90%;
  opacity: 0.75;
  margin-bottom: 1vw;
}
/* overview: image cards with title overlay */
.blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5vw;
  margin: 3vw 10vw 5vw 10vw;
}
.blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
  background-color: #694f5a;
  aspect-ratio: 4 / 5;
  box-shadow: 0 10px 30px rgba(105, 79, 90, 0.15);
}
.blog-card-image {
  position: absolute;
  inset: 0;
  display: block;
  line-height: 0;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}
.blog-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  padding: 6vw 1.8vw 1.8vw 1.8vw;
  background: linear-gradient(to top, rgba(43, 33, 43, 0.92) 0%, rgba(43, 33, 43, 0.6) 55%, rgba(43, 33, 43, 0) 100%);
  color: #fff;
  text-align: left;
  pointer-events: none;
}
.blog-card-body a {
  pointer-events: auto;
  text-decoration: none;
}
.blog-card-body .blog-meta {
  display: inline-block;
  align-self: flex-start;
  background-color: #f9b721;
  color: #694f5a;
  padding: 0.2em 0.8em;
  border-radius: 999px;
  font-size: 72%;
  opacity: 1;
  margin-bottom: 0.8vw;
}
.blog-card-title {
  color: #fff;
  font-size: 150%;
  line-height: 1.2;
  margin: 0 0 0.5vw 0;
}
.blog-card-link {
  display: inline-block;
  align-self: flex-start;
  color: #f9b721;
  font-weight: 600;
}
.blog-card-link:hover {
  color: #fff;
}
.blog-post-intro {
  font-size: 115%;
  font-style: italic;
}
.blog-post-cover {
  display: block;
  width: 100%;
  max-height: 60vh;
  object-fit: cover;
  margin-top: 3vw;
}
.blog-post-content {
  margin-top: 2vw;
}
.blog-post-content > div,
.blog-post-content .tiny-form {
  width: 100%;
}
.blog-post-content h1,
.blog-post-content h2,
.blog-post-content h3 {
  text-align: left;
  margin: 2vw 0 1vw 0;
}
.blog-post-content h1 {
  font-size: 150%;
}
.blog-post-content hr {
  margin: 1vw 0;
}
.blog-post-content p {
  margin-bottom: 1.2em;
}
.blog-post-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2vw auto;
}
.blog-post-content figure {
  margin: 2vw 0;
}
.blog-post-content figcaption {
  font-size: 85%;
  opacity: 0.75;
  text-align: center;
}
.blog-post-content blockquote {
  margin: 3vw 2vw;
  padding: 0;
  text-align: center;
  font-size: 125%;
  line-height: 1.3;
  font-style: italic;
}
.blog-post-content ul,
.blog-post-content ol {
  margin: 0 0 1.2em 2em;
  text-align: left;
}
.blog-post-author {
  font-size: 90%;
}
.blog-post-navigation .all-in-one-row-buttons {
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 1100px) {
  .blog-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 4vw;
    margin: 5vw 8vw 10vw 8vw;
  }
  .blog-card-body {
    padding: 10vw 4vw 4vw 4vw;
  }
  .blog-card-body .blog-meta {
    margin-bottom: 2vw;
  }
  .blog-card-title {
    margin-bottom: 1.5vw;
  }
  .blog-post-content h1,
  .blog-post-content h2,
  .blog-post-content h3 {
    margin: 5vw 0 3vw 0;
  }
  .blog-post-content hr {
    margin: 3vw 0;
  }
}
@media screen and (max-width: 700px) {
  .blog-cards {
    grid-template-columns: 1fr;
    gap: 6vw;
    margin: 8vw 5vw 12vw 5vw;
  }
  .blog-card {
    aspect-ratio: 1 / 1;
  }
  .blog-card-body {
    padding: 14vw 5vw 5vw 5vw;
  }
  .blog-post-cover {
    margin-top: 6vw;
  }
}
