.journeys-page {
  scroll-padding-top: 96px;
}

.dx-page {
  --dx-bg: #fbfaf7;
  --dx-surface: rgba(255, 255, 255, 0.84);
  --dx-surface-strong: #fffdfa;
  --dx-ink: #11233f;
  --dx-ink-strong: #0c0e1a;
  --dx-muted: #4a5b78;
  --dx-line: #e7e0d4;
  --dx-gold: #d6ae70;
  --dx-gold-deep: #b88846;
  --dx-coral: #e8908c;
  --dx-shadow: 0 18px 56px rgba(12, 14, 26, 0.08);
  background:
    radial-gradient(circle at top right, rgba(214, 174, 112, 0.16), transparent 24%),
    linear-gradient(180deg, #fffdfa 0%, #fbfaf7 28%, #f7f2e8 100%);
}

.dx-section {
  padding: 88px 0;
  position: relative;
}

.dx-section + .dx-section {
  border-top: 1px solid rgba(231, 224, 212, 0.56);
}

.dx-eyebrow,
.dx-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dx-gold-deep);
}

.dx-eyebrow::before,
.dx-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(184, 136, 70, 0.5);
}

.dx-section-head {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}

.dx-section-head-left {
  margin-inline: 0;
  text-align: left;
}

.dx-section-head h2,
.dx-flow-head h2,
.dx-journeys-head h2,
.dx-spotlight-copy h2,
.dx-final-copy h2 {
  margin: 14px 0 10px;
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.98;
  color: var(--dx-ink-strong);
}

.dx-section-head p,
.dx-flow-head p,
.dx-journeys-head p,
.dx-spotlight-copy p,
.dx-final-copy p {
  margin: 0;
  max-width: 700px;
  font-size: 15px;
  line-height: 1.72;
  color: var(--dx-muted);
}

.dx-hero {
  position: relative;
  min-height: clamp(460px, calc(58vh - var(--m-header-h, 88px)), 560px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.dx-hero-media,
.dx-hero-overlay {
  position: absolute;
  inset: 0;
}

.dx-hero-media {
  background-size: cover;
  background-position: center 52%;
  transform: scale(1.04);
}

.dx-hero-overlay {
  background:
    linear-gradient(105deg, rgba(7, 15, 31, 0.82) 0%, rgba(7, 15, 31, 0.4) 42%, rgba(7, 15, 31, 0.14) 100%),
    linear-gradient(to top, rgba(7, 15, 31, 0.42) 0%, transparent 48%);
}

.dx-hero-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: 36px;
}

.dx-hero-copy {
  max-width: 620px;
  color: #fff;
}

.dx-hero-copy .dx-kicker {
  color: rgba(255, 240, 220, 0.88);
}

.dx-hero-copy .dx-kicker::before {
  background: rgba(255, 255, 255, 0.42);
}

.dx-hero-copy h1 {
  margin: 18px 0 18px;
  font-family: 'Norelli', 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.1;
  letter-spacing: 0.05em;
  color: #fff;
}

.dx-hero-copy p {
  max-width: 560px;
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.84);
}

.dx-hero-actions,
.dx-spotlight-actions,
.dx-final-actions,
.dx-drawer-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.dx-hero-actions {
  margin-top: 28px;
}

.dx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.dx-btn:hover {
  transform: translateY(-1px);
}

.dx-btn-primary {
  background: linear-gradient(135deg, var(--dx-ink) 0%, #203a63 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(17, 35, 63, 0.22);
}

.dx-btn-primary:hover {
  box-shadow: 0 18px 32px rgba(17, 35, 63, 0.28);
}

.dx-btn-secondary,
.dx-btn-chat {
  background: rgba(255, 255, 255, 0.6);
  color: var(--dx-ink);
  border-color: rgba(17, 35, 63, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.dx-btn-chat {
  cursor: pointer;
}

.dx-inline-link {
  color: var(--dx-ink);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size 180ms ease;
}

.dx-inline-link:hover {
  background-size: 100% 1px;
}

.dx-moods {
  padding-top: 22px;
  padding-bottom: 6px;
}

.dx-mood-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.dx-mood-card {
  position: relative;
  display: grid;
  align-content: end;
  gap: 12px;
  min-height: 158px;
  padding: 18px 20px 20px;
  border-radius: 22px;
  border: 1px solid var(--dx-line);
  background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(255,250,244,0.86) 100%);
  text-align: left;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease, background 240ms ease, opacity 240ms ease;
}

.dx-mood-card:hover,
.dx-mood-card.is-active {
  transform: translateY(-2px);
  border-color: rgba(184, 136, 70, 0.5);
  box-shadow: var(--dx-shadow);
}

.dx-mood-card.is-active {
  background: linear-gradient(180deg, rgba(255,249,240,0.96) 0%, rgba(250,244,233,0.98) 100%);
  transform: translateY(-4px);
}

.dx-mood-check {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(17, 35, 63, 0.24);
}

.dx-mood-card.is-active .dx-mood-check {
  background: var(--dx-gold-deep);
  border-color: var(--dx-gold-deep);
  box-shadow: 0 0 0 4px rgba(184, 136, 70, 0.12);
}

.dx-mood-icon {
  position: absolute;
  top: 18px;
  right: 46px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dx-gold-deep);
}

.dx-mood-icon svg {
  width: 36px;
  height: 36px;
}

.dx-mood-card strong {
  display: block;
  margin-top: 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--dx-ink-strong);
}

.dx-mood-card span:last-child {
  display: block;
  margin-top: -2px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--dx-muted);
}

.dx-selection-note {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 10px;
  color: var(--dx-muted);
  font-size: 14px;
}

.dx-selection-line {
  width: 32px;
  height: 1px;
  background: rgba(184, 136, 70, 0.42);
}

.dx-flow-shell {
  padding: 22px 30px 20px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.82) 0%, rgba(252,247,240,0.72) 100%);
  border: 1px solid rgba(231, 224, 212, 0.76);
  box-shadow: 0 16px 44px rgba(12, 14, 26, 0.05);
}

.dx-explorer {
  padding-top: 0;
}

.dx-journeys {
  padding-top: 12px;
}

[data-selection-reactive] {
  transition: opacity 320ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1), filter 320ms ease;
  transform-origin: top center;
}

.dx-page.is-updating [data-selection-reactive] {
  opacity: 0.46;
  transform: translateY(18px);
  filter: saturate(0.92);
}

.dx-flow-head {
  max-width: 660px;
}

.dx-flow-rail {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 16px;
  flex-wrap: wrap;
}

.dx-flow-rail span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(74, 91, 120, 0.9);
}

.dx-flow-rail span:not(:last-child)::after {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(214, 174, 112, 0.36);
}

.dx-region-tabs,
.dx-destination-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.dx-region-tab,
.dx-destination-pill {
  border-radius: 999px;
  border: 1px solid rgba(17, 35, 63, 0.1);
  background: rgba(255, 255, 255, 0.76);
  color: var(--dx-muted);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.dx-region-tab {
  padding: 11px 18px;
}

.dx-destination-pills {
  margin-top: 10px;
}

.dx-destination-pill {
  padding: 9px 15px;
}

.dx-region-tab:hover,
.dx-region-tab.is-active,
.dx-destination-pill:hover,
.dx-destination-pill.is-active {
  color: var(--dx-ink-strong);
  border-color: rgba(184, 136, 70, 0.36);
  transform: translateY(-1px);
}

.dx-region-tab.is-active {
  background: linear-gradient(180deg, rgba(255,251,243,1) 0%, rgba(247,238,222,0.92) 100%);
  box-shadow: inset 0 -2px 0 var(--dx-gold);
}

.dx-destination-pill.is-active {
  background: var(--dx-ink);
  color: #fff;
  border-color: var(--dx-ink);
}

.dx-journeys-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.dx-state-summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(17, 35, 63, 0.08);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--dx-muted);
  white-space: nowrap;
}

.dx-state-summary span:first-child,
.dx-state-summary span:last-child {
  color: var(--dx-ink-strong);
}

.dx-journeys-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.dx-journey-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 22px;
  border: 1px solid rgba(17, 35, 63, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(255,251,246,0.98) 100%);
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(12, 14, 26, 0.05);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.dx-journey-card:hover,
.dx-journey-card.is-selected {
  transform: translateY(-4px);
  border-color: rgba(184, 136, 70, 0.42);
  box-shadow: 0 22px 48px rgba(12, 14, 26, 0.08);
}

.dx-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.dx-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 15, 31, 0.08) 0%, rgba(7, 15, 31, 0.4) 100%);
}

.dx-card-badge,
.dx-card-heart {
  position: absolute;
  top: 14px;
  z-index: 2;
}

.dx-card-badge {
  left: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
}

.dx-card-heart {
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--dx-ink);
  box-shadow: 0 8px 20px rgba(7, 15, 31, 0.12);
}

.dx-card-heart.is-saved {
  color: var(--dx-coral);
}

.dx-card-heart svg {
  width: 18px;
  height: 18px;
}

.dx-card-hover {
  position: absolute;
  inset: auto 14px 14px;
  z-index: 2;
  display: flex;
  gap: 8px;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 200ms ease, opacity 200ms ease;
}

.dx-journey-card:hover .dx-card-hover {
  transform: translateY(0);
  opacity: 1;
}

.dx-card-hover button {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--dx-ink);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
}

.dx-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 18px 20px;
}

.dx-card-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dx-gold-deep);
}

.dx-card-title {
  margin: 10px 0 8px;
  font-family: 'Norelli', 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 29px;
  font-weight: 900;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--dx-ink-strong);
}

.dx-card-description {
  margin: 0;
  font-size: 14px;
  line-height: 1.66;
  color: var(--dx-muted);
}

.dx-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.dx-card-tag {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(17, 35, 63, 0.08);
  background: rgba(250, 247, 241, 0.9);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--dx-muted);
}

.dx-card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 18px;
}

.dx-card-actions .dx-btn {
  min-height: 40px;
  padding-inline: 16px;
}

.dx-spotlight-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42%;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,0.94) 0%, rgba(249,243,230,0.96) 100%);
  border: 1px solid rgba(231, 224, 212, 0.82);
  box-shadow: var(--dx-shadow);
}

.dx-spotlight-copy {
  padding: 44px;
}

.dx-spotlight-media {
  min-height: 420px;
  background-size: cover;
  background-position: center;
}

.dx-spotlight-actions {
  margin-top: 24px;
}

.dx-browse-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 22px;
}

.dx-browse-col h3 {
  margin: 0 0 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--dx-ink-strong);
}

.dx-browse-col p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--dx-muted);
}

.dx-final-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 36px 40px;
  border-radius: 28px;
  background: linear-gradient(135deg, #11233f 0%, #1b3357 50%, #27436b 100%);
  color: #fff;
  overflow: hidden;
}

.dx-final-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 24%, rgba(232, 144, 140, 0.14), transparent 20%),
    radial-gradient(circle at 92% 78%, rgba(214, 174, 112, 0.22), transparent 22%);
  pointer-events: none;
}

.dx-final-copy,
.dx-final-actions {
  position: relative;
  z-index: 1;
}

.dx-final-copy h2,
.dx-final-copy p {
  color: #fff;
}

.dx-final-copy p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
}

.dx-final-actions {
  justify-content: flex-end;
}

.dx-final-actions .dx-btn-secondary,
.dx-final-actions .dx-btn-chat {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.dx-final-kite {
  position: absolute;
  right: 24px;
  bottom: 20px;
  opacity: 0.14;
  pointer-events: none;
}

.dx-final-kite svg {
  color: #fff;
}

.dx-drawer {
  position: fixed;
  inset: 0;
  z-index: 65;
  pointer-events: none;
}

.dx-drawer.is-open {
  pointer-events: auto;
}

.dx-drawer-scrim {
  position: absolute;
  inset: 0;
  background: rgba(12, 14, 26, 0.28);
  opacity: 0;
  transition: opacity 200ms ease;
}

.dx-drawer.is-open .dx-drawer-scrim {
  opacity: 1;
}

.dx-drawer-panel {
  position: absolute;
  top: calc(var(--m-header-h, 88px) + 16px);
  right: 24px;
  bottom: 120px;
  height: auto;
  max-height: calc(100vh - var(--m-header-h, 88px) - 140px);
  width: min(380px, calc(100vw - 48px));
  background:
    url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='36' height='36'><path d='M0 0L36 36M36 0L0 36' stroke='%232563eb' stroke-opacity='.042' stroke-width='.7' fill='none'/></svg>") repeat,
    linear-gradient(180deg, #ffffff 0%, #fdf9f3 100%);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 28px;
  box-shadow:
    0 2px 8px rgba(12, 14, 26, 0.06),
    0 12px 36px rgba(12, 14, 26, 0.10),
    0 40px 80px rgba(12, 14, 26, 0.12);
  transform: perspective(900px) translateX(calc(100% + 48px)) rotateY(-12deg) scale(0.92);
  transform-origin: right center;
  transform-style: preserve-3d;
  opacity: 0;
  transition:
    transform 580ms cubic-bezier(0.34, 1.48, 0.64, 1),
    opacity 220ms ease;
  overflow-y: auto;
  overflow-x: hidden;
}

.dx-drawer.is-open .dx-drawer-panel {
  transform: perspective(900px) translateX(0) rotateY(0deg) scale(1);
  opacity: 1;
}

.dx-drawer-geo {
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 180px;
  pointer-events: none;
  border-top-right-radius: 28px;
  overflow: hidden;
}

.dx-drawer-panel::-webkit-scrollbar {
  display: none;
}

.dx-drawer-panel {
  scrollbar-width: none;
}

.dx-drawer-close {
  display: block;
  margin-left: auto;
  margin-right: 16px;
  margin-top: 14px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(17, 35, 63, 0.06);
  color: var(--dx-ink);
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}

.dx-drawer-inner {
  padding: 6px 20px 20px;
}

.dx-drawer-inner h3 {
  margin: 6px 0 0;
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--dx-ink-strong);
}

.dx-drawer-meta {
  margin: 5px 0 0;
  font-size: 12px;
  color: var(--dx-muted);
}

.dx-drawer-block {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(231, 224, 212, 0.82);
}

.dx-drawer-block h4 {
  margin: 0 0 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dx-ink-strong);
}

.dx-drawer-block ul {
  display: grid;
  gap: 5px;
  padding: 0;
  margin: 0;
}

.dx-drawer-block li {
  position: relative;
  padding-left: 14px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--dx-muted);
}

.dx-drawer-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--dx-gold);
}

.dx-drawer-actions {
  margin-top: 16px;
  gap: 10px;
}

.dx-drawer-actions .dx-btn {
  min-height: 38px;
  padding-inline: 16px;
  font-size: 12px;
}

@media (max-width: 1180px) {
  .dx-journeys-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dx-browse-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .dx-section {
    padding: 72px 0;
  }

  .dx-hero {
    min-height: 520px;
  }

  .dx-hero-copy h1 {
    font-size: clamp(22px, 6vw, 30px);
  }

  .dx-mood-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dx-journeys-grid,
  .dx-browse-grid,
  .dx-spotlight-card,
  .dx-final-card {
    grid-template-columns: 1fr;
  }

  .dx-journeys-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .dx-spotlight-media {
    min-height: 280px;
  }

  .dx-final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .dx-section {
    padding: 60px 0;
  }

  .dx-hero-shell {
    padding-bottom: 30px;
  }

  .dx-flow-shell,
  .dx-spotlight-copy,
  .dx-final-card {
    padding: 24px;
  }

  .dx-mood-grid,
  .dx-journeys-grid {
    grid-template-columns: 1fr;
  }

  .dx-selection-note {
    justify-content: flex-start;
  }

  .dx-state-summary {
    white-space: normal;
    flex-wrap: wrap;
  }

  .dx-drawer-panel {
    width: 100%;
    border-radius: 24px 24px 0 0;
    top: auto;
    right: 0;
    bottom: 0;
    height: min(80vh, 720px);
    transform: translateY(100%);
    transition: transform 360ms cubic-bezier(0.34, 1.1, 0.64, 1), opacity 200ms ease;
  }

  .dx-drawer.is-open .dx-drawer-panel {
    transform: translateY(0);
    opacity: 1;
  }
}
