@import "all.min.css";
@import "jquery.fancybox.min.css";
@import "swiper-bundle.min.css";
:root {
  /* kleuren */
  --backBlack: #000;
  --text: #454545;
  --primary: #6F1947;
  --secondary: #EBEAE4;
  --primaryLight: #aac4ce;
  --lightGray: #dcd8d0;
  /* fonts */
  --bodyFont: 'Inter';
  --bodyFontType: 'sans-serif';
  --headingFont: 'Outfit';
  --headingFontType: 'sans-serif';
  --sitework: 'Poppins';
  --siteworkType: 'sans-serif';
  --baseFontSize: 16px;
  --baseLineHeight: '1.5';
  /* UI */
  --borderRadius: 30px;
}

.admin-bar {
  position: fixed;
  z-index: 999;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: white;
  padding: 8px;
  border-radius: 12px 0 0 12px;
  -webkit-box-shadow: rgba(149, 157, 165, 0.5) 0px 8px 24px;
          box-shadow: rgba(149, 157, 165, 0.5) 0px 8px 24px;
}
@media only screen and (max-width: 800px) {
  .admin-bar {
    right: auto;
    top: auto;
    bottom: 65px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    border-radius: 8px;
    width: 95%;
    padding: 8px;
  }
}
.admin-bar .bar-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media only screen and (max-width: 800px) {
  .admin-bar .bar-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
  }
}
@media only screen and (max-width: 800px) {
  .admin-bar .bar-inner > a {
    margin-left: 1rem;
  }
}
@media only screen and (max-width: 550px) {
  .admin-bar .bar-inner > a {
    display: none;
  }
}
.admin-bar .bar-inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 800px) {
  .admin-bar .bar-inner ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}
.admin-bar .bar-inner ul li {
  position: relative;
}
@media only screen and (max-width: 800px) {
  .admin-bar .bar-inner ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.25rem;
  }
}
.admin-bar .bar-inner ul li a {
  cursor: pointer;
}
.admin-bar .bar-inner ul li.line {
  height: 3px;
  width: 75%;
  margin: -2.5px auto;
  background-color: #00B4FF;
}
@media only screen and (max-width: 800px) {
  .admin-bar .bar-inner ul li.line {
    height: 40px;
    width: 3px;
    margin: auto -2.5px;
  }
}
@media only screen and (max-width: 550px) {
  .admin-bar .bar-inner ul li.line {
    display: none;
  }
}
.admin-bar .bar-inner ul li span {
  position: absolute;
  background-color: #222;
  color: white;
  padding: 6px 12px;
  font-size: 14px;
  height: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  left: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
  opacity: 0;
  visibility: hidden;
}
@media only screen and (max-width: 800px) {
  .admin-bar .bar-inner ul li span {
    font-size: 10px;
    line-height: 1;
    opacity: 1;
    visibility: visible;
    background-color: transparent;
    color: #222;
    max-width: 80px;
    text-align: center;
    position: relative;
    padding: 0;
    left: 0;
    -webkit-transform: none;
            transform: none;
  }
}
@media only screen and (max-width: 450px) {
  .admin-bar .bar-inner ul li span {
    display: none;
  }
}
.admin-bar .bar-inner ul li a:hover {
  color: #00B4FF;
}
.admin-bar .bar-inner ul li:hover span {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(-125%);
          transform: translateX(-125%);
}
@media only screen and (max-width: 800px) {
  .admin-bar .bar-inner ul li:hover span {
    -webkit-transform: none;
            transform: none;
  }
}

.global-search-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #00adf2, rgb(0, 136.541322314, 191));
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 10px 30px rgba(49, 60, 73, 0.35);
          box-shadow: 0 10px 30px rgba(49, 60, 73, 0.35);
  cursor: pointer;
  z-index: 950;
  border: none;
  -webkit-transition: background 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: background 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  font-size: 18px;
}
.global-search-button:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 18px 40px rgba(49, 60, 73, 0.45);
          box-shadow: 0 18px 40px rgba(49, 60, 73, 0.45);
}
.global-search-button:active {
  -webkit-transform: translateY(1px) scale(0.98);
          transform: translateY(1px) scale(0.98);
  -webkit-box-shadow: 0 8px 20px rgba(49, 60, 73, 0.3);
          box-shadow: 0 8px 20px rgba(49, 60, 73, 0.3);
}
@media (max-width: 768px) {
  .global-search-button {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }
}

.global-search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(49, 60, 73, 0.48);
  z-index: 1000;
  display: none;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 80px 16px 24px;
}
.global-search-overlay.is-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.global-search-panel {
  width: 100%;
  max-width: 800px;
  background: #f7f8fa;
  border-radius: 14px;
  -webkit-box-shadow: 0 24px 70px rgba(49, 60, 73, 0.22);
          box-shadow: 0 24px 70px rgba(49, 60, 73, 0.22);
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.95);
}

.global-search-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14px 14px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
  background: #f1f3f5;
}
.global-search-header i {
  color: #00adf2;
  margin-right: 8px;
  font-size: 14px;
}

#global-search-input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #fff;
  border-radius: 10px;
  font-size: 15px;
  padding: 10px 12px;
  outline: none;
  color: #232326;
  -webkit-box-shadow: 0 1px 0 rgba(49, 60, 73, 0.03);
          box-shadow: 0 1px 0 rgba(49, 60, 73, 0.03);
}
#global-search-input::-webkit-input-placeholder {
  color: #6b7280;
}
#global-search-input::-moz-placeholder {
  color: #6b7280;
}
#global-search-input:-ms-input-placeholder {
  color: #6b7280;
}
#global-search-input::-ms-input-placeholder {
  color: #6b7280;
}
#global-search-input::placeholder {
  color: #6b7280;
}
#global-search-input:focus {
  border: 1px solid rgba(226, 232, 240, 0.95);
  outline: none;
  -webkit-box-shadow: 0 0 0 3px rgba(0, 173, 242, 0.16);
          box-shadow: 0 0 0 3px rgba(0, 173, 242, 0.16);
}

.global-search-close {
  border: 0;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 10px;
  font-size: 22px;
  height: -webkit-fill-available;
  height: -moz-available;
  height: stretch;
  max-height: 44px;
  width: auto;
  line-height: 1;
  padding: 6px 8px;
  margin-left: 8px;
  cursor: pointer;
  color: #3b3b3e;
  -webkit-transition: color 0.15s ease, background 0.15s ease, -webkit-transform 0.15s ease;
  transition: color 0.15s ease, background 0.15s ease, -webkit-transform 0.15s ease;
  transition: color 0.15s ease, transform 0.15s ease, background 0.15s ease;
  transition: color 0.15s ease, transform 0.15s ease, background 0.15s ease, -webkit-transform 0.15s ease;
}
.global-search-close:hover {
  color: #313c49;
  background: #fff;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.global-search-meta {
  padding: 6px 14px 4px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
  font-size: 11px;
  color: #6b7280;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.global-search-results {
  max-height: 420px;
  overflow-y: auto;
  padding: 10px;
  background: #f7f8fa;
}

.global-search-empty {
  padding: 12px 10px;
  font-size: 13px;
  color: #3b3b3e;
}

.global-search-result {
  width: 100%;
  text-align: left;
  display: block;
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #fff;
  cursor: pointer;
  -webkit-transition: background 0.12s ease, border-color 0.12s ease, -webkit-transform 0.08s ease, -webkit-box-shadow 0.12s ease;
  transition: background 0.12s ease, border-color 0.12s ease, -webkit-transform 0.08s ease, -webkit-box-shadow 0.12s ease;
  transition: background 0.12s ease, transform 0.08s ease, box-shadow 0.12s ease, border-color 0.12s ease;
  transition: background 0.12s ease, transform 0.08s ease, box-shadow 0.12s ease, border-color 0.12s ease, -webkit-transform 0.08s ease, -webkit-box-shadow 0.12s ease;
}
.global-search-result:hover {
  background: #f3f4f6;
  border-color: rgba(203, 213, 225, 0.95);
}
.global-search-result.is-active {
  background: rgba(0, 173, 242, 0.08);
  border-color: rgba(0, 173, 242, 0.45);
  -webkit-box-shadow: 0 0 0 3px rgba(0, 173, 242, 0.12);
          box-shadow: 0 0 0 3px rgba(0, 173, 242, 0.12);
}

.global-search-result-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
}

.global-search-result-title {
  font-size: 14px;
  font-weight: 600;
  color: #232326;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.global-search-flag {
  width: 14px;
  height: 14px;
  margin-left: 6px;
  vertical-align: -2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 0 0 1px #ededed;
          box-shadow: 0 0 0 1px #ededed;
}

.global-search-result-id {
  font-size: 11px;
  color: #6b7280;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.global-search-result-meta {
  margin-top: 2px;
  font-size: 11px;
  color: #6b7280;
}

body.global-search-open {
  overflow: hidden;
}