.hm-booking-overlay {
  --hm-brand: var(--primary-brand, #216b7c);
  --hm-ink: var(--neutral-800, #102a3f);
  --hm-surface: var(--primary-lighter, #fdfbfa);
  --hm-soft: var(--primary-light, #fff8ee);
  --hm-white: #ffffff;
  --hm-muted: #5f6d78;
  --hm-line: rgba(16, 42, 63, 0.18);
  --hm-line-strong: rgba(16, 42, 63, 0.32);
  --hm-radius: var(--zakrivljenost, 10px);
  --hm-shadow: 0 26px 80px rgba(16, 42, 63, 0.24);
}

.hm-booking-overlay,
.hm-booking-overlay *,
.hm-booking-overlay *::before,
.hm-booking-overlay *::after,
.hm-booking-inline-card,
.hm-booking-inline-card *,
.hm-booking-inline-card *::before,
.hm-booking-inline-card *::after {
  box-sizing: border-box;
}

.hm-booking-overlay[hidden],
.hm-booking-overlay [hidden] {
  display: none !important;
}

.hm-booking-overlay {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 16px;
  color: var(--hm-ink);
  font-family: Lato, Arial, sans-serif;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.hm-booking-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.hm-booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 24, 36, 0.64);
  backdrop-filter: blur(8px);
}

.hm-booking-dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100vw - 32px));
  height: min(680px, calc(100dvh - 32px));
  max-height: calc(100dvh - 32px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--hm-ink);
  background: var(--hm-white);
  border: 1px solid var(--hm-line);
  border-radius: var(--hm-radius);
  box-shadow: var(--hm-shadow);
  transform: translateY(10px) scale(0.985);
  transition: transform 180ms ease;
}

.hm-booking-overlay.is-open .hm-booking-dialog {
  transform: translateY(0) scale(1);
}

.hm-booking-header {
  position: relative;
  z-index: 20;
  flex: 0 0 auto;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--hm-line);
  backdrop-filter: blur(14px);
}

.hm-booking-heading {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.hm-booking-step-count {
  color: var(--hm-muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
}

.hm-booking-header h2 {
  margin: 0;
  color: var(--hm-ink);
  font-family: Roboto, Lato, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.hm-booking-close {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  padding: 0;
  color: var(--hm-ink);
  background: var(--hm-white);
  border: 1px solid var(--hm-line);
  border-radius: var(--hm-radius);
  cursor: pointer;
  font: 400 28px/1 Lato, Arial, sans-serif;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.hm-booking-close:hover {
  color: var(--hm-white);
  background: var(--hm-brand);
  border-color: var(--hm-brand);
}

.hm-booking-panel {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  background: var(--hm-white);
}

.hm-booking-calendar-step,
.hm-booking-inquiry-step {
  width: 100%;
  min-height: 100%;
}

.hm-booking-calendar-step {
  display: flex;
  flex-direction: column;
  padding: 22px clamp(20px, 3vw, 40px) 20px;
}

.hm-booking-intro p,
.hm-booking-form-intro {
  max-width: 760px;
  margin: 0 0 14px;
  color: var(--hm-ink);
  font-size: 16px;
  line-height: 1.45;
}

.hm-booking-summary,
.hm-booking-inquiry-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  margin: 0;
  background: var(--hm-white);
  border: 1px solid var(--hm-line);
  border-radius: var(--hm-radius);
}

.hm-booking-summary-field,
.hm-booking-inquiry-summary > div {
  min-width: 0;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 9px 12px;
  color: var(--hm-ink);
  background: var(--hm-white);
  border: 0;
  border-left: 1px solid var(--hm-line);
  text-align: left;
}

.hm-booking-summary-field:first-child,
.hm-booking-inquiry-summary > div:first-child {
  border-left: 0;
}

button.hm-booking-summary-field {
  appearance: none;
  cursor: pointer;
  font: inherit;
}

button.hm-booking-summary-field:hover,
button.hm-booking-summary-field.is-active {
  background: var(--hm-soft);
}

button.hm-booking-summary-field.is-active {
  position: relative;
  z-index: 1;
  box-shadow: inset 0 0 0 2px var(--hm-brand);
}

.hm-booking-summary-field > span,
.hm-booking-inquiry-summary dt {
  margin: 0;
  color: var(--hm-muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.hm-booking-summary-field > strong,
.hm-booking-summary-field > select,
.hm-booking-inquiry-summary dd {
  min-width: 0;
  margin: 0;
  color: var(--hm-ink);
  font-family: Lato, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.hm-booking-summary-field > select {
  width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.hm-booking-calendar {
  flex: 1 1 auto;
  min-height: 0;
  margin-top: 10px;
}

.hm-booking-toolbar {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 12px;
  margin-bottom: 2px;
}

.hm-booking-toolbar button {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  color: var(--hm-ink);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.hm-booking-toolbar button:hover:not(:disabled) {
  background: var(--hm-soft);
}

.hm-booking-toolbar button:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

.hm-booking-toolbar svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hm-booking-toolbar strong {
  min-width: 0;
  color: var(--hm-ink);
  text-align: center;
  font-family: Roboto, Lato, Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}

.hm-booking-months {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 38px);
}

.hm-booking-month {
  min-width: 0;
}

.hm-booking-month h3 {
  margin: 0;
  padding: 2px 0 8px;
  color: var(--hm-ink);
  text-align: center;
  font-family: Roboto, Lato, Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.hm-booking-weekdays,
.hm-booking-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.hm-booking-weekdays span {
  padding: 2px 2px 6px;
  color: var(--hm-muted);
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}

.hm-booking-day {
  position: relative;
  min-height: 35px;
  display: grid;
  place-items: center;
  padding: 2px;
  color: var(--hm-ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font-family: Lato, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.hm-booking-day.is-outside {
  pointer-events: none;
}

.hm-booking-day.is-available:hover {
  border-radius: 999px;
  box-shadow: inset 0 0 0 2px var(--hm-brand);
}

.hm-booking-day.is-busy,
.hm-booking-day.is-past {
  color: rgba(16, 42, 63, 0.34);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  cursor: not-allowed;
}

.hm-booking-day.is-in-range {
  color: var(--hm-ink);
  background: rgba(33, 107, 124, 0.12);
}

.hm-booking-day.is-selected {
  z-index: 1;
  color: var(--hm-white);
  background: var(--hm-brand);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 0 0 2px var(--hm-white);
}

.hm-booking-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 18px;
  margin-top: 7px;
}

.hm-booking-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--hm-muted);
  font-size: 13px;
}

.hm-booking-legend > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hm-swatch {
  width: 17px;
  height: 17px;
  display: inline-block;
  background: var(--hm-white);
  border: 1px solid var(--hm-line);
  border-radius: 4px;
}

.hm-swatch.is-busy {
  position: relative;
  background: rgba(16, 42, 63, 0.06);
}

.hm-swatch.is-busy::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3px;
  left: 3px;
  height: 1px;
  background: rgba(16, 42, 63, 0.45);
  transform: rotate(-12deg);
}

.hm-swatch.is-selected {
  background: var(--hm-brand);
  border-color: var(--hm-brand);
  border-radius: 999px;
}

.hm-booking-meta p,
.hm-booking-action-copy p,
.hm-booking-form-status,
.hm-booking-privacy {
  margin: 0;
  color: var(--hm-muted);
  font-size: 13px;
  line-height: 1.4;
}

.hm-booking-actions-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 8px;
  padding-top: 9px;
  border-top: 1px solid var(--hm-line);
}

.hm-booking-action-copy {
  min-width: 0;
}

.hm-booking-action-copy [data-hm-helper] {
  color: var(--hm-ink);
  font-size: 14px;
}

.hm-booking-action-copy [data-hm-message],
.hm-booking-form-status.is-error {
  min-height: 1.4em;
  margin-top: 3px;
  color: #a53228;
  font-weight: 700;
}

.hm-booking-actions,
.hm-booking-inquiry-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.hm-booking-primary,
.hm-booking-secondary,
.hm-booking-clear {
  appearance: none;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: var(--hm-radius);
  cursor: pointer;
  font-family: Lato, Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.hm-booking-primary {
  min-width: 180px;
  color: var(--hm-white);
  background: var(--hm-brand);
  border: 1px solid var(--hm-brand);
  box-shadow: 0 8px 20px rgba(33, 107, 124, 0.18);
}

.hm-booking-primary:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 11px 24px rgba(33, 107, 124, 0.25);
}

.hm-booking-primary:disabled {
  color: rgba(255, 255, 255, 0.78);
  background: #93a2aa;
  border-color: #93a2aa;
  box-shadow: none;
  cursor: not-allowed;
}

.hm-booking-secondary {
  min-width: 180px;
  color: var(--hm-ink);
  background: var(--hm-white);
  border: 1px solid var(--hm-line-strong);
}

.hm-booking-secondary:hover {
  background: var(--hm-soft);
  border-color: var(--hm-brand);
}

.hm-booking-clear {
  min-width: 0;
  padding-inline: 5px;
  color: var(--hm-ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hm-booking-clear:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.hm-booking-inquiry-step {
  padding: 28px clamp(20px, 3vw, 40px);
}

.hm-booking-inquiry-body {
  width: 100%;
}

.hm-booking-inquiry-summary {
  margin-bottom: 16px;
}

.hm-booking-form {
  display: grid;
  gap: 10px;
}

.hm-booking-form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hm-booking-field {
  display: grid;
  gap: 7px;
  color: var(--hm-ink);
  font-family: Lato, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

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

.hm-booking-field input,
.hm-booking-field textarea {
  width: 100%;
  margin: 0 !important;
  padding: 11px 13px;
  color: var(--hm-ink) !important;
  background: var(--hm-surface);
  border: 1px solid var(--hm-line-strong);
  border-radius: var(--hm-radius);
  font-family: Lato, Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
}

.hm-booking-field input {
  min-height: 48px;
}

.hm-booking-field textarea {
  min-height: 92px;
  resize: vertical;
}

.hm-booking-field input:focus,
.hm-booking-field textarea:focus,
.hm-booking-primary:focus-visible,
.hm-booking-secondary:focus-visible,
.hm-booking-clear:focus-visible,
.hm-booking-close:focus-visible,
.hm-booking-toolbar button:focus-visible,
.hm-booking-day:focus-visible,
.hm-booking-summary-field:focus-visible {
  outline: 2px solid var(--hm-brand);
  outline-offset: 2px;
}

.hm-booking-privacy {
  font-size: 12px;
}

.hm-booking-form-status {
  min-height: 1.4em;
  font-weight: 700;
}

.hm-booking-inquiry-actions {
  margin-top: 1px;
}

.hm-booking-success-step {
  width: min(100%, 760px);
  min-height: 100%;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  margin: 0 auto;
  padding: 34px;
  text-align: center;
  outline: none;
}

.hm-booking-success-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--hm-white);
  background: var(--hm-brand);
  border-radius: var(--hm-radius);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.hm-booking-success-message {
  max-width: 680px;
  margin: 0;
  color: var(--hm-ink);
  font-family: Roboto, Lato, Arial, sans-serif;
  font-size: clamp(20px, 2.1vw, 26px);
  font-weight: 700;
  line-height: 1.42;
  text-wrap: balance;
}

.hm-booking-success-contact {
  display: grid;
  justify-items: center;
  gap: 11px;
  margin-top: 3px;
  padding-top: 18px;
  border-top: 1px solid var(--hm-line);
}

.hm-booking-success-contact > p {
  margin: 0;
  color: var(--hm-muted);
  font-size: 14px;
}

.hm-booking-success-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
}

.hm-booking-success-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--hm-brand);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.hm-booking-success-links a:hover {
  color: var(--hm-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hm-booking-success-links svg,
.hm-booking-inline-icon svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

html.hm-booking-open,
body.hm-booking-open {
  overflow: hidden;
  overscroll-behavior: none;
}

body.hm-booking-open .fiksni-kontakti-mobile {
  visibility: hidden;
}

.hm-booking-inline-card {
  max-width: 650px;
  display: grid;
  justify-items: center;
  gap: 13px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px);
  color: var(--neutral-800, #102a3f);
  background: var(--primary-lighter, #fdfbfa);
  border: 1px solid rgba(16, 42, 63, 0.16);
  border-radius: var(--zakrivljenost, 10px);
  text-align: center;
}

.hm-booking-inline-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--primary-brand, #216b7c);
  background: rgba(33, 107, 124, 0.1);
  border-radius: var(--zakrivljenost, 10px);
}

.hm-booking-inline-icon svg {
  width: 26px;
  height: 26px;
}

.hm-booking-inline-card h3 {
  margin: 0;
  color: var(--neutral-800, #102a3f);
  font-family: Roboto, Lato, Arial, sans-serif;
  font-size: 24px;
  line-height: 1.2;
}

.hm-booking-inline-card p {
  max-width: 520px;
  margin: 0 0 4px;
  color: #5f6d78;
  font-family: Lato, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.hm-booking-inline-card .hm-booking-primary {
  width: min(100%, 300px);
}

@media (max-width: 900px) and (min-width: 761px) {
  .hm-booking-summary,
  .hm-booking-inquiry-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hm-booking-summary-field:nth-child(2n + 1),
  .hm-booking-inquiry-summary > div:nth-child(2n + 1) {
    border-left: 0;
  }

  .hm-booking-summary-field:nth-child(n + 3),
  .hm-booking-inquiry-summary > div:nth-child(n + 3) {
    border-top: 1px solid var(--hm-line);
  }
}

@media (max-width: 760px) {
  .hm-booking-overlay {
    display: block;
    padding: 0;
  }

  .hm-booking-dialog {
    width: 100%;
    height: 100dvh;
    max-height: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: translateY(14px);
  }

  .hm-booking-header {
    min-height: 56px;
    padding: 7px 12px;
  }

  .hm-booking-close {
    width: 40px;
    height: 40px;
  }

  .hm-booking-panel {
    background: var(--hm-surface);
  }

  .hm-booking-calendar-step {
    min-height: 100%;
    padding: 130px 14px calc(92px + env(safe-area-inset-bottom));
  }

  .hm-booking-intro {
    display: none;
  }

  .hm-booking-summary {
    position: fixed;
    z-index: 10010;
    top: 56px;
    right: 0;
    left: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: 0 9px 24px rgba(16, 42, 63, 0.08);
  }

  .hm-booking-summary-field,
  .hm-booking-inquiry-summary > div {
    min-height: 55px;
    padding: 8px 11px;
  }

  .hm-booking-summary-field:nth-child(2n + 1),
  .hm-booking-inquiry-summary > div:nth-child(2n + 1) {
    border-left: 0;
  }

  .hm-booking-summary-field:nth-child(n + 3),
  .hm-booking-inquiry-summary > div:nth-child(n + 3) {
    border-top: 1px solid var(--hm-line);
  }

  .hm-booking-calendar {
    margin-top: 8px;
  }

  .hm-booking-months {
    grid-template-columns: 1fr;
  }

  .hm-booking-toolbar {
    position: relative;
    z-index: 2;
    grid-template-columns: 38px 1fr 38px;
    gap: 8px;
    margin-bottom: -38px;
  }

  .hm-booking-toolbar button {
    width: 38px;
    height: 38px;
  }

  .hm-booking-toolbar strong {
    visibility: hidden;
  }

  .hm-booking-month h3 {
    padding: 9px 44px 10px;
  }

  .hm-booking-day {
    min-height: 38px;
    font-size: 14px;
  }

  .hm-booking-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .hm-booking-legend {
    gap: 9px;
    font-size: 12px;
  }

  .hm-booking-actions-bar,
  .hm-booking-inquiry-actions {
    position: fixed;
    z-index: 10020;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    margin: 0;
    padding: 9px 14px max(9px, env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid var(--hm-line);
    box-shadow: 0 -12px 30px rgba(16, 42, 63, 0.12);
    backdrop-filter: blur(14px);
  }

  .hm-booking-action-copy {
    display: none;
  }

  .hm-booking-actions,
  .hm-booking-inquiry-actions {
    width: min(100%, 560px);
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(150px, 1.1fr);
    gap: 10px;
    margin: 0 auto;
  }

  .hm-booking-actions .hm-booking-primary,
  .hm-booking-inquiry-actions .hm-booking-primary,
  .hm-booking-inquiry-actions .hm-booking-secondary {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding-inline: 10px;
  }

  .hm-booking-clear {
    min-height: 52px;
    padding-inline: 0;
    white-space: nowrap;
  }

  .hm-booking-inquiry-step {
    min-height: 100%;
    padding: 18px 16px calc(92px + env(safe-area-inset-bottom));
  }

  .hm-booking-inquiry-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hm-booking-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hm-booking-field-name {
    grid-column: 1 / -1;
  }

  .hm-booking-form-intro {
    font-size: 14px;
  }

  .hm-booking-success-step {
    min-height: 100%;
    padding: 28px 18px max(28px, env(safe-area-inset-bottom));
  }

  .hm-booking-success-links {
    align-items: center;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hm-booking-summary-field > span,
  .hm-booking-inquiry-summary dt {
    font-size: 10px;
  }

  .hm-booking-summary-field > strong,
  .hm-booking-summary-field > select,
  .hm-booking-inquiry-summary dd {
    font-size: 14px;
  }

  .hm-booking-form-grid {
    grid-template-columns: 1fr;
  }

  .hm-booking-field-name,
  .hm-booking-field-wide {
    grid-column: auto;
  }

  .hm-booking-field textarea {
    min-height: 84px;
  }

  .hm-booking-success-message {
    font-size: 20px;
  }
}

@media (max-width: 370px) {
  .hm-booking-calendar-step {
    padding-inline: 10px;
  }

  .hm-booking-summary {
    margin-inline: 0;
  }

  .hm-booking-day {
    min-height: 34px;
    font-size: 13px;
  }

  .hm-booking-actions,
  .hm-booking-inquiry-actions {
    grid-template-columns: minmax(0, 0.82fr) minmax(142px, 1.18fr);
    gap: 8px;
  }

  .hm-booking-primary,
  .hm-booking-secondary,
  .hm-booking-clear {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hm-booking-overlay,
  .hm-booking-dialog,
  .hm-booking-primary,
  .hm-booking-secondary,
  .hm-booking-close {
    transition: none;
  }
}
