.tflow-tour-wrapper {
  --tflow-primary: #e8864d;
  --tflow-accent: #2874bb;
  --tflow-bg: rgba(0, 52, 88, 1);
  --tflow-overlay-scrim: rgba(5, 18, 45, 0.7);
  --tflow-overlay-card: rgba(0, 52, 88, 0.6);
  --tflow-tooltip-bg: rgba(13, 31, 58, 0.84);
  --tflow-primary-text: #050a12;
  --tflow-secondary-text: #e8eaed;
  --tflow-nav-back-text: #ffffff;
  --tflow-nav-back-bg: #ffffff;
  --tflow-nav-back-bg-hover: #ffffff;
  --tflow-nav-back-border: #ffffff;
  --tflow-nav-back-border-hover: #ffffff;
  --tflow-modal-nav-bg: #05122d;
  --tflow-nav-dot: #ffffff;
  --tflow-nav-dot-hover: #ffffff;
  --tflow-nav-dot-active: #2874bb;
  --tflow-slide-audio-bar: #2874bb;
  --tflow-text: #ffffff;
  --tflow-start-title-color: #ffffff;
  --tflow-end-title-color: #ffffff;
  --tflow-muted-text: #9ca3af;
  --tflow-browser-url-color: #9ca3af;
  --tflow-font-tooltip-title: 20px;
  --tflow-font-tooltip-text: 16px;
  --tflow-font-descriptor-text: 16px;
  --tflow-font-button: 15px;
  --tflow-font-intro-heading: 26px;
  --tflow-font-start-heading: 26px;
  --tflow-font-overlay-body: 15px;
  --tflow-font-eyebrow: 12px;
  --tflow-font-meta: 12px;
  --tflow-font-browser-url: 13px;
  --tflow-max-width: 1200px;
  --tflow-hotspot-color: #4ade80;
  --tflow-hotspot-bg: rgba(74, 222, 128, 0.3);
  --tflow-hotspot-hover-bg: rgba(74, 222, 128, 0.5);
  --tflow-hotspot-pulse: rgba(74, 222, 128, 0.6);
  --tflow-hotspot-pulse-end: rgba(74, 222, 128, 0);
  --tflow-hotspot-radius: 50%;
  --tflow-close-bg: rgba(0, 0, 0, 0.22);
  --tflow-close-bg-hover: rgba(0, 0, 0, 0.34);
  --tflow-close-x: #9ca3af;
  --tflow-descriptor-bg: #e91e8f;
  --tflow-descriptor-text: #ffffff;
  --tflow-descriptor-border: rgba(40, 116, 187, 0.35);
  --tflow-start-icon-color: #ffffff;
  --tflow-start-icon-size: 18px;
  --tflow-start-icon-circle-size: 44px;
  --tflow-start-icon-bg: rgba(127, 127, 127, 0.18);
  --tflow-end-icon-color: #ffffff;
  --tflow-end-icon-size: 18px;
  --tflow-end-icon-circle-size: 44px;
  --tflow-end-icon-bg: rgba(127, 127, 127, 0.18);
  --tflow-frame-padding-x: 20px;
  --tflow-frame-padding-y: 12px;
  --tflow-nav-offset-top: 14px;
  font-family: "IBM Plex Sans", sans-serif;
  text-align: left;
}

/* Theme isolation: prevent WordPress theme CSS from bleeding into the tour.
   Uses !important because themes commonly target h2/h3/p with class selectors
   that have equal or higher specificity than our own rules. */
.tflow-tour-wrapper *,
.tflow-tour-wrapper *::before,
.tflow-tour-wrapper *::after {
  box-sizing: border-box;
  text-align: left !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  word-spacing: normal !important;
  font-style: normal !important;
  text-decoration: none !important;
  font-family: inherit !important;
}

/* Restore intentional centering inside overlay cards (start/end screens).
   Higher specificity (0,2,0) beats the reset (0,1,0) even with !important. */
.tflow-tour-wrapper .tour-intro-card,
.tflow-tour-wrapper .tour-intro-card * {
  text-align: center !important;
}

.tflow-modal-trigger {
  cursor: pointer;
}

.tflow-modal-trigger:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.tflow-tour-modal-backdrop {
  --tflow-modal-viewport-gap: 72px;
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 16px 16px;
  background: rgba(5, 18, 45, 0.74);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.tflow-tour-modal-backdrop.is-open {
  opacity: 1;
}

.tflow-tour-modal-dialog {
  position: relative;
  width: min(var(--tflow-modal-dialog-max-width, 1080px), calc(100vw - 32px));
  overflow: visible;
  outline: none;
  border-radius: 12px;
}

.tflow-tour-modal-nav {
  position: absolute;
  top: -44px;
  right: 0;
  z-index: 8;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
  background: transparent;
  pointer-events: none;
}

.tflow-tour-modal-content {
  width: 100%;
  max-height: calc(100vh - var(--tflow-modal-viewport-gap));
  overflow-y: auto;
  overflow-x: hidden;
}

.tflow-tour-modal-close {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 8px;
  padding: 0;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  pointer-events: auto;
}

.tflow-tour-modal-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.tflow-tour-modal-close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.tflow-tour {
  position: relative;
  width: 100%;
  max-width: var(--tflow-max-width);
  margin: 0 auto;
  background: var(--tflow-bg);
  border-radius: 12px;
  padding: var(--tflow-frame-padding-y) var(--tflow-frame-padding-x);
  box-sizing: border-box;
  overflow: visible;
}


.tour-screenshot-wrapper {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  z-index: 1;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.browser-chrome {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
  border-bottom: 1px solid #2a2a2a;
}

.browser-dots {
  display: flex;
  gap: 8px;
  margin-right: 4px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-red {
  background: #ff5f57;
}

.dot-yellow {
  background: #febc2e;
}

.dot-green {
  background: #28c840;
}

.browser-address-bar {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 6px;
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
}

.lock-icon {
  flex-shrink: 0;
  color: #6b7280;
}

.address-text {
  font-size: var(--tflow-font-browser-url);
  color: var(--tflow-browser-url-color);
}

.browser-actions {
  font-size: 18px;
  line-height: 1;
  color: #6b7280;
}

.browser-icon {
  cursor: pointer;
}

.tflow-tour.no-browser .browser-chrome {
  display: none;
}

.tflow-tour.is-fullscreen .browser-chrome,
.tflow-tour.is-css-fullscreen .browser-chrome {
  display: none;
}

.tflow-tour.browser-light .browser-chrome {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  border-bottom: 1px solid #d4dde7;
}

.tflow-tour.browser-light .browser-address-bar {
  background: #fff;
  border-color: #cfd8e2;
}

.tflow-tour.browser-light .lock-icon,
.tflow-tour.browser-light .browser-actions {
  color: #64748b;
}

.tour-img-wrap {
  position: relative;
  transform-origin: 0 0;
  transform: matrix(1, 0, 0, 1, 0, 0);
  will-change: transform;
}

.tour-screenshot {
  width: 100%;
  height: auto;
  aspect-ratio: var(--tflow-aspect-ratio, 16 / 9);
  object-fit: fill;
  display: block;
}

.tour-video {
  width: 100%;
  height: auto;
  aspect-ratio: var(--tflow-aspect-ratio, 16 / 9);
  object-fit: contain;
  display: block;
  background: #000;
}

.tour-hotspots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  --tflow-hotspot-scale-comp: 1;
  pointer-events: none;
}

.tour-descriptor-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
  z-index: 18;
}

.tour-media-controls {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tour-media-toggle {
  position: relative;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.55);
  color: #f8fafc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    background-color 0.2s ease;
}

.tour-media-toggle:hover {
  background: rgba(15, 23, 42, 0.8);
}

.tour-media-toggle::after {
  content: attr(aria-label);
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 5px;
  background: rgba(15, 23, 42, 0.85);
  color: #f8fafc;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-3px);
  transition: opacity 0.1s ease, transform 0.1s ease;
}

@media (hover: hover) {
  .tour-media-toggle:hover::after {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.15s ease 0.5s, transform 0.15s ease 0.5s;
  }
}

.tour-media-toggle:focus-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

.tour-screenshot-wrapper:hover .tour-media-toggle,
.tour-screenshot-wrapper:focus-within .tour-media-toggle,
.tflow-tour.is-fullscreen .tour-media-toggle,
.tflow-tour.is-css-fullscreen .tour-media-toggle {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.tour-fullscreen-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.tour-media-toggle svg {
  width: 18px;
  height: 18px;
}

.tour-audio-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.tour-audio-unmuted {
  display: none;
}

.tour-audio-toggle.is-unmuted .tour-audio-muted {
  display: none;
}

.tour-audio-toggle.is-unmuted .tour-audio-unmuted {
  display: inline-flex;
}

.tour-backing-off {
  display: none;
}

.tour-backing-mute-toggle.is-backing-muted .tour-backing-on {
  display: none;
}

.tour-backing-mute-toggle.is-backing-muted .tour-backing-off {
  display: inline-flex;
}

.tour-audio-backing-player,
.tour-audio-voiceover-player {
  display: none;
}

.tflow-tour.is-fullscreen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: none;
  height: 100%;
  border-radius: 0;
  padding: 12px 12px 72px;
  box-sizing: border-box;
}

.tflow-tour.is-css-fullscreen {
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  border-radius: 0 !important;
  padding: 12px 12px 72px;
  box-sizing: border-box;
  overflow-y: auto;
}

.tflow-tour.is-fullscreen .tour-screenshot-wrapper,
.tflow-tour.is-css-fullscreen .tour-screenshot-wrapper {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  aspect-ratio: var(--tflow-aspect-ratio, 16 / 9);
}

.tflow-tour.is-fullscreen .tour-navigation,
.tflow-tour.is-css-fullscreen .tour-navigation {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  margin-top: 0;
  z-index: 90;
  background: rgba(5, 18, 45, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
}

.tour-fullscreen-exit {
  display: none;
}

.tflow-tour.is-fullscreen .tour-fullscreen-enter,
.tflow-tour.is-css-fullscreen .tour-fullscreen-enter {
  display: none;
}

.tflow-tour.is-fullscreen .tour-fullscreen-exit,
.tflow-tour.is-css-fullscreen .tour-fullscreen-exit {
  display: inline-flex;
}

.tflow-tour:not(.started) .tour-hotspots,
.tflow-tour:not(.started) .tour-descriptor-layer {
  display: none !important;
}

.tour-hotspot {
  position: absolute;
  isolation: isolate;
  cursor: pointer;
  z-index: 10;
  pointer-events: auto;
  outline: none;
  width: 56px;
  height: 56px;
  border: none;
  background: transparent;
  border-radius: var(--tflow-hotspot-radius);
  transform: translate(-50%, -50%) scale(var(--tflow-hotspot-scale-comp, 1));
  transition:
    left 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    top 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.22s ease,
    filter 0.22s ease;
  animation: hotspot-breathe 2.1s ease-in-out infinite;
}

.tour-hotspot::before,
.tour-hotspot::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34%;
  height: 34%;
  border-radius: inherit;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.tour-hotspot::before {
  border: 0.33em solid var(--tflow-hotspot-color);
  background: transparent;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  animation: hotspot-core 2.1s ease-in-out infinite;
}

.tour-hotspot::after {
  border: 0.1em solid var(--tflow-hotspot-color);
  background: transparent;
  animation: hotspot-ring 2.1s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.tour-hotspot:hover {
  transform: translate(-50%, -50%) scale(calc(var(--tflow-hotspot-scale-comp, 1) * 1.14));
}

.tour-hotspot:hover::before {
  background: var(--tflow-hotspot-bg);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16) inset,
    0 0 0 10px var(--tflow-hotspot-pulse-end);
}

.tour-hotspot:hover::after {
  opacity: 0.35;
  transform: translate(-50%, -50%) scale(2.2);
}

.tour-hotspot:focus-visible {
  outline: none;
}

.tour-hotspot:focus-visible::before {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16) inset,
    0 0 0 2px rgba(255, 255, 255, 0.65);
}

.tour-hotspot.is-following {
  animation: none;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(var(--tflow-hotspot-scale-comp, 1));
}

.tour-hotspot.is-following::before {
  animation: none;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  background: var(--tflow-hotspot-bg);
}

.tour-hotspot.is-following::after {
  animation: none;
  opacity: 0.32;
  transform: translate(-50%, -50%) scale(1.7);
}

.tour-hotspot.active {
  animation: none;
  transform: translate(-50%, -50%) scale(calc(var(--tflow-hotspot-scale-comp, 1) * 1.04));
}

.tour-hotspot.active::before {
  border-color: var(--tflow-accent);
  background: rgba(40, 116, 187, 0.16);
  animation: none;
  opacity: 1;
}

.tour-hotspot.active::after {
  border-color: var(--tflow-accent);
  animation: none;
  opacity: 0.28;
  transform: translate(-50%, -50%) scale(1.8);
}

@media (prefers-reduced-motion: reduce) {
  .tour-hotspot,
  .tour-hotspot::before,
  .tour-hotspot::after {
    animation: none !important;
  }
}

.tour-hotspot-advance {
  display: none;
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: var(--tflow-font-button);
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  background: var(--tflow-primary);
  color: var(--tflow-primary-text);
}

.tour-hotspot-advance.is-appearing {
  display: inline-flex;
  align-items: center;
  animation: tflowAdvanceBtnIn 300ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.tour-hotspot-advance.is-appearing:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

@keyframes tflowAdvanceBtnIn {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.tour-hotspot-descriptor {
  position: absolute;
  background: var(--tflow-descriptor-bg);
  color: var(--tflow-descriptor-text);
  border-radius: 10px;
  padding: 10px 18px;
  font-size: var(--tflow-font-descriptor-text);
  line-height: 1.2;
  font-weight: 600;
  white-space: normal;
  max-width: min(320px, calc(100vw - 24px));
  box-shadow: none;
  outline: 2px solid transparent;
  outline-offset: 0;
  pointer-events: auto;
  cursor: pointer;
  isolation: isolate;
  transition:
    transform 0.16s ease,
    outline-color 0.2s ease;
  z-index: 14;
}

.tour-hotspot-descriptor:hover,
.tour-hotspot-descriptor:focus-visible {
  transform: translateY(-1px) scale(1.015);
  outline-color: var(--tflow-descriptor-border);
}

.tour-hotspot-descriptor::before,
.tour-hotspot-descriptor::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.tour-hotspot-descriptor::before {
  width: 22px;
  height: 22px;
  background: var(--tflow-descriptor-border);
  opacity: 0;
  z-index: 1;
  transition: opacity 0.2s ease;
}

.tour-hotspot-descriptor::after {
  width: 18px;
  height: 18px;
  background: var(--tflow-descriptor-bg);
  z-index: 2;
}

.tour-hotspot-descriptor:hover::before,
.tour-hotspot-descriptor:focus-visible::before {
  opacity: 1;
}

.tour-hotspot-descriptor[data-placement="right"]::before,
.tour-hotspot-descriptor[data-placement="right"]::after {
  top: 50%;
  transform: translateY(-50%);
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.tour-hotspot-descriptor[data-placement="right"]::before {
  left: -20px;
}

.tour-hotspot-descriptor[data-placement="right"]::after {
  left: -16px;
}

.tour-hotspot-descriptor[data-placement="left"]::before,
.tour-hotspot-descriptor[data-placement="left"]::after {
  top: 50%;
  transform: translateY(-50%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.tour-hotspot-descriptor[data-placement="left"]::before {
  right: -20px;
}

.tour-hotspot-descriptor[data-placement="left"]::after {
  right: -16px;
}

.tour-hotspot-descriptor[data-placement="top"]::before,
.tour-hotspot-descriptor[data-placement="top"]::after {
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.tour-hotspot-descriptor[data-placement="top"]::before {
  bottom: -20px;
}

.tour-hotspot-descriptor[data-placement="top"]::after {
  bottom: -16px;
}

.tour-hotspot-descriptor[data-placement="bottom"]::before,
.tour-hotspot-descriptor[data-placement="bottom"]::after {
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.tour-hotspot-descriptor[data-placement="bottom"]::before {
  top: -20px;
}

.tour-hotspot-descriptor[data-placement="bottom"]::after {
  top: -16px;
}

@keyframes hotspot-breathe {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(calc(var(--tflow-hotspot-scale-comp, 1) * 0.86));
  }

  50% {
    transform: translate(-50%, -50%) scale(calc(var(--tflow-hotspot-scale-comp, 1) * 1.02));
  }
}

@keyframes hotspot-core {
  0%,
  100% {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 0.62;
    transform: translate(-50%, -50%) scale(0.84);
  }
}

@keyframes hotspot-ring {
  0% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1);
  }

  70% {
    opacity: 0.22;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.9);
  }
}

.tour-tooltip {
  position: absolute;
  max-width: 360px;
  padding: 24px;
  padding-top: 20px;
  border-radius: 10px;
  z-index: 100;
  background: var(--tflow-tooltip-bg);
  border: 1px solid rgba(79, 154, 255, 0.15);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 15px 40px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.tour-tooltip.is-video-end-modal {
  top: 50% !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  width: min(420px, calc(100% - 28px));
  max-width: min(420px, calc(100% - 28px));
  transform: translate(-50%, -50%);
}

.tflow-tour:not(.started) .tour-tooltip {
  display: none !important;
}

.tour-tooltip.hidden,
.hidden {
  display: none;
}

.tour-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 6px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  padding: 0;
  background: var(--tflow-close-bg);
  color: var(--tflow-close-x);
}

.tour-close:hover {
  background: var(--tflow-close-bg-hover);
  color: var(--tflow-close-x);
}

.tour-tooltip-title {
  font-size: var(--tflow-font-tooltip-title);
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.3;
  padding-right: 36px;
  color: var(--tflow-text);
}

.tour-tooltip-text {
  font-size: var(--tflow-font-tooltip-text);
  line-height: 1.6;
  margin: 0 0 20px;
  color: var(--tflow-text);
}

.tour-tooltip-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.tour-btn {
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: var(--tflow-font-button);
  font-weight: 600;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-block;
}

.tour-btn.primary {
  background: var(--tflow-primary);
  color: var(--tflow-primary-text);
}

.tour-btn.primary:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.tour-btn.secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--tflow-text);
  border-color: rgba(255, 255, 255, 0.08);
}

.tour-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.tour-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.tour-intro-overlay {
  position: absolute;
  inset: 0;
  background: var(--tflow-overlay-scrim);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.45s ease;
}

.tour-intro-overlay.dismissed {
  opacity: 0;
  pointer-events: none;
}

.tour-intro-card {
  background: var(--tflow-overlay-card);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 40px 44px;
  text-align: center !important;
  max-width: 460px;
  width: 88%;
  color: var(--tflow-text);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.tour-overlay-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--tflow-text);
  background: rgba(127, 127, 127, 0.18);
  border: none;
}

.tour-overlay-icon-start {
  color: var(--tflow-start-icon-color);
  background: var(--tflow-start-icon-bg);
  --tflow-overlay-icon-size: var(--tflow-start-icon-size, 18px);
  width: var(--tflow-start-icon-circle-size, 44px);
  height: var(--tflow-start-icon-circle-size, 44px);
  cursor: pointer;
}

.tour-overlay-icon-start:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

.tour-overlay-icon-end {
  color: var(--tflow-end-icon-color);
  background: var(--tflow-end-icon-bg);
  --tflow-overlay-icon-size: var(--tflow-end-icon-size, 18px);
  width: var(--tflow-end-icon-circle-size, 44px);
  height: var(--tflow-end-icon-circle-size, 44px);
}

.tour-overlay-icon i,
.tour-overlay-icon svg,
.tour-overlay-icon img {
  width: var(--tflow-overlay-icon-size, 18px);
  height: var(--tflow-overlay-icon-size, 18px);
  font-size: var(--tflow-overlay-icon-size, 18px);
}

.tour-overlay-icon .tour-overlay-icon-fa i[class*="fa-"] {
  display: inline-block;
  line-height: 1;
  text-align: center !important;
  font-style: normal !important;
  font-family: var(--fa-style-family, "Font Awesome 6 Free") !important;
  font-weight: var(--fa-style, 900) !important;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.tour-overlay-icon .tour-overlay-icon-fa i.fa-fw {
  width: 1.25em !important;
}

.tour-overlay-icon-fa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tour-overlay-icon-fallback {
  display: none;
}

.tour-overlay-icon.fa-fallback-active .tour-overlay-icon-fa {
  display: none;
}

.tour-overlay-icon.fa-fallback-active .tour-overlay-icon-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tour-overlay-icon img {
  object-fit: contain;
}

.tour-intro-eyebrow {
  font-size: var(--tflow-font-eyebrow);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tflow-text);
  margin: 0 0 12px;
}

.tour-intro-heading {
  font-size: var(--tflow-font-intro-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--tflow-end-title-color);
  margin: 0 0 14px;
}

.tour-intro-overlay .tour-intro-heading {
  font-size: var(--tflow-font-start-heading);
  color: var(--tflow-start-title-color);
}

.tour-intro-sub {
  font-size: var(--tflow-font-overlay-body);
  line-height: 1.65;
  color: var(--tflow-text);
  margin: 0 0 28px;
}

.tour-intro-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--tflow-primary);
  color: var(--tflow-primary-text);
  border: none;
  border-radius: 8px;
  font-size: var(--tflow-font-button);
  font-weight: 600;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.tour-intro-btn:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.tour-intro-meta {
  font-size: var(--tflow-font-meta);
  color: var(--tflow-text);
  margin: 16px 0 0;
}

.tour-end-overlay {
  position: absolute;
  inset: 0;
  background: var(--tflow-overlay-scrim);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.tour-end-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.tour-end-restart {
  display: block;
  margin: 14px auto 0;
  background: none;
  border: none;
  font-size: var(--tflow-font-meta);
  color: var(--tflow-text);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.tour-end-restart:hover {
  color: var(--tflow-text);
}

.tour-navigation {
  position: relative;
  display: none;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  width: fit-content;
  max-width: 100%;
  margin: var(--tflow-nav-offset-top) auto 0;
}

.tflow-tour-modal-content .tflow-tour-wrapper .tour-navigation {
  background: var(--tflow-modal-nav-bg, #05122d);
  border-radius: 10px;
  padding: 8px 10px;
}

.tflow-tour.started .tour-navigation {
  display: flex;
}

.tour-progress {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex: 0 0 auto;
  min-width: 0;
}

.tour-slide-audio-transport {
  width: clamp(120px, 30vw, 220px);
  order: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 6px;
  margin-left: 2px;
  border-radius: 999px;
  border: 0;
  background: transparent;
}

.tour-slide-audio-transport.hidden {
  display: none !important;
}

.tflow-tour-wrapper .tour-slide-audio-playpause {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 0;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.14);
  background-image: none;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font: inherit;
  line-height: 0;
  box-shadow: none;
  padding: 0;
  text-shadow: none;
}

.tflow-tour-wrapper .tour-slide-audio-playpause::before,
.tflow-tour-wrapper .tour-slide-audio-playpause::after {
  content: none !important;
  display: none !important;
}

.tflow-tour-wrapper .tour-slide-audio-playpause:hover {
  background: rgba(255, 255, 255, 0.24);
}

.tflow-tour-wrapper .tour-slide-audio-play,
.tflow-tour-wrapper .tour-slide-audio-pause {
  width: 11px;
  height: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tflow-tour-wrapper .tour-slide-audio-play svg,
.tflow-tour-wrapper .tour-slide-audio-pause svg {
  width: 100%;
  height: 100%;
  display: block;
}

.tflow-tour-wrapper .tour-slide-audio-playpause .tour-slide-audio-pause {
  display: none;
}

.tflow-tour-wrapper .tour-slide-audio-playpause.is-playing .tour-slide-audio-play {
  display: none;
}

.tflow-tour-wrapper .tour-slide-audio-playpause.is-playing .tour-slide-audio-pause {
  display: inline-flex;
}

.tflow-tour-wrapper .tour-slide-audio-seek {
  flex: 1;
  min-width: 90px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
  accent-color: var(--tflow-slide-audio-bar);
}

.tflow-tour-wrapper .tour-slide-audio-seek::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 999px;
  border: 0;
  background: var(--tflow-slide-audio-bar);
}

.tflow-tour-wrapper .tour-slide-audio-seek::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  margin-top: -4px;
  border-radius: 50%;
  border: 0;
  background: rgba(248, 250, 252, 0.95);
  box-shadow: none;
}

.tflow-tour-wrapper .tour-slide-audio-seek::-moz-range-track {
  height: 4px;
  border-radius: 999px;
  border: 0;
  background: var(--tflow-slide-audio-bar);
}

.tflow-tour-wrapper .tour-slide-audio-seek::-moz-range-progress {
  height: 4px;
  border-radius: 999px;
  background: var(--tflow-slide-audio-bar);
}

.tflow-tour-wrapper .tour-slide-audio-seek::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  background: rgba(248, 250, 252, 0.95);
}

.tour-slide-audio-time {
  min-width: 30px;
  font-size: 10px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.86);
  font-variant-numeric: tabular-nums;
}

.tour-progress-dot.is-audio-replaced {
  display: none;
}

.tour-progress-preview {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  width: 234px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(5, 18, 45, 0.92);
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px) scale(0.98);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 95;
}

.tour-progress-preview.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0) scale(1);
}

.tour-progress-preview-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.tour-progress-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  min-height: 8px;
  flex-shrink: 0;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--tflow-nav-dot);
  transition: all 0.3s ease;
  border: none;
  padding: 0;
  cursor: pointer;
  display: block;
  box-sizing: content-box !important;
}

.tour-progress-dot:hover:not(.active) {
  background: var(--tflow-nav-dot-hover);
  transform: scale(1.2);
}

.tour-progress-dot.active {
  background: var(--tflow-nav-dot-active);
  width: 24px;
  min-width: 24px;
  aspect-ratio: auto;
  border-radius: 4px;
  cursor: default;
}

.tour-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: var(--tflow-font-button);
  font-weight: 600;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--tflow-nav-back-bg);
  border: 1px solid var(--tflow-nav-back-border);
  color: var(--tflow-text);
}

.tour-nav-btn:hover {
  background: var(--tflow-nav-back-bg-hover);
  border-color: var(--tflow-nav-back-border-hover);
  transform: translateY(-1px);
}

.tour-nav-btn:disabled {
  opacity: 1;
  pointer-events: none;
}

.tflow-tour-wrapper .tflow-tour .tour-btn,
.tflow-tour-wrapper .tflow-tour .tour-intro-btn,
.tflow-tour-wrapper .tflow-tour .tour-nav-btn,
.tflow-tour-wrapper .tflow-tour .tour-end-link,
.tflow-tour-wrapper .tflow-tour .tour-end-restart {
  font-family: "IBM Plex Sans", sans-serif !important;
}

.tflow-tour-wrapper .tflow-tour .tour-btn,
.tflow-tour-wrapper .tflow-tour .tour-intro-btn,
.tflow-tour-wrapper .tflow-tour .tour-nav-btn,
.tflow-tour-wrapper .tflow-tour .tour-end-link,
.tflow-tour-wrapper .tflow-tour .tour-end-restart,
.tflow-tour-wrapper .tflow-tour .tour-close,
.tflow-tour-wrapper .tflow-tour .tour-fullscreen-toggle,
.tflow-tour-wrapper .tflow-tour .tour-audio-toggle,
.tflow-tour-wrapper .tflow-tour .tour-backing-mute-toggle,
.tflow-tour-wrapper .tflow-tour .tour-overlay-icon-start {
  box-shadow: none !important;
}

.tflow-tour-wrapper .tflow-tour .tour-btn:hover,
.tflow-tour-wrapper .tflow-tour .tour-btn:focus,
.tflow-tour-wrapper .tflow-tour .tour-btn:focus-visible,
.tflow-tour-wrapper .tflow-tour .tour-btn:active,
.tflow-tour-wrapper .tflow-tour .tour-intro-btn:hover,
.tflow-tour-wrapper .tflow-tour .tour-intro-btn:focus,
.tflow-tour-wrapper .tflow-tour .tour-intro-btn:focus-visible,
.tflow-tour-wrapper .tflow-tour .tour-intro-btn:active,
.tflow-tour-wrapper .tflow-tour .tour-nav-btn:hover,
.tflow-tour-wrapper .tflow-tour .tour-nav-btn:focus,
.tflow-tour-wrapper .tflow-tour .tour-nav-btn:focus-visible,
.tflow-tour-wrapper .tflow-tour .tour-nav-btn:active,
.tflow-tour-wrapper .tflow-tour .tour-end-link:hover,
.tflow-tour-wrapper .tflow-tour .tour-end-link:focus,
.tflow-tour-wrapper .tflow-tour .tour-end-link:focus-visible,
.tflow-tour-wrapper .tflow-tour .tour-end-link:active,
.tflow-tour-wrapper .tflow-tour .tour-end-restart:hover,
.tflow-tour-wrapper .tflow-tour .tour-end-restart:focus,
.tflow-tour-wrapper .tflow-tour .tour-end-restart:focus-visible,
.tflow-tour-wrapper .tflow-tour .tour-end-restart:active,
.tflow-tour-wrapper .tflow-tour .tour-close:hover,
.tflow-tour-wrapper .tflow-tour .tour-close:focus,
.tflow-tour-wrapper .tflow-tour .tour-close:focus-visible,
.tflow-tour-wrapper .tflow-tour .tour-close:active,
.tflow-tour-wrapper .tflow-tour .tour-fullscreen-toggle:hover,
.tflow-tour-wrapper .tflow-tour .tour-fullscreen-toggle:focus,
.tflow-tour-wrapper .tflow-tour .tour-fullscreen-toggle:focus-visible,
.tflow-tour-wrapper .tflow-tour .tour-fullscreen-toggle:active,
.tflow-tour-wrapper .tflow-tour .tour-audio-toggle:hover,
.tflow-tour-wrapper .tflow-tour .tour-audio-toggle:focus,
.tflow-tour-wrapper .tflow-tour .tour-audio-toggle:focus-visible,
.tflow-tour-wrapper .tflow-tour .tour-audio-toggle:active,
.tflow-tour-wrapper .tflow-tour .tour-backing-mute-toggle:hover,
.tflow-tour-wrapper .tflow-tour .tour-backing-mute-toggle:focus,
.tflow-tour-wrapper .tflow-tour .tour-backing-mute-toggle:focus-visible,
.tflow-tour-wrapper .tflow-tour .tour-backing-mute-toggle:active,
.tflow-tour-wrapper .tflow-tour .tour-progress-dot:hover,
.tflow-tour-wrapper .tflow-tour .tour-progress-dot:focus,
.tflow-tour-wrapper .tflow-tour .tour-progress-dot:focus-visible,
.tflow-tour-wrapper .tflow-tour .tour-progress-dot:active,
.tflow-tour-wrapper .tflow-tour .tour-overlay-icon-start:hover,
.tflow-tour-wrapper .tflow-tour .tour-overlay-icon-start:focus,
.tflow-tour-wrapper .tflow-tour .tour-overlay-icon-start:focus-visible,
.tflow-tour-wrapper .tflow-tour .tour-overlay-icon-start:active {
  box-shadow: none !important;
}

.tflow-tour-wrapper .tflow-tour .tour-btn.primary,
.tflow-tour-wrapper .tflow-tour .tour-intro-btn,
.tflow-tour-wrapper .tflow-tour .tour-end-link {
  background: var(--tflow-primary) !important;
  color: var(--tflow-primary-text) !important;
  border-color: transparent !important;
  text-decoration: none !important;
}

.tflow-tour-wrapper .tflow-tour .tour-btn.secondary,
.tflow-tour-wrapper .tflow-tour .tour-nav-btn {
  color: var(--tflow-text) !important;
  text-decoration: none !important;
}

.tflow-tour-wrapper .tflow-tour .tour-nav-btn {
  background: var(--tflow-nav-back-bg) !important;
  border: 1px solid var(--tflow-nav-back-border) !important;
  color: var(--tflow-nav-back-text) !important;
}

.tflow-tour-wrapper .tflow-tour .tour-nav-btn:hover {
  background: var(--tflow-nav-back-bg-hover) !important;
  border-color: var(--tflow-nav-back-border-hover) !important;
}

.tflow-tour-wrapper .tflow-tour .tour-close {
  background: var(--tflow-close-bg) !important;
  color: var(--tflow-close-x) !important;
  border: 0 !important;
}

.tflow-tour-wrapper .tflow-tour .tour-close:hover {
  background: var(--tflow-close-bg-hover) !important;
  color: var(--tflow-close-x) !important;
}

.tflow-tour-wrapper .tflow-tour .tour-end-restart {
  background: transparent !important;
  border: 0 !important;
  color: var(--tflow-text) !important;
}

.tflow-tour-wrapper .tflow-tour .tour-tooltip-title {
  font-size: var(--tflow-font-tooltip-title) !important;
  color: var(--tflow-text) !important;
}

.tflow-tour-wrapper .tflow-tour .tour-tooltip-text {
  font-size: var(--tflow-font-tooltip-text) !important;
  color: var(--tflow-text) !important;
}

.tflow-tour-wrapper .tflow-tour .tour-hotspot-descriptor {
  font-size: var(--tflow-font-descriptor-text) !important;
  box-shadow: none !important;
}

.tflow-tour-wrapper .tflow-tour .tour-hotspot-descriptor:hover,
.tflow-tour-wrapper .tflow-tour .tour-hotspot-descriptor:focus,
.tflow-tour-wrapper .tflow-tour .tour-hotspot-descriptor:focus-visible,
.tflow-tour-wrapper .tflow-tour .tour-hotspot-descriptor:active {
  box-shadow: none !important;
}

.tflow-tour-wrapper .tflow-tour .tour-intro-overlay .tour-intro-heading {
  font-size: var(--tflow-font-start-heading) !important;
  color: var(--tflow-start-title-color) !important;
}

.tflow-tour-wrapper .tflow-tour .tour-end-overlay .tour-intro-heading {
  font-size: var(--tflow-font-intro-heading) !important;
  color: var(--tflow-end-title-color) !important;
}

@media (max-width: 1024px) {
  .tflow-tour {
    padding: calc(var(--tflow-frame-padding-y) * 0.833) calc(var(--tflow-frame-padding-x) * 0.7);
  }

  .tour-navigation {
    margin-top: calc(var(--tflow-nav-offset-top) * 0.857);
  }

  .tour-screenshot-wrapper {
    border-radius: 8px;
  }

  .browser-chrome {
    padding: 10px 12px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .tour-tooltip {
    max-width: 320px;
    padding: 18px;
  }

  .tour-media-toggle {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }

}

@media (max-width: 768px) {
  .tflow-tour-modal-backdrop {
    --tflow-modal-viewport-gap: 60px;
    padding: 48px 12px 12px;
  }

  .tflow-tour-modal-dialog {
    width: calc(100vw - 24px);
  }

  .tflow-tour {
    padding: calc(var(--tflow-frame-padding-y) * 0.833) calc(var(--tflow-frame-padding-x) * 0.6);
  }

  .tour-intro-overlay,
  .tour-end-overlay {
    padding: 10px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .tour-intro-card {
    width: min(100%, 460px);
    max-height: 100%;
    margin: auto;
    overflow-y: auto;
    padding: 20px 16px;
  }

  .tour-intro-overlay .tour-overlay-icon-start,
  .tour-intro-overlay .tour-intro-eyebrow {
    display: none;
  }

  .tour-end-overlay .tour-overlay-icon-end {
    display: none;
  }

  .tour-intro-overlay .tour-intro-heading {
    margin-bottom: 10px;
  }

  .tour-intro-overlay .tour-intro-sub {
    margin-bottom: 14px;
    line-height: 1.5;
  }

  .tour-intro-overlay .tour-intro-btn {
    width: 100%;
    max-width: 320px;
    margin-top: 0;
  }

  .tour-intro-overlay .tour-intro-meta {
    margin-top: 10px;
  }

  .tour-tooltip {
    position: absolute;
    left: 12px;
    right: 12px;
    max-width: none;
    width: auto;
    top: auto;
    bottom: 12px;
    z-index: 1000;
  }

  .tour-tooltip.is-video-end-modal {
    left: 50% !important;
    right: auto !important;
    top: 50% !important;
    bottom: auto !important;
    width: calc(100% - 24px);
    transform: translate(-50%, -50%);
  }

  .tour-navigation {
    width: 100%;
    margin-top: calc(var(--tflow-nav-offset-top) * 0.857);
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .tour-progress {
    order: -1;
    width: 100%;
    justify-content: center;
  }

  .tour-nav-btn,
  .tour-hotspot-advance {
    width: auto;
    flex: 0 0 auto;
  }

  .tour-slide-audio-transport {
    width: 100%;
    padding: 2px 0 0;
  }

  .tour-progress-preview {
    display: none !important;
  }
}

@media (max-width: 520px) {
  .tflow-tour-modal-backdrop {
    --tflow-modal-viewport-gap: 52px;
    padding: 44px 8px 8px;
  }

  .tflow-tour-modal-dialog {
    width: calc(100vw - 16px);
  }

  .tflow-tour {
    padding: calc(var(--tflow-frame-padding-y) * 0.5) calc(var(--tflow-frame-padding-x) * 0.4);
  }

  .tour-tooltip {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 14px;
  }

  .tour-tooltip-title {
    font-size: 15px !important;
    margin-bottom: 6px;
    padding-right: 28px;
  }

  .tour-tooltip-text {
    font-size: 13px !important;
    margin-bottom: 14px;
    line-height: 1.5;
  }

  .tour-btn {
    padding: 8px 14px;
    font-size: 13px !important;
  }

  .tour-navigation {
    gap: 8px;
    margin-top: calc(var(--tflow-nav-offset-top) * 0.714);
  }

  .tour-intro-card {
    padding: 20px 16px;
  }

  .tour-intro-heading {
    font-size: 20px !important;
  }

  .tour-intro-sub {
    font-size: 13px !important;
  }
}

@media (hover: none), (pointer: coarse) {
  .tour-media-toggle {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  /* Backing audio is suppressed on mobile — hide its toggle */
  .tour-backing-mute-toggle {
    display: none !important;
  }

  /* Fullscreen not enabled for mobile at this time */
  .tour-fullscreen-toggle {
    display: none !important;
  }

  /* Persistent CTA hidden on mobile */
  .tour-persistent-cta {
    display: none !important;
  }
}

/* Persistent CTA */
.tour-persistent-cta {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  overflow: visible;
  background: var(--tflow-pcta-icon-bg, var(--tflow-primary));
  color: var(--tflow-pcta-icon-color, var(--tflow-primary-text));
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  transition: box-shadow 220ms ease, transform 140ms ease;
  padding: 0;
  width: var(--tflow-pcta-box-size, 48px);
  height: var(--tflow-pcta-box-size, 48px);
}

.tour-persistent-cta:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.48);
  transform: translateY(-1px);
}

.tour-persistent-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--tflow-pcta-box-size, 48px);
  height: var(--tflow-pcta-box-size, 48px);
  font-size: var(--tflow-pcta-icon-size, 20px);
  color: inherit;
}

.tour-persistent-cta-icon img {
  width: calc(var(--tflow-pcta-icon-size, 20px) + 4px);
  height: calc(var(--tflow-pcta-icon-size, 20px) + 4px);
  object-fit: contain;
}

.tour-persistent-cta-label {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  padding: 12px 20px;
  font-size: var(--tflow-pcta-label-size, 14px);
  font-weight: var(--tflow-pcta-label-weight, 400);
  white-space: nowrap;
  color: var(--tflow-pcta-label-color, var(--tflow-pcta-icon-color, #fff));
  background: var(--tflow-pcta-label-bg, #0B365B);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  transition: opacity 180ms ease, transform 220ms ease, visibility 180ms ease;
}

.tour-persistent-cta-label-arrow {
  margin-left: 6px;
  display: inline-flex;
  align-items: center;
}

.tour-persistent-cta:hover .tour-persistent-cta-label,
.tour-persistent-cta:focus-visible .tour-persistent-cta-label,
.tour-persistent-cta:focus .tour-persistent-cta-label {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.tflow-tour.is-fullscreen .tour-persistent-cta,
.tflow-tour.is-css-fullscreen .tour-persistent-cta {
  display: none;
}
