/* =========================================================
   NOVOTIX Shop V2
   Clean base + utilities + dropdowns + RTL
========================================================= */

/* Hide scrollbar for Chrome, Safari, and Opera */
html::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge */
html {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none;    /* Firefox */
}

/* =========================================================
   THEME VARIABLES
========================================================= */
:root{
  --bg:#ffffff;
  --card:#ffffff;
  --cardAlt:#f6f7fb;
  --text:#000000;
  --muted:#999999;
  --primary:#a41ef7;
  --primaryText:#ffffff;
  --danger:#ef4444;
  --border: 1px solid #ffffff;
  --radius:18px;
  --radiusSm:14px;
  --shadow:0 10px 30px rgba(0,0,0,.08);
  --cardShadow:0 10px 30px rgba(0,0,0,.08);
  --font:'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --headerImg:none;
  --backgroundImg:none;
  --swal2-border-radius:18px;
}

/* =========================================================
   RESET / BASE
========================================================= */
*{ box-sizing:border-box; }

html, body{
  min-height:100%;
}

html{
  background:var(--bg);
}

body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:transparent;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
  padding-bottom:calc(90px + env(safe-area-inset-bottom));
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  background-color:var(--bg);
  background-image:var(--backgroundImg);
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  pointer-events:none;
  transform:translateZ(0);
}

strong, b{
  font-weight:700;
}

/* =========================================================
   LINK URL
========================================================= */

a{
  text-decoration:none;
  color:var(--primary);
}

a:hover {
  color:var(--primary);
  text-decoration:underline;
}

a:visited {
  color:var(--primary);
}

a:active {
  color:var(--primary);
  text-decoration:underline;
}

/* =========================================================
   LAYOUT
========================================================= */
.ntx-wrap{
  position:relative;
  z-index:1;
  max-width:720px;
  margin:0 auto;
  padding:14px 0px calc(120px + env(safe-area-inset-bottom));
}

.ntx-muted{
  color:var(--muted);
}

.ntx-right{
  margin-left:auto;
}

@media (max-width:720px){
	.ntx-wrap{
	  padding:0px 10px calc(120px + env(safe-area-inset-bottom));
	}
}


/* =========================================================
   HEADER
========================================================= */
.ntx-header{
  position:relative;
  overflow:hidden;
  margin:8px 0px 14px 0px;
  border-radius:calc(var(--radius) + 6px);
  box-shadow:var(--cardShadow);
  background:var(--card);
  border:var(--border);
}

.ntx-header__img{
  display:block;
  width:100%;
  height:160px;
  background-image:var(--headerImg);
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.ntx-header__content{
  display:flex;
  flex-direction:row;
  align-items:center;
  justify-content:flex-start;
  gap:18px;
  padding:28px;
  background:var(--card);
  backdrop-filter:saturate(140%) blur(6px);
}

.ntx-header__meta{
  flex:1 1 auto;
  min-width:0;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  text-align:left;
}

.ntx-title{
  margin:0 0 6px;
  font-size:18px;
  line-height:1.2;
  font-weight:700;
  letter-spacing:-0.2px;
  text-align:left;
}

.ntx-subtitle{
  margin:0;
  color:var(--muted);
  font-size:13px;
  font-weight:400;
  text-align:left;
}

.ntx-header__address{
  margin-top:8px;
}

@media (max-width:576px){
  .ntx-header__img{
    height:100px;
  }

  .ntx-header__content{
    padding:14px;
    gap:14px;
    align-items:center;
  }

  .ntx-header__meta{
    align-items:flex-start;
    text-align:left;
  }

  .ntx-title,
  .ntx-subtitle{
    text-align:left;
  }
}

/* =========================================================
   HEADER EVENT INFO MODAL
========================================================= */

		.ntx-event-info-trigger{
			position: absolute;
			top: 18px;
			right: 18px;
			z-index: 3;
			width: 42px;
			height: 42px;
			border-radius: 999px;
			border: 1px solid rgba(255,255,255,.22);
			background: rgba(0,0,0,.18);
			backdrop-filter: blur(8px);
			-webkit-backdrop-filter: blur(8px);
			color: #fff;
			display: inline-flex;
			align-items: center;
			justify-content: center;
			font-size: 19px;
			cursor: pointer;
			transition: transform .18s ease, background .18s ease, border-color .18s ease;
		}

		.is-rtl .ntx-event-info-trigger{
			right: auto;
			left: 18px;
		}

		.ntx-event-info-trigger:hover,
		.ntx-event-info-trigger:focus-visible{
			background: rgba(0,0,0,.30);
			border-color: rgba(255,255,255,.35);
			transform: translateY(-1px);
			outline: none;
		}

		.ntx-event-modal{
			position: fixed;
			inset: 0;
			z-index: 99993;
			display: flex;
			align-items: flex-start;
			justify-content: center;
			padding: 16px;
			overflow-y: auto;
			overflow-x: hidden;
			-webkit-overflow-scrolling: touch;
		}

		.ntx-event-modal[hidden]{
			display: none !important;
		}

		.ntx-event-modal .ntx-order-modal__dialog{
			max-width: 980px;
			width: min(980px, calc(100vw - 32px));
			max-height: calc(100vh - 32px);
			margin: 0 auto;
			display: flex;
			flex-direction: column;
			overflow: hidden;
		}

		.ntx-event-modal .ntx-order-modal__head,
		.ntx-event-modal .ntx-order-modal__foot{
			flex: 0 0 auto;
		}

		.ntx-event-modal__body{
			flex: 1 1 auto;
			min-height: 0;
			overflow-y: auto;
			overflow-x: hidden;
			-webkit-overflow-scrolling: touch;
			display: flex;
			flex-direction: column;
			gap: 22px;
			padding-right: 4px;
		}

		.ntx-event-modal__hero{
			min-height: 180px;
			border-radius: calc(var(--radius) - 2px);
			background-size: cover;
			background-position: center center;
			background-repeat: no-repeat;
		}

		.ntx-event-modal__meta{
			display: flex;
			flex-direction: column;
			gap: 12px;
		}

		.ntx-event-modal__meta-row{
			display: flex;
			align-items: flex-start;
			gap: 12px;
		}

		.ntx-event-modal__meta-icon{
			width: 24px;
			min-width: 24px;
			font-size: 18px;
			line-height: 1.2;
			color: var(--primary);
		}

		.ntx-event-modal__meta-text{
			font-size: 15px;
			line-height: 1.6;
			color: var(--text);
		}

		.ntx-event-modal__section{
			display: flex;
			flex-direction: column;
			gap: 12px;
		}

		.ntx-event-modal__section-title{
			font-size: 28px;
			font-weight: 700;
			line-height: 1.2;
			color: var(--text);
			padding-top: 20px;
			padding-bottom: 10px;
			border-bottom: 1px solid var(--muted);
		}

		.ntx-event-modal__description{
			font-size: 16px;
			line-height: 1.4;
			color: var(--text);
			white-space: normal;
		}

		.ntx-event-modal__description p{
			margin: 0 0 16px;
		}

		.ntx-event-modal__description p:last-child{
			margin-bottom: 0;
		}

		.ntx-event-modal__description br{
			line-height: inherit;
		}

		.ntx-event-modal__artists{
			display: grid;
			grid-template-columns: repeat(2, minmax(0, 1fr));
			gap: 16px;
		}

		.ntx-event-modal__artist{
			display: flex;
			align-items: center;
			gap: 14px;
			padding: 18px 20px;
			border-radius: 18px;
			background: var(--card);
			box-shadow: var(--cardShadow);
			border: 1px solid rgba(0,0,0,.06);
			height: 100%;
			min-height: 108px;
		}

		.ntx-event-modal__artist-meta{
			display: flex;
			flex-direction: column;
			justify-content: center;
			min-height: 52px;
		}

		.ntx-event-modal__artist-avatar{
			width: 44px;
			height: 44px;
			border-radius: 999px;
			background: var(--primary);
			color: var(--primaryText);
			display: inline-flex;
			align-items: center;
			justify-content: center;
			font-weight: 800;
			font-size: 18px;
			overflow: hidden;
		}

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

		.ntx-event-modal__artist-title{
			font-size: 16px;
			font-weight: 700;
			color: var(--text);
		}

		.ntx-event-modal__artist-time{
			font-size: 14px;
			color: var(--muted);
			margin-top: 2px;
		}

		.ntx-event-modal__map{
			height: 320px;
			border-radius: 18px;
			overflow: hidden;
			background: rgba(0,0,0,.04);
			border: 1px solid rgba(0,0,0,.08);
			position: relative;
		}

		.ntx-event-modal__placeholder{
			font-size: 14px;
			color: var(--muted);
		}

		.ntx-event-modal__map .ntx-event-modal__placeholder{
			position: absolute;
			inset: 0;
			display: flex;
			align-items: center;
			justify-content: center;
			text-align: center;
			padding: 16px;
		}

		@media (max-width: 767px){
			.ntx-event-info-trigger{
				top: 14px;
				right: 14px;
				width: 38px;
				height: 38px;
				font-size: 17px;
			}

			.is-rtl .ntx-event-info-trigger{
				right: auto;
				left: 14px;
			}

			.ntx-event-modal{
				padding: 10px;
				align-items: flex-start;
			}

			.ntx-event-modal .ntx-order-modal__dialog{
				width: calc(100vw - 20px);
				max-height: calc(100vh - 20px);
			}

			.ntx-event-modal__artists{
				grid-template-columns: 1fr;
			}

			.ntx-event-modal__section-title{
				font-size: 22px;
			}

			.ntx-event-modal__map{
				height: 260px;
			}
		}

		body.ntx-event-modal-open{
			overflow: hidden;
		}

/* =========================================================
   CARDS
========================================================= */
.ntx-card{
  margin:12px 0;
  overflow:hidden;
  background:var(--card);
  border-radius:var(--radius);
  border:var(--border);
  box-shadow:var(--shadow);
  padding:14px;
}

.ntx-card__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px;
  font-size:15px;
  font-weight:800;
}

.ntx-card__body{
  padding:14px;
}

.ntx-divider{
  height:1px;
  margin:0;
  border:0;
  background:var(--muted);
}

/* =========================================================
   TICKET ROWS
========================================================= */
.ntx-ticket{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 0px;
}

.ntx-ticket:first-child{
  border-top:0;
}

.ntx-ticket__meta{
  flex:1 1 auto;
  min-width:0;
}

.ntx-ticket__name{
  margin:0;
  font-size:13px;
  font-weight:800;
  color:var(--text);
}

.ntx-ticket__price{
  margin:4px 0 0;
  font-size:13px;
  font-weight:700;
  color:var(--primary);
}

.ntx-ticket__price-prefix{
  display:inline-block;
  margin-right:6px;
  font-size:12px;
  font-weight:700;
  color:var(--muted);
  text-transform:lowercase;
}

html[dir="rtl"] .ntx-ticket__price-prefix{
  margin-right:0;
  margin-left:6px;
}

.ntx-ticket__fee-note{
  margin:4px 0 0;
  font-size:12px;
  font-weight:400;
  color:var(--muted);
}

.ntx-ticket__desc{
  margin:8px 0 0;
  font-size:12.5px;
  line-height:1.35;
  color:var(--muted);
}

/* =========================================================
   CONTROLS
========================================================= */
.ntx-ctrl{
  display:flex;
  align-items:center;
  gap:8px;
  flex:0 0 auto;
}

.ntx-qty{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:18px;
  font-size:13px;
  font-weight:800;
  text-align:center;
}

.ntx-qty [data-qty]{
  width:18px;
  font-size:14px;
  font-weight:700;
  text-align:center;
}

.ntx-qty button{
  width:38px;
  height:38px;
  border:var(--border);
  border-radius:999px;
  background:var(--card);
  color:var(--text);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  font-weight:800;
  line-height:1;
  cursor:pointer;
}

.ntx-qty button[data-action="add"]{
  background:var(--primary);
  color:var(--primaryText);
  border:0px;
}

.ntx-qty button:disabled{
  opacity:.45;
  cursor:not-allowed;
}

.ntx-qty button{
  position:relative;
  overflow:hidden;
}

.ntx-qty button .ntx-qty-btn__label{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.ntx-qty button .ntx-qty-btn__spinner{
  display:none;
  align-items:center;
  justify-content:center;
  position:absolute;
  inset:0;
}

.ntx-qty button.is-loading .ntx-qty-btn__label{
  opacity:0;
}

.ntx-qty button.is-loading .ntx-qty-btn__spinner{
  display:flex;
}

.ntx-qty button[data-action="add"].is-loading{
  color:var(--primaryText);
}

.ntx-qty button[data-action="sub"].is-loading{
  color:var(--text);
}

/* legacy button classes if reused somewhere */
.ntx-btn{
  appearance:none;
  border:none;
  cursor:pointer;
  border-radius:999px;
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--cardAlt);
  color:var(--text);
  font-weight:900;
  transition:transform .08s ease, background .12s ease, color .12s ease;
}

.ntx-btn:active{
  transform:scale(.96);
}

.ntx-btn--plus{
  background:var(--primary);
  color:var(--primaryText);
}

.ntx-btn[disabled]{
  opacity:.45;
  cursor:not-allowed;
}

/* =========================================================
   BADGES / FORM
========================================================= */
.ntx-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:4px;
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  background:var(--text);
  color:var(--card);
  font-size:13px;
  font-weight:600;
  line-height:1;
  white-space:nowrap;
}

.ntx-badge + .ntx-badge{
  margin-left:8px;
}

html[dir="rtl"] .ntx-badge + .ntx-badge{
  margin-left:0;
  margin-right:8px;
}

.ntx-badge-small{
  min-height:22px;
  padding:0 9px;
  font-size:10px;
  font-weight:600;
}

.ntx-badge-medium{
  min-height:32px;
  padding:0 12px;
  font-size:12px;
  font-weight:600;
}

.ntx-badge-large{
  min-height:38px;
  padding:0 14px;
  font-size:13px;
  font-weight:600;
}

.ntx-badge-primary{
  background:var(--primary);
  color:var(--primaryText);
}

.ntx-badge-danger{
  background:#fee2e2;
  color:#991b1b;
}

.ntx-badge-normal{
  background:var(--text);
  color:var(--card);
}

.ntx-ticket__badges{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
  margin:6px 0 0;
}

.ntx-ticket__badges .ntx-badge + .ntx-badge{
  margin-left:0;
}

html[dir="rtl"] .ntx-ticket__badges{
  justify-content:flex-end;
}

.ntx-ticket__below-badge{
  margin:8px 0 0;
}

.ntx-ticket__below-badge--after-fee{
  margin:6px 0 0;
}

.ntx-row{
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 16px;
}

.ntx-input{
  width:100%;
  padding:12px;
  border:1px solid var(--muted);
  border-radius:12px;
  background:#fff;
  font-size:14px;
  /*outline:none;*/
}

.ntx-input:focus{
  border:2px solid var(--primary);
}

.ntx-check{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:5px 0px;
  font-size:12.5px;
  line-height:1.35;
  color:var(--muted);
}

.ntx-check input{
  margin-top:3px;
}

input[type="radio"] {
  width: 22px; /* Set width */
  height: 22px; /* Set height */
  background-color: var(--card); /* Background color */
  border: 2px solid var(--muted); /* Border styling */
  border-radius: 4px; /* Rounded corners for checkboxes */
}
input[type="radio"]:checked {
  background-color: var(--primary); /* Change background when selected */
}
input[type="radio"]:checked {
  background-color: var(--primary); /* Change background when selected */
}

/* =========================================================
   STICKY FOOTER
========================================================= */
.ntx-sticky{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:999;
  padding:12px 14px calc(12px + env(safe-area-inset-bottom));
  background:var(--bg);
  border-top:var(--border);
  backdrop-filter:saturate(140%) blur(8px);
  transform:translateZ(0);
  box-shadow:var(--cardShadow);
}

.ntx-sticky__inner{
  max-width:720px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.ntx-total{
  font-size:16px;
  font-weight:900;
}

.ntx-total small{
  display:block;
  margin-top:2px;
  font-size:11.5px;
  font-weight:700;
  color:var(--muted);
}

.ntx-cta{
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:2px!important;
  height: 37px!important;
  min-width:150px!important;
  padding:12px 12px!important;
  border:none!important;
  border-radius:999px!important;
  background:var(--primary)!important;
  color:var(--primaryText)!important;
  font-size:13px!important;
  font-weight:800!important;
  text-decoration:none!important;
  cursor:pointer!important;
  transition:transform .08s ease, filter .12s ease!important;
}

.ntx-cta:active{
  transform:scale(.98);
}

.ntx-cta[disabled]{
  opacity:.45;
  cursor:not-allowed;
}

.ntx-cta:hover{
  filter:brightness(.98);
}

#ntx-next-btn{
  text-decoration:none;
}

/* Nieuw sticky gedeelte */ 
.ntx-sticky__inner{
  max-width:720px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 1fr auto;
  align-items:center;
  gap:12px;
}

.ntx-sticky__left{
  display:flex;
  align-items:center;
  justify-content:flex-start;
}

.ntx-sticky__right{
  display:flex;
  align-items:center;
  justify-content:flex-end;
}

.ntx-cta--ghost{
  background:transparent!important;
  color:var(--text)!important;
  border:1px solid var(--muted)!important;
  min-width:auto!important;
}

/* =========================================================
   SWEET ALERT
========================================================= */
.swal2-border-radius-15 {
  -webkit-border-radius: var(--radius) !important;
  -moz-border-radius: var(--radius) !important;
  border-radius: var(--radius) !important;
}

.ntx-swal-confirm{
  background: var(--primary) !important;
  color: var(--primaryText) !important;
  border: 0 !important;
  border-radius: 999px !important;
  padding: 10px 18px !important;
  font-weight: 800 !important;
  box-shadow: none !important;
}


/* =========================================================
   CALENDAR ICON
========================================================= */
time.icon{
  font-size:.65em;
  display:block;
  position:relative;
  min-width:80px;
  max-width:80px;
  min-height:80px;
  max-height:80px;
  overflow:hidden;
  border-radius:.6em;
  background-color:var(--card);
  box-shadow:var(--cardShadow);
  -webkit-backface-visibility:hidden;
  -webkit-transform:rotate(0deg) skewY(0deg);
  -webkit-transform-origin:50% 10%;
  transform-origin:50% 10%;
}

time.icon *{
  display:block;
  width:100%;
  font-size:1em;
  font-style:normal;
  font-weight:bold;
  text-align:center;
}

time.icon strong{
  position:absolute;
  top:0;
  padding:.4em 0;
  color:var(--primaryText);
  background-color:var(--primary);
  border-bottom:1px dashed var(--primary);
  box-shadow:var(--cardShadow);
}

time.icon em{
  position:absolute;
  bottom:.1em;
  padding-top:.8em;
  padding-bottom:.8em;
  color:var(--text);
  border-radius: 0 0 .6em .6em; 
  border-left:var(--border);
  border-right:var(--border);
  border-bottom:var(--border);
  box-shadow:var(--cardShadow);
}

time.icon span{
  width:100%;
  padding-top:.8em;
  padding-bottom:.8em;
  color:var(--text);
  font-size:2.8em;
  letter-spacing:-.05em;
  border-left:var(--border);
  border-right:var(--border);
  box-shadow:var(--cardShadow);
}

time.icon:hover,
time.icon:focus{
  -webkit-animation:swing .6s ease-out;
  animation:swing .6s ease-out;
}

@media (max-width:576px){
  time.icon{
    font-size:.55em;
    box-shadow:var(--cardShadow);
  }
}

/* =========================================================
   UTILITIES
========================================================= */
.d-flex{ display:flex; }
.d-inline-flex{ display:inline-flex; }
.d-block{ display:block; }
.d-inline-block{ display:inline-block; }
.d-none{ display:none; }

.flex-row{ flex-direction:row; }
.flex-column{ flex-direction:column; }
.flex-row-reverse{ flex-direction:row-reverse; }
.flex-column-reverse{ flex-direction:column-reverse; }

.flex-wrap{ flex-wrap:wrap; }
.flex-nowrap{ flex-wrap:nowrap; }

.justify-content-start{ justify-content:flex-start; }
.justify-content-center{ justify-content:center; }
.justify-content-end{ justify-content:flex-end; }
.justify-content-between{ justify-content:space-between; }
.justify-content-around{ justify-content:space-around; }

.align-items-start{ align-items:flex-start; }
.align-items-center{ align-items:center; }
.align-items-end{ align-items:flex-end; }
.align-items-stretch{ align-items:stretch; }

.gap-1{ gap:4px; }
.gap-2{ gap:8px; }
.gap-3{ gap:12px; }
.gap-4{ gap:16px; }
.gap-5{ gap:24px; }

.flex-grow-1{ flex-grow:1; }
.flex-grow-0{ flex-grow:0; }

.w-100{ width:100%; }
.w-auto{ width:auto; }

.text-left{ text-align:left; }
.text-center{ text-align:center; }
.text-right{ text-align:right; }

.fs-5px{ font-size: 5px; }
.fs-6px{ font-size: 6px; }
.fs-7px{ font-size: 7px; }
.fs-8px{ font-size: 8px; }
.fs-9px{ font-size: 9px; }
.fs-10px{ font-size: 10px; }
.fs-11px{ font-size: 11px; }
.fs-12px{ font-size: 12px; }
.fs-13px{ font-size: 13px; }
.fs-14px{ font-size: 14px; }
.fs-15px{ font-size: 15px; }
.fs-16px{ font-size: 16px; }
.fs-17px{ font-size: 17px; }
.fs-18px{ font-size: 18px; }
.fs-19px{ font-size: 19px; }
.fs-20px{ font-size: 20px; }
.fs-21px{ font-size: 21px; }
.fs-22px{ font-size: 22px; }
.fs-23px{ font-size: 23px; }
.fs-24px{ font-size: 24px; }
.fs-25px{ font-size: 25px; }

.fw-100{ font-weight:100; }
.fw-200{ font-weight:200; }
.fw-300{ font-weight:300; }
.fw-400{ font-weight:400; }
.fw-500{ font-weight:500; }
.fw-600{ font-weight:600; }
.fw-700{ font-weight:700; }
.fw-800{ font-weight:800; }
.fw-900{ font-weight:900; }

.ms-1{ margin-left: 5px; }
.ms-2{ margin-left: 10px; }
.ms-3{ margin-left: 15px; }
.ms-4{ margin-left: 20px; }
.ms-5{ margin-left: 25px; }
.ms-6{ margin-left: 30px; }
.ms-7{ margin-left: 35px; }
.ms-8{ margin-left: 40px; }
.ms-9{ margin-left: 45px; }
.ms-10{ margin-left: 50px; }

.me-1{ margin-right: 5px; }
.me-2{ margin-right: 10px; }
.me-3{ margin-right: 15px; }
.me-4{ margin-right: 20px; }
.me-5{ margin-right: 25px; }
.me-6{ margin-right: 30px; }
.me-7{ margin-right: 35px; }
.me-8{ margin-right: 40px; }
.me-9{ margin-right: 45px; }
.me-10{ margin-right: 50px; }

.d-none { display: none !important; }

.primary-color { color: var(--primary) !important; }

@media (min-width:576px){
  .d-sm-flex{ display:flex; }
  .flex-sm-row{ flex-direction:row; }
  .flex-sm-column{ flex-direction:column; }
}

@media (min-width:768px){
  .d-md-flex{ display:flex; }
  .flex-md-row{ flex-direction:row; }
  .flex-md-column{ flex-direction:column; }
}

@media (min-width:1024px){
  .d-lg-flex{ display:flex; }
  .flex-lg-row{ flex-direction:row; }
  .flex-lg-column{ flex-direction:column; }
}

/* =========================================================
   DROPDOWNS (LANG / CURRENCY)
========================================================= */
.ntx-selectors{
  gap:12px;
  align-items:center;
}

.ntx-dd{
  position:relative;
}

.ntx-dd__native{
  position:absolute;
  inset:0;
  width:1px;
  height:1px;
  opacity:0;
  pointer-events:none;
}

.ntx-dd__btn{
  display:flex;
  align-items:center;
  gap:10px;
  min-height:40px;
  padding:8px 12px;
  border:var(--border);
  border-radius:999px;
  background:var(--card);
  color:var(--text);
  font-weight:700;
  cursor:pointer;
  user-select:none;
  box-shadow:0 10px 22px rgba(0,0,0,.10);
}

.ntx-dd__flag{
  width:23px;
  height:23px;
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:rgba(0,0,0,.04);
  font-size:16px;
}

.ntx-dd__text{
  font-size:14px;
  white-space:nowrap;
}

.ntx-dd__chev{
  margin-left:6px;
  font-size:18px;
  line-height:1;
  opacity:.55;
  color:var(--text);
  transform:rotate(90deg);
}

.ntx-dd.is-open .ntx-dd__chev{
  transform:rotate(-90deg);
}

.ntx-dd__menu{
  position:absolute;
  right:0;
  top:auto;
  bottom:calc(100% + 10px);
  width:min(280px, 85vw);
  max-height:min(360px, 55vh);
  overflow:auto;
  padding:8px;
  border:var(--border);
  border-radius:16px;
  background:var(--card);
  box-shadow:0 18px 45px rgba(0,0,0,.14);
  display:none;
  z-index:1500;
}

.ntx-dd.is-open .ntx-dd__menu{
  display:block;
}

.ntx-dd__item{
  width:100%;
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px;
  border:0;
  border-radius:12px;
  background:transparent;
  color:var(--text);
  font-weight:600;
  text-align:left;
  cursor:pointer;
}

.ntx-dd__item:hover{
  background:rgba(0,0,0,.04);
}

.ntx-dd__item.is-active{
  background:var(--primary);
  color:var(--primaryText);
}

.ntx-dd__brand,
.ntx-dd__hint{
  margin-top:6px;
  padding:8px 8px 6px;
  text-align:center;
}

.ntx-dd__brand{
  font-size:12px;
  font-weight:800;
  color:rgba(0,0,0,.45);
}

.ntx-dd__hint{
  font-size:12px;
  font-weight:600;
  color:rgba(0,0,0,.45);
}

.ntx-flag{
  width:22px;
  height:22px;
  flex:0 0 22px;
  object-fit:cover;
  border-radius:999px;
  box-shadow:0 4px 14px rgba(0,0,0,.10);
}

@media (max-width:576px){
  .ntx-dd__menu{
    max-height:min(360px, 55vh);
    overflow:auto;
  }
}

@media (max-width:520px){
  /*.ntx-selectors{
    width:100%;
  }*/

  .ntx-dd__btn{
    padding:8px 12px;
  }
}

/* =========================
   Cart trigger + drawer
========================= */

.ntx-total-wrap{
  display:flex;
  align-items:center;
  gap:12px;
}

.ntx-cart-trigger{
  position:fixed;
  left:14px;
  bottom:75px;
  width:42px;
  height:42px;
  border:var(--border);
  border-radius:999px;
  background:var(--card);
  color:var(--text);
  box-shadow:0 8px 20px rgba(0,0,0,.10);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  flex:0 0 auto;
  z-index: 100;
}

.ntx-cart-trigger__icon{
  font-size:18px;
  line-height:1;
}

.ntx-cart-trigger__badge{
  position:absolute;
  top:-4px;
  right:-4px;
  min-width:18px;
  height:18px;
  padding:0 5px;
  border-radius:999px;
  background:var(--primary);
  color:var(--primaryText);
  font-size:11px;
  font-weight:600;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 12px rgba(0,0,0,.16);
}

.ntx-cart-trigger__countdown{
  position:absolute;
  bottom:-4px;
  left:0px;
  width:42px;
  height:14px;
  padding:0 6px;
  border-radius:999px;
  background:var(--primary);
  color:var(--primaryText);
  font-size:9px;
  font-weight:400;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 12px rgba(0,0,0,.16);
}

.ntx-cart-drawer-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.35);
  z-index:1990;
}

.ntx-cart-drawer{
  position:fixed;
  top:0;
  right:0;
  width:min(400px, 92vw);
  height:100vh;
  background:var(--card);
  box-shadow:-12px 0 30px rgba(0,0,0,.18);
  z-index:2000;
  transform:translateX(100%);
  transition:transform .22s ease;
  display:flex;
  flex-direction:column;
  border-left:var(--border);
}

.ntx-cart-drawer.is-open{
  transform:translateX(0);
}

.ntx-cart-drawer__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 18px 14px;
  border-bottom:var(--muted);
}

.ntx-cart-drawer__title{
  margin:0;
  font-size:18px;
  font-weight:800;
}

.ntx-cart-drawer__close{
  border:0;
  background:transparent;
  font-size:28px;
  line-height:1;
  cursor:pointer;
  color:var(--text);
}

.ntx-cart-drawer__body{
  flex:1 1 auto;
  overflow:auto;
  padding:16px 18px;
}

.ntx-cart-drawer__foot{
  border-top:1px solid var(--muted);
  padding:16px 18px 20px;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.ntx-cart-breakdown{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding-bottom:14px;
  margin-bottom:2px;
  border-bottom:0px solid var(--muted);
}

.ntx-cart-breakdown__row{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  width:100%;
  font-size:15px;
  line-height:1.2;
}

.ntx-cart-breakdown__row span{
  color:var(--muted);
  font-weight:500;
  font-size:12px;
  flex:1 1 auto;
  min-width:0;
  text-align:left;
}

.ntx-cart-breakdown__row strong{
  color:var(--text);
  font-weight:800;
  font-size:12px;
  flex:0 0 auto;
  white-space:nowrap;
  text-align:right;
}

.ntx-cart-drawer__total{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
}

.ntx-cart-drawer__total small{
  color:var(--text);
  font-size:14px;
  font-weight:700;
}

.ntx-cart-drawer__total strong{
  font-size:20px;
  font-weight:900;
}

.ntx-cart-lines{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.ntx-cart-line{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  padding-bottom:14px;
  border-bottom:0px solid var(--muted);
}

.ntx-cart-line:last-child{
  border-bottom:none;
  padding-bottom:0;
}

.ntx-cart-line__meta{
  min-width:0;
}

.ntx-cart-line__title{
  font-size:12px;
  font-weight:800;
  margin-bottom:4px;
}

.ntx-cart-line__qty{
  font-size:12px;
  color:var(--muted);
}

.ntx-cart-line__price{
  font-size:12px;
  font-weight:800;
  white-space:nowrap;
}

body.ntx-drawer-open{
  overflow:hidden;
}

/* sticky right group */
.ntx-sticky__right{
  display:flex;
  align-items:center;
  gap:10px;
}

/* ghost button refinement */
.ntx-cta--ghost{
  background:var(--bg)!important;
  color:var(--text)!important;
  border:1px solid var(--muted)!important;
  box-shadow:none!important;
}

/* =========================
   Calendar visitdate
========================= */

.ntx-visitdate-card{
  padding:18px;
}

.ntx-calendar-shell{
  display:block;
  width:100%;
}

.ntx-calendar-main{
  width:100%;
}

.ntx-calendar-toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
  padding:0 2px;
}

.ntx-calendar-nav{
  width:46px;
  height:46px;
  border:1px solid rgba(0,0,0,.12);
  background:var(--card);
  color:var(--text);
  border-radius:14px;
  cursor:pointer;
  font-size:22px;
  font-weight:800;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 6px 18px rgba(0,0,0,.05);
  transition:transform .12s ease, box-shadow .18s ease, border-color .18s ease;
}

.ntx-calendar-nav:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 24px rgba(0,0,0,.08);
  border-color:rgba(0,0,0,.18);
}

.ntx-calendar-month{
  flex:1 1 auto;
  text-align:center;
  font-size:28px;
  line-height:1.1;
  font-weight:900;
  text-transform:capitalize;
  letter-spacing:-0.02em;
}

/* Kalender kader */
.ntx-calendar-grid{
  display:grid;
  grid-template-columns:repeat(7, minmax(0, 1fr));
  gap:10px;
  width:100%;
  padding:10px 0 0;
  border:0;
  background:transparent;
}

.ntx-calendar-weekday{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  font-size:14px;
  font-weight:800;
  color:var(--text);
  opacity:.9;
  text-transform:capitalize;
}

/* basis cell */
.ntx-calendar-cell{
  min-height:96px;
  border:0;
  background:transparent;
  padding:0;
}

.ntx-calendar-cell.is-empty{
  visibility:hidden;
  pointer-events:none;
}

/* dag button */
.ntx-calendar-day{
  width:100%;
  height:78px;
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  background:var(--card);
  padding:12px 12px 10px;
  text-align:left;
  cursor:pointer;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  align-items:flex-start;
  box-shadow:0 8px 22px rgba(0,0,0,.05);
  transition:
    transform .12s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    background .18s ease,
    opacity .18s ease;
}

.ntx-calendar-day:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(0,0,0,.08);
  border-color:rgba(0,0,0,.16);
}

.ntx-calendar-day.is-disabled{
  opacity:.35;
  cursor:not-allowed;
  box-shadow:none;
  background:rgba(0,0,0,.015);
}

.ntx-calendar-day.is-disabled:hover{
  transform:none;
  box-shadow:none;
}

.ntx-calendar-day.is-active{
  background:var(--primary);
  color:var(--primaryText);
  border-color:transparent;
  /*box-shadow:0 16px 30px rgba(164,30,247,.22);*/
}

.ntx-calendar-day__num{
  font-size:28px;
  line-height:1;
  font-weight:900;
  letter-spacing:-0.03em;
  color:inherit;
}

.ntx-calendar-day__price{
  font-size:15px;
  line-height:1.1;
  font-weight:700;
  color:var(--muted);
  margin-top:auto;
}

.ntx-calendar-day.is-active .ntx-calendar-day__price{
  color:var(--primaryText);
}

.ntx-calendar-day__crowd{
  width:100%;
  height:8px;
  border-radius:999px;
  margin-top:10px;
  background:#ddd;
  box-shadow:inset 0 1px 1px rgba(0,0,0,.06);
}

.ntx-calendar-day__crowd.is-quiet{ background:#7ccf8a; }
.ntx-calendar-day__crowd.is-normal{ background:#d2b14b; }
.ntx-calendar-day__crowd.is-busy{ background:#ef8d4f; }
.ntx-calendar-day__crowd.is-soldout{ background:#d45454; }

.ntx-calendar-legend{
  display:flex;
  flex-wrap:wrap;
  gap:14px 18px;
  margin-top:20px;
  padding-top:6px;
}

.ntx-calendar-legend__item{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:600;
  color:var(--text);
}

.ntx-crowd-dot{
  width:16px;
  height:10px;
  border-radius:999px;
  display:inline-block;
  box-shadow:inset 0 1px 1px rgba(0,0,0,.08);
}

.ntx-crowd-dot.is-quiet{ background:#7ccf8a; }
.ntx-crowd-dot.is-normal{ background:#d2b14b; }
.ntx-crowd-dot.is-busy{ background:#ef8d4f; }
.ntx-crowd-dot.is-soldout{ background:#d45454; }

/* Drawer onder kalender */
.ntx-visitdate-drawer{
  margin-top:24px;
  background:var(--card);
  border:1px solid rgba(0,0,0,.08);
  border-radius:22px;
  padding:20px;
  box-shadow:0 10px 28px rgba(0,0,0,.05);
  position:relative;
  top:auto;
}

.ntx-visitdate-drawer__empty{
  color:var(--muted);
  font-size:15px;
  line-height:1.5;
  padding:10px 2px;
}

.ntx-visitdate-drawer__date{
  font-size:22px;
  line-height:1.2;
  font-weight:900;
  margin-bottom:5px;
  text-transform:capitalize;
  color:var(--text);
}

.ntx-visitdate-timeslots{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
  margin:18px 0 18px;
}

.ntx-timeslot-option{
  min-height:96px;
  border:1px solid rgba(0,0,0,.08);
  background:var(--card);
  border-radius:18px;
  padding:16px 14px;
  cursor:pointer;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  gap:6px;
  text-align:left;
  box-shadow:0 8px 22px rgba(0,0,0,.05);
  transition:
    transform .12s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    background .18s ease;
}

.ntx-timeslot-option:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(0,0,0,.08);
  border-color:rgba(0,0,0,.16);
}

.ntx-timeslot-option > span{
  font-size:22px;
  line-height:1;
  font-weight:900;
  color:var(--text);
}

.ntx-timeslot-option small{
  color:var(--muted);
  font-size:13px;
  font-weight:600;
}

.ntx-timeslot-option.is-active{
  background:var(--primary);
  border-color:transparent;
  /*box-shadow:0 16px 30px rgba(164,30,247,.22);*/
}

.ntx-timeslot-option.is-active > span,
.ntx-timeslot-option.is-active small{
  color:var(--primaryText);
}

.ntx-timeslot-option.is-disabled{
  opacity:.42;
  cursor:not-allowed;
  box-shadow:none;
  background:rgba(0,0,0,.015);
}

.ntx-timeslot-option.is-disabled:hover{
  transform:none;
  box-shadow:none;
}

.ntx-timeslot-single{
  padding:16px 18px;
  border:1px solid rgba(0,0,0,.08);
  border-radius:16px;
  color:var(--muted);
  font-size:14px;
  background:rgba(0,0,0,.015);
}

.ntx-visitdate-crowd-card{
  margin-top:4px;
  margin-bottom:0;
}

.ntx-visitdate-crowd-card__inner{
  border:1px solid rgba(0,0,0,.08);
  border-radius:16px;
  padding:14px 16px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  background:rgba(0,0,0,.015);
}

/* card varianten voor crowd label */
.ntx-visitdate-crowd-card__inner.is-quiet{
  background:rgba(124,207,138,.10);
  border-color:rgba(124,207,138,.28);
}

.ntx-visitdate-crowd-card__inner.is-normal{
  background:rgba(210,177,75,.10);
  border-color:rgba(210,177,75,.28);
}

.ntx-visitdate-crowd-card__inner.is-busy{
  background:rgba(239,141,79,.10);
  border-color:rgba(239,141,79,.28);
}

.ntx-visitdate-crowd-card__inner.is-soldout{
  background:rgba(212,84,84,.10);
  border-color:rgba(212,84,84,.28);
}

/* optionele continue button in drawer */
#ntx-visitdate-continue{
  margin-top:18px;
  min-width:180px;
}

/* Desktop breedte voller benutten */
@media (min-width: 992px){

  .ntx-calendar-day{
    max-height:78px;
  }

  .ntx-calendar-day__num{
    font-size:24px;
  }
}

/* Tablet */
@media (max-width: 991px){
  .ntx-calendar-grid{
    gap:8px;
  }

  .ntx-calendar-cell{
    min-height:96px;
  }

  .ntx-calendar-day{
    min-height:78px;
    padding:10px;
    border-radius:16px;
  }

  .ntx-calendar-day__num{
    font-size:20px;
  }

  .ntx-calendar-day__price{
    font-size:13px;
  }

  .ntx-visitdate-timeslots{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 767px){
  .ntx-visitdate-card{
    padding:12px;
  }

  .ntx-calendar-toolbar{
    gap:10px;
    margin-bottom:14px;
  }

  .ntx-calendar-nav{
    width:40px;
    height:40px;
    border-radius:12px;
    font-size:19px;
  }

  .ntx-calendar-month{
    font-size:22px;
  }

  .ntx-calendar-grid{
    gap:6px;
  }

  .ntx-calendar-weekday{
    min-height:28px;
    font-size:12px;
  }

  .ntx-calendar-cell{
    min-height:78px;
  }

  .ntx-calendar-day{
    min-height:78px;
    padding:8px;
    border-radius:14px;
  }

  .ntx-calendar-day__num{
    font-size:19px;
  }

  .ntx-calendar-day__price{
    font-size:11px;
  }

  .ntx-calendar-day__crowd{
    height:6px;
    margin-top:8px;
  }

  .ntx-visitdate-drawer{
    margin-top:18px;
    padding:16px;
    border-radius:18px;
  }

  .ntx-visitdate-drawer__date{
    font-size:18px;
  }

  .ntx-visitdate-timeslots{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:10px;
  }

  .ntx-timeslot-option{
    min-height:84px;
    padding:14px 12px;
    border-radius:16px;
  }

  .ntx-timeslot-option > span{
    font-size:18px;
  }

  .ntx-timeslot-option small{
    font-size:12px;
  }

  .ntx-calendar-legend{
    gap:10px 14px;
  }

  .ntx-calendar-legend__item{
    font-size:12px;
  }
}

/* Kleine mobile */
@media (max-width: 420px){
  .ntx-calendar-month{
    font-size:19px;
  }

  .ntx-calendar-cell{
    min-height:58px;
  }

  .ntx-calendar-day{
    min-height:58px;
    padding:7px;
  }

  .ntx-calendar-day__num{
    font-size:15px;
  }

  .ntx-calendar-day__price{
    font-size:10px;
  }

  .ntx-visitdate-timeslots{
    grid-template-columns:1fr 1fr;
  }
}

/* quick date strip */
.ntx-visitdate-strip-wrap{
  margin-bottom:20px;
}

.ntx-visitdate-strip{
  display:grid;
  grid-template-columns:repeat(6, minmax(0, 1fr));
  gap:14px;
}

.ntx-visitdate-quick{
  min-height:170px;
  border:1px solid rgba(0,0,0,.08);
  background:var(--card);
  border-radius:18px;
  padding:16px 14px 14px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  text-align:center;
  cursor:pointer;
  box-shadow:0 8px 22px rgba(0,0,0,.05);
  transition:transform .12s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
  position:relative;
}

.ntx-visitdate-quick:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(0,0,0,.08);
}

.ntx-visitdate-quick.is-active{
  /*background:linear-gradient(180deg, rgba(164,30,247,.96) 0%, rgba(133,39,165,.96) 100%);*/
  border:3px solid var(--primary);
  /*box-shadow:0 16px 30px rgba(164,30,247,.22);*/
  /*color:#fff;*/
}

.ntx-visitdate-quick__top{
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.02em;
  opacity:.85;
  margin-bottom:12px;
}

.ntx-visitdate-quick__day{
  font-size:36px;
  line-height:1;
  font-weight:900;
  letter-spacing:-0.04em;
}

.ntx-visitdate-quick__month{
  font-size:16px;
  font-weight:700;
  margin-top:4px;
  opacity:.8;
}

.ntx-visitdate-quick__price{
  margin-top:auto;
  font-size:16px;
  font-weight:800;
  color:var(--text);
}

.ntx-visitdate-quick__price--muted{
  color:var(--muted);
  font-size:14px;
  font-weight:700;
}

.ntx-visitdate-quick.is-active .ntx-visitdate-quick__price,
.ntx-visitdate-quick.is-active .ntx-visitdate-quick__price--muted,
.ntx-visitdate-quick.is-active .ntx-visitdate-quick__month,
.ntx-visitdate-quick.is-active .ntx-visitdate-quick__top{
  /*color:#fff;*/
}

.ntx-visitdate-quick__crowd{
  width:100%;
  height:8px;
  border-radius:999px;
  margin-top:14px;
}

.ntx-visitdate-quick__crowd.is-quiet{ background:#7ccf8a; }
.ntx-visitdate-quick__crowd.is-normal{ background:#d2b14b; }
.ntx-visitdate-quick__crowd.is-busy{ background:#ef8d4f; }
.ntx-visitdate-quick__crowd.is-soldout{ background:#d45454; }

.ntx-visitdate-quick--calendar{
  border:2px dashed var(--primary);
  background:var(--card);
  color:var(--primary);
  justify-content:center;
}

.ntx-visitdate-quick__icon{
  font-size:24px;
  color:var(--primary);
  line-height:1;
  margin-bottom:14px;
}

.ntx-visitdate-quick__calendar-text{
  font-size:15px;
  font-weight:800;
  line-height:1.35;
}

/* calendar panel toggle */
.ntx-visitdate-calendar-panel{
  margin-top:6px;
}

.ntx-visitdate-calendar-panel.is-hidden{
  display:none;
}

.ntx-visitdate-backlink{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:18px;
  border:0;
  background:transparent;
  padding:0;
  color:var(--text);
  font-size:16px;
  font-weight:800;
  cursor:pointer;
}

/* timeslot panel onder kalender */
.ntx-visitdate-timeslot-panel{
  margin-top:24px;
  padding-top:20px;
  border-top:1px solid rgba(0,0,0,.08);
}

.ntx-visitdate-timeslot-panel__head{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:10px;
}

.ntx-visitdate-timeslot-panel__sub{
  font-size:13px;
  color:var(--muted);
  margin-bottom:18px;
  line-height:1.5;
}

@media (max-width: 991px){
  .ntx-visitdate-strip{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px){
  .ntx-visitdate-strip{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:10px;
  }

  .ntx-visitdate-quick{
    min-height:140px;
    padding:14px 12px;
  }

  .ntx-visitdate-quick__day{
    font-size:34px;
  }

  .ntx-visitdate-quick__month{
    font-size:14px;
  }

  .ntx-visitdate-quick__price{
    font-size:14px;
  }
}

/* disabled / past quick dates */
.ntx-visitdate-quick.is-disabled,
.ntx-visitdate-quick.is-past{
  opacity:.45;
  cursor:not-allowed;
  transform:none !important;
  box-shadow:0 8px 22px rgba(0,0,0,.04);
}

/* disabled / past calendar days */
.ntx-calendar-day.is-disabled,
.ntx-calendar-day.is-past{
  opacity:.35;
  cursor:not-allowed;
}

.ntx-calendar-day.is-past .ntx-calendar-day__crowd{
  opacity:.45;
}

/* disabled / past timeslots */
.ntx-timeslot-option.is-disabled,
.ntx-timeslot-option.is-past{
  opacity:.45;
  cursor:not-allowed;
}

/* nav button disabled */
.ntx-calendar-nav:disabled{
  opacity:.35;
  cursor:not-allowed;
  pointer-events:none;
}


/* =========================
   Checkout
========================= */

.ntx-checkout__section{
  margin-top:24px;
}

.ntx-checkout__section-title{
  margin:0 0 14px;
  font-size:15px;
  font-weight:800;
  color:var(--text);
}

.ntx-checkout__grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
  margin-bottom: 20px;
}

.ntx-checkout__col{
  min-width:0;
}

.ntx-checkout__col--full{
  grid-column:1 / -1;
}

.ntx-checkout__label{
  display:block;
  margin:0 0 8px;
  font-size:13px;
  font-weight:700;
  color:var(--text);
}

.ntx-check--block{
  padding:8px 0;
}

.ntx-check--switch{
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 0;
}

.ntx-checkout__options{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.ntx-checkout__company-field.is-hidden,
.ntx-checkout__sms-phone.is-hidden,
.ntx-checkout__whatsapp-phone.is-hidden{
  display:none;
}

#ntx-checkout-form textarea.ntx-input{
  min-height:110px;
  resize:vertical;
}

@media (max-width:767px){
  .ntx-checkout__grid{
    grid-template-columns:1fr;
  }
}


/* =========================
   Floating form fields
========================= */

.ntx-field{
  position:relative;
  margin:5px 0 0 0;
}

.ntx-field--floating .ntx-input{
  width:100%;
  min-height:50px;
  padding:22px 14px 10px;
  border:1px solid var(--muted);
  border-radius:14px;
  background:var(--card);
  color:var(--text);
  font-size:13px;
  font-weight:500;
  transition:border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.ntx-field--floating .ntx-input--textarea{
  min-height:110px;
  resize:vertical;
  padding-top:24px;
}

.ntx-field--floating .ntx-input--select{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size:6px 6px, 6px 6px;
  background-repeat:no-repeat;
}

.ntx-field--floating .ntx-input:focus{
  outline:none;
  border-color:var(--primary);
}

.ntx-field--floating .ntx-label{
  position:absolute;
  top:17px;
  left:14px;
  font-size:14px;
  line-height:1;
  color:var(--muted);
  pointer-events:none;
  background:var(--card);
  padding:0 6px;
  margin-left:-6px;
  transition:all .18s ease;
}

.ntx-field--floating .ntx-input:focus + .ntx-label,
.ntx-field--floating .ntx-input:not(:placeholder-shown) + .ntx-label,
.ntx-field--floating .ntx-input--select:not([value=""]) + .ntx-label,
.ntx-field--floating .ntx-input--select:focus + .ntx-label,
.ntx-field--floating textarea.ntx-input:not(:placeholder-shown) + .ntx-label{
  top:-8px;
  left:14px;
  font-size:12px;
  font-weight:700;
  color:var(--primary);
}

.ntx-field--floating select.ntx-input:valid + .ntx-label{
  top:-8px;
  left:14px;
  font-size:12px;
  font-weight:700;
  color:var(--primary);
}

.ntx-field__hint{
  margin-top:6px;
  font-size:12px;
  color:var(--muted);
}

.ntx-field__error{
  margin-top:6px;
  font-size:12px;
  color:#d92d20;
  font-weight:600;
}

/* =========================
   Voucher
========================= */

.ntx-voucher-card .ntx-card__body{
  padding-top:18px;
}

.ntx-voucher-panel{
  border:1px solid var(--muted);
  border-radius:18px;
  padding:14px;
}

.ntx-voucher-panel{
  border:0px solid var(--muted);
  border-radius:0px;
  padding:0px;
}

.ntx-voucher-panel__intro{
  display:flex;
  align-items:flex-start;
  gap:12px;
}

.ntx-voucher-panel__icon{
  width:42px;
  height:42px;
  min-width:42px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--card);
  border: 1px solid var(--primary);
  color:var(--primary);
  font-size:18px;
}

.ntx-voucher-panel__content{
  flex:1 1 auto;
  min-width:0;
}

.ntx-voucher-panel__title{
  font-size:15px;
  font-weight:800;
  line-height:1.2;
  margin:0 0 4px;
  color:var(--text);
}

.ntx-voucher-panel__text{
  margin:0;
  font-size:13px;
  color:var(--muted);
  line-height:1.45;
}

.ntx-voucher-toggle{
  appearance:none;
  border:0;
  background:transparent;
  padding:0;
  margin-left:6px;
  color:var(--primary);
  font-size:13px;
  font-weight:800;
  cursor:pointer;
  text-decoration:none;
}

.ntx-voucher-toggle:hover{
  opacity:.85;
}

.ntx-voucher-form-wrap{
  overflow:hidden;
  transition:max-height .22s ease, opacity .18s ease, margin-top .18s ease, transform .18s ease;
  transform-origin:top;
}

.ntx-voucher-form-wrap.is-collapsed{
  max-height:0;
  opacity:0;
  margin-top:0;
  transform:translateY(-4px);
}

.ntx-voucher-form-wrap.is-expanded{
  max-height:180px;
  opacity:1;
  margin-top:14px;
  transform:translateY(0);
}

.ntx-voucher-inline{
  display:flex;
  gap:10px;
  align-items:stretch;
}

.ntx-voucher-inline__field{
  flex:1 1 auto;
  min-width:0;
  position:relative;
}

.ntx-voucher-input{
  width:100%;
  height:56px;
  min-height:56px;
  border:1px solid var(--muted);
  border-radius:18px;
  background:var(--card);
  color: var(--text);
  padding:0 18px;
  font-size:15px;
  font-weight:600;
}

.ntx-voucher-input:focus{
  outline:none;
  border-color:var(--primary);
}

.ntx-voucher-inline__btn{
  width:56px;
  min-width:56px;
  height:56px;
  border:0;
  border-radius:999px;
  background:var(--primary);
  color:var(--primaryText);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(164,30,247,.20);
  transition:transform .08s ease, filter .12s ease;
}

.ntx-voucher-inline__btn:hover{
  filter:brightness(.98);
}

.ntx-voucher-inline__btn:active{
  transform:scale(.98);
}

.ntx-voucher-inline__btn i{
  font-size:20px;
  line-height:1;
}

.ntx-voucher-inline__btn:disabled{
  opacity:.45;
  cursor:not-allowed;
  box-shadow:none;
}

.ntx-voucher-feedback{
  margin-top:10px;
  font-size:13px;
  font-weight:600;
  color:#b91c1c;
}

.ntx-voucher-applied{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
  border:0px solid rgba(16,185,129,.18);
  background:var(--card);
  border-radius:var(--radius);
  padding:0px 0px;
}

.ntx-voucher-applied__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  font-weight:800;
  color:var(--primary);
  text-transform:uppercase;
  letter-spacing:.04em;
  margin-bottom:6px;
}

.ntx-voucher-applied__code{
  display:block;
  font-size:24px;
  line-height:1.05;
  font-weight:900;
  letter-spacing:-0.02em;
  color:var(--text);
  margin-bottom:6px;
}

.ntx-voucher-applied__note{
  font-size:14px;
  color:var(--muted);
  line-height:1.45;
}

.ntx-voucher-applied__remove{
  white-space:nowrap;
  border-radius:999px;
  min-height:44px;
  padding-inline:18px;
}

@media (max-width:767px){
  .ntx-voucher-panel__intro{
    align-items:flex-start;
  }

  .ntx-voucher-toggle{
    display:inline;
    margin-left:4px;
  }

  .ntx-voucher-inline{
    gap:8px;
  }

  .ntx-voucher-input{
    height:54px;
    min-height:54px;
    border-radius:16px;
  }

  .ntx-voucher-inline__btn{
    width:54px;
    min-width:54px;
    height:54px;
  }

  .ntx-voucher-applied__code{
    font-size:20px;
  }

  .ntx-voucher-applied__remove{
    width:100%;
  }
}

html[dir="rtl"] .ntx-voucher-panel__intro{
  flex-direction:row-reverse;
}

html[dir="rtl"] .ntx-voucher-panel__content,
html[dir="rtl"] .ntx-voucher-panel__title,
html[dir="rtl"] .ntx-voucher-panel__text{
  text-align:right;
}

html[dir="rtl"] .ntx-voucher-toggle{
  margin-left:0;
  margin-right:6px;
}

html[dir="rtl"] .ntx-voucher-inline{
  flex-direction:row-reverse;
}

html[dir="rtl"] .ntx-voucher-applied{
  direction:rtl;
}

html[dir="rtl"] .ntx-voucher-applied__eyebrow,
html[dir="rtl"] .ntx-voucher-applied__note{
  text-align:right;
}

/* =========================
   Checkbox / radio styling
========================= */

.ntx-choice{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:12px 14px;
  border:1px solid var(--muted);
  border-radius:14px;
  background:var(--card);
  cursor:pointer;
  transition:border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.ntx-choice-std{
  padding:0px 14px!important;
  border:0px solid var(--muted);	
}

.ntx-choice:hover{
  border-color:var(--primary);
}

.ntx-choice + .ntx-choice{
  margin-top:10px;
}

.ntx-choice input[type="checkbox"],
.ntx-choice input[type="radio"]{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  width:22px;
  height:22px;
  min-width:22px;
  margin:0;
  border:2px solid var(--muted);
  background:var(--card);
  position:relative;
  cursor:pointer;
  transition:border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.ntx-choice input[type="checkbox"]{
  border-radius:7px;
}

.ntx-choice input[type="radio"]{
  border-radius:999px;
}

.ntx-choice input[type="checkbox"]:checked,
.ntx-choice input[type="radio"]:checked{
  color:var(--primaryText);
  border-color:var(--primary);
  background:var(--primary);
}

.ntx-choice input[type="checkbox"]:checked::after{
  content:"";
  position:absolute;
  left:6px;
  top:2px;
  width:5px;
  height:10px;
  border:solid var(--card);
  border-width:0 2px 2px 0;
  transform:rotate(45deg);
}

.ntx-choice input[type="radio"]:checked::after{
  content:"";
  position:absolute;
  inset:5px;
  border-radius:999px;
  background:var(--card);
}

.ntx-choice__body{
  flex:1 1 auto;
  min-width:0;
}

.ntx-choice__title{
  display:block;
  font-size:14px;
  font-weight:700;
  color:var(--text);
  margin:0 0 4px;
}

.ntx-choice__desc{
  display:block;
  font-size:12px;
  line-height:1.4;
  color:var(--muted);
}

/* =========================
   Checkout address + phone
========================= */

.ntx-address-actions{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  margin:-4px 0 4px;
}

.ntx-link-btn{
  appearance:none;
  border:0;
  background:transparent;
  padding:0;
  color:var(--primary);
  font-size:13px;
  font-weight:800;
  cursor:pointer;
  text-decoration:none;
}

.ntx-link-btn:hover{
  opacity:.85;
}

.ntx-checkout__address-manual.is-hidden{
  display:none;
}


/* =========================
   Checkout phone + address
========================= */

.ntx-address-actions{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  margin:-6px 0 8px;
}

.ntx-link-btn{
  appearance:none;
  border:0;
  background:transparent;
  padding:0;
  color:var(--primary);
  font-size:13px;
  font-weight:800;
  cursor:pointer;
}

.ntx-checkout__address-manual.is-hidden{
  display:none;
}

.ntx-checkout__address-manual .ntx-input[readonly],
.ntx-checkout__address-manual .ntx-input:disabled{
  background:var(--card);
  color:var(--muted);
  cursor:not-allowed;
}

.ntx-phone-field{
  width:100%;
  min-width:0;
  margin:5px 0 0 0;
}

.ntx-phone-combo{
  display:flex;
  align-items:stretch;
  width:100%;
  min-width:0;
  min-height:50px;
  border:1px solid var(--muted);
  border-radius:16px;
  background:var(--card);
  overflow:visible;
  position:relative;
  z-index:1;
}

.ntx-phone-field__select{
  width:86px;
  min-width:86px;
  max-width:86px;
}

.ntx-phone-select2 + .select2-container{
  flex:0 0 86px !important;
  width:86px !important;
  min-width:86px !important;
  max-width:86px !important;
  border-right:1px solid rgba(0,0,0,.12);
  align-self:stretch !important;
}

.ntx-phone-select2 + .select2-container .select2-selection--single{
  min-height:50px !important;
  height:50px !important;
  border:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  display:flex !important;
  align-items:center !important;
  box-shadow:none !important;
}

.ntx-phone-select2 + .select2-container .select2-selection__rendered{
  height:50px !important;
  line-height:50px !important;
  padding-left:12px !important;
  padding-right:28px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:0 !important;
}

.ntx-phone-select2 + .select2-container .select2-selection__arrow{
  height:56px !important;
  right:8px !important;
}

.ntx-phone-combo__input-wrap{
  flex:1 1 auto !important;
  min-width:0 !important;
  width:100% !important;
  margin:0 !important;
  position:relative !important;
  overflow:visible !important;
  z-index:3 !important;
}

.ntx-phone-combo__input-wrap.ntx-field,
.ntx-phone-combo__input-wrap.ntx-field--floating{
  display:flex !important;
  align-items:stretch !important;
  min-width:0 !important;
  width:100% !important;
  border:0 !important;
  box-shadow:none !important;
  background:transparent !important;
  position:relative !important;
  z-index:3 !important;
}

.ntx-phone-combo__input-wrap .ntx-input,
.ntx-phone-field__input{
  width:100% !important;
  min-width:0 !important;
  height:50px !important;
  min-height:50px !important;
  border:0 !important;
  border-radius:0 !important;
  box-shadow:none !important;
  background:transparent !important;
  padding:22px 16px 10px 16px !important;
  position:relative !important;
  z-index:2 !important;
}

.ntx-phone-combo__input-wrap .ntx-label{
  position:absolute !important;
  top:17px !important;
  left:14px !important;
  right:auto !important;
  font-size:14px !important;
  line-height:1 !important;
  color:var(--muted) !important;
  pointer-events:none !important;
  background:var(--card) !important;
  padding:0 6px !important;
  margin-left:-6px !important;
  z-index:5 !important;
  transition:all .18s ease !important;
}

.ntx-phone-combo__input-wrap .ntx-input:focus + .ntx-label,
.ntx-phone-combo__input-wrap .ntx-input:not(:placeholder-shown) + .ntx-label{
  top:-8px !important;
  left:14px !important;
  font-size:12px !important;
  font-weight:700 !important;
  color:var(--primary) !important;
  background:var(--card) !important;
  padding:0 6px !important;
  margin-left:-6px !important;
  z-index:6 !important;
}

.ntx-phone-country-option{
  display:flex;
  align-items:center;
  gap:10px;
}

.ntx-phone-country-option--selected{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
}

.ntx-phone-country-option__flag{
  width:22px;
  height:22px;
  border-radius:50%;
  object-fit:cover;
  flex:0 0 22px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{
  background:rgba(164,30,247,.08);
  color:var(--text);
}

.select2-dropdown{
  border:1px solid rgba(0,0,0,.12);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 12px 34px rgba(0,0,0,.10);
}

.select2-search--dropdown{
  padding:12px;
}

.select2-search--dropdown .select2-search__field{
  border:1px solid rgba(0,0,0,.12);
  border-radius:12px;
  min-height:42px;
  padding:8px 12px;
}

@media (max-width:767px){
  .ntx-phone-combo{
    min-height:50px;
  }

  .ntx-phone-select2 + .select2-container .select2-selection--single{
    min-height:50px !important;
    height:50px !important;
  }

  .ntx-phone-select2 + .select2-container .select2-selection__rendered{
    height:50px !important;
    line-height:50px !important;
  }

  .ntx-phone-combo__input-wrap .ntx-input,
  .ntx-phone-field__input{
    height:50px !important;
    min-height:50px !important;
  }
}

/* Google Places dropdown zichtbaar maken binnen checkout cards/floating fields */
.ntx-wrap,
#pjax-container,
.ntx-checkout,
.ntx-checkout__grid,
.ntx-checkout__section,
.ntx-card,
.ntx-card__body,
.ntx-field,
.ntx-field--floating,
.ntx-address-actions,
[data-address-manual-wrap="1"]{
  overflow: visible !important;
}

.pac-container{
  z-index: 999999 !important;
  border: 1px solid rgba(0,0,0,.12) !important;
  border-radius: 14px !important;
  box-shadow: 0 12px 34px rgba(0,0,0,.12) !important;
  overflow: hidden !important;
  font-family: var(--font) !important;
  background: #fff !important;
}

.pac-item{
  padding: 10px 14px !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  cursor: pointer !important;
  background: #fff !important;
}

.pac-item:hover{
  background: rgba(164,30,247,.06) !important;
}

.pac-item-query{
  color: var(--text) !important;
  font-weight: 700 !important;
  font-size: 14px !important;
}

.pac-matched{
  font-weight: 800 !important;
}

.pac-logo:after{
  padding-right: 12px !important;
}

/* Extra safety voor floating field wrappers */
.ntx-field--floating > *{
  position: relative;
  z-index: 1;
}

.ntx-address-search-field{
  position: relative;
  overflow: visible !important;
}

.ntx-address-suggestions{
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 99999;
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 14px;
  box-shadow: 0 12px 34px rgba(0,0,0,.12);
  overflow: hidden;
}

.ntx-address-suggestions.is-hidden{
  display: none;
}

.ntx-address-suggestion{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  text-align: left;
  border: 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
  background: #fff;
  cursor: pointer;
}

.ntx-address-suggestion:last-of-type{
  border-bottom: 0;
}

.ntx-address-suggestion:hover{
  background: rgba(164,30,247,.06);
}

.ntx-address-suggestion__main{
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.ntx-address-suggestion__sub{
  font-size: 12px;
  color: var(--muted);
}

.ntx-address-suggestion__powered{
  padding: 10px 14px;
  font-size: 11px;
  color: var(--muted);
  text-align: right;
  background: #fafafa;
  border-top: 1px solid rgba(0,0,0,.06);
}

/* NTIX Spinner */
		.ntx-next-btn__spinner{
			display:none;
			align-items:center;
			justify-content:center;
			width:100%;
			height:100%;
		}

		#ntx-next-btn.is-loading{
			position:relative;
			pointer-events:none !important;
			opacity:.75 !important;
		}

		#ntx-next-btn.is-loading .ntx-next-btn__label{
			display:none;
		}

		#ntx-next-btn.is-loading .ntx-next-btn__spinner{
			display:flex !important;
		}

		.ntx-spin{
			display:inline-flex;
			animation: ntxSpin .85s linear infinite;
		}

		@keyframes ntxSpin{
			from { transform: rotate(0deg); }
			to   { transform: rotate(360deg); }
		}


/* =========================================================
   RTL support (Arabic)
========================================================= */

html[dir="rtl"] {
  direction: rtl;
}

html[dir="rtl"] body,
html[dir="rtl"] .ntx-wrap,
html[dir="rtl"] .ntx-card,
html[dir="rtl"] .ntx-card__head,
html[dir="rtl"] .ntx-card__body,
html[dir="rtl"] .ntx-subtitle,
html[dir="rtl"] .ntx-muted,
html[dir="rtl"] .ntx-total {
  text-align: right;
}

/* =========================
   HEADER
   Doel:
   - standaard LTR: kalender links, meta rechts
   - RTL: kalender rechts, meta links maar rechts uitgelijnd
========================= */

html[dir="rtl"] .ntx-header__content{
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-start;
}

html[dir="rtl"] .ntx-header__meta{
  align-items: flex-end;
  text-align: right;
}

html[dir="rtl"] time.icon{
  direction: ltr;
  flex: 0 0 80px;
}

html[dir="rtl"] .ntx-title,
html[dir="rtl"] .ntx-subtitle,
html[dir="rtl"] .ntx-header__address,
html[dir="rtl"] #ntx-countdown{
  width: 100%;
  text-align: right;
}

/* =========================
   TICKET ROWS
   Doel:
   - controls helemaal links
   - ticket meta helemaal rechts
========================= */

html[dir="rtl"] .ntx-ticket{
  direction: ltr;              /* layout links->rechts bepalen met order */
  display: flex;
  flex-direction: row;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px;
}

html[dir="rtl"] .ntx-ctrl{
  order: 1;                    /* links */
  flex: 0 0 auto;
  justify-content: flex-start;
  margin: 0;
}

html[dir="rtl"] .ntx-ticket__meta{
  order: 2;                    /* rechts */
  flex: 1 1 auto;
  min-width: 0;
  text-align: right;
  margin-left: auto;
  margin-right: 0;
}

html[dir="rtl"] .ntx-ticket__name,
html[dir="rtl"] .ntx-ticket__price,
html[dir="rtl"] .ntx-ticket__fee-note,
html[dir="rtl"] .ntx-ticket__desc{
  text-align: right;
}

/* controls zelf niet spiegelen: - qty + */
html[dir="rtl"] .ntx-qty{
  direction: ltr;
  display: flex;
  align-items: center;
  gap: 10px;
}

html[dir="rtl"] .ntx-badge{
  direction: ltr;
}

html[dir="rtl"] .ntx-ticket__fee-note{
  margin: 4px 0 0;
}

/* =========================
   FOOTER ROW (logo + selectors)
   Doel:
   - logo rechts
   - selectors links
========================= */

html[dir="rtl"] .ntx-wrap > .d-flex.flex-row.justify-content-between.align-items-center.mt-4{
  direction: ltr;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

html[dir="rtl"] .ntx-wrap > .d-flex.flex-row.justify-content-between.align-items-center.mt-4 > a,
html[dir="rtl"] .ntx-wrap > .d-flex.flex-row.justify-content-between.align-items-center.mt-4 > .ms-2{
  order: 2; /* logo rechts */
}

html[dir="rtl"] .ntx-selectors{
  order: 1; /* selectors links */
  direction: ltr;
  flex-direction: row;
}

/* =========================
   DROPDOWNS
========================= */

html[dir="rtl"] .ntx-dd__btn,
html[dir="rtl"] .ntx-dd__item{
  flex-direction: row-reverse;
}

html[dir="rtl"] .ntx-dd__item{
  text-align: right;
}

html[dir="rtl"] .ntx-dd__menu{
  left: 0;
  right: auto;
}

html[dir="rtl"] .ntx-dd__chev{
  margin-left: 0;
  margin-right: 6px;
}

/* =========================
   STICKY FOOTER
   Doel:
   - knop links
   - totaal rechts
========================= */

html[dir="rtl"] .ntx-sticky__inner{
  direction: ltr;              /* order stabiel maken */
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

html[dir="rtl"] .ntx-total{
  order: 2;                    /* rechts */
  text-align: right;
  margin-left: auto;
  margin-right: 0;
}

html[dir="rtl"] #ntx-next-btn{
  order: 1;                    /* links */
  direction: rtl;              /* tekst Arabisch goed */
  margin-left: 0;
  margin-right: 0;
}

/* Nieuw sticky gedeelte */
html[dir="rtl"] .ntx-sticky__inner{
  grid-template-columns: auto auto 1fr;
}

html[dir="rtl"] .ntx-sticky__left{
  order:3;
  justify-content:flex-end;
}

html[dir="rtl"] .ntx-total{
  order:2;
}

html[dir="rtl"] .ntx-sticky__right{
  order:1;
  justify-content:flex-start;
}

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

@media (max-width: 767px){
  html[dir="rtl"] .ntx-header__content{
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-start;
  }

  html[dir="rtl"] .ntx-ticket{
    direction: ltr;
    flex-direction: row;
    align-items: center !important;
    justify-content: space-between !important;
  }

  html[dir="rtl"] .ntx-sticky__inner{
    direction: ltr;
    flex-direction: row;
  }
}

/* =========================
   Cart trigger + drawer
========================= */

html[dir="rtl"] .ntx-total-wrap{
  flex-direction:row-reverse;
}

html[dir="rtl"] .ntx-cart-trigger__badge{
  right:auto;
  left:-4px;
}

html[dir="rtl"] .ntx-cart-drawer{
  right:auto;
  left:0;
  transform:translateX(-100%);
  box-shadow:12px 0 30px rgba(0,0,0,.18);
}

html[dir="rtl"] .ntx-cart-drawer.is-open{
  transform:translateX(0);
}

html[dir="rtl"] .ntx-cart-line,
html[dir="rtl"] .ntx-cart-drawer__total{
  direction:rtl;
}

html[dir="rtl"] .ntx-cart-line__meta,
html[dir="rtl"] .ntx-cart-drawer__title{
  text-align:right;
}

html[dir="rtl"] .ntx-cart-breakdown__row span{
  text-align:right;
}

html[dir="rtl"] .ntx-cart-breakdown__row strong{
  text-align:left;
}





/* =========================================================
   EMBED MODE
========================================================= */

html.ntx-embed-mode,
body.ntx-embed-mode{
  height:auto !important;
  min-height:0 !important;
  overflow-x:hidden !important;
  overflow-y:hidden !important;
}

html.ntx-embed-mode body{
  padding-bottom:0 !important;
}

html.ntx-embed-mode body::before{
  position:absolute !important;
  inset:0 !important;
  min-height:100% !important;
}

html.ntx-embed-mode #ntix_embed_root{
  position:relative;
  display:block;
  width:100%;
  min-height:0;
  overflow:visible !important;
}

html.ntx-embed-mode .ntx-wrap{
  padding-bottom:24px !important;
}

/* Sticky footer moet in embed mode onderdeel zijn van document flow */
html.ntx-embed-mode .ntx-sticky,
html.ntx-embed-mode body .ntx-sticky,
html.ntx-embed-mode #pjax-container .ntx-sticky{
  position:relative !important;
  left:auto !important;
  right:auto !important;
  bottom:auto !important;
  top:auto !important;
  inset:auto !important;
  width:100% !important;
  margin-top:18px !important;
  padding:12px 0 0 0 !important;
  box-shadow:none !important;
  z-index:1 !important;
  transform:none !important;
}

/* Cart trigger niet fixed in embed */
html.ntx-embed-mode .ntx-cart-trigger{
  position:absolute !important;
  left:10px !important;
  bottom:10px !important;
}

/* Drawer/backdrop mogen overlay blijven */
html.ntx-embed-mode .ntx-cart-drawer-backdrop{
  position:fixed !important;
}

html.ntx-embed-mode .ntx-cart-drawer{
  position:fixed !important;
  height:100dvh !important;
}

/* Meetbaarheid waarborgen */
html.ntx-embed-mode #pjax-container,
html.ntx-embed-mode .ntx-card,
html.ntx-embed-mode .ntx-visitdate-card,
html.ntx-embed-mode .ntx-calendar-shell,
html.ntx-embed-mode .ntx-calendar-main,
html.ntx-embed-mode .ntx-visitdate-strip-wrap,
html.ntx-embed-mode .ntx-visitdate-calendar-panel,
html.ntx-embed-mode .ntx-visitdate-timeslot-panel{
  overflow:visible !important;
}

@media (max-width: 767px){
  html.ntx-embed-mode .ntx-sticky__inner{
    display:grid !important;
    grid-template-columns:1fr auto !important;
    align-items:center !important;
    gap:12px !important;
  }
}

/* =========================================================
   EMBED MODE POLISH
========================================================= */

html.ntx-embed-mode .ntx-wrap{
  padding-bottom: 18px !important;
}

/* Footer row onder content iets rustiger */
html.ntx-embed-mode .ntx-wrap > .d-flex.flex-row.justify-content-between.align-items-center.mt-4{
  margin-top: 14px !important;
  padding: 0 6px;
  position: relative;
  z-index: 3;
}

/* Sticky footer in embed als nette floating card */
html.ntx-embed-mode .ntx-sticky,
html.ntx-embed-mode body .ntx-sticky,
html.ntx-embed-mode #pjax-container .ntx-sticky{
  position: relative !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  top: auto !important;
  inset: auto !important;
  width: 100% !important;
  margin: 18px 0 0 0 !important;
  padding: 0 !important;
  border-radius: var(--radius) !important;
  border: 0 !important;
  z-index: 1 !important;
  transform: none !important;
}

html.ntx-embed-mode .ntx-sticky__inner{
  max-width: 100% !important;
  margin: 0 !important;
  padding: 28px 28px !important;
  border-radius: var(--radius) !important;
  border: var(--border) !important;
  background: var(--card) !important;
  backdrop-filter: blur(10px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(10px) saturate(140%) !important;
  box-shadow: 0 10px 28px rgba(0,0,0,.08) !important;
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  align-items: center !important;
  gap: 14px !important;
}

html.ntx-embed-mode .ntx-sticky__left{
  min-width: 0;
}

html.ntx-embed-mode .ntx-sticky__right{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 10px !important;
}

html.ntx-embed-mode .ntx-total{
  font-size: 18px !important;
  font-weight: 900 !important;
}

html.ntx-embed-mode .ntx-total small{
  font-size: 12px !important;
  margin-bottom: 2px !important;
}

html.ntx-embed-mode #ntx-next-btn,
html.ntx-embed-mode #ntx-back-btn{
  min-width: 150px;
  height: 48px;
  border-radius: 999px;
  box-shadow: none;
}

html.ntx-embed-mode #ntx-back-btn{
  min-width: 48px;
  width: 48px;
  padding: 0;
}

/* Cart trigger compacter en visueel in verhouding */
html.ntx-embed-mode .ntx-cart-trigger{
  position: absolute !important;
  left: 0px !important;
  bottom: 15px !important;
  width: 46px !important;
  height: 46px !important;
  border-radius: 999px !important;
  border: var(--border) !important;
  background: var(--card) !important;
  box-shadow: 0 8px 22px rgba(0,0,0,.10) !important;
  z-index: 25 !important;
}

html.ntx-embed-mode .ntx-cart-trigger__icon{
  font-size: 18px !important;
}

html.ntx-embed-mode .ntx-cart-trigger__badge{
  top: -5px !important;
  right: -5px !important;
  min-width: 19px !important;
  height: 19px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
}

html.ntx-embed-mode .ntx-cart-trigger__countdown{
  bottom: -6px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: auto !important;
  min-width: 40px !important;
  height: 16px !important;
  padding: 0 7px !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  border-radius: 999px !important;
  box-shadow: 0 4px 12px rgba(0,0,0,.16) !important;
}

/* Logo iets rustiger in embed */
html.ntx-embed-mode .footer_logo{
  width: 110px !important;
  opacity: .95;
}

/* Dropdowns iets compacter naast sticky card layout */
html.ntx-embed-mode .ntx-dd__btn{
  min-height: 42px;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

html.ntx-embed-mode .footer_logo_url {
	position: relative !important;
}
html.ntx-embed-mode .footer_logo {
	position: absolute !important;
	left: -70px !important;
	bottom: 80px !important;
	width: 80px !important;
	transform: rotate(270deg) !important;
}

/* Mobiele embed layout */
@media (max-width: 767px){
  html.ntx-embed-mode .ntx-sticky__inner{
    grid-template-columns: 1fr auto !important;
    align-items: stretch !important;
    gap: 12px !important;
    padding: 28px !important;
  }

  html.ntx-embed-mode .ntx-sticky__left{
    justify-content: flex-start !important;
  }

  html.ntx-embed-mode .ntx-sticky__right{
    width: 100% !important;
    justify-content: flex-end !important;
  }

  html.ntx-embed-mode #ntx-next-btn{
    min-width: 148px;
    height: 46px;
  }

  html.ntx-embed-mode .ntx-cart-trigger{
    left: 10px !important;
    bottom: 10px !important;
    width: 44px !important;
    height: 44px !important;
  }

  html.ntx-embed-mode .ntx-wrap > .d-flex.flex-row.justify-content-between.align-items-center.mt-4{
    padding: 0 2px;
  }

  html.ntx-embed-mode .footer_logo {
	position: absolute !important;
	left: 50px !important;
	bottom: -10px !important;
	width: 80px !important;
	transform: rotate(0deg) !important;
  }
	
}

/* =========================================================
   EMBED MODE - HIDE IFRAME DRAWER
========================================================= */

html.ntx-embed-mode .ntx-cart-drawer,
html.ntx-embed-mode .ntx-cart-drawer-backdrop{
  display: none !important;
}




/* =========================
   ORDER PAGE
   ========================= */

.ntx-order-page {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ntx-order-grid {
    display: grid;
    gap: 18px;
}

.ntx-order-top-status {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.ntx-order-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    font-weight: 800;
    background: rgba(0,0,0,.06);
    color: var(--text);
}

.ntx-order-badge--success {
    background: rgba(40, 167, 69, .12);
    color: #2f8f4e;
}

.ntx-order-badge--danger {
    background: rgba(220, 53, 69, .12);
    color: #b42318;
}

.ntx-order-badge--pending {
    background: rgba(164, 30, 247, .12);
    color: var(--primary);
}

.ntx-order-note {
    color: var(--muted);
    font-size: 14px;
}

.ntx-order-shell {
    position: relative;
}

.ntx-order-tabs-wrap {
    position: relative;
    z-index: 3;
    margin: 0;
    padding: 0 22px;
}

.ntx-order-tabs {
    display: flex;
    align-items: flex-end;
    gap: 0;
    overflow-x: auto;
    overflow-y: visible;
    padding-left: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.ntx-order-tabs::-webkit-scrollbar {
    display: none;
}

.ntx-order-tab {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 20px;
    margin-bottom: 0;
    margin-left: -10px;
    border: 1px solid rgba(0,0,0,.08);
    border-bottom: 1px solid rgba(0,0,0,.08);
    border-radius: 18px 18px 0 0;
    background: #ffffff;
	background-image: linear-gradient(to bottom, rgba(255,255,255,1), rgba(248,248,248,1));
    color: rgba(0,0,0,.72);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease, border-color .18s ease;
    box-shadow: 0 -2px 8px rgba(0,0,0,.05);
    z-index: 1;
}

.ntx-order-tab:first-child {
    margin-left: 0;
}

.ntx-order-tab:nth-child(1) {
    z-index: 3;
}

.ntx-order-tab:nth-child(2) {
    z-index: 2;
}

.ntx-order-tab:nth-child(3) {
    z-index: 1;
}

.ntx-order-tab:hover {
    background: #ffffff;
    color: var(--text);
    box-shadow: 0 -4px 14px rgba(0,0,0,.07);
    z-index: 5;
}

.ntx-order-tab__label {
    position: relative;
    top: -1px;
}

.ntx-order-tab.is-active {
    background: var(--card);
	background-image: none;
    color: var(--primary);
    border-color: rgba(0,0,0,.08);
    border-bottom-color: var(--card);
    box-shadow: 0 -6px 18px rgba(0,0,0,.06);
    z-index: 10;
}

.ntx-order-tab.is-active::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 0;
    height: 3px;
    border-radius: 999px;
    background: var(--card);
}

.ntx-order-content-card {
    position: relative;
    z-index: 2;
    margin-top: -1px;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
    box-shadow: var(--cardShadow);
}

.ntx-order-panel {
    display: none;
    animation: ntxOrderFade .18s ease;
}

.ntx-order-panel.is-active {
    display: block;
}

@keyframes ntxOrderFade {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ntx-order-toolbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.ntx-order-summary-table {
    display: grid;
    gap: 0;
}

.ntx-order-summary-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.ntx-order-summary-row:last-child {
    border-bottom: none;
}

.ntx-order-summary-label {
    color: var(--text);
    opacity: .8;
}

.ntx-order-summary-value {
    font-weight: 700;
    text-align: left;
}

.ntx-order-products-head,
.ntx-order-product-row {
    display: grid;
    grid-template-columns: minmax(220px, 1.35fr) minmax(180px, 1fr) minmax(170px, .8fr);
    gap: 24px;
    align-items: top;
}

.ntx-order-products-head {
	font-size: 17px;
    font-weight: 800;
    padding: 0 12px 14px;
    color: var(--text);
}

.ntx-order-product-row {
    padding: 22px 12px;
    border-top: 1px solid rgba(0,0,0,.08);
    border-radius: 18px;
    transition: background .18s ease, box-shadow .18s ease;
}

.ntx-order-product-row:hover {
    background: rgba(255,255,255,.42);
}

.ntx-order-product-row:first-child {
    border-top: 0;
    padding-top: 18px;
}

.ntx-order-product-title {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.15;
}

.ntx-order-product-sub {
    color: var(--text);
    opacity: .78;
    line-height: 1.6;
    font-size: 12px;
}

.ntx-order-product-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    justify-content: center;
}

.ntx-order-action-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.ntx-order-product-actions .ntx-wallet-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    max-width: 100%;
    text-decoration: none;
}

.ntx-order-product-actions .ntx-wallet-btn img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.ntx-order-empty {
    color: var(--muted);
    padding: 8px 0;
}

.ntx-ticket-carousel {
    width: 100%;
}

.ntx-ticket-cell {
    width: 100%;
    max-width: 100%;
    margin-right: 14px;
    padding: 0 2px;
    box-sizing: border-box;
}

.ntx-ticket-pass {
    overflow: hidden;
    border-radius: calc(var(--radius) + 4px);
    background: var(--card);
    box-shadow: var(--cardShadow);
    border: 1px solid rgba(0,0,0,.06);
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
}

.ntx-ticket-pass__top {
    padding: 18px 18px 8px;
    text-align: center;
}

.ntx-ticket-qr-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.ntx-ticket-qr-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    padding: 14px;
    width: min(100%, 260px);
    max-width: 260px;
    box-sizing: border-box;
}

.ntx-ticket-qr-wrap img {
    width: 200px;
}

.ntx-ticket-qr-card img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.ntx-ticket-code {
    font-size: 13px;
    line-height: 1.35;
    word-break: break-all;
    font-weight: 700;
    max-width: 280px;
    margin: 0 auto;
    text-align: center;
}

.ntx-ticket-validity {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.ntx-ticket-validity > div {
    min-width: 110px;
}

.ntx-ticket-validity-label {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: .04em;
}

.ntx-ticket-validity-value {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.ntx-ticket-state {
    margin-top: 18px;
}

.ntx-ticket-state .ntx-cta,
.ntx-ticket-state .ntx-cta--ghost {
    min-width: 150px;
    pointer-events: none;
}

.ntx-ticket-separator {
    position: relative;
    height: 16px;
    margin: 0 18px;
}

.ntx-ticket-separator::before {
    content: '';
    position: absolute;
    inset: 7px 0 auto 0;
    border-top: 2px dashed rgba(0,0,0,.08);
}

.ntx-ticket-bottom {
    padding: 18px 18px 0;
    text-align: center;
}

.ntx-ticket-attendee {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.ntx-ticket-footer {
    padding: 18px 16px;
    background: var(--primary);
    color: var(--primaryText);
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 0 0 calc(var(--radius) + 4px) calc(var(--radius) + 4px);
}

.ntx-order-invoice-wrap {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(0,0,0,.08);
}

.ntx-order-invoice-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
}

.ntx-order-help {
    text-align: center;
}

.ntx-order-help__title {
    font-size: 18x;
    font-weight: 800;
    margin: 0 0 24px;
}

.ntx-order-help__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.ntx-order-loader {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.ntx-order-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0,0,0,.15);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: ntx-order-spin 1s linear infinite;
}

@keyframes ntx-order-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 920px) {
    .ntx-order-products-head {
        display: none !important;
    }

    .ntx-order-product-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .ntx-order-product-actions {
        align-items: stretch;
    }

    .ntx-order-action-btns {
        align-items: stretch;
    }

    .ntx-order-help__actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .ntx-order-tabs-wrap {
        padding: 0 10px;
    }

	.ntx-order-tabs {
		gap: 0;
	}

	.ntx-order-tab {
		min-height: 46px;
		padding: 0 14px;
		margin-left: -8px;
		border-radius: 14px 14px 0 0;
		font-size: 14px;
	}

	.ntx-order-tab:first-child {
		margin-left: 0;
	}

    .ntx-order-content-card {
        border-top-left-radius: 18px;
        border-top-right-radius: 18px;
    }

    .ntx-order-summary-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .ntx-ticket-cell {
        margin-right: 10px;
        padding: 0;
    }

    .ntx-ticket-pass {
        max-width: 100%;
    }

    .ntx-ticket-pass__top {
        padding: 14px 14px 8px;
    }

    .ntx-ticket-qr-card {
        width: min(100%, 220px);
        max-width: 220px;
        padding: 12px;
    }

    .ntx-ticket-qr-wrap img {
        width: 100%;
    }

    .ntx-ticket-code {
        max-width: 220px;
        font-size: 12px;
    }

    .ntx-ticket-validity {
        gap: 16px;
    }

    .ntx-ticket-validity > div {
        min-width: 92px;
    }

    .ntx-ticket-validity-value {
        font-size: 17px;
    }

    .ntx-ticket-attendee {
        font-size: 16px;
    }

    .ntx-order-invoice-row {
        grid-template-columns: 1fr;
    }

    .ntx-order-help__title {
        font-size: 28px;
    }
}

.ntx-order-state-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
	min-width: 150px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    background: rgba(0,0,0,.06);
    color: var(--text);
}

.ntx-order-state-chip.is-invited {
    background: rgba(164, 30, 247, .12);
    color: var(--primary);
}

.ntx-order-state-chip.is-claimed {
    background: rgba(40, 167, 69, .12);
    color: #2f8f4e;
}

.ntx-order-personalization-note {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.45;
    color: var(--muted);
}

.ntx-order-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.38);
    z-index: 3000;
}

.ntx-order-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    z-index: 3001;
}

.ntx-order-modal-backdrop[hidden],
.ntx-order-modal[hidden] {
    display: none !important;
}

.ntx-order-modal__dialog {
    width: min(100%, 520px);
    background: var(--card);
    border-radius: var(--radius);
	border: var(--border);
    box-shadow: 0 22px 60px rgba(0,0,0,.18);
    overflow: hidden;
}

.ntx-order-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px 14px;
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.ntx-order-modal__title {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
}

.ntx-order-modal__close {
    border: 0;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: var(--text);
}

.ntx-order-modal__body {
    padding: 20px 22px;
    display: grid;
    gap: 14px;
}

.ntx-order-modal__foot {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 0 22px 22px;
}


/* =========================
   CLAIM PAGE
   ========================= */

#ntx-claim-form {
    display: grid;
    gap: 14px;
}

#ntx-claim-form {
  display: block;
}

#ntx-claim-form .ntx-checkout__grid {
  margin-top: 0;
}

.ntx-claim-actions {
  margin-top: 22px;
}

#ntx-claim-submit {
  position: relative;
  min-width: 150px;
}

.ntx-claim-btn__spinner {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

#ntx-claim-submit.is-loading {
  pointer-events: none !important;
  opacity: .75 !important;
}

#ntx-claim-submit.is-loading .ntx-claim-btn__label {
  display: none;
}

#ntx-claim-submit.is-loading .ntx-claim-btn__spinner {
  display: inline-flex !important;
}

#ntx-claim-success .ntx-ticket-pass {
  margin-top: 4px;
}

#ntx-claim-root .ntx-checkout__section-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
}

#ntx-claim-root .ntx-checkout__address-manual {
  margin-top: 4px;
}

#ntx-claim-root .ntx-order-action-btns .ntx-cta {
  min-width: 160px;
}

@media (max-width: 767px) {
  .ntx-claim-actions .ntx-cta {
    width: 100%;
  }
}