/* TRIPDOC custom CSS for Tilda. CDN image paths are inserted. Fonts are connected in Tilda settings: Unbounded for headings, Onest for text. */
/* cyrillic-ext */
/* cyrillic */
/* greek-ext */
/* greek */
/* vietnamese */
/* latin-ext */
/* latin */
/* cyrillic-ext */
/* cyrillic */
/* greek-ext */
/* greek */
/* vietnamese */
/* latin-ext */
/* latin */
/* cyrillic-ext */
/* cyrillic */
/* greek-ext */
/* greek */
/* vietnamese */
/* latin-ext */
/* latin */
/* cyrillic-ext */
/* cyrillic */
/* greek-ext */
/* greek */
/* vietnamese */
/* latin-ext */
/* latin */
/* cyrillic-ext */
/* cyrillic */
/* greek-ext */
/* greek */
/* vietnamese */
/* latin-ext */
/* latin */
/* cyrillic-ext */
/* cyrillic */
/* greek-ext */
/* greek */
/* vietnamese */
/* latin-ext */
/* latin */
/* cyrillic-ext */
/* cyrillic */
/* greek-ext */
/* greek */
/* vietnamese */
/* latin-ext */
/* latin */
/* cyrillic-ext */
/* cyrillic */
/* latin-ext */
/* latin */
/* cyrillic-ext */
/* cyrillic */
/* latin-ext */
/* latin */
/* cyrillic-ext */
/* cyrillic */
/* latin-ext */
/* latin */
/* cyrillic-ext */
/* cyrillic */
/* vietnamese */
/* latin-ext */
/* latin */
/* cyrillic-ext */
/* cyrillic */
/* vietnamese */
/* latin-ext */
/* latin */
:root {
  --blue: #0173fd;
  --lime: #ceff72;
  --lime-soft: #e6ffb9;
  --purple: #da9dff;
  --dark: #2e2e2e;
  --dark-2: #343535;
  --text: #2e2e2e;
  --muted: #89898a;
  --paper: #fbfdff;
  --line: rgba(52, 53, 53, 0.12);
  --grid-line-soft: rgba(52, 53, 53, 0.045);
  --container: min(1320px, calc(100vw - 120px));
  --frame: min(1440px, 100vw);
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: "Onest", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.25;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: 0;
  width: var(--container);
  min-height: 100%;
  transform: translateX(-50%);
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0, var(--grid-line-soft) 1px, var(--line) 2px, transparent 4px),
    linear-gradient(90deg, transparent calc(33.333% - 2px), var(--grid-line-soft) calc(33.333% - 1px), var(--line) 33.333%, transparent calc(33.333% + 2px)),
    linear-gradient(90deg, transparent calc(66.666% - 2px), var(--grid-line-soft) calc(66.666% - 1px), var(--line) 66.666%, transparent calc(66.666% + 2px)),
    linear-gradient(90deg, transparent calc(100% - 4px), var(--grid-line-soft) calc(100% - 2px), var(--line) calc(100% - 1px), transparent 100%);
  opacity: 0.75;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--lime);
  color: #111;
}

.skip-link:focus {
  top: 16px;
}

.page-grid {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 120px;
}

.page-grid::before {
  display: none;
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 34px;
  width: var(--container);
  min-height: 86px;
  margin: 16px auto -102px;
  padding: 0 28px;
  border: 1px solid rgba(52, 53, 53, 0.16);
  border-radius: 999px;
  background: rgba(251, 253, 255, 0.9);
  backdrop-filter: blur(18px);
}

.page-header {
  margin-bottom: 0;
}

.logo {
  flex: 0 0 auto;
  display: block;
  width: 177px;
  height: 43px;
  overflow: hidden;
  background: url("https://static.tildacdn.com/tild3766-3666-4838-b832-643463646236/logo-tripdoc.png") left center / contain no-repeat;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  color: var(--blue);
  text-indent: -9999px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1 1 auto;
  font-size: 16px;
  font-weight: 500;
}

.main-nav a,
.nav-soon {
  white-space: nowrap;
}

.main-nav a[aria-current="page"] {
  color: var(--blue);
}

.nav-soon small,
.site-footer small {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  margin-left: 6px;
  padding: 1px 8px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  color: var(--blue);
  font-size: 12px;
  line-height: 1;
}

.site-footer small {
  border-color: var(--lime);
  color: var(--lime);
}

.nowrap {
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 36px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn span[aria-hidden="true"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  font-family: Arial, sans-serif;
  font-size: 1.42em;
  font-weight: 900;
  line-height: 0.85;
  transform: translateY(-1px);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #202020;
  background: var(--lime);
}

.btn-dark {
  color: #fff;
  background: var(--dark);
}

.btn-outline {
  color: #f7f7f7;
  background: transparent;
  border-color: var(--lime);
}

.btn-outline.light {
  color: var(--dark);
  border-color: var(--purple);
}

.header-cta {
  min-height: 54px;
  padding-inline: 34px;
}

.menu-toggle {
  display: none;
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  place-items: center;
  gap: 3px;
  padding: 0;
  border: 1px solid rgba(52, 53, 53, 0.3);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 12px;
  height: 1.5px;
  border-radius: 999px;
  background: var(--dark);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(2.5px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-2.5px) rotate(-45deg);
}

.hero {
  padding-top: 0;
  width: var(--frame);
  margin: 0 auto;
}

.hero-card {
  position: relative;
  min-height: 910px;
  width: var(--frame);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  background:
    linear-gradient(rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.28)),
    url("https://static.tildacdn.com/tild3735-6365-4633-b234-653263633763/hero-desktop.webp") center / cover no-repeat;
}

.hero-copy {
  display: grid;
  justify-items: center;
  width: calc(100% - 250px);
  max-width: 1190px;
  margin: 0 auto;
  padding-top: 180px;
  text-align: center;
  color: #fff;
}

.eyebrow {
  margin: 0 0 8px;
  font-family: "Unbounded", Arial, sans-serif;
  color: #fff;
  font-size: 34px;
  line-height: 1.2;
}

.hero h1 {
  max-width: 1190px;
  margin: 0;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: clamp(56px, 6.25vw, 90px);
  font-weight: 500;
  line-height: 1.1;
}

.hero h1 span {
  display: block;
}

.hero h1 .accent {
  color: var(--lime);
}

.hero h1 .inline {
  display: inline;
}

.hero-lead {
  width: min(660px, 90%);
  margin: 160px 0 40px;
  font-size: 22px;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  justify-content: center;
  width: min(660px, 100%);
  gap: 16px;
  flex-wrap: wrap;
}

.hero-actions .btn {
  flex: 1 1 0;
  min-width: 321px;
  min-height: 72px;
  gap: 24px;
  padding-inline: 40px;
  font-size: 20px;
}

.section,
.dark-band {
  position: relative;
  z-index: 1;
  width: var(--frame);
  margin: 0 auto;
}

.section {
  padding: 92px 60px;
}

.dark-band {
  overflow: hidden;
  padding: 72px 50px;
  border-radius: var(--radius-lg);
  color: #fff;
  background: var(--dark);
}

.section-head {
  max-width: 1132px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-head h2,
.listing-hero h1,
.not-found h1 {
  margin: 0;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-head p,
.listing-hero p {
  margin: 16px 0 0;
  color: var(--muted);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: clamp(24px, 2.35vw, 34px);
  line-height: 1.2;
}

.dark-band .section-head p {
  color: #fff;
}

.section-head strong,
.listing-hero strong {
  color: var(--blue);
  font-weight: 500;
}

.dark-band .section-head strong {
  color: var(--lime);
}

.spark-title {
  position: relative;
  display: inline-block;
  color: #fff;
}

.spark-title.blue {
  color: var(--blue);
}

.spark-title::before,
.spark-title::after {
  content: "";
  position: absolute;
  top: 0.55em;
  width: 54px;
  height: 54px;
  background: url("https://static.tildacdn.com/tild3638-6133-4461-b666-343431633637/star.png") center / contain no-repeat;
  line-height: 1;
  transform: translateY(-50%);
  animation: spark-breathe 3.8s ease-in-out infinite;
}

.spark-title::before {
  right: calc(100% + 40px);
}

.spark-title::after {
  left: calc(100% + 40px);
  animation-delay: 1.1s;
}

.familiar {
  min-height: 913px;
  padding: 0;
  color: var(--text);
  background: transparent;
}

.familiar .section-head {
  width: 100%;
  max-width: none;
  min-height: 168px;
  margin-bottom: 60px;
}

.familiar .section-head h2 {
  font-size: 58px;
}

.familiar .section-head p {
  max-width: 560px;
  margin: 18px auto 0;
  color: #89898a;
  font-size: 34px;
}

.familiar .section-head strong {
  color: var(--blue);
}

.pain-stack {
  position: relative;
  width: 627px;
  height: 685px;
  max-width: 100%;
  margin: 0 auto;
  background: url("https://static.tildacdn.com/tild3065-3138-4836-b366-613362646439/swipe-cards-desktop.png") center / contain no-repeat;
}

.pain-card {
  position: absolute;
  top: 65.5px;
  left: 93.85px;
  display: grid;
  place-items: center;
  width: 440px;
  height: 555px;
  padding: 208px 47px 150px;
  border-radius: 28px;
  color: #fff;
  background-color: #2e2e2e;
  background:
    linear-gradient(rgba(46, 46, 46, 0.7), rgba(46, 46, 46, 0.7)),
    url("https://static.tildacdn.com/tild3733-6366-4634-b663-383732623666/paper.webp") center / cover no-repeat;
  box-shadow: var(--shadow);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
  transform-origin: 50% 50%;
}

.pain-stack .pain-card {
  opacity: 0;
  pointer-events: none;
}

.pain-card::before {
  content: "";
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 24px;
}

.pain-card::after {
  content: "";
  position: absolute;
  left: 52px;
  bottom: 127.5px;
  width: 336px;
  height: 39px;
  background: url("https://static.tildacdn.com/tild6466-6230-4335-b065-633530386664/brush.svg") center / contain no-repeat;
}

.pain-card span {
  position: relative;
  z-index: 1;
  display: block;
}

.pain-card:nth-child(n + 2) span,
.pain-card:nth-child(n + 2)::before,
.pain-card:nth-child(n + 2)::after {
  opacity: 0;
}

.pain-card:nth-child(1) {
  z-index: 5;
  transform: rotate(0deg);
  animation: card-float 5.2s ease-in-out infinite;
}

.pain-card:nth-child(2) {
  z-index: 4;
  top: 90px;
  left: 66.05px;
  background: var(--blue);
  transform: rotate(6deg);
}

.pain-card:nth-child(3) {
  z-index: 3;
  top: 117.3px;
  left: 40.96px;
  background: var(--lime);
  transform: rotate(12deg);
}

.pain-card:nth-child(4) {
  z-index: 2;
  top: 147.06px;
  left: 18.86px;
  background: #fbfdff;
  transform: rotate(18deg);
}

.pain-card:nth-child(5) {
  z-index: 1;
  top: 178.96px;
  left: 0;
  background: var(--purple);
  transform: rotate(24deg);
}

.polaroids {
  display: flex;
  justify-content: center;
  gap: 70px;
  min-height: 350px;
}

.polaroid,
.mini-photo {
  padding: 14px 14px 20px;
  border-radius: 8px;
  background: #fff;
  color: #202020;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.polaroid img {
  width: 230px;
  height: 180px;
  object-fit: cover;
  border-radius: 4px;
}

.polaroid figcaption,
.mini-photo figcaption {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}

.tilt-left { transform: rotate(-12deg); }
.tilt-right { transform: rotate(12deg); }

.polaroid,
.mini-photo,
.moments-grid img,
.founder-card {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.polaroid:hover,
.mini-photo:hover,
.moments-grid img:hover,
.founder-card:hover {
  transform: translateY(-4px);
}

.founder-card,
.founder-card:hover {
  transform: none;
}

.polaroid.tilt-left:hover { transform: rotate(-12deg) translateY(-4px); }
.polaroid.tilt-right:hover { transform: rotate(12deg) translateY(-4px); }

.step-line {
  position: relative;
  display: grid;
  gap: 64px;
  max-width: 360px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  text-align: center;
}

.step-line::before {
  content: "";
  position: absolute;
  top: 52px;
  bottom: 52px;
  left: 50%;
  border-left: 2px dashed rgba(1, 115, 253, 0.22);
}

.step-line li {
  position: relative;
  padding: 0 0 8px;
  background: var(--paper);
}

.step-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  color: var(--blue);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 26px;
  font-weight: 500;
}

.step-line h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.step-line p {
  margin: 0;
  color: #555;
  font-size: 14px;
}

.quiz-start .photo-fan {
  display: grid;
  grid-template-columns: repeat(3, 210px);
  justify-content: center;
  gap: 18px;
  margin-top: -24px;
}

.photo-fan img {
  height: 155px;
  width: 210px;
  object-fit: cover;
  border: 10px solid #fff;
  border-radius: 8px;
  overflow: hidden;
  backface-visibility: hidden;
  background: #fff;
  outline: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.photo-fan img:nth-child(1) { transform: rotate(-10deg) translateY(22px); }
.photo-fan img:nth-child(2) { transform: rotate(4deg); }
.photo-fan img:nth-child(3) { transform: rotate(12deg) translateY(14px); }
.photo-fan img:nth-child(4) { transform: rotate(8deg); }
.photo-fan img:nth-child(5) { transform: rotate(-5deg); }
.photo-fan img:nth-child(6) { transform: rotate(11deg); }

.solo-note {
  margin: 48px 0 24px;
  text-align: center;
  color: #fff;
  font-size: 16px;
}

.center-btn {
  margin-inline: auto;
}

.trip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 20px;
}

.trip-note,
.help-cards article {
  min-height: 210px;
  padding: 28px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
}

.trip-note.green,
.help-cards .green {
  background: var(--lime);
  border-color: var(--lime);
}

.trip-note.dark,
.help-cards .dark {
  color: #fff;
  background: var(--dark);
  border-color: var(--dark);
}

.trip-note.outline {
  grid-column: 2 / 3;
}

.trip-wide {
  grid-row: span 2;
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 16px;
}

.trip-small {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 16px;
}

.trip-link {
  align-self: end;
}

.community-board {
  position: relative;
  min-height: 760px;
}

.community-decor {
  position: absolute;
  z-index: 4;
  display: block;
  pointer-events: none;
}

.decor-leaf { width: 96px; left: 22px; top: -92px; }
.decor-heart-small { width: 103px; right: 480px; top: -20px; }
.decor-skis { width: 62px; right: 4px; top: -64px; }
.decor-bolt { width: 46px; left: 640px; top: 365px; }
.decor-star-outline { width: 78px; left: 306px; top: 558px; }
.decor-mountain { width: 135px; right: 116px; bottom: 148px; }

.mini-photo {
  position: absolute;
  width: 215px;
}

.mini-photo img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 5px;
}

.mini-photo.a { left: 50px; top: 80px; transform: rotate(-12deg); }
.mini-photo.b { right: 50px; top: 80px; transform: rotate(13deg); }
.mini-photo.c { left: 90px; bottom: 70px; transform: rotate(-10deg); }
.mini-photo.d { right: 260px; bottom: 160px; transform: rotate(12deg); }
.mini-photo.e { right: 80px; bottom: 40px; transform: rotate(10deg); }

.bubble {
  position: absolute;
  left: 50%;
  width: min(610px, 64%);
  margin: 0;
  padding: 28px 34px;
  border-radius: 16px;
  color: var(--dark);
  background: #fff;
  text-align: center;
  font-weight: 500;
  transform: translateX(-50%);
}

.bubble.top { top: 170px; }
.bubble.mid { top: 360px; width: 410px; }
.bubble.bottom { bottom: 72px; }

.moments-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.moments-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
}

.moments-grid .m1 {
  grid-row: span 2;
  height: 540px;
}

.moments-grid .m5 {
  grid-column: span 2;
}

.moments-grid p {
  display: flex;
  align-items: flex-end;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.paint-mark {
  display: grid;
  place-items: center;
  min-height: 205px;
  background: url("https://static.tildacdn.com/tild6230-6535-4565-a631-346338303466/heart-big.png") center / contain no-repeat;
  color: transparent;
  font-size: 0;
}

.founders {
  padding-bottom: 84px;
}

.founders::before,
.founders::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 155px;
  height: 89px;
  pointer-events: none;
  background: center / contain no-repeat;
}

.founders::before {
  left: 220px;
  top: 694px;
  background-image: url("https://static.tildacdn.com/tild6161-3630-4439-b234-393631383438/arrow-right.png");
}

.founders::after {
  right: 220px;
  top: 694px;
  background-image: url("https://static.tildacdn.com/tild3935-3739-4439-b763-343366303933/arrow-left.png");
}

.founder-intro,
.founder-outro {
  max-width: 650px;
  margin: 0 auto 28px;
  text-align: center;
  font-weight: 500;
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 980px;
  margin: 24px auto;
}

.founder-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  color: var(--dark);
}

.founder-card img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

.founder-card h3 {
  margin: 0 0 4px;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.founder-card p {
  margin: 10px 0 0;
  font-size: 16px;
}

.text-gap {
  display: block;
}

.founder-card .role {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.final-cta {
  padding-block: 112px;
}

.final-cta small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
}

.site-footer {
  position: relative;
  z-index: 1;
  width: var(--frame);
  margin: 120px auto 0;
  padding: 56px 0 0;
  border-radius: 24px 24px 0 0;
  color: #fff;
  background: var(--dark);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 64px;
  padding: 0 50px 32px;
}

.footer-tagline {
  margin: 20px 0 0;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 34px;
  line-height: 1.2;
}

.site-footer h2 {
  margin: 0 0 20px;
  color: var(--blue);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 22px;
  font-weight: 500;
}

.site-footer nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--dark);
  background: #fff;
}

.footer-contact span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding-top: 26px;
  border-top: 1px solid var(--blue);
  color: #fff;
  font-size: 14px;
}

.container {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
}

.listing {
  padding-top: 128px;
}

.breadcrumbs {
  margin: 0 0 60px;
  color: var(--muted);
  font-size: 16px;
}

.listing-hero {
  max-width: 980px;
  margin: 0 auto 44px;
  text-align: center;
}

.listing-hero h1 {
  color: var(--blue);
}

.filters {
  display: flex;
  gap: 12px;
  margin-bottom: 60px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filters::-webkit-scrollbar {
  display: none;
}

.chip {
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(52, 53, 53, 0.22);
  border-radius: 16px;
  color: var(--dark);
  background: transparent;
  cursor: pointer;
}

.chip.is-active {
  background: var(--lime);
  border-color: var(--lime);
}

.cards-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 60px;
  min-width: 0;
}

.quiz-grid {
  grid-template-columns: repeat(3, 1fr);
}

.trip-cards {
  grid-template-columns: repeat(2, 1fr);
}

.event-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 36px;
  border-radius: 28px;
  color: #fff;
  background: var(--dark);
}

.ticket-card::before {
  content: "";
  position: absolute;
  top: 136px;
  left: 0;
  right: 0;
  border-top: 3px dashed #fff;
}

.ticket-card::after {
  content: "";
  position: absolute;
  top: 112px;
  left: -24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: calc(100vw / 3 - 20px) 0 0 var(--paper);
}

.seats {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin-left: 50%;
  padding: 0 20px;
  border: 1px solid var(--lime);
  border-radius: 999px;
  white-space: nowrap;
  transform: translateX(-50%);
}

.event-card h2 {
  margin: 54px 0 40px;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 500;
  text-align: center;
  overflow-wrap: anywhere;
}

.event-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
  text-align: center;
}

.event-card dt {
  color: var(--muted);
}

.event-card dd {
  margin: 0 0 12px;
  font-weight: 500;
}

.price {
  margin: 20px 0 28px;
  color: var(--lime);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 30px;
  font-weight: 500;
  text-align: center;
}

.event-card .btn {
  width: 100%;
  margin-top: 10px;
}

.load-more {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  margin: 0 auto 150px;
  padding: 0 48px;
  border: 1px solid var(--dark);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-family: "Unbounded", Arial, sans-serif;
  font-weight: 500;
}

.travel-card h2 {
  margin: 0 0 28px;
  font-size: 28px;
}

.travel-card img {
  width: 100%;
  height: 261px;
  object-fit: cover;
  border-radius: 16px;
}

.travel-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin: 24px 0;
}

.travel-row p {
  margin: 0;
}

.travel-row span {
  color: var(--muted);
}

.travel-row .price {
  margin: 0;
  font-size: 22px;
}

.travel-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 10px;
}

.travel-card h2,
.travel-card img,
.travel-card .travel-row {
  grid-column: 1 / -1;
}

.travel-help {
  margin-bottom: 120px;
}

.ticket-widget {
  position: relative;
  overflow: hidden;
  min-height: 450px;
  border-radius: 16px;
  color: #fff;
  background: var(--dark);
}

.ticket-widget img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ticket-widget > div {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  height: 450px;
  padding: 44px;
  text-align: center;
}

.ticket-widget h2 {
  margin: 0 0 46px;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 34px;
  font-weight: 500;
}

.search-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.6fr auto;
  width: min(1040px, 100%);
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  text-align: left;
}

.search-bar label,
.search-bar button {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 0 22px;
}

.search-bar label + label {
  border-left: 1px solid #ddd;
}

.search-bar span {
  white-space: nowrap;
}

.search-bar input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.search-bar button {
  border: 0;
  color: #fff;
  background: var(--blue);
  cursor: pointer;
  font-weight: 700;
}

.help-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.help-cards h3 {
  margin: 40px 0 18px;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.help-cards p {
  margin: 0;
}

.listing-cta {
  display: grid;
  justify-items: center;
  margin-bottom: 130px;
  text-align: center;
}

.listing-cta h2 {
  max-width: 780px;
  margin: 0;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.15;
  text-transform: uppercase;
}

.listing-cta p {
  margin: 24px 0 34px;
  color: var(--muted);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 22px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 24px;
}

.modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.56);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(90vh, 900px);
  overflow: auto;
  padding: 44px;
  border-radius: 18px;
  background: #fff;
  color: var(--dark);
  box-shadow: var(--shadow);
}

.modal-panel h2 {
  margin: 0 0 18px;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
}

.modal-close {
  position: absolute;
  right: 22px;
  top: 22px;
  width: 32px;
  height: 32px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.modal-meta {
  margin: 0 0 22px;
}

.modal-meta dt {
  color: var(--muted);
}

.modal-meta dd {
  margin: 2px 0 12px;
  font-weight: 500;
}

.modal-form form {
  display: grid;
  gap: 14px;
}

.modal-form label {
  display: grid;
  gap: 6px;
  font-size: 14px;
}

.modal-form input {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #dedede;
  border-radius: 8px;
}

.modal-form .check {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: #777;
  font-size: 12px;
}

.mini-ticket {
  display: grid;
  gap: 10px;
  margin: 20px 0;
  padding: 20px;
  border-radius: 14px;
  color: #fff;
  background: var(--dark);
}

.mini-ticket span {
  justify-self: start;
  padding: 3px 10px;
  border: 1px solid var(--lime);
  border-radius: 999px;
  font-size: 12px;
  white-space: nowrap;
}

.mini-ticket b {
  color: var(--lime);
}

.success-panel {
  display: grid;
  justify-items: center;
  text-align: center;
}

.success-icon {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  margin-bottom: 24px;
  border: 4px solid var(--lime);
  border-radius: 28px;
  color: var(--lime);
  background: var(--dark);
  font-size: 70px;
}

.trip-detail-panel ul {
  padding-left: 22px;
}

.not-found {
  min-height: 100vh;
  display: grid;
  align-content: start;
  gap: 120px;
  padding: 42px max(24px, calc((100vw - 1320px) / 2));
  color: #fff;
  background:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.44)),
    url("https://static.tildacdn.com/tild3735-6365-4633-b234-653263633763/hero-desktop.webp") center / cover no-repeat;
}

.not-found section {
  max-width: 760px;
}

.not-found h1 {
  color: var(--lime);
}

.not-found p:not(.eyebrow) {
  max-width: 540px;
  font-size: 22px;
}

@keyframes spark-breathe {
  0%, 100% {
    opacity: 0.72;
    transform: translateY(-50%) scale(0.92);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.08);
  }
}

@keyframes card-float {
  0%, 100% {
    transform: rotate(0deg) translateY(0);
  }
  50% {
    transform: rotate(0deg) translateY(-8px);
  }
}

.reveal {
  opacity: 1;
  transform: none;
  transition: transform 560ms ease;
}

.reveal.is-visible {
  transform: none;
}

.no-scroll {
  overflow: hidden;
}

@media (min-width: 1321px) {
  .other-way {
    height: 914px;
    padding-top: 72px;
  }

  .other-way .section-head {
    margin-bottom: 86px;
  }

  .polaroids {
    position: relative;
    display: block;
    width: 1320px;
    height: 426px;
    min-height: 0;
    margin: 0 auto;
  }

  .other-way .polaroids {
    position: absolute;
    left: 60px;
    top: 313px;
    margin: 0;
  }

  .polaroids::before {
    content: "";
    position: absolute;
    left: -60px;
    top: 36px;
    width: 1440px;
    height: 92px;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg width='1440' height='92' viewBox='0 0 1440 92' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23C9FF5E' stroke-width='1.4' stroke-dasharray='8 10' stroke-linecap='round'%3E%3Cpath d='M0 62C76 34 152 28 230 62'/%3E%3Cpath d='M230 62C360 8 594 8 724 62'/%3E%3Cpath d='M724 62C854 8 1084 8 1215 62'/%3E%3Cpath d='M1215 62C1301 28 1372 30 1440 62'/%3E%3C/g%3E%3C/svg%3E") center / 1440px 92px no-repeat;
    opacity: 0.95;
  }

  .polaroid {
    position: absolute;
    width: 344px;
    min-height: 362px;
    padding: 14px 14px 38px;
  }

  .other-way .polaroid::before,
  .other-way .polaroid::after {
    content: "";
    position: absolute;
    left: 50%;
    z-index: 2;
    pointer-events: none;
    transform: translateX(-50%);
  }

  .other-way .polaroid::before {
    top: -48px;
    width: 27px;
    height: 51px;
    background: url("https://static.tildacdn.com/tild3533-3437-4638-a335-633965663765/pin.png") center / contain no-repeat;
  }

  .other-way .polaroid::after {
    display: none;
  }

  .polaroid img {
    width: 316px;
    height: 236px;
  }

  .polaroid figcaption,
  .mini-photo figcaption {
    margin-top: 22px;
    font-size: 20px;
  }

  .other-way .polaroid:nth-child(1) {
    left: 0;
    top: 122px;
  }

  .other-way .polaroid:nth-child(2) {
    left: 450px;
    top: 125px;
  }

  .other-way .polaroid:nth-child(3) {
    right: 0;
    top: 122px;
  }

  .system {
    height: 1869px;
    padding-top: 0;
  }

  .system .section-head {
    margin-bottom: 70px;
  }

  .step-line {
    width: 350px;
    max-width: 350px;
    gap: 64px;
    background: none;
  }

  .step-line li {
    position: relative;
    width: 350px;
    padding: 0;
    overflow: visible;
    clip: auto;
    clip-path: none;
    background: transparent;
    white-space: normal;
  }

  .step-line::before {
    display: none;
  }

  .step-line li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: calc(50% - 1px);
    bottom: -50px;
    width: 2px;
    height: 44px;
    background: repeating-linear-gradient(to bottom, #b7b7b7 0 5px, transparent 5px 9px);
  }

  .step-line li:not(:last-child)::before {
    content: "";
    position: absolute;
    left: calc(50% - 6px);
    bottom: -58px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid #b7b7b7;
  }

  .step-icon {
    width: auto;
    height: auto;
    margin-bottom: 18px;
    object-fit: contain;
  }

  .step-line li:nth-child(1) .step-icon { width: 102px; height: 120px; }
  .step-line li:nth-child(2) .step-icon { width: 121px; height: 102px; }
  .step-line li:nth-child(3) .step-icon { width: 102px; height: 121px; }
  .step-line li:nth-child(4) .step-icon { width: 98px; height: 104px; }
  .step-line li:nth-child(5) .step-icon { width: 101px; height: 124px; }

  .step-line h3 {
    margin-bottom: 12px;
    color: var(--dark-2);
    font-family: "Unbounded", Arial, sans-serif;
    font-size: 24px;
    font-weight: 500;
  }

  .step-line p {
    color: #4b4b4b;
    font-family: "Onest", Arial, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.22;
  }

  .quiz-start {
    height: 1251px;
    padding-top: 72px;
  }

  .quiz-start .section-head {
    margin-bottom: 58px;
  }

  .quiz-start .photo-fan {
    position: relative;
    display: block;
    width: 880px;
    height: 560px;
    margin: 0 auto;
  }

  .photo-fan img {
    position: absolute;
    width: 300px;
    height: 236px;
    border-width: 14px 14px 58px;
    outline-width: 0;
  }

  .photo-fan img:nth-child(2),
  .photo-fan img:nth-child(5) {
    width: 216px;
    height: 244px;
  }

  .photo-fan img:nth-child(1) { left: 31px; top: 30px; transform: rotate(-15deg); }
  .photo-fan img:nth-child(2) { left: 332px; top: 0; transform: rotate(0deg); }
  .photo-fan img:nth-child(3) { right: 35px; top: 30px; transform: rotate(14deg); }
  .photo-fan img:nth-child(4) { left: 31px; top: 340px; transform: rotate(-13deg); }
  .photo-fan img:nth-child(5) { left: 332px; top: 308px; transform: rotate(0deg); }
  .photo-fan img:nth-child(6) { right: 35px; top: 340px; transform: rotate(13deg); }

  .solo-note {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 151px;
    margin: 0;
    font-size: 24px;
  }

  .center-btn {
    display: flex;
    width: 490px;
    min-height: 72px;
    margin-inline: auto;
    font-size: 20px;
  }

  .quiz-start .center-btn {
    position: absolute;
    left: 50%;
    bottom: 60px;
    transform: translateX(-50%);
  }

  .quiz-start .center-btn:hover,
  .quiz-start .center-btn:focus-visible {
    transform: translateX(-50%) translateY(-2px);
  }

  .trips {
    height: 858px;
    padding-top: 20px;
  }

  .trips .section-head {
    margin-bottom: 56px;
  }

  .trip-grid {
    grid-template-columns: 316px 316px 650px;
    grid-template-rows: 270px 270px;
    gap: 20px;
    width: 1320px;
    margin: 0 auto;
  }

  .trip-note {
    min-height: 270px;
    padding: 32px;
    border-radius: 24px;
    font-size: 20px;
  }

  .trip-note p {
    margin-top: 136px;
    font-size: 24px;
  }

  .trip-note.green p {
    white-space: nowrap;
    font-size: 22px;
  }

  .trip-note.outline p {
    margin-top: 82px;
  }

  .trip-wide {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    width: 650px;
    height: 270px;
    border-radius: 24px;
  }

  .trip-small {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    width: 316px;
    height: 270px;
    border-radius: 24px;
  }

  .trip-note.outline {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }

  .trip-link {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    width: 650px;
    min-height: 72px;
    align-self: end;
    font-size: 20px;
  }

  .community {
    height: 1370px;
    padding-top: 72px;
  }

  .community .section-head {
    margin-bottom: 44px;
  }

  .community-board {
    width: 1320px;
    max-width: 100%;
    min-height: 820px;
    margin-bottom: 54px;
  }

  .decor-heart-small {
    right: 320px;
    top: -24px;
  }

  .decor-bolt {
    left: 636px;
    top: 314px;
  }

  .decor-star-outline {
    left: 306px;
    top: 586px;
  }

  .decor-mountain {
    right: 96px;
    bottom: 206px;
  }

  .mini-photo {
    width: 250px;
  }

  .mini-photo img {
    height: 206px;
  }

  .mini-photo.a { left: 6px; top: -40px; }
  .mini-photo.b { right: 2px; top: -43px; }
  .mini-photo.c { left: 6px; bottom: -56px; }
  .mini-photo.d { right: 260px; bottom: 205px; }
  .mini-photo.e { right: 6px; bottom: -56px; }

  .bubble {
    width: 690px;
    padding: 38px 52px;
    border-radius: 24px;
    font-size: 24px;
    line-height: 1.16;
  }

  .bubble.top { top: 38px; }
  .bubble.mid { left: 505px; top: 362px; width: 454px; }
  .bubble.bottom { bottom: 37px; width: 690px; }

  .moments {
    height: 1130px;
    padding-top: 20px;
  }

  .moments .section-head {
    margin-bottom: 70px;
  }

  .moments-grid {
    width: 1320px;
    margin: 0 auto;
    grid-template-columns: 426px 426px 426px;
    grid-template-rows: 286px 286px 316px;
    gap: 20px;
  }

  .moments-grid img {
    height: 286px;
    border-radius: 24px;
  }

  .moments-grid .m1 {
    height: 592px;
  }

  .moments-grid .m5 {
    height: 316px;
  }

  .moments-grid p {
    font-size: 20px;
    line-height: 1.14;
  }

  .paint-mark {
    width: 189px;
    min-height: 205px;
    font-size: 0;
    transform: none;
  }

  .founders {
    height: 1260px;
    padding-top: 72px;
    padding-bottom: 0;
  }

  .founders .section-head {
    margin-bottom: 60px;
  }

  .founder-intro,
  .founder-outro {
    max-width: 650px;
    margin-bottom: 24px;
    text-align: left;
    font-size: 24px;
    line-height: 1.18;
  }

  .founder-intro {
    width: 660px;
    max-width: 660px;
    margin-left: calc(50% - 330px);
    margin-right: auto;
    font-size: 22px;
  }

  .founder-grid {
    max-width: 1320px;
    gap: 20px;
    margin: 358px auto 24px;
  }

  .founder-card {
    grid-template-columns: 1fr;
    min-height: 207px;
    padding: 24px;
    border-radius: 16px;
  }

  .founder-card img {
    position: absolute;
    width: 314px;
    height: 314px;
    border: 2px solid var(--lime);
    border-radius: 16px;
  }

  .founder-card:first-child img {
    left: calc(50% - 330px);
    top: 465px;
  }

  .founder-card:nth-child(2) img {
    right: calc(50% - 330px);
    top: 465px;
  }

  .founder-card h3 {
    font-size: 24px;
  }

  .founder-card p {
    max-width: 600px;
    font-size: 20px;
    line-height: 1.34;
  }

  .founder-card p br,
  .founder-outro br {
    display: block;
    content: "";
    margin-top: 4px;
  }

  .founder-card .text-gap,
  .founder-outro .text-gap {
    margin-top: 18px;
  }

  .final-cta {
    height: 400px;
    padding: 0;
    display: grid;
    place-items: center;
  }

  .final-cta .section-head {
    margin: 0;
  }

  .final-cta .center-btn {
    margin-top: 38px;
  }

  .final-cta small {
    margin-top: 26px;
    font-size: 24px;
  }

  .site-footer {
    min-height: 408px;
    height: auto;
    padding-top: 55px;
    padding-bottom: 32px;
  }

  .footer-inner {
    grid-template-columns: 560px 260px 240px;
    gap: 80px;
    min-height: auto;
    padding: 0 60px;
  }

  .site-footer .footer-logo {
    width: 277px;
    height: 67px;
  }

  .footer-tagline {
    margin-top: 24px;
    font-size: 38px;
    line-height: 1.16;
  }

  .site-footer h2 {
    margin-bottom: 24px;
    font-size: 24px;
  }

  .site-footer nav,
  .footer-contact {
    gap: 14px;
    font-size: 18px;
  }

  .footer-contact p {
    margin: 0 0 12px;
    font-size: 16px;
  }

  .footer-contact a {
    width: 240px;
    min-height: 40px;
    font-size: 16px;
  }

  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 0;
    padding-top: 28px;
    font-size: 16px;
  }

  .footer-bottom span,
  .footer-bottom a:first-of-type {
    justify-self: start;
  }

  .footer-bottom a:nth-of-type(2),
  .footer-bottom a:nth-of-type(3) {
    justify-self: end;
    text-align: right;
  }

  .footer-bottom a:first-of-type {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }

  .footer-bottom a:nth-of-type(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  .footer-bottom a:nth-of-type(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1320px) {
  :root {
    --container: min(1160px, calc(100vw - 80px));
  }

  .main-nav {
    gap: 20px;
  }

  .hero-card {
    min-height: 910px;
  }
}

@media (max-width: 1080px) {
  :root {
    --container: min(944px, calc(100vw - 80px));
  }

  .site-header {
    min-height: 79px;
    gap: 18px;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

  .hero-card {
    min-height: 807px;
  }

  .hero-copy {
    width: calc(100% - 80px);
    max-width: 944px;
  }

  .hero h1 {
    font-size: 74px;
  }

  .hero-lead {
    width: 554px;
    max-width: 100%;
    margin-top: 160px;
    margin-bottom: 32px;
    font-size: 20px;
  }

  .hero-actions {
    width: 554px;
  }

  .hero-actions .btn {
    min-width: 0;
    min-height: 62px;
    padding-inline: 32px;
    font-size: 18px;
  }

  .quiz-grid,
  .trip-cards,
  .help-cards,
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .trip-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trip-wide {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --container: calc(100vw - 32px);
    --radius-lg: 8px;
  }

  html,
  body {
    overflow-x: hidden;
  }

  body {
    font-size: 16px;
  }

  .page-grid::before {
    background:
      linear-gradient(90deg, transparent 0, var(--grid-line-soft) 1px, var(--line) 2px, transparent 4px),
      linear-gradient(90deg, transparent calc(33.333% - 2px), var(--grid-line-soft) calc(33.333% - 1px), var(--line) 33.333%, transparent calc(33.333% + 2px)),
      linear-gradient(90deg, transparent calc(66.666% - 2px), var(--grid-line-soft) calc(66.666% - 1px), var(--line) 66.666%, transparent calc(66.666% + 2px)),
      linear-gradient(90deg, transparent calc(100% - 4px), var(--grid-line-soft) calc(100% - 2px), var(--line) calc(100% - 1px), transparent 100%);
  }

  .page-grid {
    gap: 45px;
  }

  .site-header {
    top: 5px;
    width: auto;
    max-width: none;
    min-height: 36px;
    margin: 5px 16px -41px;
    padding: 0 7px 0 10px;
    gap: 8px;
  }

  .logo {
    width: 82px;
    height: 20px;
    font-size: 13px;
  }

  .menu-toggle {
    display: grid;
    width: 24px;
    height: 24px;
    gap: 2px;
  }

  .menu-toggle span {
    width: 9px;
    height: 1.3px;
  }

  .site-header .main-nav {
    position: absolute;
    top: 44px;
    left: 0;
    right: 0;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(52, 53, 53, 0.16);
    border-radius: 18px;
    background: rgba(251, 253, 255, 0.96);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .menu-open .site-header .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .header-cta {
    flex: 0 0 126px;
    min-height: 28px;
    padding-inline: 0;
    font-family: "Onest", Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
  }

  .hero-card {
    width: 100%;
    min-height: 452px;
    border-radius: 0;
    background:
      linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.34)),
      url("https://static.tildacdn.com/tild6631-3862-4534-a165-393338653538/hero-mobile.webp") center top / cover no-repeat;
  }

  .hero {
    width: 100%;
  }

  .hero-copy {
    justify-items: center;
    width: auto;
    max-width: none;
    padding: 90px 9px 0;
    text-align: center;
  }

  .eyebrow {
    margin-bottom: 6px;
    font-size: 18px;
  }

  .hero h1 {
    width: 100%;
    max-width: 330px;
    font-size: 29px;
    line-height: 1.06;
  }

  .hero h1 > span:last-child .inline {
    display: block;
  }

  .hero-lead {
    width: 286px;
    max-width: 100%;
    margin: 42px 0 8px;
    font-size: 12px;
    line-height: 1.25;
    overflow-wrap: break-word;
  }

  .hero-actions {
    width: min(286px, calc(100vw - 64px));
    max-width: 286px;
    gap: 10px;
    flex-direction: column;
  }

  .btn {
    min-height: 48px;
    padding-inline: 24px;
    font-size: 14px;
    max-width: calc(100vw - 64px);
  }

  .hero-actions .btn {
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
    min-height: 34px;
    margin-inline: auto;
    font-size: 12px;
  }

  .site-header .header-cta {
    min-height: 28px;
    font-size: 10px;
  }

  .section,
  .dark-band {
    width: 100%;
  }

  .section {
    padding: 64px 16px;
  }

  .dark-band {
    padding: 52px 16px;
    border-radius: 8px;
  }

  .section-head {
    margin-bottom: 36px;
  }

  .section-head h2,
  .listing-hero h1,
  .listing-cta h2,
  .not-found h1 {
    font-size: 24px;
    line-height: 1.2;
    overflow-wrap: break-word;
  }

  .section-head p,
  .listing-hero p {
    font-size: 14px;
    max-width: 286px;
    margin-inline: auto;
    overflow-wrap: break-word;
  }

  .spark-title::before {
    left: 0;
    right: auto;
  }

  .spark-title::after {
    left: auto;
    right: 0;
  }

  .spark-title::before,
  .spark-title::after {
    width: 34px;
    height: 34px;
  }

  .spark-title {
    display: block;
    width: 100%;
    max-width: 358px;
    margin-inline: auto;
    padding-inline: 40px;
    box-sizing: border-box;
  }

  .familiar {
    min-height: 251px;
    padding: 0 9px;
  }

  .familiar .section-head {
    min-height: 54px;
    margin-bottom: 5px;
  }

  .familiar .section-head h2 {
    font-size: 24px;
  }

  .familiar .spark-title {
    width: 100%;
    max-width: 358px;
  }

  .familiar .spark-title::before {
    left: 0;
    right: auto;
  }

  .familiar .spark-title::after {
    left: auto;
    right: 0;
  }

  .familiar .section-head p {
    max-width: 286px;
    margin-top: 7px;
    font-size: 14px;
    line-height: 1.05;
  }

  .familiar .spark-title::before,
  .familiar .spark-title::after {
    width: 34px;
    height: 34px;
  }

  .pain-stack {
    width: calc(100vw - 18px);
    max-width: 372px;
    height: auto;
    aspect-ratio: 627 / 685;
    display: block;
    overflow: hidden;
    padding: 0;
  }

  .pain-stack::before,
  .pain-stack::after {
    display: none;
  }

  .pain-card {
    position: absolute;
    top: 0 !important;
    left: 0 !important;
    display: block;
    min-width: 0;
    width: 100%;
    height: 167px;
    transform: none !important;
    padding: 0;
    border-radius: 14px;
    font-size: 14px;
  }

  .pain-card:nth-child(n + 2) {
    display: none;
  }

  .pain-card::before {
    inset: 30px 18px;
    border-radius: 8px;
  }

  .pain-card::after {
    left: 74px;
    bottom: 43px;
    width: 224px;
    height: 24px;
  }

  .pain-card span {
    position: absolute;
    top: 47px;
    left: 57px;
    width: 258px;
  }

  .polaroids {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .other-way .section-head p,
  .quiz-start .section-head p,
  .trips .section-head p,
  .community .section-head p,
  .founders .section-head p {
    max-width: 286px;
    font-size: 14px;
    line-height: 1.12;
  }

  .system .section-head h2,
  .trips .section-head h2,
  .quiz-start .section-head h2,
  .community .section-head h2 {
    font-size: 20px;
  }

  .polaroid img {
    width: 220px;
    height: 154px;
  }

  .step-line {
    gap: 44px;
    max-width: 306px;
  }

  .step-line p {
    max-width: 286px;
    margin-inline: auto;
    font-size: 13px;
    line-height: 1.2;
  }

  .quiz-start .photo-fan {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .photo-fan img {
    width: 244px;
    height: 160px;
  }

  .trip-grid,
  .moments-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .trip-note,
  .trip-note p {
    min-width: 0;
    font-size: 16px;
    line-height: 1.2;
    overflow-wrap: break-word;
  }

  .trip-note {
    min-height: 180px;
    padding: 24px;
  }

  .trip-wide,
  .trip-small,
  .moments-grid .m1,
  .moments-grid .m5,
  .moments-grid img {
    grid-column: auto;
    height: 240px;
  }

  .trip-note.outline {
    grid-column: auto;
  }

  .center-btn {
    display: flex;
    width: min(320px, calc(100vw - 32px));
    max-width: 100%;
  }

  .solo-note {
    max-width: 286px;
    margin-inline: auto;
    font-size: 14px;
    overflow-wrap: break-word;
  }

  .community-board {
    min-height: 980px;
  }

  .community-decor {
    transform: scale(0.58);
  }

  .decor-leaf { left: -10px; top: 28px; }
  .decor-heart-small { right: 98px; top: 312px; }
  .decor-skis { right: -12px; top: 72px; }
  .decor-bolt { left: 166px; top: 466px; }
  .decor-star-outline { left: 122px; top: 665px; }
  .decor-mountain { right: 16px; bottom: 38px; }

  .mini-photo {
    width: 150px;
  }

  .mini-photo img {
    height: 110px;
  }

  .mini-photo.a { left: 6px; top: 70px; }
  .mini-photo.b { right: 6px; top: 116px; }
  .mini-photo.c { left: 8px; bottom: 210px; }
  .mini-photo.d { right: 18px; bottom: 312px; }
  .mini-photo.e { right: 8px; bottom: 76px; }

  .bubble {
    width: calc(100% - 16px);
    padding: 18px;
    font-size: 14px;
  }

  .bubble.top { top: 315px; }
  .bubble.mid { top: 505px; width: 260px; }
  .bubble.bottom { bottom: 30px; }

  .founder-card {
    grid-template-columns: 1fr;
  }

  .founders::before,
  .founders::after {
    display: none;
  }

  .founder-card img {
    width: 100%;
    height: 290px;
  }

  .site-footer {
    width: 100%;
    border-radius: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 16px 28px;
  }

  .footer-tagline {
    font-size: 18px;
  }

  .site-footer .footer-logo {
    width: 138px;
    height: 34px;
  }

  .footer-bottom {
    display: grid;
  }

  .listing {
    padding-top: 112px;
  }

  .breadcrumbs {
    margin-bottom: 28px;
  }

  .filters {
    overflow-x: auto;
    margin-bottom: 32px;
  }

  .event-card {
    width: 100%;
    max-width: 100%;
    padding: 24px;
    border-radius: 31px;
  }

  .event-card h2 {
    margin: 8px 0 18px;
    font-size: 18px;
    line-height: 1.1;
    overflow-wrap: normal;
    word-break: normal;
  }

  .ticket-card::after {
    display: none;
  }

  .trip-cards,
  .quiz-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .travel-card {
    grid-template-columns: 1fr;
  }

  .travel-card img {
    height: 190px;
    border-radius: 22px;
  }

  .travel-row {
    margin: 20px 0;
  }

  .travel-row .price {
    font-size: 20px;
    white-space: nowrap;
  }

  .load-more {
    margin-bottom: 70px;
  }

  .ticket-widget,
  .ticket-widget > div {
    min-height: 360px;
    height: auto;
  }

  .ticket-widget h2 {
    font-size: 24px;
  }

  .search-bar {
    grid-template-columns: 1fr;
  }

  .help-cards {
    grid-template-columns: 1fr;
  }

  .modal {
    padding: 12px;
  }

  .modal-panel {
    padding: 28px 18px;
  }

  .not-found {
    padding: 24px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* ---- Tilda split-block patch ---- */
.t-rec:has(.tripdoc-html-block) { padding: 0 !important; margin: 0 !important; }
.tripdoc-html-block { position: relative; z-index: 1; width: 100%; }
.tripdoc-header-block,
.tripdoc-header-hero-block { z-index: 30; }
.t-rec:has(.tripdoc-header-block),
.t-rec:has(.tripdoc-header-hero-block) { position: relative; z-index: 30; }
.t-rec:has(.tripdoc-hero-block) { position: relative; z-index: 1; }
.tripdoc-html-block .site-header { margin-top: 16px; margin-bottom: -102px; }
.tripdoc-html-block:not(.tripdoc-header-block):not(.tripdoc-header-hero-block):not(.tripdoc-hero-block):not(.tripdoc-footer-block) { margin-top: 120px; }
.tripdoc-footer-block { margin-top: 0; }
.tripdoc-final-block { margin-top: 120px; }
.tripdoc-html-block > section,
.tripdoc-html-block > footer,
.tripdoc-html-block > header { max-width: 100%; }
.t-body { margin: 0; background: var(--paper); }
.tripdoc-html-block .btn,
.tripdoc-html-block a.btn,
.tripdoc-html-block button.btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  min-height: 52px !important;
  padding: 0 36px !important;
  border: 1px solid transparent !important;
  border-radius: 999px !important;
  box-shadow: none !important;
  cursor: pointer !important;
  font-family: "Unbounded", Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  text-align: center !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}
.tripdoc-html-block .btn-primary { color: #202020 !important; background: var(--lime) !important; }
.tripdoc-html-block .btn-dark { color: #fff !important; background: var(--dark) !important; }
.tripdoc-html-block .btn-outline { color: #f7f7f7 !important; background: transparent !important; border-color: var(--lime) !important; }
.tripdoc-html-block .btn-outline.light { color: var(--dark) !important; border-color: var(--purple) !important; }
.tripdoc-html-block .header-cta { min-height: 54px !important; padding-inline: 34px !important; }
.tripdoc-html-block .hero-actions .btn {
  min-height: 72px !important;
  gap: 24px !important;
  padding-inline: 40px !important;
  font-size: 20px !important;
}
.tripdoc-html-block .btn span[aria-hidden="true"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-left: 6px !important;
  font-family: Arial, sans-serif !important;
  font-size: 1.42em !important;
  font-weight: 900 !important;
  line-height: 0.85 !important;
  transform: translateY(-1px) !important;
}
.tripdoc-html-block .center-btn,
.tripdoc-html-block a.center-btn {
  display: flex !important;
  width: min(490px, calc(100% - 64px)) !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.tripdoc-html-block a:not(.btn),
.tripdoc-html-block a:not(.btn):visited,
.tripdoc-html-block a:not(.btn):hover,
.tripdoc-html-block a:not(.btn):focus {
  text-decoration: none !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}
.tripdoc-html-block .site-header,
.tripdoc-html-block .site-header a,
.tripdoc-html-block .site-header a:visited,
.tripdoc-html-block .site-header a:hover,
.tripdoc-html-block .site-header span {
  color: var(--text) !important;
}
.tripdoc-html-block .site-header .main-nav a[aria-current="page"] {
  color: var(--blue) !important;
}
.tripdoc-html-block .site-footer,
.tripdoc-html-block .site-footer a,
.tripdoc-html-block .site-footer a:visited,
.tripdoc-html-block .site-footer a:hover {
  color: #fff !important;
}
.tripdoc-html-block .site-footer h2 {
  color: var(--blue) !important;
}
.tripdoc-html-block .site-footer small {
  color: var(--lime) !important;
  border-color: var(--lime) !important;
}
.tripdoc-html-block .footer-contact a,
.tripdoc-html-block .footer-contact a:visited,
.tripdoc-html-block .footer-contact a:hover {
  color: var(--dark) !important;
  background: #fff !important;
}
.tripdoc-html-block .footer-contact span {
  color: #fff !important;
  background: var(--blue) !important;
}
@media (max-width: 1199px) {
  .tripdoc-html-block:not(.tripdoc-header-block):not(.tripdoc-header-hero-block):not(.tripdoc-hero-block):not(.tripdoc-footer-block) { margin-top: 72px; }
}

/* TRIPDOC quizzes: block 1 (header/title) + native Tilda T778 catalog. */
:root {
  --tdq-blue: #0173fd;
  --tdq-lime: #ceff72;
  --tdq-purple: #d68cff;
  --tdq-dark: #2e2e2e;
  --tdq-paper: #fbfdff;
  --tdq-muted: #89898a;
  --tdq-frame: min(1440px, calc(100vw - 24px));
}

.tdq-page-head,
.tdq-page-head *,
:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) *,
#rec2354170351 * {
  box-sizing: border-box;
}

.tdq-page-head {
  width: var(--tdq-frame);
  max-width: 100%;
  margin: 0 auto;
  color: var(--tdq-dark);
  font-family: "Onest", Arial, sans-serif;
}

.t-rec:has(.tdq-page-head) {
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}

.tdq-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 240px 1fr 220px;
  align-items: center;
  min-height: 82px;
  margin: 16px auto 0;
  padding: 12px 16px 12px 24px;
  border: 1px solid rgba(46, 46, 46, 0.14);
  border-radius: 42px;
  background: rgba(251, 253, 255, 0.97);
}

.tdq-logo {
  display: inline-flex;
  width: 190px;
  color: var(--tdq-blue) !important;
}

.tdq-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.tdq-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.2vw, 36px);
  min-width: 0;
}

.tdq-nav a,
.tdq-soon {
  color: var(--tdq-dark) !important;
  font: 500 15px/1.2 "Onest", Arial, sans-serif;
  text-decoration: none !important;
  white-space: nowrap;
}

.tdq-nav a {
  transition: color 180ms ease;
}

.tdq-nav a:hover,
.tdq-nav a[aria-current="page"] {
  color: var(--tdq-blue) !important;
}

.tdq-soon {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.tdq-soon small {
  padding: 3px 7px;
  border: 1px solid var(--tdq-blue);
  border-radius: 999px;
  color: var(--tdq-blue);
  font-size: 10px;
  line-height: 1;
}

.tdq-header-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: 204px;
  min-height: 54px;
  border-radius: 999px;
  color: #202020 !important;
  background: var(--tdq-lime);
  font: 650 16px/1 "Onest", Arial, sans-serif;
  text-decoration: none !important;
  transition: transform 180ms ease, filter 180ms ease;
}

.tdq-header-button:hover {
  color: #202020 !important;
  filter: brightness(0.97);
  transform: translateY(-2px);
}

.tdq-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--tdq-lime);
}

.tdq-menu-button span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--tdq-dark);
}

.tdq-intro {
  padding: 24px 38px 52px;
}

.tdq-breadcrumbs {
  display: flex;
  gap: 6px;
  margin: 0;
  color: var(--tdq-muted);
  font-size: 15px;
  line-height: 1.4;
}

.tdq-breadcrumbs a {
  color: inherit !important;
  text-decoration: none !important;
}

.tdq-title {
  width: min(1060px, 100%);
  margin: 58px auto 0;
  text-align: center;
}

.tdq-title h1 {
  position: relative;
  display: inline-block;
  margin: 0;
  color: var(--tdq-blue);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: clamp(50px, 5.05vw, 72px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tdq-title h1::before,
.tdq-title h1::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 45px;
  height: 45px;
  background: url("https://static.tildacdn.com/tild3638-6133-4461-b666-343431633637/star.png") center / contain no-repeat;
  transform: translateY(-50%);
  animation: tdq-star 3.4s ease-in-out infinite;
}

.tdq-title h1::before {
  left: -86px;
}

.tdq-title h1::after {
  right: -86px;
  animation-delay: 0.65s;
}

.tdq-title p {
  margin: 18px auto 0;
  color: var(--tdq-muted);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: clamp(23px, 2.35vw, 34px);
  font-weight: 500;
  line-height: 1.18;
}

.tdq-title strong {
  color: var(--tdq-blue);
  font-weight: 500;
}

/* Add uc-tripdoc-quiz-store to the CSS class field of the native T778 block. */
:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor),
#rec2354170351 {
  width: var(--tdq-frame) !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  padding: 0 38px 100px !important;
  background: transparent !important;
  font-family: "Onest", Arial, sans-serif !important;
}

.tdq-catalog-anchor {
  position: relative;
  display: block;
  top: -16px;
  width: 0;
  height: 0;
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .t-store,
#rec2354170351 .t-store {
  width: 100%;
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .t-store__grid-cont,
#rec2354170351 .t-store__grid-cont {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .t-store__parts-switch-wrapper,
#rec2354170351 .t-store__parts-switch-wrapper {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin: 0 0 54px !important;
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .t-store__parts-item,
#rec2354170351 .t-store__parts-item {
  margin: 0 !important;
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .t-store__parts-switch-btn,
#rec2354170351 .t-store__parts-switch-btn {
  min-height: 38px;
  padding: 9px 17px !important;
  border: 1px solid rgba(46, 46, 46, 0.22);
  border-radius: 15px;
  color: var(--tdq-dark) !important;
  background: transparent;
  font: 500 15px/1.2 "Onest", Arial, sans-serif !important;
  transition: background 180ms ease, border-color 180ms ease;
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .t-store__parts-switch-btn.t-active,
#rec2354170351 .t-store__parts-switch-btn.t-active {
  border-color: var(--tdq-lime);
  background: var(--tdq-lime);
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .t-store__card-list,
#rec2354170351 .t-store__card-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .t-store__card,
#rec2354170351 .t-store__card {
  align-self: stretch !important;
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .t-store__card.tdq-card-hidden,
#rec2354170351 .t-store__card.tdq-card-hidden {
  display: none !important;
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .t-store__card[data-tdq-ready="true"],
#rec2354170351 .t-store__card[data-tdq-ready="true"] {
  animation: tdq-card-in 560ms cubic-bezier(.22, .75, .25, 1) both;
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .t-store__card[data-tdq-ready="true"]:nth-child(2),
#rec2354170351 .t-store__card[data-tdq-ready="true"]:nth-child(2) {
  animation-delay: 90ms;
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .t-store__card[data-tdq-ready="true"]:nth-child(3),
#rec2354170351 .t-store__card[data-tdq-ready="true"]:nth-child(3) {
  animation-delay: 180ms;
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .t-store__grid-separator,
#rec2354170351 .t-store__grid-separator {
  display: none !important;
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .t-store__card__wrap_all,
#rec2354170351 .t-store__card__wrap_all {
  position: relative;
  display: flex;
  width: 100%;
  height: auto !important;
  min-height: 0;
  aspect-ratio: 428 / 565;
  overflow: hidden;
  border-radius: 28px;
  color: #fff;
  background: var(--tdq-dark) !important;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .t-store__card__wrap_all:hover,
#rec2354170351 .t-store__card__wrap_all:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.13);
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .t-store__card__wrap_all::before,
#rec2354170351 .t-store__card__wrap_all::before {
  content: "";
  position: absolute;
  top: 92px;
  right: 0;
  left: 0;
  z-index: 1;
  border-top: 2px dashed rgba(255, 255, 255, 0.82);
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .t-store__card__wrap_all::after,
#rec2354170351 .t-store__card__wrap_all::after {
  content: "";
  position: absolute;
  top: 66px;
  left: -28px;
  z-index: 3;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--tdq-paper);
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .t-store__card__wrap_all > a:first-of-type,
#rec2354170351 .t-store__card__wrap_all > a:first-of-type {
  display: none !important;
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .t-store__card__wrap_txt-and-btns,
#rec2354170351 .t-store__card__wrap_txt-and-btns {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 0 !important;
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .t-store__card__wrap_txt-and-btns::after,
#rec2354170351 .t-store__card__wrap_txt-and-btns::after {
  content: "";
  position: absolute;
  top: 66px;
  right: -28px;
  z-index: 3;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--tdq-paper);
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .store__card__wrap_txt-and-opts,
#rec2354170351 .store__card__wrap_txt-and-opts {
  display: flex;
  width: 100%;
  height: 100%;
  min-width: 0;
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .store__card__wrap_txt-and-opts > a,
#rec2354170351 .store__card__wrap_txt-and-opts > a {
  display: flex;
  width: 100%;
  height: 100%;
  color: inherit !important;
  text-decoration: none !important;
  pointer-events: none;
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .t-store__card__textwrapper,
#rec2354170351 .t-store__card__textwrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 0 !important;
  color: #fff;
  text-align: center;
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .tdq-card-seats,
#rec2354170351 .tdq-card-seats {
  position: absolute;
  top: 30px;
  left: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 176px;
  min-height: 38px;
  padding: 7px 18px;
  border: 1px solid var(--tdq-lime);
  border-radius: 999px;
  color: #fff;
  font: 400 15px/1.1 "Onest", Arial, sans-serif;
  white-space: nowrap;
  transform: translateX(-50%);
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .t-store__card__title,
#rec2354170351 .t-store__card__title {
  position: absolute;
  top: 119px;
  right: 28px;
  left: 28px;
  z-index: 2;
  width: auto;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  max-height: 76px;
  margin: 0 !important;
  padding: 0;
  color: #fff !important;
  background: var(--tdq-dark);
  font-family: "Unbounded", Arial, sans-serif !important;
  font-size: clamp(25px, 2.15vw, 32px) !important;
  font-weight: 500 !important;
  line-height: 1.12 !important;
  letter-spacing: 0 !important;
  text-align: center;
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .tdq-card-meta,
#rec2354170351 .tdq-card-meta {
  position: absolute;
  top: 193px;
  right: 26px;
  left: 26px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #fff;
  text-align: center;
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .tdq-meta-label,
#rec2354170351 .tdq-meta-label {
  margin-top: 3px;
  color: var(--tdq-muted);
  font-size: 14px;
  line-height: 1.2;
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .tdq-meta-value,
#rec2354170351 .tdq-meta-value {
  margin-bottom: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .t-store__card__price-wrapper,
#rec2354170351 .t-store__card__price-wrapper {
  position: absolute;
  top: 337px;
  right: 0;
  left: 0;
  margin: 0 !important;
  padding: 0;
  justify-content: center;
  visibility: visible !important;
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .t-store__card__price,
#rec2354170351 .t-store__card__price {
  justify-content: center;
  color: var(--tdq-lime) !important;
  font-family: "Unbounded", Arial, sans-serif !important;
  font-size: 29px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .t-store__card__price_old,
#rec2354170351 .t-store__card__price_old {
  display: none !important;
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .tdq-card-actions,
#rec2354170351 .tdq-card-actions {
  position: absolute;
  right: 34px;
  bottom: 32px;
  left: 34px;
  z-index: 5;
  display: grid;
  gap: 10px;
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .tdq-card-button,
#rec2354170351 .tdq-card-button {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--tdq-lime);
  border-radius: 999px;
  font: 650 16px/1 "Onest", Arial, sans-serif;
  text-decoration: none !important;
  transition: transform 180ms ease, filter 180ms ease;
  cursor: pointer;
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .tdq-card-button:hover,
#rec2354170351 .tdq-card-button:hover {
  transform: translateY(-2px);
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .tdq-card-button_primary,
#rec2354170351 .tdq-card-button_primary {
  position: relative;
  color: #202020 !important;
  background: var(--tdq-lime);
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .tdq-card-button_primary span:last-child,
#rec2354170351 .tdq-card-button_primary span:last-child {
  position: absolute;
  right: 22px;
  top: 50%;
  font-size: 22px;
  font-weight: 400;
  transform: translateY(-53%);
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .tdq-card-button_secondary,
#rec2354170351 .tdq-card-button_secondary {
  color: #fff !important;
  background: transparent;
}

body.tdq-modal-open {
  overflow: hidden;
}

.tdq-details-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  font-family: "Onest", Arial, sans-serif;
}

.tdq-details-modal.is-open {
  display: flex;
}

.tdq-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.48);
  backdrop-filter: blur(2px);
  animation: tdq-fade-in 220ms ease both;
}

.tdq-details-dialog {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 36px 34px 32px;
  border-radius: 22px;
  color: var(--tdq-dark);
  background: var(--tdq-paper);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
  animation: tdq-modal-in 280ms cubic-bezier(.22, .75, .25, 1) both;
}

.tdq-modal-close {
  position: absolute;
  top: 25px;
  right: 28px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0 0 2px;
  border: 1px solid #cfd2d4;
  border-radius: 50%;
  color: #767879;
  background: transparent;
  cursor: pointer;
  font: 400 28px/1 "Onest", Arial, sans-serif;
}

.tdq-details-dialog h2 {
  max-width: calc(100% - 54px);
  margin: 0 0 26px;
  color: var(--tdq-dark);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.16;
}

.tdq-details-meta {
  display: grid;
  gap: 13px;
  margin: 0 0 15px;
}

.tdq-details-meta div {
  display: grid;
  gap: 3px;
}

.tdq-details-meta dt,
.tdq-details-description > span,
.tdq-details-price > span {
  color: var(--tdq-muted);
  font-size: 14px;
  line-height: 1.2;
}

.tdq-details-meta dd {
  margin: 0;
  color: var(--tdq-dark);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.tdq-details-description {
  margin-top: 14px;
}

.tdq-details-description [data-tdq-details-description] {
  margin: 4px 0 0;
  color: var(--tdq-dark);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  white-space: pre-line;
}

.tdq-details-price {
  display: grid;
  gap: 4px;
  margin: 20px 0 24px;
}

.tdq-details-price strong {
  color: var(--tdq-dark);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 25px;
  font-weight: 500;
}

.tdq-details-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  color: #202020;
  background: var(--tdq-lime);
  cursor: pointer;
  font: 650 16px/1 "Onest", Arial, sans-serif;
  transition: transform 180ms ease, filter 180ms ease;
}

.tdq-details-buy:hover {
  filter: brightness(0.97);
  transform: translateY(-2px);
}

/* Native Tilda cart (ST100 / T706) */
.uc-tripdoc-cart .t706__carticon {
  display: none !important;
}

.uc-tripdoc-cart .t706__cartwin {
  z-index: 1000000 !important;
  padding: 20px !important;
  background: rgba(25, 25, 25, 0.48) !important;
  backdrop-filter: blur(3px);
  box-sizing: border-box !important;
}

.uc-tripdoc-cart .t706__cartwin-content {
  width: min(900px, calc(100vw - 40px)) !important;
  max-width: 900px !important;
  max-height: calc(100vh - 40px) !important;
  min-height: 0 !important;
  margin: 0 auto !important;
  padding: 60px !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  border-radius: 28px !important;
  color: var(--tdq-dark) !important;
  background: var(--tdq-paper) !important;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22) !important;
  font-family: "Onest", Arial, sans-serif !important;
  box-sizing: border-box !important;
}

.uc-tripdoc-cart .t706__cartwin-close {
  position: fixed !important;
  top: 60px !important;
  right: max(60px, calc(50% - 390px)) !important;
  z-index: 3 !important;
}

.uc-tripdoc-cart .t706__cartwin-close-wrapper {
  display: grid !important;
  place-items: center !important;
  width: 34px !important;
  height: 34px !important;
  border: 1px solid #cfd2d4 !important;
  border-radius: 50% !important;
  background: var(--tdq-paper) !important;
}

.uc-tripdoc-cart .t706__cartwin-close-icon {
  width: 16px !important;
  height: 16px !important;
}

.uc-tripdoc-cart .t706__cartwin-close-icon rect {
  fill: #767879 !important;
}

.uc-tripdoc-cart .t706__cartwin-top {
  margin: 0 0 32px !important;
  padding-right: 52px;
  padding-bottom: 0 !important;
  border: 0 !important;
}

.uc-tripdoc-cart .t706__cartwin-heading {
  margin: 0 !important;
  color: var(--tdq-dark) !important;
  font-family: "Unbounded", Arial, sans-serif !important;
  font-size: 36px !important;
  font-weight: 500 !important;
  line-height: 1.15 !important;
}

.uc-tripdoc-cart .tdq-cart-subtitle {
  margin-top: 7px;
  color: #414345;
  font-size: 20px;
  line-height: 1.25;
}

.uc-tripdoc-cart .t706__cartwin-products {
  display: block !important;
  width: 100% !important;
  margin: 0 0 32px !important;
}

.uc-tripdoc-cart .t706__product {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto 120px !important;
  grid-template-rows: auto auto !important;
  align-items: center !important;
  width: 100% !important;
  min-height: 208px !important;
  margin: 0 !important;
  padding: 78px 32px 28px !important;
  border: 0 !important;
  border-radius: 30px !important;
  color: #fff !important;
  background: var(--tdq-dark) !important;
  box-sizing: border-box !important;
}

.uc-tripdoc-cart .tdq-cart-product-seats {
  position: absolute;
  top: 31px;
  left: 32px;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--tdq-lime);
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  line-height: 1;
}

.uc-tripdoc-cart .t706__product-thumb,
.uc-tripdoc-cart .t706__product-del-wrapper {
  display: none !important;
}

.uc-tripdoc-cart .t706__product-title {
  grid-column: 1;
  grid-row: 1;
  display: block !important;
  width: auto !important;
  padding: 0 24px 0 0 !important;
  color: #fff !important;
  font-family: "Onest", Arial, sans-serif !important;
  font-size: 24px !important;
  font-weight: 650 !important;
  line-height: 1.2 !important;
  vertical-align: initial !important;
}

.uc-tripdoc-cart .t706__product-title a {
  color: #fff !important;
  text-decoration: none !important;
}

.uc-tripdoc-cart .t706__product-title a::before {
  content: "Р С™Р Р†Р С‘Р В· Р’В· ";
}

.uc-tripdoc-cart .tdq-cart-product-meta {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  gap: 5px;
  margin-top: 8px;
  padding-right: 24px;
  color: #969799;
  font-size: 18px;
  line-height: 1.25;
}

.uc-tripdoc-cart .t706__product-plusminus {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: auto !important;
  padding: 0 28px !important;
  color: #fff !important;
  vertical-align: initial !important;
}

.uc-tripdoc-cart .t706__product-quantity {
  min-width: 28px;
  margin: 0 8px !important;
  padding: 0 !important;
  border: 0 !important;
  color: #fff !important;
  text-align: center;
  font-size: 18px !important;
  line-height: 1 !important;
}

.uc-tripdoc-cart .t706__product-minus,
.uc-tripdoc-cart .t706__product-plus {
  width: 24px !important;
  height: 24px !important;
  opacity: 1 !important;
}

.uc-tripdoc-cart .t706__product-minus img,
.uc-tripdoc-cart .t706__product-plus img {
  top: 0 !important;
  width: 24px !important;
  height: 24px !important;
  filter: invert(1);
}

.uc-tripdoc-cart .t706__product-amount {
  grid-column: 3;
  grid-row: 1 / span 2;
  display: block !important;
  width: auto !important;
  padding: 0 !important;
  color: var(--tdq-lime) !important;
  text-align: right;
  font-family: "Onest", Arial, sans-serif !important;
  font-size: 24px !important;
  font-weight: 650 !important;
  vertical-align: initial !important;
}

.uc-tripdoc-cart .t706__cartwin-bottom {
  display: none !important;
}

.uc-tripdoc-cart .t706__form-upper-text {
  margin: 0 0 24px !important;
  padding: 0 !important;
  color: var(--tdq-dark) !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
}

.uc-tripdoc-cart .t706__orderform,
.uc-tripdoc-cart .t-form,
.uc-tripdoc-cart .t-form__inputsbox {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

.uc-tripdoc-cart .t-input-group {
  display: block !important;
  float: none !important;
  clear: both !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 0 22px !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

.uc-tripdoc-cart .t-input-block {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

.uc-tripdoc-cart .t-input-title {
  display: block !important;
  width: 100% !important;
  margin: 0 0 10px !important;
  padding: 0 !important;
  color: #414345 !important;
  font-family: "Onest", Arial, sans-serif !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  box-sizing: border-box !important;
}

.uc-tripdoc-cart .t-input,
.uc-tripdoc-cart .t-input-phonemask__wrap {
  width: 100% !important;
  max-width: none !important;
  height: 44px !important;
  min-height: 44px !important;
  padding: 0 16px !important;
  border: 1px solid #c8cbce !important;
  border-radius: 14px !important;
  color: var(--tdq-dark) !important;
  background: transparent !important;
  font-family: "Onest", Arial, sans-serif !important;
  font-size: 16px !important;
  line-height: 44px !important;
  box-sizing: border-box !important;
}

.uc-tripdoc-cart input.t-input:not(.t-input-phonemask) {
  display: block !important;
}

.uc-tripdoc-cart .t-input-phonemask__wrap {
  display: flex !important;
  align-items: center !important;
  padding: 0 16px !important;
}

.uc-tripdoc-cart .t-input-phonemask {
  display: block !important;
  flex: 1 1 auto !important;
  width: auto !important;
  min-width: 0 !important;
  height: 42px !important;
  min-height: 42px !important;
  margin: 0 !important;
  padding: 0 0 0 10px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  line-height: 44px !important;
}

.uc-tripdoc-cart .t-input-phonemask__select {
  display: flex !important;
  flex: 0 0 auto !important;
  align-items: center !important;
  height: 42px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.uc-tripdoc-cart .t-radio__wrapper {
  display: grid !important;
  gap: 9px !important;
  width: 100% !important;
}

.uc-tripdoc-cart .t-radio__item {
  display: flex !important;
  align-items: center !important;
  min-height: 24px !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #767879 !important;
  font-family: "Onest", Arial, sans-serif !important;
  font-size: 15px !important;
  line-height: 1.3 !important;
}

.uc-tripdoc-cart .t-radio__indicator {
  position: relative !important;
  top: auto !important;
  flex: 0 0 22px;
  width: 22px !important;
  height: 22px !important;
  margin-right: 14px !important;
  border: 1px solid #cfd2d4 !important;
  border-radius: 7px !important;
}

.uc-tripdoc-cart .t-radio:checked + .t-radio__indicator {
  border-color: var(--tdq-blue) !important;
}

.uc-tripdoc-cart .t-radio__indicator::after {
  background: var(--tdq-blue) !important;
}

.uc-tripdoc-cart .t706__cartwin-totalamount-wrap {
  display: block !important;
  margin: 28px 0 24px !important;
  padding: 0 !important;
  color: var(--tdq-dark) !important;
  text-align: left !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
}

.uc-tripdoc-cart .t-form__submit {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  margin: 32px 0 16px !important;
  padding: 0 !important;
}

.uc-tripdoc-cart .t-submit {
  width: 100% !important;
  min-height: 72px !important;
  padding: 0 24px !important;
  border: 0 !important;
  border-radius: 999px !important;
  color: #8f9091 !important;
  background: #d8ff93 !important;
  font-family: "Onest", Arial, sans-serif !important;
  font-size: 22px !important;
  font-weight: 650 !important;
}

.uc-tripdoc-cart .t-submit:hover {
  color: var(--tdq-dark) !important;
  filter: brightness(0.97);
  transform: translateY(-1px);
}

.uc-tripdoc-cart .t-submit:hover .t-btnflex__text {
  color: var(--tdq-dark) !important;
}

.uc-tripdoc-cart .tdq-cart-cancel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 72px;
  padding: 0 24px;
  border: 1px solid #d68cff;
  border-radius: 999px;
  color: #8f9091;
  background: transparent;
  cursor: pointer;
  font: 650 22px/1 "Onest", Arial, sans-serif;
}

.uc-tripdoc-cart .tdq-cart-cancel:hover {
  color: var(--tdq-dark) !important;
}

/* Custom catalog tabs proxy Tilda's native section switcher. */
:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor)
  .js-store-parts-select-container.tdq-native-parts,
#rec2354170351 .js-store-parts-select-container.tdq-native-parts {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .tdq-catalog-filters,
#rec2354170351 .tdq-catalog-filters {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto 52px;
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .tdq-catalog-filter,
#rec2354170351 .tdq-catalog-filter {
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid #cfd2d4;
  border-radius: 999px;
  color: var(--tdq-dark);
  background: transparent;
  cursor: pointer;
  font: 500 16px/1 "Onest", Arial, sans-serif;
  transition: color 160ms ease, background-color 160ms ease,
    border-color 160ms ease, transform 160ms ease;
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor)
  .tdq-catalog-filter:hover,
#rec2354170351 .tdq-catalog-filter:hover {
  color: var(--tdq-dark);
  border-color: var(--tdq-lime);
  transform: translateY(-1px);
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor)
  .tdq-catalog-filter.is-active,
#rec2354170351 .tdq-catalog-filter.is-active {
  border-color: var(--tdq-lime);
  background: var(--tdq-lime);
}

/* Match the 1440px desktop footer layout from the Figma reference. */
@media (min-width: 1340px) {
  .tripdoc-footer-block .site-footer {
    min-height: 408px !important;
    height: auto !important;
    padding-top: 55px !important;
    padding-bottom: 32px !important;
    box-sizing: border-box !important;
  }

  .tripdoc-footer-block .footer-inner {
    grid-template-columns: 560px 260px minmax(240px, 1fr) !important;
    column-gap: 80px !important;
    row-gap: 11px !important;
    width: 100% !important;
    padding-right: 60px !important;
    padding-left: 60px !important;
    box-sizing: border-box !important;
  }

  .tripdoc-footer-block .site-footer nav {
    justify-self: start;
    width: 260px;
    margin-top: -11px;
    gap: 14px;
  }

  .tripdoc-footer-block .site-footer nav > h2 {
    margin-bottom: 5px;
  }

  .tripdoc-footer-block .footer-contact {
    justify-self: end;
    width: 240px;
    margin-top: -11px;
    gap: 8px;
  }

  .tripdoc-footer-block .footer-contact > h2 {
    margin-bottom: 2px;
  }

  .tripdoc-footer-block .footer-contact > p {
    margin-bottom: 12px;
  }

  .tripdoc-footer-block .footer-bottom {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 8px 48px !important;
    width: 100% !important;
    padding-top: 34px !important;
  }

  .tripdoc-footer-block .footer-bottom > span,
  .tripdoc-footer-block .footer-bottom > a:first-of-type {
    grid-column: 1;
    justify-self: start;
    text-align: left;
  }

  .tripdoc-footer-block .footer-bottom > span,
  .tripdoc-footer-block .footer-bottom > a:nth-of-type(2) {
    grid-row: 1;
  }

  .tripdoc-footer-block .footer-bottom > a:first-of-type,
  .tripdoc-footer-block .footer-bottom > a:nth-of-type(3) {
    grid-row: 2;
  }

  .tripdoc-footer-block .footer-bottom > a:nth-of-type(2),
  .tripdoc-footer-block .footer-bottom > a:nth-of-type(3) {
    grid-column: 2;
    justify-self: end;
    text-align: right;
  }
}

.uc-tripdoc-cart .t-checkbox__wrapper {
  display: grid !important;
  gap: 10px !important;
}

.uc-tripdoc-cart .t-checkbox__control {
  display: flex !important;
  align-items: flex-start !important;
  margin: 0 !important;
  color: #929496 !important;
  font-family: "Onest", Arial, sans-serif !important;
  font-size: 15px !important;
  line-height: 1.3 !important;
}

.uc-tripdoc-cart .t-checkbox__indicator {
  flex: 0 0 22px;
  width: 22px !important;
  height: 22px !important;
  margin-right: 14px !important;
  border: 1px solid #cfd2d4 !important;
  border-radius: 7px !important;
}

.uc-tripdoc-cart
  .t-input-group[data-field-name*="Р С•Р С—Р В»Р В°РЎвЂљ" i]
  .t-radio__wrapper,
.uc-tripdoc-cart
  .t-input-group[data-field-name*="Р С•Р С—Р В»Р В°РЎвЂљ" i]
  .t-checkbox__wrapper {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 24px 32px !important;
}

.uc-tripdoc-cart
  .t-input-group[data-field-name*="Р С•Р С—Р В»Р В°РЎвЂљ" i]
  .t-radio__item,
.uc-tripdoc-cart
  .t-input-group[data-field-name*="Р С•Р С—Р В»Р В°РЎвЂљ" i]
  .t-checkbox__control {
  width: auto !important;
  margin: 0 !important;
}

.uc-tripdoc-cart
  .t-input-group[data-field-name*="Р С•Р С—Р В»Р В°РЎвЂљ" i]
  img {
  display: block;
  width: auto;
  max-width: 290px;
  max-height: 70px;
  object-fit: contain;
}

@keyframes tdq-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes tdq-modal-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .t-store__load-more-btn,
#rec2354170351 .t-store__load-more-btn {
  display: none !important;
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .tdq-load-more,
#rec2354170351 .tdq-load-more {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 176px !important;
  min-height: 48px !important;
  margin: 32px auto 0 !important;
  padding: 0 28px;
  border: 1px solid rgba(46, 46, 46, 0.38) !important;
  border-radius: 999px !important;
  color: var(--tdq-dark) !important;
  background: transparent !important;
  font: 600 15px/1 "Onest", Arial, sans-serif !important;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .tdq-load-more:hover,
#rec2354170351 .tdq-load-more:hover {
  border-color: var(--tdq-lime) !important;
  background: var(--tdq-lime) !important;
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .tdq-load-more[hidden],
#rec2354170351 .tdq-load-more[hidden] {
  display: none !important;
}

@keyframes tdq-star {
  0%, 100% { opacity: 0.72; transform: translateY(-50%) scale(0.93); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.06); }
}

@keyframes tdq-card-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1199px) {
  .tdq-header {
    grid-template-columns: 180px 1fr 180px;
  }

  .tdq-logo {
    width: 160px;
  }

  .tdq-nav {
    gap: 16px;
  }

  .tdq-nav a,
  .tdq-soon {
    font-size: 13px;
  }

  .tdq-header-button {
    width: 168px;
  }

  :is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .t-store__card-list,
  #rec2354170351 .t-store__card-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .uc-tripdoc-cart .t706__cartwin-content {
    width: calc(100vw - 32px) !important;
    padding: 42px !important;
  }

  .uc-tripdoc-cart .t706__cartwin-close {
    top: 42px !important;
    right: 42px !important;
  }
}

@media (max-width: 760px) {
  :root {
    --tdq-frame: calc(100vw - 16px);
  }

  .tdq-header {
    grid-template-columns: 1fr auto;
    min-height: 66px;
    padding: 10px 12px 10px 18px;
    border-radius: 33px;
  }

  .tdq-logo {
    width: 142px;
  }

  .tdq-header-button {
    display: none;
  }

  .tdq-menu-button {
    display: block;
  }

  .tdq-nav {
    position: absolute;
    top: 74px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(46, 46, 46, 0.14);
    border-radius: 22px;
    background: var(--tdq-paper);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  }

  .tdq-nav.is-open {
    display: flex;
  }

  .tdq-nav a,
  .tdq-soon {
    padding: 12px;
    font-size: 15px;
  }

  .tdq-intro {
    padding: 20px 12px 36px;
  }

  .tdq-title {
    margin-top: 42px;
  }

  .tdq-title h1 {
    max-width: 280px;
    font-size: 34px;
  }

  .tdq-title h1::before,
  .tdq-title h1::after {
    width: 28px;
    height: 28px;
  }

  .tdq-title h1::before {
    left: -33px;
  }

  .tdq-title h1::after {
    right: -33px;
  }

  .tdq-title p {
    font-size: 20px;
  }

  :is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor),
  #rec2354170351 {
    padding: 0 12px 70px !important;
  }

  :is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .t-store__parts-switch-wrapper,
  #rec2354170351 .t-store__parts-switch-wrapper {
    margin-bottom: 28px !important;
    overflow-x: auto;
  }

  :is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .t-store__card-list,
  #rec2354170351 .t-store__card-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  :is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .t-store__card__wrap_all,
  #rec2354170351 .t-store__card__wrap_all {
    height: auto;
    min-height: 565px;
    aspect-ratio: auto;
    border-radius: 24px;
  }

  :is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .t-store__card__textwrapper,
  #rec2354170351 .t-store__card__textwrapper {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }

  :is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .tdq-card-actions,
  #rec2354170351 .tdq-card-actions {
    right: 24px;
    left: 24px;
  }

  .tdq-details-modal {
    padding: 12px;
  }

  .tdq-details-dialog {
    padding: 30px 20px 24px;
    border-radius: 18px;
  }

  .tdq-details-dialog h2 {
    font-size: 22px;
  }

  .tdq-modal-close {
    top: 18px;
    right: 18px;
  }

  .uc-tripdoc-cart .t706__cartwin {
    padding: 8px !important;
  }

  .uc-tripdoc-cart .t706__cartwin-content {
    width: calc(100vw - 16px) !important;
    max-height: calc(100vh - 16px) !important;
    padding: 28px 18px 22px !important;
    border-radius: 18px !important;
  }

  .uc-tripdoc-cart .t706__cartwin-close {
    top: 24px !important;
    right: 24px !important;
  }

  .uc-tripdoc-cart .t706__cartwin-heading {
    font-size: 22px !important;
  }

  .uc-tripdoc-cart .t706__product {
    grid-template-columns: minmax(0, 1fr) auto !important;
    grid-template-rows: auto auto auto !important;
    min-height: 230px !important;
    padding: 70px 18px 20px !important;
    border-radius: 22px !important;
  }

  .uc-tripdoc-cart .tdq-cart-product-seats {
    top: 20px;
    left: 18px;
  }

  .uc-tripdoc-cart .t706__product-title {
    grid-column: 1 / -1;
    grid-row: 1;
    padding-right: 0 !important;
    font-size: 20px !important;
  }

  .uc-tripdoc-cart .tdq-cart-product-meta {
    grid-column: 1;
    grid-row: 2 / span 2;
    font-size: 15px;
  }

  .uc-tripdoc-cart .t706__product-plusminus {
    grid-column: 2;
    grid-row: 2;
    padding: 0 !important;
  }

  .uc-tripdoc-cart .t706__product-amount {
    grid-column: 2;
    grid-row: 3;
    font-size: 20px !important;
  }

  .uc-tripdoc-cart .t706__form-upper-text {
    font-size: 18px !important;
  }

  .uc-tripdoc-cart .t-submit,
  .uc-tripdoc-cart .tdq-cart-cancel {
    min-height: 58px !important;
    font-size: 18px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tdq-title h1::before,
  .tdq-title h1::after {
    animation: none;
  }

  .tdq-header-button,
  .tdq-card-button,
  .t-store__card__wrap_all,
  .tdq-details-buy {
    transition: none !important;
  }

  :is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .t-store__card[data-tdq-ready="true"],
  #rec2354170351 .t-store__card[data-tdq-ready="true"] {
    animation: none !important;
  }

  .tdq-modal-backdrop,
  .tdq-details-dialog {
    animation: none !important;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Onest:wght@400;500;600;700&family=Unbounded:wght@400;500;600;700&display=swap");

:root {
  --tdt-blue: #087bf5;
  --tdt-lime: #c4ff61;
  --tdt-purple: #cf82f5;
  --tdt-dark: #2d2d2d;
  --tdt-text: #303033;
  --tdt-page: #f8fafc;
  --tdt-line: #e9edef;
  --tdt-frame: min(1320px, calc(100vw - 40px));
}

.tdt-page-head,
.tdt-page-head *,
:is(.uc-tripdoc-trips, .tripdoc-trips, #rec2355046761),
:is(.uc-tripdoc-trips, .tripdoc-trips, #rec2355046761) * {
  box-sizing: border-box;
}

.tdt-page-head {
  width: var(--tdt-frame);
  margin: 12px auto 0;
  color: var(--tdt-text);
  font-family: "Onest", Arial, sans-serif;
}

.tdt-header {
  display: grid;
  grid-template-columns: 280px 1fr 186px;
  align-items: center;
  min-height: 76px;
  padding: 0 24px;
  border: 1px solid #dfe3e5;
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.96);
}

.tdt-logo {
  display: block;
  width: 194px;
  line-height: 0;
}

.tdt-logo img {
  display: block;
  width: 194px;
  height: auto;
}

.tdt-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
}

.tdt-nav a,
.tdt-nav a:visited {
  color: var(--tdt-text) !important;
  text-decoration: none;
}

.tdt-nav a[aria-current="page"],
.tdt-nav a:hover {
  color: var(--tdt-blue) !important;
}

.tdt-soon {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.tdt-soon small {
  margin-left: 6px;
  padding: 2px 8px;
  border: 1px solid var(--tdt-blue);
  border-radius: 999px;
  color: var(--tdt-blue);
  font-size: 10px;
  line-height: 1.2;
}

.tdt-header-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 25px;
  background: var(--tdt-lime);
  color: var(--tdt-text) !important;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.tdt-header-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45, 45, 45, 0.12);
}

.tdt-menu-button {
  display: none;
}

.tdt-intro {
  padding: 14px 0 58px;
}

.tdt-breadcrumbs {
  margin: 0 0 58px;
  color: #8b8b8f;
  font-size: 16px;
}

.tdt-breadcrumbs a {
  color: inherit !important;
  text-decoration: none;
}

.tdt-title {
  display: grid;
  grid-template-columns: 60px auto 60px;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.tdt-title h1 {
  margin: 0;
  color: var(--tdt-blue);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 58px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.tdt-title-star {
  width: 52px;
  height: 52px;
  background: url("https://static.tildacdn.com/tild3638-6133-4461-b666-343431633637/star.png") center / contain no-repeat;
}

.tdt-filters {
  display: flex;
  gap: 14px;
  margin-top: 42px;
}

.tdt-chip {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid #cdd1d3;
  border-radius: 14px;
  background: #fff;
  color: var(--tdt-text);
  font: 500 17px/1 "Onest", Arial, sans-serif;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.tdt-chip:hover,
.tdt-chip.is-active {
  border-color: var(--tdt-lime);
  background: var(--tdt-lime);
}

.tdt-catalog-anchor {
  position: relative;
  top: -20px;
  display: block;
  width: 0;
  height: 0;
}

:is(.uc-tripdoc-trips, .tripdoc-trips, #rec2355046761) {
  width: var(--tdt-frame) !important;
  margin: 0 auto !important;
  padding: 0 0 70px !important;
  background: transparent !important;
  font-family: "Onest", Arial, sans-serif !important;
}

:is(.uc-tripdoc-trips, .tripdoc-trips, #rec2355046761) .tdt-native-filters {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

:is(.uc-tripdoc-trips, .tripdoc-trips, #rec2355046761) .js-store-grid-cont {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

:is(.uc-tripdoc-trips, .tripdoc-trips, #rec2355046761) .t-store__card-list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 20px !important;
  width: 100% !important;
  margin: 0 !important;
}

:is(.uc-tripdoc-trips, .tripdoc-trips, #rec2355046761) .t-store__card {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  float: none !important;
  clear: none !important;
  width: auto !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 28px !important;
  background: var(--tdt-dark) !important;
  overflow: hidden !important;
  animation: tdt-card-in 420ms both;
}

:is(.uc-tripdoc-trips, .tripdoc-trips, #rec2355046761) .t-store__card:nth-child(2) {
  animation-delay: 80ms;
}

:is(.uc-tripdoc-trips, .tripdoc-trips, #rec2355046761) .t-store__card > a,
:is(.uc-tripdoc-trips, .tripdoc-trips, #rec2355046761) .t-store__card > .t-store__card__wrap_txt-and-btns {
  display: none !important;
}

.tdt-trip-card-ui {
  display: grid;
  grid-template-rows: auto auto auto auto;
  min-height: 610px;
  padding: 30px 32px 32px;
  color: #fff;
}

.tdt-trip-card-title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  margin: 0 0 24px;
  color: #fff;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.tdt-trip-card-image {
  width: 100%;
  aspect-ratio: 585 / 260;
  border-radius: 24px;
  background-color: #d9dde0;
  background-position: center;
  background-size: cover;
}

.tdt-trip-card-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  min-height: 84px;
  padding-top: 22px;
}

.tdt-trip-card-date {
  display: grid;
  gap: 6px;
}

.tdt-trip-card-date span {
  color: #929296;
  font-size: 16px;
}

.tdt-trip-card-date strong {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}

.tdt-trip-card-price {
  color: var(--tdt-lime);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 28px;
  font-weight: 500;
  white-space: nowrap;
}

.tdt-trip-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding-top: 22px;
}

.tdt-trip-button {
  min-height: 74px;
  border: 1px solid var(--tdt-lime);
  border-radius: 37px;
  font: 600 22px/1 "Unbounded", Arial, sans-serif;
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease, background-color 180ms ease;
}

.tdt-trip-button:hover {
  transform: translateY(-2px);
}

.tdt-trip-button_primary {
  background: var(--tdt-lime);
  color: var(--tdt-text);
}

.tdt-trip-button_secondary {
  background: transparent;
  color: #fff;
}

.tdt-trip-button_secondary:hover {
  background: var(--tdt-lime);
  color: var(--tdt-text);
}

.tdt-trip-card-hidden {
  display: none !important;
}

.tdt-trips-load-more {
  display: block;
  min-width: 250px;
  min-height: 66px;
  margin: 40px auto 0;
  padding: 0 34px;
  border: 1px solid #313136;
  border-radius: 33px;
  background: #fff;
  color: var(--tdt-text);
  font: 600 17px/1 "Unbounded", Arial, sans-serif;
  cursor: pointer;
}

.tdt-trips-load-more:hover {
  border-color: var(--tdt-lime);
  background: var(--tdt-lime);
}

.tdt-trips-load-more[hidden] {
  display: none !important;
}

@keyframes tdt-card-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Trip details dialog */
body.tdt-modal-open {
  overflow: hidden !important;
}

.tdt-details-modal {
  position: fixed;
  z-index: 1000002;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.tdt-details-modal.is-open {
  display: flex;
}

.tdt-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(25, 25, 25, 0.52);
  backdrop-filter: blur(3px);
  animation: tdt-fade-in 180ms ease both;
}

.tdt-details-dialog {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  padding: 60px;
  overflow: auto;
  border-radius: 30px;
  color: var(--tdt-text);
  background: var(--tdt-page);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  font-family: "Onest", Arial, sans-serif;
  box-sizing: border-box;
  animation: tdt-modal-in 220ms ease both;
}

.tdt-modal-close {
  position: absolute;
  top: 60px;
  right: 60px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0 0 4px;
  border: 1px solid #c8cbce;
  border-radius: 50%;
  color: #303033;
  background: transparent;
  cursor: pointer;
  font: 300 36px/1 "Onest", Arial, sans-serif;
}

.tdt-details-dialog h2 {
  max-width: 680px;
  margin: 0 64px 34px 0;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.18;
}

.tdt-details-date,
.tdt-details-price {
  display: grid;
  gap: 4px;
}

.tdt-details-date {
  margin-bottom: 14px;
}

.tdt-details-date span,
.tdt-details-price span,
.tdt-details-copy h3 {
  color: #929496;
  font-size: 18px;
  font-weight: 400;
}

.tdt-details-date strong {
  font-size: 27px;
  font-weight: 500;
}

.tdt-details-copy {
  color: #3f4143;
  font-size: 21px;
  line-height: 1.36;
}

.tdt-details-copy section,
.tdt-details-copy p,
.tdt-details-copy ul {
  margin: 0 0 16px;
}

.tdt-details-copy h3 {
  margin: 0 0 3px;
}

.tdt-details-copy ul {
  padding-left: 30px;
}

.tdt-details-copy li {
  margin: 0 0 3px;
}

.tdt-details-price {
  margin-top: 32px;
}

.tdt-details-price strong {
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 30px;
  font-weight: 500;
}

.tdt-details-book {
  width: 100%;
  min-height: 72px;
  margin-top: 38px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  color: var(--tdt-text);
  background: var(--tdt-lime);
  cursor: pointer;
  font: 600 22px/1 "Unbounded", Arial, sans-serif;
}

/* Native Tilda cart (ST100 / T706) used as a booking form. */
.uc-tripdoc-cart .t706__carticon {
  display: none !important;
}

.uc-tripdoc-cart .t706__cartwin {
  z-index: 1000001 !important;
  padding: 20px !important;
  background: rgba(25, 25, 25, 0.5) !important;
  backdrop-filter: blur(3px);
  box-sizing: border-box !important;
}

.uc-tripdoc-cart .t706__cartwin-content {
  width: min(900px, calc(100vw - 40px)) !important;
  max-width: 900px !important;
  max-height: calc(100vh - 40px) !important;
  min-height: 0 !important;
  margin: 0 auto !important;
  padding: 60px !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  border-radius: 30px !important;
  color: var(--tdt-text) !important;
  background: var(--tdt-page) !important;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22) !important;
  font-family: "Onest", Arial, sans-serif !important;
  box-sizing: border-box !important;
}

.uc-tripdoc-cart .t706__cartwin-close {
  position: fixed !important;
  top: 60px !important;
  right: max(60px, calc(50% - 390px)) !important;
  z-index: 5 !important;
  width: 44px !important;
  height: 44px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.uc-tripdoc-cart .t706__cartwin-close-wrapper {
  display: grid !important;
  place-items: center !important;
  width: 44px !important;
  height: 44px !important;
  border: 1px solid #c8cbce !important;
  border-radius: 50% !important;
  background: var(--tdt-page) !important;
}

.uc-tripdoc-cart .t706__cartwin-close-icon {
  width: 18px !important;
  height: 18px !important;
}

.uc-tripdoc-cart .t706__cartwin-close-icon rect {
  fill: #303033 !important;
}

.uc-tripdoc-cart .t706__cartwin-top {
  margin: 0 0 36px !important;
  padding: 0 60px 0 0 !important;
  border: 0 !important;
}

.uc-tripdoc-cart .t706__cartwin-heading {
  margin: 0 !important;
  color: var(--tdt-text) !important;
  font-family: "Unbounded", Arial, sans-serif !important;
  font-size: 36px !important;
  font-weight: 500 !important;
  line-height: 1.15 !important;
}

.uc-tripdoc-cart .tdt-cart-subtitle {
  margin-top: 14px;
  color: #414345;
  font-size: 20px;
  line-height: 1.3;
}

.uc-tripdoc-cart .t706__cartwin-products,
.uc-tripdoc-cart .t706__cartwin-bottom,
.uc-tripdoc-cart .t706__cartwin-totalamount-wrap,
.uc-tripdoc-cart .t706__form-upper-text,
.uc-tripdoc-cart .tdt-cart-field-hidden {
  display: none !important;
}

.uc-tripdoc-cart .t706__orderform,
.uc-tripdoc-cart .t-form,
.uc-tripdoc-cart .t-form__inputsbox {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

.uc-tripdoc-cart .t-input-group {
  display: block !important;
  float: none !important;
  clear: both !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 0 27px !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

.uc-tripdoc-cart .t-input-block {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

.uc-tripdoc-cart .t-input-title {
  display: block !important;
  margin: 0 0 10px !important;
  padding: 0 !important;
  color: #414345 !important;
  font-family: "Onest", Arial, sans-serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
}

.uc-tripdoc-cart .t-input,
.uc-tripdoc-cart .t-input-phonemask__wrap {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: 44px !important;
  min-height: 44px !important;
  margin: 0 !important;
  padding: 0 16px !important;
  border: 1px solid #c8cbce !important;
  border-radius: 14px !important;
  color: var(--tdt-text) !important;
  background: transparent !important;
  font-family: "Onest", Arial, sans-serif !important;
  font-size: 16px !important;
  line-height: 44px !important;
  box-sizing: border-box !important;
}

.uc-tripdoc-cart .t-input-phonemask__wrap {
  display: flex !important;
  align-items: center !important;
}

.uc-tripdoc-cart .t-input-phonemask {
  flex: 1 1 auto !important;
  width: auto !important;
  min-width: 0 !important;
  height: 42px !important;
  min-height: 42px !important;
  margin: 0 !important;
  padding: 0 0 0 10px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  line-height: 42px !important;
}

.uc-tripdoc-cart .t-input-phonemask__select {
  display: flex !important;
  flex: 0 0 auto !important;
  align-items: center !important;
  height: 42px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.uc-tripdoc-cart .t-checkbox__control {
  display: flex !important;
  align-items: flex-start !important;
  margin: 0 !important;
  color: #929496 !important;
  font-family: "Onest", Arial, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.3 !important;
}

.uc-tripdoc-cart .t-checkbox__indicator {
  flex: 0 0 22px;
  width: 22px !important;
  height: 22px !important;
  margin-right: 14px !important;
  border: 1px solid #c8cbce !important;
  border-radius: 7px !important;
}

.uc-tripdoc-cart .t-form__submit {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  margin: 32px 0 16px !important;
  padding: 0 !important;
}

.uc-tripdoc-cart .t-submit,
.uc-tripdoc-cart .tdt-cart-cancel {
  width: 100% !important;
  min-height: 72px !important;
  padding: 0 24px !important;
  border-radius: 999px !important;
  font: 600 22px/1 "Unbounded", Arial, sans-serif !important;
  cursor: pointer;
}

.uc-tripdoc-cart .t-submit {
  border: 0 !important;
  color: #8f9091 !important;
  background: #d8ff93 !important;
}

.uc-tripdoc-cart .t-submit:hover,
.uc-tripdoc-cart .t-submit:hover .t-btnflex__text,
.uc-tripdoc-cart .tdt-cart-cancel:hover {
  color: #111 !important;
}

.uc-tripdoc-cart .tdt-cart-cancel {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d68cff !important;
  color: #8f9091;
  background: transparent;
}

.uc-tripdoc-cart .t-form__successbox {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--tdt-text) !important;
  background: transparent !important;
}

.uc-tripdoc-cart.tdt-cart-success-visible .t706__cartwin-top,
.uc-tripdoc-cart.tdt-cart-success-visible .t706__cartwin-close,
.uc-tripdoc-cart.tdt-cart-success-visible .t-input-group,
.uc-tripdoc-cart.tdt-cart-success-visible .t-form__submit,
.uc-tripdoc-cart.tdt-cart-success-visible .tdt-cart-cancel {
  display: none !important;
}

.uc-tripdoc-cart.tdt-cart-success-visible .t-form__successbox {
  display: block !important;
}

.tdt-cart-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tdt-cart-success img {
  width: 256px;
  height: 256px;
  margin-bottom: 30px;
  object-fit: contain;
}

.tdt-cart-success h2 {
  margin: 0;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.15;
}

.tdt-cart-success p {
  margin: 28px 0 32px;
  color: #929496;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.tdt-success-primary,
.tdt-success-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 72px;
  border-radius: 999px;
  font: 600 22px/1 "Unbounded", Arial, sans-serif;
  text-decoration: none !important;
  box-sizing: border-box;
}

.tdt-success-primary {
  color: var(--tdt-text) !important;
  background: var(--tdt-lime);
}

.tdt-success-secondary {
  margin-top: 16px;
  border: 1px solid #d68cff;
  color: #8f9091 !important;
  background: transparent;
  cursor: pointer;
}

.tdt-success-primary:hover,
.tdt-success-secondary:hover {
  color: #111 !important;
}

@keyframes tdt-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes tdt-modal-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Static OneTwoTrip placeholder and following content blocks */
.tdt-ott-placeholder,
.tdt-ott-placeholder *,
.tdt-travel-help,
.tdt-travel-help *,
.tdt-team-cta,
.tdt-team-cta * {
  box-sizing: border-box;
}

.tdt-ott-placeholder {
  position: relative;
  width: var(--tdt-frame);
  height: 452px;
  margin: 50px auto 0;
  overflow: hidden;
  border-radius: 28px;
  color: #fff;
  background: #202226;
  font-family: "Onest", Arial, sans-serif;
}

.tdt-ott-background {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.tdt-ott-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 98px 60px 34px;
}

.tdt-ott-content h2 {
  margin: 0;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.16;
  text-align: center;
}

.tdt-ott-tabs {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 600;
}

.tdt-ott-tabs span {
  position: relative;
  white-space: nowrap;
}

.tdt-ott-tabs .is-active {
  color: var(--tdt-lime);
}

.tdt-ott-tabs .is-active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--tdt-lime);
}

.tdt-ott-search {
  display: grid;
  grid-template-columns: 1.18fr 1fr 1.02fr 108px;
  width: 100%;
  min-height: 56px;
  margin-top: 36px;
  color: #909194;
  background: #fff;
  border-radius: 14px;
}

.tdt-ott-field {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  padding: 0 24px;
  border-right: 1px solid #c8cbce;
  font-size: 20px;
  white-space: nowrap;
}

.tdt-ott-route {
  display: grid;
  grid-template-columns: 1fr 34px 1fr;
  gap: 10px;
}

.tdt-ott-swap {
  color: #47494b;
  text-align: center;
  font-size: 19px;
}

.tdt-ott-chevron {
  width: 9px;
  height: 9px;
  margin-left: 14px;
  border-right: 1px solid #393b3d;
  border-bottom: 1px solid #393b3d;
  transform: rotate(45deg) translateY(-3px);
}

.tdt-ott-search button {
  min-width: 108px;
  margin-left: 8px;
  border: 0 !important;
  border-radius: 14px !important;
  color: #fff !important;
  background: var(--tdt-blue) !important;
  cursor: default;
  font: 700 20px/1 "Onest", Arial, sans-serif !important;
}

.tdt-ott-complex {
  align-self: flex-end;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 9px 4px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 17px;
  font-weight: 500;
}

.tdt-ott-complex span {
  font-size: 20px;
}

.tdt-travel-help {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: var(--tdt-frame);
  margin: 52px auto 0;
  font-family: "Onest", Arial, sans-serif;
}

.tdt-help-card {
  display: flex;
  flex-direction: column;
  min-height: 282px;
  padding: 32px;
  border: 1px solid #c8cbce;
  border-radius: 28px;
  color: var(--tdt-text);
  background: var(--tdt-page);
}

.tdt-help-card > div {
  margin-top: 48px;
}

.tdt-help-card_lime {
  border-color: var(--tdt-lime);
  background: var(--tdt-lime);
}

.tdt-help-card_dark {
  border-color: var(--tdt-dark);
  color: #fff;
  background: var(--tdt-dark);
}

.tdt-help-card img {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.tdt-help-card h2 {
  margin: 0 0 13px;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}

.tdt-help-card p {
  max-width: 360px;
  margin: 0;
  font-size: 19px;
  line-height: 1.28;
}

.tdt-team-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: var(--tdt-frame);
  min-height: 320px;
  margin: 84px auto 0;
  color: var(--tdt-text);
  font-family: "Onest", Arial, sans-serif;
  text-align: center;
}

.tdt-team-cta-title {
  display: grid;
  grid-template-columns: 56px minmax(0, 760px) 56px;
  align-items: center;
  gap: 26px;
}

.tdt-team-cta h2 {
  margin: 0;
  color: var(--tdt-blue);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 52px;
  font-weight: 600;
  line-height: 1.12;
  text-transform: uppercase;
}

.tdt-team-cta-star {
  display: block;
  width: 52px;
  height: 52px;
  background: url("https://static.tildacdn.com/tild3638-6133-4461-b666-343431633637/star.png") center / contain no-repeat;
}

.tdt-team-cta p {
  margin: 20px 0 32px;
  color: #8e9092;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.28;
}

.tdt-team-cta-button,
.tdt-team-cta-button:visited {
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: center;
  width: 488px;
  min-height: 72px;
  padding: 0 30px;
  border-radius: 999px;
  color: var(--tdt-text) !important;
  background: var(--tdt-lime);
  font: 600 20px/1 "Unbounded", Arial, sans-serif;
  text-decoration: none !important;
  transition: transform 180ms ease, filter 180ms ease;
}

.tdt-team-cta-button span:first-child {
  padding-left: 24px;
  text-align: center;
}

.tdt-team-cta-button span:last-child {
  font-family: "Onest", Arial, sans-serif;
  font-size: 28px;
}

.tdt-team-cta-button:hover {
  color: #111 !important;
  filter: brightness(0.98);
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  :root {
    --tdt-frame: min(960px, calc(100vw - 32px));
  }

  .tdt-header {
    grid-template-columns: 190px 1fr 150px;
    padding: 0 18px;
  }

  .tdt-nav {
    gap: 18px;
    font-size: 13px;
  }

  .tdt-title h1 {
    font-size: 46px;
  }

  .tdt-trip-card-title {
    font-size: 25px;
  }

  .tdt-trip-button {
    font-size: 17px;
  }

  .tdt-ott-content {
    padding-inline: 34px;
  }

  .tdt-ott-field {
    padding-inline: 16px;
    font-size: 17px;
  }

  .tdt-help-card {
    padding: 26px;
  }

  .tdt-help-card h2 {
    font-size: 18px;
  }

  .tdt-help-card p {
    font-size: 17px;
  }
}

@media (max-width: 760px) {
  :root {
    --tdt-frame: calc(100vw - 24px);
  }

  .tdt-page-head {
    margin-top: 8px;
  }

  .tdt-header {
    grid-template-columns: 1fr auto;
    min-height: 62px;
    padding: 0 16px;
    border-radius: 31px;
  }

  .tdt-logo,
  .tdt-logo img {
    width: 145px;
  }

  .tdt-header-button {
    display: none;
  }

  .tdt-menu-button {
    display: grid;
    gap: 6px;
    width: 42px;
    height: 42px;
    padding: 12px 9px;
    border: 0;
    background: transparent;
  }

  .tdt-menu-button span {
    display: block;
    height: 2px;
    background: var(--tdt-text);
  }

  .tdt-nav {
    position: absolute;
    z-index: 20;
    top: 72px;
    right: 12px;
    left: 12px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    border: 1px solid #dfe3e5;
    border-radius: 18px;
    background: #fff;
  }

  .tdt-nav.is-open {
    display: flex;
  }

  .tdt-intro {
    padding-bottom: 38px;
  }

  .tdt-breadcrumbs {
    margin-bottom: 38px;
    font-size: 14px;
  }

  .tdt-title {
    grid-template-columns: 30px minmax(0, 1fr) 30px;
    gap: 8px;
  }

  .tdt-title h1 {
    font-size: 29px;
  }

  .tdt-title-star {
    width: 28px;
    height: 28px;
  }

  .tdt-filters {
    gap: 8px;
    margin-top: 28px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .tdt-filters::-webkit-scrollbar {
    display: none;
  }

  .tdt-chip {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 14px;
    font-size: 15px;
  }

  :is(.uc-tripdoc-trips, .tripdoc-trips, #rec2355046761) .t-store__card-list {
    grid-template-columns: 1fr !important;
  }

  .tdt-trip-card-ui {
    min-height: 0;
    padding: 24px 16px 18px;
  }

  .tdt-trip-card-title {
    min-height: 0;
    margin-bottom: 18px;
    font-size: 22px;
  }

  .tdt-trip-card-image {
    aspect-ratio: 1.35;
    border-radius: 18px;
  }

  .tdt-trip-card-meta {
    min-height: 76px;
    gap: 12px;
  }

  .tdt-trip-card-date strong {
    font-size: 18px;
  }

  .tdt-trip-card-price {
    font-size: 20px;
  }

  .tdt-trip-actions {
    grid-template-columns: 1fr;
  }

  .tdt-trip-button {
    min-height: 58px;
    font-size: 16px;
  }

  .tdt-ott-placeholder {
    height: auto;
    min-height: 530px;
    margin-top: 34px;
    border-radius: 22px;
  }

  .tdt-ott-content {
    min-height: 530px;
    justify-content: center;
    padding: 42px 18px 28px;
  }

  .tdt-ott-content h2 {
    font-size: 25px;
  }

  .tdt-ott-tabs {
    max-width: 100%;
    gap: 20px;
    margin-top: 30px;
    overflow-x: auto;
    font-size: 14px;
    scrollbar-width: none;
  }

  .tdt-ott-search {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 34px;
    overflow: hidden;
    background: transparent;
    border-radius: 14px;
  }

  .tdt-ott-field,
  .tdt-ott-route {
    min-height: 54px;
    border-right: 0;
    border-bottom: 1px solid #d7d9da;
    background: #fff;
  }

  .tdt-ott-search button {
    min-height: 56px;
    margin: 8px 0 0;
  }

  .tdt-ott-complex {
    align-self: center;
    margin-top: 13px;
    font-size: 15px;
  }

  .tdt-travel-help {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .tdt-help-card {
    min-height: 230px;
    padding: 26px;
  }

  .tdt-help-card h2 {
    font-size: 19px;
  }

  .tdt-help-card p {
    font-size: 17px;
  }

  .tdt-team-cta {
    min-height: 0;
    margin-top: 74px;
    padding-bottom: 16px;
  }

  .tdt-team-cta-title {
    grid-template-columns: 28px minmax(0, 1fr) 28px;
    gap: 7px;
  }

  .tdt-team-cta h2 {
    font-size: 28px;
  }

  .tdt-team-cta-star {
    width: 28px;
    height: 28px;
  }

  .tdt-team-cta p {
    margin: 18px 0 26px;
    font-size: 15px;
  }

  .tdt-team-cta-button {
    width: min(100%, 488px);
    min-height: 58px;
    font-size: 16px;
  }

  .tdt-details-modal,
  .uc-tripdoc-cart .t706__cartwin {
    padding: 8px !important;
  }

  .tdt-details-dialog,
  .uc-tripdoc-cart .t706__cartwin-content {
    width: calc(100vw - 16px) !important;
    max-height: calc(100vh - 16px) !important;
    padding: 30px 20px !important;
    border-radius: 24px !important;
  }

  .tdt-modal-close,
  .uc-tripdoc-cart .t706__cartwin-close {
    top: 28px !important;
    right: 28px !important;
  }

  .tdt-details-dialog h2,
  .uc-tripdoc-cart .t706__cartwin-heading,
  .tdt-cart-success h2 {
    font-size: 25px !important;
  }

  .tdt-details-dialog h2 {
    margin-right: 54px;
  }

  .tdt-details-date strong,
  .tdt-details-price strong {
    font-size: 22px;
  }

  .tdt-details-copy,
  .uc-tripdoc-cart .tdt-cart-subtitle,
  .tdt-cart-success p {
    font-size: 16px;
  }

  .uc-tripdoc-cart .t706__cartwin-top {
    margin-bottom: 28px !important;
    padding-right: 48px !important;
  }

  .uc-tripdoc-cart .t-input-group {
    margin-bottom: 22px !important;
  }

  .tdt-details-book,
  .uc-tripdoc-cart .t-submit,
  .uc-tripdoc-cart .tdt-cart-cancel,
  .tdt-success-primary,
  .tdt-success-secondary {
    min-height: 58px !important;
    font-size: 16px !important;
  }

  .tdt-cart-success img {
    width: 180px;
    height: 180px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tdt-header-button,
  .tdt-trip-button,
  .tdt-team-cta-button,
  :is(.uc-tripdoc-trips, .tripdoc-trips, #rec2355046761) .t-store__card {
    animation: none !important;
    transition: none !important;
  }
}

/* TRIPDOC interaction patch. Append after 00-custom-css.css if the old CSS is already installed. */
.tripdoc-html-block .btn,
.tripdoc-html-block .polaroid,
.tripdoc-html-block .mini-photo,
.tripdoc-html-block .moments-grid img,
.tripdoc-html-block .founder-card,
.tripdoc-html-block .spark-title::before,
.tripdoc-html-block .spark-title::after,
.tripdoc-html-block .reveal {
  animation: none !important;
}

/* 20-mobile-390-hard-fix.css
   Hard repair for 390px mobile only: no grid stripes, working slider tracks,
   restored section colors and mobile catalog/card alignment. */
@media (max-width: 520px) {
  html,
  body,
  #allrecords,
  .t-records,
  .t-rec,
  .t396,
  .t396__artboard,
  .t396__carrier,
  .t396__filter,
  .t-container,
  .t-container_100,
  .t-col,
  .t-store,
  .t-store__grid-cont,
  .t-store__card-list,
  .tdq-page-head,
  .tdq-intro,
  .tdt-page-head,
  .tdt-intro,
  .tripdoc-html-block,
  .page-grid {
    background-color: #fbfdff !important;
    background-image: none !important;
  }

  body::before,
  .page-grid::before,
  .t-rec::before,
  .t-rec::after,
  .t396::before,
  .t396::after,
  .t396__artboard::before,
  .t396__artboard::after,
  .t396__carrier::before,
  .t396__carrier::after,
  .tripdoc-html-block::before,
  .tripdoc-html-block::after {
    display: none !important;
    content: none !important;
    background: none !important;
    background-image: none !important;
  }

  .tripdoc-html-block:has(.other-way),
  .tripdoc-html-block:has(.quiz-start),
  .tripdoc-html-block:has(.community),
  .tripdoc-html-block:has(.founders),
  .tripdoc-html-block .other-way,
  .tripdoc-html-block .quiz-start,
  .tripdoc-html-block .community,
  .tripdoc-html-block .founders,
  body > .page-grid .other-way,
  body > .page-grid .quiz-start,
  body > .page-grid .community,
  body > .page-grid .founders {
    background-color: #303033 !important;
    background-image: none !important;
  }

  .tripdoc-html-block:has(.familiar),
  .tripdoc-html-block:has(.system),
  .tripdoc-html-block:has(.trips),
  .tripdoc-html-block:has(.moments),
  .tripdoc-html-block:has(.final-cta),
  .tripdoc-html-block .familiar,
  .tripdoc-html-block .system,
  .tripdoc-html-block .trips,
  .tripdoc-html-block .moments,
  .tripdoc-html-block .final-cta,
  body > .page-grid .familiar,
  body > .page-grid .system,
  body > .page-grid .trips,
  body > .page-grid .moments,
  body > .page-grid .final-cta {
    background-color: #fbfdff !important;
    background-image: none !important;
  }

  .tripdoc-html-block .site-header,
  body > .site-header {
    display: grid !important;
    grid-template-columns: 126px 1fr 36px !important;
    width: calc(100% - 32px) !important;
    max-width: 358px !important;
    min-height: 54px !important;
    padding: 0 8px 0 16px !important;
    column-gap: 8px !important;
    align-items: center !important;
    border-radius: 29px !important;
    background: #fff !important;
  }

  .tripdoc-html-block .site-header .main-nav,
  body > .site-header .main-nav {
    display: none !important;
  }

  .tripdoc-html-block .site-header .logo,
  body > .site-header .logo,
  .tripdoc-html-block .site-header .logo img,
  body > .site-header .logo img {
    display: block !important;
    width: 126px !important;
    min-width: 126px !important;
    max-width: 126px !important;
    height: 36px !important;
    overflow: hidden !important;
    color: transparent !important;
    font-size: 0 !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: left center !important;
  }

  .tripdoc-html-block .site-header .header-cta,
  body > .site-header .header-cta {
    display: flex !important;
    min-width: 0 !important;
    width: 100% !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 12px !important;
    border-radius: 24px !important;
    background: #ceff72 !important;
    color: #202226 !important;
    font-family: "Unbounded", Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .tripdoc-html-block .site-header .menu-toggle,
  body > .site-header .menu-toggle,
  .tdq-menu-button,
  .tdt-menu-button {
    display: block !important;
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    border: 1px solid rgba(48, 48, 51, 0.34) !important;
    border-radius: 50% !important;
    background: #fff !important;
  }

  .tdq-header,
  .tdt-header {
    display: grid !important;
    grid-template-columns: 126px 1fr 36px !important;
    width: calc(100% - 32px) !important;
    max-width: 358px !important;
    min-height: 54px !important;
    margin: 10px auto 0 !important;
    padding: 0 8px 0 16px !important;
    column-gap: 8px !important;
    align-items: center !important;
    border-radius: 29px !important;
    background: #fff !important;
  }

  .tdq-nav,
  .tdt-nav {
    display: none !important;
  }

  .tdq-nav.is-open,
  .tdt-nav.is-open {
    display: flex !important;
  }

  .tdq-logo,
  .tdt-logo,
  .tdq-logo img,
  .tdt-logo img {
    width: 126px !important;
    min-width: 126px !important;
    max-width: 126px !important;
    height: auto !important;
  }

  .tdq-header-button,
  .tdt-header-button {
    display: flex !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 12px !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 24px !important;
    background: #ceff72 !important;
    color: #202226 !important;
    font-family: "Unbounded", Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
  }

  .tripdoc-html-block .pain-stack,
  .tripdoc-html-block .quiz-start .photo-fan,
  .tripdoc-html-block .trip-carousel,
  .tripdoc-html-block .moments-carousel,
  body > .page-grid .pain-stack,
  body > .page-grid .quiz-start .photo-fan,
  body > .page-grid .trip-carousel,
  body > .page-grid .moments-carousel {
    position: relative !important;
    background-color: transparent !important;
    background-image:
      linear-gradient(
        to right,
        #e8e8e8 0 var(--tripdoc-slider-start, 0%),
        #caff62 var(--tripdoc-slider-start, 0%) var(--tripdoc-slider-end, 25%),
        #e8e8e8 var(--tripdoc-slider-end, 25%) 100%
      ) !important;
    background-repeat: no-repeat !important;
    background-position: left 31px bottom !important;
    background-size: calc(100% - 62px) 4px !important;
  }

  .tripdoc-html-block .pain-stack::before,
  .tripdoc-html-block .pain-stack::after,
  .tripdoc-html-block .quiz-start .photo-fan::before,
  .tripdoc-html-block .quiz-start .photo-fan::after,
  .tripdoc-html-block .trip-carousel::before,
  .tripdoc-html-block .trip-carousel::after,
  .tripdoc-html-block .moments-carousel::before,
  .tripdoc-html-block .moments-carousel::after,
  body > .page-grid .pain-stack::before,
  body > .page-grid .pain-stack::after,
  body > .page-grid .quiz-start .photo-fan::before,
  body > .page-grid .quiz-start .photo-fan::after,
  body > .page-grid .trip-carousel::before,
  body > .page-grid .trip-carousel::after,
  body > .page-grid .moments-carousel::before,
  body > .page-grid .moments-carousel::after {
    display: none !important;
    content: none !important;
  }

  .tripdoc-html-block .familiar,
  body > .page-grid .familiar {
    min-height: 660px !important;
    height: auto !important;
    padding: 54px 0 42px !important;
    overflow: hidden !important;
  }

  .tripdoc-html-block .pain-stack,
  body > .page-grid .pain-stack {
    display: flex !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    margin: 34px 0 0 !important;
    padding: 0 31px 34px !important;
    gap: 12px !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
    transform: none !important;
  }

  .tripdoc-html-block .pain-stack .pain-card,
  body > .page-grid .pain-stack .pain-card {
    position: relative !important;
    inset: auto !important;
    flex: 0 0 328px !important;
    width: 328px !important;
    height: 328px !important;
    max-width: calc(100vw - 62px) !important;
    transform: none !important;
    opacity: 1 !important;
    scroll-snap-align: center !important;
  }

  .tripdoc-html-block .other-way,
  body > .page-grid .other-way {
    min-height: 1210px !important;
    height: auto !important;
    padding: 46px 0 50px !important;
    overflow: hidden !important;
  }

  .tripdoc-html-block .other-way .polaroids,
  body > .page-grid .other-way .polaroids {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    padding: 0 !important;
    gap: 28px !important;
  }

  .tripdoc-html-block .other-way .polaroid,
  body > .page-grid .other-way .polaroid {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .tripdoc-html-block .system,
  body > .page-grid .system {
    min-height: 1450px !important;
    height: auto !important;
    padding: 0 16px 42px !important;
    overflow: hidden !important;
    background: #fbfdff !important;
    color: #303033 !important;
  }

  .tripdoc-html-block .system .section-head,
  body > .page-grid .system .section-head {
    margin-bottom: 42px !important;
  }

  .tripdoc-html-block .step-line,
  body > .page-grid .step-line {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 358px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    gap: 0 !important;
  }

  .tripdoc-html-block .step-line::before,
  body > .page-grid .step-line::before {
    display: none !important;
  }

  .tripdoc-html-block .step-line li,
  body > .page-grid .step-line li {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 230px !important;
    padding: 0 0 72px !important;
    text-align: center !important;
    background: #fbfdff !important;
  }

  .tripdoc-html-block .step-line li:last-child,
  body > .page-grid .step-line li:last-child {
    min-height: 172px !important;
    padding-bottom: 0 !important;
  }

  .tripdoc-html-block .step-line li:not(:last-child)::after,
  body > .page-grid .step-line li:not(:last-child)::after {
    content: "\2193" !important;
    position: absolute !important;
    left: 50% !important;
    bottom: 16px !important;
    display: block !important;
    width: 1px !important;
    height: 56px !important;
    transform: translateX(-50%) !important;
    border-left: 2px dashed #b8b8b8 !important;
    color: #9d9d9d !important;
    font-size: 18px !important;
    line-height: 74px !important;
    background: none !important;
  }

  .tripdoc-html-block .step-line li:not(:last-child)::before,
  body > .page-grid .step-line li:not(:last-child)::before {
    display: none !important;
  }

  .tripdoc-html-block .step-icon,
  body > .page-grid .step-icon {
    width: 82px !important;
    height: 82px !important;
    margin: 0 0 14px !important;
    object-fit: contain !important;
  }

  .tripdoc-html-block .step-line li:nth-child(1) .step-icon,
  body > .page-grid .step-line li:nth-child(1) .step-icon {
    width: 76px !important;
    height: 76px !important;
  }

  .tripdoc-html-block .step-line h3,
  body > .page-grid .step-line h3 {
    margin: 0 0 6px !important;
    color: #303033 !important;
    font-family: "Unbounded", Arial, sans-serif !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 1.12 !important;
  }

  .tripdoc-html-block .step-line p,
  body > .page-grid .step-line p {
    max-width: 270px !important;
    margin: 0 auto !important;
    color: #6f6f73 !important;
    font-size: 13px !important;
    line-height: 1.18 !important;
  }

  .tripdoc-html-block .quiz-start .photo-fan,
  body > .page-grid .quiz-start .photo-fan,
  .tripdoc-html-block .trip-carousel,
  body > .page-grid .trip-carousel,
  .tripdoc-html-block .moments-carousel,
  body > .page-grid .moments-carousel {
    display: flex !important;
    width: 100% !important;
    max-width: none !important;
    padding: 0 31px 34px !important;
    gap: 12px !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
  }

  .tripdoc-html-block .quiz-start .photo-fan,
  body > .page-grid .quiz-start .photo-fan {
    margin: 34px 0 30px !important;
  }

  .tripdoc-html-block .photo-fan img,
  body > .page-grid .photo-fan img,
  .tripdoc-html-block .trip-carousel > *,
  body > .page-grid .trip-carousel > *,
  .tripdoc-html-block .moments-carousel img,
  body > .page-grid .moments-carousel img {
    scroll-snap-align: center !important;
  }

  .tripdoc-html-block .community,
  body > .page-grid .community {
    min-height: 1510px !important;
    height: auto !important;
    padding: 46px 16px 54px !important;
    overflow: hidden !important;
  }

  .tripdoc-html-block .mini-photo.e,
  body > .page-grid .mini-photo.e {
    right: 48px !important;
    bottom: 146px !important;
    transform: rotate(10deg) !important;
  }

  .tripdoc-html-block .decor-mountain,
  body > .page-grid .decor-mountain {
    right: 70px !important;
    bottom: 306px !important;
  }

  .tripdoc-html-block .decor-star-outline,
  body > .page-grid .decor-star-outline {
    right: 14px !important;
    top: 1060px !important;
  }

  .tdt-success-secondary {
    color: #202226 !important;
  }

  :is(.uc-tripdoc-trips, .tripdoc-trips, #rec2355046761) .t-store__card-list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    gap: 24px !important;
  }

  :is(.uc-tripdoc-trips, .tripdoc-trips, #rec2355046761) .t-store__card {
    grid-column: auto !important;
    grid-row: auto !important;
    width: min(348px, calc(100vw - 32px)) !important;
    max-width: 348px !important;
    margin: 0 auto !important;
    justify-self: center !important;
  }
}

/* 24-mobile-390-polish.css */
@media (max-width: 520px) {
  .tripdoc-html-block .site-header .logo,
  body > .site-header .logo {
    display: block !important;
    width: 126px !important;
    min-width: 126px !important;
    max-width: 126px !important;
    height: 36px !important;
    min-height: 36px !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
    overflow: hidden !important;
    background: url("https://static.tildacdn.com/tild3766-3666-4838-b832-643463646236/logo-tripdoc.png") left center / contain no-repeat !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .tripdoc-html-block .site-header .header-cta,
  body > .site-header .header-cta {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    color: #202226 !important;
    font-size: 13px !important;
    line-height: 1 !important;
  }

  .tripdoc-html-block .site-header .menu-toggle,
  body > .site-header .menu-toggle,
  .tdq-menu-button,
  .tdt-menu-button {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
  }

  .tripdoc-html-block .site-header .menu-toggle span,
  body > .site-header .menu-toggle span,
  .tdq-menu-button span,
  .tdt-menu-button span {
    position: absolute !important;
    left: 10px !important;
    display: block !important;
    width: 14px !important;
    height: 2px !important;
    border-radius: 2px !important;
    background: #202226 !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .tripdoc-html-block .site-header .menu-toggle span:nth-child(1),
  body > .site-header .menu-toggle span:nth-child(1),
  .tdq-menu-button span:nth-child(1),
  .tdt-menu-button span:nth-child(1) {
    top: 13px !important;
  }

  .tripdoc-html-block .site-header .menu-toggle span:nth-child(2),
  body > .site-header .menu-toggle span:nth-child(2),
  .tdq-menu-button span:nth-child(2),
  .tdt-menu-button span:nth-child(2) {
    top: 20px !important;
  }

  .tripdoc-html-block .site-header .menu-toggle span:nth-child(n + 3),
  body > .site-header .menu-toggle span:nth-child(n + 3),
  .tdq-menu-button span:nth-child(n + 3),
  .tdt-menu-button span:nth-child(n + 3) {
    display: none !important;
  }

  body.menu-open .tripdoc-html-block .site-header .menu-toggle span:nth-child(1),
  body.menu-open > .site-header .menu-toggle span:nth-child(1),
  .tdq-menu-button[aria-expanded="true"] span:nth-child(1),
  .tdt-menu-button[aria-expanded="true"] span:nth-child(1) {
    top: 17px !important;
    transform: rotate(45deg) !important;
  }

  body.menu-open .tripdoc-html-block .site-header .menu-toggle span:nth-child(2),
  body.menu-open > .site-header .menu-toggle span:nth-child(2),
  .tdq-menu-button[aria-expanded="true"] span:nth-child(2),
  .tdt-menu-button[aria-expanded="true"] span:nth-child(2) {
    top: 17px !important;
    transform: rotate(-45deg) !important;
  }

  .tripdoc-html-block .pain-stack .pain-card,
  body > .page-grid .pain-stack .pain-card {
    background-position: center !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
  }

  .tripdoc-html-block .pain-stack .pain-card span,
  .tripdoc-html-block .pain-stack .pain-card::before,
  .tripdoc-html-block .pain-stack .pain-card::after,
  body > .page-grid .pain-stack .pain-card span,
  body > .page-grid .pain-stack .pain-card::before,
  body > .page-grid .pain-stack .pain-card::after {
    display: none !important;
    content: none !important;
  }

  .tripdoc-html-block .pain-stack .pain-card.pain-card--dark,
  body > .page-grid .pain-stack .pain-card.pain-card--dark {
    background-image: url("https://static.tildacdn.com/tild6232-3663-4661-a339-383636643139/Card-1-tablet.png") !important;
  }

  .tripdoc-html-block .pain-stack .pain-card.pain-card--blue,
  body > .page-grid .pain-stack .pain-card.pain-card--blue {
    background-image: url("https://static.tildacdn.com/tild3761-3366-4161-a338-313536666261/Card-5-tablet.png") !important;
  }

  .tripdoc-html-block .pain-stack .pain-card.pain-card--lime,
  body > .page-grid .pain-stack .pain-card.pain-card--lime {
    background-image: url("https://static.tildacdn.com/tild6333-6161-4835-b536-393738323064/Card-4-tablet.png") !important;
  }

  .tripdoc-html-block .pain-stack .pain-card.pain-card--white,
  body > .page-grid .pain-stack .pain-card.pain-card--white {
    background-image: url("https://static.tildacdn.com/tild6565-6232-4731-b137-323635333133/Card-3-tablet.png") !important;
  }

  .tripdoc-html-block .pain-stack .pain-card.pain-card--purple,
  body > .page-grid .pain-stack .pain-card.pain-card--purple {
    background-image: url("https://static.tildacdn.com/tild3734-6334-4330-a132-323862613134/Card-2-tablet.png") !important;
  }

  .tripdoc-html-block .other-way,
  body > .page-grid .other-way {
    min-height: 1120px !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .tripdoc-html-block .other-way .polaroids,
  body > .page-grid .other-way .polaroids {
    align-items: center !important;
    justify-content: flex-start !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .tripdoc-html-block .other-way .polaroid,
  body > .page-grid .other-way .polaroid {
    left: auto !important;
    right: auto !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .tripdoc-html-block .system,
  body > .page-grid .system {
    min-height: 0 !important;
    padding-bottom: 18px !important;
  }

  .tripdoc-html-block .step-line li:last-child,
  body > .page-grid .step-line li:last-child {
    min-height: 96px !important;
    padding-bottom: 0 !important;
  }

  .tripdoc-html-block .quiz-start,
  body > .page-grid .quiz-start {
    margin-top: 0 !important;
  }

  .tdq-header {
    grid-template-columns: 126px 1fr 36px !important;
    width: calc(100% - 32px) !important;
    max-width: 358px !important;
    min-height: 54px !important;
    padding: 0 8px 0 16px !important;
    column-gap: 8px !important;
  }

  .tdq-logo,
  .tdq-logo img {
    width: 126px !important;
    min-width: 126px !important;
    max-width: 126px !important;
  }

  .tdq-header-button {
    width: 100% !important;
    min-width: 0 !important;
    height: 42px !important;
    padding: 0 12px !important;
    font-size: 13px !important;
    white-space: nowrap !important;
  }

  .tdq-menu-button {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
  }
}

/* 18-mobile-390-repair.css
   Mobile-only repair layer. Desktop/tablet rules stay untouched. */
@media (max-width: 520px) {
  html,
  body {
    background: #fbfdff !important;
  }

  .tripdoc-html-block,
  .tripdoc-html-block:has(.familiar),
  .tripdoc-html-block:has(.system),
  .tripdoc-html-block:has(.trips),
  .tripdoc-html-block:has(.moments),
  .tripdoc-html-block:has(.final-cta),
  .tripdoc-familiar-block,
  .tripdoc-system-block,
  .tripdoc-trips-block,
  .tripdoc-moments-block,
  .tripdoc-final-block,
  .tripdoc-html-block .familiar,
  .tripdoc-html-block .system,
  .tripdoc-html-block .trips,
  .tripdoc-html-block .moments,
  .tripdoc-html-block .final-cta,
  body > .page-grid .familiar,
  body > .page-grid .system,
  body > .page-grid .trips,
  body > .page-grid .moments,
  body > .page-grid .final-cta {
    background: #fbfdff !important;
    background-image: none !important;
  }

  .tripdoc-other-block,
  .tripdoc-quiz-start-block,
  .tripdoc-community-block,
  .tripdoc-founders-block,
  .tripdoc-html-block:has(.other-way),
  .tripdoc-html-block:has(.quiz-start),
  .tripdoc-html-block:has(.community),
  .tripdoc-html-block:has(.founders),
  .tripdoc-html-block .other-way,
  .tripdoc-html-block .quiz-start,
  .tripdoc-html-block .community,
  .tripdoc-html-block .founders,
  body > .page-grid .other-way,
  body > .page-grid .quiz-start,
  body > .page-grid .community,
  body > .page-grid .founders {
    background: #303033 !important;
    background-image: none !important;
  }

  .tripdoc-html-block .site-header,
  body > .site-header {
    position: absolute !important;
    top: 10px !important;
    left: 50% !important;
    z-index: 30 !important;
    display: grid !important;
    grid-template-columns: 1fr auto 36px !important;
    align-items: center !important;
    width: calc(100% - 32px) !important;
    max-width: 358px !important;
    min-height: 54px !important;
    margin: 0 !important;
    padding: 0 8px 0 16px !important;
    column-gap: 8px !important;
    transform: translateX(-50%) !important;
    border-radius: 29px !important;
    background: #fff !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14) !important;
  }

  .tripdoc-html-block .site-header .logo,
  body > .site-header .logo {
    width: 126px !important;
    min-width: 126px !important;
    max-width: 126px !important;
  }

  .tripdoc-html-block .site-header .logo img,
  body > .site-header .logo img {
    width: 126px !important;
    height: auto !important;
  }

  .tripdoc-html-block .site-header > .btn,
  .tripdoc-html-block .site-header > .header-cta,
  .tripdoc-html-block .site-header .header-cta,
  body > .site-header > .btn,
  body > .site-header > .header-cta,
  body > .site-header .header-cta {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 126px !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 13px !important;
    border: 0 !important;
    border-radius: 24px !important;
    background: #ceff72 !important;
    color: #202226 !important;
    font-family: "Unbounded", Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .tripdoc-html-block .site-header .menu-toggle,
  body > .site-header .menu-toggle {
    display: block !important;
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    padding: 0 !important;
    border: 1px solid rgba(48, 48, 51, 0.32) !important;
    border-radius: 50% !important;
    background: #fff !important;
    box-shadow: none !important;
  }

  .tripdoc-html-block .site-header .menu-toggle span,
  body > .site-header .menu-toggle span {
    left: 9px !important;
    width: 18px !important;
    height: 2px !important;
    border-radius: 2px !important;
    background: #202226 !important;
  }

  .tripdoc-html-block .site-header .menu-toggle span:nth-child(1),
  body > .site-header .menu-toggle span:nth-child(1) {
    top: 13px !important;
  }

  .tripdoc-html-block .site-header .menu-toggle span:nth-child(2),
  body > .site-header .menu-toggle span:nth-child(2) {
    top: 17px !important;
  }

  .tripdoc-html-block .site-header .menu-toggle span:nth-child(3),
  body > .site-header .menu-toggle span:nth-child(3) {
    top: 21px !important;
  }

  .tdq-header,
  .tdt-header {
    display: grid !important;
    grid-template-columns: 1fr auto 36px !important;
    align-items: center !important;
    width: calc(100% - 32px) !important;
    max-width: 358px !important;
    min-height: 54px !important;
    margin: 10px auto 0 !important;
    padding: 0 8px 0 16px !important;
    column-gap: 8px !important;
    border-radius: 29px !important;
    background: #fff !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10) !important;
  }

  .tdq-logo,
  .tdt-logo,
  .tdq-logo img,
  .tdt-logo img {
    width: 126px !important;
    min-width: 126px !important;
    max-width: 126px !important;
    height: auto !important;
  }

  .tdq-header-button,
  .tdt-header-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 126px !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 13px !important;
    border-radius: 24px !important;
    background: #ceff72 !important;
    color: #202226 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .tdq-menu-button,
  .tdt-menu-button {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    padding: 0 !important;
    border: 1px solid rgba(48, 48, 51, 0.32) !important;
    border-radius: 50% !important;
    background: #fff !important;
    box-shadow: none !important;
  }

  .tdq-menu-button span,
  .tdt-menu-button span {
    left: 9px !important;
    width: 18px !important;
    height: 2px !important;
    border-radius: 2px !important;
    background: #202226 !important;
  }

  .tdq-menu-button span:nth-child(1),
  .tdt-menu-button span:nth-child(1) {
    top: 13px !important;
  }

  .tdq-menu-button span:nth-child(2),
  .tdt-menu-button span:nth-child(2) {
    top: 17px !important;
  }

  .tdq-menu-button span:nth-child(3),
  .tdt-menu-button span:nth-child(3) {
    top: 21px !important;
  }

  .tdq-modal-close,
  .tdt-modal-close,
  .uc-tripdoc-cart .t706__cartwin-close {
    position: absolute !important;
    top: 16px !important;
    right: 16px !important;
    left: auto !important;
    z-index: 50 !important;
    display: grid !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    padding: 0 !important;
    place-items: center !important;
    transform: none !important;
    border: 1px solid rgba(48, 48, 51, 0.36) !important;
    border-radius: 50% !important;
    background: #fff !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 1 !important;
  }

  .tdq-modal-close::before,
  .tdq-modal-close::after,
  .tdt-modal-close::before,
  .tdt-modal-close::after,
  .uc-tripdoc-cart .t706__cartwin-close::before,
  .uc-tripdoc-cart .t706__cartwin-close::after {
    content: "" !important;
    position: absolute !important;
    width: 18px !important;
    height: 2px !important;
    border-radius: 2px !important;
    background: #303033 !important;
  }

  .tdq-modal-close::before,
  .tdt-modal-close::before,
  .uc-tripdoc-cart .t706__cartwin-close::before {
    transform: rotate(45deg) !important;
  }

  .tdq-modal-close::after,
  .tdt-modal-close::after,
  .uc-tripdoc-cart .t706__cartwin-close::after {
    transform: rotate(-45deg) !important;
  }

  .uc-tripdoc-cart .t706__cartwin-close-wrapper,
  .uc-tripdoc-cart .t706__cartwin-close-icon {
    opacity: 0 !important;
  }

  .tripdoc-html-block .familiar,
  body > .page-grid .familiar {
    height: auto !important;
    min-height: 544px !important;
    padding: 48px 0 36px !important;
    overflow: hidden !important;
  }

  .tripdoc-html-block .pain-stack,
  body > .page-grid .pain-stack {
    position: relative !important;
    display: flex !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    margin: 28px 0 0 !important;
    padding: 0 31px 22px !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
    transform: none !important;
  }

  .tripdoc-html-block .pain-stack::-webkit-scrollbar,
  body > .page-grid .pain-stack::-webkit-scrollbar {
    display: none !important;
  }

  .tripdoc-html-block .pain-stack .pain-card,
  body > .page-grid .pain-stack .pain-card {
    position: relative !important;
    inset: auto !important;
    flex: 0 0 328px !important;
    width: 328px !important;
    height: 328px !important;
    max-width: calc(100vw - 62px) !important;
    opacity: 1 !important;
    transform: none !important;
    scroll-snap-align: center !important;
    pointer-events: auto !important;
  }

  .tripdoc-html-block .pain-stack .pain-card span,
  .tripdoc-html-block .pain-stack .pain-card::after,
  body > .page-grid .pain-stack .pain-card span,
  body > .page-grid .pain-stack .pain-card::after {
    opacity: 1 !important;
  }

  .tripdoc-html-block .pain-stack::before,
  .tripdoc-html-block .quiz-start .photo-fan::before,
  .tripdoc-html-block .trip-carousel::before,
  .tripdoc-html-block .moments-carousel::before,
  body > .page-grid .pain-stack::before,
  body > .page-grid .quiz-start .photo-fan::before,
  body > .page-grid .trip-carousel::before,
  body > .page-grid .moments-carousel::before {
    content: "" !important;
    position: absolute !important;
    right: 31px !important;
    bottom: 0 !important;
    left: 31px !important;
    z-index: 20 !important;
    display: block !important;
    height: 4px !important;
    background: #e8e8e8 !important;
    pointer-events: none !important;
  }

  .tripdoc-html-block .pain-stack::after,
  .tripdoc-html-block .quiz-start .photo-fan::after,
  .tripdoc-html-block .trip-carousel::after,
  .tripdoc-html-block .moments-carousel::after,
  body > .page-grid .pain-stack::after,
  body > .page-grid .quiz-start .photo-fan::after,
  body > .page-grid .trip-carousel::after,
  body > .page-grid .moments-carousel::after {
    content: "" !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 31px !important;
    z-index: 21 !important;
    display: block !important;
    width: var(--tripdoc-slider-progress, 36%) !important;
    max-width: calc(100% - 62px) !important;
    height: 4px !important;
    background: #caff62 !important;
    pointer-events: none !important;
  }

  .tripdoc-html-block .other-way,
  body > .page-grid .other-way {
    height: auto !important;
    min-height: 1280px !important;
    padding: 46px 0 58px !important;
    overflow: hidden !important;
  }

  .tripdoc-html-block .other-way .section-head,
  body > .page-grid .other-way .section-head {
    margin-bottom: 24px !important;
  }

  .tripdoc-html-block .other-way .polaroids,
  body > .page-grid .other-way .polaroids {
    align-items: center !important;
    width: 100% !important;
    padding-left: 0 !important;
    gap: 28px !important;
  }

  .tripdoc-html-block .other-way .polaroid,
  body > .page-grid .other-way .polaroid {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .tripdoc-html-block .system,
  body > .page-grid .system {
    height: auto !important;
    min-height: 1532px !important;
    padding: 42px 16px 54px !important;
    color: #303033 !important;
  }

  .tripdoc-html-block .system .section-head,
  body > .page-grid .system .section-head {
    margin-bottom: 44px !important;
  }

  .tripdoc-html-block .quiz-start,
  body > .page-grid .quiz-start {
    height: auto !important;
    min-height: 0 !important;
    padding: 48px 0 48px !important;
  }

  .tripdoc-html-block .quiz-start .photo-fan,
  body > .page-grid .quiz-start .photo-fan {
    position: relative !important;
    display: flex !important;
    width: 100% !important;
    max-width: none !important;
    margin: 34px 0 30px !important;
    padding: 0 16px 20px !important;
    gap: 12px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
  }

  .tripdoc-html-block .quiz-start .photo-fan::-webkit-scrollbar,
  body > .page-grid .quiz-start .photo-fan::-webkit-scrollbar {
    display: none !important;
  }

  .tripdoc-html-block .photo-fan img,
  body > .page-grid .photo-fan img {
    position: static !important;
    flex: 0 0 356px !important;
    width: 356px !important;
    max-width: calc(100vw - 34px) !important;
    height: auto !important;
    transform: none !important;
    scroll-snap-align: center !important;
  }

  .tripdoc-html-block .trips,
  body > .page-grid .trips {
    height: auto !important;
    min-height: 0 !important;
    padding: 48px 0 44px !important;
    overflow: hidden !important;
  }

  .tripdoc-html-block .trip-carousel,
  body > .page-grid .trip-carousel {
    position: relative !important;
    display: flex !important;
    width: 100% !important;
    margin: 34px 0 28px !important;
    padding: 0 31px 20px !important;
    gap: 12px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
  }

  .tripdoc-html-block .trip-carousel::-webkit-scrollbar,
  body > .page-grid .trip-carousel::-webkit-scrollbar {
    display: none !important;
  }

  .tripdoc-html-block .trip-carousel > *,
  body > .page-grid .trip-carousel > * {
    flex: 0 0 328px !important;
    width: 328px !important;
    max-width: calc(100vw - 62px) !important;
    scroll-snap-align: center !important;
  }

  .tripdoc-html-block .community,
  body > .page-grid .community {
    height: auto !important;
    min-height: 1548px !important;
    padding: 46px 16px 54px !important;
    overflow: hidden !important;
  }

  .tripdoc-html-block .community-board,
  body > .page-grid .community-board {
    min-height: 1210px !important;
    margin-top: 28px !important;
  }

  .tripdoc-html-block .mini-photo.c,
  body > .page-grid .mini-photo.c,
  .tripdoc-html-block .mini-photo.d,
  body > .page-grid .mini-photo.d {
    bottom: 530px !important;
  }

  .tripdoc-html-block .mini-photo.e,
  body > .page-grid .mini-photo.e {
    right: 48px !important;
    bottom: 152px !important;
    transform: rotate(10deg) !important;
  }

  .tripdoc-html-block .decor-mountain,
  body > .page-grid .decor-mountain {
    right: 70px !important;
    bottom: 278px !important;
  }

  .tripdoc-html-block .decor-star-outline,
  body > .page-grid .decor-star-outline {
    right: 14px !important;
    top: 1028px !important;
  }

  .tripdoc-html-block .moments,
  body > .page-grid .moments {
    height: auto !important;
    min-height: 0 !important;
    padding: 46px 0 42px !important;
    overflow: hidden !important;
  }

  .tripdoc-html-block .moments-carousel,
  body > .page-grid .moments-carousel {
    position: relative !important;
    display: flex !important;
    width: 100% !important;
    margin: 30px 0 0 !important;
    padding: 0 26px 20px !important;
    gap: 12px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
  }

  .tripdoc-html-block .moments-carousel::-webkit-scrollbar,
  body > .page-grid .moments-carousel::-webkit-scrollbar {
    display: none !important;
  }

  .tripdoc-html-block .moments-carousel img,
  body > .page-grid .moments-carousel img {
    position: static !important;
    flex: 0 0 338px !important;
    width: 338px !important;
    max-width: calc(100vw - 52px) !important;
    height: 236px !important;
    object-fit: cover !important;
    transform: none !important;
    scroll-snap-align: center !important;
  }

  .tripdoc-html-block .final-cta,
  body > .page-grid .final-cta {
    height: auto !important;
    min-height: 286px !important;
    padding: 42px 16px 38px !important;
  }

  :is(.uc-tripdoc-trips, .tripdoc-trips, #rec2355046761) .t-store__card-list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    gap: 24px !important;
  }

:is(.uc-tripdoc-trips, .tripdoc-trips, #rec2355046761) .t-store__card {
  width: min(348px, calc(100vw - 32px)) !important;
  max-width: 348px !important;
  margin: 0 auto !important;
  justify-self: center !important;
  grid-column: auto !important;
  grid-row: auto !important;
}
}

/* 22-mobile-390-final-last.css */
@media (max-width: 520px) {
  html, body, #allrecords, .t-records, .t-rec, .t396, .t396__artboard,
  .t396__carrier, .t396__filter, .t-container, .t-container_100, .t-col,
  .t-store, .t-store__grid-cont, .t-store__card-list, .tdq-page-head,
  .tdq-intro, .tdt-page-head, .tdt-intro, .tripdoc-html-block, .page-grid {
    background-color: #fbfdff !important;
    background-image: none !important;
  }

  body::before, .page-grid::before, .t-rec::before, .t-rec::after,
  .t396::before, .t396::after, .t396__artboard::before, .t396__artboard::after,
  .t396__carrier::before, .t396__carrier::after, .tripdoc-html-block::before,
  .tripdoc-html-block::after {
    display: none !important;
    content: none !important;
    background: none !important;
    background-image: none !important;
  }

  .tripdoc-html-block:has(.other-way), .tripdoc-html-block:has(.quiz-start),
  .tripdoc-html-block:has(.community), .tripdoc-html-block:has(.founders),
  .tripdoc-html-block .other-way, .tripdoc-html-block .quiz-start,
  .tripdoc-html-block .community, .tripdoc-html-block .founders,
  body > .page-grid .other-way, body > .page-grid .quiz-start,
  body > .page-grid .community, body > .page-grid .founders {
    background-color: #303033 !important;
    background-image: none !important;
  }

  .tripdoc-html-block:has(.familiar), .tripdoc-html-block:has(.system),
  .tripdoc-html-block:has(.trips), .tripdoc-html-block:has(.moments),
  .tripdoc-html-block:has(.final-cta), .tripdoc-html-block .familiar,
  .tripdoc-html-block .system, .tripdoc-html-block .trips,
  .tripdoc-html-block .moments, .tripdoc-html-block .final-cta,
  body > .page-grid .familiar, body > .page-grid .system,
  body > .page-grid .trips, body > .page-grid .moments,
  body > .page-grid .final-cta {
    background-color: #fbfdff !important;
    background-image: none !important;
  }

  .tripdoc-html-block .site-header, body > .site-header,
  .tdq-header, .tdt-header {
    display: grid !important;
    grid-template-columns: 126px 1fr 36px !important;
    width: calc(100% - 32px) !important;
    max-width: 358px !important;
    min-height: 54px !important;
    margin: 10px auto 0 !important;
    padding: 0 8px 0 16px !important;
    column-gap: 8px !important;
    align-items: center !important;
    border-radius: 29px !important;
    background: #fff !important;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .16) !important;
  }

  .tripdoc-html-block .site-header .main-nav, body > .site-header .main-nav,
  .tdq-nav, .tdt-nav {
    display: none !important;
  }

  .tdq-nav.is-open, .tdt-nav.is-open {
    display: flex !important;
  }

  .tripdoc-html-block .site-header .logo, body > .site-header .logo,
  .tripdoc-html-block .site-header .logo img, body > .site-header .logo img,
  .tdq-logo, .tdt-logo, .tdq-logo img, .tdt-logo img {
    display: block !important;
    width: 126px !important;
    min-width: 126px !important;
    max-width: 126px !important;
    height: auto !important;
    overflow: hidden !important;
    color: transparent !important;
    font-size: 0 !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: left center !important;
  }

  .tripdoc-html-block .site-header .header-cta, body > .site-header .header-cta,
  .tdq-header-button, .tdt-header-button {
    display: flex !important;
    min-width: 0 !important;
    width: 100% !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 12px !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 24px !important;
    background: #ceff72 !important;
    color: #202226 !important;
    font-family: "Unbounded", Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .tripdoc-html-block .site-header .menu-toggle, body > .site-header .menu-toggle,
  .tdq-menu-button, .tdt-menu-button {
    display: block !important;
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    border: 1px solid rgba(48, 48, 51, .34) !important;
    border-radius: 50% !important;
    background: #fff !important;
  }

  .tripdoc-html-block .pain-stack, .tripdoc-html-block .quiz-start .photo-fan,
  .tripdoc-html-block .trip-carousel, .tripdoc-html-block .moments-carousel,
  body > .page-grid .pain-stack, body > .page-grid .quiz-start .photo-fan,
  body > .page-grid .trip-carousel, body > .page-grid .moments-carousel {
    position: relative !important;
    background-color: transparent !important;
    background-image: linear-gradient(to right, #e8e8e8 0 var(--tripdoc-slider-start, 0%), #caff62 var(--tripdoc-slider-start, 0%) var(--tripdoc-slider-end, 25%), #e8e8e8 var(--tripdoc-slider-end, 25%) 100%) !important;
    background-repeat: no-repeat !important;
    background-position: left 31px bottom !important;
    background-size: calc(100% - 62px) 4px !important;
  }

  .tripdoc-html-block .pain-stack::before, .tripdoc-html-block .pain-stack::after,
  .tripdoc-html-block .quiz-start .photo-fan::before, .tripdoc-html-block .quiz-start .photo-fan::after,
  .tripdoc-html-block .trip-carousel::before, .tripdoc-html-block .trip-carousel::after,
  .tripdoc-html-block .moments-carousel::before, .tripdoc-html-block .moments-carousel::after,
  body > .page-grid .pain-stack::before, body > .page-grid .pain-stack::after,
  body > .page-grid .quiz-start .photo-fan::before, body > .page-grid .quiz-start .photo-fan::after,
  body > .page-grid .trip-carousel::before, body > .page-grid .trip-carousel::after,
  body > .page-grid .moments-carousel::before, body > .page-grid .moments-carousel::after {
    display: none !important;
    content: none !important;
  }

  .tripdoc-html-block .familiar, body > .page-grid .familiar {
    min-height: 660px !important;
    height: auto !important;
    padding: 54px 0 42px !important;
    overflow: hidden !important;
  }

  .tripdoc-html-block .pain-stack, body > .page-grid .pain-stack {
    display: flex !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    margin: 34px 0 0 !important;
    padding: 0 31px 34px !important;
    gap: 12px !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
    transform: none !important;
  }

  .tripdoc-html-block .pain-stack .pain-card, body > .page-grid .pain-stack .pain-card {
    position: relative !important;
    inset: auto !important;
    flex: 0 0 328px !important;
    width: 328px !important;
    height: 328px !important;
    max-width: calc(100vw - 62px) !important;
    transform: none !important;
    opacity: 1 !important;
    scroll-snap-align: center !important;
  }

  .tripdoc-html-block .other-way, body > .page-grid .other-way {
    min-height: 1210px !important;
    height: auto !important;
    padding: 46px 0 50px !important;
    overflow: hidden !important;
  }

  .tripdoc-html-block .other-way .polaroids, body > .page-grid .other-way .polaroids {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    padding: 0 !important;
    gap: 28px !important;
  }

  .tripdoc-html-block .other-way .polaroid, body > .page-grid .other-way .polaroid {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .tripdoc-html-block .system, body > .page-grid .system {
    min-height: 1450px !important;
    height: auto !important;
    padding: 0 16px 42px !important;
    overflow: hidden !important;
    background: #fbfdff !important;
    color: #303033 !important;
  }

  .tripdoc-html-block .system .section-head, body > .page-grid .system .section-head {
    margin-bottom: 42px !important;
  }

  .tripdoc-html-block .step-line, body > .page-grid .step-line {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 358px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    gap: 0 !important;
  }

  .tripdoc-html-block .step-line::before, body > .page-grid .step-line::before {
    display: none !important;
  }

  .tripdoc-html-block .step-line li, body > .page-grid .step-line li {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 230px !important;
    padding: 0 0 72px !important;
    text-align: center !important;
    background: #fbfdff !important;
  }

  .tripdoc-html-block .step-line li:last-child, body > .page-grid .step-line li:last-child {
    min-height: 172px !important;
    padding-bottom: 0 !important;
  }

  .tripdoc-html-block .step-line li:not(:last-child)::after,
  body > .page-grid .step-line li:not(:last-child)::after {
    content: "\2193" !important;
    position: absolute !important;
    left: 50% !important;
    bottom: 16px !important;
    display: block !important;
    width: 1px !important;
    height: 56px !important;
    transform: translateX(-50%) !important;
    border-left: 2px dashed #b8b8b8 !important;
    color: #9d9d9d !important;
    font-size: 18px !important;
    line-height: 74px !important;
    background: none !important;
  }

  .tripdoc-html-block .step-line li:not(:last-child)::before,
  body > .page-grid .step-line li:not(:last-child)::before {
    display: none !important;
  }

  .tripdoc-html-block .step-icon, body > .page-grid .step-icon {
    width: 82px !important;
    height: 82px !important;
    margin: 0 0 14px !important;
    object-fit: contain !important;
  }

  .tripdoc-html-block .step-line h3, body > .page-grid .step-line h3 {
    margin: 0 0 6px !important;
    color: #303033 !important;
    font-family: "Unbounded", Arial, sans-serif !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 1.12 !important;
  }

  .tripdoc-html-block .step-line p, body > .page-grid .step-line p {
    max-width: 270px !important;
    margin: 0 auto !important;
    color: #6f6f73 !important;
    font-size: 13px !important;
    line-height: 1.18 !important;
  }

  .tripdoc-html-block .quiz-start .photo-fan, body > .page-grid .quiz-start .photo-fan,
  .tripdoc-html-block .trip-carousel, body > .page-grid .trip-carousel,
  .tripdoc-html-block .moments-carousel, body > .page-grid .moments-carousel {
    display: flex !important;
    width: 100% !important;
    max-width: none !important;
    padding: 0 31px 34px !important;
    gap: 12px !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
  }

  .tripdoc-html-block .quiz-start .photo-fan, body > .page-grid .quiz-start .photo-fan {
    margin: 34px 0 30px !important;
  }

  .tripdoc-html-block .photo-fan img, body > .page-grid .photo-fan img,
  .tripdoc-html-block .trip-carousel > *, body > .page-grid .trip-carousel > *,
  .tripdoc-html-block .moments-carousel img, body > .page-grid .moments-carousel img {
    scroll-snap-align: center !important;
  }

  .tripdoc-html-block .community, body > .page-grid .community {
    min-height: 1510px !important;
    height: auto !important;
    padding: 46px 16px 54px !important;
    overflow: hidden !important;
  }

  .tripdoc-html-block .mini-photo.e, body > .page-grid .mini-photo.e {
    right: 48px !important;
    bottom: 146px !important;
    transform: rotate(10deg) !important;
  }

  .tripdoc-html-block .decor-mountain, body > .page-grid .decor-mountain {
    right: 70px !important;
    bottom: 306px !important;
  }

  .tripdoc-html-block .decor-star-outline, body > .page-grid .decor-star-outline {
    right: 14px !important;
    top: 1060px !important;
  }

  .tdt-success-secondary {
    color: #202226 !important;
  }

  :is(.uc-tripdoc-trips, .tripdoc-trips, #rec2355046761) .t-store__card-list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    gap: 24px !important;
  }

  :is(.uc-tripdoc-trips, .tripdoc-trips, #rec2355046761) .t-store__card {
    grid-column: auto !important;
    grid-row: auto !important;
    width: min(348px, calc(100vw - 32px)) !important;
    max-width: 348px !important;
    margin: 0 auto !important;
    justify-self: center !important;
  }
}

/* 22-mobile-390-last-word.css */
@media (max-width: 520px) {
  html,
  body,
  #allrecords,
  .t-records,
  .t-rec,
  .t396,
  .t396__artboard,
  .t396__carrier,
  .t396__filter,
  .t-container,
  .t-container_100,
  .t-col,
  .t-store,
  .t-store__grid-cont,
  .t-store__card-list,
  .tdq-page-head,
  .tdq-intro,
  .tdt-page-head,
  .tdt-intro,
  .tripdoc-html-block,
  .page-grid {
    background: #fbfdff !important;
    background-image: none !important;
  }

  body::before,
  .page-grid::before,
  .t-rec::before,
  .t-rec::after,
  .t396::before,
  .t396::after,
  .t396__artboard::before,
  .t396__artboard::after,
  .t396__carrier::before,
  .t396__carrier::after,
  .tripdoc-html-block::before,
  .tripdoc-html-block::after {
    display: none !important;
    content: none !important;
    background: none !important;
    background-image: none !important;
  }

  .tripdoc-html-block .other-way,
  .tripdoc-html-block .quiz-start,
  .tripdoc-html-block .community,
  .tripdoc-html-block .founders,
  body > .page-grid .other-way,
  body > .page-grid .quiz-start,
  body > .page-grid .community,
  body > .page-grid .founders {
    background: #303033 !important;
  }

  .tripdoc-html-block .familiar,
  .tripdoc-html-block .system,
  .tripdoc-html-block .trips,
  .tripdoc-html-block .moments,
  .tripdoc-html-block .final-cta,
  body > .page-grid .familiar,
  body > .page-grid .system,
  body > .page-grid .trips,
  body > .page-grid .moments,
  body > .page-grid .final-cta {
    background: #fbfdff !important;
    background-image: none !important;
  }

  .tripdoc-html-block .site-header,
  body > .site-header,
  .tdq-header,
  .tdt-header {
    display: grid !important;
    grid-template-columns: 126px 1fr 36px !important;
    align-items: center !important;
    width: calc(100% - 32px) !important;
    max-width: 358px !important;
    min-height: 54px !important;
    padding: 0 8px 0 16px !important;
    column-gap: 8px !important;
    border-radius: 29px !important;
    background: #fff !important;
  }

  .tripdoc-html-block .site-header .main-nav,
  body > .site-header .main-nav,
  .tdq-nav,
  .tdt-nav {
    display: none !important;
  }

  .tdq-nav.is-open,
  .tdt-nav.is-open {
    display: flex !important;
  }

  .tripdoc-html-block .site-header .logo,
  body > .site-header .logo,
  .tdq-logo,
  .tdt-logo {
    width: 126px !important;
    min-width: 126px !important;
    max-width: 126px !important;
  }

  .tripdoc-html-block .site-header .header-cta,
  body > .site-header .header-cta,
  .tdq-header-button,
  .tdt-header-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 0 !important;
    width: 100% !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 12px !important;
    border-radius: 24px !important;
    background: #ceff72 !important;
    color: #202226 !important;
    font-family: "Unbounded", Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
  }

  .tripdoc-html-block .site-header .menu-toggle,
  body > .site-header .menu-toggle,
  .tdq-menu-button,
  .tdt-menu-button {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    border: 1px solid rgba(48, 48, 51, 0.34) !important;
    border-radius: 50% !important;
    background: #fff !important;
  }

  .tripdoc-html-block .pain-stack,
  .tripdoc-html-block .quiz-start .photo-fan,
  .tripdoc-html-block .trip-carousel,
  .tripdoc-html-block .moments-carousel,
  body > .page-grid .pain-stack,
  body > .page-grid .quiz-start .photo-fan,
  body > .page-grid .trip-carousel,
  body > .page-grid .moments-carousel {
    background:
      linear-gradient(
        to right,
        #e8e8e8 0 var(--tripdoc-slider-start, 0%),
        #caff62 var(--tripdoc-slider-start, 0%) var(--tripdoc-slider-end, 25%),
        #e8e8e8 var(--tripdoc-slider-end, 25%) 100%
      ) left 31px bottom / calc(100% - 62px) 4px no-repeat !important;
  }

  .tripdoc-html-block .pain-stack::before,
  .tripdoc-html-block .pain-stack::after,
  .tripdoc-html-block .quiz-start .photo-fan::before,
  .tripdoc-html-block .quiz-start .photo-fan::after,
  .tripdoc-html-block .trip-carousel::before,
  .tripdoc-html-block .trip-carousel::after,
  .tripdoc-html-block .moments-carousel::before,
  .tripdoc-html-block .moments-carousel::after,
  body > .page-grid .pain-stack::before,
  body > .page-grid .pain-stack::after,
  body > .page-grid .quiz-start .photo-fan::before,
  body > .page-grid .quiz-start .photo-fan::after,
  body > .page-grid .trip-carousel::before,
  body > .page-grid .trip-carousel::after,
  body > .page-grid .moments-carousel::before,
  body > .page-grid .moments-carousel::after {
    display: none !important;
    content: none !important;
  }

  .tripdoc-html-block .pain-stack,
  body > .page-grid .pain-stack,
  .tripdoc-html-block .quiz-start .photo-fan,
  body > .page-grid .quiz-start .photo-fan,
  .tripdoc-html-block .trip-carousel,
  body > .page-grid .trip-carousel,
  .tripdoc-html-block .moments-carousel,
  body > .page-grid .moments-carousel {
    display: flex !important;
    width: 100% !important;
    max-width: none !important;
    padding-right: 31px !important;
    padding-left: 31px !important;
    padding-bottom: 34px !important;
    gap: 12px !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
  }

  .tripdoc-html-block .pain-stack::-webkit-scrollbar,
  .tripdoc-html-block .quiz-start .photo-fan::-webkit-scrollbar,
  .tripdoc-html-block .trip-carousel::-webkit-scrollbar,
  .tripdoc-html-block .moments-carousel::-webkit-scrollbar,
  body > .page-grid .pain-stack::-webkit-scrollbar,
  body > .page-grid .quiz-start .photo-fan::-webkit-scrollbar,
  body > .page-grid .trip-carousel::-webkit-scrollbar,
  body > .page-grid .moments-carousel::-webkit-scrollbar {
    display: none !important;
  }

  .tripdoc-html-block .pain-stack .pain-card,
  body > .page-grid .pain-stack .pain-card {
    position: relative !important;
    inset: auto !important;
    flex: 0 0 328px !important;
    width: 328px !important;
    height: 328px !important;
    max-width: calc(100vw - 62px) !important;
    transform: none !important;
    opacity: 1 !important;
    scroll-snap-align: center !important;
  }

  .tripdoc-html-block .system,
  body > .page-grid .system {
    min-height: 1450px !important;
    height: auto !important;
    padding: 0 16px 42px !important;
    overflow: hidden !important;
    background: #fbfdff !important;
    color: #303033 !important;
  }

  .tripdoc-html-block .step-line,
  body > .page-grid .step-line {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    max-width: 358px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    gap: 0 !important;
  }

  .tripdoc-html-block .step-line::before,
  body > .page-grid .step-line::before,
  .tripdoc-html-block .step-line li:not(:last-child)::before,
  body > .page-grid .step-line li:not(:last-child)::before {
    display: none !important;
  }

  .tripdoc-html-block .step-line li,
  body > .page-grid .step-line li {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 230px !important;
    padding: 0 0 72px !important;
    text-align: center !important;
    background: #fbfdff !important;
  }

  .tripdoc-html-block .step-line li:last-child,
  body > .page-grid .step-line li:last-child {
    min-height: 172px !important;
    padding-bottom: 0 !important;
  }

  .tripdoc-html-block .step-line li:not(:last-child)::after,
  body > .page-grid .step-line li:not(:last-child)::after {
    content: "\2193" !important;
    position: absolute !important;
    left: 50% !important;
    bottom: 16px !important;
    display: block !important;
    width: 1px !important;
    height: 56px !important;
    transform: translateX(-50%) !important;
    border-left: 2px dashed #b8b8b8 !important;
    color: #9d9d9d !important;
    font-size: 18px !important;
    line-height: 74px !important;
    background: none !important;
  }

  .tripdoc-html-block .step-icon,
  body > .page-grid .step-icon {
    width: 82px !important;
    height: 82px !important;
    margin: 0 0 14px !important;
    object-fit: contain !important;
  }

  .tripdoc-html-block .step-line h3,
  body > .page-grid .step-line h3 {
    margin: 0 0 6px !important;
    color: #303033 !important;
    font-family: "Unbounded", Arial, sans-serif !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 1.12 !important;
  }

  .tripdoc-html-block .step-line p,
  body > .page-grid .step-line p {
    max-width: 270px !important;
    margin: 0 auto !important;
    color: #6f6f73 !important;
    font-size: 13px !important;
    line-height: 1.18 !important;
  }

  .tripdoc-html-block .other-way .polaroids,
  body > .page-grid .other-way .polaroids {
    align-items: center !important;
    padding-left: 0 !important;
  }

  .tripdoc-html-block .other-way .polaroid,
  body > .page-grid .other-way .polaroid {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .tripdoc-html-block .decor-mountain,
  body > .page-grid .decor-mountain {
    bottom: 306px !important;
  }

  .tripdoc-html-block .decor-star-outline,
  body > .page-grid .decor-star-outline {
    top: 1060px !important;
  }

  :is(.uc-tripdoc-trips, .tripdoc-trips, #rec2355046761) .t-store__card-list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    gap: 24px !important;
  }

  :is(.uc-tripdoc-trips, .tripdoc-trips, #rec2355046761) .t-store__card {
    grid-column: auto !important;
    grid-row: auto !important;
    width: min(348px, calc(100vw - 32px)) !important;
    max-width: 348px !important;
    margin: 0 auto !important;
    justify-self: center !important;
  }
}

/* 21-mobile-390-absolute-final.css
   This block must be last: 390px mobile fixes only. */
@media (max-width: 520px) {
  html,
  body,
  #allrecords,
  .t-records,
  .t-rec,
  .t396,
  .t396__artboard,
  .t396__carrier,
  .t396__filter,
  .t-container,
  .t-container_100,
  .t-col,
  .t-store,
  .t-store__grid-cont,
  .t-store__card-list,
  .tdq-page-head,
  .tdq-intro,
  .tdt-page-head,
  .tdt-intro,
  .tripdoc-html-block,
  .page-grid {
    background-color: #fbfdff !important;
    background-image: none !important;
  }

  body::before,
  .page-grid::before,
  .t-rec::before,
  .t-rec::after,
  .t396::before,
  .t396::after,
  .t396__artboard::before,
  .t396__artboard::after,
  .t396__carrier::before,
  .t396__carrier::after,
  .tripdoc-html-block::before,
  .tripdoc-html-block::after {
    display: none !important;
    content: none !important;
    background: none !important;
    background-image: none !important;
  }

  .tripdoc-html-block:has(.other-way),
  .tripdoc-html-block:has(.quiz-start),
  .tripdoc-html-block:has(.community),
  .tripdoc-html-block:has(.founders),
  .tripdoc-html-block .other-way,
  .tripdoc-html-block .quiz-start,
  .tripdoc-html-block .community,
  .tripdoc-html-block .founders,
  body > .page-grid .other-way,
  body > .page-grid .quiz-start,
  body > .page-grid .community,
  body > .page-grid .founders {
    background-color: #303033 !important;
    background-image: none !important;
  }

  .tripdoc-html-block:has(.familiar),
  .tripdoc-html-block:has(.system),
  .tripdoc-html-block:has(.trips),
  .tripdoc-html-block:has(.moments),
  .tripdoc-html-block:has(.final-cta),
  .tripdoc-html-block .familiar,
  .tripdoc-html-block .system,
  .tripdoc-html-block .trips,
  .tripdoc-html-block .moments,
  .tripdoc-html-block .final-cta,
  body > .page-grid .familiar,
  body > .page-grid .system,
  body > .page-grid .trips,
  body > .page-grid .moments,
  body > .page-grid .final-cta {
    background-color: #fbfdff !important;
    background-image: none !important;
  }

  .tripdoc-html-block .site-header,
  body > .site-header {
    display: grid !important;
    grid-template-columns: 126px 1fr 36px !important;
    width: calc(100% - 32px) !important;
    max-width: 358px !important;
    min-height: 54px !important;
    padding: 0 8px 0 16px !important;
    column-gap: 8px !important;
    align-items: center !important;
    border-radius: 29px !important;
    background: #fff !important;
  }

  .tripdoc-html-block .site-header .main-nav,
  body > .site-header .main-nav {
    display: none !important;
  }

  .tripdoc-html-block .site-header .logo,
  body > .site-header .logo,
  .tripdoc-html-block .site-header .logo img,
  body > .site-header .logo img {
    display: block !important;
    width: 126px !important;
    min-width: 126px !important;
    max-width: 126px !important;
    height: 36px !important;
    overflow: hidden !important;
    color: transparent !important;
    font-size: 0 !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: left center !important;
  }

  .tripdoc-html-block .site-header .header-cta,
  body > .site-header .header-cta {
    display: flex !important;
    min-width: 0 !important;
    width: 100% !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 12px !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 24px !important;
    background: #ceff72 !important;
    color: #202226 !important;
    font-family: "Unbounded", Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .tripdoc-html-block .site-header .menu-toggle,
  body > .site-header .menu-toggle,
  .tdq-menu-button,
  .tdt-menu-button {
    display: block !important;
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    border: 1px solid rgba(48, 48, 51, 0.34) !important;
    border-radius: 50% !important;
    background: #fff !important;
  }

  .tdq-header,
  .tdt-header {
    display: grid !important;
    grid-template-columns: 126px 1fr 36px !important;
    width: calc(100% - 32px) !important;
    max-width: 358px !important;
    min-height: 54px !important;
    margin: 10px auto 0 !important;
    padding: 0 8px 0 16px !important;
    column-gap: 8px !important;
    align-items: center !important;
    border-radius: 29px !important;
    background: #fff !important;
  }

  .tdq-nav,
  .tdt-nav {
    display: none !important;
  }

  .tdq-nav.is-open,
  .tdt-nav.is-open {
    display: flex !important;
  }

  .tdq-logo,
  .tdt-logo,
  .tdq-logo img,
  .tdt-logo img {
    width: 126px !important;
    min-width: 126px !important;
    max-width: 126px !important;
    height: auto !important;
  }

  .tdq-header-button,
  .tdt-header-button {
    display: flex !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 12px !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 24px !important;
    background: #ceff72 !important;
    color: #202226 !important;
    font-family: "Unbounded", Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
  }

  .tripdoc-html-block .pain-stack,
  .tripdoc-html-block .quiz-start .photo-fan,
  .tripdoc-html-block .trip-carousel,
  .tripdoc-html-block .moments-carousel,
  body > .page-grid .pain-stack,
  body > .page-grid .quiz-start .photo-fan,
  body > .page-grid .trip-carousel,
  body > .page-grid .moments-carousel {
    position: relative !important;
    background-color: transparent !important;
    background-image:
      linear-gradient(
        to right,
        #e8e8e8 0 var(--tripdoc-slider-start, 0%),
        #caff62 var(--tripdoc-slider-start, 0%) var(--tripdoc-slider-end, 25%),
        #e8e8e8 var(--tripdoc-slider-end, 25%) 100%
      ) !important;
    background-repeat: no-repeat !important;
    background-position: left 31px bottom !important;
    background-size: calc(100% - 62px) 4px !important;
  }

  .tripdoc-html-block .pain-stack::before,
  .tripdoc-html-block .pain-stack::after,
  .tripdoc-html-block .quiz-start .photo-fan::before,
  .tripdoc-html-block .quiz-start .photo-fan::after,
  .tripdoc-html-block .trip-carousel::before,
  .tripdoc-html-block .trip-carousel::after,
  .tripdoc-html-block .moments-carousel::before,
  .tripdoc-html-block .moments-carousel::after,
  body > .page-grid .pain-stack::before,
  body > .page-grid .pain-stack::after,
  body > .page-grid .quiz-start .photo-fan::before,
  body > .page-grid .quiz-start .photo-fan::after,
  body > .page-grid .trip-carousel::before,
  body > .page-grid .trip-carousel::after,
  body > .page-grid .moments-carousel::before,
  body > .page-grid .moments-carousel::after {
    display: none !important;
    content: none !important;
  }

  .tripdoc-html-block .familiar,
  body > .page-grid .familiar {
    min-height: 660px !important;
    height: auto !important;
    padding: 54px 0 42px !important;
    overflow: hidden !important;
  }

  .tripdoc-html-block .pain-stack,
  body > .page-grid .pain-stack {
    display: flex !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    margin: 34px 0 0 !important;
    padding: 0 31px 34px !important;
    gap: 12px !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
    transform: none !important;
  }

  .tripdoc-html-block .pain-stack .pain-card,
  body > .page-grid .pain-stack .pain-card {
    position: relative !important;
    inset: auto !important;
    flex: 0 0 328px !important;
    width: 328px !important;
    height: 328px !important;
    max-width: calc(100vw - 62px) !important;
    transform: none !important;
    opacity: 1 !important;
    scroll-snap-align: center !important;
  }

  .tripdoc-html-block .other-way,
  body > .page-grid .other-way {
    min-height: 1210px !important;
    height: auto !important;
    padding: 46px 0 50px !important;
    overflow: hidden !important;
  }

  .tripdoc-html-block .other-way .polaroids,
  body > .page-grid .other-way .polaroids {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    padding: 0 !important;
    gap: 28px !important;
  }

  .tripdoc-html-block .other-way .polaroid,
  body > .page-grid .other-way .polaroid {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .tripdoc-html-block .system,
  body > .page-grid .system {
    min-height: 1450px !important;
    height: auto !important;
    padding: 0 16px 42px !important;
    overflow: hidden !important;
    background: #fbfdff !important;
    color: #303033 !important;
  }

  .tripdoc-html-block .system .section-head,
  body > .page-grid .system .section-head {
    margin-bottom: 42px !important;
  }

  .tripdoc-html-block .step-line,
  body > .page-grid .step-line {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 358px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    gap: 0 !important;
  }

  .tripdoc-html-block .step-line::before,
  body > .page-grid .step-line::before {
    display: none !important;
  }

  .tripdoc-html-block .step-line li,
  body > .page-grid .step-line li {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 230px !important;
    padding: 0 0 72px !important;
    text-align: center !important;
    background: #fbfdff !important;
  }

  .tripdoc-html-block .step-line li:last-child,
  body > .page-grid .step-line li:last-child {
    min-height: 172px !important;
    padding-bottom: 0 !important;
  }

  .tripdoc-html-block .step-line li:not(:last-child)::after,
  body > .page-grid .step-line li:not(:last-child)::after {
    content: "\2193" !important;
    position: absolute !important;
    left: 50% !important;
    bottom: 16px !important;
    display: block !important;
    width: 1px !important;
    height: 56px !important;
    transform: translateX(-50%) !important;
    border-left: 2px dashed #b8b8b8 !important;
    color: #9d9d9d !important;
    font-size: 18px !important;
    line-height: 74px !important;
    background: none !important;
  }

  .tripdoc-html-block .step-line li:not(:last-child)::before,
  body > .page-grid .step-line li:not(:last-child)::before {
    display: none !important;
  }

  .tripdoc-html-block .step-icon,
  body > .page-grid .step-icon {
    width: 82px !important;
    height: 82px !important;
    margin: 0 0 14px !important;
    object-fit: contain !important;
  }

  .tripdoc-html-block .step-line li:nth-child(1) .step-icon,
  body > .page-grid .step-line li:nth-child(1) .step-icon {
    width: 76px !important;
    height: 76px !important;
  }

  .tripdoc-html-block .step-line h3,
  body > .page-grid .step-line h3 {
    margin: 0 0 6px !important;
    color: #303033 !important;
    font-family: "Unbounded", Arial, sans-serif !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 1.12 !important;
  }

  .tripdoc-html-block .step-line p,
  body > .page-grid .step-line p {
    max-width: 270px !important;
    margin: 0 auto !important;
    color: #6f6f73 !important;
    font-size: 13px !important;
    line-height: 1.18 !important;
  }

  .tripdoc-html-block .quiz-start .photo-fan,
  body > .page-grid .quiz-start .photo-fan,
  .tripdoc-html-block .trip-carousel,
  body > .page-grid .trip-carousel,
  .tripdoc-html-block .moments-carousel,
  body > .page-grid .moments-carousel {
    display: flex !important;
    width: 100% !important;
    max-width: none !important;
    padding: 0 31px 34px !important;
    gap: 12px !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
  }

  .tripdoc-html-block .quiz-start .photo-fan,
  body > .page-grid .quiz-start .photo-fan {
    margin: 34px 0 30px !important;
  }

  .tripdoc-html-block .photo-fan img,
  body > .page-grid .photo-fan img,
  .tripdoc-html-block .trip-carousel > *,
  body > .page-grid .trip-carousel > *,
  .tripdoc-html-block .moments-carousel img,
  body > .page-grid .moments-carousel img {
    scroll-snap-align: center !important;
  }

  .tripdoc-html-block .community,
  body > .page-grid .community {
    min-height: 1510px !important;
    height: auto !important;
    padding: 46px 16px 54px !important;
    overflow: hidden !important;
  }

  .tripdoc-html-block .mini-photo.e,
  body > .page-grid .mini-photo.e {
    right: 48px !important;
    bottom: 146px !important;
    transform: rotate(10deg) !important;
  }

  .tripdoc-html-block .decor-mountain,
  body > .page-grid .decor-mountain {
    right: 70px !important;
    bottom: 306px !important;
  }

  .tripdoc-html-block .decor-star-outline,
  body > .page-grid .decor-star-outline {
    right: 14px !important;
    top: 1060px !important;
  }

  .tdt-success-secondary {
    color: #202226 !important;
  }

  :is(.uc-tripdoc-trips, .tripdoc-trips, #rec2355046761) .t-store__card-list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    gap: 24px !important;
  }

  :is(.uc-tripdoc-trips, .tripdoc-trips, #rec2355046761) .t-store__card {
    grid-column: auto !important;
    grid-row: auto !important;
    width: min(348px, calc(100vw - 32px)) !important;
    max-width: 348px !important;
    margin: 0 auto !important;
    justify-self: center !important;
  }
}

.tripdoc-html-block .btn {
  transform: none !important;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease !important;
}

.tripdoc-html-block .btn:hover,
.tripdoc-html-block .btn:focus-visible {
  transform: none !important;
}

.tripdoc-html-block .btn-primary:hover,
.tripdoc-html-block .btn-primary:focus-visible {
  color: #fff !important;
  background: #202020 !important;
}

.tripdoc-html-block .btn span[aria-hidden="true"] {
  width: 1.1em !important;
  margin-left: 6px !important;
  font-size: 0 !important;
  transform: none !important;
}

.tripdoc-html-block .btn span[aria-hidden="true"]::before {
  content: "\2197";
  font-size: 23px;
  line-height: 1;
}

.tripdoc-html-block .btn:hover span[aria-hidden="true"]::before,
.tripdoc-html-block .btn:focus-visible span[aria-hidden="true"]::before {
  content: "\2192";
}

.tripdoc-html-block .main-nav a,
.tripdoc-html-block .site-footer nav a,
.tripdoc-html-block .footer-bottom a {
  transition: color 140ms ease !important;
}

.tripdoc-html-block .site-header .main-nav a:hover,
.tripdoc-html-block .site-header .main-nav a:focus-visible,
.tripdoc-html-block .site-footer nav a:hover,
.tripdoc-html-block .site-footer nav a:focus-visible,
.tripdoc-html-block .footer-bottom a:hover,
.tripdoc-html-block .footer-bottom a:focus-visible {
  color: var(--blue) !important;
}

.tripdoc-html-block .polaroid,
.tripdoc-html-block .mini-photo,
.tripdoc-html-block .moments-grid img,
.tripdoc-html-block .founder-card {
  transition: none !important;
}

.tripdoc-html-block .polaroid:hover,
.tripdoc-html-block .polaroid:focus-within,
.tripdoc-html-block .moments-grid img:hover,
.tripdoc-html-block .founder-card:hover {
  transform: none;
  box-shadow: inherit;
}

.tripdoc-html-block .polaroid.tilt-left:hover { transform: rotate(-12deg); }
.tripdoc-html-block .polaroid.tilt-right:hover { transform: rotate(12deg); }
.tripdoc-html-block .mini-photo.a:hover { transform: rotate(-12deg); }
.tripdoc-html-block .mini-photo.b:hover { transform: rotate(13deg); }
.tripdoc-html-block .mini-photo.c:hover { transform: rotate(-10deg); }
.tripdoc-html-block .mini-photo.d:hover { transform: rotate(12deg); }
.tripdoc-html-block .mini-photo.e:hover { transform: rotate(10deg); }

.tripdoc-html-block .reveal,
.tripdoc-html-block .reveal.is-visible {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.tripdoc-html-block .pain-stack {
  overflow: visible !important;
  background: none !important;
  cursor: pointer;
  outline: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: none !important;
}

.tripdoc-html-block .pain-stack:hover,
.tripdoc-html-block .pain-stack:focus-visible {
  transform: none !important;
}

.tripdoc-html-block .pain-stack:focus-visible {
  outline: none;
}

.tripdoc-html-block .pain-stack .pain-card {
  --pain-bg: rgba(46, 46, 46, 0.88);
  --pain-ink: #fff;
  --pain-line: rgba(255, 255, 255, 0.82);
  --pain-brush: var(--purple);
  top: 65.5px;
  left: 93.85px;
  display: grid;
  width: 440px;
  height: 555px;
  opacity: 1;
  color: var(--pain-ink);
  background-color: var(--pain-bg);
  background-image: url("https://static.tildacdn.com/tild3733-6366-4634-b663-383732623666/paper.webp");
  background-position: center;
  background-size: cover;
  background-blend-mode: soft-light;
  border: 1px solid var(--pain-line);
  pointer-events: none;
  transition:
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1) !important;
  will-change: transform, opacity;
}

.tripdoc-html-block .pain-stack .pain-card.pain-card--blue {
  --pain-bg: rgba(1, 115, 253, 0.94);
  --pain-line: var(--lime);
  --pain-brush: var(--lime);
}

.tripdoc-html-block .pain-stack .pain-card.pain-card--lime {
  --pain-bg: rgba(206, 255, 114, 0.95);
  --pain-ink: var(--dark);
  --pain-line: var(--blue);
  --pain-brush: var(--blue);
}

.tripdoc-html-block .pain-stack .pain-card.pain-card--white {
  --pain-bg: rgba(251, 253, 255, 0.96);
  --pain-ink: var(--dark);
  --pain-line: var(--purple);
  --pain-brush: var(--purple);
}

.tripdoc-html-block .pain-stack .pain-card.pain-card--purple {
  --pain-bg: rgba(218, 157, 255, 0.95);
  --pain-line: #fff;
  --pain-brush: #fff;
}

.tripdoc-html-block .pain-stack .pain-card::before {
  opacity: 1 !important;
  border-color: var(--pain-line);
}

.tripdoc-html-block .pain-stack .pain-card::after {
  opacity: 0;
  background: var(--pain-brush);
  -webkit-mask: url("https://static.tildacdn.com/tild6466-6230-4335-b065-633530386664/brush.svg") center / contain no-repeat;
  mask: url("https://static.tildacdn.com/tild6466-6230-4335-b065-633530386664/brush.svg") center / contain no-repeat;
}

.tripdoc-html-block .pain-stack .pain-card span {
  opacity: 0;
  transition: opacity 220ms ease 120ms;
}

.tripdoc-html-block .pain-stack .pain-card[data-depth="0"] { z-index: 5; transform: translate(0, 0) rotate(0deg); }
.tripdoc-html-block .pain-stack .pain-card[data-depth="1"] { z-index: 4; transform: translate(31px, -10px) rotate(7deg); }
.tripdoc-html-block .pain-stack .pain-card[data-depth="2"] { z-index: 3; transform: translate(45px, 2px) rotate(13deg); }
.tripdoc-html-block .pain-stack .pain-card[data-depth="3"] { z-index: 2; transform: translate(-34px, -10px) rotate(-9deg); }
.tripdoc-html-block .pain-stack .pain-card[data-depth="4"] { z-index: 1; transform: translate(-62px, 8px) rotate(-16deg); }

.tripdoc-html-block .pain-stack .pain-card[data-depth="0"] span,
.tripdoc-html-block .pain-stack .pain-card[data-depth="0"]::after,
.tripdoc-html-block .pain-stack .pain-card.is-exiting span,
.tripdoc-html-block .pain-stack .pain-card.is-exiting::after {
  opacity: 1;
}

.tripdoc-html-block .pain-stack .pain-card.is-exiting {
  z-index: 10;
  opacity: 0;
  transform: translateY(-118%) rotate(-9deg) !important;
}

@media (max-width: 1080px) {
  .tripdoc-html-block .pain-stack {
    width: min(587px, calc(100vw - 80px));
    height: auto;
    aspect-ratio: 587 / 596;
  }

  .tripdoc-html-block .pain-stack .pain-card {
    top: 11.75% !important;
    left: 12.52% !important;
    width: 74.96%;
    height: 76.52% !important;
    padding: 0;
    border-radius: clamp(18px, 3vw, 28px);
    font-size: clamp(20px, 3vw, 30px);
  }

  .tripdoc-html-block .pain-stack .pain-card::before {
    inset: 7%;
    border-radius: clamp(14px, 2.5vw, 24px);
  }

  .tripdoc-html-block .pain-stack .pain-card::after {
    left: 12%;
    bottom: 18%;
    width: 76%;
    height: 8%;
  }

  .tripdoc-html-block .pain-stack .pain-card span {
    position: absolute;
    top: 45%;
    left: 10%;
    width: 80%;
    transform: translateY(-50%);
  }
}

@media (max-width: 760px) {
  .tripdoc-html-block .pain-stack {
    width: min(372px, calc(100vw - 18px));
    max-width: 100%;
    aspect-ratio: 587 / 596;
    overflow: visible !important;
  }

  .tripdoc-html-block .pain-stack .pain-card,
  .tripdoc-html-block .pain-stack .pain-card:nth-child(n + 2) {
    display: grid !important;
    top: 11.75% !important;
    left: 12.52% !important;
    width: 74.96% !important;
    height: 76.52% !important;
    padding: 0 !important;
    min-width: 0;
    font-size: clamp(15px, 4.8vw, 20px);
    line-height: 1.16;
    transform-origin: center;
  }

  .tripdoc-html-block .pain-stack .pain-card[data-depth="1"] { transform: translate(5%, -2%) rotate(7deg) !important; }
  .tripdoc-html-block .pain-stack .pain-card[data-depth="2"] { transform: translate(8%, 0) rotate(13deg) !important; }
  .tripdoc-html-block .pain-stack .pain-card[data-depth="3"] { transform: translate(-6%, -2%) rotate(-9deg) !important; }
  .tripdoc-html-block .pain-stack .pain-card[data-depth="4"] { transform: translate(-11%, 1%) rotate(-16deg) !important; }
  .tripdoc-html-block .pain-stack .pain-card[data-depth="0"] { transform: translate(0, 0) rotate(0deg) !important; }
  .tripdoc-html-block .pain-stack .pain-card.is-exiting { transform: translateY(-118%) rotate(-9deg) !important; }
}

/* Exact card artwork hosted on Tilda CDN. */
.tripdoc-html-block .pain-stack .pain-card {
  border: 0 !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important;
  background-blend-mode: normal !important;
  box-shadow: none !important;
}

.tripdoc-html-block .pain-stack .pain-card::before,
.tripdoc-html-block .pain-stack .pain-card::after {
  display: none !important;
}

.tripdoc-html-block .pain-stack .pain-card span,
.tripdoc-html-block .pain-stack .pain-card[data-depth="0"] span,
.tripdoc-html-block .pain-stack .pain-card.is-exiting span {
  opacity: 0 !important;
}

.tripdoc-html-block .pain-stack .pain-card.pain-card--dark {
  background-image: url("https://static.tildacdn.com/tild3332-6336-4865-b431-613136383862/Card-1.png") !important;
}

.tripdoc-html-block .pain-stack .pain-card.pain-card--blue {
  background-image: url("https://static.tildacdn.com/tild6666-3065-4665-b439-373663376638/Card-2.png") !important;
}

.tripdoc-html-block .pain-stack .pain-card.pain-card--lime {
  background-image: url("https://static.tildacdn.com/tild3238-3636-4535-b463-633631343234/Card-3.png") !important;
}

.tripdoc-html-block .pain-stack .pain-card.pain-card--white {
  background-image: url("https://static.tildacdn.com/tild6662-6464-4264-b138-323337636165/Card-4.png") !important;
}

.tripdoc-html-block .pain-stack .pain-card.pain-card--purple {
  background-image: url("https://static.tildacdn.com/tild3839-6332-4161-a536-643634303134/Card-5.png") !important;
}

@media (max-width: 1080px) {
  .tripdoc-html-block .pain-stack .pain-card.pain-card--dark {
    background-image: url("https://static.tildacdn.com/tild6232-3663-4661-a339-383636643139/Card-1-tablet.png") !important;
  }

  .tripdoc-html-block .pain-stack .pain-card.pain-card--blue {
    background-image: url("https://static.tildacdn.com/tild3734-6334-4330-a132-323862613134/Card-2-tablet.png") !important;
  }

  .tripdoc-html-block .pain-stack .pain-card.pain-card--lime {
    background-image: url("https://static.tildacdn.com/tild6565-6232-4731-b137-323635333133/Card-3-tablet.png") !important;
  }

  .tripdoc-html-block .pain-stack .pain-card.pain-card--white {
    background-image: url("https://static.tildacdn.com/tild6333-6161-4835-b536-393738323064/Card-4-tablet.png") !important;
  }

  .tripdoc-html-block .pain-stack .pain-card.pain-card--purple {
    background-image: url("https://static.tildacdn.com/tild3761-3366-4161-a338-313536666261/Card-5-tablet.png") !important;
  }
}

/*
 * TRIPDOC homepage responsive layer.
 * Append-only and scoped: catalog, cart and modal layouts are intentionally untouched.
 */

.tripdoc-html-block .trip-carousel,
body > .page-grid .trip-carousel,
.tripdoc-html-block .moments-carousel,
body > .page-grid .moments-carousel {
  display: contents;
}

/* Final 390 px polish: keep this at the end of the responsive layer. */
@media (max-width: 760px) {
  .tripdoc-html-block .site-header,
  body > .site-header {
    width: calc(100% - 32px) !important;
    max-width: 358px !important;
    min-height: 44px !important;
    margin: 0 auto -52px !important;
    padding: 0 6px 0 14px !important;
    border-radius: 24px !important;
  }

  .tripdoc-html-block .site-header .logo,
  body > .site-header .logo {
    flex: 0 0 126px !important;
    width: 126px !important;
    height: 31px !important;
  }

  .tripdoc-html-block .site-header > .header-cta,
  .tripdoc-html-block .site-header > .btn.header-cta,
  .tripdoc-html-block .tripdoc-header-hero-block .site-header > .header-cta,
  body > .site-header > .header-cta,
  body > .site-header > .btn.header-cta {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    min-width: 0 !important;
    max-width: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
  }

  .tripdoc-html-block .menu-toggle,
  body > .site-header .menu-toggle {
    flex: 0 0 36px !important;
    margin-left: auto !important;
  }

  .tripdoc-html-block .pain-stack,
  body > .page-grid .pain-stack {
    width: min(410px, calc(100vw + 28px)) !important;
    height: auto !important;
    aspect-ratio: 587 / 596 !important;
    margin: -42px 0 0 50% !important;
    transform: translateX(-50%) !important;
  }

  .tripdoc-html-block .other-way,
  .tripdoc-html-block .quiz-start,
  .tripdoc-html-block .community,
  .tripdoc-html-block .founders,
  body > .page-grid .other-way,
  body > .page-grid .quiz-start,
  body > .page-grid .community,
  body > .page-grid .founders {
    background: var(--dark) !important;
  }

  .tripdoc-html-block .other-way .section-head,
  body > .page-grid .other-way .section-head {
    margin-bottom: 44px !important;
  }

  .tripdoc-html-block .polaroids,
  body > .page-grid .polaroids {
    align-items: center !important;
    gap: 18px !important;
    padding-left: 18px !important;
  }

  .tripdoc-html-block .other-way .polaroid,
  body > .page-grid .other-way .polaroid {
    position: relative !important;
  }

  .tripdoc-html-block .other-way .polaroid::before,
  body > .page-grid .other-way .polaroid::before {
    content: "" !important;
    position: absolute !important;
    left: 50% !important;
    top: -29px !important;
    z-index: 4 !important;
    width: 20px !important;
    height: 38px !important;
    background: url("https://static.tildacdn.com/tild3533-3437-4638-a335-633965663765/pin.png") center / contain no-repeat !important;
    transform: translateX(-50%) rotate(0deg) !important;
  }

  .tripdoc-html-block .polaroid:nth-child(1),
  body > .page-grid .polaroid:nth-child(1) {
    margin-left: 8px !important;
  }

  .tripdoc-html-block .polaroid:nth-child(2),
  body > .page-grid .polaroid:nth-child(2) {
    margin-left: 36px !important;
  }

  .tripdoc-html-block .polaroid:nth-child(3),
  body > .page-grid .polaroid:nth-child(3) {
    margin-left: 10px !important;
  }

  .tripdoc-html-block .quiz-start .photo-fan,
  .tripdoc-html-block .trip-carousel,
  .tripdoc-html-block .moments-carousel,
  body > .page-grid .quiz-start .photo-fan,
  body > .page-grid .trip-carousel,
  body > .page-grid .moments-carousel {
    border-bottom: 0 !important;
    background:
      linear-gradient(#caff62, #caff62) left bottom / 38% 4px no-repeat,
      linear-gradient(#fff, #fff) left bottom / 100% 4px no-repeat !important;
  }

  .tripdoc-html-block .quiz-start .photo-fan::after,
  .tripdoc-html-block .trip-carousel::after,
  .tripdoc-html-block .moments-carousel::after,
  body > .page-grid .quiz-start .photo-fan::after,
  body > .page-grid .trip-carousel::after,
  body > .page-grid .moments-carousel::after {
    display: none !important;
  }

  .tripdoc-html-block .decor-heart-small,
  body > .page-grid .decor-heart-small {
    right: 12px !important;
    top: 242px !important;
  }

  .tripdoc-html-block .decor-skis,
  body > .page-grid .decor-skis {
    right: 18px !important;
    top: 2px !important;
  }

  .tripdoc-html-block .decor-star-outline,
  body > .page-grid .decor-star-outline {
    right: 24px !important;
    top: 962px !important;
  }

  .tripdoc-html-block .decor-mountain,
  body > .page-grid .decor-mountain {
    right: 60px !important;
    bottom: 232px !important;
  }

  .tripdoc-html-block .mini-photo.c,
  body > .page-grid .mini-photo.c {
    bottom: 386px !important;
  }

  .tripdoc-html-block .mini-photo.d,
  body > .page-grid .mini-photo.d {
    bottom: 386px !important;
  }
}

/* 390 px absolute-last overrides. Keep below every older mobile rule. */
@media (max-width: 430px) {
  .tripdoc-familiar-block,
  .tripdoc-other-block,
  .tripdoc-system-block,
  .tripdoc-quiz-start-block,
  .tripdoc-trips-block,
  .tripdoc-community-block,
  .tripdoc-moments-block,
  .tripdoc-founders-block,
  .tripdoc-final-block,
  .tripdoc-html-block:has(.familiar),
  .tripdoc-html-block:has(.other-way),
  .tripdoc-html-block:has(.system),
  .tripdoc-html-block:has(.quiz-start),
  .tripdoc-html-block:has(.trips),
  .tripdoc-html-block:has(.community),
  .tripdoc-html-block:has(.moments),
  .tripdoc-html-block:has(.founders),
  .tripdoc-html-block:has(.final-cta) {
    margin-top: 0 !important;
  }

  .tripdoc-html-block .site-header,
  body > .site-header {
    top: 10px !important;
    width: calc(100% - 32px) !important;
    max-width: 358px !important;
    min-height: 44px !important;
    margin: 0 auto -52px !important;
    padding: 0 6px 0 16px !important;
    border-radius: 24px !important;
  }

  .tripdoc-html-block .site-header .logo,
  body > .site-header .logo {
    flex: 0 0 126px !important;
    width: 126px !important;
    height: 31px !important;
  }

  .tripdoc-html-block .site-header > .btn,
  .tripdoc-html-block .site-header .header-cta,
  body > .site-header > .btn,
  body > .site-header .header-cta {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    min-width: 0 !important;
    max-width: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
  }

  .tripdoc-html-block .site-header .menu-toggle,
  body > .site-header .menu-toggle {
    display: grid !important;
    flex: 0 0 36px !important;
    width: 36px !important;
    height: 36px !important;
    margin-left: auto !important;
  }

  .tripdoc-html-block .familiar,
  body > .page-grid .familiar {
    min-height: 443px !important;
    height: 443px !important;
    background: var(--dark, #2e2e2e) !important;
  }

  .tripdoc-html-block .pain-stack,
  body > .page-grid .pain-stack {
    width: min(410px, calc(100vw + 30px)) !important;
    max-width: none !important;
    height: auto !important;
    aspect-ratio: 587 / 596 !important;
    margin: -42px 0 0 50% !important;
    overflow: visible !important;
    transform: translateX(-50%) !important;
  }

  .tripdoc-html-block .other-way,
  .tripdoc-html-block .quiz-start,
  .tripdoc-html-block .community,
  .tripdoc-html-block .founders,
  body > .page-grid .other-way,
  body > .page-grid .quiz-start,
  body > .page-grid .community,
  body > .page-grid .founders {
    background: #2d2d2d !important;
  }

  .tripdoc-html-block .other-way .polaroids,
  body > .page-grid .other-way .polaroids {
    align-items: center !important;
    padding-left: 22px !important;
    gap: 18px !important;
  }

  .tripdoc-html-block .other-way .polaroid:nth-child(1),
  body > .page-grid .other-way .polaroid:nth-child(1) {
    margin-left: 6px !important;
  }

  .tripdoc-html-block .other-way .polaroid:nth-child(2),
  body > .page-grid .other-way .polaroid:nth-child(2) {
    margin-left: 34px !important;
  }

  .tripdoc-html-block .other-way .polaroid:nth-child(3),
  body > .page-grid .other-way .polaroid:nth-child(3) {
    margin-left: 12px !important;
  }

  .tripdoc-html-block .quiz-start .photo-fan,
  .tripdoc-html-block .trip-carousel,
  .tripdoc-html-block .moments-carousel,
  body > .page-grid .quiz-start .photo-fan,
  body > .page-grid .trip-carousel,
  body > .page-grid .moments-carousel {
    border-bottom: 0 !important;
    background:
      linear-gradient(#caff62, #caff62) left bottom / 38% 4px no-repeat,
      linear-gradient(#fff, #fff) left bottom / 100% 4px no-repeat !important;
  }

  .tripdoc-html-block .quiz-start .photo-fan::after,
  .tripdoc-html-block .trip-carousel::after,
  .tripdoc-html-block .moments-carousel::after,
  body > .page-grid .quiz-start .photo-fan::after,
  body > .page-grid .trip-carousel::after,
  body > .page-grid .moments-carousel::after {
    display: none !important;
  }

  .tripdoc-html-block .community,
  body > .page-grid .community {
    min-height: 1570px !important;
    height: 1570px !important;
  }

  .tripdoc-html-block .community-board,
  body > .page-grid .community-board {
    min-height: 1168px !important;
  }

  .tripdoc-html-block .mini-photo.c,
  body > .page-grid .mini-photo.c,
  .tripdoc-html-block .mini-photo.d,
  body > .page-grid .mini-photo.d {
    bottom: 430px !important;
  }

  .tripdoc-html-block .decor-heart-small,
  body > .page-grid .decor-heart-small {
    right: -4px !important;
    top: 218px !important;
  }

  .tripdoc-html-block .decor-skis,
  body > .page-grid .decor-skis {
    right: 38px !important;
    top: -2px !important;
  }

  .tripdoc-html-block .decor-star-outline,
  body > .page-grid .decor-star-outline {
    right: 20px !important;
    top: 936px !important;
  }

  .tripdoc-html-block .decor-mountain,
  body > .page-grid .decor-mountain {
    right: 64px !important;
    bottom: 204px !important;
  }
}

/* 390 px final pass: phone-only corrections from the supplied mobile references. */
@media (max-width: 430px) {
  .tripdoc-familiar-block,
  .tripdoc-other-block,
  .tripdoc-system-block,
  .tripdoc-quiz-start-block,
  .tripdoc-trips-block,
  .tripdoc-community-block,
  .tripdoc-moments-block,
  .tripdoc-founders-block,
  .tripdoc-final-block,
  .tripdoc-html-block:has(.familiar),
  .tripdoc-html-block:has(.other-way),
  .tripdoc-html-block:has(.system),
  .tripdoc-html-block:has(.quiz-start),
  .tripdoc-html-block:has(.trips),
  .tripdoc-html-block:has(.community),
  .tripdoc-html-block:has(.moments),
  .tripdoc-html-block:has(.founders),
  .tripdoc-html-block:has(.final-cta) {
    margin-top: 0 !important;
  }

  .tripdoc-html-block .site-header,
  body > .site-header {
    top: 10px !important;
    width: calc(100% - 32px) !important;
    max-width: 358px !important;
    min-height: 44px !important;
    margin: 0 auto -52px !important;
    padding: 0 6px 0 16px !important;
    border-radius: 24px !important;
  }

  .tripdoc-html-block .site-header .logo,
  body > .site-header .logo {
    flex: 0 0 126px !important;
    width: 126px !important;
    height: 31px !important;
  }

  .tripdoc-html-block .site-header > .btn,
  .tripdoc-html-block .site-header .header-cta,
  body > .site-header > .btn,
  body > .site-header .header-cta {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    min-width: 0 !important;
    max-width: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
  }

  .tripdoc-html-block .site-header .menu-toggle,
  body > .site-header .menu-toggle {
    display: grid !important;
    flex: 0 0 36px !important;
    width: 36px !important;
    height: 36px !important;
    margin-left: auto !important;
  }

  .tripdoc-html-block .familiar,
  body > .page-grid .familiar {
    min-height: 443px !important;
    height: 443px !important;
    background: var(--dark, #2e2e2e) !important;
  }

  .tripdoc-html-block .pain-stack,
  body > .page-grid .pain-stack {
    width: min(410px, calc(100vw + 30px)) !important;
    max-width: none !important;
    height: auto !important;
    aspect-ratio: 587 / 596 !important;
    margin: -42px 0 0 50% !important;
    overflow: visible !important;
    transform: translateX(-50%) !important;
  }

  .tripdoc-html-block .other-way,
  .tripdoc-html-block .quiz-start,
  .tripdoc-html-block .community,
  .tripdoc-html-block .founders,
  body > .page-grid .other-way,
  body > .page-grid .quiz-start,
  body > .page-grid .community,
  body > .page-grid .founders {
    background: #2d2d2d !important;
  }

  .tripdoc-html-block .other-way .polaroids,
  body > .page-grid .other-way .polaroids {
    align-items: center !important;
    padding-left: 22px !important;
    gap: 18px !important;
  }

  .tripdoc-html-block .other-way .polaroid:nth-child(1),
  body > .page-grid .other-way .polaroid:nth-child(1) {
    margin-left: 6px !important;
  }

  .tripdoc-html-block .other-way .polaroid:nth-child(2),
  body > .page-grid .other-way .polaroid:nth-child(2) {
    margin-left: 34px !important;
  }

  .tripdoc-html-block .other-way .polaroid:nth-child(3),
  body > .page-grid .other-way .polaroid:nth-child(3) {
    margin-left: 12px !important;
  }

  .tripdoc-html-block .quiz-start .photo-fan,
  .tripdoc-html-block .trip-carousel,
  .tripdoc-html-block .moments-carousel,
  body > .page-grid .quiz-start .photo-fan,
  body > .page-grid .trip-carousel,
  body > .page-grid .moments-carousel {
    border-bottom: 0 !important;
    background:
      linear-gradient(#caff62, #caff62) left bottom / 38% 4px no-repeat,
      linear-gradient(#fff, #fff) left bottom / 100% 4px no-repeat !important;
  }

  .tripdoc-html-block .quiz-start .photo-fan::after,
  .tripdoc-html-block .trip-carousel::after,
  .tripdoc-html-block .moments-carousel::after,
  body > .page-grid .quiz-start .photo-fan::after,
  body > .page-grid .trip-carousel::after,
  body > .page-grid .moments-carousel::after {
    display: none !important;
  }

  .tripdoc-html-block .community,
  body > .page-grid .community {
    min-height: 1570px !important;
    height: 1570px !important;
  }

  .tripdoc-html-block .community-board,
  body > .page-grid .community-board {
    min-height: 1168px !important;
  }

  .tripdoc-html-block .mini-photo.c,
  body > .page-grid .mini-photo.c,
  .tripdoc-html-block .mini-photo.d,
  body > .page-grid .mini-photo.d {
    bottom: 430px !important;
  }

  .tripdoc-html-block .decor-heart-small,
  body > .page-grid .decor-heart-small {
    right: -4px !important;
    top: 218px !important;
  }

  .tripdoc-html-block .decor-skis,
  body > .page-grid .decor-skis {
    right: 38px !important;
    top: -2px !important;
  }

  .tripdoc-html-block .decor-star-outline,
  body > .page-grid .decor-star-outline {
    right: 20px !important;
    top: 936px !important;
  }

  .tripdoc-html-block .decor-mountain,
  body > .page-grid .decor-mountain {
    right: 64px !important;
    bottom: 204px !important;
  }
}

.tripdoc-html-block .moments-lead,
body > .page-grid .moments-lead {
  display: none;
}

/* Keep only the requested interactions. */
.tripdoc-html-block .polaroid,
.tripdoc-html-block .mini-photo,
.tripdoc-html-block .moments-grid img,
.tripdoc-html-block .founder-card,
body > .page-grid .polaroid,
body > .page-grid .mini-photo,
body > .page-grid .moments-grid img,
body > .page-grid .founder-card {
  transition: none !important;
}

.tripdoc-html-block .polaroid:hover,
.tripdoc-html-block .mini-photo:hover,
.tripdoc-html-block .moments-grid img:hover,
.tripdoc-html-block .founder-card:hover,
body > .page-grid .polaroid:hover,
body > .page-grid .mini-photo:hover,
body > .page-grid .moments-grid img:hover,
body > .page-grid .founder-card:hover {
  box-shadow: inherit !important;
}

.tripdoc-html-block .btn,
body > .page-grid .btn {
  transform: none !important;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease !important;
}

.tripdoc-html-block .btn-primary:hover,
.tripdoc-html-block .btn-primary:focus-visible,
body > .page-grid .btn-primary:hover,
body > .page-grid .btn-primary:focus-visible {
  color: #fff !important;
  background: #202020 !important;
}

.tripdoc-html-block .btn span[aria-hidden="true"],
body > .page-grid .btn span[aria-hidden="true"] {
  font-size: 0 !important;
}

.tripdoc-html-block .btn span[aria-hidden="true"]::before,
body > .page-grid .btn span[aria-hidden="true"]::before {
  content: "\2197";
  font-size: 24px;
  line-height: 1;
}

.tripdoc-html-block .btn:hover span[aria-hidden="true"]::before,
.tripdoc-html-block .btn:focus-visible span[aria-hidden="true"]::before,
body > .page-grid .btn:hover span[aria-hidden="true"]::before,
body > .page-grid .btn:focus-visible span[aria-hidden="true"]::before {
  content: "\2192";
}

.tripdoc-html-block .main-nav a,
.tripdoc-html-block .site-footer nav a,
.tripdoc-html-block .footer-bottom a,
body > .page-grid .main-nav a,
body > .page-grid .site-footer nav a,
body > .page-grid .footer-bottom a {
  transition: color 140ms ease !important;
}

.tripdoc-html-block .main-nav a:hover,
.tripdoc-html-block .main-nav a:focus-visible,
.tripdoc-html-block .site-footer nav a:hover,
.tripdoc-html-block .site-footer nav a:focus-visible,
.tripdoc-html-block .footer-bottom a:hover,
.tripdoc-html-block .footer-bottom a:focus-visible,
body > .page-grid .main-nav a:hover,
body > .page-grid .main-nav a:focus-visible,
body > .page-grid .site-footer nav a:hover,
body > .page-grid .site-footer nav a:focus-visible,
body > .page-grid .footer-bottom a:hover,
body > .page-grid .footer-bottom a:focus-visible {
  color: #0173fd !important;
}

/* Tablet: the supplied 834/1024 layouts. */
@media (min-width: 761px) and (max-width: 1100px) {
  .tripdoc-html-block:not(.tripdoc-header-block):not(.tripdoc-header-hero-block):not(.tripdoc-hero-block):not(.tripdoc-footer-block) {
    margin-top: 80px !important;
  }

  .tripdoc-html-block .section,
  .tripdoc-html-block .dark-band,
  body > .page-grid .section,
  body > .page-grid .dark-band {
    width: 100% !important;
    max-width: 1024px;
  }

  .tripdoc-html-block .section-head h2,
  body > .page-grid .section-head h2 {
    font-size: clamp(36px, 5.3vw, 48px) !important;
    line-height: 1.12 !important;
  }

  .tripdoc-html-block .section-head p,
  body > .page-grid .section-head p {
    font-size: clamp(22px, 3vw, 30px) !important;
    line-height: 1.18 !important;
  }

  .tripdoc-html-block .spark-title::before,
  .tripdoc-html-block .spark-title::after,
  body > .page-grid .spark-title::before,
  body > .page-grid .spark-title::after {
    width: 46px !important;
    height: 46px !important;
  }

  .tripdoc-html-block .hero-card,
  body > .page-grid .hero-card {
    min-height: 780px !important;
  }

  .tripdoc-html-block .hero-copy,
  body > .page-grid .hero-copy {
    width: calc(100% - 80px) !important;
    padding-top: 150px !important;
  }

  .tripdoc-html-block .hero h1,
  body > .page-grid .hero h1 {
    max-width: 900px !important;
    font-size: clamp(54px, 7.2vw, 74px) !important;
  }

  .tripdoc-html-block .hero-lead,
  body > .page-grid .hero-lead {
    margin-top: 118px !important;
  }

  .tripdoc-html-block .familiar,
  body > .page-grid .familiar {
    min-height: 720px !important;
  }

  .tripdoc-html-block .other-way,
  body > .page-grid .other-way {
    min-height: 736px !important;
    padding: 64px 40px 42px !important;
  }

  .tripdoc-html-block .other-way .section-head,
  body > .page-grid .other-way .section-head {
    margin-bottom: 55px !important;
  }

  .tripdoc-html-block .polaroids,
  body > .page-grid .polaroids {
    gap: 28px !important;
    min-height: 365px !important;
  }

  .tripdoc-html-block .polaroid,
  body > .page-grid .polaroid {
    padding: 13px 13px 24px !important;
  }

  .tripdoc-html-block .polaroid img,
  body > .page-grid .polaroid img {
    width: clamp(220px, 26vw, 270px) !important;
    height: clamp(176px, 21vw, 215px) !important;
  }

  .tripdoc-html-block .system,
  body > .page-grid .system {
    height: 1743px !important;
    min-height: 1743px !important;
    padding: 0 40px 80px !important;
    overflow: hidden !important;
  }

  .tripdoc-html-block .system .section-head,
  body > .page-grid .system .section-head {
    margin-bottom: 84px !important;
  }

  .tripdoc-html-block .step-line,
  body > .page-grid .step-line {
    max-width: 460px !important;
    gap: 90px !important;
  }

  .tripdoc-html-block .step-line li,
  body > .page-grid .step-line li {
    min-height: 220px !important;
  }

  .tripdoc-html-block .step-icon,
  body > .page-grid .step-icon {
    width: 104px !important;
    height: 104px !important;
  }

  .tripdoc-html-block .step-line h3,
  body > .page-grid .step-line h3 {
    font-size: 23px !important;
  }

  .tripdoc-html-block .step-line p,
  body > .page-grid .step-line p {
    font-size: 18px !important;
  }

  .tripdoc-html-block .quiz-start,
  body > .page-grid .quiz-start {
    min-height: 1119px !important;
    padding: 60px 40px !important;
  }

  .tripdoc-html-block .quiz-start .photo-fan,
  body > .page-grid .quiz-start .photo-fan {
    grid-template-columns: repeat(3, minmax(0, 270px)) !important;
    gap: 28px 18px !important;
    margin-top: 20px !important;
  }

  .tripdoc-html-block .photo-fan img,
  body > .page-grid .photo-fan img {
    width: 100% !important;
    height: 245px !important;
  }

  .tripdoc-html-block .solo-note,
  body > .page-grid .solo-note {
    margin-top: 55px !important;
    font-size: 20px !important;
  }

  .tripdoc-html-block .trip-grid,
  body > .page-grid .trip-grid {
    display: block !important;
  }

  .tripdoc-html-block .trip-carousel,
  body > .page-grid .trip-carousel {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }

  .tripdoc-html-block .trips,
  body > .page-grid .trips {
    height: 1238px !important;
    min-height: 1238px !important;
    padding: 54px 40px !important;
    overflow: hidden !important;
  }

  .tripdoc-html-block .trip-note,
  body > .page-grid .trip-note {
    min-height: 270px !important;
  }

  .tripdoc-html-block .trip-wide,
  body > .page-grid .trip-wide {
    grid-column: 1 / -1 !important;
    height: 270px !important;
  }

  .tripdoc-html-block .trip-small,
  body > .page-grid .trip-small {
    height: 270px !important;
  }

  .tripdoc-html-block .trip-link,
  body > .page-grid .trip-link {
    width: 488px !important;
    margin: 34px auto 0 !important;
  }

  .tripdoc-html-block .community,
  body > .page-grid .community {
    height: 1324px !important;
    min-height: 1324px !important;
    padding: 54px 40px 48px !important;
    overflow: hidden !important;
  }

  .tripdoc-html-block .community-board,
  body > .page-grid .community-board {
    min-height: 920px !important;
  }

  .tripdoc-html-block .mini-photo,
  body > .page-grid .mini-photo {
    width: 230px !important;
  }

  .tripdoc-html-block .mini-photo img,
  body > .page-grid .mini-photo img {
    height: 175px !important;
  }

  .tripdoc-html-block .mini-photo.a,
  body > .page-grid .mini-photo.a { left: 12px !important; top: 54px !important; }
  .tripdoc-html-block .mini-photo.b,
  body > .page-grid .mini-photo.b { right: 12px !important; top: 62px !important; }
  .tripdoc-html-block .mini-photo.c,
  body > .page-grid .mini-photo.c { left: 18px !important; bottom: 70px !important; }
  .tripdoc-html-block .mini-photo.d,
  body > .page-grid .mini-photo.d { right: 205px !important; bottom: 292px !important; }
  .tripdoc-html-block .mini-photo.e,
  body > .page-grid .mini-photo.e { right: 18px !important; bottom: 58px !important; }

  .tripdoc-html-block .bubble.top,
  body > .page-grid .bubble.top { top: 170px !important; }
  .tripdoc-html-block .bubble.mid,
  body > .page-grid .bubble.mid { top: 455px !important; }
  .tripdoc-html-block .bubble.bottom,
  body > .page-grid .bubble.bottom { bottom: 104px !important; }

  .tripdoc-html-block .moments,
  body > .page-grid .moments {
    height: 1157px !important;
    min-height: 1157px !important;
    padding: 0 40px 50px !important;
    overflow: hidden !important;
  }

  .tripdoc-html-block .moments-lead,
  body > .page-grid .moments-lead {
    display: none !important;
  }

  .tripdoc-html-block .moments-carousel,
  body > .page-grid .moments-carousel {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: repeat(3, 286px) !important;
    gap: 20px !important;
  }

  .tripdoc-html-block .moments-grid,
  body > .page-grid .moments-grid {
    display: block !important;
  }

  .tripdoc-html-block .moments-carousel img,
  body > .page-grid .moments-carousel img {
    width: 100% !important;
    height: 286px !important;
    min-height: 0 !important;
    margin: 0 !important;
    object-fit: cover !important;
  }

  .tripdoc-html-block .moments-carousel .m1,
  body > .page-grid .moments-carousel .m1 {
    grid-column: 1 !important;
    grid-row: 1 !important;
    height: 286px !important;
  }

  .tripdoc-html-block .moments-carousel > img:nth-child(2),
  body > .page-grid .moments-carousel > img:nth-child(2) {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }

  .tripdoc-html-block .moments-carousel > img:nth-child(3),
  body > .page-grid .moments-carousel > img:nth-child(3) {
    grid-column: 1 !important;
    grid-row: 2 !important;
  }

  .tripdoc-html-block .moments-carousel > img:nth-child(5),
  body > .page-grid .moments-carousel > img:nth-child(5) {
    grid-column: 2 !important;
    grid-row: 2 !important;
  }

  .tripdoc-html-block .moments-carousel .m5,
  body > .page-grid .moments-carousel .m5 {
    grid-column: 1 !important;
    grid-row: 3 !important;
  }

  .tripdoc-html-block .paint-mark,
  body > .page-grid .paint-mark {
    grid-column: 2 !important;
    grid-row: 3 !important;
    height: 286px !important;
    min-height: 0 !important;
    object-fit: contain !important;
  }

  .tripdoc-html-block .founders,
  body > .page-grid .founders {
    height: 1148px !important;
    min-height: 1148px !important;
    padding: 60px 40px !important;
    overflow: hidden !important;
  }

  .tripdoc-html-block .founder-grid,
  body > .page-grid .founder-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 700px !important;
  }

  .tripdoc-html-block .founder-card,
  body > .page-grid .founder-card {
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  .tripdoc-html-block .founder-card img,
  body > .page-grid .founder-card img {
    width: 100% !important;
    height: 304px !important;
    border-radius: 14px 14px 0 0 !important;
  }

  .tripdoc-html-block .founder-card > div,
  body > .page-grid .founder-card > div {
    padding: 18px 20px 24px !important;
  }

  .tripdoc-html-block .final-cta,
  body > .page-grid .final-cta {
    height: 340px !important;
    min-height: 340px !important;
    padding: 28px 40px !important;
    overflow: hidden !important;
  }

  .tripdoc-html-block .site-footer,
  body > .site-footer {
    height: 386px !important;
    min-height: 386px !important;
    margin-top: 80px !important;
    padding: 42px 40px 0 !important;
    overflow: hidden !important;
  }

  .tripdoc-html-block .site-footer .footer-inner,
  body > .site-footer .footer-inner {
    display: grid !important;
    grid-template-columns: 1.3fr 0.8fr 1fr !important;
    gap: 48px !important;
    max-width: 944px !important;
    margin: 0 auto !important;
    padding: 0 0 24px !important;
  }

  .tripdoc-html-block .site-footer .footer-logo,
  body > .site-footer .footer-logo {
    width: 235px !important;
  }

  .tripdoc-html-block .site-footer .footer-tagline,
  body > .site-footer .footer-tagline {
    margin-top: 12px !important;
    font-size: 29px !important;
    line-height: 1.12 !important;
  }

  .tripdoc-html-block .site-footer .footer-bottom,
  body > .site-footer .footer-bottom {
    grid-column: 1 / -1 !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 40px !important;
    margin-top: 0 !important;
    padding-top: 22px !important;
  }
}

/* Mobile: the supplied 390 px block references. */
@media (max-width: 760px) {
  .tripdoc-html-block:not(.tripdoc-header-block):not(.tripdoc-header-hero-block):not(.tripdoc-hero-block):not(.tripdoc-footer-block) {
    margin-top: 45px !important;
  }

  .tripdoc-html-block,
  .tripdoc-html-block *,
  body > .page-grid,
  body > .page-grid * {
    box-sizing: border-box;
  }

  .tripdoc-html-block .site-header,
  body > .site-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    z-index: 80 !important;
    top: 8px !important;
    width: calc(100% - 32px) !important;
    min-height: 44px !important;
    margin: 0 16px -52px !important;
    padding: 0 6px 0 12px !important;
    border-radius: 24px !important;
  }

  .tripdoc-html-block .site-header .logo,
  body > .site-header .logo {
    width: 112px !important;
    height: 28px !important;
  }

  .tripdoc-html-block .header-cta,
  body > .site-header .header-cta {
    display: none !important;
  }

  .tripdoc-html-block .menu-toggle,
  body > .site-header .menu-toggle {
    display: grid !important;
    margin-left: auto !important;
    width: 36px !important;
    height: 36px !important;
    background: #fbfdff !important;
  }

  .tripdoc-html-block .hero,
  .tripdoc-html-block .hero-card,
  body > .page-grid .hero,
  body > .page-grid .hero-card {
    width: 100% !important;
    min-height: 780px !important;
    border-radius: 0 0 8px 8px !important;
  }

  .tripdoc-html-block .hero-card,
  body > .page-grid .hero-card {
    background:
      linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.28)),
      url("https://static.tildacdn.com/tild6631-3862-4534-a165-393338653538/hero-mobile.webp") center top / cover no-repeat !important;
  }

  .tripdoc-html-block .hero-copy,
  body > .page-grid .hero-copy {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 780px !important;
    padding: 178px 16px 40px !important;
  }

  .tripdoc-html-block .eyebrow,
  body > .page-grid .eyebrow {
    margin: 0 0 12px !important;
    font-size: 14px !important;
  }

  .tripdoc-html-block .hero h1,
  body > .page-grid .hero h1 {
    max-width: 365px !important;
    font-size: clamp(32px, 8.8vw, 35px) !important;
    line-height: 1.03 !important;
  }

  .tripdoc-html-block .hero-lead,
  body > .page-grid .hero-lead {
    width: 100% !important;
    max-width: 358px !important;
    margin: auto 0 30px !important;
    font-size: 18px !important;
    line-height: 1.23 !important;
  }

  .tripdoc-html-block .hero-actions,
  body > .page-grid .hero-actions {
    width: 100% !important;
    max-width: 358px !important;
    gap: 16px !important;
  }

  .tripdoc-html-block .hero-actions .btn,
  body > .page-grid .hero-actions .btn {
    width: 100% !important;
    min-height: 60px !important;
    font-size: 18px !important;
  }

  .tripdoc-html-block .section,
  .tripdoc-html-block .dark-band,
  body > .page-grid .section,
  body > .page-grid .dark-band {
    width: 100% !important;
    padding-inline: 16px !important;
  }

  .tripdoc-html-block .section-head,
  body > .page-grid .section-head {
    margin-bottom: 34px !important;
  }

  .tripdoc-html-block .section-head h2,
  body > .page-grid .section-head h2 {
    font-size: 25px !important;
    line-height: 1.08 !important;
  }

  .tripdoc-html-block .section-head p,
  body > .page-grid .section-head p {
    max-width: 358px !important;
    font-size: 18px !important;
    line-height: 1.12 !important;
  }

  .tripdoc-html-block .spark-title,
  body > .page-grid .spark-title {
    max-width: 374px !important;
    padding-inline: 42px !important;
  }

  .tripdoc-html-block .spark-title::before,
  .tripdoc-html-block .spark-title::after,
  body > .page-grid .spark-title::before,
  body > .page-grid .spark-title::after {
    width: 32px !important;
    height: 32px !important;
    top: 0.52em !important;
  }

  .tripdoc-html-block .familiar,
  body > .page-grid .familiar {
    min-height: 443px !important;
    height: 443px !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: var(--dark, #2e2e2e) !important;
  }

  .tripdoc-html-block .familiar .section-head,
  body > .page-grid .familiar .section-head {
    min-height: 113px !important;
    margin: 0 !important;
    padding: 0 8px !important;
  }

  .tripdoc-html-block .familiar .section-head h2,
  body > .page-grid .familiar .section-head h2 {
    font-size: 25px !important;
  }

  .tripdoc-html-block .familiar .section-head p,
  body > .page-grid .familiar .section-head p {
    margin-top: 8px !important;
    font-size: 17px !important;
  }

  .tripdoc-html-block .pain-stack,
  body > .page-grid .pain-stack {
    width: 470px !important;
    max-width: none !important;
    height: 477px !important;
    margin: -50px 0 0 50% !important;
    overflow: visible !important;
    transform: translateX(-50%) !important;
  }

  .tripdoc-html-block .pain-stack .pain-card,
  body > .page-grid .pain-stack .pain-card {
    border-radius: 0 !important;
  }

  .tripdoc-html-block .other-way,
  body > .page-grid .other-way {
    min-height: 975px !important;
    height: 975px !important;
    padding: 42px 16px 34px !important;
    overflow: hidden !important;
  }

  .tripdoc-html-block .other-way .section-head,
  body > .page-grid .other-way .section-head {
    margin-bottom: 38px !important;
  }

  .tripdoc-html-block .other-way .section-head p,
  body > .page-grid .other-way .section-head p {
    font-size: 18px !important;
  }

  .tripdoc-html-block .polaroids,
  body > .page-grid .polaroids {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 15px !important;
    min-height: 680px !important;
  }

  .tripdoc-html-block .polaroid,
  body > .page-grid .polaroid {
    width: 210px !important;
    padding: 11px 11px 20px !important;
  }

  .tripdoc-html-block .polaroid img,
  body > .page-grid .polaroid img {
    width: 188px !important;
    height: 140px !important;
  }

  .tripdoc-html-block .polaroid figcaption,
  body > .page-grid .polaroid figcaption {
    font-size: 14px !important;
  }

  .tripdoc-html-block .polaroid:nth-child(1),
  body > .page-grid .polaroid:nth-child(1) {
    margin-left: -32px !important;
    transform: rotate(12deg) !important;
  }

  .tripdoc-html-block .polaroid:nth-child(2),
  body > .page-grid .polaroid:nth-child(2) {
    margin-left: 20px !important;
    transform: rotate(-12deg) !important;
  }

  .tripdoc-html-block .polaroid:nth-child(3),
  body > .page-grid .polaroid:nth-child(3) {
    margin-left: -22px !important;
    transform: rotate(13deg) !important;
  }

  .tripdoc-html-block .system,
  body > .page-grid .system {
    min-height: 1554px !important;
    padding: 0 16px 22px !important;
    background: var(--dark, #2e2e2e) !important;
  }

  .tripdoc-html-block .system .section-head,
  body > .page-grid .system .section-head {
    margin-bottom: 50px !important;
  }

  .tripdoc-html-block .system .section-head h2,
  body > .page-grid .system .section-head h2 {
    font-size: 25px !important;
  }

  .tripdoc-html-block .system .section-head p,
  body > .page-grid .system .section-head p {
    font-size: 18px !important;
  }

  .tripdoc-html-block .step-line,
  body > .page-grid .step-line {
    max-width: 358px !important;
    gap: 0 !important;
  }

  .tripdoc-html-block .step-line::before,
  body > .page-grid .step-line::before {
    display: none !important;
  }

  .tripdoc-html-block .step-line li,
  body > .page-grid .step-line li {
    position: relative !important;
    min-height: 248px !important;
    padding: 0 0 82px !important;
    background: var(--dark, #2e2e2e) !important;
  }

  .tripdoc-html-block .step-line li:not(:last-child)::after,
  body > .page-grid .step-line li:not(:last-child)::after {
    content: "\2193";
    position: absolute;
    left: 50%;
    bottom: 18px;
    height: 58px;
    border-left: 2px dashed rgba(255, 255, 255, 0.75);
    color: #fff;
    font-size: 20px;
    line-height: 74px;
    transform: translateX(-50%);
  }

  .tripdoc-html-block .step-icon,
  body > .page-grid .step-icon {
    width: 92px !important;
    height: 92px !important;
    margin-bottom: 16px !important;
  }

  .tripdoc-html-block .step-line h3,
  body > .page-grid .step-line h3 {
    color: #303030 !important;
    font-size: 19px !important;
  }

  .tripdoc-html-block .step-line p,
  body > .page-grid .step-line p {
    color: #303030 !important;
    font-size: 16px !important;
  }

  .tripdoc-html-block .quiz-start,
  body > .page-grid .quiz-start {
    min-height: 739px !important;
    padding: 42px 16px 40px !important;
  }

  .tripdoc-html-block .quiz-start .section-head,
  body > .page-grid .quiz-start .section-head {
    margin-bottom: 38px !important;
  }

  .tripdoc-html-block .quiz-start .section-head h2,
  body > .page-grid .quiz-start .section-head h2 {
    font-size: 25px !important;
  }

  .tripdoc-html-block .quiz-start .photo-fan,
  body > .page-grid .quiz-start .photo-fan {
    display: flex !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    width: calc(100% + 16px) !important;
    margin: 0 !important;
    padding: 0 16px 18px 0 !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    border-bottom: 4px solid #fff !important;
  }

  .tripdoc-html-block .quiz-start .photo-fan::-webkit-scrollbar,
  body > .page-grid .quiz-start .photo-fan::-webkit-scrollbar {
    display: none;
  }

  .tripdoc-html-block .photo-fan img,
  body > .page-grid .photo-fan img {
    flex: 0 0 calc(100vw - 34px) !important;
    width: calc(100vw - 34px) !important;
    height: 268px !important;
    border: 11px solid #fff !important;
    border-bottom-width: 30px !important;
    border-radius: 12px !important;
    transform: none !important;
    scroll-snap-align: start;
  }

  .tripdoc-html-block .quiz-start .photo-fan::after,
  body > .page-grid .quiz-start .photo-fan::after {
    content: "";
    position: absolute;
    right: auto;
    bottom: 0;
    left: 16px;
    width: 34%;
    border-bottom: 4px solid #caff62;
  }

  .tripdoc-html-block .solo-note,
  body > .page-grid .solo-note {
    margin: 42px auto 30px !important;
    font-size: 18px !important;
  }

  .tripdoc-html-block .center-btn,
  body > .page-grid .center-btn {
    width: 100% !important;
    max-width: 358px !important;
    min-height: 60px !important;
    font-size: 18px !important;
  }

  .tripdoc-html-block .trips,
  body > .page-grid .trips {
    min-height: 614px !important;
    height: 614px !important;
    padding: 0 0 0 !important;
    overflow: hidden !important;
    background: var(--dark, #2e2e2e) !important;
  }

  .tripdoc-html-block .trips .section-head,
  body > .page-grid .trips .section-head {
    padding: 0 16px !important;
    margin-bottom: 38px !important;
  }

  .tripdoc-html-block .trips .section-head h2,
  body > .page-grid .trips .section-head h2 {
    font-size: 25px !important;
  }

  .tripdoc-html-block .trip-grid,
  body > .page-grid .trip-grid {
    display: block !important;
  }

  .tripdoc-html-block .trip-carousel,
  body > .page-grid .trip-carousel {
    position: relative;
    display: flex !important;
    gap: 10px !important;
    width: 100% !important;
    padding: 0 16px 18px 0 !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    border-bottom: 4px solid #fff;
  }

  .tripdoc-html-block .trip-carousel::-webkit-scrollbar,
  body > .page-grid .trip-carousel::-webkit-scrollbar {
    display: none;
  }

  .tripdoc-html-block .trip-carousel::after,
  body > .page-grid .trip-carousel::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 38%;
    border-bottom: 4px solid #caff62;
  }

  .tripdoc-html-block .trip-carousel > *,
  body > .page-grid .trip-carousel > * {
    flex: 0 0 calc(100vw - 32px) !important;
    width: calc(100vw - 32px) !important;
    min-height: 286px !important;
    height: 286px !important;
    scroll-snap-align: start;
  }

  .tripdoc-html-block .trip-note,
  body > .page-grid .trip-note {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    padding: 24px !important;
    border-radius: 24px !important;
  }

  .tripdoc-html-block .trip-wide,
  .tripdoc-html-block .trip-small,
  body > .page-grid .trip-wide,
  body > .page-grid .trip-small {
    object-fit: cover !important;
    border-radius: 24px !important;
  }

  .tripdoc-html-block .trip-link,
  body > .page-grid .trip-link {
    width: calc(100% - 32px) !important;
    min-height: 60px !important;
    margin: 34px 16px 0 !important;
    font-size: 18px !important;
  }

  .tripdoc-html-block .community,
  body > .page-grid .community {
    min-height: 1532px !important;
    height: 1532px !important;
    padding: 42px 16px 40px !important;
    overflow: hidden !important;
  }

  .tripdoc-html-block .community .section-head h2,
  body > .page-grid .community .section-head h2 {
    font-size: 25px !important;
  }

  .tripdoc-html-block .community-board,
  body > .page-grid .community-board {
    min-height: 1128px !important;
  }

  .tripdoc-html-block .mini-photo,
  body > .page-grid .mini-photo {
    width: 180px !important;
    padding: 9px 9px 17px !important;
  }

  .tripdoc-html-block .mini-photo img,
  body > .page-grid .mini-photo img {
    height: 132px !important;
  }

  .tripdoc-html-block .mini-photo.a,
  body > .page-grid .mini-photo.a { left: 7px !important; top: 18px !important; transform: rotate(-13deg) !important; }
  .tripdoc-html-block .mini-photo.b,
  body > .page-grid .mini-photo.b { right: 2px !important; top: 32px !important; transform: rotate(13deg) !important; }
  .tripdoc-html-block .mini-photo.c,
  body > .page-grid .mini-photo.c { left: 8px !important; bottom: 358px !important; transform: rotate(-13deg) !important; }
  .tripdoc-html-block .mini-photo.d,
  body > .page-grid .mini-photo.d { right: 4px !important; bottom: 350px !important; transform: rotate(13deg) !important; }
  .tripdoc-html-block .mini-photo.e,
  body > .page-grid .mini-photo.e { right: 46px !important; bottom: 92px !important; transform: rotate(13deg) !important; }

  .tripdoc-html-block .bubble,
  body > .page-grid .bubble {
    width: calc(100% - 16px) !important;
    padding: 18px 16px !important;
    border-radius: 20px !important;
    font-size: 16px !important;
  }

  .tripdoc-html-block .bubble.top,
  body > .page-grid .bubble.top { top: 285px !important; }
  .tripdoc-html-block .bubble.mid,
  body > .page-grid .bubble.mid { top: 700px !important; width: calc(100% - 16px) !important; }
  .tripdoc-html-block .bubble.bottom,
  body > .page-grid .bubble.bottom { bottom: 0 !important; }

  .tripdoc-html-block .decor-leaf,
  body > .page-grid .decor-leaf { left: -16px !important; top: -18px !important; }
  .tripdoc-html-block .decor-heart-small,
  body > .page-grid .decor-heart-small { right: 0 !important; top: 270px !important; }
  .tripdoc-html-block .decor-skis,
  body > .page-grid .decor-skis { right: -14px !important; top: 8px !important; }
  .tripdoc-html-block .decor-bolt,
  body > .page-grid .decor-bolt { left: 132px !important; top: 650px !important; }
  .tripdoc-html-block .decor-star-outline,
  body > .page-grid .decor-star-outline { left: auto !important; right: 6px !important; top: 1015px !important; }
  .tripdoc-html-block .decor-mountain,
  body > .page-grid .decor-mountain { right: 62px !important; bottom: 270px !important; }

  .tripdoc-html-block .community .center-btn,
  body > .page-grid .community .center-btn {
    margin-top: 20px !important;
  }

  .tripdoc-html-block .moments,
  body > .page-grid .moments {
    min-height: 499px !important;
    height: 499px !important;
    padding: 0 0 0 !important;
    overflow: hidden !important;
    background: var(--dark, #2e2e2e) !important;
  }

  .tripdoc-html-block .moments .section-head,
  body > .page-grid .moments .section-head {
    margin-bottom: 38px !important;
    padding: 0 16px !important;
  }

  .tripdoc-html-block .moments .section-head h2,
  body > .page-grid .moments .section-head h2 {
    font-size: 25px !important;
  }

  .tripdoc-html-block .moments-lead,
  body > .page-grid .moments-lead {
    display: block !important;
    margin-top: 18px !important;
    color: #8b8b8d !important;
    font-family: "Onest", Arial, sans-serif !important;
    font-size: 17px !important;
    line-height: 1.2 !important;
  }

  .tripdoc-html-block .moments-grid,
  body > .page-grid .moments-grid {
    display: block !important;
  }

  .tripdoc-html-block .moments-carousel,
  body > .page-grid .moments-carousel {
    position: relative;
    display: flex !important;
    gap: 12px !important;
    width: 100% !important;
    padding: 0 16px 18px 0 !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    border-bottom: 4px solid #fff;
  }

  .tripdoc-html-block .moments-carousel::-webkit-scrollbar,
  body > .page-grid .moments-carousel::-webkit-scrollbar {
    display: none;
  }

  .tripdoc-html-block .moments-carousel::after,
  body > .page-grid .moments-carousel::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 38%;
    border-bottom: 4px solid #caff62;
  }

  .tripdoc-html-block .moments-carousel img,
  body > .page-grid .moments-carousel img {
    flex: 0 0 calc(100vw - 32px) !important;
    width: calc(100vw - 32px) !important;
    height: 270px !important;
    border-radius: 22px !important;
    scroll-snap-align: start;
  }

  .tripdoc-html-block .moments-carousel .m1,
  .tripdoc-html-block .moments-carousel .m5,
  body > .page-grid .moments-carousel .m1,
  body > .page-grid .moments-carousel .m5 {
    height: 270px !important;
  }

  .tripdoc-html-block .paint-mark,
  body > .page-grid .paint-mark {
    display: none !important;
  }

  .tripdoc-html-block .founders,
  body > .page-grid .founders {
    display: flex !important;
    flex-direction: column !important;
    min-height: 1665px !important;
    padding: 42px 16px 30px !important;
  }

  .tripdoc-html-block .founders .section-head,
  body > .page-grid .founders .section-head {
    order: 1;
    margin-bottom: 38px !important;
  }

  .tripdoc-html-block .founders .section-head h2,
  body > .page-grid .founders .section-head h2 {
    font-size: 25px !important;
  }

  .tripdoc-html-block .founders .section-head p,
  body > .page-grid .founders .section-head p {
    font-size: 18px !important;
  }

  .tripdoc-html-block .founder-grid,
  body > .page-grid .founder-grid {
    display: contents !important;
  }

  .tripdoc-html-block .founder-card,
  body > .page-grid .founder-card {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    width: 100% !important;
    min-height: 0 !important;
    padding: 18px !important;
    border-radius: 14px !important;
  }

  .tripdoc-html-block .founder-card:first-child,
  body > .page-grid .founder-card:first-child { order: 2; }
  .tripdoc-html-block .founder-intro,
  body > .page-grid .founder-intro { order: 3; }
  .tripdoc-html-block .founder-card:last-child,
  body > .page-grid .founder-card:last-child { order: 4; }
  .tripdoc-html-block .founder-outro,
  body > .page-grid .founder-outro { order: 5; }

  .tripdoc-html-block .founder-card img,
  body > .page-grid .founder-card img {
    order: 2;
    width: 100% !important;
    height: 290px !important;
    margin: 12px 0 15px !important;
    border: 2px solid #caff62 !important;
    border-radius: 22px !important;
  }

  .tripdoc-html-block .founder-card > div,
  body > .page-grid .founder-card > div {
    display: contents !important;
  }

  .tripdoc-html-block .founder-card h3,
  body > .page-grid .founder-card h3 { order: 0; font-size: 18px !important; }
  .tripdoc-html-block .founder-card .role,
  body > .page-grid .founder-card .role { order: 1; }
  .tripdoc-html-block .founder-card p:not(.role),
  body > .page-grid .founder-card p:not(.role) { order: 3; margin-top: 0 !important; }

  .tripdoc-html-block .founder-intro,
  .tripdoc-html-block .founder-outro,
  body > .page-grid .founder-intro,
  body > .page-grid .founder-outro {
    max-width: 100% !important;
    margin: 22px 0 !important;
    text-align: left !important;
    font-size: 18px !important;
    line-height: 1.22 !important;
  }

  .tripdoc-html-block .founder-outro,
  body > .page-grid .founder-outro {
    margin-bottom: 0 !important;
    font-size: 20px !important;
  }

  .tripdoc-html-block .text-gap,
  body > .page-grid .text-gap {
    margin-top: 10px !important;
  }

  .tripdoc-html-block .final-cta,
  body > .page-grid .final-cta {
    min-height: 281px !important;
    height: 281px !important;
    padding: 0 !important;
    background: var(--dark, #2e2e2e) !important;
  }

  .tripdoc-html-block .final-cta .section-head,
  body > .page-grid .final-cta .section-head {
    margin: 0 !important;
  }

  .tripdoc-html-block .final-cta .section-head h2,
  body > .page-grid .final-cta .section-head h2 {
    font-size: 25px !important;
  }

  .tripdoc-html-block .final-cta .section-head p,
  body > .page-grid .final-cta .section-head p {
    font-size: 18px !important;
  }

  .tripdoc-html-block .final-cta .center-btn,
  body > .page-grid .final-cta .center-btn {
    margin-top: 36px !important;
  }

  .tripdoc-html-block .final-cta small,
  body > .page-grid .final-cta small {
    font-size: 16px !important;
  }

  .tripdoc-html-block .site-footer,
  body > .site-footer {
    width: 100% !important;
    height: 717px !important;
    min-height: 717px !important;
    margin-top: 45px !important;
    padding: 32px 16px 22px !important;
    border-radius: 8px 8px 0 0 !important;
  }

  .tripdoc-html-block .footer-inner,
  body > .site-footer .footer-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    padding: 0 !important;
  }

  .tripdoc-html-block .site-footer .footer-logo,
  body > .site-footer .footer-logo {
    width: 201px !important;
    height: 50px !important;
  }

  .tripdoc-html-block .footer-tagline,
  body > .site-footer .footer-tagline {
    margin-top: 20px !important;
    font-size: 20px !important;
  }

  .tripdoc-html-block .site-footer h2,
  body > .site-footer h2 {
    margin-bottom: 16px !important;
    font-size: 18px !important;
  }

  .tripdoc-html-block .site-footer nav,
  .tripdoc-html-block .footer-contact,
  body > .site-footer nav,
  body > .site-footer .footer-contact {
    gap: 6px !important;
  }

  .tripdoc-html-block .footer-contact a,
  body > .site-footer .footer-contact a {
    min-height: 40px !important;
  }

  .tripdoc-html-block .footer-bottom,
  body > .site-footer .footer-bottom {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
    margin-top: 10px !important;
    padding: 18px 0 0 !important;
  }
}

/* Final 390 px polish. This duplicate is intentionally last so it wins over older mobile rules. */
@media (max-width: 760px) {
  .tripdoc-html-block .site-header,
  body > .site-header {
    width: calc(100% - 32px) !important;
    max-width: 358px !important;
    min-height: 44px !important;
    margin: 0 auto -52px !important;
    padding: 0 6px 0 14px !important;
    border-radius: 24px !important;
  }

  .tripdoc-html-block .site-header .logo,
  body > .site-header .logo {
    flex: 0 0 126px !important;
    width: 126px !important;
    height: 31px !important;
  }

  .tripdoc-html-block .site-header > .header-cta,
  .tripdoc-html-block .site-header > .btn.header-cta,
  .tripdoc-html-block .tripdoc-header-hero-block .site-header > .header-cta,
  body > .site-header > .header-cta,
  body > .site-header > .btn.header-cta {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    min-width: 0 !important;
    max-width: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
  }

  .tripdoc-html-block .menu-toggle,
  body > .site-header .menu-toggle {
    flex: 0 0 36px !important;
    margin-left: auto !important;
  }

  .tripdoc-html-block .pain-stack,
  body > .page-grid .pain-stack {
    width: min(410px, calc(100vw + 28px)) !important;
    height: auto !important;
    aspect-ratio: 587 / 596 !important;
    margin: -42px 0 0 50% !important;
    transform: translateX(-50%) !important;
  }

  .tripdoc-html-block .other-way,
  .tripdoc-html-block .quiz-start,
  .tripdoc-html-block .community,
  .tripdoc-html-block .founders,
  body > .page-grid .other-way,
  body > .page-grid .quiz-start,
  body > .page-grid .community,
  body > .page-grid .founders {
    background: var(--dark) !important;
  }

  .tripdoc-html-block .other-way .section-head,
  body > .page-grid .other-way .section-head {
    margin-bottom: 44px !important;
  }

  .tripdoc-html-block .polaroids,
  body > .page-grid .polaroids {
    align-items: center !important;
    gap: 18px !important;
    padding-left: 18px !important;
  }

  .tripdoc-html-block .other-way .polaroid,
  body > .page-grid .other-way .polaroid {
    position: relative !important;
  }

  .tripdoc-html-block .other-way .polaroid::before,
  body > .page-grid .other-way .polaroid::before {
    content: "" !important;
    position: absolute !important;
    left: 50% !important;
    top: -29px !important;
    z-index: 4 !important;
    width: 20px !important;
    height: 38px !important;
    background: url("https://static.tildacdn.com/tild3533-3437-4638-a335-633965663765/pin.png") center / contain no-repeat !important;
    transform: translateX(-50%) rotate(0deg) !important;
  }

  .tripdoc-html-block .polaroid:nth-child(1),
  body > .page-grid .polaroid:nth-child(1) {
    margin-left: 8px !important;
  }

  .tripdoc-html-block .polaroid:nth-child(2),
  body > .page-grid .polaroid:nth-child(2) {
    margin-left: 36px !important;
  }

  .tripdoc-html-block .polaroid:nth-child(3),
  body > .page-grid .polaroid:nth-child(3) {
    margin-left: 10px !important;
  }

  .tripdoc-html-block .quiz-start .photo-fan,
  .tripdoc-html-block .trip-carousel,
  .tripdoc-html-block .moments-carousel,
  body > .page-grid .quiz-start .photo-fan,
  body > .page-grid .trip-carousel,
  body > .page-grid .moments-carousel {
    border-bottom: 0 !important;
    background:
      linear-gradient(#caff62, #caff62) left bottom / 38% 4px no-repeat,
      linear-gradient(#fff, #fff) left bottom / 100% 4px no-repeat !important;
  }

  .tripdoc-html-block .quiz-start .photo-fan::after,
  .tripdoc-html-block .trip-carousel::after,
  .tripdoc-html-block .moments-carousel::after,
  body > .page-grid .quiz-start .photo-fan::after,
  body > .page-grid .trip-carousel::after,
  body > .page-grid .moments-carousel::after {
    display: none !important;
  }

  .tripdoc-html-block .decor-heart-small,
  body > .page-grid .decor-heart-small {
    right: 12px !important;
    top: 242px !important;
  }

  .tripdoc-html-block .decor-skis,
  body > .page-grid .decor-skis {
    right: 18px !important;
    top: 2px !important;
  }

  .tripdoc-html-block .decor-star-outline,
  body > .page-grid .decor-star-outline {
    right: 24px !important;
    top: 962px !important;
  }

  .tripdoc-html-block .decor-mountain,
  body > .page-grid .decor-mountain {
    right: 60px !important;
    bottom: 232px !important;
  }

  .tripdoc-html-block .mini-photo.c,
  body > .page-grid .mini-photo.c {
    bottom: 386px !important;
  }

  .tripdoc-html-block .mini-photo.d,
  body > .page-grid .mini-photo.d {
    bottom: 386px !important;
  }
}

/*
 * Shared interaction rules for homepage, quizzes and trips.
 * No layout, store, cart or modal selectors are changed here.
 */

.tdq-header-button,
.tdq-card-button,
.tdt-header-button,
.tdt-trip-button,
.tdt-team-cta-button {
  transform: none !important;
  filter: none !important;
  box-shadow: none !important;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease !important;
}

.tdq-header-button:hover,
.tdq-header-button:focus-visible,
.tdq-card-button_primary:hover,
.tdq-card-button_primary:focus-visible,
.tdt-header-button:hover,
.tdt-header-button:focus-visible,
.tdt-trip-button_primary:hover,
.tdt-trip-button_primary:focus-visible,
.tdt-team-cta-button:hover,
.tdt-team-cta-button:focus-visible {
  color: #fff !important;
  background: #202020 !important;
  border-color: #202020 !important;
}

.tdq-card-button_secondary:hover,
.tdq-card-button_secondary:focus-visible,
.tdt-trip-button_secondary:hover,
.tdt-trip-button_secondary:focus-visible {
  transform: none !important;
}

.tdq-card-button_primary span:last-child,
.tdt-team-cta-button span:last-child {
  font-size: 0 !important;
}

.tdq-card-button_primary span:last-child::before,
.tdt-team-cta-button span:last-child::before {
  content: "\2197";
  font-size: 24px;
  line-height: 1;
}

.tdq-card-button_primary:hover span:last-child::before,
.tdq-card-button_primary:focus-visible span:last-child::before,
.tdt-team-cta-button:hover span:last-child::before,
.tdt-team-cta-button:focus-visible span:last-child::before {
  content: "\2192";
}

.tdq-nav a,
.tdt-nav a,
.tripdoc-footer-block .site-footer nav a,
.tripdoc-footer-block .footer-bottom a {
  transition: color 140ms ease !important;
}

.tdq-nav a:hover,
.tdq-nav a:focus-visible,
.tdt-nav a:hover,
.tdt-nav a:focus-visible,
.tripdoc-footer-block .site-footer nav a:hover,
.tripdoc-footer-block .site-footer nav a:focus-visible,
.tripdoc-footer-block .footer-bottom a:hover,
.tripdoc-footer-block .footer-bottom a:focus-visible {
  color: #0173fd !important;
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .t-store__card[data-tdq-ready="true"],
#rec2354170351 .t-store__card[data-tdq-ready="true"],
:is(.uc-tripdoc-trips, .tripdoc-trips, #rec2355046761) .t-store__card {
  animation: none !important;
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .t-store__card__wrap_all,
#rec2354170351 .t-store__card__wrap_all {
  transition: none !important;
}

:is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor) .t-store__card__wrap_all:hover,
#rec2354170351 .t-store__card__wrap_all:hover {
  transform: none !important;
  box-shadow: none !important;
}

/*
 * Phone-only final overrides for the 390 px homepage references.
 * This file is concatenated last so older mobile rules cannot override it.
 */

@media (max-width: 520px) {
  .tripdoc-familiar-block,
  .tripdoc-other-block,
  .tripdoc-system-block,
  .tripdoc-quiz-start-block,
  .tripdoc-trips-block,
  .tripdoc-community-block,
  .tripdoc-moments-block,
  .tripdoc-founders-block,
  .tripdoc-final-block,
  .tripdoc-html-block:has(.familiar),
  .tripdoc-html-block:has(.other-way),
  .tripdoc-html-block:has(.system),
  .tripdoc-html-block:has(.quiz-start),
  .tripdoc-html-block:has(.trips),
  .tripdoc-html-block:has(.community),
  .tripdoc-html-block:has(.moments),
  .tripdoc-html-block:has(.founders),
  .tripdoc-html-block:has(.final-cta) {
    margin-top: 0 !important;
  }

  .tripdoc-other-block,
  .tripdoc-system-block,
  .tripdoc-quiz-start-block,
  .tripdoc-trips-block,
  .tripdoc-community-block,
  .tripdoc-moments-block,
  .tripdoc-founders-block,
  .tripdoc-final-block,
  .tripdoc-html-block:has(.other-way),
  .tripdoc-html-block:has(.system),
  .tripdoc-html-block:has(.quiz-start),
  .tripdoc-html-block:has(.trips),
  .tripdoc-html-block:has(.community),
  .tripdoc-html-block:has(.moments),
  .tripdoc-html-block:has(.founders),
  .tripdoc-html-block:has(.final-cta) {
    background-color: var(--paper, #fbfdff) !important;
    background-image:
      linear-gradient(90deg, transparent 0, var(--grid-line-soft, rgba(52, 53, 53, 0.045)) 1px, var(--line, rgba(52, 53, 53, 0.12)) 2px, transparent 4px),
      linear-gradient(90deg, transparent calc(33.333% - 2px), var(--grid-line-soft, rgba(52, 53, 53, 0.045)) calc(33.333% - 1px), var(--line, rgba(52, 53, 53, 0.12)) 33.333%, transparent calc(33.333% + 2px)),
      linear-gradient(90deg, transparent calc(66.666% - 2px), var(--grid-line-soft, rgba(52, 53, 53, 0.045)) calc(66.666% - 1px), var(--line, rgba(52, 53, 53, 0.12)) 66.666%, transparent calc(66.666% + 2px)),
      linear-gradient(90deg, transparent calc(100% - 4px), var(--grid-line-soft, rgba(52, 53, 53, 0.045)) calc(100% - 2px), var(--line, rgba(52, 53, 53, 0.12)) calc(100% - 1px), transparent 100%) !important;
    background-size: 100% 100% !important;
  }

  .tripdoc-html-block .site-header,
  body > .site-header {
    top: 10px !important;
    width: calc(100% - 32px) !important;
    max-width: 358px !important;
    min-height: 44px !important;
    margin: 0 auto -52px !important;
    padding: 0 6px 0 16px !important;
    border-radius: 24px !important;
  }

  .tripdoc-html-block .site-header .logo,
  body > .site-header .logo {
    flex: 0 0 126px !important;
    width: 126px !important;
    height: 31px !important;
  }

  .tripdoc-html-block .site-header > .btn,
  .tripdoc-html-block .site-header .header-cta,
  body > .site-header > .btn,
  body > .site-header .header-cta {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    min-width: 0 !important;
    max-width: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
  }

  .tripdoc-html-block .site-header .menu-toggle,
  body > .site-header .menu-toggle {
    display: grid !important;
    flex: 0 0 36px !important;
    width: 36px !important;
    height: 36px !important;
    margin-left: auto !important;
  }

  .tripdoc-html-block .familiar,
  body > .page-grid .familiar {
    min-height: 443px !important;
    height: 443px !important;
  }

  .tripdoc-html-block .pain-stack,
  body > .page-grid .pain-stack {
    width: min(410px, calc(100vw + 30px)) !important;
    max-width: none !important;
    height: auto !important;
    aspect-ratio: 587 / 596 !important;
    margin: -42px 0 0 50% !important;
    overflow: visible !important;
    transform: translateX(-50%) !important;
  }

  .tripdoc-html-block .other-way,
  .tripdoc-html-block .familiar,
  .tripdoc-html-block .system,
  .tripdoc-html-block .quiz-start,
  .tripdoc-html-block .trips,
  .tripdoc-html-block .community,
  .tripdoc-html-block .moments,
  .tripdoc-html-block .founders,
  body > .page-grid .other-way,
  body > .page-grid .familiar,
  body > .page-grid .system,
  body > .page-grid .quiz-start,
  body > .page-grid .trips,
  body > .page-grid .community,
  body > .page-grid .moments,
  body > .page-grid .founders {
    background-color: var(--paper, #fbfdff) !important;
    background-image:
      linear-gradient(90deg, transparent 0, var(--grid-line-soft, rgba(52, 53, 53, 0.045)) 1px, var(--line, rgba(52, 53, 53, 0.12)) 2px, transparent 4px),
      linear-gradient(90deg, transparent calc(33.333% - 2px), var(--grid-line-soft, rgba(52, 53, 53, 0.045)) calc(33.333% - 1px), var(--line, rgba(52, 53, 53, 0.12)) 33.333%, transparent calc(33.333% + 2px)),
      linear-gradient(90deg, transparent calc(66.666% - 2px), var(--grid-line-soft, rgba(52, 53, 53, 0.045)) calc(66.666% - 1px), var(--line, rgba(52, 53, 53, 0.12)) 66.666%, transparent calc(66.666% + 2px)),
      linear-gradient(90deg, transparent calc(100% - 4px), var(--grid-line-soft, rgba(52, 53, 53, 0.045)) calc(100% - 2px), var(--line, rgba(52, 53, 53, 0.12)) calc(100% - 1px), transparent 100%) !important;
    background-size: 100% 100% !important;
  }

  .tripdoc-html-block .other-way .polaroids,
  body > .page-grid .other-way .polaroids {
    align-items: center !important;
    padding-left: 22px !important;
    gap: 18px !important;
  }

  .tripdoc-html-block .other-way .polaroid:nth-child(1),
  body > .page-grid .other-way .polaroid:nth-child(1) {
    margin-left: 6px !important;
  }

  .tripdoc-html-block .other-way .polaroid:nth-child(2),
  body > .page-grid .other-way .polaroid:nth-child(2) {
    margin-left: 34px !important;
  }

  .tripdoc-html-block .other-way .polaroid:nth-child(3),
  body > .page-grid .other-way .polaroid:nth-child(3) {
    margin-left: 12px !important;
  }

  .tripdoc-html-block .quiz-start .photo-fan,
  .tripdoc-html-block .trip-carousel,
  .tripdoc-html-block .moments-carousel,
  body > .page-grid .quiz-start .photo-fan,
  body > .page-grid .trip-carousel,
  body > .page-grid .moments-carousel {
    position: relative !important;
    border-bottom: 0 !important;
    background: none !important;
  }

  .tripdoc-html-block .quiz-start .photo-fan::before,
  .tripdoc-html-block .trip-carousel::before,
  .tripdoc-html-block .moments-carousel::before,
  body > .page-grid .quiz-start .photo-fan::before,
  body > .page-grid .trip-carousel::before,
  body > .page-grid .moments-carousel::before {
    content: "" !important;
    position: absolute !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 20 !important;
    display: block !important;
    height: 4px !important;
    background: #fff !important;
    pointer-events: none !important;
  }

  .tripdoc-html-block .quiz-start .photo-fan::after,
  .tripdoc-html-block .trip-carousel::after,
  .tripdoc-html-block .moments-carousel::after,
  body > .page-grid .quiz-start .photo-fan::after,
  body > .page-grid .trip-carousel::after,
  body > .page-grid .moments-carousel::after {
    content: "" !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 21 !important;
    display: block !important;
    width: 38% !important;
    height: 4px !important;
    border: 0 !important;
    background: #caff62 !important;
    pointer-events: none !important;
  }

  .tripdoc-html-block .community,
  body > .page-grid .community {
    min-height: 1570px !important;
    height: 1570px !important;
  }

  .tripdoc-html-block .community-board,
  body > .page-grid .community-board {
    min-height: 1168px !important;
    overflow: visible !important;
  }

  .tripdoc-html-block .community .bubble,
  body > .page-grid .community .bubble {
    right: auto !important;
    left: 50% !important;
    width: calc(100vw - 32px) !important;
    max-width: 358px !important;
    transform: translateX(-50%) !important;
  }

  .tripdoc-html-block .mini-photo.c,
  body > .page-grid .mini-photo.c,
  .tripdoc-html-block .mini-photo.d,
  body > .page-grid .mini-photo.d {
    bottom: 530px !important;
  }

  .tripdoc-html-block .mini-photo.e,
  body > .page-grid .mini-photo.e {
    bottom: 170px !important;
  }

  .tripdoc-html-block .decor-heart-small,
  body > .page-grid .decor-heart-small {
    right: -4px !important;
    top: 218px !important;
  }

  .tripdoc-html-block .decor-skis,
  body > .page-grid .decor-skis {
    right: 38px !important;
    top: -2px !important;
  }

  .tripdoc-html-block .decor-star-outline,
  body > .page-grid .decor-star-outline {
    right: 20px !important;
    top: 1060px !important;
  }

  .tripdoc-html-block .decor-mountain,
  body > .page-grid .decor-mountain {
    right: 64px !important;
    bottom: 290px !important;
  }
}

/* 17-mobile-catalogs-popups-and-plain-background-final.css */
@media (max-width: 760px) {
  .tdq-header,
  .tdt-header {
    grid-template-columns: auto 1fr auto !important;
  }

  .tdq-menu-button,
  .tdt-menu-button,
  .tripdoc-html-block .site-header .menu-toggle,
  body > .site-header .menu-toggle {
    position: relative !important;
    display: grid !important;
    place-items: center !important;
    width: 36px !important;
    height: 36px !important;
    padding: 0 !important;
    border: 1px solid rgba(35, 35, 35, 0.22) !important;
    border-radius: 50% !important;
    background: #fff !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12) !important;
  }

  .tdq-menu-button span,
  .tdt-menu-button span,
  .tripdoc-html-block .site-header .menu-toggle span,
  body > .site-header .menu-toggle span {
    position: absolute !important;
    left: 9px !important;
    width: 18px !important;
    height: 2px !important;
    border-radius: 2px !important;
    background: #202226 !important;
    transform-origin: center !important;
  }

  .tdq-menu-button span:nth-child(1),
  .tdt-menu-button span:nth-child(1),
  .tripdoc-html-block .site-header .menu-toggle span:nth-child(1),
  body > .site-header .menu-toggle span:nth-child(1) {
    top: 13px !important;
  }

  .tdq-menu-button span:nth-child(2),
  .tdt-menu-button span:nth-child(2),
  .tripdoc-html-block .site-header .menu-toggle span:nth-child(2),
  body > .site-header .menu-toggle span:nth-child(2) {
    top: 17px !important;
  }

  .tdq-menu-button span:nth-child(3),
  .tdt-menu-button span:nth-child(3),
  .tripdoc-html-block .site-header .menu-toggle span:nth-child(3),
  body > .site-header .menu-toggle span:nth-child(3) {
    top: 21px !important;
  }

  .tdq-menu-button[aria-expanded="true"] span:nth-child(1),
  .tdt-menu-button[aria-expanded="true"] span:nth-child(1),
  body.menu-open .tripdoc-html-block .site-header .menu-toggle span:nth-child(1),
  body.menu-open > .site-header .menu-toggle span:nth-child(1) {
    top: 17px !important;
    transform: rotate(45deg) !important;
  }

  .tdq-menu-button[aria-expanded="true"] span:nth-child(2),
  .tdt-menu-button[aria-expanded="true"] span:nth-child(2),
  body.menu-open .tripdoc-html-block .site-header .menu-toggle span:nth-child(2),
  body.menu-open > .site-header .menu-toggle span:nth-child(2) {
    opacity: 0 !important;
  }

  .tdq-menu-button[aria-expanded="true"] span:nth-child(3),
  .tdt-menu-button[aria-expanded="true"] span:nth-child(3),
  body.menu-open .tripdoc-html-block .site-header .menu-toggle span:nth-child(3),
  body.menu-open > .site-header .menu-toggle span:nth-child(3) {
    top: 17px !important;
    transform: rotate(-45deg) !important;
  }

  :is(.uc-tripdoc-trips, .tripdoc-trips, #rec2355046761) .t-store__card-list {
    justify-items: center !important;
    align-items: start !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  :is(.uc-tripdoc-trips, .tripdoc-trips, #rec2355046761) .t-store__card {
    grid-column: auto !important;
    width: min(348px, calc(100vw - 32px)) !important;
    max-width: 348px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    justify-self: center !important;
  }

  :is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor, #rec2354170351) .t-store__card-list {
    justify-items: center !important;
  }

  :is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor, #rec2354170351) .t-store__card {
    width: min(350px, calc(100vw - 32px)) !important;
    max-width: 350px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    justify-self: center !important;
  }

  .tdq-details-dialog,
  .tdt-details-dialog,
  .uc-tripdoc-cart .t706__cartwin-content {
    position: relative !important;
    overflow: auto !important;
  }

  .tdq-modal-close,
  .tdt-modal-close,
  .uc-tripdoc-cart .t706__cartwin-close {
    position: absolute !important;
    top: 18px !important;
    right: 18px !important;
    left: auto !important;
    z-index: 30 !important;
    width: 38px !important;
    height: 38px !important;
    border: 1px solid rgba(48, 48, 51, 0.34) !important;
    border-radius: 50% !important;
    background: #fff !important;
    color: #303033 !important;
    transform: none !important;
  }

  .uc-tripdoc-cart .t706__cartwin-close-wrapper {
    width: 38px !important;
    height: 38px !important;
    border: 0 !important;
    background: transparent !important;
  }

  .tdq-details-dialog h2,
  .tdt-details-dialog h2,
  .uc-tripdoc-cart .t706__cartwin-heading {
    padding-right: 46px !important;
  }

  .tdq-details-book,
  .tdt-details-book,
  .uc-tripdoc-cart .t-submit {
    opacity: 1 !important;
    color: #202226 !important;
    background: #ceff72 !important;
    border-color: #ceff72 !important;
    filter: none !important;
  }

  .tdq-details-book .t-btnflex__text,
  .tdt-details-book .t-btnflex__text,
  .uc-tripdoc-cart .t-submit .t-btnflex__text,
  .uc-tripdoc-cart .t-submit:hover .t-btnflex__text {
    color: #202226 !important;
  }

  .tdq-details-book:hover,
  .tdt-details-book:hover,
  .uc-tripdoc-cart .t-submit:hover {
    color: #fff !important;
    background: #202226 !important;
    border-color: #202226 !important;
  }

  .tdq-details-book:hover .t-btnflex__text,
  .tdt-details-book:hover .t-btnflex__text,
  .uc-tripdoc-cart .t-submit:hover .t-btnflex__text {
    color: #fff !important;
  }
}

@media (max-width: 520px) {
  .tripdoc-familiar-block,
  .tripdoc-system-block,
  .tripdoc-trips-block,
  .tripdoc-moments-block,
  .tripdoc-final-block,
  .tripdoc-html-block:has(.familiar),
  .tripdoc-html-block:has(.system),
  .tripdoc-html-block:has(.trips),
  .tripdoc-html-block:has(.moments),
  .tripdoc-html-block:has(.final-cta),
  .tripdoc-html-block .familiar,
  .tripdoc-html-block .system,
  .tripdoc-html-block .trips,
  .tripdoc-html-block .moments,
  .tripdoc-html-block .final-cta,
  body > .page-grid .familiar,
  body > .page-grid .system,
  body > .page-grid .trips,
  body > .page-grid .moments,
  body > .page-grid .final-cta {
    background-color: #fbfdff !important;
    background-image: none !important;
  }

  .tripdoc-other-block,
  .tripdoc-quiz-start-block,
  .tripdoc-community-block,
  .tripdoc-founders-block,
  .tripdoc-html-block:has(.other-way),
  .tripdoc-html-block:has(.quiz-start),
  .tripdoc-html-block:has(.community),
  .tripdoc-html-block:has(.founders),
  .tripdoc-html-block .other-way,
  .tripdoc-html-block .quiz-start,
  .tripdoc-html-block .community,
  .tripdoc-html-block .founders,
  body > .page-grid .other-way,
  body > .page-grid .quiz-start,
  body > .page-grid .community,
  body > .page-grid .founders {
    background-color: #303033 !important;
    background-image: none !important;
  }

  .tripdoc-html-block .familiar,
  body > .page-grid .familiar {
    min-height: 585px !important;
    height: auto !important;
    padding: 52px 16px 42px !important;
    overflow: hidden !important;
  }

  .tripdoc-html-block .pain-stack,
  body > .page-grid .pain-stack {
    width: min(330px, calc(100vw - 32px)) !important;
    max-width: 330px !important;
    aspect-ratio: 1 / 1 !important;
    margin: 34px auto 0 !important;
    transform: none !important;
  }

  .tripdoc-html-block .pain-stack .pain-card,
  body > .page-grid .pain-stack .pain-card {
    border-radius: 18px !important;
  }

  .tripdoc-html-block .other-way,
  body > .page-grid .other-way {
    min-height: 1640px !important;
    height: auto !important;
    padding-bottom: 86px !important;
    overflow: hidden !important;
  }

  .tripdoc-html-block .other-way .polaroids,
  body > .page-grid .other-way .polaroids {
    align-items: center !important;
    width: 100% !important;
    padding-left: 0 !important;
    gap: 30px !important;
  }

  .tripdoc-html-block .other-way .polaroid,
  body > .page-grid .other-way .polaroid {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .tripdoc-html-block .system,
  body > .page-grid .system {
    min-height: 1560px !important;
  }

  .tripdoc-html-block .quiz-start .photo-fan,
  .tripdoc-html-block .trip-carousel,
  .tripdoc-html-block .moments-carousel,
  body > .page-grid .quiz-start .photo-fan,
  body > .page-grid .trip-carousel,
  body > .page-grid .moments-carousel {
    position: relative !important;
    padding-bottom: 16px !important;
    border-bottom: 0 !important;
    background: transparent !important;
  }

  .tripdoc-html-block .quiz-start .photo-fan::before,
  .tripdoc-html-block .trip-carousel::before,
  .tripdoc-html-block .moments-carousel::before,
  body > .page-grid .quiz-start .photo-fan::before,
  body > .page-grid .trip-carousel::before,
  body > .page-grid .moments-carousel::before {
    content: "" !important;
    position: absolute !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 20 !important;
    display: block !important;
    width: 100% !important;
    height: 4px !important;
    background: #e8e8e8 !important;
    pointer-events: none !important;
  }

  .tripdoc-html-block .quiz-start .photo-fan::after,
  .tripdoc-html-block .trip-carousel::after,
  .tripdoc-html-block .moments-carousel::after,
  body > .page-grid .quiz-start .photo-fan::after,
  body > .page-grid .trip-carousel::after,
  body > .page-grid .moments-carousel::after {
    content: "" !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 21 !important;
    display: block !important;
    width: 38% !important;
    height: 4px !important;
    background: #caff62 !important;
    pointer-events: none !important;
  }

  .tripdoc-html-block .trips,
  body > .page-grid .trips {
    min-height: 840px !important;
    padding-bottom: 44px !important;
  }

  .tripdoc-html-block .community,
  body > .page-grid .community {
    min-height: 1588px !important;
  }

  .tripdoc-html-block .mini-photo.d,
  body > .page-grid .mini-photo.d {
    bottom: 420px !important;
  }

  .tripdoc-html-block .mini-photo.e,
  body > .page-grid .mini-photo.e {
    right: 58px !important;
    bottom: 132px !important;
  }

  .tripdoc-html-block .decor-mountain,
  body > .page-grid .decor-mountain {
    right: 72px !important;
    bottom: 250px !important;
  }

  .tripdoc-html-block .decor-star-outline,
  body > .page-grid .decor-star-outline {
    right: 18px !important;
    top: 990px !important;
  }

  .tripdoc-html-block .moments,
  body > .page-grid .moments {
    min-height: 650px !important;
  }

  .tripdoc-html-block .final-cta,
  body > .page-grid .final-cta {
    min-height: 318px !important;
    padding-top: 42px !important;
  }
}

/* 19-mobile-390-final-override.css
   Final mobile-only override for the 390px layout. Keep desktop unchanged. */
@media (max-width: 520px) {
  html,
  body {
    background: #fbfdff !important;
  }

  .tripdoc-html-block,
  .tripdoc-html-block:has(.familiar),
  .tripdoc-html-block:has(.system),
  .tripdoc-html-block:has(.trips),
  .tripdoc-html-block:has(.moments),
  .tripdoc-html-block:has(.final-cta),
  .tripdoc-familiar-block,
  .tripdoc-system-block,
  .tripdoc-trips-block,
  .tripdoc-moments-block,
  .tripdoc-final-block,
  .tripdoc-html-block .familiar,
  .tripdoc-html-block .system,
  .tripdoc-html-block .trips,
  .tripdoc-html-block .moments,
  .tripdoc-html-block .final-cta,
  body > .page-grid .familiar,
  body > .page-grid .system,
  body > .page-grid .trips,
  body > .page-grid .moments,
  body > .page-grid .final-cta {
    background: #fbfdff !important;
    background-image: none !important;
  }

  .tripdoc-other-block,
  .tripdoc-quiz-start-block,
  .tripdoc-community-block,
  .tripdoc-founders-block,
  .tripdoc-html-block:has(.other-way),
  .tripdoc-html-block:has(.quiz-start),
  .tripdoc-html-block:has(.community),
  .tripdoc-html-block:has(.founders),
  .tripdoc-html-block .other-way,
  .tripdoc-html-block .quiz-start,
  .tripdoc-html-block .community,
  .tripdoc-html-block .founders,
  body > .page-grid .other-way,
  body > .page-grid .quiz-start,
  body > .page-grid .community,
  body > .page-grid .founders {
    background: #303033 !important;
    background-image: none !important;
  }

  .tripdoc-html-block .site-header,
  body > .site-header {
    position: absolute !important;
    top: 10px !important;
    left: 50% !important;
    z-index: 30 !important;
    display: grid !important;
    grid-template-columns: 1fr auto 36px !important;
    align-items: center !important;
    width: calc(100% - 32px) !important;
    max-width: 358px !important;
    min-height: 54px !important;
    margin: 0 !important;
    padding: 0 8px 0 16px !important;
    column-gap: 8px !important;
    transform: translateX(-50%) !important;
    border-radius: 29px !important;
    background: #fff !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14) !important;
  }

  .tripdoc-html-block .site-header .logo,
  body > .site-header .logo,
  .tripdoc-html-block .site-header .logo img,
  body > .site-header .logo img {
    width: 126px !important;
    min-width: 126px !important;
    max-width: 126px !important;
    height: auto !important;
  }

  .tripdoc-html-block .site-header > .btn,
  .tripdoc-html-block .site-header > .header-cta,
  .tripdoc-html-block .site-header .header-cta,
  body > .site-header > .btn,
  body > .site-header > .header-cta,
  body > .site-header .header-cta {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 126px !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 13px !important;
    border: 0 !important;
    border-radius: 24px !important;
    background: #ceff72 !important;
    color: #202226 !important;
    font-family: "Unbounded", Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .tripdoc-html-block .site-header .menu-toggle,
  body > .site-header .menu-toggle,
  .tdq-menu-button,
  .tdt-menu-button {
    display: block !important;
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    padding: 0 !important;
    border: 1px solid rgba(48, 48, 51, 0.32) !important;
    border-radius: 50% !important;
    background: #fff !important;
    box-shadow: none !important;
  }

  .tripdoc-html-block .site-header .menu-toggle span,
  body > .site-header .menu-toggle span,
  .tdq-menu-button span,
  .tdt-menu-button span {
    left: 9px !important;
    width: 18px !important;
    height: 2px !important;
    border-radius: 2px !important;
    background: #202226 !important;
  }

  .tripdoc-html-block .site-header .menu-toggle span:nth-child(1),
  body > .site-header .menu-toggle span:nth-child(1),
  .tdq-menu-button span:nth-child(1),
  .tdt-menu-button span:nth-child(1) {
    top: 13px !important;
  }

  .tripdoc-html-block .site-header .menu-toggle span:nth-child(2),
  body > .site-header .menu-toggle span:nth-child(2),
  .tdq-menu-button span:nth-child(2),
  .tdt-menu-button span:nth-child(2) {
    top: 17px !important;
  }

  .tripdoc-html-block .site-header .menu-toggle span:nth-child(3),
  body > .site-header .menu-toggle span:nth-child(3),
  .tdq-menu-button span:nth-child(3),
  .tdt-menu-button span:nth-child(3) {
    top: 21px !important;
  }

  .tdq-header,
  .tdt-header {
    display: grid !important;
    grid-template-columns: 1fr auto 36px !important;
    align-items: center !important;
    width: calc(100% - 32px) !important;
    max-width: 358px !important;
    min-height: 54px !important;
    margin: 10px auto 0 !important;
    padding: 0 8px 0 16px !important;
    column-gap: 8px !important;
    border-radius: 29px !important;
    background: #fff !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10) !important;
  }

  .tdq-logo,
  .tdt-logo,
  .tdq-logo img,
  .tdt-logo img {
    width: 126px !important;
    min-width: 126px !important;
    max-width: 126px !important;
    height: auto !important;
  }

  .tdq-header-button,
  .tdt-header-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 126px !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 13px !important;
    border-radius: 24px !important;
    background: #ceff72 !important;
    color: #202226 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .tdq-modal-close,
  .tdt-modal-close,
  .uc-tripdoc-cart .t706__cartwin-close {
    position: absolute !important;
    top: 16px !important;
    right: 16px !important;
    left: auto !important;
    z-index: 50 !important;
    display: grid !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    padding: 0 !important;
    place-items: center !important;
    transform: none !important;
    border: 1px solid rgba(48, 48, 51, 0.36) !important;
    border-radius: 50% !important;
    background: #fff !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 1 !important;
  }

  .tdq-modal-close::before,
  .tdq-modal-close::after,
  .tdt-modal-close::before,
  .tdt-modal-close::after,
  .uc-tripdoc-cart .t706__cartwin-close::before,
  .uc-tripdoc-cart .t706__cartwin-close::after {
    content: "" !important;
    position: absolute !important;
    width: 18px !important;
    height: 2px !important;
    border-radius: 2px !important;
    background: #303033 !important;
  }

  .tdq-modal-close::before,
  .tdt-modal-close::before,
  .uc-tripdoc-cart .t706__cartwin-close::before {
    transform: rotate(45deg) !important;
  }

  .tdq-modal-close::after,
  .tdt-modal-close::after,
  .uc-tripdoc-cart .t706__cartwin-close::after {
    transform: rotate(-45deg) !important;
  }

  .uc-tripdoc-cart .t706__cartwin-close-wrapper,
  .uc-tripdoc-cart .t706__cartwin-close-icon {
    opacity: 0 !important;
  }

  .tripdoc-html-block .familiar,
  body > .page-grid .familiar {
    height: auto !important;
    min-height: 544px !important;
    padding: 48px 0 36px !important;
    overflow: hidden !important;
  }

  .tripdoc-html-block .pain-stack,
  body > .page-grid .pain-stack {
    position: relative !important;
    display: flex !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    margin: 28px 0 0 !important;
    padding: 0 31px 22px !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
    transform: none !important;
  }

  .tripdoc-html-block .pain-stack::-webkit-scrollbar,
  body > .page-grid .pain-stack::-webkit-scrollbar {
    display: none !important;
  }

  .tripdoc-html-block .pain-stack .pain-card,
  body > .page-grid .pain-stack .pain-card {
    position: relative !important;
    inset: auto !important;
    flex: 0 0 328px !important;
    width: 328px !important;
    height: 328px !important;
    max-width: calc(100vw - 62px) !important;
    opacity: 1 !important;
    transform: none !important;
    scroll-snap-align: center !important;
    pointer-events: auto !important;
  }

  .tripdoc-html-block .pain-stack .pain-card span,
  .tripdoc-html-block .pain-stack .pain-card::after,
  body > .page-grid .pain-stack .pain-card span,
  body > .page-grid .pain-stack .pain-card::after {
    opacity: 1 !important;
  }

  .tripdoc-html-block .pain-stack::before,
  .tripdoc-html-block .quiz-start .photo-fan::before,
  .tripdoc-html-block .trip-carousel::before,
  .tripdoc-html-block .moments-carousel::before,
  body > .page-grid .pain-stack::before,
  body > .page-grid .quiz-start .photo-fan::before,
  body > .page-grid .trip-carousel::before,
  body > .page-grid .moments-carousel::before {
    content: "" !important;
    position: absolute !important;
    right: 31px !important;
    bottom: 0 !important;
    left: 31px !important;
    z-index: 20 !important;
    display: block !important;
    height: 4px !important;
    background: #e8e8e8 !important;
    pointer-events: none !important;
  }

  .tripdoc-html-block .pain-stack::after,
  .tripdoc-html-block .quiz-start .photo-fan::after,
  .tripdoc-html-block .trip-carousel::after,
  .tripdoc-html-block .moments-carousel::after,
  body > .page-grid .pain-stack::after,
  body > .page-grid .quiz-start .photo-fan::after,
  body > .page-grid .trip-carousel::after,
  body > .page-grid .moments-carousel::after {
    content: "" !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 31px !important;
    z-index: 21 !important;
    display: block !important;
    width: var(--tripdoc-slider-progress, 36%) !important;
    max-width: calc(100% - 62px) !important;
    height: 4px !important;
    background: #caff62 !important;
    pointer-events: none !important;
  }

  .tripdoc-html-block .other-way,
  body > .page-grid .other-way {
    height: auto !important;
    min-height: 1280px !important;
    padding: 46px 0 58px !important;
    overflow: hidden !important;
  }

  .tripdoc-html-block .other-way .section-head,
  body > .page-grid .other-way .section-head {
    margin-bottom: 24px !important;
  }

  .tripdoc-html-block .other-way .polaroids,
  body > .page-grid .other-way .polaroids {
    align-items: center !important;
    width: 100% !important;
    padding-left: 0 !important;
    gap: 28px !important;
  }

  .tripdoc-html-block .other-way .polaroid,
  body > .page-grid .other-way .polaroid {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .tripdoc-html-block .system,
  body > .page-grid .system {
    height: auto !important;
    min-height: 1532px !important;
    padding: 42px 16px 54px !important;
    color: #303033 !important;
  }

  .tripdoc-html-block .system .section-head,
  body > .page-grid .system .section-head {
    margin-bottom: 44px !important;
  }

  .tripdoc-html-block .quiz-start,
  body > .page-grid .quiz-start {
    height: auto !important;
    min-height: 0 !important;
    padding: 48px 0 48px !important;
  }

  .tripdoc-html-block .quiz-start .photo-fan,
  body > .page-grid .quiz-start .photo-fan {
    position: relative !important;
    display: flex !important;
    width: 100% !important;
    max-width: none !important;
    margin: 34px 0 30px !important;
    padding: 0 16px 20px !important;
    gap: 12px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
  }

  .tripdoc-html-block .quiz-start .photo-fan::-webkit-scrollbar,
  body > .page-grid .quiz-start .photo-fan::-webkit-scrollbar {
    display: none !important;
  }

  .tripdoc-html-block .photo-fan img,
  body > .page-grid .photo-fan img {
    position: static !important;
    flex: 0 0 356px !important;
    width: 356px !important;
    max-width: calc(100vw - 34px) !important;
    height: auto !important;
    transform: none !important;
    scroll-snap-align: center !important;
  }

  .tripdoc-html-block .trips,
  body > .page-grid .trips {
    height: auto !important;
    min-height: 0 !important;
    padding: 48px 0 44px !important;
    overflow: hidden !important;
  }

  .tripdoc-html-block .trip-carousel,
  body > .page-grid .trip-carousel {
    position: relative !important;
    display: flex !important;
    width: 100% !important;
    margin: 34px 0 28px !important;
    padding: 0 31px 20px !important;
    gap: 12px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
  }

  .tripdoc-html-block .trip-carousel::-webkit-scrollbar,
  body > .page-grid .trip-carousel::-webkit-scrollbar {
    display: none !important;
  }

  .tripdoc-html-block .trip-carousel > *,
  body > .page-grid .trip-carousel > * {
    flex: 0 0 328px !important;
    width: 328px !important;
    max-width: calc(100vw - 62px) !important;
    scroll-snap-align: center !important;
  }

  .tripdoc-html-block .community,
  body > .page-grid .community {
    height: auto !important;
    min-height: 1548px !important;
    padding: 46px 16px 54px !important;
    overflow: hidden !important;
  }

  .tripdoc-html-block .community-board,
  body > .page-grid .community-board {
    min-height: 1210px !important;
    margin-top: 28px !important;
  }

  .tripdoc-html-block .mini-photo.c,
  body > .page-grid .mini-photo.c,
  .tripdoc-html-block .mini-photo.d,
  body > .page-grid .mini-photo.d {
    bottom: 530px !important;
  }

  .tripdoc-html-block .mini-photo.e,
  body > .page-grid .mini-photo.e {
    right: 48px !important;
    bottom: 152px !important;
    transform: rotate(10deg) !important;
  }

  .tripdoc-html-block .decor-mountain,
  body > .page-grid .decor-mountain {
    right: 70px !important;
    bottom: 278px !important;
  }

  .tripdoc-html-block .decor-star-outline,
  body > .page-grid .decor-star-outline {
    right: 14px !important;
    top: 1028px !important;
  }

  .tripdoc-html-block .moments,
  body > .page-grid .moments {
    height: auto !important;
    min-height: 0 !important;
    padding: 46px 0 42px !important;
    overflow: hidden !important;
  }

  .tripdoc-html-block .moments-carousel,
  body > .page-grid .moments-carousel {
    position: relative !important;
    display: flex !important;
    width: 100% !important;
    margin: 30px 0 0 !important;
    padding: 0 26px 20px !important;
    gap: 12px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
  }

  .tripdoc-html-block .moments-carousel::-webkit-scrollbar,
  body > .page-grid .moments-carousel::-webkit-scrollbar {
    display: none !important;
  }

  .tripdoc-html-block .moments-carousel img,
  body > .page-grid .moments-carousel img {
    position: static !important;
    flex: 0 0 338px !important;
    width: 338px !important;
    max-width: calc(100vw - 52px) !important;
    height: 236px !important;
    object-fit: cover !important;
    transform: none !important;
    scroll-snap-align: center !important;
  }

  .tripdoc-html-block .final-cta,
  body > .page-grid .final-cta {
    height: auto !important;
    min-height: 286px !important;
    padding: 42px 16px 38px !important;
  }

  :is(.uc-tripdoc-trips, .tripdoc-trips, #rec2355046761) .t-store__card-list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    gap: 24px !important;
  }

  :is(.uc-tripdoc-trips, .tripdoc-trips, #rec2355046761) .t-store__card {
    width: min(348px, calc(100vw - 32px)) !important;
    max-width: 348px !important;
    margin: 0 auto !important;
    justify-self: center !important;
    grid-column: auto !important;
    grid-row: auto !important;
  }
}

/* 23-mobile-390-true-final.css */
@media (max-width: 520px) {
  html, body, #allrecords, .t-records, .t-rec, .t396, .t396__artboard,
  .t396__carrier, .t396__filter, .t-container, .t-container_100, .t-col,
  .t-store, .t-store__grid-cont, .t-store__card-list, .tdq-page-head,
  .tdq-intro, .tdt-page-head, .tdt-intro, .tripdoc-html-block, .page-grid {
    background-color: #fbfdff !important;
    background-image: none !important;
  }

  body::before, .page-grid::before, .t-rec::before, .t-rec::after,
  .t396::before, .t396::after, .t396__artboard::before, .t396__artboard::after,
  .t396__carrier::before, .t396__carrier::after, .tripdoc-html-block::before,
  .tripdoc-html-block::after {
    display: none !important;
    content: none !important;
    background: none !important;
    background-image: none !important;
  }

  .tripdoc-html-block:has(.other-way), .tripdoc-html-block:has(.quiz-start),
  .tripdoc-html-block:has(.community), .tripdoc-html-block:has(.founders),
  .tripdoc-html-block .other-way, .tripdoc-html-block .quiz-start,
  .tripdoc-html-block .community, .tripdoc-html-block .founders,
  body > .page-grid .other-way, body > .page-grid .quiz-start,
  body > .page-grid .community, body > .page-grid .founders {
    background-color: #303033 !important;
    background-image: none !important;
  }

  .tripdoc-html-block:has(.familiar), .tripdoc-html-block:has(.system),
  .tripdoc-html-block:has(.trips), .tripdoc-html-block:has(.moments),
  .tripdoc-html-block:has(.final-cta), .tripdoc-html-block .familiar,
  .tripdoc-html-block .system, .tripdoc-html-block .trips,
  .tripdoc-html-block .moments, .tripdoc-html-block .final-cta,
  body > .page-grid .familiar, body > .page-grid .system,
  body > .page-grid .trips, body > .page-grid .moments,
  body > .page-grid .final-cta {
    background-color: #fbfdff !important;
    background-image: none !important;
  }

  .tripdoc-html-block .site-header, body > .site-header,
  .tdq-header, .tdt-header {
    display: grid !important;
    grid-template-columns: 126px 1fr 36px !important;
    width: calc(100% - 32px) !important;
    max-width: 358px !important;
    min-height: 54px !important;
    margin: 10px auto 0 !important;
    padding: 0 8px 0 16px !important;
    column-gap: 8px !important;
    align-items: center !important;
    border-radius: 29px !important;
    background: #fff !important;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .16) !important;
  }

  .tripdoc-html-block .site-header .main-nav, body > .site-header .main-nav,
  .tdq-nav, .tdt-nav {
    display: none !important;
  }

  .tdq-nav.is-open, .tdt-nav.is-open {
    display: flex !important;
  }

  .tripdoc-html-block .site-header .logo, body > .site-header .logo,
  .tripdoc-html-block .site-header .logo img, body > .site-header .logo img,
  .tdq-logo, .tdt-logo, .tdq-logo img, .tdt-logo img {
    display: block !important;
    width: 126px !important;
    min-width: 126px !important;
    max-width: 126px !important;
    height: auto !important;
    overflow: hidden !important;
    color: transparent !important;
    font-size: 0 !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: left center !important;
  }

  .tripdoc-html-block .site-header .header-cta, body > .site-header .header-cta,
  .tdq-header-button, .tdt-header-button {
    display: flex !important;
    min-width: 0 !important;
    width: 100% !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 12px !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 24px !important;
    background: #ceff72 !important;
    color: #202226 !important;
    font-family: "Unbounded", Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .tripdoc-html-block .site-header .menu-toggle, body > .site-header .menu-toggle,
  .tdq-menu-button, .tdt-menu-button {
    display: block !important;
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    border: 1px solid rgba(48, 48, 51, .34) !important;
    border-radius: 50% !important;
    background: #fff !important;
  }

  .tripdoc-html-block .pain-stack, .tripdoc-html-block .quiz-start .photo-fan,
  .tripdoc-html-block .trip-carousel, .tripdoc-html-block .moments-carousel,
  body > .page-grid .pain-stack, body > .page-grid .quiz-start .photo-fan,
  body > .page-grid .trip-carousel, body > .page-grid .moments-carousel {
    position: relative !important;
    background-color: transparent !important;
    background-image: linear-gradient(to right, #e8e8e8 0 var(--tripdoc-slider-start, 0%), #caff62 var(--tripdoc-slider-start, 0%) var(--tripdoc-slider-end, 25%), #e8e8e8 var(--tripdoc-slider-end, 25%) 100%) !important;
    background-repeat: no-repeat !important;
    background-position: left 31px bottom !important;
    background-size: calc(100% - 62px) 4px !important;
  }

  .tripdoc-html-block .pain-stack::before, .tripdoc-html-block .pain-stack::after,
  .tripdoc-html-block .quiz-start .photo-fan::before, .tripdoc-html-block .quiz-start .photo-fan::after,
  .tripdoc-html-block .trip-carousel::before, .tripdoc-html-block .trip-carousel::after,
  .tripdoc-html-block .moments-carousel::before, .tripdoc-html-block .moments-carousel::after,
  body > .page-grid .pain-stack::before, body > .page-grid .pain-stack::after,
  body > .page-grid .quiz-start .photo-fan::before, body > .page-grid .quiz-start .photo-fan::after,
  body > .page-grid .trip-carousel::before, body > .page-grid .trip-carousel::after,
  body > .page-grid .moments-carousel::before, body > .page-grid .moments-carousel::after {
    display: none !important;
    content: none !important;
  }

  .tripdoc-html-block .familiar, body > .page-grid .familiar {
    min-height: 660px !important;
    height: auto !important;
    padding: 54px 0 42px !important;
    overflow: hidden !important;
  }

  .tripdoc-html-block .pain-stack, body > .page-grid .pain-stack {
    display: flex !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    margin: 34px 0 0 !important;
    padding: 0 31px 34px !important;
    gap: 12px !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
    transform: none !important;
  }

  .tripdoc-html-block .pain-stack .pain-card, body > .page-grid .pain-stack .pain-card {
    position: relative !important;
    inset: auto !important;
    flex: 0 0 328px !important;
    width: 328px !important;
    height: 328px !important;
    max-width: calc(100vw - 62px) !important;
    transform: none !important;
    opacity: 1 !important;
    scroll-snap-align: center !important;
  }

  .tripdoc-html-block .other-way, body > .page-grid .other-way {
    min-height: 1210px !important;
    height: auto !important;
    padding: 46px 0 50px !important;
    overflow: hidden !important;
  }

  .tripdoc-html-block .other-way .polaroids, body > .page-grid .other-way .polaroids {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    padding: 0 !important;
    gap: 28px !important;
  }

  .tripdoc-html-block .other-way .polaroid, body > .page-grid .other-way .polaroid {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .tripdoc-html-block .system, body > .page-grid .system {
    min-height: 1450px !important;
    height: auto !important;
    padding: 0 16px 42px !important;
    overflow: hidden !important;
    background: #fbfdff !important;
    color: #303033 !important;
  }

  .tripdoc-html-block .system .section-head, body > .page-grid .system .section-head {
    margin-bottom: 42px !important;
  }

  .tripdoc-html-block .step-line, body > .page-grid .step-line {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 358px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    gap: 0 !important;
  }

  .tripdoc-html-block .step-line::before, body > .page-grid .step-line::before {
    display: none !important;
  }

  .tripdoc-html-block .step-line li, body > .page-grid .step-line li {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 230px !important;
    padding: 0 0 72px !important;
    text-align: center !important;
    background: #fbfdff !important;
  }

  .tripdoc-html-block .step-line li:last-child, body > .page-grid .step-line li:last-child {
    min-height: 172px !important;
    padding-bottom: 0 !important;
  }

  .tripdoc-html-block .step-line li:not(:last-child)::after,
  body > .page-grid .step-line li:not(:last-child)::after {
    content: "\2193" !important;
    position: absolute !important;
    left: 50% !important;
    bottom: 16px !important;
    display: block !important;
    width: 1px !important;
    height: 56px !important;
    transform: translateX(-50%) !important;
    border-left: 2px dashed #b8b8b8 !important;
    color: #9d9d9d !important;
    font-size: 18px !important;
    line-height: 74px !important;
    background: none !important;
  }

  .tripdoc-html-block .step-line li:not(:last-child)::before,
  body > .page-grid .step-line li:not(:last-child)::before {
    display: none !important;
  }

  .tripdoc-html-block .step-icon, body > .page-grid .step-icon {
    width: 82px !important;
    height: 82px !important;
    margin: 0 0 14px !important;
    object-fit: contain !important;
  }

  .tripdoc-html-block .step-line h3, body > .page-grid .step-line h3 {
    margin: 0 0 6px !important;
    color: #303033 !important;
    font-family: "Unbounded", Arial, sans-serif !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 1.12 !important;
  }

  .tripdoc-html-block .step-line p, body > .page-grid .step-line p {
    max-width: 270px !important;
    margin: 0 auto !important;
    color: #6f6f73 !important;
    font-size: 13px !important;
    line-height: 1.18 !important;
  }

  .tripdoc-html-block .quiz-start .photo-fan, body > .page-grid .quiz-start .photo-fan,
  .tripdoc-html-block .trip-carousel, body > .page-grid .trip-carousel,
  .tripdoc-html-block .moments-carousel, body > .page-grid .moments-carousel {
    display: flex !important;
    width: 100% !important;
    max-width: none !important;
    padding: 0 31px 34px !important;
    gap: 12px !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
  }

  .tripdoc-html-block .quiz-start .photo-fan, body > .page-grid .quiz-start .photo-fan {
    margin: 34px 0 30px !important;
  }

  .tripdoc-html-block .photo-fan img, body > .page-grid .photo-fan img,
  .tripdoc-html-block .trip-carousel > *, body > .page-grid .trip-carousel > *,
  .tripdoc-html-block .moments-carousel img, body > .page-grid .moments-carousel img {
    scroll-snap-align: center !important;
  }

  .tripdoc-html-block .community, body > .page-grid .community {
    min-height: 1510px !important;
    height: auto !important;
    padding: 46px 16px 54px !important;
    overflow: hidden !important;
  }

  .tripdoc-html-block .mini-photo.e, body > .page-grid .mini-photo.e {
    right: 48px !important;
    bottom: 146px !important;
    transform: rotate(10deg) !important;
  }

  .tripdoc-html-block .decor-mountain, body > .page-grid .decor-mountain {
    right: 70px !important;
    bottom: 306px !important;
  }

  .tripdoc-html-block .decor-star-outline, body > .page-grid .decor-star-outline {
    right: 14px !important;
    top: 1060px !important;
  }

  .tdt-success-secondary {
    color: #202226 !important;
  }

  :is(.uc-tripdoc-trips, .tripdoc-trips, #rec2355046761) .t-store__card-list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    gap: 24px !important;
  }

  :is(.uc-tripdoc-trips, .tripdoc-trips, #rec2355046761) .t-store__card {
    grid-column: auto !important;
    grid-row: auto !important;
    width: min(348px, calc(100vw - 32px)) !important;
    max-width: 348px !important;
    margin: 0 auto !important;
    justify-self: center !important;
  }
}


/* 25-mobile-390-true-polish.css */
@media (max-width: 520px) {
  .tripdoc-html-block .site-header .logo,
  body > .site-header .logo {
    display: block !important;
    width: 126px !important;
    min-width: 126px !important;
    max-width: 126px !important;
    height: 36px !important;
    min-height: 36px !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
    overflow: hidden !important;
    background: url("https://static.tildacdn.com/tild3766-3666-4838-b832-643463646236/logo-tripdoc.png") left center / contain no-repeat !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .tripdoc-html-block .site-header .header-cta,
  body > .site-header .header-cta {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    color: #202226 !important;
    font-size: 13px !important;
    line-height: 1 !important;
  }

  .tripdoc-html-block .site-header .menu-toggle,
  body > .site-header .menu-toggle,
  .tdq-menu-button,
  .tdt-menu-button {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
  }

  .tripdoc-html-block .site-header .menu-toggle span,
  body > .site-header .menu-toggle span,
  .tdq-menu-button span,
  .tdt-menu-button span {
    position: absolute !important;
    left: 10px !important;
    display: block !important;
    width: 14px !important;
    height: 2px !important;
    border-radius: 2px !important;
    background: #202226 !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .tripdoc-html-block .site-header .menu-toggle span:nth-child(1),
  body > .site-header .menu-toggle span:nth-child(1),
  .tdq-menu-button span:nth-child(1),
  .tdt-menu-button span:nth-child(1) { top: 13px !important; }

  .tripdoc-html-block .site-header .menu-toggle span:nth-child(2),
  body > .site-header .menu-toggle span:nth-child(2),
  .tdq-menu-button span:nth-child(2),
  .tdt-menu-button span:nth-child(2) { top: 20px !important; }

  .tripdoc-html-block .site-header .menu-toggle span:nth-child(n + 3),
  body > .site-header .menu-toggle span:nth-child(n + 3),
  .tdq-menu-button span:nth-child(n + 3),
  .tdt-menu-button span:nth-child(n + 3) { display: none !important; }

  body.menu-open .tripdoc-html-block .site-header .menu-toggle span:nth-child(1),
  body.menu-open > .site-header .menu-toggle span:nth-child(1),
  .tdq-menu-button[aria-expanded="true"] span:nth-child(1),
  .tdt-menu-button[aria-expanded="true"] span:nth-child(1) {
    top: 17px !important;
    transform: rotate(45deg) !important;
  }

  body.menu-open .tripdoc-html-block .site-header .menu-toggle span:nth-child(2),
  body.menu-open > .site-header .menu-toggle span:nth-child(2),
  .tdq-menu-button[aria-expanded="true"] span:nth-child(2),
  .tdt-menu-button[aria-expanded="true"] span:nth-child(2) {
    top: 17px !important;
    transform: rotate(-45deg) !important;
  }

  .tripdoc-html-block .pain-stack .pain-card,
  body > .page-grid .pain-stack .pain-card {
    background-position: center !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
  }

  .tripdoc-html-block .pain-stack .pain-card span,
  .tripdoc-html-block .pain-stack .pain-card::before,
  .tripdoc-html-block .pain-stack .pain-card::after,
  body > .page-grid .pain-stack .pain-card span,
  body > .page-grid .pain-stack .pain-card::before,
  body > .page-grid .pain-stack .pain-card::after {
    display: none !important;
    content: none !important;
  }

  .tripdoc-html-block .pain-stack .pain-card.pain-card--dark,
  body > .page-grid .pain-stack .pain-card.pain-card--dark {
    background-image: url("https://static.tildacdn.com/tild6232-3663-4661-a339-383636643139/Card-1-tablet.png") !important;
  }
  .tripdoc-html-block .pain-stack .pain-card.pain-card--blue,
  body > .page-grid .pain-stack .pain-card.pain-card--blue {
    background-image: url("https://static.tildacdn.com/tild3761-3366-4161-a338-313536666261/Card-5-tablet.png") !important;
  }
  .tripdoc-html-block .pain-stack .pain-card.pain-card--lime,
  body > .page-grid .pain-stack .pain-card.pain-card--lime {
    background-image: url("https://static.tildacdn.com/tild6333-6161-4835-b536-393738323064/Card-4-tablet.png") !important;
  }
  .tripdoc-html-block .pain-stack .pain-card.pain-card--white,
  body > .page-grid .pain-stack .pain-card.pain-card--white {
    background-image: url("https://static.tildacdn.com/tild6565-6232-4731-b137-323635333133/Card-3-tablet.png") !important;
  }
  .tripdoc-html-block .pain-stack .pain-card.pain-card--purple,
  body > .page-grid .pain-stack .pain-card.pain-card--purple {
    background-image: url("https://static.tildacdn.com/tild3734-6334-4330-a132-323862613134/Card-2-tablet.png") !important;
  }

  .tripdoc-html-block .other-way,
  body > .page-grid .other-way {
    min-height: 1120px !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .tripdoc-html-block .other-way .polaroids,
  body > .page-grid .other-way .polaroids {
    align-items: center !important;
    justify-content: flex-start !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .tripdoc-html-block .other-way .polaroid,
  body > .page-grid .other-way .polaroid {
    left: auto !important;
    right: auto !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .tripdoc-html-block .system,
  body > .page-grid .system {
    min-height: 0 !important;
    padding-bottom: 18px !important;
  }
  .tripdoc-html-block .step-line li:last-child,
  body > .page-grid .step-line li:last-child {
    min-height: 96px !important;
    padding-bottom: 0 !important;
  }
  .tripdoc-html-block .quiz-start,
  body > .page-grid .quiz-start { margin-top: 0 !important; }

  .tdq-header {
    grid-template-columns: 126px 1fr 36px !important;
    width: calc(100% - 32px) !important;
    max-width: 358px !important;
    min-height: 54px !important;
    padding: 0 8px 0 16px !important;
    column-gap: 8px !important;
  }
  .tdq-logo,
  .tdq-logo img {
    width: 126px !important;
    min-width: 126px !important;
    max-width: 126px !important;
  }
  .tdq-header-button {
    width: 100% !important;
    min-width: 0 !important;
    height: 42px !important;
    padding: 0 12px !important;
    font-size: 13px !important;
    white-space: nowrap !important;
  }
  .tdq-menu-button {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
  }
}

/* 26-mobile-390-header-cards-arrows.css */
@media (max-width: 520px) {
  .tripdoc-html-block .site-header,
  body > .site-header {
    display: grid !important;
    grid-template-columns: 138px minmax(132px, 1fr) 38px !important;
    align-items: center !important;
    width: calc(100vw - 24px) !important;
    max-width: 366px !important;
    min-height: 58px !important;
    height: 58px !important;
    margin: 8px auto 0 !important;
    padding: 0 8px 0 12px !important;
    column-gap: 8px !important;
    border: 1px solid rgba(32, 34, 38, 0.14) !important;
    border-radius: 999px !important;
    background: #fff !important;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12) !important;
    overflow: visible !important;
  }

  .tripdoc-html-block .site-header .logo,
  body > .site-header .logo {
    width: 138px !important;
    min-width: 138px !important;
    max-width: 138px !important;
    height: 38px !important;
    min-height: 38px !important;
    background-position: left center !important;
    background-size: contain !important;
  }

  .tripdoc-html-block .site-header .header-cta,
  .tripdoc-html-block .site-header > .btn.header-cta,
  body > .site-header .header-cta,
  body > .site-header > .btn.header-cta {
    display: flex !important;
    width: 100% !important;
    min-width: 132px !important;
    max-width: none !important;
    height: 48px !important;
    min-height: 48px !important;
    padding: 0 16px !important;
    justify-content: center !important;
    border-radius: 999px !important;
    background: #c6ff55 !important;
    color: #202226 !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
    box-shadow: none !important;
  }

  .tripdoc-html-block .site-header .header-cta::after,
  body > .site-header .header-cta::after {
    display: none !important;
  }

  .tripdoc-html-block .site-header .menu-toggle,
  body > .site-header .menu-toggle,
  .tdq-menu-button,
  .tdt-menu-button {
    width: 38px !important;
    min-width: 38px !important;
    height: 38px !important;
    border: 1.5px solid #202226 !important;
    border-radius: 50% !important;
    background: #fff !important;
  }

  .tripdoc-html-block .site-header .menu-toggle span,
  body > .site-header .menu-toggle span,
  .tdq-menu-button span,
  .tdt-menu-button span {
    left: 10px !important;
    width: 16px !important;
    height: 2px !important;
    background: #202226 !important;
  }

  .tripdoc-html-block .site-header .menu-toggle span:nth-child(1),
  body > .site-header .menu-toggle span:nth-child(1),
  .tdq-menu-button span:nth-child(1),
  .tdt-menu-button span:nth-child(1) {
    top: 14px !important;
  }

  .tripdoc-html-block .site-header .menu-toggle span:nth-child(2),
  body > .site-header .menu-toggle span:nth-child(2),
  .tdq-menu-button span:nth-child(2),
  .tdt-menu-button span:nth-child(2) {
    top: 21px !important;
  }

  .tripdoc-html-block .pain-stack,
  body > .page-grid .pain-stack {
    width: 330px !important;
    max-width: calc(100vw - 48px) !important;
    height: 420px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    overflow: visible !important;
  }

  .tripdoc-html-block .pain-stack .pain-card,
  body > .page-grid .pain-stack .pain-card,
  .tripdoc-html-block .pain-stack .pain-card:nth-child(n + 2),
  body > .page-grid .pain-stack .pain-card:nth-child(n + 2) {
    inset: 0 !important;
    width: 330px !important;
    max-width: calc(100vw - 48px) !important;
    height: 330px !important;
    margin: 0 auto !important;
    border-radius: 24px !important;
    background-size: contain !important;
    background-position: center !important;
    transform: translate3d(0, 0, 0) rotate(0deg) !important;
    transform-origin: center center !important;
  }

  .tripdoc-html-block .pain-stack .pain-card[data-depth="0"],
  .tripdoc-html-block .pain-stack .pain-card[data-depth="1"],
  .tripdoc-html-block .pain-stack .pain-card[data-depth="2"],
  .tripdoc-html-block .pain-stack .pain-card[data-depth="3"],
  .tripdoc-html-block .pain-stack .pain-card[data-depth="4"],
  body > .page-grid .pain-stack .pain-card[data-depth="0"],
  body > .page-grid .pain-stack .pain-card[data-depth="1"],
  body > .page-grid .pain-stack .pain-card[data-depth="2"],
  body > .page-grid .pain-stack .pain-card[data-depth="3"],
  body > .page-grid .pain-stack .pain-card[data-depth="4"] {
    transform: translate3d(0, 0, 0) rotate(0deg) !important;
  }

  .tripdoc-html-block .pain-stack .pain-card.is-exiting,
  body > .page-grid .pain-stack .pain-card.is-exiting {
    transform: translate3d(0, -118%, 0) rotate(0deg) !important;
  }

  .tripdoc-html-block .pain-stack .pain-card.pain-card--dark,
  body > .page-grid .pain-stack .pain-card.pain-card--dark {
    background-image: url("https://static.tildacdn.com/tild6232-3663-4661-a339-383636643139/Card-1-tablet.png") !important;
  }
  .tripdoc-html-block .pain-stack .pain-card.pain-card--blue,
  body > .page-grid .pain-stack .pain-card.pain-card--blue {
    background-image: url("https://static.tildacdn.com/tild3761-3366-4161-a338-313536666261/Card-5-tablet.png") !important;
  }
  .tripdoc-html-block .pain-stack .pain-card.pain-card--lime,
  body > .page-grid .pain-stack .pain-card.pain-card--lime {
    background-image: url("https://static.tildacdn.com/tild6333-6161-4835-b536-393738323064/Card-4-tablet.png") !important;
  }
  .tripdoc-html-block .pain-stack .pain-card.pain-card--white,
  body > .page-grid .pain-stack .pain-card.pain-card--white {
    background-image: url("https://static.tildacdn.com/tild6565-6232-4731-b137-323635333133/Card-3-tablet.png") !important;
  }
  .tripdoc-html-block .pain-stack .pain-card.pain-card--purple,
  body > .page-grid .pain-stack .pain-card.pain-card--purple {
    background-image: url("https://static.tildacdn.com/tild3734-6334-4330-a132-323862613134/Card-2-tablet.png") !important;
  }

  .tripdoc-html-block .other-way,
  body > .page-grid .other-way {
    overflow: hidden !important;
  }

  .tripdoc-html-block .other-way .polaroids,
  body > .page-grid .other-way .polaroids {
    width: 100% !important;
    max-width: 390px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    align-items: center !important;
    justify-content: flex-start !important;
    transform: translateX(0) !important;
  }

  .tripdoc-html-block .other-way .polaroid,
  body > .page-grid .other-way .polaroid {
    left: auto !important;
    right: auto !important;
    align-self: center !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .tripdoc-html-block .other-way .polaroid:nth-child(1),
  body > .page-grid .other-way .polaroid:nth-child(1),
  .tripdoc-html-block .other-way .polaroid:nth-child(2),
  body > .page-grid .other-way .polaroid:nth-child(2),
  .tripdoc-html-block .other-way .polaroid:nth-child(3),
  body > .page-grid .other-way .polaroid:nth-child(3) {
    transform-origin: center top !important;
  }

  .tripdoc-html-block .step-line li:not(:last-child)::after,
  body > .page-grid .step-line li:not(:last-child)::after {
    bottom: -108px !important;
    height: 92px !important;
    background-size: 10px 10px !important;
    overflow: visible !important;
  }

  .tripdoc-html-block .step-line li:not(:last-child),
  body > .page-grid .step-line li:not(:last-child) {
    margin-bottom: 104px !important;
  }
}

@media (max-width: 370px) {
  .tripdoc-html-block .site-header,
  body > .site-header {
    grid-template-columns: 116px minmax(118px, 1fr) 36px !important;
    padding-left: 10px !important;
    column-gap: 6px !important;
  }

  .tripdoc-html-block .site-header .logo,
  body > .site-header .logo {
    width: 116px !important;
    min-width: 116px !important;
    max-width: 116px !important;
  }

  .tripdoc-html-block .site-header .header-cta,
  body > .site-header .header-cta {
    min-width: 118px !important;
    padding: 0 10px !important;
    font-size: 13px !important;
  }
}

/* 27-mobile-390-last-mile.css */
@media (max-width: 520px) {
  .tripdoc-html-block .site-header,
  body > .site-header,
  .tdq-header,
  .tdt-header {
    display: grid !important;
    grid-template-columns: 126px 1fr 42px !important;
    align-items: center !important;
    width: calc(100vw - 24px) !important;
    max-width: 366px !important;
    height: 60px !important;
    min-height: 60px !important;
    margin: 8px auto 0 !important;
    padding: 0 8px 0 12px !important;
    gap: 8px !important;
    border-radius: 999px !important;
    background: #fff !important;
    border: 1px solid rgba(32, 34, 38, 0.12) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.13) !important;
    overflow: hidden !important;
  }

  .tripdoc-html-block .site-header .logo,
  body > .site-header .logo,
  .tdq-logo,
  .tdq-logo img,
  .tdt-logo,
  .tdt-logo img {
    display: block !important;
    width: 126px !important;
    min-width: 126px !important;
    max-width: 126px !important;
    height: 38px !important;
    min-height: 38px !important;
    background: url("https://static.tildacdn.com/tild3766-3666-4838-b832-643463646236/logo-tripdoc.png") left center / contain no-repeat !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .tripdoc-html-block .site-header .logo img,
  body > .site-header .logo img {
    display: none !important;
  }

  .tripdoc-html-block .site-header .header-cta,
  .tripdoc-html-block .site-header > .header-cta,
  .tripdoc-html-block .site-header > .btn.header-cta,
  body > .site-header .header-cta,
  body > .site-header > .header-cta,
  body > .site-header > .btn.header-cta,
  .tdq-header-button,
  .tdt-header-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 50px !important;
    min-height: 50px !important;
    padding: 0 12px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #c6ff55 !important;
    color: #202226 !important;
    font-family: "Unbounded", "Arial", sans-serif !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    text-align: center !important;
    white-space: nowrap !important;
    box-shadow: none !important;
  }

  .tripdoc-html-block .site-header .header-cta::after,
  body > .site-header .header-cta::after,
  .tdq-header-button::after,
  .tdt-header-button::after {
    display: none !important;
    content: none !important;
  }

  .tripdoc-html-block .site-header .menu-toggle,
  body > .site-header .menu-toggle,
  .tdq-menu-button,
  .tdt-menu-button {
    position: relative !important;
    display: block !important;
    width: 42px !important;
    min-width: 42px !important;
    max-width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1.5px solid #202226 !important;
    border-radius: 50% !important;
    background: #fff !important;
  }

  .tripdoc-html-block .site-header .menu-toggle span,
  body > .site-header .menu-toggle span,
  .tdq-menu-button span,
  .tdt-menu-button span {
    position: absolute !important;
    left: 12px !important;
    width: 16px !important;
    height: 2px !important;
    border-radius: 2px !important;
    background: #202226 !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .tripdoc-html-block .site-header .menu-toggle span:nth-child(1),
  body > .site-header .menu-toggle span:nth-child(1),
  .tdq-menu-button span:nth-child(1),
  .tdt-menu-button span:nth-child(1) { top: 15px !important; }

  .tripdoc-html-block .site-header .menu-toggle span:nth-child(2),
  body > .site-header .menu-toggle span:nth-child(2),
  .tdq-menu-button span:nth-child(2),
  .tdt-menu-button span:nth-child(2) { top: 21px !important; }

  .tripdoc-html-block .site-header .menu-toggle span:nth-child(3),
  body > .site-header .menu-toggle span:nth-child(3),
  .tdq-menu-button span:nth-child(3),
  .tdt-menu-button span:nth-child(3) { top: 27px !important; }

  body.menu-open .tripdoc-html-block .site-header .menu-toggle span:nth-child(1),
  body.menu-open > .site-header .menu-toggle span:nth-child(1),
  .tdq-menu-button[aria-expanded="true"] span:nth-child(1),
  .tdt-menu-button[aria-expanded="true"] span:nth-child(1) {
    top: 20px !important;
    transform: rotate(45deg) !important;
  }

  body.menu-open .tripdoc-html-block .site-header .menu-toggle span:nth-child(2),
  body.menu-open > .site-header .menu-toggle span:nth-child(2),
  .tdq-menu-button[aria-expanded="true"] span:nth-child(2),
  .tdt-menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0 !important;
  }

  body.menu-open .tripdoc-html-block .site-header .menu-toggle span:nth-child(3),
  body.menu-open > .site-header .menu-toggle span:nth-child(3),
  .tdq-menu-button[aria-expanded="true"] span:nth-child(3),
  .tdt-menu-button[aria-expanded="true"] span:nth-child(3) {
    top: 20px !important;
    transform: rotate(-45deg) !important;
  }

  .tripdoc-html-block .pain-stack,
  body > .page-grid .pain-stack {
    position: relative !important;
    width: 330px !important;
    max-width: calc(100vw - 48px) !important;
    height: 352px !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .tripdoc-html-block .pain-stack .pain-card,
  body > .page-grid .pain-stack .pain-card,
  .tripdoc-html-block .pain-stack .pain-card:nth-child(1),
  .tripdoc-html-block .pain-stack .pain-card:nth-child(2),
  .tripdoc-html-block .pain-stack .pain-card:nth-child(3),
  .tripdoc-html-block .pain-stack .pain-card:nth-child(4),
  .tripdoc-html-block .pain-stack .pain-card:nth-child(5),
  body > .page-grid .pain-stack .pain-card:nth-child(1),
  body > .page-grid .pain-stack .pain-card:nth-child(2),
  body > .page-grid .pain-stack .pain-card:nth-child(3),
  body > .page-grid .pain-stack .pain-card:nth-child(4),
  body > .page-grid .pain-stack .pain-card:nth-child(5),
  .tripdoc-html-block .pain-stack .pain-card[data-depth],
  body > .page-grid .pain-stack .pain-card[data-depth] {
    top: 0 !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    width: 330px !important;
    max-width: calc(100vw - 48px) !important;
    height: 330px !important;
    margin: 0 !important;
    background-size: contain !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    transform: translate3d(-50%, 0, 0) rotate(0deg) !important;
    transform-origin: center center !important;
  }

  .tripdoc-html-block .pain-stack .pain-card.is-exiting,
  body > .page-grid .pain-stack .pain-card.is-exiting {
    transform: translate3d(-50%, -116%, 0) rotate(0deg) !important;
  }

  .tripdoc-html-block .pain-stack .pain-card.pain-card--dark,
  .tripdoc-html-block .pain-stack .pain-card:nth-child(1),
  body > .page-grid .pain-stack .pain-card.pain-card--dark,
  body > .page-grid .pain-stack .pain-card:nth-child(1) {
    background-image: url("https://static.tildacdn.com/tild6232-3663-4661-a339-383636643139/Card-1-tablet.png") !important;
  }

  .tripdoc-html-block .pain-stack .pain-card.pain-card--blue,
  .tripdoc-html-block .pain-stack .pain-card:nth-child(2),
  body > .page-grid .pain-stack .pain-card.pain-card--blue,
  body > .page-grid .pain-stack .pain-card:nth-child(2) {
    background-image: url("https://static.tildacdn.com/tild3761-3366-4161-a338-313536666261/Card-5-tablet.png") !important;
  }

  .tripdoc-html-block .pain-stack .pain-card.pain-card--lime,
  .tripdoc-html-block .pain-stack .pain-card:nth-child(3),
  body > .page-grid .pain-stack .pain-card.pain-card--lime,
  body > .page-grid .pain-stack .pain-card:nth-child(3) {
    background-image: url("https://static.tildacdn.com/tild6333-6161-4835-b536-393738323064/Card-4-tablet.png") !important;
  }

  .tripdoc-html-block .pain-stack .pain-card.pain-card--white,
  .tripdoc-html-block .pain-stack .pain-card:nth-child(4),
  body > .page-grid .pain-stack .pain-card.pain-card--white,
  body > .page-grid .pain-stack .pain-card:nth-child(4) {
    background-image: url("https://static.tildacdn.com/tild6565-6232-4731-b137-323635333133/Card-3-tablet.png") !important;
  }

  .tripdoc-html-block .pain-stack .pain-card.pain-card--purple,
  .tripdoc-html-block .pain-stack .pain-card:nth-child(5),
  body > .page-grid .pain-stack .pain-card.pain-card--purple,
  body > .page-grid .pain-stack .pain-card:nth-child(5) {
    background-image: url("https://static.tildacdn.com/tild3734-6334-4330-a132-323862613134/Card-2-tablet.png") !important;
  }

  .tripdoc-html-block .pain-stack .pain-card span,
  .tripdoc-html-block .pain-stack .pain-card::before,
  .tripdoc-html-block .pain-stack .pain-card::after,
  body > .page-grid .pain-stack .pain-card span,
  body > .page-grid .pain-stack .pain-card::before,
  body > .page-grid .pain-stack .pain-card::after {
    display: none !important;
    content: none !important;
  }

  .tripdoc-html-block .other-way .polaroids,
  body > .page-grid .other-way .polaroids {
    align-items: center !important;
    width: 100% !important;
    max-width: 390px !important;
    padding-left: 0 !important;
    transform: translateX(24px) !important;
  }

  .tripdoc-html-block .other-way .polaroid:nth-child(1),
  body > .page-grid .other-way .polaroid:nth-child(1) {
    margin-left: auto !important;
    margin-right: auto !important;
    transform: translateX(0) rotate(12deg) !important;
  }

  .tripdoc-html-block .other-way .polaroid:nth-child(2),
  body > .page-grid .other-way .polaroid:nth-child(2) {
    margin-left: auto !important;
    margin-right: auto !important;
    transform: translateX(0) rotate(-12deg) !important;
  }

  .tripdoc-html-block .other-way .polaroid:nth-child(3),
  body > .page-grid .other-way .polaroid:nth-child(3) {
    margin-left: auto !important;
    margin-right: auto !important;
    transform: translateX(0) rotate(13deg) !important;
  }

  .tripdoc-html-block .step-line li,
  body > .page-grid .step-line li {
    overflow: visible !important;
  }

  .tripdoc-html-block .step-line li:not(:last-child),
  body > .page-grid .step-line li:not(:last-child) {
    margin-bottom: 88px !important;
  }

  .tripdoc-html-block .step-line li:not(:last-child)::after,
  body > .page-grid .step-line li:not(:last-child)::after {
    bottom: -82px !important;
    height: 68px !important;
    background-size: 8px 8px !important;
    overflow: visible !important;
  }

  .tripdoc-html-block .step-line li:not(:last-child)::before,
  body > .page-grid .step-line li:not(:last-child)::before {
    bottom: -87px !important;
  }
}

@media (max-width: 374px) {
  .tripdoc-html-block .site-header,
  body > .site-header,
  .tdq-header,
  .tdt-header {
    grid-template-columns: 112px 1fr 40px !important;
    width: calc(100vw - 16px) !important;
    padding-left: 10px !important;
    gap: 6px !important;
  }

  .tripdoc-html-block .site-header .logo,
  body > .site-header .logo,
  .tdq-logo,
  .tdq-logo img,
  .tdt-logo,
  .tdt-logo img {
    width: 112px !important;
    min-width: 112px !important;
    max-width: 112px !important;
  }

  .tripdoc-html-block .site-header .header-cta,
  body > .site-header .header-cta,
  .tdq-header-button,
  .tdt-header-button {
    height: 46px !important;
    min-height: 46px !important;
    padding: 0 10px !important;
    font-size: 12px !important;
  }
}

/* 28-mobile-390-slider-arrow-repair.css */
@media (max-width: 520px) {
  .tripdoc-html-block .pain-stack,
  body > .page-grid .pain-stack {
    pointer-events: auto !important;
    touch-action: manipulation !important;
    cursor: pointer !important;
  }

  .tripdoc-html-block .pain-stack .pain-card,
  body > .page-grid .pain-stack .pain-card,
  .tripdoc-html-block .pain-stack .pain-card[data-depth],
  body > .page-grid .pain-stack .pain-card[data-depth] {
    opacity: 1 !important;
    pointer-events: none !important;
    transition: transform 640ms cubic-bezier(.22, .78, .18, 1), opacity 640ms cubic-bezier(.22, .78, .18, 1) !important;
    transform: translate3d(-50%, 0, 0) rotate(0deg) !important;
  }

  .tripdoc-html-block .pain-stack .pain-card.is-exiting,
  body > .page-grid .pain-stack .pain-card.is-exiting {
    opacity: 0 !important;
    transform: translate3d(-50%, -120%, 0) rotate(0deg) !important;
  }

  .tripdoc-html-block .step-line li:not(:last-child),
  body > .page-grid .step-line li:not(:last-child) {
    margin-bottom: 74px !important;
  }

  .tripdoc-html-block .step-line li:not(:last-child)::before,
  body > .page-grid .step-line li:not(:last-child)::before {
    display: none !important;
    content: none !important;
  }

  .tripdoc-html-block .step-line li:not(:last-child)::after,
  body > .page-grid .step-line li:not(:last-child)::after {
    left: 50% !important;
    right: auto !important;
    bottom: -64px !important;
    width: 16px !important;
    height: 52px !important;
    transform: translateX(-50%) !important;
    border: 0 !important;
    background-color: transparent !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: 16px 52px !important;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='52' viewBox='0 0 16 52' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 0V39' stroke='%23949699' stroke-width='1.6' stroke-linecap='round' stroke-dasharray='4 5'/%3E%3Cpath d='M3 34L8 41L13 34' stroke='%23949699' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  }
}

/* 29-mobile-390-real-scroll-slider.css */
@media (max-width: 520px) {
  .tripdoc-html-block .pain-stack,
  body > .page-grid .pain-stack {
    position: relative !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    width: 100% !important;
    max-width: 390px !important;
    height: 390px !important;
    margin: 0 auto !important;
    padding: 0 16px 48px !important;
    gap: 14px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    scroll-padding: 16px !important;
    -webkit-overflow-scrolling: touch !important;
    cursor: grab !important;
    touch-action: pan-x !important;
  }

  .tripdoc-html-block .pain-stack::-webkit-scrollbar,
  body > .page-grid .pain-stack::-webkit-scrollbar {
    display: none !important;
  }

  .tripdoc-html-block .pain-stack .pain-card,
  .tripdoc-html-block .pain-stack .pain-card:nth-child(1),
  .tripdoc-html-block .pain-stack .pain-card:nth-child(2),
  .tripdoc-html-block .pain-stack .pain-card:nth-child(3),
  .tripdoc-html-block .pain-stack .pain-card:nth-child(4),
  .tripdoc-html-block .pain-stack .pain-card:nth-child(5),
  .tripdoc-html-block .pain-stack .pain-card[data-depth],
  body > .page-grid .pain-stack .pain-card,
  body > .page-grid .pain-stack .pain-card:nth-child(1),
  body > .page-grid .pain-stack .pain-card:nth-child(2),
  body > .page-grid .pain-stack .pain-card:nth-child(3),
  body > .page-grid .pain-stack .pain-card:nth-child(4),
  body > .page-grid .pain-stack .pain-card:nth-child(5),
  body > .page-grid .pain-stack .pain-card[data-depth] {
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    display: block !important;
    flex: 0 0 326px !important;
    width: 326px !important;
    max-width: 326px !important;
    height: 326px !important;
    margin: 0 !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    scroll-snap-align: center !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    transform: none !important;
    transition: none !important;
  }

  .tripdoc-html-block .pain-stack .pain-card.is-exiting,
  body > .page-grid .pain-stack .pain-card.is-exiting {
    opacity: 1 !important;
    transform: none !important;
  }

  .tripdoc-html-block .step-line li:not(:last-child),
  body > .page-grid .step-line li:not(:last-child) {
    margin-bottom: 42px !important;
  }

  .tripdoc-html-block .step-line li:not(:last-child)::before,
  body > .page-grid .step-line li:not(:last-child)::before {
    display: none !important;
    content: none !important;
  }

  .tripdoc-html-block .step-line li:not(:last-child)::after,
  body > .page-grid .step-line li:not(:last-child)::after {
    bottom: -38px !important;
    width: 16px !important;
    height: 34px !important;
    background-size: 16px 34px !important;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='34' viewBox='0 0 16 34' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 0V24' stroke='%23949699' stroke-width='1.6' stroke-linecap='round' stroke-dasharray='4 5'/%3E%3Cpath d='M3.5 20L8 26L12.5 20' stroke='%23949699' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  }
}

/* 30-mobile-390-system-and-menu-fix.css */
@media (max-width: 520px) {
  .tripdoc-html-block .site-header,
  body > .site-header,
  .tdq-header,
  .tdt-header {
    overflow: visible !important;
    z-index: 80 !important;
  }

  .tripdoc-html-block .site-header .main-nav,
  body > .site-header .main-nav,
  .tdq-menu,
  .tdt-menu {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 12px !important;
    right: 12px !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    width: auto !important;
    min-width: 0 !important;
    height: auto !important;
    padding: 14px !important;
    border: 1px solid rgba(48, 48, 51, .08) !important;
    border-radius: 22px !important;
    background: #fff !important;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .16) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    z-index: 90 !important;
  }

  body.menu-open .tripdoc-html-block .site-header .main-nav,
  body.menu-open > .site-header .main-nav,
  body.menu-open .tdq-menu,
  body.menu-open .tdt-menu {
    display: flex !important;
  }

  .tripdoc-html-block .site-header .main-nav a,
  body > .site-header .main-nav a,
  .tdq-menu a,
  .tdt-menu a {
    display: block !important;
    width: 100% !important;
    padding: 8px 10px !important;
    border-radius: 12px !important;
    color: #303033 !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    text-align: left !important;
  }

  .tripdoc-html-block .site-header .main-nav a:hover,
  body > .site-header .main-nav a:hover,
  .tdq-menu a:hover,
  .tdt-menu a:hover {
    color: #0078ff !important;
    background: rgba(0, 120, 255, .06) !important;
  }

  .tripdoc-html-block .site-header .menu-toggle,
  body > .site-header .menu-toggle,
  .tdq-menu-button,
  .tdt-menu-button {
    pointer-events: auto !important;
    cursor: pointer !important;
    z-index: 100 !important;
  }

  .tripdoc-system-block,
  .tripdoc-html-block:has(.system) {
    background: #fff !important;
    background-image: none !important;
  }

  .tripdoc-html-block .system,
  body > .page-grid .system {
    min-height: 0 !important;
    height: auto !important;
    padding: 0 16px 16px !important;
    background: #fff !important;
    background-image: none !important;
    color: #303033 !important;
  }

  .tripdoc-html-block .system .section-head,
  body > .page-grid .system .section-head {
    width: 100% !important;
    max-width: 300px !important;
    margin: 0 auto 20px !important;
    padding: 0 !important;
  }

  .tripdoc-html-block .system .section-head h2,
  body > .page-grid .system .section-head h2 {
    max-width: 265px !important;
    margin: 0 auto !important;
    font-size: 25px !important;
    line-height: .92 !important;
    letter-spacing: 0 !important;
  }

  .tripdoc-html-block .system .section-head p,
  body > .page-grid .system .section-head p {
    max-width: 315px !important;
    margin: 14px auto 0 !important;
    font-size: 16px !important;
    line-height: 1.08 !important;
  }

  .tripdoc-html-block .step-line,
  body > .page-grid .step-line {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    max-width: 270px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    gap: 0 !important;
    background: transparent !important;
  }

  .tripdoc-html-block .step-line::before,
  body > .page-grid .step-line::before,
  .tripdoc-html-block .step-line li:not(:last-child)::before,
  body > .page-grid .step-line li:not(:last-child)::before {
    display: none !important;
    content: none !important;
  }

  .tripdoc-html-block .step-line li,
  body > .page-grid .step-line li {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    text-align: center !important;
  }

  .tripdoc-html-block .step-line li:not(:last-child),
  body > .page-grid .step-line li:not(:last-child) {
    margin-bottom: 38px !important;
  }

  .tripdoc-html-block .step-line li:not(:last-child)::after,
  body > .page-grid .step-line li:not(:last-child)::after {
    left: 50% !important;
    right: auto !important;
    bottom: -32px !important;
    display: block !important;
    width: 12px !important;
    height: 28px !important;
    border: 0 !important;
    background-color: transparent !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: 12px 28px !important;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='28' viewBox='0 0 12 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 0V19' stroke='%23949699' stroke-width='1.3' stroke-linecap='round' stroke-dasharray='3 4'/%3E%3Cpath d='M2.5 16L6 21L9.5 16' stroke='%23949699' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    content: "" !important;
    transform: translateX(-50%) !important;
  }

  .tripdoc-html-block .step-line .step-icon,
  body > .page-grid .step-line .step-icon {
    display: block !important;
    flex: 0 0 auto !important;
    object-fit: contain !important;
    margin: 0 auto 9px !important;
  }

  .tripdoc-html-block .step-line li:nth-child(1) .step-icon,
  body > .page-grid .step-line li:nth-child(1) .step-icon {
    width: 62px !important;
    height: 72px !important;
  }

  .tripdoc-html-block .step-line li:nth-child(2) .step-icon,
  body > .page-grid .step-line li:nth-child(2) .step-icon {
    width: 70px !important;
    height: 60px !important;
  }

  .tripdoc-html-block .step-line li:nth-child(3) .step-icon,
  body > .page-grid .step-line li:nth-child(3) .step-icon {
    width: 58px !important;
    height: 72px !important;
  }

  .tripdoc-html-block .step-line li:nth-child(4) .step-icon,
  body > .page-grid .step-line li:nth-child(4) .step-icon {
    width: 68px !important;
    height: 68px !important;
  }

  .tripdoc-html-block .step-line li:nth-child(5) .step-icon,
  body > .page-grid .step-line li:nth-child(5) .step-icon {
    width: 64px !important;
    height: 76px !important;
  }

  .tripdoc-html-block .step-line h3,
  body > .page-grid .step-line h3 {
    max-width: 250px !important;
    margin: 0 auto 5px !important;
    font-size: 14px !important;
    line-height: 1.05 !important;
    font-weight: 800 !important;
    color: #303033 !important;
  }

  .tripdoc-html-block .step-line p,
  body > .page-grid .step-line p {
    max-width: 235px !important;
    margin: 0 auto !important;
    font-size: 11.5px !important;
    line-height: 1.15 !important;
    color: #55575c !important;
  }
}

/* 31-mobile-390-header-slider-final.css */
@media (max-width: 520px) {
  .tripdoc-html-block .site-header .header-cta,
  body > .site-header .header-cta,
  .tdq-header-button,
  .tdt-header-button {
    font-size: 0 !important;
    color: transparent !important;
  }

  .tripdoc-html-block .site-header .header-cta::after,
  body > .site-header .header-cta::after,
  .tdq-header-button::after,
  .tdt-header-button::after {
    content: "РљРІРёР·С‹" !important;
    display: inline-block !important;
    color: #303033 !important;
    font-size: 18px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
  }

  .tripdoc-html-block .pain-stack,
  body > .page-grid .pain-stack {
    overflow-x: auto !important;
    overflow-y: visible !important;
    overscroll-behavior-x: contain !important;
    overscroll-behavior-y: auto !important;
    touch-action: pan-x pan-y !important;
  }

  .tripdoc-html-block .other-way .polaroids,
  body > .page-grid .other-way .polaroids {
    transform: translateX(24px) !important;
  }

  .tripdoc-html-block .other-way .polaroid:nth-child(2),
  body > .page-grid .other-way .polaroid:nth-child(2) {
    transform: translateX(-18px) rotate(-12deg) !important;
  }
}

/* 32-desktop-moments-and-quiz-button-fix.css */
@media (min-width: 900px) {
  .tripdoc-html-block .moments,
  body > .page-grid .moments {
    position: relative !important;
  }

  .tripdoc-html-block .moments-lead,
  body > .page-grid .moments-lead {
    position: absolute !important;
    right: 34px !important;
    bottom: 72px !important;
    z-index: 4 !important;
    display: block !important;
    width: 420px !important;
    max-width: 30vw !important;
    margin: 0 !important;
    color: #8d8d91 !important;
    font-size: 20px !important;
    line-height: 1.18 !important;
    font-weight: 800 !important;
    text-align: left !important;
  }

  .tripdoc-html-block .quiz-start .center-btn,
  body > .page-grid .quiz-start .center-btn {
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    bottom: 60px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    transform: translateX(-50%) !important;
  }

  .tripdoc-html-block .quiz-start .center-btn:hover,
  .tripdoc-html-block .quiz-start .center-btn:focus-visible,
  body > .page-grid .quiz-start .center-btn:hover,
  body > .page-grid .quiz-start .center-btn:focus-visible {
    transform: translateX(-50%) !important;
  }
}

/* 36-desktop-moments-reference-fix.css */
@media (min-width: 900px) {
  .tripdoc-html-block .moments,
  body > .page-grid .moments {
    position: relative !important;
    height: 1160px !important;
    min-height: 1160px !important;
    padding: 20px 0 50px !important;
    overflow: hidden !important;
  }

  .tripdoc-html-block .moments-grid,
  body > .page-grid .moments-grid {
    display: block !important;
    width: min(1320px, calc(100vw - 120px)) !important;
    margin: 0 auto !important;
  }

  .tripdoc-html-block .moments-carousel,
  body > .page-grid .moments-carousel {
    display: grid !important;
    width: 100% !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    grid-template-rows: 286px 286px 316px !important;
    gap: 20px !important;
  }

  .tripdoc-html-block .moments-carousel img,
  body > .page-grid .moments-carousel img {
    width: 100% !important;
    height: 286px !important;
    min-height: 0 !important;
    margin: 0 !important;
    border-radius: 24px !important;
    object-fit: cover !important;
  }

  .tripdoc-html-block .moments-carousel .m1,
  body > .page-grid .moments-carousel .m1 {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    height: 592px !important;
  }

  .tripdoc-html-block .moments-carousel > img:nth-child(2),
  body > .page-grid .moments-carousel > img:nth-child(2) {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }

  .tripdoc-html-block .moments-carousel > img:nth-child(3),
  body > .page-grid .moments-carousel > img:nth-child(3) {
    grid-column: 3 !important;
    grid-row: 1 !important;
  }

  .tripdoc-html-block .moments-carousel .paint-mark,
  body > .page-grid .moments-carousel .paint-mark {
    grid-column: 2 !important;
    grid-row: 2 !important;
    width: 100% !important;
    height: 286px !important;
    min-height: 0 !important;
  }

  .tripdoc-html-block .moments-carousel > img:nth-child(5),
  body > .page-grid .moments-carousel > img:nth-child(5) {
    grid-column: 3 !important;
    grid-row: 2 !important;
  }

  .tripdoc-html-block .moments-carousel .m5,
  body > .page-grid .moments-carousel .m5 {
    grid-column: 1 / span 2 !important;
    grid-row: 3 !important;
    height: 316px !important;
  }

  .tripdoc-html-block .moments-lead,
  body > .page-grid .moments-lead {
    right: max(60px, calc((100% - min(1320px, calc(100vw - 120px))) / 2)) !important;
    bottom: 72px !important;
    width: min(426px, calc((100vw - 160px) / 3)) !important;
    max-width: none !important;
    font-size: 14px !important;
    line-height: 1.18 !important;
    font-weight: 700 !important;
  }
}

/* 33-mobile-390-header-cta-restore.css */
@media (max-width: 520px) {
  .tripdoc-html-block .site-header,
  body > .site-header,
  .tdq-header,
  .tdt-header {
    position: absolute !important;
    top: 8px !important;
    left: 50% !important;
    right: auto !important;
    display: grid !important;
    grid-template-columns: minmax(104px, 128px) minmax(142px, 1fr) 44px !important;
    align-items: center !important;
    gap: 8px !important;
    width: calc(100vw - 24px) !important;
    max-width: 366px !important;
    min-height: 58px !important;
    height: 58px !important;
    margin: 0 !important;
    padding: 6px 8px 6px 16px !important;
    border: 1px solid rgba(48, 48, 51, .08) !important;
    border-radius: 999px !important;
    background: #fff !important;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .12) !important;
    overflow: visible !important;
    transform: translateX(-50%) !important;
    z-index: 120 !important;
  }

  .tripdoc-html-block .site-header .logo,
  body > .site-header .logo,
  .tdq-logo,
  .tdq-logo img,
  .tdt-logo,
  .tdt-logo img {
    grid-column: 1 !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 128px !important;
    height: 30px !important;
    margin: 0 !important;
    overflow: hidden !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 1 !important;
    background-image: url("https://static.tildacdn.com/tild3766-3666-4838-b832-643463646236/logo-tripdoc.png") !important;
    background-size: contain !important;
    background-position: left center !important;
    background-repeat: no-repeat !important;
    align-self: center !important;
  }

  .tripdoc-html-block .site-header .logo::before,
  body > .site-header .logo::before {
    display: none !important;
    content: none !important;
  }

  .tripdoc-html-block .site-header .header-cta,
  .tripdoc-html-block .site-header > .btn,
  body > .site-header .header-cta,
  body > .site-header > .btn,
  .tdq-header-button,
  .tdt-header-button {
    grid-column: 2 !important;
    position: static !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-width: 104px !important;
    max-width: none !important;
    height: 44px !important;
    min-height: 44px !important;
    margin: 0 !important;
    padding: 0 12px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #c6ff55 !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    font-size: 0 !important;
    color: transparent !important;
    white-space: nowrap !important;
    align-self: center !important;
  }

  .tripdoc-html-block .site-header .header-cta::after,
  .tripdoc-html-block .site-header > .btn::after,
  body > .site-header .header-cta::after,
  body > .site-header > .btn::after,
  .tdq-header-button::after,
  .tdt-header-button::after {
    content: "РљРІРёР·С‹" !important;
    display: block !important;
    color: #303033 !important;
    font-size: 17px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
  }

  .tripdoc-html-block .site-header .menu-toggle,
  body > .site-header .menu-toggle,
  .tdq-menu-button,
  .tdt-menu-button {
    grid-column: 3 !important;
    position: relative !important;
    top: auto !important;
    right: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    min-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1.5px solid #303033 !important;
    border-radius: 50% !important;
    background: #fff !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 130 !important;
    align-self: center !important;
  }

  .tripdoc-html-block .site-header .menu-toggle span,
  body > .site-header .menu-toggle span,
  .tdq-menu-button span,
  .tdt-menu-button span {
    position: absolute !important;
    left: 12px !important;
    display: block !important;
    width: 18px !important;
    height: 1.6px !important;
    border-radius: 999px !important;
    background: #303033 !important;
    transform-origin: center !important;
  }

  .tripdoc-html-block .site-header .menu-toggle span:nth-child(1),
  body > .site-header .menu-toggle span:nth-child(1),
  .tdq-menu-button span:nth-child(1),
  .tdt-menu-button span:nth-child(1) {
    top: 16px !important;
    transform: none !important;
  }

  .tripdoc-html-block .site-header .menu-toggle span:nth-child(2),
  body > .site-header .menu-toggle span:nth-child(2),
  .tdq-menu-button span:nth-child(2),
  .tdt-menu-button span:nth-child(2) {
    top: 21px !important;
    transform: none !important;
  }

  .tripdoc-html-block .site-header .menu-toggle span:nth-child(3),
  body > .site-header .menu-toggle span:nth-child(3),
  .tdq-menu-button span:nth-child(3),
  .tdt-menu-button span:nth-child(3) {
    top: 26px !important;
    display: block !important;
    opacity: 1 !important;
  }

  body.menu-open .tripdoc-html-block .site-header .menu-toggle span:nth-child(1),
  body.menu-open > .site-header .menu-toggle span:nth-child(1),
  body.menu-open .tdq-menu-button span:nth-child(1),
  body.menu-open .tdt-menu-button span:nth-child(1) {
    top: 21px !important;
    transform: rotate(45deg) !important;
  }

  body.menu-open .tripdoc-html-block .site-header .menu-toggle span:nth-child(2),
  body.menu-open > .site-header .menu-toggle span:nth-child(2),
  body.menu-open .tdq-menu-button span:nth-child(2),
  body.menu-open .tdt-menu-button span:nth-child(2) {
    top: 21px !important;
    opacity: 1 !important;
    transform: rotate(-45deg) !important;
  }

  body.menu-open .tripdoc-html-block .site-header .menu-toggle span:nth-child(3),
  body.menu-open > .site-header .menu-toggle span:nth-child(3),
  body.menu-open .tdq-menu-button span:nth-child(3),
  body.menu-open .tdt-menu-button span:nth-child(3) {
    top: 21px !important;
    opacity: 0 !important;
    transform: none !important;
  }

  .tripdoc-html-block .site-header .main-nav,
  body > .site-header .main-nav,
  .tdq-menu,
  .tdt-menu {
    top: calc(100% + 10px) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    border-radius: 18px !important;
  }

  .tripdoc-html-block .site-header .main-nav span,
  body > .site-header .main-nav span,
  .tdq-menu span,
  .tdt-menu span {
    display: block !important;
    width: 100% !important;
    padding: 8px 10px !important;
    border-radius: 12px !important;
    color: #303033 !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    font-weight: 500 !important;
    text-align: left !important;
  }

  .tripdoc-html-block .site-header .main-nav span:hover,
  body > .site-header .main-nav span:hover,
  .tdq-menu span:hover,
  .tdt-menu span:hover {
    color: #303033 !important;
    background: transparent !important;
  }

  .tripdoc-html-block .site-header .main-nav span small,
  body > .site-header .main-nav span small,
  .tdq-menu span small,
  .tdt-menu span small {
    display: inline-flex !important;
    align-items: center !important;
    margin-left: 6px !important;
    padding: 2px 7px !important;
    border: 1px solid #c6ff55 !important;
    border-radius: 999px !important;
    color: #303033 !important;
    background: transparent !important;
    font-size: 10px !important;
    line-height: 1 !important;
    font-weight: 500 !important;
  }
}

/* 34-mobile-390-system-title-type-fix.css */
@media (max-width: 520px) {
  .tripdoc-html-block .system .section-head,
  body > .page-grid .system .section-head {
    max-width: 390px !important;
  }

  .tripdoc-html-block .system .section-head h2,
  body > .page-grid .system .section-head h2 {
    width: 100% !important;
    max-width: 374px !important;
    font-size: 41px !important;
    line-height: .94 !important;
    text-align: center !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  .tripdoc-html-block .system .section-head p,
  body > .page-grid .system .section-head p {
    max-width: 350px !important;
    font-size: 18px !important;
    line-height: 1.12 !important;
  }

  .tripdoc-html-block .step-line h3,
  body > .page-grid .step-line h3 {
    font-size: 15px !important;
    line-height: 1.08 !important;
  }

  .tripdoc-html-block .step-line p,
  body > .page-grid .step-line p {
    max-width: 260px !important;
    font-size: 12.5px !important;
    line-height: 1.18 !important;
  }
}

/* 35-mobile-390-integrated-header.css */
@media (max-width: 520px) {
  .tripdoc-html-block.tripdoc-header-hero-block .site-header {
    position: absolute !important;
    top: 8px !important;
    right: auto !important;
    bottom: auto !important;
    left: 50% !important;
    z-index: 160 !important;
    display: grid !important;
    grid-template-columns: 124px minmax(136px, 1fr) 42px !important;
    align-items: center !important;
    column-gap: 6px !important;
    width: calc(100vw - 24px) !important;
    max-width: 366px !important;
    height: 58px !important;
    min-height: 58px !important;
    margin: 0 !important;
    padding: 6px 8px 6px 16px !important;
    overflow: visible !important;
    transform: translateX(-50%) !important;
    background: #fff !important;
    border: 1px solid rgba(32, 34, 38, .1) !important;
    border-radius: 999px !important;
    box-shadow: 0 8px 22px rgba(32, 34, 38, .16) !important;
  }

  .tripdoc-html-block.tripdoc-header-hero-block .site-header .logo {
    grid-column: 1 !important;
    align-self: center !important;
    display: block !important;
    width: 124px !important;
    min-width: 0 !important;
    max-width: 124px !important;
    height: 30px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: url("https://static.tildacdn.com/tild3766-3666-4838-b832-643463646236/logo-tripdoc.png") left center / contain no-repeat !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
    text-decoration: none !important;
  }

  .tripdoc-html-block.tripdoc-header-hero-block .site-header .logo::before,
  .tripdoc-html-block.tripdoc-header-hero-block .site-header .logo::after {
    content: none !important;
    display: none !important;
  }

  .tripdoc-html-block.tripdoc-header-hero-block .site-header .header-cta,
  .tripdoc-html-block.tripdoc-header-hero-block .site-header > .btn.header-cta {
    grid-column: 2 !important;
    align-self: center !important;
    justify-self: stretch !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 44px !important;
    min-height: 44px !important;
    margin: 0 !important;
    padding: 0 12px !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: #c6ff55 !important;
    border: 0 !important;
    border-radius: 999px !important;
    box-shadow: none !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    transition: background-color 180ms ease !important;
  }

  .tripdoc-html-block.tripdoc-header-hero-block .site-header .header-cta::after,
  .tripdoc-html-block.tripdoc-header-hero-block .site-header > .btn.header-cta::after {
    content: "Р’С‹Р±СЂР°С‚СЊ РєРІРёР·" !important;
    display: inline-block !important;
    color: #202226 !important;
    font-family: "Unbounded", "Onest", Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .tripdoc-html-block.tripdoc-header-hero-block .site-header .header-cta:hover,
  .tripdoc-html-block.tripdoc-header-hero-block .site-header .header-cta:focus-visible {
    background: #202226 !important;
  }

  .tripdoc-html-block.tripdoc-header-hero-block .site-header .header-cta:hover::after,
  .tripdoc-html-block.tripdoc-header-hero-block .site-header .header-cta:focus-visible::after {
    color: #fff !important;
  }

  .tripdoc-html-block.tripdoc-header-hero-block .site-header .menu-toggle {
    grid-column: 3 !important;
    align-self: center !important;
    justify-self: end !important;
    position: relative !important;
    display: flex !important;
    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    margin: 0 !important;
    padding: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    background: #fff !important;
    border: 1.5px solid #202226 !important;
    border-radius: 50% !important;
    box-shadow: none !important;
    cursor: pointer !important;
  }

  .tripdoc-html-block.tripdoc-header-hero-block .site-header .menu-toggle span {
    position: absolute !important;
    left: 12px !important;
    display: block !important;
    width: 16px !important;
    height: 1.5px !important;
    border-radius: 999px !important;
    background: #202226 !important;
    transform-origin: center !important;
    transition: transform 180ms ease, top 180ms ease !important;
  }

  .tripdoc-html-block.tripdoc-header-hero-block .site-header .menu-toggle span:nth-child(1) { top: 16px !important; }
  .tripdoc-html-block.tripdoc-header-hero-block .site-header .menu-toggle span:nth-child(2) { top: 23px !important; }

  body.menu-open .tripdoc-html-block.tripdoc-header-hero-block .site-header .menu-toggle span:nth-child(1) {
    top: 20px !important;
    transform: rotate(45deg) !important;
  }

  body.menu-open .tripdoc-html-block.tripdoc-header-hero-block .site-header .menu-toggle span:nth-child(2) {
    top: 20px !important;
    transform: rotate(-45deg) !important;
  }

  .tripdoc-html-block.tripdoc-header-hero-block .site-header .main-nav {
    position: absolute !important;
    top: 66px !important;
    right: 0 !important;
    left: 0 !important;
    z-index: 150 !important;
    display: none !important;
    width: 100% !important;
    padding: 18px 26px 22px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0 !important;
    background: #fff !important;
    border: 1px solid rgba(32, 34, 38, .08) !important;
    border-radius: 18px 18px 28px 28px !important;
    box-shadow: 0 14px 30px rgba(32, 34, 38, .18) !important;
  }

  body.menu-open .tripdoc-html-block.tripdoc-header-hero-block .site-header .main-nav {
    display: flex !important;
  }

  .tripdoc-html-block.tripdoc-header-hero-block .site-header .main-nav a,
  .tripdoc-html-block.tripdoc-header-hero-block .site-header .nav-soon {
    display: flex !important;
    align-items: center !important;
    min-height: 40px !important;
    margin: 0 !important;
    color: #303033 !important;
    background: transparent !important;
    font-family: "Onest", Arial, sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
  }

  .tripdoc-html-block.tripdoc-header-hero-block .site-header .main-nav a:hover,
  .tripdoc-html-block.tripdoc-header-hero-block .site-header .main-nav a:focus-visible {
    color: #0077ff !important;
  }

  .tripdoc-html-block.tripdoc-header-hero-block .site-header .nav-soon small {
    display: inline-flex !important;
    min-height: 20px !important;
    margin-left: 8px !important;
    padding: 2px 8px !important;
    align-items: center !important;
    color: #303033 !important;
    background: transparent !important;
    border: 1px solid #c6ff55 !important;
    border-radius: 999px !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
  }
}

@media (max-width: 374px) {
  .tripdoc-html-block.tripdoc-header-hero-block .site-header {
    grid-template-columns: 106px minmax(124px, 1fr) 40px !important;
    width: calc(100vw - 18px) !important;
    padding-left: 12px !important;
  }

  .tripdoc-html-block.tripdoc-header-hero-block .site-header .logo {
    width: 106px !important;
    max-width: 106px !important;
  }

  .tripdoc-html-block.tripdoc-header-hero-block .site-header .header-cta::after {
    font-size: 12px !important;
  }
}

/* 40-button-arrow-only-fix.css
   Only buttons/arrows. Does not change store layout, cards, filters, modals or responsive grids. */
:root,
.tripdoc-html-block,
body > .page-grid,
.tripdoc-footer-block {
  --tripdoc-arrow-up-right: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20d%3D%27M6.7%2018.8a1.32%201.32%200%200%201-1.86-1.86L15.2%206.58H9.16a1.32%201.32%200%200%201%200-2.64h9.92c.73%200%201.32.59%201.32%201.32v9.92a1.32%201.32%200%200%201-2.64%200V8.46L6.7%2018.8Z%27%20fill%3D%27black%27%2F%3E%3C%2Fsvg%3E");
  --tripdoc-arrow-right: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20d%3D%27M4.7%2010.68h11.56l-4.2-4.2a1.32%201.32%200%201%201%201.86-1.86l6.46%206.45c.51.52.51%201.34%200%201.86l-6.46%206.45a1.32%201.32%200%200%201-1.86-1.86l4.2-4.2H4.7a1.32%201.32%200%200%201%200-2.64Z%27%20fill%3D%27black%27%2F%3E%3C%2Fsvg%3E");
}

.tripdoc-html-block .btn span[aria-hidden="true"],
body > .page-grid .btn span[aria-hidden="true"],
.tdq-card-button_primary span:last-child,
.tdt-team-cta-button span:last-child,
.tripdoc-footer-block .footer-contact a[href^="https://t.me"] span {
  display: inline-block !important;
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  margin-left: 8px !important;
  color: inherit !important;
  background-color: currentColor !important;
  font-size: 0 !important;
  line-height: 0 !important;
  overflow: visible !important;
  vertical-align: middle !important;
  -webkit-text-size-adjust: none !important;
  -webkit-mask-image: var(--tripdoc-arrow-up-right) !important;
  mask-image: var(--tripdoc-arrow-up-right) !important;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
  mask-position: center !important;
  -webkit-mask-size: contain !important;
  mask-size: contain !important;
}

.tripdoc-html-block .btn span[aria-hidden="true"],
body > .page-grid .btn span[aria-hidden="true"],
.tdt-team-cta-button span:last-child,
.tripdoc-footer-block .footer-contact a[href^="https://t.me"] span {
  position: relative !important;
}

.tdq-card-button_primary span:last-child {
  position: absolute !important;
  top: 50% !important;
  right: 22px !important;
  transform: translateY(-50%) !important;
}

.tripdoc-html-block .btn span[aria-hidden="true"]::before,
.tripdoc-html-block .btn span[aria-hidden="true"]::after,
body > .page-grid .btn span[aria-hidden="true"]::before,
body > .page-grid .btn span[aria-hidden="true"]::after,
.tdq-card-button_primary span:last-child::before,
.tdq-card-button_primary span:last-child::after,
.tdt-team-cta-button span:last-child::before,
.tdt-team-cta-button span:last-child::after,
.tripdoc-footer-block .footer-contact a[href^="https://t.me"] span::before,
.tripdoc-footer-block .footer-contact a[href^="https://t.me"] span::after {
  content: none !important;
  display: none !important;
}

.tripdoc-html-block .btn:hover span[aria-hidden="true"],
.tripdoc-html-block .btn:focus-visible span[aria-hidden="true"],
body > .page-grid .btn:hover span[aria-hidden="true"],
body > .page-grid .btn:focus-visible span[aria-hidden="true"],
.tdq-card-button_primary:hover span:last-child,
.tdq-card-button_primary:focus-visible span:last-child,
.tdt-team-cta-button:hover span:last-child,
.tdt-team-cta-button:focus-visible span:last-child {
  -webkit-mask-image: var(--tripdoc-arrow-right) !important;
  mask-image: var(--tripdoc-arrow-right) !important;
}

/* 41-tablet-834-1024-only.css
   Tablet-only layer. Desktop >=1200px and mobile <=760px are intentionally untouched. */

@media (min-width: 761px) and (max-width: 1199px) {
  :root {
    --container: min(944px, calc(100vw - 64px));
    --frame: min(1024px, 100vw);
    --radius-lg: 24px;
  }

  .page-grid {
    gap: 96px !important;
  }

  .tripdoc-html-block,
  .tripdoc-html-block .section,
  .tripdoc-html-block .dark-band,
  body > .page-grid .section,
  body > .page-grid .dark-band {
    width: var(--frame) !important;
    max-width: var(--frame) !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .tripdoc-html-block:not(.tripdoc-header-block):not(.tripdoc-header-hero-block):not(.tripdoc-hero-block):not(.tripdoc-footer-block) {
    margin-top: 0 !important;
  }

  .tripdoc-html-block .section,
  body > .page-grid .section {
    padding: 72px 32px !important;
  }

  .tripdoc-html-block .dark-band,
  body > .page-grid .dark-band {
    padding: 58px 32px 68px !important;
    border-radius: 24px !important;
  }

  .section-head {
    max-width: 840px !important;
    margin-bottom: 46px !important;
  }

  .section-head h2,
  .listing-hero h1,
  .not-found h1 {
    font-size: 44px !important;
    line-height: 1.12 !important;
  }

  .section-head p,
  .listing-hero p {
    margin-top: 18px !important;
    font-size: 26px !important;
    line-height: 1.18 !important;
  }

  .spark-title::before,
  .spark-title::after {
    width: 48px !important;
    height: 48px !important;
  }

  .spark-title::before { right: calc(100% + 46px) !important; }
  .spark-title::after { left: calc(100% + 46px) !important; }

  .btn {
    min-height: 60px !important;
    padding: 0 34px !important;
    font-size: 17px !important;
  }

  .tripdoc-html-block .site-header,
  body > .site-header {
    width: calc(100vw - 72px) !important;
    max-width: 960px !important;
    min-height: 80px !important;
    height: 80px !important;
    top: 12px !important;
    padding: 0 24px !important;
    grid-template-columns: 160px minmax(0, 1fr) 194px 54px !important;
    gap: 18px !important;
    align-items: center !important;
    border-radius: 999px !important;
  }

  .tripdoc-html-block .site-header .logo,
  .tripdoc-html-block .site-header .logo img,
  body > .site-header .logo,
  body > .site-header .logo img {
    width: 124px !important;
    max-width: 124px !important;
    height: auto !important;
  }

  .tripdoc-html-block .main-nav,
  body > .site-header .main-nav {
    display: none !important;
  }

  .tripdoc-html-block .header-cta,
  body > .site-header .header-cta {
    display: inline-flex !important;
    grid-column: 3 !important;
    width: 194px !important;
    min-width: 194px !important;
    height: 54px !important;
    min-height: 54px !important;
    padding: 0 22px !important;
    justify-self: end !important;
    color: #202226 !important;
    -webkit-text-fill-color: #202226 !important;
    background: var(--lime) !important;
    font-size: 14px !important;
  }

  .tripdoc-html-block .header-cta:hover,
  body > .site-header .header-cta:hover {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    background: #202226 !important;
  }

  .tripdoc-html-block .menu-toggle,
  body > .site-header .menu-toggle {
    display: grid !important;
    grid-column: 4 !important;
    place-items: center !important;
    width: 52px !important;
    min-width: 52px !important;
    height: 52px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1.5px solid #202226 !important;
    border-radius: 50% !important;
    background: #fff !important;
  }

  .tripdoc-html-block .menu-toggle span,
  body > .site-header .menu-toggle span {
    position: absolute !important;
    display: block !important;
    width: 20px !important;
    height: 1.5px !important;
    border-radius: 999px !important;
    background: #202226 !important;
    transform-origin: center !important;
  }

  .tripdoc-html-block .menu-toggle span:first-child,
  body > .site-header .menu-toggle span:first-child {
    transform: translateY(-4px) !important;
  }

  .tripdoc-html-block .menu-toggle span:last-child,
  body > .site-header .menu-toggle span:last-child {
    transform: translateY(4px) !important;
  }

  .tripdoc-html-block.menu-open .menu-toggle span:first-child,
  .tripdoc-header-hero-block.menu-open .menu-toggle span:first-child {
    transform: rotate(45deg) !important;
  }

  .tripdoc-html-block.menu-open .menu-toggle span:last-child,
  .tripdoc-header-hero-block.menu-open .menu-toggle span:last-child {
    transform: rotate(-45deg) !important;
  }

  .tripdoc-html-block.menu-open .main-nav,
  .tripdoc-header-hero-block.menu-open .main-nav {
    position: absolute !important;
    top: calc(100% + 12px) !important;
    right: 18px !important;
    left: auto !important;
    display: grid !important;
    width: 340px !important;
    padding: 22px 26px !important;
    gap: 18px !important;
    justify-items: start !important;
    border: 1px solid rgba(52, 53, 53, .12) !important;
    border-radius: 22px !important;
    background: #fff !important;
    box-shadow: 0 18px 36px rgba(0, 0, 0, .16) !important;
  }

  .tripdoc-html-block.menu-open .main-nav a,
  .tripdoc-html-block.menu-open .nav-soon {
    color: #303033 !important;
    font-size: 17px !important;
  }

  .hero {
    min-height: 806px !important;
    padding: 0 !important;
  }

  .hero-card {
    width: 100vw !important;
    max-width: 1024px !important;
    min-height: 806px !important;
    margin: 0 auto !important;
    border-radius: 0 0 22px 22px !important;
    background-position: center center !important;
  }

  .hero-copy {
    max-width: 940px !important;
    padding-top: 185px !important;
  }

  .eyebrow {
    font-size: 26px !important;
    margin-bottom: 12px !important;
  }

  .hero h1 {
    font-size: 78px !important;
    line-height: .98 !important;
  }

  .hero-lead {
    width: 610px !important;
    margin-top: 152px !important;
    font-size: 18px !important;
    line-height: 1.25 !important;
  }

  .hero-actions {
    margin-top: 30px !important;
    gap: 18px !important;
  }

  .hero-actions .btn {
    width: 280px !important;
    min-height: 62px !important;
  }

  .familiar {
    min-height: 790px !important;
    padding-top: 90px !important;
    background-color: var(--paper) !important;
  }

  .familiar .section-head {
    margin-bottom: 58px !important;
  }

  .familiar .section-head h2 {
    font-size: 44px !important;
  }

  .familiar .section-head p {
    font-size: 28px !important;
  }

  .pain-stack {
    width: 560px !important;
    height: 560px !important;
    margin: 0 auto !important;
  }

  .pain-card {
    width: 448px !important;
    height: 448px !important;
    border-radius: 28px !important;
  }

  .pain-card span {
    max-width: 310px !important;
    font-size: 26px !important;
    line-height: 1.12 !important;
  }

  .pain-card:nth-child(1) {
    left: 56px !important;
    top: 56px !important;
    transform: rotate(0deg) !important;
    z-index: 5 !important;
  }

  .pain-card:nth-child(2) { left: 86px !important; top: 38px !important; transform: rotate(11deg) !important; }
  .pain-card:nth-child(3) { left: 96px !important; top: 76px !important; transform: rotate(18deg) !important; }
  .pain-card:nth-child(4) { left: 26px !important; top: 82px !important; transform: rotate(-17deg) !important; }
  .pain-card:nth-child(5) { left: 18px !important; top: 46px !important; transform: rotate(-24deg) !important; }

  .other-way {
    min-height: 705px !important;
    overflow: hidden !important;
  }

  .other-way .section-head {
    margin-bottom: 48px !important;
  }

  .other-way .section-head h2 {
    font-size: 48px !important;
  }

  .other-way .section-head p {
    font-size: 30px !important;
  }

  .polaroids {
    position: relative !important;
    display: block !important;
    width: 930px !important;
    height: 330px !important;
    margin: 0 auto !important;
  }

  .polaroid {
    position: absolute !important;
    width: 258px !important;
    padding: 14px 14px 28px !important;
    border-radius: 11px !important;
  }

  .polaroid img {
    height: 180px !important;
    border-radius: 7px !important;
  }

  .polaroid figcaption {
    margin-top: 16px !important;
    font-size: 18px !important;
    line-height: 1.15 !important;
  }

  .polaroid:nth-child(1) { left: 70px !important; top: 20px !important; transform: rotate(-13deg) !important; }
  .polaroid:nth-child(2) { left: 336px !important; top: 0 !important; transform: rotate(0deg) !important; }
  .polaroid:nth-child(3) { right: 56px !important; top: 16px !important; transform: rotate(14deg) !important; }

  .system {
    min-height: 1180px !important;
    padding-top: 72px !important;
    padding-bottom: 70px !important;
  }

  .system .section-head h2 {
    max-width: 780px !important;
    margin-inline: auto !important;
    font-size: 46px !important;
  }

  .system .section-head p {
    font-size: 27px !important;
  }

  .step-line {
    max-width: 330px !important;
    gap: 44px !important;
  }

  .step-line::before {
    top: 128px !important;
    bottom: 120px !important;
    border-left-color: rgba(150, 150, 150, .5) !important;
  }

  .step-line li {
    background: var(--paper) !important;
  }

  .step-icon {
    width: 92px !important;
    height: 92px !important;
    margin-bottom: 14px !important;
  }

  .step-line h3 {
    font-size: 19px !important;
    line-height: 1.1 !important;
  }

  .step-line p {
    font-size: 14px !important;
    line-height: 1.25 !important;
  }

  .quiz-start {
    min-height: 690px !important;
  }

  .quiz-start .section-head {
    margin-bottom: 36px !important;
  }

  .quiz-start .section-head h2 {
    font-size: 39px !important;
  }

  .quiz-start .section-head p {
    font-size: 26px !important;
  }

  .quiz-start .photo-fan {
    grid-template-columns: repeat(3, 190px) !important;
    gap: 24px !important;
    margin-top: 2px !important;
  }

  .photo-fan img {
    width: 190px !important;
    height: 138px !important;
    border-width: 10px !important;
  }

  .solo-note {
    margin: 40px 0 22px !important;
    font-size: 16px !important;
  }

  .quiz-start .center-btn {
    width: 350px !important;
  }

  .trips .section-head h2 {
    max-width: 720px !important;
    margin-inline: auto !important;
    font-size: 40px !important;
  }

  .trips .section-head p {
    font-size: 24px !important;
  }

  .trip-grid {
    width: 850px !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .trip-carousel {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 18px !important;
  }

  .trip-note {
    min-height: 190px !important;
    padding: 26px !important;
    border-radius: 18px !important;
  }

  .trip-note p {
    font-size: 16px !important;
    line-height: 1.2 !important;
  }

  .trip-wide {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    height: 235px !important;
    border-radius: 18px !important;
  }

  .trip-small {
    height: 195px !important;
    border-radius: 18px !important;
  }

  .trip-note.outline {
    grid-column: auto !important;
    min-height: 195px !important;
  }

  .trip-link {
    width: 370px !important;
    margin: 28px auto 0 !important;
  }

  .community {
    min-height: 970px !important;
    overflow: hidden !important;
  }

  .community .section-head h2 {
    font-size: 40px !important;
  }

  .community .section-head p {
    font-size: 25px !important;
  }

  .community-board {
    width: 900px !important;
    height: 650px !important;
    margin: 0 auto !important;
  }

  .mini-photo {
    width: 170px !important;
    padding: 10px 10px 16px !important;
  }

  .mini-photo img {
    height: 126px !important;
  }

  .mini-photo figcaption {
    margin-top: 9px !important;
    font-size: 10px !important;
  }

  .mini-photo.a { left: 42px !important; top: 65px !important; transform: rotate(-13deg) !important; }
  .mini-photo.b { right: 54px !important; top: 70px !important; transform: rotate(13deg) !important; }
  .mini-photo.c { left: 70px !important; bottom: 95px !important; transform: rotate(-11deg) !important; }
  .mini-photo.d { right: 230px !important; bottom: 230px !important; transform: rotate(13deg) !important; }
  .mini-photo.e { right: 86px !important; bottom: 60px !important; transform: rotate(12deg) !important; }

  .bubble {
    width: 310px !important;
    padding: 22px 24px !important;
    border-radius: 18px !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
  }

  .bubble.top { top: 118px !important; transform: translateX(-50%) !important; }
  .bubble.mid { top: 325px !important; width: 400px !important; transform: translateX(-58%) !important; }
  .bubble.bottom { bottom: 88px !important; width: 290px !important; transform: translateX(-50%) !important; }

  .decor-leaf { left: 36px !important; top: 26px !important; width: 92px !important; }
  .decor-heart-small { left: 540px !important; top: 62px !important; width: 108px !important; }
  .decor-skis { right: 12px !important; top: 40px !important; width: 56px !important; }
  .decor-bolt { left: 432px !important; top: 310px !important; width: 52px !important; }
  .decor-star-outline { left: 330px !important; bottom: 150px !important; width: 76px !important; }
  .decor-mountain { right: 78px !important; bottom: 210px !important; width: 120px !important; }

  .community .center-btn {
    width: 370px !important;
    margin-top: 6px !important;
  }

  .moments {
    padding-top: 76px !important;
    padding-bottom: 76px !important;
  }

  .moments .section-head h2 {
    max-width: 760px !important;
    margin-inline: auto !important;
    font-size: 38px !important;
  }

  .moments .section-head p {
    display: none !important;
  }

  .moments-grid {
    width: 880px !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    display: block !important;
  }

  .moments-carousel {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 18px !important;
  }

  .moments-grid img,
  .moments-grid .m1,
  .moments-grid .m5 {
    width: 100% !important;
    height: 230px !important;
    min-height: 0 !important;
    grid-column: auto !important;
    grid-row: auto !important;
    border-radius: 18px !important;
    object-fit: cover !important;
  }

  .moments-grid .paint-mark {
    display: block !important;
    place-self: center !important;
    color: var(--purple) !important;
    font-size: 112px !important;
    line-height: 1 !important;
    transform: rotate(-8deg) !important;
  }

  .moments-grid p,
  .moments-lead {
    display: block !important;
    align-self: end !important;
    margin: 0 0 20px !important;
    color: var(--muted) !important;
    font-family: "Unbounded", Arial, sans-serif !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.25 !important;
  }

  .founders {
    min-height: 825px !important;
    padding-top: 62px !important;
  }

  .founders .section-head {
    max-width: 900px !important;
    margin-bottom: 48px !important;
  }

  .founders .section-head h2 {
    font-size: 40px !important;
  }

  .founders .section-head p {
    font-size: 24px !important;
  }

  .founder-intro,
  .founder-outro {
    max-width: 430px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: left !important;
    font-size: 15px !important;
    line-height: 1.35 !important;
  }

  .founder-grid {
    max-width: 850px !important;
    gap: 18px !important;
    margin-top: 24px !important;
  }

  .founder-card {
    display: block !important;
    min-height: 148px !important;
    padding: 18px !important;
    border-radius: 16px !important;
  }

  .founder-card img {
    width: 188px !important;
    height: 250px !important;
    margin: -282px auto 16px !important;
    border: 2px solid var(--lime) !important;
  }

  .founder-card h3 {
    font-size: 18px !important;
  }

  .founder-card p {
    font-size: 14px !important;
  }

  .founders::before {
    left: 120px !important;
    top: 488px !important;
    width: 118px !important;
  }

  .founders::after {
    right: 120px !important;
    top: 488px !important;
    width: 118px !important;
  }

  .final-cta {
    padding-top: 80px !important;
    padding-bottom: 74px !important;
  }

  .final-cta .section-head h2 {
    font-size: 40px !important;
  }

  .final-cta .section-head p {
    font-size: 25px !important;
  }

  .final-cta .center-btn {
    width: 360px !important;
    margin-top: 28px !important;
  }

  .site-footer {
    width: var(--frame) !important;
    max-width: var(--frame) !important;
    margin-inline: auto !important;
    border-radius: 22px 22px 0 0 !important;
    padding: 44px 28px 32px !important;
  }

  .footer-inner {
    grid-template-columns: 1.25fr .85fr 1fr !important;
    gap: 42px !important;
    padding: 0 !important;
  }

  .footer-logo {
    font-size: 42px !important;
  }

  .footer-tagline {
    font-size: 28px !important;
  }

  .site-footer h2 {
    font-size: 22px !important;
  }

  .footer-contact a {
    width: 178px !important;
    min-height: 34px !important;
    font-size: 13px !important;
  }

  .footer-bottom {
    margin-top: 24px !important;
    font-size: 13px !important;
  }

  .tdq-page-head,
  .tdt-page-head {
    --tdq-frame: min(960px, calc(100vw - 32px));
    --tdt-frame: min(960px, calc(100vw - 32px));
    width: min(960px, calc(100vw - 32px)) !important;
    max-width: min(960px, calc(100vw - 32px)) !important;
    margin-inline: auto !important;
  }

  .tdq-header,
  .tdt-header,
  .tdx-header {
    width: min(960px, calc(100vw - 32px)) !important;
    min-height: 62px !important;
    height: 62px !important;
    padding: 0 16px !important;
    grid-template-columns: 116px minmax(0, 1fr) 154px 40px !important;
    gap: 12px !important;
  }

  .tdq-logo img,
  .tdt-logo img,
  .tdx-logo img {
    width: 96px !important;
    max-width: 96px !important;
  }

  .tdq-nav,
  .tdt-nav,
  .tdx-nav {
    display: none !important;
  }

  .tdq-header-button,
  .tdt-header-button,
  .tdx-cta {
    display: inline-flex !important;
    width: 154px !important;
    min-width: 154px !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 14px !important;
    font-size: 10px !important;
  }

  .tdq-menu-button,
  .tdt-menu-button,
  .tdx-menu {
    display: grid !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    background: #fff !important;
    border: 1px solid #202226 !important;
  }

  .tdq-title,
  .tdt-title {
    margin-top: 54px !important;
    margin-bottom: 34px !important;
  }

  .tdq-title h1,
  .tdt-title h1 {
    font-size: 42px !important;
    line-height: 1.05 !important;
  }

  .tdq-title p {
    font-size: 24px !important;
    line-height: 1.14 !important;
  }

  .tdq-title h1::before,
  .tdq-title h1::after,
  .tdt-title-star {
    width: 44px !important;
    height: 44px !important;
  }

  .tdq-catalog-anchor,
  .tdt-catalog-anchor {
    margin-top: 24px !important;
  }

  :is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor, #rec2354170351),
  :is(.uc-tripdoc-trips, .tripdoc-trips, #rec2355046761) {
    width: min(960px, calc(100vw - 32px)) !important;
    max-width: min(960px, calc(100vw - 32px)) !important;
    margin-inline: auto !important;
  }

  :is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor, #rec2354170351) .t-store__card-list,
  :is(.uc-tripdoc-trips, .tripdoc-trips, #rec2355046761) .t-store__card-list {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px !important;
    align-items: start !important;
  }

  :is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor, #rec2354170351) .t-store__card,
  :is(.uc-tripdoc-trips, .tripdoc-trips, #rec2355046761) .t-store__card {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }

  :is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor, #rec2354170351) .t-store__card {
    min-height: 470px !important;
    padding: 54px 28px 24px !important;
    border-radius: 22px !important;
  }

  :is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor, #rec2354170351) .tdq-card-title,
  :is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor, #rec2354170351) .t-store__card__title {
    font-size: 30px !important;
    line-height: 1.08 !important;
  }

  :is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor, #rec2354170351) .tdq-card-button {
    min-height: 48px !important;
  }

  :is(.uc-tripdoc-trips, .tripdoc-trips, #rec2355046761) .t-store__card {
    min-height: 548px !important;
    padding: 34px 24px 24px !important;
    border-radius: 22px !important;
  }

  .tdt-trip-card-title {
    font-size: 28px !important;
    line-height: 1.08 !important;
  }

  .tdt-trip-card-image {
    height: 250px !important;
    border-radius: 16px !important;
  }

  .tdt-trip-card-meta {
    margin-top: 28px !important;
  }

  .tdt-trip-actions {
    gap: 12px !important;
  }

  .tdt-trip-button {
    min-height: 50px !important;
    font-size: 16px !important;
  }

  .tdt-ott-placeholder,
  .tdt-travel-help,
  .tdt-team-cta {
    width: min(960px, calc(100vw - 32px)) !important;
    max-width: min(960px, calc(100vw - 32px)) !important;
    margin-inline: auto !important;
  }

  .tdt-ott-placeholder {
    min-height: 385px !important;
    border-radius: 22px !important;
  }

  .tdt-ott-content h2 {
    font-size: 36px !important;
  }

  .tdt-ott-search {
    grid-template-columns: 1fr 1fr 1.15fr 1.4fr 88px !important;
  }

  .tdt-travel-help {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px !important;
    margin-top: 34px !important;
  }

  .tdt-help-card {
    min-height: 174px !important;
    padding: 26px 22px !important;
    border-radius: 22px !important;
  }

  .tdt-help-card img {
    width: 38px !important;
    height: 38px !important;
  }

  .tdt-help-card h2 {
    margin-top: 34px !important;
    font-size: 18px !important;
  }

  .tdt-help-card p {
    font-size: 15px !important;
    line-height: 1.16 !important;
  }

  .tdt-team-cta {
    padding: 72px 24px 76px !important;
  }

  .tdt-team-cta h2 {
    font-size: 42px !important;
    line-height: 1.08 !important;
  }

  .tdt-team-cta p {
    font-size: 18px !important;
  }

  .tdt-team-cta-button {
    width: 360px !important;
    min-height: 58px !important;
  }
}

@media (min-width: 761px) and (max-width: 899px) {
  :root {
    --container: min(770px, calc(100vw - 48px));
    --frame: min(834px, 100vw);
  }

  .page-grid {
    gap: 78px !important;
  }

  .tripdoc-html-block .site-header,
  body > .site-header {
    width: calc(100vw - 48px) !important;
    grid-template-columns: 140px minmax(0, 1fr) 174px 50px !important;
  }

  .hero-card {
    min-height: 720px !important;
  }

  .hero-copy {
    padding-top: 160px !important;
  }

  .hero h1 {
    font-size: 62px !important;
  }

  .hero-lead {
    margin-top: 130px !important;
    font-size: 17px !important;
  }

  .pain-stack {
    width: 500px !important;
    height: 500px !important;
  }

  .pain-card {
    width: 400px !important;
    height: 400px !important;
  }

  .polaroids {
    width: 760px !important;
    height: 300px !important;
  }

  .polaroid {
    width: 220px !important;
  }

  .polaroid img {
    height: 152px !important;
  }

  .polaroid:nth-child(1) { left: 42px !important; }
  .polaroid:nth-child(2) { left: 270px !important; }
  .polaroid:nth-child(3) { right: 38px !important; }

  .community-board {
    width: 770px !important;
  }

  .moments-grid {
    width: 760px !important;
  }

  .founder-grid,
  .trip-grid {
    width: 760px !important;
  }

  .tdq-page-head,
  .tdt-page-head,
  :is(.uc-tripdoc-quiz-store, .uc-tripdoc-quiz-stor, #rec2354170351),
  :is(.uc-tripdoc-trips, .tripdoc-trips, #rec2355046761),
  .tdt-ott-placeholder,
  .tdt-travel-help,
  .tdt-team-cta {
    width: min(800px, calc(100vw - 32px)) !important;
    max-width: min(800px, calc(100vw - 32px)) !important;
  }

  .tdq-title h1,
  .tdt-title h1,
  .tdt-team-cta h2 {
    font-size: 36px !important;
  }

  .tdt-trip-card-title {
    font-size: 23px !important;
  }

  .tdt-trip-card-image {
    height: 210px !important;
  }
}

/* 1024/834 correction pass: tablet only, desktop and 390px are intentionally untouched. */
@media (min-width: 761px) and (max-width: 1199px) {
  body.menu-open .tripdoc-html-block .site-header .main-nav,
  body.menu-open .tripdoc-header-hero-block .site-header .main-nav,
  body.menu-open > .site-header .main-nav {
    position: absolute !important;
    top: calc(100% + 12px) !important;
    right: 18px !important;
    left: auto !important;
    display: grid !important;
    width: 330px !important;
    padding: 24px 28px !important;
    gap: 18px !important;
    border-radius: 22px !important;
    background: #f8f9fa !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, .14) !important;
    z-index: 40 !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  body.menu-open .tdq-menu,
  body.menu-open .tdt-menu {
    display: grid !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  body.menu-open .tripdoc-html-block .site-header .main-nav a,
  body.menu-open .tripdoc-html-block .site-header .nav-soon,
  body.menu-open > .site-header .main-nav a,
  body.menu-open > .site-header .nav-soon {
    color: #303033 !important;
    -webkit-text-fill-color: #303033 !important;
    font-size: 17px !important;
    line-height: 1.25 !important;
    text-decoration: none !important;
  }

  body.menu-open .menu-toggle span:first-child,
  body.menu-open .site-header .menu-toggle span:first-child {
    transform: rotate(45deg) !important;
  }

  body.menu-open .menu-toggle span:last-child,
  body.menu-open .site-header .menu-toggle span:last-child {
    transform: rotate(-45deg) !important;
  }

  .tripdoc-html-block .btn,
  .hero-actions .btn,
  .center-btn,
  .trip-link,
  .tdq-card-button,
  .tdt-trip-button,
  .tdt-team-cta-button {
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    gap: 16px !important;
  }

  .hero-actions .btn {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .hero-actions .btn span,
  .center-btn span,
  .trip-link span,
  .tdq-card-button span,
  .tdt-trip-button span,
  .tdt-team-cta-button span {
    margin-left: 8px !important;
    flex: 0 0 auto !important;
  }

  .other-way {
    min-height: 750px !important;
    padding: 44px 0 42px !important;
    border-radius: 24px !important;
    overflow: hidden !important;
  }

  .other-way .section-head {
    margin-bottom: 56px !important;
  }

  .other-way .section-head h2 {
    font-size: 44px !important;
    line-height: .98 !important;
  }

  .other-way .section-head p {
    max-width: 760px !important;
    margin-inline: auto !important;
    font-size: 28px !important;
    line-height: 1.2 !important;
  }

  .polaroids {
    width: 1000px !important;
    max-width: 100% !important;
    height: 390px !important;
    margin-inline: auto !important;
    overflow: visible !important;
  }

  .polaroid {
    width: 250px !important;
    padding: 12px 12px 30px !important;
    border-radius: 12px !important;
    box-shadow: 0 24px 34px rgba(0, 0, 0, .18) !important;
  }

  .polaroid img {
    height: 178px !important;
    border-radius: 6px !important;
  }

  .polaroid figcaption {
    font-size: 17px !important;
    line-height: 1.12 !important;
  }

  .polaroid:nth-child(1) {
    left: 70px !important;
    top: 72px !important;
    transform: rotate(-14deg) !important;
  }

  .polaroid:nth-child(2) {
    left: 375px !important;
    top: 52px !important;
    transform: rotate(0deg) !important;
    z-index: 3 !important;
  }

  .polaroid:nth-child(3) {
    right: 74px !important;
    top: 76px !important;
    transform: rotate(14deg) !important;
  }

  .polaroid::before {
    width: 24px !important;
    height: 34px !important;
    top: -31px !important;
  }

  .polaroids::before {
    content: "" !important;
    position: absolute !important;
    left: -60px !important;
    right: -60px !important;
    top: 14px !important;
    height: 100px !important;
    pointer-events: none !important;
    background:
      radial-gradient(ellipse at 16% 96%, transparent 0 55%, #c7ff66 56% 57%, transparent 58%),
      radial-gradient(ellipse at 50% 96%, transparent 0 55%, #c7ff66 56% 57%, transparent 58%),
      radial-gradient(ellipse at 84% 96%, transparent 0 55%, #c7ff66 56% 57%, transparent 58%);
    background-size: 34% 100%, 34% 100%, 34% 100%;
    background-position: left top, center top, right top;
    background-repeat: no-repeat;
    opacity: .9;
  }

  .system {
    min-height: 1450px !important;
    padding-top: 66px !important;
    padding-bottom: 98px !important;
    overflow: visible !important;
  }

  .system .section-head h2 {
    max-width: 840px !important;
    font-size: 52px !important;
    line-height: .96 !important;
  }

  .system .section-head p {
    font-size: 28px !important;
    line-height: 1.08 !important;
  }

  .step-line {
    max-width: 420px !important;
    gap: 62px !important;
    margin-top: 54px !important;
  }

  .step-line::before {
    display: none !important;
  }

  .step-line li {
    position: relative !important;
    min-height: 190px !important;
    background: transparent !important;
  }

  .step-line li:not(:last-child)::after {
    content: "" !important;
    position: absolute !important;
    left: 50% !important;
    bottom: -50px !important;
    width: 1px !important;
    height: 50px !important;
    transform: translateX(-50%) !important;
    background-image: linear-gradient(to bottom, #a9adb2 45%, transparent 0) !important;
    background-size: 1px 8px !important;
    background-repeat: repeat-y !important;
  }

  .step-line li:not(:last-child)::before {
    content: "" !important;
    position: absolute !important;
    left: 50% !important;
    bottom: -52px !important;
    width: 8px !important;
    height: 8px !important;
    border-right: 1.5px solid #a9adb2 !important;
    border-bottom: 1.5px solid #a9adb2 !important;
    transform: translateX(-50%) rotate(45deg) !important;
  }

  .step-icon {
    width: 90px !important;
    height: 90px !important;
    object-fit: contain !important;
  }

  .step-line h3 {
    margin-top: 16px !important;
    font-size: 20px !important;
    line-height: 1.08 !important;
  }

  .step-line p {
    max-width: 330px !important;
    margin-inline: auto !important;
    font-size: 15px !important;
    line-height: 1.25 !important;
  }

  .quiz-start {
    min-height: 760px !important;
    padding-top: 58px !important;
    padding-bottom: 56px !important;
  }

  .quiz-start .section-head h2 {
    font-size: 42px !important;
    line-height: 1 !important;
  }

  .quiz-start .section-head p {
    max-width: 820px !important;
    font-size: 28px !important;
  }

  .quiz-start .photo-fan {
    width: 760px !important;
    height: 380px !important;
    margin: 28px auto 0 !important;
    display: block !important;
    position: relative !important;
  }

  .quiz-start .photo-fan img {
    position: absolute !important;
    width: 245px !important;
    height: 170px !important;
    object-fit: cover !important;
    border: 12px solid #f7f9fb !important;
    box-shadow: none !important;
  }

  .quiz-start .photo-fan img:nth-child(1) {
    left: 34px !important;
    top: 30px !important;
    transform: rotate(-13deg) !important;
  }

  .quiz-start .photo-fan img:nth-child(2) {
    left: 260px !important;
    top: 0 !important;
    transform: rotate(0deg) !important;
    z-index: 3 !important;
  }

  .quiz-start .photo-fan img:nth-child(3) {
    right: 34px !important;
    top: 30px !important;
    transform: rotate(13deg) !important;
  }

  .quiz-start .photo-fan img:nth-child(4) {
    left: 44px !important;
    bottom: 38px !important;
    transform: rotate(-13deg) !important;
  }

  .quiz-start .photo-fan img:nth-child(5) {
    left: 260px !important;
    bottom: 70px !important;
    transform: rotate(0deg) !important;
    z-index: 3 !important;
  }

  .quiz-start .photo-fan img:nth-child(6) {
    right: 44px !important;
    bottom: 38px !important;
    transform: rotate(13deg) !important;
  }

  .quiz-start .solo-note {
    margin-top: 14px !important;
    font-size: 18px !important;
  }

  .quiz-start .center-btn {
    width: 360px !important;
    margin-inline: auto !important;
  }

  .trip-link {
    display: flex !important;
    width: 370px !important;
    margin: 28px auto 0 !important;
    grid-column: 1 / -1 !important;
  }

  .trip-note.outline,
  .trip-note:nth-child(5) {
    border: 1.5px solid #303033 !important;
  }

  .community {
    min-height: 1110px !important;
    padding-top: 58px !important;
    padding-bottom: 64px !important;
  }

  .community-board {
    width: 840px !important;
    height: 760px !important;
    max-width: 100% !important;
  }

  .mini-photo {
    width: 185px !important;
  }

  .mini-photo img {
    height: 138px !important;
  }

  .mini-photo.a {
    left: 40px !important;
    top: 58px !important;
    transform: rotate(-13deg) !important;
  }

  .mini-photo.b {
    right: 40px !important;
    top: 58px !important;
    transform: rotate(13deg) !important;
  }

  .mini-photo.c {
    left: 56px !important;
    bottom: 98px !important;
    transform: rotate(-13deg) !important;
  }

  .mini-photo.d {
    right: 188px !important;
    top: 300px !important;
    transform: rotate(13deg) !important;
  }

  .mini-photo.e {
    right: 68px !important;
    bottom: 76px !important;
    transform: rotate(13deg) !important;
  }

  .bubble.top {
    top: 120px !important;
    left: 50% !important;
    width: 300px !important;
    transform: translateX(-50%) !important;
  }

  .bubble.mid {
    top: 360px !important;
    left: 31% !important;
    width: 430px !important;
    transform: none !important;
  }

  .bubble.bottom {
    bottom: 120px !important;
    left: 50% !important;
    width: 310px !important;
    transform: translateX(-50%) !important;
  }

  .decor-leaf {
    left: 24px !important;
    top: 26px !important;
    width: 92px !important;
  }

  .decor-heart-small {
    left: 410px !important;
    top: 80px !important;
    width: 96px !important;
  }

  .decor-skis {
    right: 18px !important;
    top: 28px !important;
    width: 54px !important;
  }

  .decor-bolt {
    left: 404px !important;
    top: 316px !important;
    width: 54px !important;
  }

  .decor-star-outline {
    left: 292px !important;
    bottom: 170px !important;
    width: 74px !important;
  }

  .decor-mountain {
    right: 74px !important;
    bottom: 220px !important;
    width: 112px !important;
  }

  .moments .section-head h2 {
    max-width: 800px !important;
    font-size: 40px !important;
    line-height: 1 !important;
  }

  .moments-grid {
    width: 880px !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 18px !important;
  }

  .moments-carousel {
    display: contents !important;
  }

  .moments-grid img,
  .moments-grid .m1,
  .moments-grid .m5 {
    width: 100% !important;
    height: 260px !important;
    border-radius: 18px !important;
    object-fit: cover !important;
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .moments-grid .m5 {
    grid-column: 1 !important;
    grid-row: 3 !important;
  }

  .moments-grid .paint-mark {
    grid-column: 2 !important;
    grid-row: 3 !important;
    justify-self: center !important;
    align-self: start !important;
    width: 132px !important;
    height: 132px !important;
    font-size: 0 !important;
    background: url("https://static.tildacdn.com/tild6230-6535-4565-a631-346338303466/heart-big.png") center / contain no-repeat !important;
  }

  .moments-grid p,
  .moments-lead {
    grid-column: 2 !important;
    grid-row: 3 !important;
    align-self: end !important;
    max-width: 370px !important;
    margin: 0 auto 18px !important;
    font-size: 15px !important;
    line-height: 1.25 !important;
  }

  .founders {
    min-height: 920px !important;
    padding-top: 58px !important;
    padding-bottom: 64px !important;
  }

  .founders .section-head h2 {
    font-size: 40px !important;
    line-height: 1.05 !important;
  }

  .founders .section-head p {
    font-size: 26px !important;
    line-height: 1.18 !important;
  }

  .founder-intro {
    margin-top: 38px !important;
    max-width: 520px !important;
    font-size: 15px !important;
  }

  .founder-grid {
    max-width: 820px !important;
    margin-top: 278px !important;
    gap: 18px !important;
  }

  .founder-card {
    position: relative !important;
    min-height: 160px !important;
    padding: 20px !important;
    overflow: visible !important;
  }

  .founder-card img {
    position: absolute !important;
    left: 50% !important;
    bottom: calc(100% + 18px) !important;
    width: 190px !important;
    height: 250px !important;
    margin: 0 !important;
    transform: translateX(-50%) !important;
    object-fit: cover !important;
    border: 2px solid var(--lime) !important;
    border-radius: 16px !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .founder-card h3 {
    font-size: 20px !important;
  }

  .founder-card p {
    font-size: 14px !important;
    line-height: 1.32 !important;
  }

  .founders::before {
    left: 96px !important;
    top: 548px !important;
    width: 116px !important;
  }

  .founders::after {
    right: 96px !important;
    top: 548px !important;
    width: 116px !important;
  }

  .founder-outro {
    max-width: 520px !important;
    margin-top: 34px !important;
    font-size: 15px !important;
  }
}

@media (min-width: 761px) and (max-width: 899px) {
  .polaroids {
    width: 834px !important;
    height: 365px !important;
  }

  .polaroid {
    width: 218px !important;
  }

  .polaroid img {
    height: 154px !important;
  }

  .polaroid:nth-child(1) {
    left: 42px !important;
    top: 82px !important;
  }

  .polaroid:nth-child(2) {
    left: 308px !important;
    top: 58px !important;
  }

  .polaroid:nth-child(3) {
    right: 42px !important;
    top: 82px !important;
  }

  .community-board {
    width: 790px !important;
    height: 710px !important;
  }

  .moments-grid {
    width: 790px !important;
  }

  .founder-grid,
  .trip-grid {
    width: 790px !important;
  }
}

