.hvc-checkout-app {
  --hvc-orange: #eb5f12;
  --hvc-text: #1f2933;
  --hvc-muted: #667085;
  --hvc-border: #e5e7eb;
  --hvc-soft: #f8fafc;
  --hvc-hover-background: rgb(255, 242, 234);
  font-family: Montserrat, sans-serif;
  color: var(--hvc-text);
}

.hvc-checkout-cart {
  --hvc-cart-orange: #eb5f12;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--hvc-cart-orange);
  font-family: Montserrat, sans-serif;
  line-height: 1;
  text-decoration: none;
  vertical-align: middle;
}

[data-row-id] a.hvc-checkout-cart,
[data-row-id] a.hvc-checkout-cart:hover,
[data-row-id] a.hvc-checkout-cart:focus {
  color: var(--hvc-cart-orange);
}

.hvc-checkout-cart:hover,
.hvc-checkout-cart:focus {
  color: var(--hvc-cart-orange);
  background: transparent;
  outline: 0;
  text-decoration: none;
}

.hvc-cart-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  font-size: 25px;
}

.hvc-cart-count {
  position: absolute;
  top: -4px;
  right: -5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 19px;
  height: 19px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--hvc-cart-orange);
  color: #fff;
  box-shadow: 0 0 0 2px #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.hvc-checkout-cart.is-empty .hvc-cart-count {
  display: none;
}

.nv-html-content:has(.hvc-checkout-cart) {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.header--row .item--inner:has(.hvc-checkout-cart),
.header--row .nv-html-content:has(.hvc-checkout-cart),
.header--row .nv-html-content p:has(.hvc-checkout-cart) {
  display: inline-flex;
  align-items: center;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.header--row .hvc-checkout-cart {
    top: 17px;
    right: 8px;
}

.hvc-shell {
  margin: 0 auto;
  padding: 20px 0;
}

.hvc-progress {
  display: grid;
  grid-template-columns: 40px minmax(48px, 1fr) 40px minmax(48px, 1fr) 40px;
  align-items: center;
  gap: 28px;
  max-width: 940px;
  margin: 0 auto 38px;
}

.hvc-progress-step {
  display: block;
  width: 20px;
  height: 20px;
  justify-self: center;
  border-radius: 50%;
  background: #b8b4b4;
  transition: background-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.hvc-progress-step.is-active {
  background: var(--hvc-orange);
}

.hvc-progress-step.is-animating {
  animation: hvc-progress-pop 0.35s cubic-bezier(0.2, 0.9, 0.25, 1.35);
  animation-delay: 0.35s;
  animation-fill-mode: both;
}

.hvc-progress-line {
  position: relative;
  display: block;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: #b8b4b4;
}

.hvc-progress-line::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #111;
  transform: scaleX(0);
  transform-origin: left center;
}

.hvc-progress-line.is-active::after {
  transform: scaleX(1);
}

.hvc-progress-line.is-animating::after {
  animation: hvc-progress-draw 0.35s ease-out both;
}

@keyframes hvc-progress-pop {
  0% {
    background: #b8b4b4;
    box-shadow: 0 0 0 0 rgba(235, 95, 18, 0);
    transform: scale(0.72);
  }
  60% {
    background: var(--hvc-orange);
    box-shadow: 0 0 0 8px rgba(235, 95, 18, 0.14);
    transform: scale(1.28);
  }
  100% {
    background: var(--hvc-orange);
    box-shadow: 0 0 0 0 rgba(235, 95, 18, 0);
    transform: scale(1);
  }
}

@keyframes hvc-progress-draw {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hvc-progress-step,
  .hvc-progress-step.is-animating,
  .hvc-progress-line.is-animating::after {
    animation: none;
    transition: none;
  }

  .hvc-progress-step.is-animating {
    background: var(--hvc-orange);
  }
}

.hvc-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: start;
}

.hvc-intro {
  margin-bottom: 24px;
}

.hvc-intro h2,
.hvc-success h2 {
  margin: 0 0 10px;
  color: var(--hvc-orange);
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hvc-intro p,
.hvc-muted {
  margin: 0;
  color: var(--hvc-muted);
}

.hvc-flow-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  color: var(--hvc-muted);
  font-size: 14px;
}

.hvc-choice-grid,
.hvc-course-list,
.hvc-stack {
  display: grid;
  gap: 22px;
}

.hvc-choice-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hvc-card,
.hvc-summary,
.hvc-success,
.hvc-alert,
.hvc-empty {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--hvc-border);
  box-shadow: 0 18px 40px rgba(121, 121, 121, 0.06);
}

.hvc-card {
  padding: 30px;
  border: 1px solid var(--hvc-border);
  box-shadow: none !important;
}

.hvc-choice {
  appearance: none;
  text-align: left;
  cursor: pointer;
  color: inherit;
  border: 1px solid var(--hvc-border);
  outline: 0;
}

.hvc-choice,
.hvc-session,
.hvc-private-option {
  transition: 
    background-color 0.2s ease, 
    box-shadow 0.2s ease, 
    transform 0.2s ease;
}

.hvc-choice-title {
  font-family: Montserrat, sans-serif;
  display: block;
  margin-bottom: 8px;
  color: var(--hvc-orange);
  font-size: 22px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.hvc-choice span {
  font-family: Montserrat, sans-serif;
  transition: color 0.2s ease;
}


.hvc-choice-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  margin-bottom: 25px;
  border-radius: 16px;
  background: Var(--hvc-orange);
  color: var(--hvc-soft);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.hvc-choice-icon .iconify {
  width: 50px;
  height: 50px;
  font-size: 40px;
  display: inline-block;
  transition: inherit;
}


.hvc-choice:hover span,
.hvc-choice:focus-visible span {
  color: var(--hvc-soft);
}

.hvc-choice:hover {
  border-color: rgba(235, 95, 18, 0.22);
  background: var(--hvc-orange);
  color: var(--hvc-soft);
}

.hvc-choice:focus-visible {
  border-color: rgba(235, 95, 18, 0.45);
  outline: 0;
}

.hvc-choice:hover .hvc-choice-icon,
.hvc-choice:focus-visible .hvc-choice-icon {
  background: var(--hvc-soft);
  color: var(--hvc-orange);
}

.hvc-choice:active {
  border-color: rgba(235, 95, 18, 0.22);
  transform: translateY(2px);
  box-shadow: inset 0 2px 0 rgba(31, 41, 51, 0.12);
  transition-duration: 0.08s;
}

.hvc-course-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}

.hvc-course {
  position: relative;
  scroll-margin-top: 100px;
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  column-gap: 30px;
  row-gap: 0;
  align-items: stretch;
  border-color: #b8b1af;
  border-radius: 16px;
  padding: 0 28px 0 0;
  overflow: hidden;
}

.hvc-course-image {
  position: relative;
  min-height: 136px;
  border-right: 4px solid var(--hvc-orange);
  overflow: hidden;
}

.hvc-course-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 136px;
  object-fit: cover;
}

.hvc-course-content {
  min-width: 0;
  padding: 20px 0 5px 0;
}

.hvc-summary h3 {
  color: var(--hvc-orange);
  letter-spacing: 0;
  margin: 0 0 10px;
}

.hvc-course h3,
.hvc-form-card h3,
.hvc-participant h3 {
  margin: 30px 0 8px;
  color: var(--hvc-orange);
  letter-spacing: 0;
}

.hvc-course h3 {
  margin-top: 0;
  max-width: calc(100% - 220px);
  font-size: 22px;
  line-height: 1.2;
}

.hvc-course p {
  margin: 0;
  color: var(--hvc-muted);
}

.hvc-course-info {
  line-height: 1.3;
}

.hvc-course-more {
  display: inline-flex;
  margin-top: 2px;
  color: var(--hvc-orange);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.hvc-overview-header {
  font-weight: 700;
}

.hvc-price {
  min-width: 120px;
  text-align: right;
  color: var(--hvc-orange);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.hvc-price span,
.hvc-session small {
  display: block;
  color: var(--hvc-muted);
  font-size: 15px;
  font-weight: 500;
}

.hvc-badge {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 15px;
  border-radius: 999px;
  background: #fff2ea;
  color: var(--hvc-orange);
  font-size: 13px;
  font-weight: 700;
}

.hvc-meta-row,
.hvc-course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
  line-height: 1.25;
  color: var(--hvc-muted);
  font-size: 16px;
  align-items: center;
}

.hvc-course-meta {
  display: grid;
  gap: 8px;
  align-items: start;
}

.hvc-meta-duration,
.hvc-course-meta span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hvc-meta-duration .iconify,
.hvc-course-meta .iconify {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  color: var(--hvc-orange);
}

.hvc-date-dropdown {
  grid-column: 1 / -1;
  margin: 0 -28px 0 0;
  text-align: right;
}

.hvc-date-dropdown[open] {
  border-top: 1px solid #c9c3c1;
}

.hvc-date-dropdown summary {
  position: absolute;
  top: 13px;
  right: 16px;
  list-style: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 3px 20px;
  border-radius: 999px;
  background: var(--hvc-orange);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  font-size: 14px;
  transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.12s ease;
}

.hvc-date-dropdown summary::-webkit-details-marker {
  display: none;
}

.hvc-date-label-open,
.hvc-date-dropdown[open] .hvc-date-label-closed {
  display: none;
}

.hvc-date-dropdown[open] .hvc-date-label-open {
  display: inline;
}

.hvc-date-dropdown summary .iconify {
  width: 0.9em;
  height: 0.9em;
  flex: 0 0 auto;
  transform-origin: center;
  transition: transform 0.22s ease;
}

.hvc-date-dropdown[open] summary .iconify {
  transform: rotate(180deg);
}

.hvc-date-dropdown summary:active {
  transform: translateY(2px);
  box-shadow: inset 0 2px 0 rgba(235, 95, 18, 0.12);
}

.hvc-date-dropdown .hvc-session-grid {
  margin-top: 0;
  text-align: left;
}

.hvc-date-groups {
  display: grid;
  gap: 20px;
  margin-top: 0;
  padding: 24px 28px 20px;
  text-align: left;
}

.hvc-course-interest {
  display: grid;
  padding: 20px 30px 25px;
  text-align: left;
}

.hvc-course-interest h4 {
  margin-bottom: 0px;
  color: var(--hvc-orange);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 700;
}

.hvc-course-interest p {
  font-size: 14px;
  line-height: 1.4;
  margin: 0 0 6px;
}

.hvc-course-interest p:last-of-type {
  margin-bottom: 10px;
}

.hvc-course-interest-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.hvc-course-interest-form .hvc-field {
  gap: 7px;
}

.hvc-course-interest-form input {
  appearance: none;
  min-width: 0;
  width: 100%;
  min-height: 46px;
  padding: 0;
  border: 0 !important;
  border-radius: 0;
  background: transparent;
  box-shadow: none !important;
  color: var(--hvc-text);
  font: inherit;
}

.hvc-course-interest-form input:focus {
  outline: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

.hvc-course-interest-button {
  min-width: 190px;
}

.hvc-course-interest-success {
  gap: 8px;
}

.hvc-date-group {
  display: grid;
  gap: 10px;
  margin-top: 0;
}

.hvc-date-group h4 {
  margin: 0 0 4px;
  color: var(--hvc-orange);
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 0;
  font-weight: 700;
}

.hvc-course summary,
.hvc-participant summary {
  cursor: pointer;
  color: var(--hvc-orange);
  font-weight: 800;
}

.hvc-course .hvc-date-dropdown summary {
  color: #fff;
}

.hvc-session-grid,
.hvc-assignment-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 14px;
}

.hvc-session,
.hvc-private-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  column-gap: 12px;
  row-gap: 6px;
  align-items: center;
  padding: 10px 25px;
  border: 1px solid var(--hvc-border);
  border-radius: 12px;
  cursor: pointer;
  background: #fff;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.hvc-session.is-selected,
.hvc-private-option.is-selected {
  background: var(--hvc-hover-background);
  border-color: rgba(235, 95, 18, 0.22);
  transform: translateY(-1px);
}

.hvc-session:active,
.hvc-private-option:active {
  transform: translateY(1px);
}

.hvc-session > span {
  display: contents;
}

.hvc-session > span > strong,
.hvc-session > span > small:not(.hvc-spots-pill) {
  grid-column: 1;
}

.hvc-session > span > .hvc-session-date-block {
  display: grid;
  line-height: 1.35;
}

.hvc-session-date-block strong,
.hvc-session-date-block small {
  display: block;
}

.hvc-session-date-block .hvc-session-extra-dates {
  color: var(--hvc-text);
  font-size: 13px;
  font-weight: 700;
}

.hvc-session > span > small:not(.hvc-spots-pill) {
  margin-top: -6px;
}

.hvc-session > input {
  grid-column: 3;
  grid-row: 1 / span 2;
  justify-self: end;
  align-self: center;
  width: 18px;
  height: 18px;
  margin: 0;
}

.hvc-session .hvc-spots-pill {
  display: flex;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
  margin: 0 10px 0 auto;
  padding: 5px 20px;
  border-radius: 999px;
  background: #fff2ea;
  color: var(--hvc-orange);
  font-weight: 800;
  font-size: 13px;
}

.hvc-private-option {
  grid-template-columns: 1fr auto;
  align-items: flex-start;
  padding: 20px;
  border-radius: 18px;
}

.hvc-session input,
.hvc-private-option input,
.hvc-participant-session input,
.hvc-check input,
.hvc-segment input {
  accent-color: var(--hvc-orange);
}

.hvc-fields {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.hvc-field {
  display: grid;
  gap: 7px;
  min-width: 0;
  font-weight: 700;
}

.hvc-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  font-weight: 700;
}

.hvc-check input {
  flex: 0 0 auto;
  margin-top: 0.2em;
}

.hvc-field-wide {
  grid-column: 1 / -1;
}

.hvc-field.hvc-field-first-name {
  grid-column: span 8;
}

.hvc-field.hvc-field-middle-name {
  grid-column: span 4;
}

.hvc-field.hvc-field-last-name {
  grid-column: 1 / -1;
}

.hvc-field.hvc-field-email {
  grid-column: 1 / -1;
}
.hvc-field.hvc-field-phone {
  grid-column: 1 / -1;
}

.hvc-field.hvc-field-postcode {
  grid-column: span 6;
}

.hvc-field.hvc-field-house-number {
  grid-column: span 4;
}

.hvc-field.hvc-field-addition {
  grid-column: span 2;
}

.hvc-field.hvc-field-gender {
  grid-column: 1 / -1;
}

.hvc-field.hvc-field-dyslexia {
  grid-column: 1 / -1;
}

.hvc-field.hvc-field-initials {
  grid-column: span 8;
}
.hvc-field.hvc-field-birth-date {
  grid-column: span 6;
}

.hvc-field.hvc-field-birth-place {
  grid-column: span 6;
}

.hvc-required {
  margin-left: 3px;
  color: var(--hvc-orange);
  font-size: 0.9em;
  line-height: 1;
}

.hvc-input-control {
  display: flex;
  align-items: center;
  gap: 25px;
  min-width: 0;
  min-height: 48px;
  padding: 0 25px;
  border: 1px solid var(--hvc-border);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.hvc-field-addition .hvc-input-control,
.hvc-field-house-number .hvc-input-control {
  padding-inline: 14px;
}

.hvc-input-control.is-filled {
  background: var(--hvc-hover-background);
}

.hvc-field:has(.hvc-input-control:focus-within) > span,
.hvc-field:has(.hvc-input-control.is-filled) > span {
  color: var(--hvc-orange);
}

.hvc-input-control .iconify {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--hvc-muted);
  transition: color 0.18s ease;
}

.hvc-checkout-app .hvc-fields input {
  appearance: none;
  min-width: 0;
  width: 100%;
  min-height: 46px;
  padding: 0;
  border: 0 !important;
  border-radius: 0;
  background: transparent;
  box-shadow: none !important;
  color: var(--hvc-text);
  font: inherit;
}

.hvc-checkout-app .hvc-fields select {
  appearance: none;
  min-width: 0;
  width: 100%;
  min-height: 46px;
  padding: 0 24px 0 12px;
  border: 0 !important;
  border-radius: 0;
  background: transparent;
  box-shadow: none !important;
  color: var(--hvc-text);
  cursor: pointer;
  font: inherit;
}

.hvc-checkout-app .hvc-fields select option {
  padding: 8px 16px;
}

.hvc-field:has(select) .hvc-input-control {
  background-image: linear-gradient(45deg, transparent 50%, var(--hvc-muted) 50%), linear-gradient(135deg, var(--hvc-muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
}

.hvc-field-dyslexia .hvc-input-control {
  padding: 0 18px;
}

.hvc-radio-options {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 46px;
}

.hvc-radio-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--hvc-text);
  font-weight: 700;
  cursor: pointer;
}

.hvc-checkout-app .hvc-fields .hvc-radio-option input[type='radio'] {
  appearance: auto;
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  margin: 0;
  accent-color: var(--hvc-orange);
  cursor: pointer;
}

.hvc-checkout-app .hvc-fields input:focus,
.hvc-checkout-app .hvc-fields select:focus {
  outline: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

.hvc-checkout-app .hvc-fields input:-webkit-autofill,
.hvc-checkout-app .hvc-fields input:-webkit-autofill:hover,
.hvc-checkout-app .hvc-fields input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--hvc-orange);
  caret-color: var(--hvc-orange);
  box-shadow: 0 0 0 1000px var(--hvc-hover-background) inset !important;
  transition: background-color 9999s ease-out, color 9999s ease-out;
}

.hvc-checkout-app .hvc-fields input[readonly] {
  cursor: default;
}

.hvc-input-control:focus-within {
  border-color: var(--hvc-orange);
}

.hvc-input-control:focus-within .iconify {
  color: var(--hvc-orange);
}

.hvc-input-control:focus-within input,
.hvc-input-control:focus-within select,
.hvc-input-control.is-filled input,
.hvc-input-control.is-filled select,
.hvc-input-control.is-filled .iconify {
  color: var(--hvc-orange);
}

.hvc-button:focus-visible,
.hvc-secondary:focus-visible,
.hvc-link-button:focus-visible,
.hvc-icon-button:focus-visible,
.hvc-participant-edit:focus-visible,
.hvc-participant-delete:focus-visible {
  outline-offset: 2px;
}

.hvc-segment {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 30px 0 22px;
  padding: 16px;
  border: 1px solid var(--hvc-border);
  border-radius: 18px;
}

.hvc-segment legend {
  padding: 0 8px;
  color: var(--hvc-orange);
  font-weight: 800;
}

.hvc-discount-panel {
  display: grid;
  grid-template-columns: minmax(180px, 1fr);
  gap: 10px;
  margin-top: 0;
}

.hvc-discount-fields {
  width: 100%;
}

.hvc-discount-panel small {
  color: var(--hvc-muted);
  font-size: 13px;
  line-height: 1.5;
}

.hvc-discount-panel .hvc-discount-ok {
  color: #15803d;
  font-weight: 700;
}

.hvc-discount-panel .hvc-modal-error {
  color: #b91c1c;
  font-weight: 700;
}

.hvc-participant-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hvc-participant {
  border-color: #b8b1af;
  border-radius: 22px;
  padding: 22px 38px;
}

.hvc-participant-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
}

.hvc-participant-content {
  min-width: 0;
}

.hvc-participant h3 {
  margin: 0 0 10px;
  color: var(--hvc-orange);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.15;
}

.hvc-participant .hvc-assignment-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 0;
}

.hvc-participant-course {
  display: grid;
  gap: 2px;
}

.hvc-participant-course > strong {
  color: #111827;
  font-size: 17px;
  margin-top: 0;
}

.hvc-participant-session {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: 100%;
  color: #9a9a9a;
  font-weight: 500;
  line-height: 1.25;
  cursor: pointer;
}

.hvc-participant-session input {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  margin: 0;
}

.hvc-participant-session.is-selected {
  color: var(--hvc-orange);
}

.hvc-participant-tools {
  display: flex;
  justify-items: end;
  align-content: start;
}

.hvc-participant-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  width: 100%;
  margin-top: 14px;
}

.hvc-participant-edit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: var(--hvc-orange);
  box-shadow: none !important;
  color: #fff;
  font: inherit;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.hvc-participant-edit .iconify {
  width: 17px;
  height: 17px;
}

.hvc-participant-edit:hover,
.hvc-participant-edit:focus-visible {
  background: #fff2ea;
  color: var(--hvc-orange);
  transform: translateY(-1px);
}

.hvc-all-courses {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #9a9a9a;
  font-weight: 500;
  white-space: nowrap;
}

.hvc-all-courses input {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: var(--hvc-orange);
}

.hvc-all-courses.is-selected {
  color: var(--hvc-orange);
}

.hvc-participant-delete {
  align-self: start;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 4px;
  margin-top: -5px;
  box-shadow: none !important;
  border-radius: 10px;
  background: transparent;
  color: #d90000;
  cursor: pointer;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.hvc-participant-delete .iconify {
  width: 30px;
  height: 30px;
}

.hvc-participant-delete:hover,
.hvc-participant-delete:focus-visible {
  background: #fff0f0;
  transform: translateY(-1px);
  color: #d90000;
}

.hvc-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(31, 41, 51, 0.58);
}

.hvc-modal[hidden] {
  display: none;
}

.hvc-modal-panel {
  position: relative;
  width: min(780px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  border-color: #b8b1af;
}

.hvc-participant-modal {
  place-items: start center;
  overflow-y: auto;
  padding-block: 42px;
}

.hvc-participant-modal .hvc-modal-panel {
  max-height: none;
  margin-block: 0;
  overflow: visible;
  padding: 40px 60px 30px;
}

.hvc-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.hvc-modal-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 28px;
}

.hvc-modal-error {
  margin: 0;
  color: #c50000;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.hvc-modal-head h3,
.hvc-modal-panel > h3 {
  margin: 0;
  color: var(--hvc-orange);
  font-size: 22px;
  line-height: 1.25;
}

.hvc-modal-panel > h3 {
  margin-top: 30px;
  margin-bottom: 16px;
}

.hvc-side {
  display: grid;
  gap: 18px;
}

.hvc-summary {
  padding: 22px;
}

.hvc-private-logo {
    display: flex;
    justify-content: center;
    margin: 24px 0 18px;
}

.hvc-private-logo img {
    display: block;
    width: min(300px, 78vw);
    height: 150px;
    object-fit: contain;
}

.hvc-summary-lines {
  display: grid;
  gap: 12px;
}

.hvc-summary-lines > div,
.hvc-totals > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--hvc-border);
}

.hvc-summary-lines small {
  grid-column: 1 / -1;
  color: var(--hvc-muted);
}

.hvc-summary-lines.is-company {
  gap: 0;
}

.hvc-summary-lines.is-company > div {
  border-bottom: 1px solid var(--hvc-border);
}

.hvc-summary-lines.is-company > .hvc-company-summary-line {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 18px 122px 18px 0 !important;
}

.hvc-license-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-row: 1 / span 2;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--hvc-orange);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.hvc-company-summary-text {
  display: grid;
  gap: 3px;
  max-width: 100%;
  min-width: 0;
}

.hvc-company-summary-text > span {
  color: #111827;
  font-size: 16px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.hvc-company-summary-text small {
  grid-column: auto;
  color: var(--hvc-muted);
  font-size: 13px;
  line-height: 1.35;
}

.hvc-company-summary-line > strong {
  position: absolute;
  top: 18px;
  right: 0;
  color: #111827;
  font-size: 17px;
  white-space: nowrap;
}

.hvc-totals {
  margin-top: 16px;
}

.hvc-totals > div:last-child {
  border-bottom: 0;
  color: var(--hvc-orange);
  font-size: 18px;
}

.hvc-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.hvc-actions .hvc-button,
.hvc-actions .hvc-secondary {
  flex: 1 1 0;
}

.hvc-button,
.hvc-secondary,
.hvc-link-button,
.hvc-icon-button {
  min-height: 44px;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hvc-button {
  flex: 1;
  padding: 10px 18px;
  background: var(--hvc-orange);
  box-shadow: none !important;
  color: #fff;
}

.hvc-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  gap: 12px;
  flex: 0 0 auto;
  padding: 10px 20px;
  border-radius: 9px;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}



.hvc-add .iconify {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.hvc-save-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex: 0 0 auto;
  padding: 10px 20px;
  border-radius: 9px;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.hvc-save-button .iconify {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.hvc-button:hover,
.hvc-button:focus-visible {
  background: var(--hvc-hover-background);
  color: var(--hvc-orange);
  box-shadow: none !important;
  transform: translateY(-1px);
}

.hvc-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.hvc-button:not(:disabled):active,
.hvc-secondary:not(:disabled):active,
.hvc-link-button:not(:disabled):active,
.hvc-icon-button:not(:disabled):active {
  background: var(--hvc-hover-background);
  color: var(--hvc-orange);
  transform: translateY(2px);
  box-shadow: inset 0 2px 0 rgba(31, 41, 51, 0.12) !important;
  transition-duration: 0.08s;
}

.hvc-secondary {
  padding: 10px 16px;
  background: var(--hvc-orange);
  color: var(--hvc-soft);
  box-shadow: none !important;
}

.hvc-secondary:hover,
.hvc-secondary:focus-visible {
  background: var(--hvc-hover-background);
  color: var(--hvc-orange);
  box-shadow: 0 10px 22px rgba(235, 95, 18, 0.10);
  transform: translateY(-1px);
}

.hvc-link {
  color: var(--hvc-orange);
  font-weight: 700;
  text-decoration: underline;
}

.hvc-link-button {
  min-height: 0;
  padding: 0;
  background: transparent;
  color: var(--hvc-orange);
}

.hvc-link-button:hover,
.hvc-link-button:focus-visible {
  background: #fff2ea;
  color: var(--hvc-orange);
  box-shadow: 0 10px 22px rgba(235, 95, 18, 0.10);
  transform: translateY(-1px);
}

.hvc-icon-button {
  width: 40px;
  background: var(--hvc-soft);
  color: var(--hvc-text);
}

.hvc-icon-button:hover,
.hvc-icon-button:focus-visible {
  background: #fff2ea;
  color: var(--hvc-orange);
  box-shadow: 0 10px 22px rgba(235, 95, 18, 0.10);
  transform: translateY(-1px);
}

.hvc-actions .hvc-button:not(:disabled):active,
.hvc-actions .hvc-secondary:not(:disabled):active {
  background: var(--hvc-hover-background);
  color: var(--hvc-orange);
  transform: translateY(2px);
  box-shadow: inset 0 2px 0 rgba(31, 41, 51, 0.12) !important;
}

.hvc-alert,
.hvc-empty,
.hvc-success {
  padding: 22px;
}

.hvc-alert {
  border-color: #c50000;
  background: #FDEFEF;
  color: #c50000;
  font-weight: 700;
}

.hvc-success {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.hvc-success-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: none;
  width: 100%;
  min-height: 100vh;
  padding: 24px 20px;
  background: var(--hvc-orange);
  box-sizing: border-box;
}

.hvc-checkout-app:has(.hvc-success-shell) {
  background: var(--hvc-orange);
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  width: 100vw;
  min-height: 100vh;
  overflow: auto;
}

.hvc-success {
  padding: 35px 20px 30px;
  width: min(100%, 640px);
  border-radius: 25px;
  box-shadow: 0 3px 0 rgba(31, 41, 51, 0.16);
}

.hvc-success h2 {
  margin-bottom: 15px;
  font-size: 32px;
  font-weight: 900;
}

.hvc-success p {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.22;
}


.hvc-reference {
  display: block;
  margin-bottom: 20px;
  color: var(--hvc-muted);
  font-size: 12px;
}

.hvc-success-image {
  display: block;
  width: 100%;
  height: clamp(220px, 34vh, 300px) !important;
  margin: 10px auto 26px;
  object-fit: cover;
  object-position: center 22%;
  box-shadow: 0 2px 3px rgba(31, 41, 51, 0.18) !important;
  border-radius: 12px !important;
}

.hvc-success-home {
  display: inline-flex;
  padding: 5px 20px;
  align-items: center;
  justify-content: center;
  min-width: 216px;
  min-height: 36px;
  border-radius: 9px;
  background: var(--hvc-orange);
  color: var(--hvc-soft);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.hvc-success-home:hover,
.hvc-success-home:focus-visible {
  background: #fff2ea;
  color: var(--hvc-orange);
  transform: translateY(-1px);
}

.hvc-review {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 10px;
  margin: 0;
}

.hvc-review dt {
  color: var(--hvc-muted);
  font-weight: 700;
}

.hvc-review dd {
  margin: 0;
}

@media (max-width: 880px) {
  .hvc-progress {
    grid-template-columns: 30px minmax(32px, 1fr) 30px minmax(32px, 1fr) 30px;
    gap: 12px;
    margin-bottom: 28px;
  }

  .hvc-progress-step {
    width: 24px;
    height: 24px;
  }

  .hvc-progress-line {
    height: 3px;
  }

  .hvc-layout,
  .hvc-choice-grid,
  .hvc-session-grid,
  .hvc-assignment-list,
  .hvc-fields {
    grid-template-columns: 1fr;
  }

  .hvc-course-top {
    display: grid;
    gap: 16px;
  }

  .hvc-price {
    text-align: left;
  }

  .hvc-date-dropdown {
    margin: 0;
    text-align: left;
  }

  .hvc-date-dropdown summary {
    position: static;
    margin-top: 16px;
  }

  .hvc-date-dropdown[open] {
    margin: 0 -18px;
  }

  .hvc-date-dropdown[open] summary {
    margin-left: 18px;
  }

  .hvc-course {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 18px 18px;
  }

  .hvc-course-info {
    line-height: 1.3;
  }

  .hvc-course-image {
    min-height: 168px;
    margin: 0 -18px;
    border-right: 0;
    border-bottom: 4px solid var(--hvc-orange);
  }

  .hvc-course-image img {
    min-height: 168px;
  }

  .hvc-course-content {
    padding: 18px 0 0;
  }

  .hvc-course h3 {
    max-width: none;
  }

  .hvc-date-group h4 {
    font-size: 18px;
  }

  .hvc-session {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 14px 16px;
  }

  .hvc-session > input {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .hvc-session .hvc-spots-pill {
    grid-column: 1 / -1;
    grid-row: auto;
    justify-self: start;
    width: 100%;
    margin: 10px 0 0;
    padding-inline: 14px;
  }

  .hvc-course-interest-form {
    grid-template-columns: 1fr;
  }

  .hvc-course-interest-button {
    width: 100%;
    min-width: 0;
  }

  .hvc-intro h2,
  .hvc-success h2 {
    font-size: 28px;
  }

  .hvc-field {
    grid-column: 1 / -1 !important;
  }

  .hvc-success {
    width: min(100%, 466px);
  }

  .hvc-success-copy {
    padding: 0 22px;
  }


  .hvc-success-home {
    min-width: 190px;
    font-size: 16px;
  }

  .hvc-participant {
    padding: 22px;
  }

  .hvc-participant-main,
  .hvc-participant-tools {
    grid-template-columns: 1fr;
  }

  .hvc-participant-main {
    gap: 6px;
  }

  .hvc-participant-tools {
    justify-items: start;
    min-width: 0;
  }

  .hvc-participant-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .hvc-participant-edit {
    width: 100%;
  }

  .hvc-participant-delete {
    justify-self: end;
  }

  .hvc-summary-lines.is-company > .hvc-company-summary-line {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 9px;
    padding: 18px 100px 18px 0 !important;
  }

  .hvc-license-badge {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }

  .hvc-company-summary-line > strong {
    font-size: 15px;
  }

  .hvc-company-summary-text > span {
    font-size: 15px;
  }

  .hvc-company-summary-text small {
    font-size: 12px;
  }

  .hvc-modal {
    padding: 14px;
    align-items: start;
  }

  .hvc-participant-modal {
    padding-block: 14px;
  }

  .hvc-modal-panel {
    max-height: 80%;
    padding: 22px;
  }

  .hvc-modal-head {
    align-items: flex-start;
  }

  .hvc-modal-actions {
    align-items: stretch;
    flex-direction: column;
    justify-content: stretch;
  }

  .hvc-modal-actions .hvc-save-button {
    width: 100%;
  }
}
.hvc-kvk-results {
  grid-column: 1 / -1;
  margin-top: 4px;
  border: 1px solid rgba(21, 25, 34, 0.12);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  padding: 20px;
}

.hvc-kvk-results p {
  margin: 0;
  padding: 12px;
  color: #65728a;
}

.hvc-kvk-results > strong {
  display: block;
  padding: 12px 12px 0;
  color: #1d2738;
}

.hvc-kvk-results > span {
  display: block;
  margin-top: 4px;
  padding: 0 12px;
  color: #65728a;
}

.hvc-kvk-results > .hvc-kvk-preview-name {
  color: #1d2738;
  font-weight: 700;
}

.hvc-kvk-results > .hvc-button {
  margin: 12px;
}

.hvc-kvk-result {
  display: block;
  width: 100%;
  padding: 12px;
  border: 0;
  border-bottom: 1px solid rgba(21, 25, 34, 0.08);
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.hvc-kvk-result:hover,
.hvc-kvk-result:focus {
  background: #f7f7f7;
}

.hvc-kvk-result strong {
  display: block;
}

.hvc-kvk-result span {
  display: block;
  margin-top: 3px;
  color: #65728a;
}

.hvc-kvk-lookup {
  align-self: flex-start;
  margin-top: 8px;
}

.hvc-kvk-help {
  display: block;
  margin-top: 6px;
  color: #65728a;
}

.hvc-kvk-selection {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding: 20px;
  border-left: 4px solid var(--hvc-primary, #eb5f12);
  background: #f7f7f7;
}

.hvc-kvk-reset {
  display: block;
  width: max-content;
  margin-top: 10px;
}

.hvc-checkout-auth {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 18px;
  padding: 12px 16px;
  border-radius: 10px;
  background: #f7f7f7;
}

.hvc-checkout-auth.is-logged-in {
  color: #28633d;
}

.hvc-login-panel {
  width: min(440px, 100%);
}

.hvc-login-panel .hvc-field {
  display: block;
  margin-bottom: 14px;
}

.hvc-login-close {
  border: 0;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

.hvc-billing-profiles {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding: 16px;
  border: 1px solid rgba(21, 25, 34, 0.12);
  border-radius: 10px;
}

.hvc-billing-profiles p {
  margin: 0;
}

@media (max-width: 640px) {
  .hvc-checkout-auth {
    align-items: flex-start;
    justify-content: space-between;
  }
}
