/* Thai Tourism B2B — List Tour Clean Code Final | Desktop + Mobile */

:root {
  --blue-dark: #003f8f;
  --blue: #0055b8;
  --blue-soft: #eaf3ff;
  --gold: #f7c948;
  --white: #ffffff;
  --line: #e4e9f1;
  --text: #14213d;
  --muted: #667085;
  --container: 1180px;
  --content-frame: 1360px;
  --ttb-blue-dark: #00448f;
  --ttb-gold: #ffc629;
  --ttb-green: #00c300;
}

* {
  box-sizing: border-box;
}

svg {
  width: 1em;
  height: 1em;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "FC Subject Rounded", "Prompt", "Sarabun", "Noto Sans Thai", Arial, sans-serif !important;
}

body {
  color: var(--text);
  background: #f3f3f3;
  font-family: "FC Subject Rounded", "Sarabun", "Noto Sans Thai", Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.container {
  width: min(var(--container), calc(100% - 36px));
  margin-left: auto;
  margin-right: auto;
}

.top-bar {
  height: 58px;
  min-height: 58px;
  background: var(--blue-dark);
  color: var(--white);
  overflow: visible;
  font-size: 14.5px;
  font-weight: 700;
}

.top-bar-inner {
  min-height: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.top-title {
  white-space: nowrap;
}

.top-links {
  height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.top-links a,
.top-links span {
  line-height: 1;
}

.top-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  height: 28px;
  padding: 0 17px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd84d 0%, #ffb300 100%);
  color: #0b2c55 !important;
  font-size: 14.5px;
  line-height: 1;
  letter-spacing: -0.01em;
  box-shadow: 0 5px 12px rgba(255, 176, 0, 0.25);
  border: 1px solid rgba(255, 218, 76, 0.75);
  transition: 0.22s ease;
}

.top-register:hover {
  transform: translateY(-1px);
  box-shadow: 0 7px 15px rgba(255, 176, 0, 0.32);
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
}

.header-main {
  min-height: 118px;
  display: grid;
  grid-template-columns: minmax(330px, 0.95fr) minmax(520px, 1.05fr);
  align-items: center;
  gap: 34px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.brand-logo {
  width: 104px;
  height: 104px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #d9e8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0, 85, 184, 0.16);
  padding: 3px;
  overflow: hidden;
  flex: 0 0 104px;
}

.brand-logo img {
  width: 116%;
  height: 116%;
  object-fit: contain;
  display: block;
}

.brand-title {
  line-height: 1.05;
  color: var(--blue-dark);
}

.brand-sub {
  font-size: 15px;
  color: var(--muted);
  margin-top: 7px;
}

.header-info {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
}

.info-block {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #4b5563;
}

.info-block + .info-block {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.info-block strong {
  display: block;
  color: #344054;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 4px;
}

.info-block p {
  margin: 0;
  color: #5b6472;
  font-size: 14px;
  line-height: 1.45;
}

.info-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 22px;
  flex: 0 0 42px;
}

.line-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #00c300;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  flex: 0 0 50px;
}

.contact-line strong {
  color: #00a600;
  font-size: 18px;
}

.main-menu-bar {
  background: var(--blue-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  min-height: 72px;
  overflow: visible;
}

.main-menu-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 72px;
  position: static;
  overflow: visible;
}

.main-menu-inner a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  white-space: nowrap;
  transition: 0.22s ease;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 72px;
  padding: 0 24px;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  text-shadow: 0 0 0 currentColor;
}

.main-menu-inner a:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.main-menu-inner a.active,
.main-menu-inner a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold);
}

.mobile-menu-toggle,
.mobile-menu-overlay,
.mobile-menu-panel {
  display: none;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .header-main {
    grid-template-columns: minmax(300px, 0.95fr) minmax(470px, 1.05fr);
    gap: 24px;
  }

  .brand-logo {
    width: 92px;
    height: 92px;
    flex-basis: 92px;
  }

  .brand-title {
    font-size: 26px;
  }

  .brand-sub {
    font-size: 14px;
  }

  .header-info {
    gap: 20px;
  }

  .info-block + .info-block {
    padding-left: 20px;
  }

  .main-menu-bar,
.main-menu-inner {
    min-height: 64px;
  }

  .main-menu-inner a {
    min-height: 64px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .top-register {
    min-width: 96px;
    height: 26px;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 13.5px;
  }

}

@media (max-width: 1024px) {
  .top-bar {
    display: none;
  }

  .header-main {
    min-height: 86px;
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
  }

  .mobile-menu-toggle {
    width: 44px;
    height: 44px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
  }

  .mobile-menu-toggle span {
    width: 28px;
    height: 4px;
    border-radius: 999px;
    background: #276f55;
    display: block;
  }

  .brand {
    justify-content: center;
    gap: 8px;
  }

  .brand-logo {
    width: 74px;
    height: 62px;
    flex-basis: 74px;
    overflow: visible;
  }

  .brand-logo img {
    width: 150%;
    height: 120%;
    object-fit: contain;
  }

  .brand-title {
    font-size: 17px;
    white-space: nowrap;
  }

  .brand-sub,
.header-info,
.main-menu-bar {
    display: none;
  }

  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: block;
    background: rgba(15, 23, 42, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }

  .mobile-menu-panel {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 130;
    width: min(88vw, 390px);
    height: 100dvh;
    display: block;
    overflow-y: auto;
    background: #ffffff;
    transform: translateX(-102%);
    transition: transform 0.28s ease;
    box-shadow: 24px 0 60px rgba(15, 23, 42, 0.2);
    padding: 18px 22px 32px;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  body.mobile-menu-open .mobile-menu-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  body.mobile-menu-open .mobile-menu-panel {
    transform: translateX(0);
  }

  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-menu-head img {
    width: 170px;
    max-height: 70px;
    object-fit: contain;
  }

  .mobile-menu-head button {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: var(--blue-soft);
    color: var(--blue-dark);
    font-size: 24px;
    font-weight: 900;
    cursor: pointer;
  }

  .mobile-auth-row,
.mobile-lang-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 18px 0 0;
  }

  .mobile-auth-row a,
.mobile-lang-row a {
    min-height: 42px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    font-weight: 800;
    color: var(--blue-dark);
  }

  .mobile-register {
    background: linear-gradient(135deg, #ffd84d 0%, #ffb300 100%);
    color: #0b2c55 !important;
    border-color: rgba(255, 218, 76, 0.75) !important;
  }

  .mobile-nav-list {
    display: grid;
    gap: 8px;
    margin-top: 22px;
  }

  .mobile-nav-list a,
.mobile-submenu-toggle {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #ffffff;
    color: #0b2c55;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    font-size: 15px;
    font-weight: 850;
    cursor: pointer;
  }

  .mobile-submenu {
    display: none;
    padding: 4px 0 8px 14px;
  }

  .mobile-submenu.is-open {
    display: grid;
    gap: 7px;
  }

  .mobile-submenu a {
    min-height: 38px;
    font-size: 14px;
    background: var(--blue-soft);
    border-color: #d9e8ff;
  }

  .mobile-contact-card {
    margin-top: 22px;
    padding: 16px;
    border-radius: 18px;
    background: var(--blue-soft);
    color: #344054;
  }

  .mobile-contact-card strong {
    color: var(--blue-dark);
    font-size: 16px;
  }

  .mobile-contact-card p {
    margin: 5px 0 0;
    font-size: 13px;
  }

}

.page-content-area {
  background: radial-gradient(circle at 20% 6%, rgba(0, 85, 184, 0.08), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #f3f6fa 100%);
  min-height: 760px;
  padding: 28px 0 80px;
}

.content-start-frame {
  width: min(var(--content-frame), calc(100% - 36px));
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.tour-content-row {
  --search-left-shift: -5px;
  width: calc(100% - var(--search-left-shift));
  margin-left: var(--search-left-shift);
  display: grid;
  grid-template-columns: 342px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.tour-search-card {
  width: 342px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(205, 221, 241, 0.95);
  border-radius: 18px;
  padding: 24px 22px 24px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.10);
}

.search-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.search-title-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #ffffff;
  background: linear-gradient(135deg, #0b63ce, #003f8f);
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(0, 63, 143, 0.24), inset 0 1px 0 rgba(255,255,255,0.25);
}

.search-title-row h2 {
  margin: 0;
  color: #08285c;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.search-field label {
  display: block;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.control-wrap {
  display: flex;
  align-items: center;
  position: relative !important;
}

.control-wrap input,
.control-wrap select {
  width: 100%;
  outline: none;
  transition: 0.2s ease;
  letter-spacing: -0.015em;
  background-color: #ffffff;
  border-color: #cfe0f4;
  padding: 0 48px 0 62px;
}

.calendar-btn {
  position: absolute;
  right: 0;
  top: 0;
  border: 0;
  cursor: pointer;
  font-weight: 900;
}

.price-field {
  margin-top: 18px;
}

.tour-search-button {
  width: 100%;
  margin-top: 12px;
  border: 0;
  background: linear-gradient(135deg, #0063d1, #003f8f);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(0, 63, 143, 0.24);
  height: 52px;
  border-radius: 13px;
  font-size: 18px;
  font-weight: 850;
}

.tour-reset-button {
  width: 100%;
  height: 40px;
  margin-top: 13px;
  border: 0;
  background: transparent;
  color: #0055b8;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}

.tour-program-area {
  min-width: 0;
  max-width: 1040px;
  margin-left: 3px;
}

.tour-result-bar {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.95);
  border: 1px solid #cbdff8;
  border-radius: 13px;
  padding: 13px 18px;
  margin-bottom: 14px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.result-icon {
  width: 25px;
  height: 25px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #2b7de9, #0055b8);
  font-size: 13px;
  box-shadow: 0 7px 15px rgba(0, 85, 184, 0.18);
}

.tour-result-bar p {
  margin: 0;
  color: #172033;
  font-size: 17px;
  font-weight: 700;
}

.tour-result-bar strong {
  color: #003f8f;
  font-weight: 950;
}

.tour-program-card {
  background: #ffffff;
  border: 1px solid #dce8f6;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.11);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.tour-program-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.14);
}

.tour-card-body {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr) 190px;
  gap: 20px;
  padding: 18px;
  align-items: start;
}

.tour-image-box {
  position: relative;
  width: 300px;
  height: 324px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
  border: 1px solid rgba(205, 221, 241, 0.95);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.10), inset 0 0 0 1px rgba(255,255,255,0.75);
}

.tour-image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  display: block;
  background: #ffffff;
}

.tour-image-box::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(6, 16, 32, 0.24) 100%);
  z-index: 1;
  display: none !important;
}

.tour-badge {
  z-index: 2;
  position: absolute;
  top: 1px;
  left: 3px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f43f5e, #dc2626);
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(220, 38, 38, 0.25);
}

.tour-card-detail {
  min-width: 0;
}

.tour-card-detail h2 {
  margin: 0 0 14px;
  color: #0f172a;
  font-size: 21px;
  line-height: 1.34;
  font-weight: 950;
  letter-spacing: -0.035em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-meta-list span {
  display: grid;
  grid-template-rows: auto auto;
  align-items: center;
  border: 1px solid #dce8f6;
  position: relative;
  overflow: hidden;
}

.tour-meta-list i {
  grid-row: 1 / span 2;
  font-style: normal;
}

.tour-card-detail p {
  margin: 0 0 12px;
  color: #3f4d63;
  font-size: 14px;
  line-height: 1.56;
}

.airline-card {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff6d9 0%, #fffaf0 100%);
  border: 1px solid #ffedb2;
}

.airline-card span {
  display: block;
  margin-bottom: 3px;
  color: #7b5205;
  font-size: 11.5px;
  font-weight: 700;
}

.airline-card strong {
  color: #24364f;
  font-size: 12.2px;
  font-weight: 900;
}

.airline-logo-text {
  color: #c75a16;
  font-size: 22px;
  font-weight: 900;
  font-family: Georgia, serif;
  white-space: nowrap;
}

.tour-price-panel {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px 14px;
  border: 1px solid #dbe8f7;
  border-radius: 15px;
  background: linear-gradient(180deg, #f2f8ff 0%, #eaf4ff 100%);
}

.tour-price-panel span {
  color: #003f8f;
  font-size: 13.5px;
  font-weight: 850;
}

.tour-price-panel strong {
  margin-top: 5px;
  color: #f00000;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.tour-price-panel em {
  display: block;
  margin-top: 6px;
  color: #172033;
  font-size: 13.5px;
  font-style: normal;
  font-weight: 850;
}

.tour-detail-button,
.tour-download-button {
  width: 100%;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 900;
  gap: 7px;
  position: relative;
}

.tour-detail-button {
  margin-top: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #0063d1, #003f8f);
  box-shadow: 0 10px 20px rgba(0, 63, 143, 0.20);
}

.tour-download-button {
  margin-top: 10px;
  color: #003f8f;
  background: #ffffff;
  border: 1px solid #9ec2ef;
}

.tour-date-box {
  padding: 0 18px 18px;
}

.date-title-row {
  min-height: 42px;
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  gap: 16px;
  padding: 0 18px;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(135deg, #003f8f, #0055b8);
  color: #ffffff;
}

.date-title-row span,
.date-title-row strong {
  font-size: 15px;
  line-height: 1.25;
  font-weight: 900;
}

.date-title-row strong {
  text-align: right;
}

.tour-date-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  border: 1px solid #c8dbf3;
  border-top: 0;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}

.tour-date-table th {
  border-bottom: 1px solid #d7e5f5;
  background: #eaf4ff;
  color: #172033;
  font-size: 14.5px;
  text-align: center;
}

.tour-date-table td {
  border-bottom: 1px solid #edf3fb;
  background: #ffffff;
  color: #1f2937;
  font-size: 14.5px;
  font-weight: 700;
  text-align: center;
}

.tour-date-table tr:last-child td {
  border-bottom: 0;
}

.tour-date-table th + th,
.tour-date-table td + td {
  border-left: 1px solid #d7e5f5;
}

.tour-date-table th:first-child,
.tour-date-table td:first-child {
  width: 45%;
  text-align: left;
  padding-left: 24px !important;
}

.tour-date-table th:nth-child(2),
.tour-date-table td:nth-child(2) {
  width: 32%;
}

.tour-date-table th:nth-child(3),
.tour-date-table td:nth-child(3) {
  width: 23%;
}

.date-icon {
  place-items: center;
  font-size: 13px;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: radial-gradient(circle at 35% 20%, #ffffff 0%, #f2f9ff 50%, #e6f3ff 100%) !important;
  border: 1px solid #d6eaff !important;
  color: #0062cc !important;
  box-shadow: 0 5px 12px rgba(0, 88, 190, 0.10) !important;
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  margin-right: 13px !important;
  border-radius: 999px !important;
  vertical-align: middle !important;
}

.price-cell {
  color: #ef0000 !important;
  font-weight: 900 !important;
}

.tour-date-table td strong {
  color: #003f8f;
  font-weight: 950;
}

@media (max-width: 1180px) {
  .tour-card-body {
    grid-template-columns: 280px minmax(0, 1fr) 180px;
    gap: 16px;
  }

  .tour-image-box {
    width: 280px;
  }

  .tour-meta-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 1024px) {
  .page-content-area {
    padding: 20px 0 60px;
  }

  .tour-content-row {
    width: 100%;
    margin-left: 0;
    grid-template-columns: 1fr;
  }

  .tour-search-card {
    width: 100%;
  }

  .tour-program-area {
    margin-left: 0;
  }

  .tour-card-body {
    grid-template-columns: 1fr;
  }

  .tour-image-box {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .tour-price-panel {
    align-self: auto;
  }

  .date-title-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px 14px;
  }

  .date-title-row strong {
    text-align: left;
  }

}

@media (max-width: 640px) {
  .tour-date-table th,
.tour-date-table td {
    font-size: 12.5px;
  }

}

.search-title-icon svg,
.control-icon svg,
.calendar-btn svg,
.tour-search-button svg,
.tour-reset-button svg,
.result-icon svg,
.tour-meta-list i svg,
.date-icon svg {
  width: 1em;
  height: 1em;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.calendar-btn {
  place-items: center;
  font-size: 17px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
  border-left: 1px solid rgba(255,255,255,0.18);
  width: 56px !important;
  height: 56px !important;
  border-radius: 0 16px 16px 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(180deg, #0065d1 0%, #004fa8 100%) !important;
  color: #ffffff !important;
}

.tour-search-button span,
.tour-reset-button span {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  font-size: 18px;
}

.tour-meta-list span::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
}

.tour-meta-list i {
  display: inline-grid;
  place-items: center;
  font-size: 15px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f3f9ff 0%, #e8f4ff 100%);
  border: 1px solid #d4e8ff;
  color: #0064cf;
}

.search-title-icon svg {
  width: 22px;
  height: 22px;
}

.calendar-btn svg {
  margin: auto;
  width: 18px !important;
  height: 18px !important;
}

.tour-search-button svg,
.tour-reset-button svg {
  width: 16px;
  height: 16px;
}

.result-icon svg {
  width: 14px;
  height: 14px;
}

.tour-price-panel .tour-detail-button {
  position: relative;
  width: 100%;
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: linear-gradient(135deg, #0063d1, #003f8f) !important;
  color: #ffffff !important;
  font-size: 13.5px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  opacity: 1 !important;
  box-shadow: 0 10px 20px rgba(0, 63, 143, 0.20);
  grid-template-columns: 16px minmax(0, 1fr) 12px;
  min-height: 52px;
  padding: 0 14px;
}

.tour-price-panel .tour-detail-button svg {
  color: #ffffff !important;
  opacity: 1 !important;
}

.tour-date-table tbody tr {
  position: relative;
  cursor: pointer;
  transition: background-color 0.22s ease, box-shadow 0.22s ease;
}

.tour-date-table tbody tr td {
  transition: background-color 0.22s ease, color 0.22s ease, font-weight 0.22s ease;
}

.tour-date-table tbody tr:hover {
  box-shadow: inset 4px 0 0 #0055b8;
}

.tour-date-table tbody tr:hover td {
  background: #f1f7ff;
}

.tour-date-table tbody tr:hover td:first-child {
  color: #003f8f;
  font-weight: 900;
}

.tour-date-table tbody tr:hover .date-icon {
  background: linear-gradient(180deg, #0055b8 0%, #003f8f 100%);
  color: #ffffff;
  border-color: #0055b8;
  transform: scale(1.06);
  box-shadow: 0 5px 12px rgba(0, 85, 184, 0.20);
}

.tour-date-table tbody tr:hover .price-cell {
  color: #d90000 !important;
  font-weight: 950 !important;
  letter-spacing: -0.02em;
}

.tour-date-table tbody tr:hover td strong {
  color: #002f78;
  font-weight: 950;
}

.tour-date-table tbody tr:active td {
  background: #e7f1ff;
}

.mobile-tour-search-toggle {
  display: none;
}

@media (max-width: 1024px) {
  .mobile-tour-search-toggle {
    width: 100%;
    min-height: 64px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 14px;
    padding: 12px 14px;
    border: 1px solid #cbdff8;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.10);
    color: #08285c;
    cursor: pointer;
    text-align: left;
  }

  .mobile-search-main-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #0063d1, #003f8f);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 63, 143, 0.20);
  }

  .mobile-search-main-icon svg {
    width: 21px;
    height: 21px;
  }

  .mobile-search-text {
    min-width: 0;
    flex: 1 1 auto;
    display: grid;
    gap: 2px;
  }

  .mobile-search-text strong {
    color: #08285c;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: -0.03em;
  }

  .mobile-search-text em {
    color: #7a879a;
    font-size: 12.5px;
    line-height: 1.2;
    font-style: normal;
    font-weight: 650;
  }

  .mobile-search-chevron {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #edf6ff;
    border: 1px solid #d4e6fb;
    color: #0055b8;
    transition: transform 0.24s ease, background-color 0.24s ease;
  }

  .mobile-search-chevron svg {
    width: 16px;
    height: 16px;
  }

  body.mobile-tour-search-open .mobile-search-chevron {
    transform: rotate(180deg);
    background: #e4f0ff;
  }

  .tour-content-row {
    gap: 0;
  }

  .tour-content-row .tour-search-card {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    border-width: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: max-height 0.36s ease,
      opacity 0.24s ease,
      padding 0.28s ease,
      margin 0.28s ease,
      transform 0.28s ease;
  }

  body.mobile-tour-search-open .tour-content-row .tour-search-card {
    max-height: 1360px;
    opacity: 1;
    padding: 22px 18px 22px;
    margin-bottom: 16px;
    border-width: 1px;
    transform: translateY(0);
    pointer-events: auto;
  }

  body.mobile-tour-search-open .mobile-tour-search-toggle {
    border-color: #9ec2ef;
    box-shadow: 0 16px 38px rgba(0, 85, 184, 0.13);
  }

  .tour-program-area {
    width: 100%;
  }

}

@media (max-width: 640px) {
  .content-start-frame {
    width: min(100% - 24px, var(--content-frame));
  }

  .mobile-tour-search-toggle {
    min-height: 58px;
    border-radius: 14px;
    padding: 10px 12px;
  }

  .mobile-search-main-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    border-radius: 12px;
  }

  .mobile-search-text strong {
    font-size: 16.5px;
  }

  .mobile-search-text em {
    font-size: 12px;
  }

  body.mobile-tour-search-open .tour-content-row .tour-search-card {
    padding: 20px 16px 20px;
  }

  .page-content-area {
    padding-top: 18px;
    padding-bottom: 54px;
  }

  .tour-result-bar {
    min-height: 58px;
    border-radius: 16px;
    padding: 14px 16px;
    margin-bottom: 16px;
  }

  .tour-result-bar p {
    font-size: 18px;
    line-height: 1.25;
  }

  .tour-program-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.11);
  }

  .tour-card-body {
    display: block;
    padding: 16px;
  }

  .tour-image-box {
    width: 100%;
    height: clamp(380px, 108vw, 500px);
    aspect-ratio: auto;
    margin: 0 0 18px;
    border-radius: 16px;
    background: #ffffff;
  }

  .tour-image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
  }

  .tour-image-box::after {
    display: none !important;
  }

  .tour-badge {
    top: 9px;
    left: 10px;
    min-height: 32px;
    padding: 0 14px;
    font-size: 13.5px;
    box-shadow: 0 10px 22px rgba(220, 38, 38, 0.28);
  }

  .tour-card-detail h2 {
    margin: 0 0 16px;
    font-size: 23px;
    line-height: 1.28;
    letter-spacing: -0.04em;
    -webkit-line-clamp: 3;
  }

  .tour-meta-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 16px;
  }

  .tour-meta-list span {
    min-height: 58px;
    grid-template-columns: 30px 1fr;
    column-gap: 10px;
    padding: 9px 10px;
    border-radius: 14px;
  }

  .tour-meta-list i {
    width: 30px;
    height: 30px;
    border-radius: 10px;
  }

  .tour-meta-list b {
    font-size: 11px;
  }

  .tour-meta-list strong {
    font-size: 13.5px;
  }

  .tour-card-detail p {
    margin-bottom: 16px;
    color: #334155;
    font-size: 16px;
    line-height: 1.65;
    font-weight: 500;
  }

  .airline-card {
    border-radius: 15px;
  }

  .airline-card span {
    font-size: 12px;
  }

  .airline-card strong {
    font-size: 14px;
    line-height: 1.35;
  }

  .tour-detail-button,
.tour-download-button {
    min-height: 46px;
    border-radius: 12px;
    font-size: 14px;
  }

  .tour-detail-button {
    margin-top: 16px;
  }

  .tour-date-box {
    padding: 0 16px 18px;
  }

  .date-title-row {
    min-height: 50px;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 11px 14px;
    border-radius: 14px 14px 0 0;
  }

  .date-title-row span,
.date-title-row strong {
    text-align: left;
    font-size: 14px;
  }

  .tour-date-table th {
    height: 40px;
    font-size: 13px;
  }

  .tour-date-table td {
    height: 44px;
    font-size: 13px;
  }

  .tour-date-table th:first-child,
.tour-date-table td:first-child {
    padding-left: 12px;
  }

  .date-icon {
    width: 21px;
    height: 21px;
    margin-right: 7px;
    border-radius: 7px;
  }

  .price-cell {
    font-size: 13.5px;
  }

  .tour-date-table td strong {
    font-size: 13.5px;
  }

}

@media (max-width: 420px) {
  .mobile-tour-search-toggle {
    min-height: 66px;
    padding: 12px;
  }

  .mobile-search-text strong {
    font-size: 17px;
  }

  .mobile-search-text em {
    font-size: 12px;
  }

  .tour-image-box {
    height: clamp(340px, 116vw, 455px);
  }

  .tour-card-detail h2 {
    font-size: 22px;
  }

  .tour-meta-list span {
    min-height: 56px;
    padding: 8px;
  }

  .tour-meta-list strong {
    font-size: 12.8px;
  }

  .tour-card-detail p {
    font-size: 15.5px;
  }

}

@media (max-width: 640px) {
  .airline-card {
    min-height: 58px;
    justify-content: center;
    padding: 10px 14px;
  }

  .airline-card > div:first-child {
    display: none;
  }

  .airline-logo-text {
    font-size: 30px;
    line-height: 1;
    text-align: center;
  }

  .tour-price-panel .tour-download-button {
    display: none !important;
  }

}

@media (max-width: 420px) {
  .airline-logo-text {
    font-size: 28px;
  }

}

@media (max-width: 640px) {
  .tour-card-detail .airline-card {
    display: none !important;
  }

  .tour-price-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "airline priceLabel"
      "airline price"
      "airline unit"
      "button button";
    align-items: center;
    column-gap: 14px;
    row-gap: 2px;
    margin-top: 18px;
    padding: 16px 16px 15px;
    border: 1px solid #d7e6f8;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f5faff 100%);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    text-align: right;
  }

  .tour-price-panel::before {
    content: "Drukair";
    grid-area: airline;
    justify-self: start;
    align-self: center;
    min-width: 104px;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 14px;
    background: #fff7e6;
    border: 1px solid #ffe3a7;
    color: #c75a16;
    font-family: Georgia, serif;
    font-size: 25px;
    line-height: 1;
    font-weight: 900;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  }

  .tour-price-panel span {
    grid-area: priceLabel;
    display: block;
    color: #003f8f;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.1;
    text-align: right;
  }

  .tour-price-panel strong {
    grid-area: price;
    display: block;
    margin: 3px 0 0;
    color: #f00000;
    font-size: 31px;
    line-height: 0.95;
    font-weight: 950;
    letter-spacing: -0.045em;
    text-align: right;
  }

  .tour-price-panel em {
    grid-area: unit;
    display: block;
    margin-top: 4px;
    color: #172033;
    font-size: 12px;
    line-height: 1.1;
    font-style: normal;
    font-weight: 850;
    text-align: right;
  }

  .tour-price-panel .tour-detail-button {
    grid-area: button;
    width: 100%;
    margin-top: 14px;
    color: #ffffff !important;
    background: linear-gradient(135deg, #0063d1, #003f8f);
    box-shadow: 0 12px 24px rgba(0, 63, 143, 0.22);
  }

  .tour-price-panel .tour-detail-button * {
    color: #ffffff !important;
    opacity: 1 !important;
  }

}

@media (max-width: 420px) {
  .tour-price-panel {
    padding: 15px 14px 14px;
    column-gap: 10px;
  }

  .tour-price-panel::before {
    min-width: 92px;
    min-height: 52px;
    padding: 0 10px;
    font-size: 22px;
  }

  .tour-price-panel strong {
    font-size: 29px;
  }

}

@media (max-width: 640px) {
  .date-title-row span {
    font-weight: 700 !important;
    letter-spacing: -0.01em;
  }

  .date-title-row strong {
    font-weight: 600 !important;
    letter-spacing: -0.01em;
  }

  .tour-date-table th {
    font-weight: 500 !important;
    letter-spacing: 0;
    color: #23344f;
  }

  .tour-date-table td {
    font-weight: 400 !important;
    letter-spacing: 0;
    color: #253247;
  }

  .tour-date-table td:first-child {
    font-weight: 500 !important;
    color: #172033;
    line-height: 1.45;
  }

  .tour-date-table .price-cell {
    color: #ef0000 !important;
    font-weight: 600 !important;
    letter-spacing: 0;
  }

  .tour-date-table td strong {
    color: #003f8f;
    font-weight: 600 !important;
    letter-spacing: 0;
  }

  .tour-date-table tbody tr:hover td:first-child {
    font-weight: 550 !important;
    color: #003f8f;
  }

  .tour-date-table tbody tr:hover .price-cell {
    font-weight: 700 !important;
  }

  .tour-date-table tbody tr:hover td strong {
    font-weight: 700 !important;
  }

  .tour-price-panel .tour-detail-button {
    min-height: 58px !important;
    padding: 17px 44px 17px 20px !important;
    border-radius: 18px !important;
    font-size: 19px !important;
    font-weight: 500 !important;
    line-height: 1.25 !important;
    letter-spacing: -0.01em;
  }

}

@media (max-width: 420px) {
  .tour-price-panel .tour-detail-button {
    min-height: 56px !important;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
    font-size: 18px !important;
  }

}

.ttb-datepicker-panel {
  position: fixed;
  z-index: 99999;
  display: none;
  padding: 14px;
  border: 1px solid #c9dcf4;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 46px rgba(15, 41, 77, 0.18);
  backdrop-filter: blur(10px);
  font-family: "FC Subject Rounded", sans-serif !important;
  max-width: calc(100vw - 24px) !important;
}

.ttb-datepicker-panel.is-open {
  display: block;
}

.ttb-datepicker-head {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.ttb-dp-title {
  color: #003f8f;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
}

.ttb-dp-nav {
  width: 40px;
  height: 40px;
  border: 1px solid #cfe0f5;
  border-radius: 12px;
  background: #f2f7ff;
  color: #0055b8;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: background-color .2s ease, transform .2s ease;
}

.ttb-dp-nav:hover {
  background: #e5f0ff;
  transform: translateY(-1px);
}

.ttb-datepicker-months {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ttb-dp-month {
  border: 1px solid #d8e6f7;
  border-radius: 15px;
  overflow: hidden;
  background: #ffffff;
}

.ttb-dp-month-title {
  padding: 11px 12px;
  background: linear-gradient(180deg, #005dbd 0%, #004894 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 750;
  text-align: center;
}

.ttb-dp-weekdays,
.ttb-dp-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.ttb-dp-weekdays span {
  padding: 9px 0;
  background: #eef6ff;
  color: #32506f;
  font-size: 12px;
  font-weight: 650;
  text-align: center;
}

.ttb-dp-days {
  padding: 8px;
  gap: 4px;
}

.ttb-dp-day,
.ttb-dp-empty {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
}

.ttb-dp-day {
  border: 1px solid transparent;
  background: #ffffff;
  color: #172033;
  font-size: 13px;
  font-weight: 550;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
  min-height: 34px !important;
}

.ttb-dp-day:hover {
  border-color: #8dbcf3;
  background: #eef6ff;
  color: #003f8f;
  transform: translateY(-1px);
}

.ttb-dp-day.is-today {
  border-color: #0055b8;
  color: #0055b8;
}

.ttb-dp-day.is-selected {
  background: #0055b8;
  border-color: #0055b8;
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(0, 85, 184, .22);
}

.ttb-datepicker-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 12px;
  align-items: center;
}

.ttb-dp-action {
  min-width: 78px;
  min-height: 36px;
  border: 1px solid #c9dcf4;
  border-radius: 10px;
  background: #ffffff;
  color: #003f8f;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

.ttb-dp-action.primary {
  color: #ffffff;
  border-color: #0055b8;
  min-width: 106px !important;
  background: linear-gradient(180deg, #0065d1 0%, #004fa8 100%) !important;
  box-shadow: 0 9px 18px rgba(0, 87, 190, 0.18) !important;
}

input[data-two-month-datepicker] {
  cursor: pointer;
}

@media (max-width: 640px) {
  .ttb-datepicker-panel {
    max-height: calc(100vh - 24px);
    overflow-y: auto;
    padding: 12px;
    border-radius: 18px;
  }

  .ttb-datepicker-months {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ttb-dp-title {
    font-size: 15px;
  }

  .ttb-dp-month-title {
    font-size: 13.5px;
  }

  .ttb-dp-weekdays span {
    font-size: 11.5px;
  }

  .ttb-dp-day {
    font-size: 12.5px;
    border-radius: 9px;
  }

}

.ttb-datepicker-panel.is-range-mode {
  padding: 16px;
}

.ttb-datepicker-panel.is-range-mode .ttb-datepicker-head {
  grid-template-columns: 44px 1fr 44px;
  margin-bottom: 10px;
}

.ttb-dp-help {
  margin-top: 3px;
  color: #64748b;
  font-size: 12.5px;
  font-weight: 500;
  text-align: center;
  line-height: 1.35;
}

.ttb-dp-range-preview {
  margin: 0 0 12px;
  padding: 10px 14px;
  border: 1px solid #d7e6f8;
  border-radius: 12px;
  background: #f5faff;
  color: #003f8f;
  font-size: 13.5px;
  font-weight: 700;
  text-align: center;
  min-height: 42px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.ttb-dp-day.is-in-range {
  background: #eaf4ff;
  color: #003f8f;
  border-color: #d7e8fb;
}

.ttb-dp-day.is-range-start,
.ttb-dp-day.is-range-end {
  background: linear-gradient(180deg, #0063d1 0%, #004a9f 100%);
  border-color: #0055b8;
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(0, 85, 184, .22);
}

.ttb-dp-day.is-range-start:not(.is-range-end) {
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
}

.ttb-dp-day.is-range-end:not(.is-range-start) {
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
}

.ttb-dp-action[data-dp-clear] {
  color: #64748b;
}

.ttb-dp-action[data-dp-apply] {
  min-width: 92px;
}

@media (max-width: 640px) {
  .ttb-datepicker-panel.is-range-mode {
    padding: 14px;
  }

  .ttb-dp-help {
    font-size: 11.5px;
  }

  .ttb-dp-range-preview {
    font-size: 12.5px;
    padding: 9px 10px;
  }

  .ttb-datepicker-actions {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }

  .ttb-dp-action {
    min-width: 0;
    width: 100%;
  }

}

.tour-program-card + .tour-program-card {
  margin-top: 28px;
}

@media (max-width: 1024px) {
  .tour-program-card + .tour-program-card {
    margin-top: 22px;
  }

}

@media (max-width: 640px) {
  .tour-program-card + .tour-program-card {
    margin-top: 18px;
  }

}

.tour-date-box.period-collapsible:not(.period-expanded) .tour-date-table tbody tr.period-extra-desktop {
  display: none;
}

.period-toggle-wrap {
  border-left: 1px solid #cfe0f5;
  border-right: 1px solid #cfe0f5;
  border-bottom: 1px solid #cfe0f5;
  margin-top: 14px !important;
  padding: 14px 18px 20px !important;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%) !important;
  border: 1px solid #d7e9ff !important;
  border-top: 0 !important;
  border-radius: 0 0 18px 18px !important;
}

.period-toggle-button {
  justify-content: center;
  gap: 8px;
  letter-spacing: 0;
  position: relative !important;
  width: 100% !important;
  border: 1.5px solid #75b4f5 !important;
  background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%) !important;
  color: #0055b8 !important;
  font-family: inherit !important;
  font-size: 15.5px !important;
  font-weight: 650 !important;
  line-height: 1.2 !important;
  text-align: center !important;
  box-shadow: 0 10px 20px rgba(0, 85, 184, 0.08), inset 0 1px 0 rgba(255,255,255,0.95) !important;
  cursor: pointer !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease !important;
  border-radius: 999px !important;
  display: grid !important;
  min-height: 56px !important;
  grid-template-columns: 32px 1fr 32px !important;
  padding: 0 18px !important;
  column-gap: 12px !important;
  align-items: center !important;
}

.period-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #f4f9ff 0%, #eaf4ff 100%) !important;
  border: 1px solid #bcd9fb !important;
  color: #0055b8 !important;
  font-weight: 800 !important;
  box-shadow: 0 4px 10px rgba(0, 85, 184, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
}

@media (max-width: 640px) {
  .tour-date-box.period-collapsible:not(.period-expanded) .tour-date-table tbody tr.period-extra-mobile {
    display: none;
  }

  .period-toggle-wrap {
    border-radius: 0 0 16px 16px;
  }

}

.period-toggle-button::before {
  content: "" !important;
  position: absolute !important;
  inset: 4px !important;
  border-radius: inherit !important;
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
  pointer-events: none !important;
}

.period-toggle-left-icon,
.period-toggle-icon {
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease !important;
  z-index: 1 !important;
  background: #eef7ff !important;
  border: 1px solid #cfe4ff !important;
  color: #0055b8 !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: static !important;
  transform: none !important;
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  max-width: 32px !important;
  padding: 0 !important;
  margin: 0 !important;
  align-self: center !important;
  justify-self: center !important;
}

.period-toggle-left-icon svg {
  width: 16px !important;
  height: 16px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.period-toggle-button:active {
  box-shadow: 0 8px 18px rgba(0, 85, 184, 0.13) !important;
  transform: translateY(0) !important;
}

.tour-date-box.period-expanded .period-toggle-icon {
  transform: rotate(180deg) !important;
}

@media (max-width: 640px) {
  .period-toggle-button {
    font-size: 13.5px !important;
    font-weight: 600 !important;
  }

  .period-toggle-left-icon svg {
    width: 14px !important;
    height: 14px !important;
  }

}

.period-toggle-button:hover .period-toggle-icon {
  background: rgba(255, 255, 255, 0.22) !important;
  border-color: rgba(255, 255, 255, 0.46) !important;
  box-shadow: 0 5px 12px rgba(0, 40, 100, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.24) !important;
}

@media (max-width: 640px) {
  .period-toggle-left-icon {
    width: 28px !important;
    height: 28px !important;
  }

  .period-toggle-icon {
    width: 31px !important;
    height: 31px !important;
    font-size: 17px !important;
  }

  .period-toggle-text {
    font-size: 13.8px !important;
    font-weight: 600 !important;
  }

}

.period-toggle-left-icon {
  width: 30px !important;
  height: 30px !important;
  background: linear-gradient(180deg, #f4f9ff 0%, #e9f4ff 100%) !important;
  border: 1px solid #d3e8ff !important;
  color: #0063cc !important;
  box-shadow: 0 5px 14px rgba(0, 85, 184, 0.10), inset 0 1px 0 rgba(255,255,255,0.95) !important;
}

.period-toggle-text {
  position: relative !important;
  z-index: 1 !important;
  display: block !important;
  min-width: 0 !important;
  color: #0055b8 !important;
  letter-spacing: -0.01em !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  text-align: center !important;
  font-size: 17px !important;
  font-weight: 850 !important;
  line-height: 1.2 !important;
  align-self: center !important;
  justify-self: center !important;
  transform: translateY(0) !important;
}

.period-toggle-icon {
  width: 30px !important;
  height: 30px !important;
  font-size: 0 !important;
  line-height: 0 !important;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease !important;
}

.period-toggle-icon::before {
  content: "" !important;
  width: 8px !important;
  height: 8px !important;
  border-right: 2px solid #0055b8 !important;
  border-bottom: 2px solid #0055b8 !important;
  transform: rotate(45deg) translate(-1px, -1px) !important;
  transform-origin: center !important;
}

.period-toggle-button:hover {
  transform: translateY(-1px) !important;
  border-color: #3e98f0 !important;
  background: linear-gradient(180deg, #ffffff 0%, #edf6ff 100%) !important;
  color: #00479b !important;
  box-shadow: 0 14px 26px rgba(0, 85, 184, 0.12), inset 0 1px 0 rgba(255,255,255,0.95) !important;
}

.period-toggle-button:hover .period-toggle-left-icon,
.period-toggle-button:hover .period-toggle-icon {
  background: #e5f2ff !important;
  border-color: #9cccfb !important;
  color: #00479b !important;
  box-shadow: 0 4px 10px rgba(0, 85, 184, 0.10), inset 0 1px 0 rgba(255,255,255,0.95) !important;
}

.period-toggle-button:hover .period-toggle-icon::before {
  border-color: #00479b !important;
}

.tour-date-box.period-expanded .period-toggle-button {
  border-color: #75b4f5 !important;
  background: linear-gradient(180deg, #f3f9ff 0%, #ffffff 100%) !important;
  color: #0055b8 !important;
}

@media (max-width: 640px) {
  .period-toggle-wrap {
    margin-top: 12px !important;
    padding: 12px 10px 16px !important;
  }

  .period-toggle-button {
    min-height: 48px !important;
    grid-template-columns: 30px 1fr 30px !important;
    column-gap: 8px !important;
    padding: 0 12px !important;
  }

  .period-toggle-left-icon,
.period-toggle-icon {
    width: 28px !important;
    height: 28px !important;
  }

  .period-toggle-icon::before {
    width: 7px !important;
    height: 7px !important;
  }

}

.tour-price-panel .tour-download-button {
  width: 100%;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 9px;
  color: #003f8f !important;
  background: #ffffff !important;
  border: 1px solid #9ec2ef;
  font-size: 13.5px;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  opacity: 1 !important;
  transition: background-color .22s ease, border-color .22s ease, color .22s ease, transform .18s ease, box-shadow .22s ease;
  grid-template-columns: 16px minmax(0, auto);
  min-height: 44px;
  padding: 0 14px;
}

.tour-price-panel .tour-download-button span {
  color: inherit !important;
  opacity: 1 !important;
  min-width: 0;
  text-align: center;
  line-height: 1.12;
}

.tour-price-panel .tour-download-button:hover {
  color: #d90000 !important;
  background: #fff7f7 !important;
  border-color: #ef4444;
  box-shadow: 0 10px 18px rgba(239, 68, 68, 0.12);
  transform: translateY(-1px);
}

.tour-sidebar-col {
  width: 342px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-service-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sidebar-service-card {
  position: relative;
  min-height: 158px;
  padding: 20px 20px 18px;
  border-radius: 18px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  isolation: isolate;
  border: 1px solid rgba(211, 229, 255, .8);
  box-shadow: 0 16px 38px rgba(15, 23, 42, .12);
  background: linear-gradient(135deg, #0055b8 0%, #003f8f 100%);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.sidebar-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(0, 28, 70, .88) 0%, rgba(0, 63, 143, .68) 52%, rgba(0, 63, 143, .18) 100%),
    radial-gradient(circle at 86% 18%, rgba(255,255,255,.28), transparent 24%),
    radial-gradient(circle at 100% 100%, rgba(255,196,70,.18), transparent 34%);
}

.sidebar-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform .28s ease;
}

.sidebar-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(0, 63, 143, .18);
  border-color: rgba(129, 184, 255, .9);
}

.sidebar-service-card:hover::after {
  transform: scale(1.07);
}

.sidebar-service-card .service-mini-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 4px 9px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  color: rgba(255,255,255,.82);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.sidebar-service-card .service-icon {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #0055b8;
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}

.sidebar-service-card strong {
  display: block;
  max-width: 220px;
  color: #fff;
  font-size: 25px;
  line-height: 1.12;
  font-weight: 850;
  letter-spacing: -.02em;
  text-shadow: 0 2px 14px rgba(0, 20, 56, .28);
}

.sidebar-service-card em {
  display: block;
  max-width: 235px;
  margin-top: 8px;
  color: rgba(255,255,255,.86);
  font-size: 13.5px;
  line-height: 1.45;
  font-style: normal;
  font-weight: 500;
}

.sidebar-service-card .service-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  min-height: 33px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(0, 38, 90, .62);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.sidebar-service-card .service-action i {
  font-size: 10px;
}

.weather-widget,
.rate-widget {
  position: absolute;
  right: 18px;
  bottom: 17px;
  width: 92px;
  min-height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 10px;
  border-radius: 14px;
  color: #003f8f;
  background: rgba(255,255,255,.82);
  box-shadow: 0 12px 26px rgba(15, 23, 42, .12);
}

.weather-widget b {
  font-size: 25px;
  line-height: 1;
}

.weather-widget small {
  font-size: 11px;
  font-weight: 700;
  color: #4a6282;
}

.rate-widget b {
  font-size: 12px;
  line-height: 1.25;
  color: #003f8f;
}

.service-weather::after {
  background-image: url("../assets/sidebar/weather.webp");
}

.service-exchange::after {
  background-image: url("../assets/sidebar/exchange.webp");
}

.service-package::after {
  background-image: url("../assets/sidebar/package.webp");
}

.service-flight::after {
  background-image: url("../assets/sidebar/flight.webp");
}

.service-insurance::after {
  background-image: url("../assets/sidebar/insurance.webp");
}

.service-car::after {
  background-image: url("../assets/sidebar/car-rental.webp");
}

.service-visa::after {
  background-image: url("../assets/sidebar/visa.webp");
}

@media (max-width: 1220px) {
  .tour-sidebar-col {
    width: 320px;
  }

  .sidebar-service-card {
    min-height: 148px;
  }

  .sidebar-service-card strong {
    font-size: 23px;
  }

}

@media (max-width: 1024px) {
  .tour-sidebar-col {
    width: 100%;
  }

  .sidebar-service-stack {
    display: none;
  }

}

@media (min-width: 1025px) {
  :root {
    --content-frame: 1500px;
  }

  .tour-program-card,
.tour-result-bar {
    width: 100%;
  }

  .page-content-area {
    padding-top: 28px;
    padding-bottom: 80px;
  }

  .tour-content-row {
    --search-left-shift: 0px;
    width: 100%;
    margin-left: 0;
    display: grid;
    grid-template-columns: 342px minmax(0, 1fr);
    gap: 26px;
    align-items: start;
  }

  .tour-program-area {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

}

@media (min-width: 1500px) {
  .content-start-frame {
    width: min(1380px, calc(100% - 48px));
    max-width: 1380px;
  }

}

.ttb-site-footer,
.ttb-site-footer * {
  box-sizing: border-box;
}

.ttb-site-footer {
  background: var(--ttb-blue-dark);
  color: #fff;
  padding: 0;
  position: relative;
  overflow: hidden;
  font-family: "FC Subject Rounded", "Prompt", "Sarabun", "Noto Sans Thai", Arial, sans-serif;
  line-height: 1.6;
}

.ttb-site-footer a {
  color: inherit;
  text-decoration: none;
}

.ttb-site-footer img {
  max-width: 100%;
  display: block;
}

.ttb-container {
  width: min(1360px, calc(100% - 48px));
  margin-inline: auto;
}

.ttb-footer-inner {
  width: min(1380px, calc(100% - 48px));
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.45fr .78fr .9fr 1fr;
  gap: 70px;
  padding: 66px 0 58px;
  align-items: start;
  transform: translateX(40px);
}

.ttb-footer-brand-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.ttb-footer-logo {
  width: 86px;
  height: 86px;
  border-radius: 18px;
  background: #fff;
  display: grid;
  place-items: center;
  padding: 10px;
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
}

.ttb-footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ttb-footer-brand h3 {
  font-size: 27px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
}

.ttb-footer-company-name {
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.ttb-footer-brand p,
.ttb-footer-col p,
.ttb-footer-col a {
  color: rgba(255,255,255,.86);
  font-size: 15px;
  line-height: 1.8;
}

.ttb-footer-brand p {
  max-width: 430px;
  margin: 0 0 10px;
}

.ttb-footer-col h4 {
  display: inline-block;
  position: relative;
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 22px;
}

.ttb-footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 42px;
  height: 2px;
  background: rgba(255,255,255,.92);
  border-radius: 999px;
}

.ttb-footer-col a {
  display: block;
  margin-bottom: 11px;
  transition: .22s ease;
}

.ttb-footer-col a:hover {
  color: var(--ttb-gold);
  padding-left: 4px;
}

.ttb-footer-register {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 8px 30px;
  border-radius: 999px;
  background: var(--ttb-gold);
  color: #073b77 !important;
  font-weight: 800;
  line-height: 1.3 !important;
}

.ttb-footer-register:hover {
  padding-left: 30px !important;
  transform: translateY(-1px);
}

.ttb-footer-contact p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 10px;
}

.ttb-footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.ttb-footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  padding: 0 !important;
  margin: 0;
  color: #fff;
  font-weight: 800;
  line-height: 1;
}

.ttb-social-facebook {
  background: #1877f2;
  font-size: 20px;
}

.ttb-social-line {
  background: var(--ttb-green);
  font-size: 10px;
}

.ttb-social-tiktok {
  background: #111111;
}

.ttb-social-instagram {
  background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 48%, #6228d7 100%);
}

.ttb-footer-socials svg {
  width: 19px;
  height: 19px;
  display: block;
}

.ttb-social-tiktok svg path {
  fill: #fff;
}

.ttb-social-instagram svg rect,
.ttb-social-instagram svg circle {
  fill: none;
  stroke: #fff;
  stroke-width: 1.9;
}

.ttb-mobile-footer-actions {
  display: none;
}

.ttb-footer-meta-wrap {
  padding: 0 0 34px;
}

.ttb-footer-meta-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.ttb-footer-line-left,
.ttb-footer-line-right {
  display: block;
  width: 100%;
  height: 1px;
  min-height: 1px;
  background: rgba(255,255,255,.28);
  border: 0;
  box-shadow: none;
}

.ttb-footer-visitor-badge {
  min-width: 176px;
  padding: 12px 26px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.36);
  text-align: center;
  position: relative;
  z-index: 2;
}

.visitor-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 4px;
}

.visitor-icon {
  width: 14px;
  height: 14px;
  fill: #fff;
  color: #fff;
  flex: 0 0 auto;
}

.ttb-footer-visitor-badge strong {
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.ttb-footer-bottom-final {
  width: min(1280px, calc(100% - 48px));
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 0 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  row-gap: 26px;
  align-items: center;
  text-align: center;
}

.ttb-footer-copyright {
  grid-column: 1 / -1;
  grid-row: 1;
  justify-self: center;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  margin: 0;
}

.ttb-footer-powered {
  grid-column: 2;
  grid-row: 2;
  justify-self: center;
  align-self: center;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  white-space: nowrap;
  margin: 0;
}

.ttb-footer-powered strong {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.ttb-back-to-top {
  grid-column: 3;
  grid-row: 2;
  justify-self: end;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.25px;
  cursor: pointer;
  transition: .22s ease;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.ttb-back-to-top i {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 999px;
  background: #fff;
  color: var(--ttb-blue-dark);
  display: grid;
  place-items: center;
  font-style: normal;
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
}

.ttb-back-to-top i svg {
  width: 14px;
  height: 14px;
  display: block;
}

.ttb-back-to-top i path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ttb-back-to-top:hover {
  color: #fff;
  transform: translateY(-2px);
}

.ttb-back-to-top:hover i {
  background: var(--ttb-gold);
  color: #073b77;
}

@media (max-width: 1500px) and (min-width: 769px) {
  .ttb-footer-inner {
    transform: translateX(40px);
  }

}

@media (max-width: 1180px) {
  .ttb-footer-inner {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 768px) {
  .ttb-container {
    width: calc(100% - 32px);
  }

  .ttb-footer-inner {
    transform: none;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 58px 32px 34px;
    width: 100%;
    text-align: center;
  }

  .ttb-footer-brand-row {
    flex-direction: column;
    justify-content: center;
  }

  .ttb-footer-logo {
    width: 150px;
    height: 150px;
    border-radius: 32px;
    padding: 22px;
  }

  .ttb-footer-brand h3 {
    font-size: 38px;
    line-height: 1.16;
    letter-spacing: -0.4px;
  }

  .ttb-footer-company-name {
    font-size: 25px;
    line-height: 1.45;
  }

  .ttb-footer-brand p {
    margin-inline: auto;
    font-size: 23px;
    line-height: 1.72;
    max-width: 590px;
  }

  .ttb-footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .ttb-footer-contact p,
.ttb-footer-socials {
    justify-content: center;
  }

  .ttb-footer-col:not(.ttb-footer-contact) {
    display: none;
  }

  .ttb-mobile-footer-actions {
    display: grid;
    gap: 18px;
    margin: 34px auto 0;
    width: min(100%, 630px);
  }

  .ttb-mobile-footer-actions a {
    min-height: 84px;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 104px 1fr;
    align-items: center;
    border: 1px solid rgba(255,255,255,.44);
    overflow: hidden;
    font-size: 30px;
    font-weight: 800;
    color: #fff;
  }

  .ttb-mobile-footer-actions a .ttb-action-icon {
    height: 100%;
    display: grid;
    place-items: center;
    border-right: 1px dashed rgba(255,255,255,.35);
    font-weight: 800;
  }

  .ttb-mobile-footer-line {
    background: var(--ttb-green);
    border-color: transparent !important;
  }

  .ttb-footer-meta-inner {
    width: 100%;
    gap: 18px;
    margin-top: 34px;
  }

  .ttb-footer-visitor-badge {
    min-width: min(390px, calc(100vw - 150px));
    padding: 19px 28px;
    border-radius: 14px;
  }

  .visitor-label {
    font-size: 23px;
    gap: 10px;
  }

  .visitor-icon {
    width: 25px;
    height: 25px;
  }

  .ttb-footer-visitor-badge strong {
    font-size: 32px;
  }

  .ttb-footer-bottom-final {
    width: 100%;
    display: block;
    padding: 34px 28px 58px;
  }

  .ttb-footer-copyright {
    font-size: 23px;
    line-height: 1.55;
    max-width: 620px;
    margin-inline: auto;
  }

  .ttb-footer-powered {
    margin-top: 44px;
    font-size: 18px;
  }

  .ttb-footer-powered strong {
    font-size: 26px;
  }

  .ttb-back-to-top {
    justify-content: center;
    margin: 42px auto 0;
    font-size: 15px;
    gap: 10px;
  }

  .ttb-back-to-top i {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .ttb-back-to-top i svg {
    width: 18px;
    height: 18px;
  }

  .ttb-footer-contact h4 {
    font-size: 30px;
    margin-top: 34px;
    margin-bottom: 22px;
  }

  .ttb-footer-contact p {
    font-size: 23px;
    line-height: 1.62;
    gap: 12px;
  }

  .ttb-footer-socials {
    gap: 18px;
    margin-top: 34px;
  }

  .ttb-footer-socials a {
    width: 68px;
    height: 68px;
    border-radius: 16px;
  }

  .ttb-social-facebook {
    font-size: 38px;
  }

  .ttb-social-line {
    font-size: 12px;
  }

  .ttb-footer-socials svg {
    width: 30px;
    height: 30px;
  }

}

@media (max-width: 640px) {
  .ttb-footer-inner {
    transform: none;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 54px 24px 34px;
    width: 100%;
    text-align: center;
  }

  .ttb-footer-brand-row {
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    margin-bottom: 22px;
  }

  .ttb-footer-logo {
    width: 118px;
    height: 118px;
    flex-basis: 118px;
    border-radius: 24px;
    padding: 8px;
  }

  .ttb-footer-brand h3 {
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -0.3px;
  }

  .ttb-footer-company-name {
    font-size: 20px !important;
    line-height: 1.45 !important;
    margin-bottom: 12px;
  }

  .ttb-footer-brand p {
    max-width: 440px;
    margin-inline: auto;
    font-size: 17px;
    line-height: 1.72;
  }

  .ttb-footer-license {
    font-size: 16px !important;
  }

  .ttb-mobile-footer-actions {
    display: grid;
    width: 100%;
    max-width: 440px;
    gap: 12px;
    margin: 28px auto 0;
  }

  .ttb-mobile-footer-actions a {
    min-height: 62px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 72px 1fr;
    align-items: center;
    border: 1px solid rgba(255,255,255,.42);
    overflow: hidden;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
  }

  .ttb-mobile-footer-actions a .ttb-action-icon {
    height: 100%;
    display: grid;
    place-items: center;
    border-right: 1px dashed rgba(255,255,255,.35);
    font-weight: 800;
  }

  .ttb-action-phone {
    color: #ffffff;
    font-size: 24px;
  }

  .ttb-action-line {
    position: relative;
    color: transparent;
    z-index: 1;
  }

  .ttb-action-line::before {
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #ffffff;
    position: absolute;
  }

  .ttb-action-line::after {
    content: "LINE";
    position: absolute;
    font-size: 9px;
    font-weight: 800;
    color: var(--ttb-green);
    z-index: 2;
  }

  .ttb-mobile-footer-call {
    background: transparent;
  }

  .ttb-mobile-footer-line {
    background: var(--ttb-green);
    border-color: transparent !important;
  }

  .ttb-footer-col:not(.ttb-footer-contact) {
    display: none;
  }

  .ttb-footer-contact h4 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 18px;
  }

  .ttb-footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
  }

  .ttb-footer-contact p {
    justify-content: center;
    font-size: 18px;
    line-height: 1.62;
    gap: 9px;
    margin-bottom: 9px;
  }

  .ttb-footer-socials {
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
  }

  .ttb-footer-socials a {
    width: 52px;
    height: 52px;
    border-radius: 12px;
  }

  .ttb-social-facebook {
    font-size: 25px;
  }

  .ttb-social-line {
    font-size: 10px;
  }

  .ttb-footer-socials svg {
    width: 23px;
    height: 23px;
  }

  .ttb-footer-meta-inner {
    width: 100%;
    gap: 18px;
    margin-top: 34px;
  }

  .ttb-footer-visitor-badge {
    min-width: 240px;
    padding: 14px 22px 13px;
    border-radius: 10px;
  }

  .visitor-label {
    font-size: 17px;
    gap: 8px;
  }

  .visitor-icon {
    width: 18px;
    height: 18px;
  }

  .ttb-footer-visitor-badge strong {
    font-size: 23px;
    line-height: 1.12;
  }

  .ttb-footer-bottom-final {
    width: 100%;
    display: block;
    padding: 28px 22px 44px;
  }

  .ttb-footer-copyright {
    font-size: 17px;
    line-height: 1.55;
    max-width: 430px;
    margin-inline: auto;
  }

  .ttb-footer-powered {
    margin-top: 32px;
    font-size: 13px;
  }

  .ttb-footer-powered strong {
    font-size: 21px;
  }

  .ttb-back-to-top {
    justify-content: center;
    margin: 42px auto 0;
    font-size: 15px;
    gap: 10px;
    letter-spacing: -0.15px;
  }

  .ttb-back-to-top i {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .ttb-back-to-top i svg {
    width: 18px;
    height: 18px;
  }

}

.top-bar,
.top-links a,
.top-links span,
.top-title,
.main-menu-inner a,
.brand-title,
.tour-price-panel strong {
  font-family: "FC Subject Rounded", "Sarabun", "Noto Sans Thai", Arial, sans-serif;
}

.top-links a,
.top-links span {
  font-size: 14.5px;
  font-weight: 700;
}

.top-register {
  font-weight: 700;
}

.brand-title {
  font-size: 31px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.info-block strong,
.contact-line strong {
  font-weight: 700;
}

.tour-price-panel strong {
  font-weight: 700;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .main-menu-inner a {
    padding: 0 20px;
    font-size: 18.5px;
  }

}

@media (max-width: 1024px) {
  .main-menu-inner a,
.mobile-nav-list a {
    font-weight: 700;
  }

}

input,
select,
textarea,
button,
option,
optgroup,
.control-wrap input,
.control-wrap select,
.search-field label,
.search-title-row h2,
.main-menu-inner a,
.price-cell,
.tour-detail-button,
.tour-download-button {
  font-family: "FC Subject Rounded", "Sarabun", "Noto Sans Thai", Arial, sans-serif !important;
}

.control-wrap input::placeholder {
  font-size: 17px;
}

.control-wrap input:focus,
.control-wrap select:focus {
  border-color: #0b63ce;
  box-shadow: 0 0 0 5px rgba(11, 99, 206, 0.10), 0 8px 22px rgba(0, 63, 143, 0.07);
}

.control-icon {
  place-items: center;
  font-size: 15px;
  position: absolute !important;
  left: 17px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 4 !important;
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: radial-gradient(circle at 35% 25%, #ffffff 0%, #f4faff 47%, #e8f4ff 100%) !important;
  border: 1px solid #d5eaff !important;
  color: #0062cc !important;
  box-shadow: 0 7px 16px rgba(0, 88, 190, 0.12), inset 0 1px 0 rgba(255,255,255,0.98) !important;
}

.tour-search-button,
.tour-reset-button {
  font-family: "FC Subject Rounded", "Sarabun", "Noto Sans Thai", Arial, sans-serif !important;
}

.main-menu-inner a {
  font-weight: 700 !important;
}

button,
input,
select,
textarea,
option,
optgroup,
label,
.control-wrap input,
.control-wrap select,
.tour-date-table th,
.tour-date-table td,
.tour-price-panel {
  font-family: "FC Subject Rounded", "Prompt", "Sarabun", "Noto Sans Thai", Arial, sans-serif !important;
}

.search-field {
  margin-bottom: 18px;
}

.control-wrap select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.control-icon svg {
  width: 17px !important;
  height: 17px !important;
  stroke-width: 2.15;
}

.search-title-row h2 {
  font-size: 25px;
  font-weight: 900;
}

.date-title-row span,
.date-title-row strong,
.tour-date-table th,
.tour-date-table td {
  font-size: 16.5px;
  font-weight: 750;
}

.tour-date-table th {
  font-weight: 850;
}

.tour-date-table td:first-child {
  font-weight: 800;
  color: #081f3e !important;
  display: table-cell !important;
  white-space: nowrap !important;
}

.date-icon svg {
  width: 14px !important;
  height: 14px !important;
  stroke-width: 2.2;
}

.tour-meta-list i svg {
  width: 18px !important;
  height: 18px !important;
}

@media (max-width: 640px) {
  .control-wrap input,
.control-wrap select {
    height: 52px;
    font-size: 16px;
    padding-left: 58px;
  }

  .control-icon {
    width: 32px;
    height: 32px;
    left: 15px;
  }

  .date-title-row span,
.date-title-row strong,
.tour-date-table th,
.tour-date-table td {
    font-size: 13.5px;
  }

}

html,
body,
body *:not(i):not(.fa) {
  font-family: "FC Subject Rounded", "Sarabun", "Noto Sans Thai", Arial, sans-serif !important;
}

button,
input,
select,
textarea,
option,
optgroup,
label,
.main-menu-inner a,
.search-title-row h2,
.search-field label,
.control-wrap input,
.control-wrap select,
.tour-date-table th,
.tour-date-table td,
.tour-detail-button,
.tour-download-button {
  font-family: "FC Subject Rounded", "Sarabun", "Noto Sans Thai", Arial, sans-serif !important;
}

.search-field label {
  font-size: 15.5px !important;
  font-weight: 700 !important;
  color: #123a72 !important;
  margin-bottom: 8px !important;
}

.control-wrap input,
.control-wrap select {
  height: 56px !important;
  min-height: 56px !important;
  border-radius: 16px !important;
  border: 1px solid #cfe0f4 !important;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) !important;
  color: #071d3d !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  padding-left: 64px !important;
  padding-right: 46px !important;
  box-shadow: 0 8px 20px rgba(0, 63, 143, 0.045), inset 0 1px 0 rgba(255,255,255,0.95) !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

.control-wrap input::placeholder {
  color: #9eacc0 !important;
  font-weight: 500 !important;
}

.control-wrap::after {
  content: "" !important;
  position: absolute !important;
  right: 18px !important;
  top: 50% !important;
  width: 8px !important;
  height: 8px !important;
  border-right: 2px solid #102846 !important;
  border-bottom: 2px solid #102846 !important;
  transform: translateY(-65%) rotate(45deg) !important;
  pointer-events: none !important;
  opacity: 0.92 !important;
  z-index: 3 !important;
}

.control-wrap:has(input)::after,
.control-wrap:has(.calendar-btn)::after,
.price-field .control-wrap::after {
  display: none !important;
}

.control-icon .fa {
  font-family: FontAwesome !important;
  font-size: 16px !important;
  line-height: 1 !important;
  color: #0062cc !important;
  transform: none !important;
}

.search-field:hover .control-icon {
  color: #004fa8 !important;
  border-color: #a9d4ff !important;
  box-shadow: 0 9px 20px rgba(0, 88, 190, 0.16), inset 0 1px 0 rgba(255,255,255,0.98) !important;
}

.search-field:hover .control-wrap input,
.search-field:hover .control-wrap select {
  border-color: #a9caef !important;
}

.calendar-btn .fa,
.tour-search-button .fa,
.tour-reset-button .fa,
.date-icon .fa {
  font-family: FontAwesome !important;
  line-height: 1 !important;
}

.calendar-btn .fa {
  font-size: 17px !important;
  color: #ffffff !important;
}

.date-icon .fa {
  color: #0062cc !important;
  font-size: 14px !important;
}

.tour-date-table td,
.tour-date-table th {
  font-size: 16px !important;
  font-weight: 700 !important;
}

.tour-search-button,
.tour-reset-button {
  font-weight: 700 !important;
}

@media (max-width: 768px) {
  .control-wrap input,
.control-wrap select {
    height: 54px !important;
    min-height: 54px !important;
    font-size: 16px !important;
    padding-left: 60px !important;
  }

  .control-icon {
    width: 34px !important;
    height: 34px !important;
    left: 16px !important;
  }

  .calendar-btn {
    width: 54px !important;
    height: 54px !important;
  }

}

.tour-date-table th {
  height: 48px !important;
  min-height: 48px !important;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
  line-height: 1.35 !important;
  vertical-align: middle !important;
}

.tour-date-table td {
  height: 52px !important;
  min-height: 52px !important;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
  line-height: 1.45 !important;
  vertical-align: middle !important;
}

@media (max-width: 768px) {
  .tour-date-table th {
    height: 46px !important;
    min-height: 46px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  .tour-date-table td {
    height: 50px !important;
    min-height: 50px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  .tour-date-table th:first-child,
.tour-date-table td:first-child {
    padding-left: 14px !important;
  }

  .date-icon {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    margin-right: 10px !important;
  }

}

.tour-meta-list {
  margin-bottom: 14px !important;
}

.tour-meta-list span {
  min-height: 58px !important;
  grid-template-columns: 38px 1fr !important;
  column-gap: 10px !important;
  padding: 9px 12px !important;
  border-radius: 14px !important;
  border-color: #d7e7f8 !important;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%) !important;
  box-shadow: 0 7px 18px rgba(0, 63, 143, 0.045), inset 0 1px 0 rgba(255,255,255,0.95) !important;
}

.tour-meta-list i.meta-icon,
.tour-meta-list i {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  grid-row: 1 / span 2 !important;
  align-self: center !important;
  margin: 0 !important;
  background: linear-gradient(180deg, #f4f9ff 0%, #e9f4ff 100%) !important;
  border: 1px solid #d3e8ff !important;
  color: #0063cc !important;
  box-shadow: 0 5px 14px rgba(0, 85, 184, 0.10), inset 0 1px 0 rgba(255,255,255,0.95) !important;
}

.tour-meta-list i .fa,
.tour-meta-list i.meta-icon .fa {
  font-family: FontAwesome !important;
  font-size: 15px !important;
  line-height: 1 !important;
  color: inherit !important;
}

.tour-meta-list b {
  align-self: end !important;
  color: #607086 !important;
  font-size: 12.2px !important;
  line-height: 1.05 !important;
  font-weight: 750 !important;
}

.tour-meta-list strong {
  align-self: start !important;
  color: #0e213c !important;
  font-size: 14.2px !important;
  line-height: 1.12 !important;
  font-weight: 900 !important;
}

.date-icon,
.tour-date-table .date-icon {
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-right: 13px !important;
  vertical-align: middle !important;
  position: relative !important;
  top: -1px !important;
  border-radius: 50% !important;
  background: linear-gradient(180deg, #f4f9ff 0%, #e9f4ff 100%) !important;
  border: 1px solid #d3e8ff !important;
  color: #0063cc !important;
  box-shadow: 0 5px 14px rgba(0, 85, 184, 0.10), inset 0 1px 0 rgba(255,255,255,0.95) !important;
}

.date-icon .fa,
.tour-date-table .date-icon .fa {
  font-family: FontAwesome !important;
  font-size: 14px !important;
  line-height: 1 !important;
}

.period-toggle-wrap {
  padding-top: 20px !important;
}

@media (max-width: 768px) {
  .tour-meta-list span {
    min-height: 54px !important;
    grid-template-columns: 36px 1fr !important;
    padding: 8px 10px !important;
  }

  .tour-meta-list i.meta-icon,
.tour-meta-list i {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
  }

  .period-toggle-button {
    min-height: 54px !important;
    grid-template-columns: 32px 1fr 32px !important;
  }

  .period-toggle-left-icon,
.period-toggle-icon,
.date-icon,
.tour-date-table .date-icon {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
  }

}

.tour-meta-list > span > i.meta-icon {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  max-width: 32px !important;
  border-radius: 50% !important;
  grid-column: 1 !important;
  grid-row: 1 / 3 !important;
  align-self: center !important;
  justify-self: center !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  background: linear-gradient(180deg, #f6fbff 0%, #e9f4ff 100%) !important;
  border: 1px solid #d4e9ff !important;
  color: #0064cf !important;
  box-shadow: 0 4px 11px rgba(0, 86, 184, 0.10), inset 0 1px 0 rgba(255,255,255,0.95) !important;
}

.tour-meta-list > span > i.meta-icon .fa {
  font-family: FontAwesome !important;
  font-size: 13.5px !important;
  line-height: 1 !important;
  width: auto !important;
  height: auto !important;
  display: block !important;
  color: inherit !important;
}

.tour-date-table .date-icon,
.date-icon {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  max-width: 28px !important;
  margin-right: 12px !important;
  top: 0 !important;
}

.tour-date-table .date-icon .fa,
.date-icon .fa {
  font-family: FontAwesome !important;
  font-size: 13px !important;
  line-height: 1 !important;
}

.period-toggle-left-icon .fa {
  font-family: FontAwesome !important;
  font-size: 13.5px !important;
  line-height: 1 !important;
}

@media (max-width: 768px) {
  .tour-meta-list > span {
    grid-template-rows: 15px 19px !important;
  }

  .tour-meta-list > span > i.meta-icon {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    max-width: 30px !important;
  }

}

.tour-meta-list > span > i.meta-icon,
.tour-meta-list > span > i {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  max-width: 22px !important;
  min-height: 22px !important;
  max-height: 22px !important;
  flex: 0 0 22px !important;
  grid-column: 1 !important;
  grid-row: 1 / 3 !important;
  align-self: center !important;
  justify-self: center !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: #0064cf !important;
}

.tour-meta-list > span > i.meta-icon::before,
.tour-meta-list > span > i::before,
.tour-meta-list > span > i.meta-icon::after,
.tour-meta-list > span > i::after {
  display: none !important;
  content: none !important;
}

.tour-meta-list > span > i.meta-icon .fa,
.tour-meta-list > span > i .fa {
  font-family: FontAwesome !important;
  font-size: 17px !important;
  line-height: 1 !important;
  width: auto !important;
  height: auto !important;
  display: block !important;
  color: inherit !important;
}

@media (max-width: 768px) {
  .tour-meta-list > span {
    column-gap: 9px !important;
  }

  .tour-meta-list > span > i.meta-icon,
.tour-meta-list > span > i {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    max-width: 20px !important;
    min-height: 20px !important;
    max-height: 20px !important;
  }

  .tour-meta-list > span > i.meta-icon .fa,
.tour-meta-list > span > i .fa {
    font-size: 15.5px !important;
  }

}

.tour-meta-list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin: 14px 0 16px !important;
}

.tour-meta-list > span {
  position: relative !important;
  min-height: 62px !important;
  display: grid !important;
  grid-template-columns: 22px minmax(0, 1fr) !important;
  grid-template-rows: auto auto !important;
  align-content: center !important;
  align-items: center !important;
  column-gap: 12px !important;
  padding: 12px 16px !important;
  overflow: hidden !important;
  border-radius: 16px !important;
  background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%) !important;
  border: 1px solid #d7e8fa !important;
  box-shadow: 0 6px 16px rgba(0, 75, 166, 0.04), inset 0 1px 0 rgba(255,255,255,0.95) !important;
}

.tour-meta-list > span::after {
  content: none !important;
  display: none !important;
}

.tour-meta-list > span > i.meta-icon,
.tour-meta-list > span > i.fa.meta-icon {
  grid-column: 1 !important;
  grid-row: 1 / 3 !important;
  align-self: center !important;
  justify-self: center !important;
  width: 22px !important;
  min-width: 22px !important;
  max-width: 22px !important;
  height: 22px !important;
  min-height: 22px !important;
  max-height: 22px !important;
  flex: 0 0 22px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  color: #0064cf !important;
  font-family: FontAwesome !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-size: 18px !important;
  line-height: 1 !important;
  text-align: center !important;
}

.tour-meta-list > span > i.meta-icon::before,
.tour-meta-list > span > i.fa.meta-icon::before {
  display: inline-block !important;
  font-family: FontAwesome !important;
  font-size: 18px !important;
  line-height: 1 !important;
  color: inherit !important;
}

.tour-meta-list > span > i.meta-icon::after,
.tour-meta-list > span > i.fa.meta-icon::after {
  content: none !important;
  display: none !important;
}

.tour-meta-list > span > b {
  grid-column: 2 !important;
  grid-row: 1 !important;
  align-self: end !important;
  margin: 0 !important;
  font-family: "FC Subject Rounded", sans-serif !important;
  font-size: 13px !important;
  line-height: 1.1 !important;
  font-weight: 700 !important;
  color: #65758a !important;
  letter-spacing: 0 !important;
}

.tour-meta-list > span > strong {
  grid-column: 2 !important;
  grid-row: 2 !important;
  align-self: start !important;
  margin: 3px 0 0 !important;
  font-family: "FC Subject Rounded", sans-serif !important;
  font-size: 16px !important;
  line-height: 1.1 !important;
  font-weight: 900 !important;
  color: #071f43 !important;
  letter-spacing: 0 !important;
}

@media (max-width: 768px) {
  .tour-meta-list {
    grid-template-columns: 1fr !important;
    gap: 9px !important;
  }

  .tour-meta-list > span {
    min-height: 56px !important;
    padding: 11px 14px !important;
    grid-template-columns: 21px minmax(0, 1fr) !important;
  }

  .tour-meta-list > span > i.meta-icon,
.tour-meta-list > span > i.fa.meta-icon {
    width: 21px !important;
    min-width: 21px !important;
    max-width: 21px !important;
    height: 21px !important;
    min-height: 21px !important;
    max-height: 21px !important;
    font-size: 17px !important;
  }

  .tour-meta-list > span > i.meta-icon::before,
.tour-meta-list > span > i.fa.meta-icon::before {
    font-size: 17px !important;
  }

  .tour-meta-list > span > strong {
    font-size: 15px !important;
  }

}

.tour-meta-list > span > i.fa.meta-icon::before {
  display: inline-block !important;
  font-family: FontAwesome !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-size: 18px !important;
  line-height: 1 !important;
  color: #0064cf !important;
  text-rendering: auto !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

.tour-meta-list > span > i.fa-tag.meta-icon::before {
  content: "" !important;
}

.tour-meta-list > span > i.fa-clock-o.meta-icon::before {
  content: "" !important;
}

.tour-meta-list > span > i.fa-building-o.meta-icon::before {
  content: "" !important;
}

.tour-meta-list > span > i.fa-user-o.meta-icon::before {
  content: "" !important;
}

.tour-meta-list > span > i.fa.meta-icon {
  width: 24px !important;
  min-width: 24px !important;
  max-width: 24px !important;
  height: 24px !important;
  min-height: 24px !important;
  max-height: 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  align-self: center !important;
  justify-self: center !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  color: #0064cf !important;
  overflow: visible !important;
}

@media (max-width: 768px) {
  .tour-meta-list > span > i.fa.meta-icon::before {
    font-size: 17px !important;
  }

}

.search-field .date-range-control {
  position: relative !important;
  min-height: 56px !important;
  border-radius: 16px !important;
}

.date-range-control .date-control-icon {
  position: absolute !important;
  left: 17px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 5 !important;
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: radial-gradient(circle at 35% 25%, #ffffff 0%, #f4faff 48%, #e8f4ff 100%) !important;
  border: 1px solid #d5eaff !important;
  color: #0062cc !important;
  box-shadow: 0 7px 16px rgba(0, 88, 190, 0.12), inset 0 1px 0 rgba(255,255,255,0.98) !important;
  pointer-events: none !important;
}

.date-range-control .date-control-icon .fa {
  font-family: FontAwesome !important;
  font-size: 16px !important;
  line-height: 1 !important;
  color: #0062cc !important;
}

.date-range-control input[data-two-month-datepicker] {
  height: 56px !important;
  min-height: 56px !important;
  padding-left: 66px !important;
  padding-right: 68px !important;
  border-radius: 16px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #09244c !important;
  background: #ffffff !important;
  cursor: pointer !important;
  user-select: none !important;
  -webkit-user-select: none !important;
}

.date-range-control input[data-two-month-datepicker]::placeholder {
  color: #94a3b8 !important;
  font-weight: 700 !important;
}

.date-range-control .calendar-btn {
  width: 58px !important;
  height: 56px !important;
  border-radius: 0 16px 16px 0 !important;
  border-left: 1px solid rgba(255,255,255,0.18) !important;
  background: linear-gradient(180deg, #0065d1 0%, #004fa8 100%) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18) !important;
}

.date-range-control .calendar-btn .fa {
  font-size: 18px !important;
  color: #ffffff !important;
}

.search-field:hover .date-range-control .date-control-icon,
.date-range-control:focus-within .date-control-icon {
  border-color: #a9d4ff !important;
  box-shadow: 0 9px 20px rgba(0, 88, 190, 0.16), inset 0 1px 0 rgba(255,255,255,0.98) !important;
}

.date-range-control:focus-within input[data-two-month-datepicker],
.date-range-control input[data-two-month-datepicker].is-datepicker-open {
  border-color: #80bdff !important;
  box-shadow: 0 0 0 4px rgba(0, 98, 204, 0.09), 0 10px 22px rgba(0, 63, 143, 0.08) !important;
}

.tour-program-card.is-date-filtered-out,
.tour-date-table tbody tr.is-date-filtered-out {
  display: none !important;
}

.tour-date-box.has-date-filter .date-title-row strong::after {
  content: "  ·  กรองตามช่วงวันที่แล้ว";
  color: #0062cc;
  font-weight: 800;
}

@media (max-width: 768px) {
  .date-range-control input[data-two-month-datepicker] {
    height: 54px !important;
    min-height: 54px !important;
    padding-left: 62px !important;
    padding-right: 62px !important;
    font-size: 15px !important;
  }

  .date-range-control .date-control-icon {
    width: 34px !important;
    height: 34px !important;
    left: 16px !important;
  }

  .date-range-control .calendar-btn {
    width: 54px !important;
    height: 54px !important;
  }

}

.date-range-control {
  isolation: isolate !important;
}

.ttb-datepicker-panel * {
  font-family: "FC Subject Rounded", sans-serif !important;
  box-sizing: border-box !important;
}

.ttb-dp-action[data-dp-cancel] {
  color: #475569 !important;
  background: #f8fafc !important;
}

.date-filter-empty-message {
  display: block;
  margin: 12px 0 0;
  padding: 12px 14px;
  border: 1px dashed #b9d7f8;
  border-radius: 14px;
  background: #f5faff;
  color: #0055b8;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.date-filter-empty-message[hidden] {
  display: none !important;
}

.budget-field {
  margin-top: 18px !important;
  margin-bottom: 16px !important;
}

.budget-field label {
  color: #123a72 !important;
  font-size: 15.5px !important;
  font-weight: 850 !important;
}

.budget-field .budget-control {
  position: relative !important;
}

.budget-field .budget-control select {
  height: 58px !important;
  border-radius: 16px !important;
  border: 1px solid #cfe0f4 !important;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) !important;
  color: #0c2445 !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  padding: 0 54px 0 66px !important;
  box-shadow: 0 10px 26px rgba(0, 63, 143, 0.055), inset 0 1px 0 rgba(255,255,255,0.95) !important;
  cursor: pointer !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

.budget-field .budget-control::after {
  display: block !important;
  content: "" !important;
  position: absolute !important;
  right: 18px !important;
  top: 50% !important;
  width: 9px !important;
  height: 9px !important;
  border-right: 2.5px solid #102846 !important;
  border-bottom: 2.5px solid #102846 !important;
  transform: translateY(-65%) rotate(45deg) !important;
  pointer-events: none !important;
  opacity: 0.95 !important;
  z-index: 5 !important;
}

.budget-field .budget-icon {
  position: absolute !important;
  left: 17px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: radial-gradient(circle at 35% 25%, #ffffff 0%, #f4faff 48%, #e8f4ff 100%) !important;
  border: 1px solid #d5eaff !important;
  color: #0064cf !important;
  font-size: 16px !important;
  line-height: 1 !important;
  box-shadow: 0 7px 18px rgba(0, 85, 184, 0.11), inset 0 1px 0 rgba(255,255,255,0.95) !important;
  z-index: 4 !important;
}

.budget-field .budget-control:focus-within select,
.budget-field .budget-control:hover select {
  border-color: #7bb8ff !important;
  box-shadow: 0 0 0 4px rgba(0, 99, 209, 0.08), 0 12px 28px rgba(0, 63, 143, 0.07) !important;
}

.budget-field .budget-control:focus-within .budget-icon,
.budget-field .budget-control:hover .budget-icon {
  color: #004fae !important;
  background: radial-gradient(circle at 35% 25%, #ffffff 0%, #eff8ff 45%, #dff0ff 100%) !important;
  border-color: #b9ddff !important;
}

@media (max-width: 640px) {
  .budget-field .budget-control select {
    height: 54px !important;
    font-size: 16px !important;
    padding-left: 62px !important;
  }

  .budget-field .budget-icon {
    width: 35px !important;
    height: 35px !important;
    min-width: 35px !important;
    font-size: 15px !important;
  }

}

.tour-search-card .control-wrap {
  overflow: visible !important;
  z-index: 1;
}

.tour-search-card .search-field:focus-within,
.tour-search-card .search-field.is-open {
  position: relative;
  z-index: 30;
}

.tour-search-card .ttb-native-select-hidden {
  position: absolute !important;
  inset: 0 !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.tour-search-card .ttb-custom-select {
  position: relative;
  width: 100%;
}

.tour-search-card .ttb-custom-select-button {
  width: 100%;
  min-height: 58px;
  border: 1px solid #cfe0f4;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  color: #0c2445;
  font-family: "FC Subject Rounded", "Prompt", "Sarabun", "Noto Sans Thai", Arial, sans-serif !important;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
  text-align: left;
  padding: 13px 48px 13px 66px;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(0, 63, 143, 0.055), inset 0 1px 0 rgba(255,255,255,0.95);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.tour-search-card .ttb-custom-select-button:hover,
.tour-search-card .ttb-custom-select.is-open .ttb-custom-select-button {
  border-color: #7bb8ff;
  box-shadow: 0 0 0 4px rgba(0, 99, 209, 0.08), 0 12px 28px rgba(0, 63, 143, 0.07);
}

.tour-search-card .ttb-custom-select-label {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tour-search-card .ttb-custom-select-label.is-placeholder {
  color: #7b889b;
}

.tour-search-card .ttb-custom-select-list {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 999;
  max-height: 270px;
  overflow-y: auto;
  padding: 8px;
  border: 1px solid #cfe0f4;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(2, 30, 73, 0.16);
}

.tour-search-card .ttb-custom-select.is-open .ttb-custom-select-list {
  display: block;
}

.tour-search-card .ttb-custom-option {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: #102846;
  font-family: "FC Subject Rounded", "Prompt", "Sarabun", "Noto Sans Thai", Arial, sans-serif !important;
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
  padding: 10px 13px;
  cursor: pointer;
  white-space: normal;
  overflow-wrap: anywhere;
}

.tour-search-card .ttb-custom-option:hover,
.tour-search-card .ttb-custom-option.is-selected {
  background: linear-gradient(180deg, #0b67d1 0%, #0459bd 100%);
  color: #ffffff;
}

.tour-search-card .ttb-custom-select.is-open ~ .control-icon,
.tour-search-card .control-wrap:hover .control-icon {
  color: #004fae !important;
  background: radial-gradient(circle at 35% 25%, #ffffff 0%, #eff8ff 45%, #dff0ff 100%) !important;
  border-color: #b9ddff !important;
}

@media (max-width: 640px) {
  .tour-search-card .ttb-custom-select-button {
    min-height: 54px;
    font-size: 16px;
    padding-left: 62px;
  }

  .tour-search-card .ttb-custom-select-list {
    max-height: 230px;
  }

}

.airline-card-copy {
  min-width: 0;
}

.airline-card-copy span {
  margin-bottom: 0;
}

.airline-logo-text--image {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  font-size: 0;
  line-height: 0;
}

.airline-brand-logo {
  display: block;
  width: min(185px, 100%);
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 640px) {
  .airline-card--logo {
    justify-content: center;
  }

  .airline-card--logo .airline-logo-text--image {
    width: 100%;
  }

}

.airline-card--logo {
  min-height: 54px;
  padding: 9px 14px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.airline-card--logo .airline-card-copy span {
  display: block;
  margin-bottom: 0;
  color: #7b5205;
  font-size: 11.5px;
  line-height: 1.15;
  font-weight: 700;
}

@media (max-width: 640px) {
  .airline-card--logo {
    min-height: 58px;
    padding: 10px 14px;
  }

  .airline-card--logo .airline-card-copy span {
    font-size: 11.5px;
  }

}

.airline-card--logo .airline-card-copy {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
}

.airline-card--logo .airline-card-copy strong {
  display: block;
  color: #183660;
  font-size: 12.6px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.airline-card--logo .airline-logo-text--image {
  flex: 0 0 auto;
  justify-content: flex-end;
  min-width: 140px;
}

.airline-card--logo .airline-brand-logo {
  width: min(138px, 100%);
  max-width: 138px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 640px) {
  .airline-card--logo {
    gap: 10px;
  }

  .airline-card--logo .airline-card-copy {
    display: flex !important;
    gap: 3px;
  }

  .airline-card--logo .airline-card-copy strong {
    font-size: 11.8px;
  }

  .airline-card--logo .airline-logo-text--image {
    min-width: 104px;
    justify-content: flex-end;
  }

  .airline-card--logo .airline-brand-logo {
    width: min(104px, 100%);
    max-width: 104px;
  }

}

.tour-price-panel .tour-detail-button,
.tour-price-panel .tour-download-button {
  width: 100%;
  display: grid !important;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
}

@media (max-width: 640px) {
  .tour-price-panel .tour-detail-button {
    min-height: 48px;
    grid-template-columns: 15px minmax(0, 1fr) 12px;
    column-gap: 7px;
    padding: 0 12px;
  }

  .tour-price-panel .tour-download-button {
    min-height: 42px;
    grid-template-columns: 15px minmax(0, auto);
    column-gap: 7px;
    padding: 0 12px;
  }

}

.nav-mega-item {
  position: static;
  min-height: 72px;
}

.main-menu-inner > a,
.main-menu-inner > .nav-mega-item > .nav-mega-trigger {
  min-height: 72px;
  padding: 0 24px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-shadow: none;
}

.nav-mega-trigger i {
  margin-left: 7px;
  font-size: 11px;
  opacity: .78;
}

.nav-mega-item:hover > .nav-mega-trigger,
.nav-mega-item:focus-within > .nav-mega-trigger {
  color: #ffc20e;
  background: rgba(255, 255, 255, 0.08);
}

.ttb-country-mega {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 80;
  width: min(1420px, calc(100vw - 92px));
  transform: translateX(-50%);
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  border-radius: 0 0 10px 10px;
  border: 1px solid #e7edf5;
  border-top: 0;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
  transition: opacity .16s ease, visibility .16s ease, transform .16s ease;
}

.nav-mega-item:hover > .ttb-country-mega,
.nav-mega-item:focus-within > .ttb-country-mega {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%);
}

.ttb-country-mega-inner {
  display: grid;
  grid-template-columns: 1.02fr 1.04fr 1.12fr 1.14fr 1.02fr 1.02fr;
  align-items: start;
  min-height: 0;
}

.ttb-country-mega--domestic .ttb-country-mega-inner {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ttb-country-col {
  min-width: 0;
  padding: 15px 18px 18px;
  border-right: 1px solid #edf2f7;
  background: #ffffff;
}

.ttb-country-col:last-child {
  border-right: 0;
}

.ttb-country-col h3 {
  margin: 0 0 11px;
  padding: 0 0 9px;
  border-bottom: 1px solid #edf2f7;
  color: #0c2d62;
  font-size: 15.6px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  letter-spacing: 0;
}

.ttb-country-subhead {
  margin: 11px 0 7px;
  padding-top: 9px;
  border-top: 1px solid #edf2f7;
  color: #0c2d62;
  font-size: 13.8px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  letter-spacing: 0;
}

.ttb-country-link {
  min-height: 36px;
  height: 36px;
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #17233b;
  font-size: 14.3px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
  text-decoration: none;
  text-shadow: none;
  transition: background-color .16s ease, color .16s ease, transform .16s ease;
}

.ttb-country-link:hover {
  background: #f4f8ff;
  color: #0055b8;
  transform: translateX(1px);
}

.ttb-country-link .country-flag {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  flex: 0 0 22px;
  overflow: hidden;
  border: 1px solid #e4edf8;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.07);
  font-size: 13px;
}

.country-flag-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}

.ttb-country-link .country-name {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  color: #17233b;
  font-size: 14.3px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ttb-country-link:hover .country-name {
  color: #0055b8;
  font-weight: 500;
}

.ttb-country-link b {
  width: 44px;
  min-width: 44px;
  max-width: 44px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding: 0;
  border-radius: 7px;
  background: #0055b8;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 10px rgba(0, 85, 184, 0.12);
}

.ttb-country-link:hover b {
  background: #ffc20e;
  color: #0c2d62;
}

@media (max-width: 1360px) {
  .ttb-country-mega {
    width: min(1300px, calc(100vw - 30px));
  }

  .ttb-country-mega-inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ttb-country-mega--domestic .ttb-country-mega-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ttb-country-col {
    padding: 14px 16px 17px;
  }

  .ttb-country-link {
    grid-template-columns: 24px minmax(0, 1fr) 42px;
    gap: 8px;
    font-size: 14px;
  }

  .ttb-country-link .country-flag {
    width: 21px;
    height: 21px;
    flex-basis: 21px;
  }

  .ttb-country-link .country-name {
    font-size: 14px;
  }

  .ttb-country-link b {
    width: 42px;
    min-width: 42px;
    max-width: 42px;
  }

}

@media (max-width: 980px) {
  .nav-mega-item {
    width: 100%;
    min-height: 0;
  }

  .main-menu-inner > .nav-mega-item > .nav-mega-trigger {
    width: 100%;
    min-height: 46px;
    justify-content: space-between;
    padding: 0 18px;
    font-size: 16px;
  }

  .ttb-country-mega {
    position: static;
    width: 100%;
    transform: none;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    display: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .nav-mega-item.is-open > .ttb-country-mega,
.nav-mega-item:focus-within > .ttb-country-mega {
    display: block;
    transform: none;
  }

  .ttb-country-mega-inner,
.ttb-country-mega--domestic .ttb-country-mega-inner {
    grid-template-columns: 1fr;
  }

  .ttb-country-col {
    padding: 12px 16px;
    border-right: 0;
    border-bottom: 1px solid #edf2f7;
  }

  .ttb-country-link {
    min-height: 38px;
    height: 38px;
    grid-template-columns: 26px minmax(0, 1fr) 44px;
    font-size: 14px;
  }

  .ttb-country-link .country-name {
    font-size: 14px;
  }

}

@media (max-width: 640px) {
  .ttb-country-col {
    padding: 10px 14px;
  }

  .ttb-country-col h3 {
    font-size: 15px;
  }

  .ttb-country-subhead {
    font-size: 13.5px;
  }

  .ttb-country-link {
    min-height: 36px;
    height: 36px;
    grid-template-columns: 24px minmax(0, 1fr) 40px;
    gap: 8px;
  }

  .ttb-country-link .country-flag {
    width: 20px;
    height: 20px;
  }

  .ttb-country-link b {
    width: 40px;
    min-width: 40px;
    max-width: 40px;
    height: 23px;
    font-size: 11.5px;
  }

}

body .ttb-country-mega .ttb-country-col .ttb-country-link .country-flag {
  margin: 0 !important;
}

body .ttb-country-mega .ttb-country-col .ttb-country-link b {
  margin: 0 !important;
}

@media (max-width: 980px) {
  body .ttb-country-mega .ttb-country-col .ttb-country-link {
    min-height: 36px !important;
    height: 36px !important;
  }

}

body .ttb-country-mega .ttb-country-col .ttb-country-link:hover b,
body .ttb-country-mega .ttb-country-col .ttb-country-link:focus b {
  background: #ffc20e !important;
  color: #0c2d62 !important;
  box-shadow: 0 4px 10px rgba(255, 194, 14, 0.22) !important;
}

body .ttb-country-mega .ttb-country-col .ttb-country-link:hover .country-flag,
body .ttb-country-mega .ttb-country-col .ttb-country-link:focus .country-flag {
  border-color: #d8e9ff !important;
  box-shadow: 0 2px 8px rgba(0, 85, 184, 0.12) !important;
}

body .ttb-country-mega .ttb-country-col .ttb-country-link .country-name {
  font-family: "FC Subject Rounded", Arial, sans-serif !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
}

@media (max-width: 1360px) {
  body .ttb-country-mega {
    width: min(1320px, calc(100vw - 24px)) !important;
  }

  body .ttb-country-mega .ttb-country-mega-inner {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

}

body .ttb-country-mega .ttb-country-col .ttb-country-link {
  grid-template-columns: 30px minmax(0, 1fr) 58px !important;
  margin-top: 2px !important;
  margin-bottom: 2px !important;
}

@media (max-width: 1360px) {
  body .ttb-country-mega .ttb-country-col .ttb-country-link {
    grid-template-columns: 28px minmax(0, 1fr) 54px !important;
  }

}

body .ttb-country-mega .ttb-country-col .ttb-country-link + .ttb-country-link {
  margin-top: 3px !important;
}

body .ttb-country-mega .ttb-country-col h3 {
  margin-bottom: 12px !important;
}

body .ttb-country-mega .ttb-country-col .ttb-country-subhead {
  margin-top: 12px !important;
  margin-bottom: 9px !important;
}

body .ttb-country-mega .ttb-country-col .ttb-country-link:hover .country-name,
body .ttb-country-mega .ttb-country-col .ttb-country-link:focus .country-name {
  color: #0055b8 !important;
  font-size: 16px !important;
  font-weight: 400 !important;
}

body .ttb-country-mega .ttb-country-col {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

@media (max-width: 1360px) {
  body .ttb-country-mega .ttb-country-col .ttb-country-link {
    padding: 0 7px 0 2px !important;
  }

}

body .ttb-country-mega {
  width: min(1540px, calc(100vw - 36px)) !important;
}

body .ttb-country-mega .ttb-country-mega-inner {
  grid-template-columns: 1.18fr 1.16fr 1.12fr 1.14fr 1.04fr 1.04fr !important;
}

body .ttb-country-mega .ttb-country-col {
  padding: 16px 18px 19px !important;
}

body .ttb-country-mega .ttb-country-col .ttb-country-link {
  display: flex !important;
  align-items: center !important;
  min-height: 46px !important;
  height: 46px !important;
  margin: 2px 0 !important;
  padding: 0 6px 0 0 !important;
  gap: 8px !important;
  border-radius: 13px !important;
  line-height: 1.25 !important;
}

body .ttb-country-mega .ttb-country-col .ttb-country-link .country-flag {
  width: 31px !important;
  height: 31px !important;
  flex: 0 0 31px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  align-self: center !important;
}

body .ttb-country-mega .ttb-country-col .ttb-country-link .country-name {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  color: #17233b !important;
  letter-spacing: 0 !important;
  font-size: 16px !important;
  font-weight: 300 !important;
  line-height: 1.25 !important;
}

body .ttb-country-mega .ttb-country-col .ttb-country-link b {
  margin-left: auto !important;
  margin-right: 0 !important;
  width: 50px !important;
  min-width: 50px !important;
  max-width: 50px !important;
  height: 30px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  align-self: center !important;
  border-radius: 11px !important;
  font-size: 13.6px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

body .ttb-country-mega .ttb-country-col .ttb-country-link:hover,
body .ttb-country-mega .ttb-country-col .ttb-country-link:focus {
  min-height: 46px !important;
  height: 46px !important;
  padding: 0 6px 0 0 !important;
  background: #f3f8ff !important;
  color: #0055b8 !important;
  transform: none !important;
}

@media (max-width: 1360px) {
  body .ttb-country-mega .ttb-country-col .ttb-country-link {
    min-height: 42px !important;
    height: 42px !important;
    gap: 8px !important;
  }

  body .ttb-country-mega .ttb-country-col .ttb-country-link .country-flag {
    width: 28px !important;
    height: 28px !important;
    flex-basis: 28px !important;
  }

  body .ttb-country-mega .ttb-country-col .ttb-country-link .country-name {
    font-size: 15.8px !important;
  }

  body .ttb-country-mega .ttb-country-col .ttb-country-link b {
    width: 46px !important;
    min-width: 46px !important;
    max-width: 46px !important;
    height: 28px !important;
    font-size: 13px !important;
  }

}

body .ttb-country-mega .ttb-country-col h3 {
  margin: 0 0 15px !important;
  padding: 0 0 12px !important;
  border-bottom: 1px solid #e3ebf5 !important;
  color: #0b2d63 !important;
  font-size: 17.2px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  text-align: center !important;
  letter-spacing: 0 !important;
}

body .ttb-country-mega .ttb-country-col {
  padding-top: 18px !important;
}

@media (max-width: 1360px) {
  body .ttb-country-mega .ttb-country-col h3 {
    font-size: 16.2px !important;
    margin-bottom: 13px !important;
    padding-bottom: 10px !important;
  }

}

body .ttb-country-mega .ttb-country-col .ttb-country-subhead {
  margin: 14px 0 10px !important;
  padding-top: 12px !important;
  border-top: 1px solid #e3ebf5 !important;
  text-align: center !important;
  letter-spacing: 0 !important;
  font-size: 17.6px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  color: #0b2d63 !important;
}

@media (max-width: 1360px) {
  body .ttb-country-mega .ttb-country-col .ttb-country-subhead {
    font-size: 14.8px !important;
    margin-top: 13px !important;
    margin-bottom: 9px !important;
    padding-top: 11px !important;
  }

}

.tour-date-box.has-date-filter.period-collapsible:not(.period-expanded) .tour-date-table tbody tr.period-extra-desktop,
.tour-date-box.has-date-filter.period-collapsible:not(.period-expanded) .tour-date-table tbody tr.period-extra-mobile {
  display: table-row;
}

.tour-date-box.has-date-filter .tour-date-table tbody tr.is-date-filtered-out {
  display: none !important;
}

.tour-date-box.has-date-filter .period-toggle-wrap {
  border-top: 1px solid #e5f0ff;
}

.tour-date-box.has-date-filter .period-toggle-button[hidden] {
  display: none !important;
}

body .ttb-country-mega .menu-heading-pill,
body .ttb-country-mega .menu-heading-pill--sub {
  overflow: visible !important;
}

body .ttb-country-mega .menu-heading-real-icon,
body .ttb-country-mega .menu-heading-pill--sub .menu-heading-real-icon {
  display: block !important;
  object-fit: contain !important;
  border-radius: 50% !important;
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  max-width: 30px !important;
  transform: scale(1.65) !important;
  transform-origin: center center !important;
}

body .ttb-country-mega .menu-heading-pill {
  padding-left: 10px !important;
  padding-right: 15px !important;
}

body .ttb-country-mega .menu-heading-pill--sub {
  padding-left: 10px !important;
  padding-right: 14px !important;
}

body .ttb-country-mega .menu-heading-pill {
  min-height: 38px !important;
  padding: 6px 15px 6px 10px !important;
  gap: 10px !important;
}

body .ttb-country-mega .menu-heading-pill--sub {
  min-height: 37px !important;
  padding: 6px 14px 6px 10px !important;
  gap: 9px !important;
}

@media (max-width: 1360px) {
  body .ttb-country-mega .menu-heading-pill {
    min-height: 36px !important;
    padding: 5px 13px 5px 9px !important;
    gap: 8px !important;
  }

  body .ttb-country-mega .menu-heading-pill--sub {
    min-height: 35px !important;
    padding: 5px 12px 5px 9px !important;
    gap: 8px !important;
  }

  body .ttb-country-mega .menu-heading-real-icon,
body .ttb-country-mega .menu-heading-pill--sub .menu-heading-real-icon {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    max-width: 28px !important;
    transform: scale(1.55) !important;
  }

}

body .tour-price-panel {
  overflow: visible !important;
  min-height: 314px !important;
  padding-top: 34px !important;
  padding-bottom: 32px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

body .ttb-js-forced-primary,
body .ttb-js-forced-download,
body .tour-detail-button,
body .tour-download-button {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
  transform: translateZ(0) !important;
  transition: transform .22s ease, filter .22s ease !important;
}

body .ttb-js-forced-primary,
body .tour-detail-button.ttb-js-forced-primary {
  box-shadow: 0 8px 18px rgba(0,85,184,.15),
    0 0 0 2px rgba(0,108,216,.045) !important;
}

body .ttb-js-forced-download,
body .tour-download-button.ttb-js-forced-download {
  box-shadow: 0 0 8px rgba(0,85,184,.055),
    inset 0 0 6px rgba(0,108,216,.018) !important;
}

body .ttb-js-forced-primary:hover {
  transform: translateY(-2px) scale(1.006) !important;
  filter: saturate(1.05) !important;
}

body .ttb-js-forced-download:hover {
  transform: translateY(-1px) !important;
}

body :not(.tour-price-panel) > .ttb-js-forced-primary,
body :not(.tour-price-panel) > .ttb-js-forced-download,
body .sidebar-service-card .ttb-js-forced-primary,
body .sidebar-service-card .ttb-js-forced-download {
  animation: none !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

body .tour-price-panel .tour-detail-button.ttb-js-forced-primary,
body .tour-price-panel .tour-download-button.ttb-js-forced-download {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
}

.tour-date-box.has-date-filter .tour-date-table tbody tr.period-filter-extra-visible {
  display: table-row !important;
}

.tour-date-box.has-date-filter .period-toggle-button--complete {
  cursor: default !important;
  color: #52749c !important;
  border-color: #d5e6f8 !important;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
  box-shadow: none !important;
}

.tour-date-box.has-date-filter .period-toggle-button--complete .period-toggle-icon {
  opacity: .45 !important;
}

body [data-period-state="collapse"] {
  cursor: pointer !important;
  opacity: 1 !important;
}

body [data-period-state="collapse"]:hover {
  box-shadow: 0 8px 20px rgba(0, 86, 184, 0.12) !important;
}

body .period-toggle-button.period-toggle-button--complete {
  cursor: pointer !important;
  color: #0055b8 !important;
  border-color: #9cccfb !important;
  background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%) !important;
  box-shadow: 0 8px 20px rgba(0, 86, 184, 0.08) !important;
}

body .period-toggle-button.period-toggle-button--complete .period-toggle-icon {
  opacity: 1 !important;
}

body .period-toggle-button.period-toggle-button--arrow-up .period-toggle-icon {
  transform: rotate(180deg) !important;
}

body .period-toggle-button.period-toggle-button--arrow-up .period-toggle-icon::before {
  border-color: #0055b8 !important;
}

body .period-toggle-button.period-toggle-button--complete:hover {
  border-color: #3e98f0 !important;
  background: linear-gradient(180deg, #ffffff 0%, #edf6ff 100%) !important;
  box-shadow: 0 12px 24px rgba(0, 86, 184, 0.13) !important;
}

body .period-toggle-button.period-toggle-button--complete:hover .period-toggle-icon {
  background: #e5f2ff !important;
  border-color: #9cccfb !important;
}

body .tour-date-box.has-date-filter .period-toggle-button--complete {
  cursor: pointer !important;
  color: #0055b8 !important;
  border-color: #9cccfb !important;
  background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%) !important;
  box-shadow: 0 8px 20px rgba(0, 86, 184, 0.08) !important;
}

body .tour-date-box.has-date-filter .period-toggle-button--complete .period-toggle-icon {
  opacity: 1 !important;
}

body .tour-price-panel .tour-detail-button {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  margin-top: 18px !important;
  line-height: 1.15 !important;
  min-height: 60px !important;
}

body .tour-price-panel .tour-download-button {
  min-height: 54px !important;
  padding-top: 9px !important;
  padding-bottom: 9px !important;
  margin-top: 12px !important;
  line-height: 1.15 !important;
}

body .tour-price-panel .tour-detail-button span,
body .tour-price-panel .tour-download-button span {
  line-height: 1.12 !important;
}

body .tour-price-panel .tour-download-button i {
  flex-shrink: 0 !important;
}

@media (max-width: 1360px) {
  body .tour-price-panel {
    min-height: 300px !important;
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }

  body .tour-price-panel .tour-detail-button {
    margin-top: 14px !important;
  }

  body .tour-price-panel .tour-download-button {
    min-height: 50px !important;
    margin-top: 10px !important;
  }

}

@media (max-width: 900px) {
  body .tour-price-panel {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

}

@media (max-width: 1360px) {
  body .tour-price-panel .tour-detail-button {
    min-height: 56px !important;
  }

}

body .tour-price-panel .tour-detail-button,
body .tour-price-panel .tour-download-button {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

body .tour-price-panel .tour-detail-button::before,
body .tour-price-panel .tour-detail-button::after,
body .tour-price-panel .tour-download-button::before,
body .tour-price-panel .tour-download-button::after {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  animation: none !important;
  background: none !important;
  box-shadow: none !important;
}

body .tour-price-panel .tour-detail-button > *:not(.ttb-clean-cta-icon):not(.ttb-clean-cta-label):not(.ttb-clean-cta-arrow):not(.ttb-real-shine):not(.ttb-real-shine-static):not(.ttb-real-shine-move):not(.ttb-real-shine-download),
body .tour-price-panel .tour-download-button > *:not(.ttb-clean-cta-icon):not(.ttb-clean-cta-label):not(.ttb-clean-cta-arrow):not(.ttb-real-shine):not(.ttb-real-shine-static):not(.ttb-real-shine-move):not(.ttb-real-shine-download) {
  display: none !important;
}

body .tour-price-panel .ttb-clean-cta-icon,
body .tour-price-panel .ttb-clean-cta-label,
body .tour-price-panel .ttb-clean-cta-arrow {
  position: relative !important;
  z-index: 5 !important;
}

body .tour-price-panel .ttb-clean-cta-icon {
  grid-column: 1 !important;
  justify-self: start !important;
  align-self: center !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  line-height: 1 !important;
  flex: 0 0 auto !important;
}

body .tour-price-panel .ttb-clean-cta-label {
  grid-column: 2 !important;
  justify-self: center !important;
  align-self: center !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  display: block !important;
  text-align: center !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: clip !important;
  line-height: 1 !important;
}

body .tour-price-panel .ttb-clean-cta-arrow {
  grid-column: 3 !important;
  justify-self: end !important;
  align-self: center !important;
  line-height: 1 !important;
}

body .tour-price-panel .tour-download-button .ttb-clean-cta-icon {
  color: #ff263b !important;
}

@media (min-width: 1025px) {
  body .tour-price-panel .tour-detail-button,
body .tour-price-panel .tour-download-button {
    grid-template-columns: 28px minmax(0, 1fr) 18px !important;
    column-gap: 8px !important;
  }

}

@media (max-width: 1024px) {
  body .tour-price-panel .tour-detail-button,
body .tour-price-panel .tour-download-button {
    grid-template-columns: 15px minmax(0, 1fr) 8px !important;
    column-gap: 3px !important;
  }

  body .tour-price-panel .ttb-clean-cta-icon {
    width: 14px !important;
    min-width: 14px !important;
    height: 14px !important;
    font-size: 11px !important;
  }

  body .tour-price-panel .ttb-clean-cta-label {
    font-size: 8.9px !important;
    font-weight: 850 !important;
    letter-spacing: -0.075em !important;
  }

  body .tour-price-panel .ttb-clean-cta-arrow {
    font-size: 17px !important;
    font-weight: 800 !important;
  }

}

@media (min-width: 390px) and (max-width: 767px) {
  body .tour-price-panel .ttb-clean-cta-label {
    font-size: 9.6px !important;
    letter-spacing: -0.065em !important;
  }

}

@media (max-width: 380px) {
  body .tour-price-panel .tour-detail-button,
body .tour-price-panel .tour-download-button {
    grid-template-columns: 12px minmax(0, 1fr) 7px !important;
    column-gap: 2px !important;
    padding: 0 3px !important;
  }

  body .tour-price-panel .tour-download-button {
    grid-template-columns: 12px minmax(0, 1fr) 1px !important;
  }

  body .tour-price-panel .ttb-clean-cta-icon {
    width: 12px !important;
    min-width: 12px !important;
    font-size: 9px !important;
  }

  body .tour-price-panel .ttb-clean-cta-label {
    font-size: 7.8px !important;
    letter-spacing: -0.085em !important;
  }

  body .tour-price-panel .ttb-clean-cta-arrow {
    font-size: 15px !important;
  }

}

@media (min-width: 1025px) {
  body .tour-price-panel .tour-detail-button,
body .tour-price-panel .tour-download-button {
    position: relative !important;
    isolation: isolate !important;
    overflow: hidden !important;
    display: grid !important;
    align-items: center !important;
    justify-items: center !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 58px !important;
    min-height: 58px !important;
    max-height: 58px !important;
    padding: 0 12px !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    opacity: 1 !important;
    filter: none !important;
    white-space: nowrap !important;
    pointer-events: auto !important;
  }

  body .tour-price-panel .tour-detail-button {
    grid-template-columns: 24px minmax(0, 1fr) 18px !important;
    column-gap: 7px !important;
    color: #fff !important;
  }

  body .tour-price-panel .tour-download-button {
    border: 1px solid #6ca9ff !important;
    color: #004f9f !important;
  }

  body .tour-price-panel .tour-detail-button::before,
body .tour-price-panel .tour-detail-button::after,
body .tour-price-panel .tour-download-button::before,
body .tour-price-panel .tour-download-button::after {
    content: none !important;
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    animation: none !important;
    background: none !important;
    box-shadow: none !important;
  }

  body .tour-price-panel .tour-detail-button > *:not(.ttb-clean-cta-icon):not(.ttb-clean-cta-label):not(.ttb-clean-cta-arrow):not(.ttb-real-shine):not(.ttb-real-shine-static):not(.ttb-real-shine-move):not(.ttb-real-shine-download),
body .tour-price-panel .tour-download-button > *:not(.ttb-clean-cta-icon):not(.ttb-clean-cta-label):not(.ttb-clean-cta-arrow):not(.ttb-real-shine):not(.ttb-real-shine-static):not(.ttb-real-shine-move):not(.ttb-real-shine-download) {
    display: none !important;
  }

  body .tour-price-panel .ttb-clean-cta-icon,
body .tour-price-panel .ttb-clean-cta-label,
body .tour-price-panel .ttb-clean-cta-arrow {
    display: inline-flex !important;
    position: relative !important;
    z-index: 9 !important;
    opacity: 1 !important;
    filter: none !important;
    visibility: visible !important;
  }

  body .tour-price-panel .ttb-clean-cta-icon {
    grid-column: 1 !important;
    justify-self: start !important;
    align-self: center !important;
    width: 20px !important;
    min-width: 20px !important;
    height: 20px !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
    line-height: 1 !important;
    margin: 0 !important;
  }

  body .tour-price-panel .ttb-clean-cta-label {
    grid-column: 2 !important;
    justify-self: center !important;
    align-self: center !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    text-align: center !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 850 !important;
    letter-spacing: -0.055em !important;
    align-items: center !important;
    justify-content: center !important;
  }

  body .tour-price-panel .tour-download-button .ttb-clean-cta-label {
    color: #004f9f !important;
  }

  body .tour-price-panel .ttb-clean-cta-arrow {
    grid-column: 3 !important;
    justify-self: end !important;
    align-self: center !important;
    font-size: 24px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    align-items: center !important;
    justify-content: center !important;
  }

}

@media (min-width: 1360px) {
  body .tour-price-panel .ttb-clean-cta-label {
    font-size: 14px !important;
    letter-spacing: -0.045em !important;
  }

}

@media (min-width: 1025px) {
  body .tour-price-panel .tour-download-button {
    display: grid !important;
    grid-template-columns: 22px minmax(0, 1fr) !important;
    column-gap: 7px !important;
    align-items: center !important;
    justify-items: center !important;
    height: 58px !important;
    min-height: 58px !important;
    max-height: 58px !important;
    padding: 0 10px !important;
    white-space: normal !important;
    position: relative !important;
    overflow: hidden !important;
    isolation: isolate !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 50%, #ffffff 100%) !important;
    box-shadow: 0 8px 18px rgba(0, 91, 190, .08),
      inset 0 1px 0 rgba(255,255,255,.9) !important;
  }

  body .tour-price-panel .tour-download-button .ttb-clean-cta-label-download {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2px !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: visible !important;
    text-align: center !important;
    white-space: normal !important;
    font-size: 14px !important;
    line-height: 1.05 !important;
    font-weight: 850 !important;
    letter-spacing: -0.035em !important;
    color: #004f9f !important;
  }

  body .tour-price-panel .tour-download-button .ttb-clean-cta-label-download span {
    display: block !important;
    line-height: 1.05 !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
  }

  body .tour-price-panel .tour-download-button .ttb-clean-cta-icon {
    justify-self: start !important;
    width: 20px !important;
    min-width: 20px !important;
    font-size: 16px !important;
    color: #ff263b !important;
  }

  body .tour-price-panel .tour-detail-button {
    position: relative !important;
    overflow: hidden !important;
    isolation: isolate !important;
    background: linear-gradient(135deg, #0a7df0 0%, #0068d6 42%, #0054ad 100%) !important;
    border: 1px solid rgba(0, 93, 190, .65) !important;
    box-shadow: 0 12px 24px rgba(0, 91, 190, .24),
      inset 0 1px 0 rgba(255, 255, 255, .28) !important;
  }

  body .tour-price-panel .tour-detail-button::before {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    z-index: 1 !important;
    top: -55% !important;
    left: -75% !important;
    width: 55% !important;
    height: 210% !important;
    opacity: .42 !important;
    visibility: visible !important;
    pointer-events: none !important;
    background: linear-gradient(
      115deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,.18) 38%,
      rgba(255,255,255,.45) 50%,
      rgba(255,255,255,.14) 62%,
      rgba(255,255,255,0) 100%
    ) !important;
    transform: rotate(12deg) translateX(0) !important;
    animation: ttbDesktopCtaShine 3.2s ease-in-out infinite !important;
    box-shadow: none !important;
  }

  body .tour-price-panel .tour-detail-button::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    z-index: 1 !important;
    inset: 0 !important;
    opacity: .70 !important;
    visibility: visible !important;
    pointer-events: none !important;
    background: radial-gradient(circle at 20% 10%, rgba(255,255,255,.28), rgba(255,255,255,0) 38%),
      linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,0) 45%) !important;
    animation: none !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.25) !important;
  }

  body .tour-price-panel .tour-detail-button:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 15px 28px rgba(0, 91, 190, .30),
      inset 0 1px 0 rgba(255,255,255,.32) !important;
  }

  body .tour-price-panel .tour-detail-button .ttb-clean-cta-icon,
body .tour-price-panel .tour-detail-button .ttb-clean-cta-label,
body .tour-price-panel .tour-detail-button .ttb-clean-cta-arrow {
    position: relative !important;
    z-index: 5 !important;
    color: #fff !important;
    opacity: 1 !important;
    filter: none !important;
  }

  body .tour-price-panel .tour-detail-button .ttb-clean-cta-label {
    font-size: 15px !important;
    letter-spacing: -0.035em !important;
  }

  body .tour-price-panel .tour-detail-button .ttb-clean-cta-arrow {
    font-size: 28px !important;
  }

  body .tour-price-panel .tour-download-button::before {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    z-index: 1 !important;
    inset: 0 !important;
    opacity: .9 !important;
    visibility: visible !important;
    pointer-events: none !important;
    background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(230,243,255,.85) 48%, rgba(255,255,255,0) 100%) !important;
    transform: translateX(-130%) !important;
    animation: ttbDesktopDownloadSoftShine 4.2s ease-in-out infinite !important;
    box-shadow: none !important;
  }

  body .tour-price-panel .tour-download-button::after {
    content: "" !important;
    display: none !important;
  }

  body .tour-price-panel .tour-download-button .ttb-clean-cta-icon,
body .tour-price-panel .tour-download-button .ttb-clean-cta-label {
    position: relative !important;
    z-index: 5 !important;
  }

}

@keyframes ttbDesktopCtaShine {
  0%,
18% {
    transform: rotate(12deg) translateX(0);
  }

  52%,
100% {
    transform: rotate(12deg) translateX(330%);
  }

}

@keyframes ttbDesktopDownloadSoftShine {
  0%,
34% {
    transform: translateX(-130%);
  }

  64%,
100% {
    transform: translateX(130%);
  }

}

@media (min-width: 1025px) {
  html body .tour-price-panel .tour-detail-button,
html body .tour-price-panel a.tour-detail-button,
html body .tour-price-panel button.tour-detail-button {
    display: grid !important;
    grid-template-columns: 24px minmax(0, 1fr) 22px !important;
    column-gap: 8px !important;
    align-items: center !important;
    justify-items: center !important;
    height: 58px !important;
    min-height: 58px !important;
    max-height: 58px !important;
    padding: 0 14px !important;
    border-radius: 14px !important;
    color: #ffffff !important;
    opacity: 1 !important;
    filter: none !important;
    text-decoration: none !important;
    border: 1px solid rgba(0, 91, 190, .72) !important;
  }

  html body .tour-price-panel .tour-detail-button::before,
html body .tour-price-panel a.tour-detail-button::before,
html body .tour-price-panel button.tour-detail-button::before {
    position: absolute !important;
    z-index: 2 !important;
    top: -65% !important;
    left: -95% !important;
    width: 72% !important;
    height: 240% !important;
    opacity: .72 !important;
    visibility: visible !important;
    pointer-events: none !important;
    background: linear-gradient(
      115deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,.05) 28%,
      rgba(255,255,255,.34) 43%,
      rgba(255,255,255,.78) 50%,
      rgba(255,255,255,.32) 58%,
      rgba(255,255,255,.06) 72%,
      rgba(255,255,255,0) 100%
    ) !important;
    transform: rotate(13deg) translateX(0) !important;
    box-shadow: none !important;
  }

  html body .tour-price-panel .tour-detail-button::after,
html body .tour-price-panel a.tour-detail-button::after,
html body .tour-price-panel button.tour-detail-button::after {
    animation: ttbCtaForceGlow 3.8s ease-in-out infinite !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-clean-cta-icon {
    grid-column: 1 !important;
    justify-self: start !important;
    align-items: center !important;
    justify-content: center !important;
    width: 22px !important;
    min-width: 22px !important;
    height: 22px !important;
    font-size: 17px !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-clean-cta-label {
    grid-column: 2 !important;
    justify-self: center !important;
    width: 100% !important;
    min-width: 0 !important;
    overflow: visible !important;
    text-overflow: clip !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-clean-cta-arrow {
    grid-column: 3 !important;
    justify-self: end !important;
    align-items: center !important;
    justify-content: center !important;
  }

  html body .tour-price-panel .tour-download-button::before {
    transform: translateX(-120%) !important;
  }

  html body .tour-price-panel .tour-download-button::after {
    content: none !important;
    display: none !important;
  }

}

@keyframes ttbCtaForceShine {
  0%,
14% {
    transform: rotate(13deg) translateX(0);
  }

  45%,
100% {
    transform: rotate(13deg) translateX(335%);
  }

}

@keyframes ttbCtaForceGlow {
  0%,
100% {
    opacity: .88;
  }

  50% {
    opacity: 1;
  }

}

@keyframes ttbDownloadForceShine {
  0%,
35% {
    transform: translateX(-120%);
  }

  68%,
100% {
    transform: translateX(120%);
  }

}

@media (min-width: 1025px) {
  html body .tour-price-panel .tour-detail-button::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    z-index: 1 !important;
    inset: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: none !important;
    background: linear-gradient(110deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0) 28%,
        rgba(255,255,255,.24) 41%,
        rgba(255,255,255,.42) 50%,
        rgba(255,255,255,.18) 59%,
        rgba(255,255,255,0) 72%,
        rgba(255,255,255,0) 100%
      ),
      radial-gradient(circle at 22% 8%, rgba(255,255,255,.35), rgba(255,255,255,0) 34%),
      linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,0) 46%) !important;
    transform: none !important;
    animation: none !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.42),
      inset 0 0 18px rgba(255,255,255,.10) !important;
  }

  html body .tour-price-panel .tour-detail-button::before {
    position: absolute !important;
    z-index: 2 !important;
    top: -80% !important;
    left: -80% !important;
    width: 45% !important;
    height: 260% !important;
    opacity: .58 !important;
    visibility: visible !important;
    pointer-events: none !important;
    background: linear-gradient(
      115deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,.10) 30%,
      rgba(255,255,255,.85) 50%,
      rgba(255,255,255,.12) 70%,
      rgba(255,255,255,0) 100%
    ) !important;
    transform: rotate(14deg) translateX(0);
    box-shadow: none !important;
  }

  html body .tour-detail-button:hover::after {
    background: linear-gradient(110deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,.05) 28%,
        rgba(255,255,255,.34) 41%,
        rgba(255,255,255,.52) 50%,
        rgba(255,255,255,.24) 59%,
        rgba(255,255,255,0) 72%,
        rgba(255,255,255,0) 100%
      ),
      radial-gradient(circle at 22% 8%, rgba(255,255,255,.40), rgba(255,255,255,0) 34%),
      linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,0) 46%) !important;
  }

  html body .tour-price-panel .tour-download-button::before {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    z-index: 1 !important;
    inset: 0 !important;
    opacity: .88 !important;
    visibility: visible !important;
    pointer-events: none !important;
    background: linear-gradient(110deg,
        rgba(255,255,255,0) 0%,
        rgba(218,239,255,.70) 50%,
        rgba(255,255,255,0) 100%
      ) !important;
    transform: translateX(-110%);
    animation: ttbDesktopDownloadVisibleShine 4s ease-in-out infinite !important;
    box-shadow: none !important;
  }

  html body .tour-price-panel .tour-download-button .ttb-clean-cta-icon,
html body .tour-price-panel .tour-download-button .ttb-clean-cta-label {
    position: relative !important;
    z-index: 5 !important;
  }

}

@keyframes ttbDesktopCtaVisibleShine {
  0%,
18% {
    transform: rotate(14deg) translateX(0);
  }

  56%,
100% {
    transform: rotate(14deg) translateX(420%);
  }

}

@keyframes ttbDesktopDownloadVisibleShine {
  0%,
36% {
    transform: translateX(-110%);
  }

  68%,
100% {
    transform: translateX(110%);
  }

}

@media (min-width: 1025px) {
  html body .tour-price-panel .tour-detail-button::before,
html body .tour-price-panel .tour-detail-button::after,
html body .tour-price-panel .tour-download-button::before,
html body .tour-price-panel .tour-download-button::after {
    content: none !important;
    display: none !important;
  }

  html body .tour-price-panel .ttb-real-shine {
    position: absolute !important;
    pointer-events: none !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2 !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-clean-cta-icon,
html body .tour-price-panel .tour-detail-button .ttb-clean-cta-label,
html body .tour-price-panel .tour-detail-button .ttb-clean-cta-arrow {
    display: inline-flex !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-clean-cta-label {
    align-items: center !important;
    justify-content: center !important;
  }

}

@keyframes ttbRealSpanCtaShine {
  0%,
16% {
    transform: rotate(14deg) translateX(0);
  }

  55%,
100% {
    transform: rotate(14deg) translateX(430%);
  }

}

@keyframes ttbRealSpanDownloadShine {
  0%,
36% {
    transform: translateX(-110%);
  }

  68%,
100% {
    transform: translateX(110%);
  }

}

@media (min-width: 1025px) {
  html body .tour-price-panel .tour-detail-button,
html body .tour-price-panel .tour-download-button {
    will-change: transform, box-shadow !important;
    transform: translateZ(0) !important;
    transition: transform .22s cubic-bezier(.2,.75,.25,1),
      box-shadow .22s cubic-bezier(.2,.75,.25,1),
      border-color .22s ease,
      background .22s ease !important;
  }

  html body .tour-price-panel .tour-detail-button {
    position: relative !important;
    isolation: isolate !important;
    overflow: hidden !important;
    display: grid !important;
    grid-template-columns: 24px minmax(0, 1fr) 22px !important;
    column-gap: 8px !important;
    align-items: center !important;
    justify-items: center !important;
    height: 58px !important;
    min-height: 58px !important;
    max-height: 58px !important;
    padding: 0 14px !important;
    border-radius: 14px !important;
    color: #ffffff !important;
    text-decoration: none !important;
    background: linear-gradient(135deg, #0f8cff 0%, #006edc 43%, #004fa8 100%) !important;
    border: 1px solid rgba(0, 86, 180, .78) !important;
    box-shadow: 0 13px 26px rgba(0, 83, 180, .26),
      0 0 0 1px rgba(255,255,255,.18) inset,
      inset 0 1px 0 rgba(255,255,255,.42),
      inset 0 -18px 28px rgba(0,46,116,.20) !important;
  }

  html body .tour-price-panel .ttb-real-shine-static,
html body .tour-price-panel .ttb-real-shine-move,
html body .tour-price-panel .ttb-real-shine-download {
    position: absolute !important;
    pointer-events: none !important;
    display: block !important;
    visibility: visible !important;
    z-index: 2 !important;
  }

  html body .tour-price-panel .ttb-real-shine-static {
    box-shadow: inset 0 1px 0 rgba(255,255,255,.42),
      inset 0 0 18px rgba(255,255,255,.12) !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-clean-cta-icon,
html body .tour-price-panel .tour-detail-button .ttb-clean-cta-label,
html body .tour-price-panel .tour-detail-button .ttb-clean-cta-arrow {
    color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
    text-shadow: 0 1px 2px rgba(0, 38, 100, .35) !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-clean-cta-label {
    font-size: 15px !important;
    font-weight: 850 !important;
    letter-spacing: -0.035em !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-clean-cta-arrow {
    font-size: 30px !important;
    font-weight: 850 !important;
    line-height: 1 !important;
    transition: transform .22s cubic-bezier(.2,.75,.25,1) !important;
  }

  html body .tour-price-panel .tour-detail-button:hover {
    background: linear-gradient(135deg, #1696ff 0%, #0077ea 43%, #005bbb 100%) !important;
    border-color: rgba(0, 106, 220, .92) !important;
  }

  html body .tour-price-panel .tour-detail-button:hover .ttb-clean-cta-arrow {
    transform: translateX(3px) !important;
  }

  html body .tour-price-panel .tour-download-button {
    position: relative !important;
    isolation: isolate !important;
    overflow: hidden !important;
    background: linear-gradient(135deg, #ffffff 0%, #f7fbff 58%, #ffffff 100%) !important;
    border-color: rgba(74, 150, 255, .64) !important;
    box-shadow: 0 7px 16px rgba(0, 83, 180, .08),
      inset 0 1px 0 rgba(255,255,255,.92) !important;
  }

  html body .tour-price-panel .ttb-real-shine-download {
    inset: 0 !important;
    opacity: .76 !important;
    background: linear-gradient(110deg,
      rgba(255,255,255,0) 0%,
      rgba(219,239,255,.70) 49%,
      rgba(255,255,255,0) 100%) !important;
    transform: translateX(-115%);
    animation: ttbNew2DesktopDownloadShine 4.4s ease-in-out infinite !important;
  }

  html body .tour-price-panel .tour-download-button .ttb-clean-cta-icon,
html body .tour-price-panel .tour-download-button .ttb-clean-cta-label,
html body .tour-price-panel .tour-download-button .ttb-clean-cta-label-download {
    position: relative !important;
    z-index: 5 !important;
  }

  html body .tour-price-panel .tour-download-button:hover {
    transform: translateY(-1px) translateZ(0) !important;
    border-color: rgba(0, 105, 220, .78) !important;
    box-shadow: 0 10px 20px rgba(0, 83, 180, .12),
      inset 0 1px 0 rgba(255,255,255,.95) !important;
  }

}

@keyframes ttbNew2DesktopDetailShine {
  0%,
18% {
    transform: rotate(14deg) translateX(0);
  }

  58%,
100% {
    transform: rotate(14deg) translateX(445%);
  }

}

@keyframes ttbNew2DesktopDownloadShine {
  0%,
42% {
    transform: translateX(-115%);
  }

  72%,
100% {
    transform: translateX(115%);
  }

}

@media (min-width: 1025px) and (prefers-reduced-motion: reduce) {
  html body .tour-price-panel .ttb-real-shine-move,
html body .tour-price-panel .ttb-real-shine-download {
    animation: none !important;
  }

}

@media (min-width: 1025px) {
  html body .tour-price-panel .tour-detail-button::before {
    content: none !important;
    display: none !important;
    animation: none !important;
  }

}

@keyframes ttbNew2CtaFullWidthShine {
  0%,
16% {
    transform: rotate(13deg) translate3d(0,0,0) !important;
  }

  62%,
100% {
    transform: rotate(13deg) translate3d(265%,0,0) !important;
  }

}

@media (min-width: 1025px) {
  html body .tour-price-panel .tour-detail-button .ttb-real-shine-move,
html body .tour-price-panel a.tour-detail-button .ttb-real-shine-move,
html body .tour-price-panel button.tour-detail-button .ttb-real-shine-move {
    display: block !important;
    visibility: visible !important;
    position: absolute !important;
    pointer-events: none !important;
    z-index: 3 !important;
    top: -95% !important;
    left: -70% !important;
    width: 92% !important;
    height: 305% !important;
    opacity: .68 !important;
    border-radius: 999px !important;
    background: linear-gradient(115deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,.05) 23%,
      rgba(255,255,255,.32) 40%,
      rgba(255,255,255,.88) 50%,
      rgba(255,255,255,.34) 60%,
      rgba(255,255,255,.05) 77%,
      rgba(255,255,255,0) 100%) !important;
    filter: blur(.12px) !important;
    transform: rotate(13deg) !important;
    translate: -95% 0;
    animation: ttbNew2CtaTrueMovingShine 2.75s cubic-bezier(.42,0,.18,1) infinite !important;
    will-change: translate, opacity !important;
  }

  html body .tour-price-panel .tour-detail-button:hover .ttb-real-shine-move,
html body .tour-price-panel a.tour-detail-button:hover .ttb-real-shine-move,
html body .tour-price-panel button.tour-detail-button:hover .ttb-real-shine-move {
    opacity: .78 !important;
    animation-duration: 1.95s !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-clean-cta-icon,
html body .tour-price-panel .tour-detail-button .ttb-clean-cta-label,
html body .tour-price-panel .tour-detail-button .ttb-clean-cta-arrow {
    position: relative !important;
    z-index: 6 !important;
  }

}

@keyframes ttbNew2CtaTrueMovingShine {
  0%,
14% {
    translate: -95% 0;
  }

  56%,
100% {
    translate: 295% 0;
  }

}

@media (min-width: 1025px) and (prefers-reduced-motion: reduce) {
  html body .tour-price-panel .tour-detail-button .ttb-real-shine-move {
    animation: none !important;
    translate: 120% 0;
  }

}

@media (min-width: 1025px) {
  .mobile-menu-overlay,
.mobile-menu-panel {
    display: none !important;
  }

}

@media (max-width: 900px) {
  body.mobile-menu-open {
    overflow: hidden !important;
  }

  body .top-bar,
body .main-menu-bar,
body .main-menu-inner,
body .header-info,
body .ttb-country-mega {
    display: none !important;
  }

  body .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 900 !important;
    background: #fff !important;
    box-shadow: 0 8px 18px rgba(0, 70, 150, .08) !important;
  }

  body .site-header .header-main,
body .container.header-main {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 68px !important;
    height: 68px !important;
    padding: 8px 58px !important;
    margin: 0 !important;
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  body .site-header .brand {
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    min-width: 0 !important;
  }

  body .site-header .brand-logo {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    margin: 0 !important;
    border-radius: 12px !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body .site-header .brand-logo img {
    width: 42px !important;
    height: 42px !important;
    object-fit: contain !important;
  }

  body .site-header .brand-title {
    font-size: 18px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    color: #00458f !important;
    margin: 0 !important;
  }

  body .site-header .brand-sub {
    display: none !important;
  }

  body .mobile-menu-toggle {
    position: absolute !important;
    left: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 42px !important;
    height: 42px !important;
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    border: 0 !important;
    background: transparent !important;
    padding: 0 !important;
    z-index: 4 !important;
  }

  body .mobile-menu-toggle span {
    width: 25px !important;
    height: 3px !important;
    border-radius: 999px !important;
    background: #071832 !important;
    margin: 0 !important;
    display: block !important;
  }

  body .mobile-menu-overlay {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(6, 16, 32, .62) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    display: block !important;
    z-index: 980 !important;
    transition: opacity .24s ease, visibility .24s ease !important;
  }

  body .mobile-menu-panel {
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: min(88vw, 390px) !important;
    max-width: 390px !important;
    display: block !important;
    background: #fff !important;
    z-index: 990 !important;
    transform: translateX(-102%) !important;
    transition: transform .28s ease !important;
    overflow-y: auto !important;
    padding: 22px 18px 24px !important;
    box-shadow: 14px 0 42px rgba(0, 0, 0, .22) !important;
    border-radius: 0 !important;
  }

  body.mobile-menu-open .mobile-menu-overlay {
    opacity: 1 !important;
    visibility: visible !important;
  }

  body.mobile-menu-open .mobile-menu-panel {
    transform: translateX(0) !important;
  }

  body .mobile-menu-head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 0 18px !important;
    margin: 0 0 18px !important;
    border-bottom: 1px solid rgba(0, 86, 184, .10) !important;
  }

  body .mobile-menu-head img {
    width: 82px !important;
    height: auto !important;
    object-fit: contain !important;
  }

  body .mobile-menu-head button {
    width: 46px !important;
    height: 46px !important;
    border-radius: 999px !important;
    border: 0 !important;
    background: #eef6ff !important;
    color: #0056b8 !important;
    font-size: 26px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  body .mobile-auth-row,
body .mobile-lang-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    margin: 0 0 12px !important;
  }

  body .mobile-auth-row a,
body .mobile-lang-row a {
    height: 42px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(0, 86, 184, .18) !important;
    background: #fff !important;
    color: #00458f !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: none !important;
  }

  body .mobile-auth-row a:first-child,
body .mobile-lang-row a.is-active,
body .mobile-lang-row a:first-child {
    background: linear-gradient(135deg, #006bd6, #004a9d) !important;
    color: #fff !important;
    border-color: transparent !important;
  }

  body .ttb-mobile-clean-nav {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    margin-top: 18px !important;
  }

  body .ttb-mobile-menu-item,
body .mobile-submenu-toggle.ttb-mobile-menu-item {
    width: 100% !important;
    min-height: 46px !important;
    border: 1px solid rgba(0, 86, 184, .13) !important;
    border-radius: 11px !important;
    background: #fff !important;
    color: #071832 !important;
    text-decoration: none !important;
    display: grid !important;
    grid-template-columns: 28px 1fr 18px !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 0 13px !important;
    text-align: left !important;
    box-shadow: none !important;
  }

  body .ttb-mobile-menu-item i,
body .mobile-submenu-toggle.ttb-mobile-menu-item i {
    color: #006bd6 !important;
    text-align: center !important;
  }

  body .ttb-mobile-menu-item b,
body .mobile-submenu-toggle.ttb-mobile-menu-item b {
    color: #071832 !important;
    text-align: right !important;
  }

  body .mobile-submenu-toggle.ttb-mobile-menu-item.is-open {
    border-radius: 11px 11px 0 0 !important;
    background: #f7fbff !important;
    border-bottom-color: transparent !important;
  }

  body .mobile-submenu-toggle.ttb-mobile-menu-item.is-open b {
    transform: rotate(0deg) !important;
  }

  body .ttb-mobile-zone-menu {
    display: none !important;
    margin-top: -8px !important;
    padding: 8px 12px 12px !important;
    border: 1px solid rgba(0, 86, 184, .13) !important;
    border-top: 0 !important;
    border-radius: 0 0 13px 13px !important;
    background: #fff !important;
  }

  body .ttb-mobile-zone-menu.is-open {
    display: block !important;
  }

  body .ttb-mobile-zone {
    padding: 9px 0 !important;
    border-top: 1px solid rgba(0, 86, 184, .08) !important;
  }

  body .ttb-mobile-zone:first-child {
    border-top: 0 !important;
  }

  body .ttb-mobile-zone-head {
    display: flex !important;
    justify-content: space-between !important;
    margin-bottom: 7px !important;
  }

  body .ttb-mobile-zone-head strong {
    color: #00458f !important;
  }

  body .ttb-mobile-zone-head a {
    color: #006bd6 !important;
    text-decoration: none !important;
  }

  body .ttb-mobile-country-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px 12px !important;
  }

  body .ttb-mobile-country-grid a {
    min-width: 0 !important;
    color: #334155 !important;
    text-decoration: none !important;
    font-size: 13px !important;
    font-weight: 650 !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
  }

  body .ttb-mobile-country-grid a span {
    width: 20px !important;
    min-width: 20px !important;
    text-align: center !important;
  }

  body .ttb-mobile-clean-contact {
    margin-top: 18px !important;
    border-radius: 16px !important;
    background: #eaf4ff !important;
    padding: 16px !important;
    color: #667085 !important;
    display: grid !important;
    gap: 6px !important;
    position: relative !important;
  }

  body .ttb-mobile-clean-contact strong {
    color: #00458f !important;
    font-size: 20px !important;
    font-weight: 950 !important;
  }

  body .ttb-mobile-clean-contact p {
    margin: 0 !important;
    font-size: 14px !important;
    color: #667085 !important;
  }

  body .ttb-mobile-clean-contact i {
    position: absolute !important;
    right: 16px !important;
    bottom: 16px !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 999px !important;
    background: #d8ebff !important;
    color: #006bd6 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
  }

}

@media (max-width: 380px) {
  body .site-header .brand-title {
    font-size: 16px !important;
  }

  body .site-header .brand-logo,
body .site-header .brand-logo img {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
  }

  body .mobile-menu-panel {
    width: 90vw !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  body .ttb-mobile-country-grid {
    gap: 7px 8px !important;
  }

  body .ttb-mobile-country-grid a {
    font-size: 12px !important;
  }

}

@media (max-width: 900px) {
  body .ttb-mobile-zone--featured {
    padding-top: 11px !important;
    padding-bottom: 12px !important;
  }

  body .ttb-mobile-zone--featured .ttb-mobile-zone-head {
    margin-bottom: 9px !important;
  }

  body .ttb-mobile-zone--featured .ttb-mobile-zone-head strong {
    font-size: 15px !important;
  }

  body .ttb-mobile-country-grid--full {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px 10px !important;
  }

  body .ttb-mobile-country-grid--full a,
body .ttb-mobile-country-grid a {
    min-height: 38px !important;
    border-radius: 12px !important;
    background: #eaf4ff !important;
    border: 1px solid rgba(0, 86, 184, .08) !important;
    padding: 7px 10px !important;
    color: #1f334d !important;
    font-weight: 800 !important;
  }

  body .ttb-mobile-country-grid--full a span,
body .ttb-mobile-country-grid a span {
    width: 24px !important;
    min-width: 24px !important;
    height: 24px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 17px !important;
    border-radius: 999px !important;
    background: #fff !important;
    box-shadow: 0 2px 6px rgba(0, 64, 130, .06) !important;
  }

  body .ttb-mobile-zone-head a {
    min-height: 34px !important;
    padding: 0 12px !important;
    border-radius: 999px !important;
    background: #eaf4ff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(0, 86, 184, .08) !important;
  }

}

@media (max-width: 380px) {
  body .ttb-mobile-country-grid--full,
body .ttb-mobile-country-grid {
    grid-template-columns: 1fr !important;
  }

}

@media (max-width: 900px) {
  body .ttb-mobile-country-grid a {
    display: grid !important;
    grid-template-columns: 34px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 10px !important;
    min-height: 42px !important;
    padding: 7px 12px !important;
    border-radius: 13px !important;
    background: #eaf4ff !important;
    border: 1px solid rgba(0, 86, 184, .08) !important;
    overflow: hidden !important;
  }

  body .ttb-mobile-country-grid a .ttb-menu-flag-icon {
    width: 30px !important;
    min-width: 30px !important;
    height: 30px !important;
    border-radius: 999px !important;
    background: #fff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    box-shadow: 0 2px 6px rgba(0, 64, 130, .08),
      inset 0 0 0 1px rgba(0, 86, 184, .08) !important;
  }

  body .ttb-mobile-country-grid a .ttb-menu-flag-icon img {
    width: 30px !important;
    height: 30px !important;
    display: block !important;
    object-fit: cover !important;
    border-radius: 999px !important;
  }

  body .ttb-mobile-country-grid a .ttb-menu-country-name {
    min-width: 0 !important;
    width: 100% !important;
    color: #1f334d !important;
    font-weight: 850 !important;
    font-size: 14px !important;
    line-height: 1.15 !important;
    text-align: right !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    height: auto !important;
  }

  body .ttb-mobile-country-grid a > span:not(.ttb-menu-flag-icon):not(.ttb-menu-country-name) {
    width: auto !important;
    min-width: 0 !important;
    height: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }

}

@media (max-width: 380px) {
  body .ttb-mobile-country-grid a {
    grid-template-columns: 32px minmax(0, 1fr) !important;
  }

  body .ttb-mobile-country-grid a .ttb-menu-country-name {
    font-size: 13px !important;
  }

}

@media (max-width: 900px) {
  body .ttb-mobile-domestic-menu .ttb-mobile-zone-head strong {
    font-size: 15px !important;
  }

  body .ttb-mobile-domestic-grid a {
    display: grid !important;
    grid-template-columns: 34px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 10px !important;
    min-height: 42px !important;
    padding: 7px 12px !important;
    border-radius: 13px !important;
    background: #eaf4ff !important;
    border: 1px solid rgba(0, 86, 184, .08) !important;
    overflow: hidden !important;
  }

  body .ttb-mobile-domestic-grid a .ttb-domestic-icon {
    width: 30px !important;
    min-width: 30px !important;
    height: 30px !important;
    border-radius: 999px !important;
    background: #fff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 17px !important;
    box-shadow: 0 2px 6px rgba(0, 64, 130, .08),
      inset 0 0 0 1px rgba(0, 86, 184, .08) !important;
  }

  body .ttb-mobile-domestic-menu {
    display: none !important;
    margin-top: -8px !important;
    padding: 8px 12px 12px !important;
    border: 1px solid rgba(0, 86, 184, .13) !important;
    border-top: 0 !important;
    border-radius: 0 0 13px 13px !important;
    background: #fff !important;
  }

  body .ttb-mobile-domestic-menu.is-open {
    display: block !important;
  }

  body .ttb-domestic-toggle.is-open {
    border-radius: 11px 11px 0 0 !important;
    background: #f7fbff !important;
    border-bottom-color: transparent !important;
  }

  body .ttb-mobile-domestic-grid a .ttb-menu-country-name {
    min-width: 0 !important;
    width: 100% !important;
    color: #1f334d !important;
    font-weight: 850 !important;
    font-size: 14px !important;
    line-height: 1.15 !important;
    text-align: right !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    height: auto !important;
  }

  body .mobile-submenu-toggle.ttb-mobile-menu-item {
    cursor: pointer !important;
  }

  body .mobile-submenu-toggle.ttb-mobile-menu-item:not(.is-open) + .mobile-submenu {
    display: none !important;
  }

  body .mobile-submenu-toggle.ttb-mobile-menu-item.is-open + .mobile-submenu {
    display: block !important;
  }

  body .mobile-submenu-toggle.ttb-mobile-menu-item b {
    transition: transform .18s ease !important;
  }

  body .mobile-submenu-toggle.ttb-mobile-menu-item:not(.is-open) + .mobile-submenu,
body .ttb-mobile-zone-menu:not(.is-open),
body .ttb-mobile-domestic-menu:not(.is-open) {
    display: none !important;
  }

  body .mobile-submenu-toggle.ttb-mobile-menu-item.is-open + .mobile-submenu,
body .ttb-mobile-zone-menu.is-open,
body .ttb-mobile-domestic-menu.is-open {
    display: block !important;
  }

  body .ttb-mobile-menu-item,
body .mobile-submenu-toggle.ttb-mobile-menu-item {
    font-size: 17px !important;
    font-weight: 800 !important;
    letter-spacing: -0.01em !important;
  }

  body .ttb-mobile-menu-item span,
body .mobile-submenu-toggle.ttb-mobile-menu-item span {
    font-weight: 800 !important;
  }

  body .ttb-mobile-menu-item i,
body .mobile-submenu-toggle.ttb-mobile-menu-item i {
    font-size: 17px !important;
  }

}

@media (max-width: 380px) {
  body .ttb-mobile-menu-item,
body .mobile-submenu-toggle.ttb-mobile-menu-item {
    font-size: 16px !important;
    font-weight: 800 !important;
  }

  body .mobile-auth-row a,
body .mobile-lang-row a {
    font-size: 14px !important;
  }

}

@media (max-width: 900px) {
  body .ttb-mobile-menu-item,
body .mobile-submenu-toggle.ttb-mobile-menu-item,
body .ttb-mobile-menu-item span,
body .mobile-submenu-toggle.ttb-mobile-menu-item span {
    font-size: 16px !important;
    font-weight: 500 !important;
    letter-spacing: -0.005em !important;
  }

  body .ttb-mobile-menu-item b,
body .mobile-submenu-toggle.ttb-mobile-menu-item b {
    font-size: 16px !important;
    font-weight: 500 !important;
  }

  body .ttb-mobile-country-grid a .ttb-menu-country-name,
body .ttb-mobile-domestic-grid a .ttb-menu-country-name {
    font-size: 16px !important;
    font-weight: 500 !important;
    letter-spacing: -0.005em !important;
    line-height: 1.15 !important;
  }

  body .mobile-auth-row a,
body .mobile-lang-row a {
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: -0.005em !important;
  }

  body .ttb-mobile-clean-contact strong,
body .mobile-contact-card strong {
    font-size: 20px !important;
    font-weight: 600 !important;
  }

  body .ttb-mobile-clean-contact p,
body .mobile-contact-card p {
    font-size: 14px !important;
    font-weight: 400 !important;
  }

}

@media (max-width: 380px) {
  body .ttb-mobile-menu-item,
body .mobile-submenu-toggle.ttb-mobile-menu-item,
body .ttb-mobile-menu-item span,
body .mobile-submenu-toggle.ttb-mobile-menu-item span {
    font-size: 15px !important;
    font-weight: 500 !important;
  }

  body .ttb-mobile-country-grid a .ttb-menu-country-name,
body .ttb-mobile-domestic-grid a .ttb-menu-country-name {
    font-size: 15px !important;
    font-weight: 500 !important;
  }

}

@media (max-width: 900px) {
  body .ttb-mobile-zone-head strong {
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: -0.005em !important;
    line-height: 1.2 !important;
    min-width: 0 !important;
  }

  body .ttb-mobile-zone-head a {
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: -0.005em !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  body .ttb-mobile-zone-head {
    align-items: center !important;
    gap: 10px !important;
  }

}

@media (max-width: 380px) {
  body .ttb-mobile-zone-head strong,
body .ttb-mobile-zone-head a {
    font-size: 13px !important;
    font-weight: 600 !important;
  }

}

@media (max-width: 900px) {
  body .ttb-mobile-clean-contact .ttb-mobile-contact-icon,
body .mobile-contact-card .ttb-mobile-contact-icon {
    position: absolute !important;
    right: 16px !important;
    bottom: 16px !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 999px !important;
    display: block !important;
    object-fit: contain !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body .ttb-mobile-clean-contact i,
body .mobile-contact-card i {
    display: none !important;
  }

}

@media (max-width: 380px) {
  body .ttb-mobile-clean-contact .ttb-mobile-contact-icon,
body .mobile-contact-card .ttb-mobile-contact-icon {
    width: 44px !important;
    height: 44px !important;
    right: 14px !important;
    bottom: 14px !important;
  }

}

@media (min-width: 901px) {
  .mobile-tour-search-toggle,
.ttb-mobile-bottom-nav {
    display: none !important;
  }

}

@media (max-width: 900px) {
  html,
body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    background: #eef6ff !important;
  }

  body {
    padding-bottom: 86px !important;
  }

  body .page-content-area {
    padding: 12px 0 92px !important;
    background: radial-gradient(circle at 12% 10%, rgba(0, 85, 184, .10), transparent 28%),
      linear-gradient(180deg, #edf6ff 0%, #f7fbff 100%) !important;
  }

  body .content-start-frame {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 10px !important;
    margin: 0 auto !important;
  }

  body .tour-content-row {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  body .tour-sidebar-col,
body .tour-program-area {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    display: block !important;
  }

  body .sidebar-service-stack {
    display: none !important;
  }

  body .mobile-tour-search-toggle {
    width: 100% !important;
    min-height: 70px !important;
    border: 1px solid rgba(0, 86, 184, .12) !important;
    border-radius: 18px !important;
    background: rgba(255,255,255,.96) !important;
    box-shadow: 0 12px 30px rgba(0, 64, 130, .09) !important;
    display: grid !important;
    grid-template-columns: 54px 1fr 40px !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 10px 12px !important;
    margin: 0 0 12px !important;
    text-align: left !important;
  }

  body .mobile-search-main-icon {
    width: 54px !important;
    height: 54px !important;
    border-radius: 15px !important;
    background: linear-gradient(135deg, #006bd6, #004a9d) !important;
    color: #fff !important;
    display: grid !important;
    place-items: center !important;
    box-shadow: 0 10px 22px rgba(0, 72, 160, .20) !important;
  }

  body .mobile-search-main-icon svg {
    width: 28px !important;
    height: 28px !important;
    stroke: currentColor !important;
    fill: none !important;
    stroke-width: 2.4 !important;
  }

  body .mobile-search-text {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    min-width: 0 !important;
  }

  body .mobile-search-text strong {
    color: #071832 !important;
    font-size: 19px !important;
    line-height: 1.08 !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
  }

  body .mobile-search-text em {
    color: #8a96a8 !important;
    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 600 !important;
    font-style: normal !important;
  }

  body .mobile-search-chevron {
    width: 38px !important;
    height: 38px !important;
    border-radius: 999px !important;
    background: #edf6ff !important;
    color: #0056b8 !important;
    display: grid !important;
    place-items: center !important;
    border: 1px solid rgba(0, 86, 184, .10) !important;
    transition: transform .18s ease !important;
  }

  body .mobile-search-chevron svg {
    width: 20px !important;
    height: 20px !important;
    stroke: currentColor !important;
    fill: none !important;
    stroke-width: 2.6 !important;
  }

  body .mobile-tour-search-toggle.is-open .mobile-search-chevron {
    transform: rotate(180deg) !important;
  }

  body .tour-search-card {
    width: 100% !important;
    max-width: 100% !important;
    display: none !important;
    margin: 0 0 12px !important;
    padding: 14px !important;
    border-radius: 18px !important;
    background: rgba(255,255,255,.96) !important;
    box-shadow: 0 12px 30px rgba(0, 64, 130, .08) !important;
  }

  body .tour-search-card.is-mobile-filter-open {
    display: block !important;
  }

  body .tour-search-card .search-title-row {
    display: none !important;
  }

  body .tour-search-card .search-field {
    margin-bottom: 10px !important;
  }

  body .tour-result-bar {
    width: 100% !important;
    min-height: 58px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px 16px !important;
    margin: 0 0 12px !important;
    border-radius: 18px !important;
    border: 1px solid rgba(0, 86, 184, .12) !important;
    background: #fff !important;
    box-shadow: 0 12px 30px rgba(0, 64, 130, .08) !important;
  }

  body .tour-result-bar .result-icon {
    width: 40px !important;
    height: 40px !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, #006bd6, #004a9d) !important;
    color: #fff !important;
    display: grid !important;
    place-items: center !important;
    flex: 0 0 40px !important;
  }

  body .tour-result-bar .result-icon svg {
    width: 22px !important;
    height: 22px !important;
    stroke: currentColor !important;
    fill: none !important;
    stroke-width: 2.2 !important;
  }

  body .tour-result-bar p {
    margin: 0 !important;
    font-size: 19px !important;
    line-height: 1.15 !important;
    font-weight: 800 !important;
    color: #071832 !important;
    letter-spacing: -0.02em !important;
  }

  body .tour-result-bar strong {
    color: #00458f !important;
    font-weight: 800 !important;
  }

  body .tour-program-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 14px !important;
    padding: 0 !important;
    border-radius: 18px !important;
    border: 1px solid rgba(0, 86, 184, .11) !important;
    background: #fff !important;
    box-shadow: 0 16px 36px rgba(0, 64, 130, .10) !important;
    overflow: hidden !important;
    transform: none !important;
  }

  body .tour-program-card:hover {
    transform: none !important;
  }

  body .tour-card-body {
    display: grid !important;
    grid-template-columns: 45% minmax(0, 55%) !important;
    gap: 10px !important;
    align-items: start !important;
    padding: 10px !important;
  }

  body .tour-image-box {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    min-height: 0 !important;
    max-height: none !important;
    border-radius: 13px !important;
    border: 1px solid rgba(0, 86, 184, .12) !important;
    background: #fff !important;
    overflow: hidden !important;
    box-shadow: 0 8px 18px rgba(0, 64, 130, .08) !important;
  }

  body .tour-image-box img {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    background: #fff !important;
  }

  body .tour-image-box::after {
    display: none !important;
  }

  body .tour-badge {
    position: absolute !important;
    left: 8px !important;
    top: 8px !important;
    transform: none !important;
    height: 27px !important;
    padding: 0 10px !important;
    border-radius: 999px !important;
    font-size: 10.5px !important;
    line-height: 27px !important;
    font-weight: 800 !important;
    z-index: 2 !important;
    white-space: nowrap !important;
  }

  body .tour-card-detail {
    min-width: 0 !important;
    width: 100% !important;
  }

  body .tour-card-detail h2 {
    margin: 2px 0 9px !important;
    color: #071832 !important;
    font-size: 16px !important;
    line-height: 1.32 !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 4 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  body .tour-meta-list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 7px !important;
    margin: 0 !important;
  }

  body .tour-meta-list span {
    display: grid !important;
    grid-template-columns: 20px minmax(0, 1fr) !important;
    align-items: start !important;
    gap: 6px !important;
    min-height: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body .tour-meta-list .meta-icon {
    grid-row: 1 / span 2 !important;
    width: 20px !important;
    min-width: 20px !important;
    margin: 0 !important;
    color: #006bd6 !important;
    font-size: 16px !important;
    text-align: center !important;
  }

  body .tour-meta-list span b {
    display: block !important;
    color: #7d8797 !important;
    font-size: 11px !important;
    line-height: 1.05 !important;
    font-weight: 650 !important;
  }

  body .tour-meta-list span strong {
    display: block !important;
    color: #071832 !important;
    font-size: 12.5px !important;
    line-height: 1.1 !important;
    font-weight: 800 !important;
  }

  body .tour-card-detail p {
    margin: 8px 0 0 !important;
    color: #4b5b70 !important;
    font-size: 12px !important;
    line-height: 1.42 !important;
    font-weight: 500 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  body .airline-card {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    min-height: 52px !important;
    margin: 0 !important;
    padding: 10px 12px !important;
    border-radius: 12px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 10px !important;
    background: linear-gradient(180deg, #fff9ec 0%, #fff4dc 100%) !important;
    border: 1px solid rgba(235, 185, 92, .45) !important;
  }

  body .airline-card-copy span {
    color: #8a5d0d !important;
    font-size: 10px !important;
    line-height: 1.1 !important;
    font-weight: 650 !important;
  }

  body .airline-card-copy strong {
    color: #00345f !important;
    font-size: 11px !important;
    line-height: 1.15 !important;
    font-weight: 800 !important;
  }

  body .airline-brand-logo {
    width: auto !important;
    max-width: 96px !important;
    max-height: 30px !important;
    object-fit: contain !important;
  }

  body .tour-price-panel {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    min-height: auto !important;
    margin: 0 !important;
    padding: 10px !important;
    border-radius: 14px !important;
    border: 1px solid rgba(0, 86, 184, .12) !important;
    background: #f6fbff !important;
    display: grid !important;
    grid-template-columns: 30% 35% 35% !important;
    grid-template-rows: auto auto auto !important;
    gap: 0 8px !important;
    align-items: center !important;
    text-align: center !important;
    box-shadow: none !important;
  }

  body .tour-price-panel > span {
    grid-column: 1 !important;
    grid-row: 1 !important;
    margin: 0 !important;
    color: #00458f !important;
    font-size: 11px !important;
    line-height: 1.1 !important;
    font-weight: 800 !important;
  }

  body .tour-price-panel > strong {
    grid-column: 1 !important;
    grid-row: 2 !important;
    margin: 2px 0 0 !important;
    color: #f00000 !important;
    font-size: 26px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: -0.045em !important;
  }

  body .tour-price-panel > em {
    grid-column: 1 !important;
    grid-row: 3 !important;
    margin: 2px 0 0 !important;
    color: #071832 !important;
    font-size: 10.5px !important;
    line-height: 1.1 !important;
    font-weight: 750 !important;
  }

  body .tour-price-panel .tour-detail-button,
body .tour-price-panel .tour-download-button {
    width: 100% !important;
    min-height: 52px !important;
    height: 52px !important;
    margin: 0 !important;
    padding: 7px 8px !important;
    border-radius: 11px !important;
    font-size: 11px !important;
    line-height: 1.18 !important;
    font-weight: 800 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    white-space: normal !important;
    text-decoration: none !important;
  }

  body .tour-price-panel .tour-detail-button {
    grid-column: 2 !important;
    grid-row: 1 / span 3 !important;
    color: #fff !important;
    background: linear-gradient(135deg, #006bd6, #004a9d) !important;
    box-shadow: 0 10px 20px rgba(0, 64, 130, .18) !important;
  }

  body .tour-price-panel .tour-download-button {
    grid-column: 3 !important;
    grid-row: 1 / span 3 !important;
    color: #00458f !important;
    background: #fff !important;
    border: 1px solid #9ec2ef !important;
    box-shadow: none !important;
  }

  body .tour-price-panel .tour-download-button span {
    display: block !important;
    line-height: 1.18 !important;
  }

  body .tour-date-box {
    margin: 0 10px 10px !important;
    padding: 10px !important;
    border: 1px solid rgba(0, 86, 184, .12) !important;
    border-radius: 15px !important;
    background: #fff !important;
  }

  body .date-title-row {
    min-height: 28px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 0 0 8px !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #0056b8 !important;
  }

  body .date-title-row::before {
    content: "" !important;
    font-family: FontAwesome !important;
    width: 24px !important;
    height: 24px !important;
    border-radius: 999px !important;
    background: #edf6ff !important;
    color: #006bd6 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 12px !important;
    flex: 0 0 24px !important;
  }

  body .date-title-row span {
    color: #0056b8 !important;
    font-size: 14px !important;
    font-weight: 800 !important;
  }

  body .date-title-row strong {
    display: none !important;
  }

  body .tour-date-table,
body .tour-date-table tbody {
    display: block !important;
    width: 100% !important;
    border: 0 !important;
    border-radius: 0 !important;
    overflow: visible !important;
  }

  body .tour-date-table thead {
    display: none !important;
  }

  body .tour-date-table tr {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 68px 56px 18px !important;
    align-items: center !important;
    gap: 6px !important;
    min-height: 37px !important;
    padding: 0 8px !important;
    margin: 0 0 5px !important;
    border: 1px solid rgba(0, 86, 184, .08) !important;
    border-radius: 10px !important;
    background: #fff !important;
  }

  body .tour-date-table tr::after {
    content: "" !important;
    font-family: FontAwesome !important;
    color: #006bd6 !important;
    font-size: 14px !important;
    text-align: center !important;
  }

  body .tour-date-table td {
    height: auto !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    color: #071832 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    text-align: left !important;
  }

  body .tour-date-table td:first-child {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
  }

  body .tour-date-table .date-icon {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    border-radius: 999px !important;
    background: #edf6ff !important;
    color: #006bd6 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    font-size: 11px !important;
  }

  body .tour-date-table .price-cell {
    color: #f00000 !important;
    font-size: 11px !important;
    font-weight: 850 !important;
    text-align: right !important;
  }

  body .tour-date-table td:nth-child(3) {
    color: #00458f !important;
    font-size: 11px !important;
    font-weight: 850 !important;
    text-align: right !important;
  }

  body .tour-date-table td:nth-child(3) strong {
    font-size: 11px !important;
    font-weight: 850 !important;
  }

  body .ttb-mobile-bottom-nav {
    position: fixed !important;
    left: 10px !important;
    right: 10px !important;
    bottom: 10px !important;
    height: 64px !important;
    border-radius: 18px !important;
    background: linear-gradient(180deg, #006bd6, #004a9d) !important;
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    align-items: center !important;
    z-index: 850 !important;
    box-shadow: 0 14px 34px rgba(0, 72, 160, .25) !important;
    overflow: hidden !important;
  }

  body .ttb-mobile-bottom-nav a {
    color: rgba(255,255,255,.88) !important;
    text-decoration: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
  }

  body .ttb-mobile-bottom-nav i {
    font-size: 18px !important;
  }

  body .ttb-mobile-bottom-nav a.is-active {
    color: #fff !important;
  }

}

@media (max-width: 380px) {
  body .content-start-frame {
    padding: 0 8px !important;
  }

  body .tour-card-body {
    padding: 8px !important;
  }

  body .tour-card-detail h2 {
    font-size: 14px !important;
    -webkit-line-clamp: 4 !important;
  }

  body .tour-meta-list span strong {
    font-size: 11.5px !important;
  }

  body .tour-card-detail p {
    display: none !important;
  }

  body .tour-price-panel {
    gap: 0 6px !important;
  }

  body .tour-price-panel .tour-detail-button,
body .tour-price-panel .tour-download-button {
    height: 48px !important;
    min-height: 48px !important;
    font-size: 10px !important;
  }

  body .tour-date-table tr {
    grid-template-columns: minmax(0, 1fr) 58px 50px 16px !important;
    gap: 4px !important;
    padding: 0 6px !important;
  }

  body .tour-date-table td,
body .tour-date-table .price-cell,
body .tour-date-table td:nth-child(3),
body .tour-date-table td:nth-child(3) strong {
    font-size: 10px !important;
  }

}

@media (max-width: 1024px) {
  html,
body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  body {
    padding-bottom: 92px !important;
    background: #eef6ff !important;
  }

  body .page-content-area {
    padding-bottom: 104px !important;
    background: radial-gradient(circle at 12% 10%, rgba(0, 85, 184, .10), transparent 28%),
      linear-gradient(180deg, #edf6ff 0%, #f7fbff 100%) !important;
  }

  body .main-menu-bar,
body .top-bar {
    display: none !important;
  }

  body .ttb-mobile-bottom-nav {
    display: grid !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: 74px !important;
    padding: 0 12px calc(env(safe-area-inset-bottom, 0px) + 4px) !important;
    border-radius: 18px 18px 0 0 !important;
    background: linear-gradient(180deg, #006bd6 0%, #004a9d 100%) !important;
    box-shadow: 0 -10px 26px rgba(0, 72, 160, .22) !important;
    z-index: 980 !important;
  }

  body .tour-content-row {
    display: block !important;
  }

  body .sidebar-service-stack {
    display: none !important;
  }

  body .tour-program-card {
    border-radius: 18px !important;
    background: #fff !important;
    border: 1px solid rgba(0, 86, 184, .11) !important;
    box-shadow: 0 16px 36px rgba(0, 64, 130, .10) !important;
    overflow: hidden !important;
    transform: none !important;
  }

  body .tour-card-body {
    display: grid !important;
    grid-template-columns: 45% minmax(0, 55%) !important;
    gap: 10px !important;
    align-items: start !important;
    padding: 10px !important;
  }

  body .tour-image-box {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 4 / 5 !important;
    height: auto !important;
    min-height: 190px !important;
    max-height: 230px !important;
    border-radius: 13px !important;
    border: 1px solid rgba(0, 86, 184, .12) !important;
    background: #fff !important;
    overflow: hidden !important;
    box-shadow: 0 8px 18px rgba(0, 64, 130, .08) !important;
  }

  body .tour-image-box img {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
  }

  body .tour-card-detail h2 {
    margin: 2px 0 9px !important;
    color: #071832 !important;
    font-size: 16px !important;
    line-height: 1.32 !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 4 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  body .tour-card-detail > p {
    display: none !important;
  }

  body .tour-meta-list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 7px !important;
    margin: 0 !important;
  }

  body .tour-meta-list span {
    display: grid !important;
    grid-template-columns: 20px minmax(0, 1fr) !important;
    align-items: start !important;
    gap: 6px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body .tour-meta-list .meta-icon {
    grid-row: 1 / span 2 !important;
    width: 20px !important;
    min-width: 20px !important;
    color: #006bd6 !important;
    font-size: 16px !important;
    text-align: center !important;
  }

  body .tour-meta-list span b {
    color: #7d8797 !important;
    font-size: 11px !important;
    line-height: 1.05 !important;
    font-weight: 650 !important;
  }

  body .tour-meta-list span strong {
    color: #071832 !important;
    font-size: 12.5px !important;
    line-height: 1.1 !important;
    font-weight: 800 !important;
  }

  body .airline-card {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    min-height: 52px !important;
    margin: 0 !important;
  }

  body .tour-price-panel {
    grid-column: 1 / -1 !important;
    display: grid !important;
    align-items: center !important;
  }

  body .tour-price-panel > span {
    grid-column: 1 !important;
    grid-row: 1 !important;
    align-self: end !important;
    justify-self: center !important;
    font-size: 10px !important;
    line-height: 1 !important;
    font-weight: 750 !important;
    margin: 0 !important;
  }

  body .tour-price-panel > strong {
    grid-column: 1 !important;
    grid-row: 2 !important;
    align-self: center !important;
    justify-self: center !important;
    color: #f00000 !important;
    line-height: .88 !important;
    font-weight: 900 !important;
    margin: 0 !important;
    white-space: nowrap !important;
  }

  body .tour-price-panel > em {
    grid-column: 1 !important;
    grid-row: 3 !important;
    align-self: start !important;
    justify-self: center !important;
    font-size: 9.8px !important;
    line-height: 1 !important;
    font-weight: 750 !important;
    margin: 0 !important;
    white-space: nowrap !important;
  }

  body .tour-price-panel .tour-detail-button,
body .tour-price-panel .tour-download-button {
    justify-content: center !important;
    white-space: nowrap !important;
  }

  body .tour-price-panel .tour-detail-button {
    background: linear-gradient(135deg, #006bd6 0%, #004a9d 100%) !important;
    color: #fff !important;
    box-shadow: 0 9px 18px rgba(0, 64, 130, .16) !important;
  }

  body .tour-price-panel .tour-download-button {
    background: #fff !important;
    color: #00458f !important;
    border: 1px solid #9ec2ef !important;
    box-shadow: none !important;
  }

  body .tour-price-panel::before,
body .tour-price-panel::after,
body .tour-detail-button::before,
body .tour-detail-button::after,
body .tour-download-button::before,
body .tour-download-button::after {
    content: none !important;
    display: none !important;
    animation: none !important;
    background: none !important;
    box-shadow: none !important;
  }

  body .tour-date-box {
    margin: 0 10px 16px !important;
    padding: 10px 9px 12px !important;
    border: 1px solid rgba(0, 86, 184, .12) !important;
    border-radius: 15px !important;
    background: #fff !important;
    overflow: visible !important;
  }

  body .date-title-row {
    min-height: 30px !important;
    padding: 0 0 8px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: transparent !important;
  }

  body .date-title-row strong {
    display: none !important;
  }

  body .date-title-row span {
    color: #0056b8 !important;
    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
  }

  body .tour-date-table,
body .tour-date-table tbody {
    display: block !important;
    width: 100% !important;
    border: 0 !important;
    border-radius: 0 !important;
    overflow: visible !important;
  }

  body .tour-date-table thead {
    display: none !important;
  }

  body .tour-date-box:not(.is-period-expanded):not(.period-expanded):not(.has-date-filter) .tour-date-table tbody tr:nth-child(n/**/+6),
body .tour-date-box:not(.is-period-expanded):not(.period-expanded):not(.has-date-filter) .tour-date-table > tr:nth-child(n/**/+6) {
    display: none !important;
  }

  body .tour-date-box .tour-date-table tbody tr,
body .tour-date-box .tour-date-table > tr {
    display: grid !important;
    grid-template-columns: minmax(142px, 1fr) 76px 60px 18px !important;
    min-height: 36px !important;
    height: 36px !important;
    padding: 0 8px !important;
    margin: 0 0 5px !important;
    gap: 6px !important;
    align-items: center !important;
    border: 1px solid rgba(0, 86, 184, .08) !important;
    border-radius: 10px !important;
    background: #fff !important;
    overflow: hidden !important;
  }

  body .tour-date-box .tour-date-table tbody tr[style*="display: none"],
body .tour-date-box .tour-date-table > tr[style*="display: none"],
body .tour-date-box .tour-date-table tbody tr[aria-hidden="true"],
body .tour-date-box .tour-date-table > tr[aria-hidden="true"] {
    display: none !important;
  }

  body .tour-date-box .tour-date-table td {
    height: 36px !important;
    min-height: 36px !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
    font-size: 10.8px !important;
    line-height: 1 !important;
    font-weight: 750 !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
  }

  body .tour-date-box .tour-date-table td:first-child {
    justify-content: flex-start !important;
    gap: 6px !important;
    min-width: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  body .tour-date-box .tour-date-table td:first-child .date-icon {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    flex: 0 0 22px !important;
    margin: 0 !important;
  }

  body .tour-date-box .tour-date-table .price-cell,
body .tour-date-box .tour-date-table td:nth-child(2) {
    justify-content: flex-end !important;
    min-width: 76px !important;
    color: #f00000 !important;
    font-size: 10.8px !important;
    font-weight: 850 !important;
    text-align: right !important;
  }

  body .tour-date-box .tour-date-table td:nth-child(3),
body .tour-date-box .tour-date-table td:nth-child(3) strong {
    justify-content: flex-end !important;
    min-width: 60px !important;
    color: #00458f !important;
    font-size: 10.8px !important;
    font-weight: 850 !important;
    text-align: right !important;
    line-height: 1 !important;
  }

  body .tour-date-box .tour-date-table tr::after {
    width: 18px !important;
    min-width: 18px !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #006bd6 !important;
    font-size: 13px !important;
    line-height: 1 !important;
  }

  body .period-toggle-wrap {
    display: block !important;
    width: 100% !important;
    margin: 10px 0 0 !important;
  }

  body .period-toggle-button::before,
body .period-toggle-button::after,
body [data-period-toggle]::before,
body [data-period-toggle]::after {
    content: none !important;
    display: none !important;
  }

  body .period-toggle-button,
body [data-period-toggle] {
    width: 100% !important;
    min-height: 46px !important;
    height: 46px !important;
    padding: 0 10px !important;
    border-radius: 999px !important;
    border: 2px solid #5eadff !important;
    background: #fff !important;
    color: #0056b8 !important;
    display: grid !important;
    grid-template-columns: 38px minmax(0, 1fr) 38px !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 14px !important;
    font-weight: 850 !important;
    line-height: 1 !important;
    text-align: center !important;
    box-shadow: 0 8px 18px rgba(0, 86, 184, .07) !important;
    cursor: pointer !important;
    overflow: hidden !important;
  }

  body .period-toggle-left-icon,
body .period-toggle-icon {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    border-radius: 999px !important;
    background: #edf6ff !important;
    color: #006bd6 !important;
    border: 1px solid rgba(0, 86, 184, .13) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 12px !important;
    margin: 0 !important;
    line-height: 1 !important;
  }

  body .period-toggle-left-icon {
    justify-self: start !important;
    grid-column: 1 !important;
  }

  body .period-toggle-icon {
    justify-self: end !important;
    grid-column: 3 !important;
  }

  body .period-toggle-text {
    grid-column: 2 !important;
    justify-self: center !important;
    text-align: center !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    line-height: 1 !important;
  }

  body .ttb-mobile-bottom-nav a {
    height: 100% !important;
    padding-top: 7px !important;
    padding-bottom: 7px !important;
    justify-content: center !important;
    gap: 4px !important;
    font-size: 10px !important;
    line-height: 1 !important;
    font-weight: 750 !important;
    transition: opacity .18s ease, transform .18s ease !important;
  }

  body .ttb-mobile-bottom-nav i {
    font-size: 18px !important;
    line-height: 1 !important;
  }

  body .mobile-tour-search-toggle,
  body #mobileTourSearchCard {
    scroll-margin-top: 86px !important;
  }

  body .ttb-mobile-bottom-nav a.is-active {
    opacity: 1 !important;
    transform: translateY(-1px) !important;
  }

}

@media (max-width: 767px) {
  body .content-start-frame,
body .tour-content-row,
body .tour-program-area,
body .tour-sidebar-col {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body .content-start-frame {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  body .tour-program-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 14px !important;
  }

}

@media (min-width: 768px) and (max-width: 1024px) {
  body .content-start-frame,
body .tour-content-row,
body .tour-program-area,
body .tour-sidebar-col,
body .tour-program-card,
body .tour-search-card {
    width: min(100% - 32px, 760px) !important;
    max-width: 760px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body .tour-card-body {
    grid-template-columns: 44% minmax(0, 56%) !important;
    gap: 14px !important;
    padding: 14px !important;
  }

  body .tour-image-box {
    min-height: 230px !important;
    max-height: 270px !important;
  }

  body .tour-card-detail h2 {
    font-size: 18px !important;
    line-height: 1.3 !important;
  }

  body .airline-card,
body .tour-price-panel,
body .tour-date-box {
    width: calc(100% - 28px) !important;
    max-width: calc(100% - 28px) !important;
    margin-left: 14px !important;
    margin-right: 14px !important;
  }

  body .tour-date-box .tour-date-table tbody tr,
body .tour-date-box .tour-date-table > tr {
    grid-template-columns: minmax(230px, 1fr) 96px 76px 22px !important;
    height: 40px !important;
    min-height: 40px !important;
    padding: 0 12px !important;
    gap: 10px !important;
  }

  body .tour-date-box .tour-date-table td {
    height: 40px !important;
    min-height: 40px !important;
  }

  body .tour-date-box .tour-date-table td:nth-child(2),
body .tour-date-box .tour-date-table .price-cell {
    min-width: 96px !important;
  }

  body .tour-date-box .tour-date-table td:nth-child(3),
body .tour-date-box .tour-date-table td:nth-child(3) strong {
    min-width: 76px !important;
  }

  body .ttb-mobile-bottom-nav {
    width: min(100% - 32px, 760px) !important;
    max-width: 760px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
  }

}

@media (max-width: 380px) {
  body .tour-card-body {
    grid-template-columns: 44% minmax(0, 56%) !important;
    gap: 8px !important;
  }

  body .tour-image-box {
    min-height: 170px !important;
    max-height: 210px !important;
  }

  body .tour-price-panel > strong {
    font-size: 21px !important;
  }

  body .tour-date-box .tour-date-table tbody tr,
body .tour-date-box .tour-date-table > tr {
    grid-template-columns: minmax(118px, 1fr) 66px 52px 16px !important;
    gap: 4px !important;
    padding: 0 6px !important;
  }

}

@media (min-width: 1025px) {
  body .ttb-mobile-bottom-nav,
body .mobile-tour-search-toggle {
    display: none !important;
  }

}

@media (max-width: 1024px) {
  body .tour-price-panel .tour-detail-button,
body .tour-price-panel .tour-download-button {
    gap: 4px !important;
  }

  body .tour-price-panel .tour-detail-button > i,
body .tour-price-panel .tour-download-button > i {
    flex: none !important;
  }

  body .tour-price-panel .tour-download-button span span {
    display: block !important;
    max-width: 100% !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  body .tour-date-box.period-collapsible:not(.period-expanded) .tour-date-table tbody tr:nth-child(n/**/+6),
body .tour-date-box:not(.period-expanded):not(.has-date-filter) .tour-date-table tbody tr:nth-child(n/**/+6) {
    display: none !important;
  }

  body .tour-date-box.period-expanded .tour-date-table tbody tr,
body .tour-date-box.is-period-expanded .tour-date-table tbody tr {
    display: grid !important;
  }

  body .period-toggle-button.period-toggle-button--arrow-up .period-toggle-icon {
    transform: none !important;
  }

  body .period-toggle-icon::before,
body .period-toggle-icon::after,
body .period-toggle-button::before,
body .period-toggle-button::after {
    content: none !important;
    display: none !important;
  }

}

@media (min-width: 1025px) {
  body .mobile-program-more-button {
    display: none !important;
  }

}

@media (max-width: 1024px) {
  body .tour-price-panel {
    grid-template-columns: 25% 40% 35% !important;
    grid-template-rows: 16px 30px 16px !important;
    min-height: 76px !important;
    height: 76px !important;
    column-gap: 6px !important;
    padding: 8px !important;
    overflow: hidden !important;
  }

  body .tour-price-panel > strong {
    font-size: 22px !important;
    letter-spacing: -0.065em !important;
  }

  body .tour-price-panel .tour-detail-button,
body .tour-price-panel .tour-download-button {
    height: 54px !important;
    min-height: 54px !important;
    max-height: 54px !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 6px !important;
    margin: 0 !important;
    border-radius: 11px !important;
    overflow: hidden !important;
    align-self: center !important;
    display: grid !important;
    align-items: center !important;
    justify-items: center !important;
    transform: none !important;
  }

  body .tour-price-panel .tour-detail-button {
    grid-column: 2 !important;
    grid-row: 1 / 4 !important;
    grid-template-columns: 16px minmax(0, 1fr) 10px !important;
    gap: 4px !important;
  }

  body .tour-price-panel .tour-download-button {
    grid-column: 3 !important;
    grid-row: 1 / 4 !important;
    grid-template-columns: 16px minmax(0, 1fr) !important;
    gap: 4px !important;
  }

  body .tour-price-panel .tour-detail-button > i,
body .tour-price-panel .tour-download-button > i {
    position: static !important;
    width: 16px !important;
    min-width: 16px !important;
    max-width: 16px !important;
    font-size: 12px !important;
    line-height: 1 !important;
    margin: 0 !important;
    transform: none !important;
    opacity: 1 !important;
  }

  body .tour-price-panel .tour-download-button > i {
    grid-column: 1 !important;
  }

  body .tour-price-panel .tour-download-button span {
    grid-column: 2 !important;
    min-width: 0 !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2px !important;
    padding: 0 !important;
    margin: 0 !important;
    color: inherit !important;
    text-align: center !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
    font-size: 10px !important;
    line-height: 1 !important;
    font-weight: 850 !important;
    letter-spacing: -0.035em !important;
  }

  body .tour-price-panel .tour-download-button span > span {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-align: center !important;
  }

  body .tour-date-box.period-collapsible:not(.period-expanded):not(.is-period-expanded):not(.has-date-filter):not(.period-filter-active) .tour-date-table tbody tr:nth-child(n/**/+6),
body .tour-date-box:not(.period-expanded):not(.is-period-expanded):not(.has-date-filter):not(.period-filter-active) .tour-date-table tbody tr:nth-child(n/**/+6) {
    display: none !important;
  }

  body .period-toggle-button::before,
body .period-toggle-button::after,
body .period-toggle-icon::before,
body .period-toggle-icon::after {
    content: none !important;
    display: none !important;
  }

  body .period-toggle-icon {
    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    color: #0056b8 !important;
    font-family: "FontAwesome", Arial, sans-serif !important;
  }

  body .period-toggle-icon i {
    display: inline-block !important;
    font-size: 13px !important;
    line-height: 1 !important;
    font-style: normal !important;
  }

}

@media (max-width: 380px) {
  body .tour-price-panel {
    grid-template-columns: 24% 41% 35% !important;
    min-height: 74px !important;
    height: 74px !important;
    column-gap: 4px !important;
    padding: 7px !important;
  }

  body .tour-price-panel .tour-download-button span {
    font-size: 8.9px !important;
    letter-spacing: -0.05em !important;
  }

}

@media (min-width: 1025px) {
  html body .tour-price-panel .tour-detail-button,
html body .tour-price-panel a.tour-detail-button,
html body .tour-price-panel button.tour-detail-button {
    position: relative !important;
    isolation: isolate !important;
    overflow: hidden !important;
    background: linear-gradient(135deg, #0b86f6 0%, #006edc 43%, #0057b2 100%) !important;
    box-shadow: 0 15px 30px rgba(0, 91, 190, .30),
      inset 0 1px 0 rgba(255,255,255,.38),
      inset 0 -18px 30px rgba(0,48,125,.22) !important;
  }

  html body .tour-price-panel .tour-detail-button::before,
html body .tour-price-panel a.tour-detail-button::before,
html body .tour-price-panel button.tour-detail-button::before {
    content: none !important;
    display: none !important;
    animation: none !important;
  }

  html body .tour-price-panel .tour-detail-button::after,
html body .tour-price-panel a.tour-detail-button::after,
html body .tour-price-panel button.tour-detail-button::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    z-index: 1 !important;
    inset: 0 !important;
    pointer-events: none !important;
    opacity: .92 !important;
    visibility: visible !important;
    background: radial-gradient(circle at 18% 0%, rgba(255,255,255,.34), rgba(255,255,255,0) 34%),
      linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,0) 48%),
      linear-gradient(110deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.12) 44%, rgba(255,255,255,0) 72%) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.30) !important;
  }

  html body .tour-price-panel .ttb-real-shine,
html body .tour-price-panel .ttb-real-shine-static,
html body .tour-price-panel .ttb-real-shine-move {
    position: absolute !important;
    pointer-events: none !important;
    display: block !important;
    visibility: visible !important;
  }

  html body .tour-price-panel .ttb-real-shine-static {
    inset: 0 !important;
    z-index: 2 !important;
    opacity: .58 !important;
    background: linear-gradient(112deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,.08) 35%,
        rgba(255,255,255,.20) 48%,
        rgba(255,255,255,.08) 62%,
        rgba(255,255,255,0) 100%) !important;
  }

  html body .tour-price-panel .ttb-real-shine-move {
    z-index: 3 !important;
    top: -95% !important;
    left: -105% !important;
    width: 88% !important;
    height: 300% !important;
    opacity: .70 !important;
    border-radius: 999px !important;
    background: linear-gradient(115deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,.04) 24%,
        rgba(255,255,255,.34) 42%,
        rgba(255,255,255,.88) 50%,
        rgba(255,255,255,.32) 58%,
        rgba(255,255,255,.05) 76%,
        rgba(255,255,255,0) 100%) !important;
    filter: blur(.15px) !important;
    transform: rotate(13deg) translate3d(0,0,0) !important;
    animation: ttbNew2CtaFullWidthShine 2.85s cubic-bezier(.42,0,.18,1) infinite !important;
    will-change: transform !important;
  }

  html body .tour-price-panel .tour-detail-button:hover .ttb-real-shine-move {
    opacity: .78 !important;
    animation-duration: 2.05s !important;
  }

  html body .tour-price-panel .tour-detail-button:hover {
    transform: translateY(-2px) translateZ(0) !important;
    box-shadow: 0 18px 34px rgba(0, 91, 190, .36),
      0 0 0 1px rgba(255,255,255,.22) inset,
      0 0 18px rgba(0, 116, 232, .22),
      inset 0 1px 0 rgba(255,255,255,.44),
      inset 0 -18px 30px rgba(0,46,116,.20) !important;
  }

}

@media (min-width: 1025px) and (prefers-reduced-motion: reduce) {
  html body .tour-price-panel .ttb-real-shine-move {
    animation: none !important;
    transform: rotate(13deg) translate3d(160%,0,0) !important;
  }

}

@media (max-width: 767px) {
  html body .tour-price-panel {
    border-radius: 14px !important;
  }

  html body .tour-price-panel .tour-detail-button,
html body .tour-price-panel a.tour-detail-button,
html body .tour-price-panel button.tour-detail-button,
html body .tour-price-panel .tour-download-button,
html body .tour-price-panel a.tour-download-button,
html body .tour-price-panel button.tour-download-button {
    padding: 0 8px !important;
  }

  html body .tour-price-panel .ttb-real-shine,
html body .tour-price-panel .ttb-real-shine-static,
html body .tour-price-panel .ttb-real-shine-move,
html body .tour-price-panel .ttb-real-shine-download {
    position: absolute !important;
    pointer-events: none !important;
    display: block !important;
    visibility: visible !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-real-shine-static,
html body .tour-price-panel a.tour-detail-button .ttb-real-shine-static,
html body .tour-price-panel button.tour-detail-button .ttb-real-shine-static {
    z-index: 1 !important;
    inset: 0 !important;
    opacity: .82 !important;
    background: radial-gradient(circle at 18% 0%, rgba(255,255,255,.34), rgba(255,255,255,0) 36%),
      linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,0) 50%),
      linear-gradient(112deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.12) 47%, rgba(255,255,255,0) 74%) !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-clean-cta-icon,
html body .tour-price-panel .tour-detail-button .ttb-clean-cta-label,
html body .tour-price-panel .tour-detail-button .ttb-clean-cta-arrow,
html body .tour-price-panel .tour-download-button .ttb-clean-cta-icon,
html body .tour-price-panel .tour-download-button .ttb-clean-cta-label {
    position: relative !important;
    z-index: 5 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-clean-cta-icon,
html body .tour-price-panel .tour-detail-button .ttb-clean-cta-arrow {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 43, 115, .32) !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-clean-cta-label {
    max-width: 100% !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-clean-cta-arrow {
    transform: translateY(-1px) !important;
  }

  html body .tour-price-panel .tour-download-button .ttb-clean-cta-icon {
    width: 19px !important;
    min-width: 19px !important;
    height: 19px !important;
    color: #ff263b !important;
    font-size: 15px !important;
    justify-self: center !important;
  }

  html body .tour-price-panel .tour-download-button .ttb-clean-cta-label > span {
    display: block !important;
    line-height: 1.02 !important;
    white-space: nowrap !important;
  }

}

@media (max-width: 380px) {
  html body .tour-price-panel .tour-detail-button,
html body .tour-price-panel a.tour-detail-button,
html body .tour-price-panel button.tour-detail-button,
html body .tour-price-panel .tour-download-button,
html body .tour-price-panel a.tour-download-button,
html body .tour-price-panel button.tour-download-button {
    padding: 0 5px !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-clean-cta-icon,
html body .tour-price-panel .tour-download-button .ttb-clean-cta-icon {
    font-size: 12px !important;
  }

}

@keyframes ttbNew2MobileCtaPrimaryShine {
  0%,
18% {
    transform: translate3d(-165%,0,0) rotate(13deg);
  }

  58%,
100% {
    transform: translate3d(330%,0,0) rotate(13deg);
  }

}

@keyframes ttbNew2MobileCtaDownloadSweep {
  0%,
40% {
    transform: translate3d(-120%,0,0) skewX(-16deg);
  }

  70%,
100% {
    transform: translate3d(120%,0,0) skewX(-16deg);
  }

}

@media (max-width: 767px) and (prefers-reduced-motion: reduce) {
  html body .tour-price-panel .tour-detail-button .ttb-real-shine-move,
html body .tour-price-panel .tour-download-button .ttb-real-shine-download {
    animation: none !important;
    opacity: .28 !important;
  }

}

@media (max-width: 767px) {
  html body .tour-price-panel {
    height: auto !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-clean-cta-icon,
html body .tour-price-panel .tour-detail-button .ttb-clean-cta-label,
html body .tour-price-panel .tour-detail-button .ttb-clean-cta-arrow,
html body .tour-price-panel .tour-download-button .ttb-clean-cta-icon,
html body .tour-price-panel .tour-download-button .ttb-clean-cta-label,
html body .tour-price-panel .tour-download-button .ttb-clean-cta-label-download {
    position: relative !important;
    z-index: 6 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-clean-cta-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-clean-cta-label {
    overflow: visible !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-clean-cta-arrow {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  html body .tour-price-panel .tour-download-button .ttb-clean-cta-icon,
html body .tour-price-panel .tour-download-button .ttb-clean-cta-icon-pdf {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  html body .tour-price-panel .tour-download-button .ttb-clean-cta-label,
html body .tour-price-panel .tour-download-button .ttb-clean-cta-label-download {
    overflow: visible !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-real-shine,
html body .tour-price-panel .tour-detail-button .ttb-real-shine-static,
html body .tour-price-panel .tour-detail-button .ttb-real-shine-move {
    position: absolute !important;
    pointer-events: none !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-real-shine-static {
    z-index: 1 !important;
    inset: 0 !important;
    opacity: .42 !important;
    background: radial-gradient(circle at 18% 0%, rgba(255,255,255,.26), rgba(255,255,255,0) 36%),
      linear-gradient(180deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,.05) 34%, rgba(255,255,255,0) 72%) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.26) !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-real-shine-move {
    z-index: 2 !important;
    top: -125% !important;
    left: -72% !important;
    width: 70% !important;
    height: 350% !important;
    opacity: .34 !important;
    border-radius: 999px !important;
    background: linear-gradient(115deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,.04) 25%,
      rgba(255,255,255,.24) 42%,
      rgba(255,255,255,.70) 50%,
      rgba(255,255,255,.24) 58%,
      rgba(255,255,255,.04) 75%,
      rgba(255,255,255,0) 100%) !important;
    filter: blur(.08px) !important;
    transform: rotate(13deg) !important;
    translate: -125% 0;
    animation: ttbNew2MobileCtaSoftFullShine 3.45s cubic-bezier(.42,0,.18,1) infinite !important;
    will-change: translate, opacity !important;
  }

  html body .tour-price-panel .tour-download-button .ttb-real-shine-download {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    animation: none !important;
  }

  html body .tour-price-panel .tour-detail-button:active,
html body .tour-price-panel a.tour-detail-button:active,
html body .tour-price-panel button.tour-detail-button:active,
html body .tour-price-panel .tour-download-button:active,
html body .tour-price-panel a.tour-download-button:active,
html body .tour-price-panel button.tour-download-button:active {
    transform: translateY(1px) scale(.988) !important;
    transition: transform .08s ease-out !important;
  }

}

@keyframes ttbNew2MobileCtaSoftFullShine {
  0%,
18% {
    translate: -125% 0;
  }

  58%,
100% {
    translate: 285% 0;
  }

}

@media (max-width: 380px) {
  html body .tour-price-panel .tour-detail-button,
html body .tour-price-panel a.tour-detail-button,
html body .tour-price-panel button.tour-detail-button,
html body .tour-price-panel .tour-download-button,
html body .tour-price-panel a.tour-download-button,
html body .tour-price-panel button.tour-download-button {
    padding-left: 6px !important;
    padding-right: 6px !important;
  }

}

@media (max-width: 767px) and (prefers-reduced-motion: reduce) {
  html body .tour-price-panel .tour-detail-button .ttb-real-shine-move {
    animation: none !important;
    opacity: .22 !important;
    translate: 80% 0;
  }

}

@media (max-width: 767px) {
  html body .tour-price-panel {
    overflow: hidden !important;
  }

  html body .tour-price-panel .tour-detail-button::before,
html body .tour-price-panel a.tour-detail-button::before,
html body .tour-price-panel button.tour-detail-button::before,
html body .tour-price-panel .tour-detail-button::after,
html body .tour-price-panel a.tour-detail-button::after,
html body .tour-price-panel button.tour-detail-button::after,
html body .tour-price-panel .tour-download-button::before,
html body .tour-price-panel a.tour-download-button::before,
html body .tour-price-panel button.tour-download-button::before,
html body .tour-price-panel .tour-download-button::after,
html body .tour-price-panel a.tour-download-button::after,
html body .tour-price-panel button.tour-download-button::after {
    content: none !important;
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    animation: none !important;
    background: none !important;
    box-shadow: none !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-real-shine-static,
html body .tour-price-panel a.tour-detail-button .ttb-real-shine-static,
html body .tour-price-panel button.tour-detail-button .ttb-real-shine-static,
html body .tour-price-panel .tour-download-button .ttb-real-shine-download,
html body .tour-price-panel a.tour-download-button .ttb-real-shine-download,
html body .tour-price-panel button.tour-download-button .ttb-real-shine-download {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    animation: none !important;
    background: none !important;
    box-shadow: none !important;
  }

  html body .tour-price-panel .tour-detail-button,
html body .tour-price-panel a.tour-detail-button,
html body .tour-price-panel button.tour-detail-button {
    background: linear-gradient(135deg, #0d86f7 0%, #006bd7 52%, #0054ad 100%) !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-real-shine-move,
html body .tour-price-panel a.tour-detail-button .ttb-real-shine-move,
html body .tour-price-panel button.tour-detail-button .ttb-real-shine-move {
    position: absolute !important;
    z-index: 2 !important;
    display: block !important;
    visibility: visible !important;
    pointer-events: none !important;
    top: -65% !important;
    left: -80% !important;
    width: 28% !important;
    height: 230% !important;
    border-radius: 999px !important;
    opacity: .42 !important;
    background: linear-gradient(112deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, .05) 27%,
      rgba(255, 255, 255, .30) 43%,
      rgba(255, 255, 255, .72) 50%,
      rgba(255, 255, 255, .30) 57%,
      rgba(255, 255, 255, .05) 73%,
      rgba(255, 255, 255, 0) 100%) !important;
    filter: blur(.12px) !important;
    transform: rotate(14deg) translateZ(0) !important;
    translate: none !important;
    animation: ttbNew2MobileCleanSingleShine 3.2s cubic-bezier(.42, 0, .18, 1) infinite !important;
    will-change: margin-left !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-clean-cta-icon,
html body .tour-price-panel .tour-detail-button .ttb-clean-cta-label,
html body .tour-price-panel .tour-detail-button .ttb-clean-cta-arrow,
html body .tour-price-panel .tour-download-button .ttb-clean-cta-icon,
html body .tour-price-panel .tour-download-button .ttb-clean-cta-icon-pdf,
html body .tour-price-panel .tour-download-button .ttb-clean-cta-label,
html body .tour-price-panel .tour-download-button .ttb-clean-cta-label-download {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-clean-cta-icon {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0,43,115,.28) !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-clean-cta-arrow {
    grid-column: 3 !important;
    height: 20px !important;
    color: #ffffff !important;
    font-weight: 900 !important;
    text-shadow: 0 1px 2px rgba(0,43,115,.28) !important;
  }

  html body .tour-price-panel .tour-download-button .ttb-clean-cta-label,
html body .tour-price-panel .tour-download-button .ttb-clean-cta-label-download {
    max-width: 100% !important;
  }

}

@keyframes ttbNew2MobileCleanSingleShine {
  0%,
18% {
    margin-left: 0%;
  }

  72%,
100% {
    margin-left: 212%;
  }

}

@media (max-width: 767px) and (prefers-reduced-motion: reduce) {
  html body .tour-price-panel .tour-detail-button .ttb-real-shine-move,
html body .tour-price-panel a.tour-detail-button .ttb-real-shine-move,
html body .tour-price-panel button.tour-detail-button .ttb-real-shine-move {
    animation: none !important;
    opacity: .18 !important;
    left: 72% !important;
    margin-left: 0 !important;
  }

}

@media (max-width: 767px) {
  html body .tour-price-panel .tour-detail-button,
html body .tour-price-panel a.tour-detail-button,
html body .tour-price-panel button.tour-detail-button,
html body .tour-price-panel .tour-download-button,
html body .tour-price-panel a.tour-download-button,
html body .tour-price-panel button.tour-download-button {
    justify-items: center !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    -webkit-tap-highlight-color: transparent !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-real-shine,
html body .tour-price-panel .tour-detail-button .ttb-real-shine-static,
html body .tour-price-panel .tour-detail-button .ttb-real-shine-move {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    animation: none !important;
    background: none !important;
    box-shadow: none !important;
    transform: none !important;
    translate: none !important;
  }

  html body .tour-price-panel .tour-download-button,
html body .tour-price-panel a.tour-download-button,
html body .tour-price-panel button.tour-download-button {
    background: linear-gradient(135deg, #ffffff 0%, #f7fbff 58%, #ffffff 100%) !important;
  }

}

@keyframes ttbMobileDownloadDesktopStyleShine {
  0%,
42% {
    transform: translateX(-115%);
  }

  72%,
100% {
    transform: translateX(115%);
  }

}

@media (max-width: 767px) and (prefers-reduced-motion: reduce) {
  html body .tour-price-panel .tour-download-button .ttb-real-shine-download,
html body .tour-price-panel a.tour-download-button .ttb-real-shine-download,
html body .tour-price-panel button.tour-download-button .ttb-real-shine-download {
    animation: none !important;
    transform: translateX(0) !important;
    opacity: .22 !important;
  }

}

@media (max-width: 767px) {
  html body .tour-price-panel .tour-download-button .ttb-real-shine-download,
html body .tour-price-panel a.tour-download-button .ttb-real-shine-download,
html body .tour-price-panel button.tour-download-button .ttb-real-shine-download {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    animation: none !important;
    transform: none !important;
    translate: none !important;
    background: none !important;
    box-shadow: none !important;
  }

  html body .tour-price-panel .tour-download-button,
html body .tour-price-panel a.tour-download-button,
html body .tour-price-panel button.tour-download-button {
    --ttb-mobile-download-shine-x: 50% !important;
    --ttb-mobile-download-glow: .10 !important;
    position: relative !important;
    isolation: isolate !important;
    overflow: hidden !important;
    display: grid !important;
    filter: none !important;
    transition: transform .12s ease,
      border-color .22s ease,
      box-shadow .22s ease,
      filter .22s ease !important;
  }

  html body .tour-price-panel .tour-download-button::before,
html body .tour-price-panel .tour-download-button::after,
html body .tour-price-panel a.tour-download-button::before,
html body .tour-price-panel a.tour-download-button::after,
html body .tour-price-panel button.tour-download-button::before,
html body .tour-price-panel button.tour-download-button::after {
    content: none !important;
    display: none !important;
  }

  html body .tour-price-panel .tour-download-button .ttb-clean-cta-icon,
html body .tour-price-panel .tour-download-button .ttb-clean-cta-icon-pdf {
    filter: drop-shadow(0 0 3px rgba(255, 38, 59, .10)) !important;
  }

}

@keyframes ttbMobileDownloadSoftSecondaryGlow {
  0%,
100% {
    border-color: rgba(86, 162, 255, .62);
    box-shadow: 0 6px 14px rgba(0, 88, 184, .06),
      0 0 0 1px rgba(255,255,255,.70) inset,
      inset 0 1px 0 rgba(255,255,255,.96);
    background-position: center center, 0 0;
  }

  50% {
    border-color: rgba(68, 150, 255, .82);
    box-shadow: 0 8px 18px rgba(0, 105, 220, .10),
      0 0 12px rgba(74, 153, 255, .18),
      0 0 0 1px rgba(255,255,255,.78) inset,
      inset 0 1px 0 rgba(255,255,255,.98);
    background-position: center 44%, 0 0;
  }

}

@media (max-width: 767px) and (prefers-reduced-motion: reduce) {
  html body .tour-price-panel .tour-download-button,
html body .tour-price-panel a.tour-download-button,
html body .tour-price-panel button.tour-download-button {
    animation: none !important;
  }

}

@media (max-width: 767px) {
  html body .tour-price-panel .tour-detail-button,
html body .tour-price-panel a.tour-detail-button,
html body .tour-price-panel button.tour-detail-button,
html body .tour-price-panel .tour-download-button,
html body .tour-price-panel a.tour-download-button,
html body .tour-price-panel button.tour-download-button {
    position: relative !important;
    isolation: isolate !important;
    overflow: hidden !important;
    transform: translateZ(0) !important;
  }

  html body .tour-price-panel .tour-detail-button::before,
html body .tour-price-panel .tour-detail-button::after,
html body .tour-price-panel .tour-download-button::before,
html body .tour-price-panel .tour-download-button::after,
html body .tour-price-panel a.tour-detail-button::before,
html body .tour-price-panel a.tour-detail-button::after,
html body .tour-price-panel a.tour-download-button::before,
html body .tour-price-panel a.tour-download-button::after,
html body .tour-price-panel button.tour-detail-button::before,
html body .tour-price-panel button.tour-detail-button::after,
html body .tour-price-panel button.tour-download-button::before,
html body .tour-price-panel button.tour-download-button::after {
    content: none !important;
    display: none !important;
    animation: none !important;
  }

  html body .tour-price-panel .tour-detail-button,
html body .tour-price-panel a.tour-detail-button,
html body .tour-price-panel button.tour-detail-button {
    --ttb-mobile-shine-x: -130px;
    --ttb-mobile-shine-w: 86px;
    color: #ffffff !important;
    border: 1px solid rgba(0, 86, 180, .78) !important;
    background-size: var(--ttb-mobile-shine-w) 210px, 100% 100%, 100% 100%, 100% 100% !important;
    background-position: var(--ttb-mobile-shine-x) center, 0 0, 0 0, 0 0 !important;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat !important;
  }

  html body .tour-price-panel .tour-download-button,
html body .tour-price-panel a.tour-download-button,
html body .tour-price-panel button.tour-download-button {
    --ttb-mobile-download-shine-x: -120px;
    --ttb-mobile-download-shine-w: 92px;
    --ttb-mobile-download-glow: .10;
    color: #00458f !important;
    border: 1px solid rgba(74, 150, 255, .64) !important;
    background-size: var(--ttb-mobile-download-shine-w) 190px, 120% 140%, 100% 100% !important;
    background-position: var(--ttb-mobile-download-shine-x) center, center center, 0 0 !important;
    background-repeat: no-repeat, no-repeat, no-repeat !important;
    animation: none !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-real-shine,
html body .tour-price-panel .tour-detail-button .ttb-real-shine-static,
html body .tour-price-panel .tour-detail-button .ttb-real-shine-move,
html body .tour-price-panel .tour-download-button .ttb-real-shine,
html body .tour-price-panel .tour-download-button .ttb-real-shine-static,
html body .tour-price-panel .tour-download-button .ttb-real-shine-move,
html body .tour-price-panel .tour-download-button .ttb-real-shine-download,
html body .tour-price-panel a.tour-detail-button .ttb-real-shine,
html body .tour-price-panel a.tour-download-button .ttb-real-shine,
html body .tour-price-panel a.tour-download-button .ttb-real-shine-download,
html body .tour-price-panel button.tour-detail-button .ttb-real-shine,
html body .tour-price-panel button.tour-download-button .ttb-real-shine,
html body .tour-price-panel button.tour-download-button .ttb-real-shine-download {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    animation: none !important;
    background: none !important;
    box-shadow: none !important;
    transform: none !important;
    translate: none !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-clean-cta-icon,
html body .tour-price-panel .tour-detail-button .ttb-clean-cta-label,
html body .tour-price-panel .tour-detail-button .ttb-clean-cta-arrow,
html body .tour-price-panel .tour-download-button .ttb-clean-cta-icon,
html body .tour-price-panel .tour-download-button .ttb-clean-cta-icon-pdf,
html body .tour-price-panel .tour-download-button .ttb-clean-cta-label,
html body .tour-price-panel .tour-download-button .ttb-clean-cta-label-download {
    position: relative !important;
    z-index: 9 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-clean-cta-icon,
html body .tour-price-panel .tour-detail-button .ttb-clean-cta-label,
html body .tour-price-panel .tour-detail-button .ttb-clean-cta-arrow {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0,43,115,.30) !important;
  }

}

@media (max-width: 380px) {
  html body .tour-price-panel .tour-detail-button,
html body .tour-price-panel a.tour-detail-button,
html body .tour-price-panel button.tour-detail-button {
    background-size: var(--ttb-mobile-shine-w) 190px, 100% 100%, 100% 100%, 100% 100% !important;
  }

  html body .tour-price-panel .tour-download-button,
html body .tour-price-panel a.tour-download-button,
html body .tour-price-panel button.tour-download-button {
    background-size: var(--ttb-mobile-download-shine-w) 180px, 120% 140%, 100% 100% !important;
  }

}

@media (max-width: 767px) {
  html body .tour-price-panel {
    grid-template-columns: 27% minmax(0, 1fr) minmax(0, 1fr) !important;
    column-gap: 5px !important;
    padding: 7px !important;
    min-height: 76px !important;
    align-items: stretch !important;
  }

  html body .tour-price-panel .tour-detail-button,
html body .tour-price-panel a.tour-detail-button,
html body .tour-price-panel button.tour-detail-button,
html body .tour-price-panel .tour-download-button,
html body .tour-price-panel a.tour-download-button,
html body .tour-price-panel button.tour-download-button {
    border-radius: 13px !important;
    align-self: center !important;
    text-decoration: none !important;
  }

  html body .tour-price-panel .tour-detail-button,
html body .tour-price-panel a.tour-detail-button,
html body .tour-price-panel button.tour-detail-button {
    padding: 0 7px !important;
    background-image: linear-gradient(115deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,.05) 24%,
        rgba(255,255,255,.28) 40%,
        rgba(255,255,255,.76) 50%,
        rgba(255,255,255,.30) 60%,
        rgba(255,255,255,.05) 76%,
        rgba(255,255,255,0) 100%),
      radial-gradient(circle at 24% 9%, rgba(255,255,255,.30), rgba(255,255,255,0) 34%),
      linear-gradient(180deg, rgba(255,255,255,.15) 0%, rgba(255,255,255,0) 44%),
      linear-gradient(135deg, #108df8 0%, #0071dd 48%, #0055b0 100%) !important;
    box-shadow: 0 9px 18px rgba(0, 83, 180, .18),
      0 0 0 1px rgba(255,255,255,.17) inset,
      inset 0 1px 0 rgba(255,255,255,.40),
      inset 0 -14px 22px rgba(0,46,116,.16) !important;
  }

  html body .tour-price-panel .tour-download-button,
html body .tour-price-panel a.tour-download-button,
html body .tour-price-panel button.tour-download-button {
    grid-template-columns: 18px minmax(0, 1fr) !important;
    column-gap: 5px !important;
    padding: 0 10px !important;
    background-image: linear-gradient(110deg,
        rgba(255,255,255,0) 0%,
        rgba(219,239,255,.08) 30%,
        rgba(219,239,255,.58) 49%,
        rgba(255,255,255,.86) 52%,
        rgba(219,239,255,.16) 69%,
        rgba(255,255,255,0) 100%),
      radial-gradient(circle at 50% 42%, rgba(96, 170, 255, .10) 0%, rgba(96, 170, 255, .05) 34%, rgba(96, 170, 255, 0) 70%),
      linear-gradient(180deg, #ffffff 0%, #f8fbff 54%, #ffffff 100%) !important;
    border-color: rgba(86, 162, 255, .66) !important;
    box-shadow: 0 6px 13px rgba(0, 88, 184, .055),
      0 0 0 1px rgba(255,255,255,.76) inset,
      inset 0 1px 0 rgba(255,255,255,.97) !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-clean-cta-icon,
html body .tour-price-panel .tour-detail-button .ttb-clean-cta-arrow,
html body .tour-price-panel .tour-download-button .ttb-clean-cta-icon,
html body .tour-price-panel .tour-download-button .ttb-clean-cta-icon-pdf {
    width: 17px !important;
    min-width: 17px !important;
    height: 17px !important;
    min-height: 17px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-clean-cta-arrow {
    width: 15px !important;
    min-width: 15px !important;
    font-size: 24px !important;
    line-height: 1 !important;
    justify-self: end !important;
  }

  html body .tour-price-panel .tour-download-button .ttb-clean-cta-icon,
html body .tour-price-panel .tour-download-button .ttb-clean-cta-icon-pdf {
    grid-column: 1 !important;
    justify-self: center !important;
  }

  html body .tour-price-panel .tour-download-button .ttb-clean-cta-label,
html body .tour-price-panel .tour-download-button .ttb-clean-cta-label-download {
    grid-column: 2 !important;
    justify-self: stretch !important;
    width: 100% !important;
    min-width: 0 !important;
    text-align: center !important;
  }

  html body .tour-price-panel .tour-download-button .ttb-clean-cta-label-download > span {
    display: block !important;
    width: 100% !important;
    line-height: 1.08 !important;
  }

}

@media (max-width: 380px) {
  html body .tour-price-panel {
    grid-template-columns: 26% minmax(0, 1fr) minmax(0, 1fr) !important;
    column-gap: 4px !important;
    padding: 6px !important;
  }

  html body .tour-price-panel .tour-detail-button,
html body .tour-price-panel a.tour-detail-button,
html body .tour-price-panel button.tour-detail-button,
html body .tour-price-panel .tour-download-button,
html body .tour-price-panel a.tour-download-button,
html body .tour-price-panel button.tour-download-button {
    height: 52px !important;
    min-height: 52px !important;
    max-height: 52px !important;
  }

  html body .tour-price-panel .tour-download-button,
html body .tour-price-panel a.tour-download-button,
html body .tour-price-panel button.tour-download-button {
    grid-template-columns: 16px minmax(0, 1fr) !important;
    column-gap: 4px !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-clean-cta-arrow {
    width: 13px !important;
    min-width: 13px !important;
    font-size: 22px !important;
  }

}

@media (max-width: 767px) {
  html body .tour-price-panel .tour-detail-button,
html body .tour-price-panel a.tour-detail-button,
html body .tour-price-panel button.tour-detail-button {
    grid-template-columns: 18px minmax(0, 1fr) !important;
    column-gap: 5px !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-clean-cta-icon {
    grid-column: 1 !important;
    justify-self: center !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-clean-cta-label {
    grid-column: 2 !important;
    justify-self: stretch !important;
    width: 100% !important;
    min-width: 0 !important;
    text-align: center !important;
  }

}

@media (max-width: 380px) {
  html body .tour-price-panel .tour-detail-button,
html body .tour-price-panel a.tour-detail-button,
html body .tour-price-panel button.tour-detail-button {
    grid-template-columns: 16px minmax(0, 1fr) !important;
    column-gap: 4px !important;
  }

}

@media (max-width: 767px) {
  html body .tour-price-panel .tour-detail-button,
html body .tour-price-panel a.tour-detail-button,
html body .tour-price-panel button.tour-detail-button,
html body .tour-price-panel .tour-download-button,
html body .tour-price-panel a.tour-download-button,
html body .tour-price-panel button.tour-download-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    height: 58px !important;
    min-height: 58px !important;
    max-height: 58px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    box-sizing: border-box !important;
  }

  html body .tour-price-panel .tour-detail-button,
html body .tour-price-panel a.tour-detail-button,
html body .tour-price-panel button.tour-detail-button {
    gap: 8px !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  html body .tour-price-panel .tour-download-button,
html body .tour-price-panel a.tour-download-button,
html body .tour-price-panel button.tour-download-button {
    gap: 12px !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-clean-cta-arrow,
html body .tour-price-panel a.tour-detail-button .ttb-clean-cta-arrow,
html body .tour-price-panel button.tour-detail-button .ttb-clean-cta-arrow {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    min-width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-clean-cta-icon,
html body .tour-price-panel .tour-download-button .ttb-clean-cta-icon,
html body .tour-price-panel .tour-download-button .ttb-clean-cta-icon-pdf {
    flex: 0 0 auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-clean-cta-icon {
    width: 20px !important;
    min-width: 20px !important;
    height: 20px !important;
    min-height: 20px !important;
    font-size: 14px !important;
  }

  html body .tour-price-panel .tour-download-button .ttb-clean-cta-icon,
html body .tour-price-panel .tour-download-button .ttb-clean-cta-icon-pdf {
    width: 25px !important;
    min-width: 25px !important;
    height: 25px !important;
    min-height: 25px !important;
    font-size: 22px !important;
    color: #ff263b !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-clean-cta-label,
html body .tour-price-panel .tour-download-button .ttb-clean-cta-label,
html body .tour-price-panel .tour-download-button .ttb-clean-cta-label-download {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
    transform: none !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    justify-self: auto !important;
    align-self: center !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-clean-cta-label {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    font-size: 15px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    letter-spacing: -0.035em !important;
    white-space: nowrap !important;
    text-shadow: 0 1px 2px rgba(0,43,115,.28) !important;
  }

  html body .tour-price-panel .tour-download-button .ttb-clean-cta-label,
html body .tour-price-panel .tour-download-button .ttb-clean-cta-label-download {
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2px !important;
    color: #00458f !important;
    white-space: nowrap !important;
  }

  html body .tour-price-panel .tour-download-button .ttb-clean-cta-label > span,
html body .tour-price-panel .tour-download-button .ttb-clean-cta-label-download > span {
    display: block !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

}

@media (max-width: 380px) {
  html body .tour-price-panel .tour-detail-button,
html body .tour-price-panel a.tour-detail-button,
html body .tour-price-panel button.tour-detail-button {
    gap: 6px !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  html body .tour-price-panel .tour-download-button,
html body .tour-price-panel a.tour-download-button,
html body .tour-price-panel button.tour-download-button {
    gap: 8px !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  html body .tour-price-panel .tour-detail-button .ttb-clean-cta-label {
    font-size: 13.3px !important;
    letter-spacing: -0.045em !important;
  }

  html body .tour-price-panel .tour-download-button .ttb-clean-cta-icon,
html body .tour-price-panel .tour-download-button .ttb-clean-cta-icon-pdf {
    width: 21px !important;
    min-width: 21px !important;
    height: 21px !important;
    min-height: 21px !important;
    font-size: 18px !important;
  }

}

@media (max-width: 767px) {
  html body .tour-price-panel .tour-download-button .ttb-clean-cta-label,
html body .tour-price-panel .tour-download-button .ttb-clean-cta-label-download {
    font-size: 15px !important;
    line-height: 1.02 !important;
    font-weight: 700 !important;
    letter-spacing: -0.035em !important;
  }

  html body .tour-price-panel .tour-download-button .ttb-clean-cta-label > span,
html body .tour-price-panel .tour-download-button .ttb-clean-cta-label-download > span {
    line-height: 1.02 !important;
  }

}

@media (max-width: 380px) {
  html body .tour-price-panel .tour-download-button .ttb-clean-cta-label,
html body .tour-price-panel .tour-download-button .ttb-clean-cta-label-download {
    font-size: 13.3px !important;
    letter-spacing: -0.045em !important;
  }

}

@media (max-width: 767px) {
  html body .tour-price-panel .tour-download-button > .ttb-clean-cta-label,
html body .tour-price-panel .tour-download-button > .ttb-clean-cta-label-download {
    font-size: 15px !important;
    line-height: 1.02 !important;
    font-weight: 700 !important;
    letter-spacing: -0.035em !important;
  }

  html body .tour-price-panel .tour-download-button > .ttb-clean-cta-label > span,
html body .tour-price-panel .tour-download-button > .ttb-clean-cta-label-download > span {
    font-size: 15px !important;
    line-height: 1.02 !important;
    font-weight: 700 !important;
    letter-spacing: -0.035em !important;
  }

}

@media (max-width: 380px) {
  html body .tour-price-panel .tour-download-button > .ttb-clean-cta-label,
html body .tour-price-panel .tour-download-button > .ttb-clean-cta-label-download,
html body .tour-price-panel .tour-download-button > .ttb-clean-cta-label > span,
html body .tour-price-panel .tour-download-button > .ttb-clean-cta-label-download > span {
    font-size: 15px !important;
    line-height: 1.02 !important;
    letter-spacing: -0.04em !important;
  }

}

@media (min-width: 1025px) and (max-width: 1100px) and (orientation: portrait) {
  :root {
    --content-frame: 1044px;
  }

  .page-content-area {
    padding-top: 28px;
  }

  .content-start-frame {
    width: calc(100% - 32px);
  }

  .tour-content-row {
    --search-left-shift: 0px;
    width: 100%;
    margin-left: 0;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 18px;
  }

  .tour-search-card,
.tour-sidebar-col {
    width: 320px;
    max-width: 320px;
  }

  .tour-search-card {
    padding: 22px 20px;
  }

  .tour-program-area {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .tour-result-bar {
    min-height: 48px;
    padding: 11px 15px;
  }

  .tour-program-card {
    width: 100%;
  }

  .tour-card-body {
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 16px;
    padding: 16px;
  }

  .tour-image-box {
    width: 270px;
    height: 292px;
  }

  .tour-card-detail h2 {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.28;
    -webkit-line-clamp: 3;
  }

  .tour-meta-list {
    gap: 8px;
    margin-bottom: 10px;
  }

  .tour-meta-list span {
    min-height: 52px;
    grid-template-columns: 20px minmax(0, 1fr);
    column-gap: 6px;
    padding: 6px 8px;
  }

  .tour-meta-list b {
    font-size: 10.5px;
  }

  .tour-meta-list strong {
    font-size: 12px;
  }

  .tour-card-detail p {
    margin-bottom: 10px;
    font-size: 12.5px;
    line-height: 1.48;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .airline-card {
    min-height: 50px;
    padding: 8px 10px;
  }

  .airline-card strong {
    font-size: 10.8px;
  }

  .airline-logo-text {
    font-size: 17px;
  }

  .tour-price-panel {
    grid-column: 1 / -1;
    min-height: 116px;
    align-self: auto;
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: 14px;
    row-gap: 0;
    align-items: center;
    justify-items: center;
    padding: 14px 16px;
    text-align: center;
  }

  .tour-price-panel > span:first-of-type {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
  }

  .tour-price-panel > strong {
    grid-column: 1;
    grid-row: 2;
    margin-top: 3px;
    font-size: 34px;
  }

  .tour-price-panel > em {
    grid-column: 1;
    grid-row: 3;
    margin-top: 3px;
    align-self: start;
  }

  .tour-price-panel .tour-detail-button,
.tour-price-panel .tour-download-button {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    margin-top: 0 !important;
  }

  .tour-price-panel .tour-detail-button {
    grid-column: 2;
    grid-row: 1 / 4;
  }

  .tour-price-panel .tour-download-button {
    grid-column: 3;
    grid-row: 1 / 4;
  }

  .tour-date-box {
    padding: 0 16px 16px;
  }

  .main-menu-inner {
    width: 100%;
  }

}

@media (min-width: 901px) and (max-width: 1100px) and (orientation: portrait) {
  .tour-program-area .tour-card-body {
    display: grid !important;
    grid-template-columns: 270px minmax(0, 1fr) !important;
    gap: 16px !important;
    align-items: start !important;
    padding: 16px !important;
  }

  .tour-program-area .tour-image-box {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 270px !important;
    max-width: 270px !important;
    height: 292px !important;
    min-height: 292px !important;
  }

  .tour-program-area .tour-card-detail {
    grid-column: 2 !important;
    grid-row: 1 !important;
    min-width: 0 !important;
    width: 100% !important;
  }

  .tour-program-area .tour-price-panel {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 96px !important;
    height: auto !important;
    margin: 0 !important;
    padding: 12px 14px !important;
    box-sizing: border-box !important;
    display: grid !important;
    row-gap: 0 !important;
    justify-items: center !important;
    text-align: center !important;
    grid-template-columns: minmax(145px, 26fr) minmax(0, 40fr) minmax(0, 34fr) !important;
    grid-template-rows: 22px 42px 20px !important;
    column-gap: 12px !important;
    align-items: center !important;
  }

  .tour-program-area .tour-price-panel > span:first-of-type {
    grid-column: 1 !important;
    grid-row: 1 !important;
    align-self: end !important;
    justify-self: center !important;
    margin: 0 !important;
    font-size: 12px !important;
    line-height: 1 !important;
  }

  .tour-program-area .tour-price-panel > strong {
    grid-column: 1 !important;
    grid-row: 2 !important;
    align-self: center !important;
    justify-self: center !important;
    margin: 0 !important;
    font-size: 31px !important;
    line-height: 1 !important;
  }

  .tour-program-area .tour-price-panel > em {
    grid-column: 1 !important;
    grid-row: 3 !important;
    align-self: start !important;
    justify-self: center !important;
    margin: 0 !important;
    font-size: 11px !important;
    line-height: 1 !important;
  }

  .tour-program-area .tour-price-panel .tour-detail-button,
.tour-program-area .tour-price-panel .tour-download-button {
    grid-row: 1 / 4 !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 12px !important;
    box-sizing: border-box !important;
    align-self: center !important;
    justify-self: stretch !important;
    min-height: 60px !important;
    height: 60px !important;
    padding-inline: 14px !important;
  }

  .tour-program-area .tour-price-panel .tour-detail-button {
    grid-column: 2 !important;
  }

  .tour-program-area .tour-price-panel .tour-download-button {
    grid-column: 3 !important;
  }

  .tour-program-area .tour-price-panel .ttb-clean-cta-label-download,
.tour-program-area .tour-price-panel .ttb-clean-cta-label-download > span {
    font-size: 12px !important;
    line-height: 1.02 !important;
  }

  .tour-program-area .tour-date-box {
    padding-top: 0 !important;
  }

  .tour-program-area .tour-price-panel > span:first-of-type,
.tour-program-area .tour-price-panel > strong,
.tour-program-area .tour-price-panel > em {
    align-self: center !important;
  }

  .tour-program-area .tour-price-panel .ttb-clean-cta-label {
    font-size: 15px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
  }

  .tour-program-area .tour-price-panel .ttb-clean-cta-label-download {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    width: auto !important;
    white-space: nowrap !important;
    font-size: 15px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
  }

  .tour-program-area .tour-price-panel .ttb-clean-cta-label-download > span {
    display: inline !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    white-space: nowrap !important;
    font-size: inherit !important;
    line-height: inherit !important;
    font-weight: inherit !important;
    letter-spacing: inherit !important;
  }

  .tour-program-area .tour-price-panel .ttb-clean-cta-icon {
    flex: 0 0 auto !important;
  }

}

html body .tour-program-area .tour-price-panel
.tour-download-button > .ttb-clean-cta-label-download
> .ttb-download-label-portrait {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

html body .tour-program-area .tour-price-panel
.tour-download-button > .ttb-clean-cta-label-download
> .ttb-download-label-line {
  visibility: visible !important;
  opacity: 1 !important;
}

@media (min-width: 901px) and (max-width: 1100px) and (min-height: 1200px) and (orientation: portrait) {
  .tour-program-area .tour-price-panel .tour-download-button {
    padding-inline: 16px !important;
  }

  html body .tour-program-area .tour-price-panel
  .tour-download-button > .ttb-clean-cta-label-download {
    display: inline-flex !important;
    flex: 0 1 auto !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #00458f !important;
    font-size: 15px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    letter-spacing: -0.015em !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  html body .tour-program-area .tour-price-panel
  .tour-download-button > .ttb-clean-cta-label-download
  > .ttb-download-label-line {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
  }

  html body .tour-program-area .tour-price-panel
  .tour-download-button > .ttb-clean-cta-label-download
  > .ttb-download-label-portrait {
    display: inline-block !important;
    visibility: visible !important;
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    opacity: 1 !important;
    color: inherit !important;
    font: inherit !important;
    letter-spacing: inherit !important;
    white-space: nowrap !important;
  }

}

@media (max-width: 767px) {
  html body .tour-program-area .tour-price-panel
  .tour-download-button > .ttb-clean-cta-label-download {
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1px !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: calc(100% - 36px) !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    white-space: normal !important;
    text-align: center !important;
  }

  html body .tour-program-area .tour-price-panel
  .tour-download-button > .ttb-clean-cta-label-download
  > .ttb-download-label-line {
    display: block !important;
    width: auto !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 15px !important;
    line-height: 1.02 !important;
    font-weight: 700 !important;
    letter-spacing: -0.035em !important;
    white-space: nowrap !important;
    text-align: center !important;
  }

}

@media (max-width: 380px) {
  html body .tour-program-area .tour-price-panel
  .tour-download-button > .ttb-clean-cta-label-download
  > .ttb-download-label-line {
    font-size: 13.3px !important;
    letter-spacing: -0.04em !important;
  }

}

@media (min-width: 1181px) and (max-width: 1360px) {
  body .ttb-country-mega--foreign {
    width: calc(100vw - 40px) !important;
    max-width: none !important;
    left: 50vw !important;
    transform: translateX(-50%) !important;
  }

  body .nav-mega-item:hover > .ttb-country-mega--foreign,
  body .nav-mega-item:focus-within > .ttb-country-mega--foreign {
    transform: translateX(-50%) !important;
  }

}

@media (min-width: 1361px) {
  body .ttb-country-mega--foreign {
    width: min(1540px, calc(100vw - 64px)) !important;
    max-width: none !important;
    left: 50vw !important;
    transform: translateX(-50%) !important;
  }

  body .nav-mega-item:hover > .ttb-country-mega--foreign,
  body .nav-mega-item:focus-within > .ttb-country-mega--foreign {
    transform: translateX(-50%) !important;
  }

  body .ttb-country-mega--foreign .ttb-country-mega-inner {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    align-items: stretch !important;
  }

  body .ttb-country-mega--foreign .ttb-country-col {
    padding: 14px 16px 18px !important;
    border-right: 1px solid #edf2f7 !important;
    background: #fff !important;
  }

  body .ttb-country-mega--foreign .ttb-country-col:last-child {
    border-right: 0 !important;
  }

  body .ttb-country-mega--foreign .ttb-country-col > h3 {
    min-height: 48px !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    margin: 0 0 8px !important;
    padding: 0 0 9px !important;
    border-bottom: 1px solid #edf2f7 !important;
    color: #0c2d62 !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    text-align: center !important;
  }

  body .ttb-country-mega--foreign .menu-heading-pill {
    width: auto !important;
    max-width: 100% !important;
    min-height: 36px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: row !important;
    gap: 7px !important;
    padding: 3px 12px 3px 7px !important;
    overflow: hidden !important;
    border: 1px solid #dce8f7 !important;
    border-radius: 999px !important;
    background: #f6f9fe !important;
    box-shadow: 0 2px 8px rgba(15, 63, 123, 0.05) !important;
    white-space: nowrap !important;
  }

  body .ttb-country-mega--foreign .menu-heading-pill > span:last-child {
    display: inline-block !important;
    color: #0c2d62 !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  body .ttb-country-mega--foreign .menu-heading-real-icon,
body .ttb-country-mega--foreign .menu-heading-pill--sub .menu-heading-real-icon {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    max-width: 28px !important;
    flex: 0 0 28px !important;
    display: block !important;
    object-fit: contain !important;
    border-radius: 50% !important;
    transform: scale(1.42) !important;
    transform-origin: center center !important;
  }

  body .ttb-country-mega--foreign .ttb-country-col .ttb-country-subhead {
    min-height: 47px !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;
    margin: 8px 0 7px !important;
    padding: 9px 0 0 !important;
    border-top: 1px solid #edf2f7 !important;
    color: #0c2d62 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    text-align: center !important;
  }

  body .ttb-country-mega--foreign .menu-heading-pill--sub {
    min-height: 34px !important;
    padding: 3px 11px 3px 7px !important;
    gap: 7px !important;
  }

  body .ttb-country-mega--foreign .menu-heading-pill--sub > span:last-child {
    font-size: 14px !important;
    line-height: 1 !important;
  }

  body .ttb-country-mega--foreign .ttb-country-link {
    min-height: 36px !important;
    height: 36px !important;
    grid-template-columns: 25px minmax(0, 1fr) 44px !important;
    gap: 8px !important;
  }

  body .ttb-country-mega--foreign .ttb-country-link .country-name,
body .ttb-country-mega--foreign .ttb-country-link:hover .country-name,
body .ttb-country-mega--foreign .ttb-country-link:focus .country-name {
    font-size: 14.5px !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
  }

}

body .ttb-country-mega--foreign .ttb-country-1080-lower-grid {
  display: none;
}

@media (min-width: 901px) and (max-width: 1180px) and (orientation: portrait) {
  body .ttb-country-mega--foreign {
    width: min(1060px, calc(100vw - 20px)) !important;
    max-width: none !important;
    max-height: calc(100vh - 205px) !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    border-radius: 0 0 11px 11px !important;
    background: #fff !important;
    box-shadow: 0 18px 38px rgba(11, 45, 91, 0.14) !important;
    scrollbar-width: thin !important;
    scrollbar-color: #b8cce5 transparent !important;
    --ttb1080-badge-width: 40px;
    --ttb1080-badge-height: 24px;
  }

  body .ttb-country-mega--foreign .ttb-country-mega-inner {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    grid-auto-flow: row !important;
    align-items: start !important;
    gap: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 0 12px !important;
    background: #fff !important;
  }

  body .ttb-country-mega--foreign .ttb-country-mega-inner > .ttb-country-col:nth-child(-n + 4) {
    grid-row: 1 !important;
    min-width: 0 !important;
    padding: 13px 14px 12px !important;
    border-right: 1px solid #e8eef6 !important;
    background: transparent !important;
  }

  body .ttb-country-mega--foreign .ttb-country-mega-inner > .ttb-country-col:nth-child(1) {
    grid-column: 1 !important;
  }

  body .ttb-country-mega--foreign .ttb-country-mega-inner > .ttb-country-col:nth-child(2) {
    grid-column: 2 !important;
  }

  body .ttb-country-mega--foreign .ttb-country-mega-inner > .ttb-country-col:nth-child(3) {
    grid-column: 3 !important;
  }

  body .ttb-country-mega--foreign .ttb-country-mega-inner > .ttb-country-col:nth-child(4) {
    grid-column: 4 !important;
    border-right: 0 !important;
  }

  body .ttb-country-mega--foreign .ttb-country-col--desktop-secondary {
    display: none !important;
  }

  body .ttb-country-mega--foreign .ttb-country-1080-lower-grid {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    align-items: start !important;
    gap: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border-top: 1px solid #e8eef6 !important;
    background: transparent !important;
  }

  body .ttb-country-mega--foreign .ttb-country-1080-zone {
    min-width: 0 !important;
    min-height: 0 !important;
    padding: 13px 14px 16px !important;
    border: 0 !important;
    border-right: 1px solid #e8eef6 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body .ttb-country-mega--foreign .ttb-country-1080-zone:last-child {
    border-right: 0 !important;
  }

  body .ttb-country-mega--foreign .ttb-country-col > h3,
body .ttb-country-mega--foreign .ttb-country-1080-zone > h3 {
    min-height: 45px !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    margin: 0 0 7px !important;
    padding: 0 0 8px !important;
    border: 0 !important;
    border-bottom: 1px solid #e8eef6 !important;
    background: transparent !important;
    color: #0c2d62 !important;
    text-align: center !important;
    box-shadow: none !important;
  }

  body .ttb-country-mega--foreign .menu-heading-pill {
    width: auto !important;
    max-width: 100% !important;
    min-height: 34px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: row !important;
    gap: 6px !important;
    padding: 3px 11px 3px 6px !important;
    overflow: visible !important;
    border: 1px solid #d9e6f5 !important;
    border-radius: 999px !important;
    background: #f7faff !important;
    box-shadow: 0 2px 8px rgba(15, 63, 123, 0.05) !important;
    white-space: nowrap !important;
  }

  body .ttb-country-mega--foreign .menu-heading-pill > span:last-child,
body .ttb-country-mega--foreign .menu-heading-pill--sub > span:last-child {
    display: inline-block !important;
    min-width: 0 !important;
    max-width: none !important;
    overflow: visible !important;
    color: #0c2d62 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    text-overflow: clip !important;
  }

  body .ttb-country-mega--foreign .menu-heading-real-icon,
body .ttb-country-mega--foreign .menu-heading-pill--sub .menu-heading-real-icon {
    width: 26px !important;
    height: 26px !important;
    min-width: 26px !important;
    max-width: 26px !important;
    flex: 0 0 26px !important;
    display: block !important;
    object-fit: contain !important;
    border-radius: 50% !important;
    transform: scale(1.38) !important;
    transform-origin: center center !important;
  }

  body .ttb-country-mega--foreign .ttb-country-1080-zone .ttb-country-subhead {
    min-height: 45px !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    margin: 7px 0 5px !important;
    padding: 8px 0 8px !important;
    border: 0 !important;
    border-top: 1px solid #e8eef6 !important;
    border-bottom: 1px solid #e8eef6 !important;
    background: transparent !important;
    color: #0c2d62 !important;
    text-align: center !important;
    box-shadow: none !important;
  }

  body .ttb-country-mega--foreign .menu-heading-pill--sub {
    min-height: 34px !important;
    gap: 6px !important;
    padding: 3px 11px 3px 6px !important;
  }

  body .ttb-country-mega--foreign .ttb-country-link,
body .ttb-country-mega--foreign .ttb-country-link + .ttb-country-link {
    width: 100% !important;
    min-height: 35px !important;
    height: 35px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: 23px minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 7px !important;
    border-radius: 8px !important;
  }

  body .ttb-country-mega--foreign .ttb-country-link .country-flag {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    flex-basis: 22px !important;
    font-size: 12px !important;
  }

  body .ttb-country-mega--foreign .ttb-country-link .country-name,
body .ttb-country-mega--foreign .ttb-country-link:hover .country-name,
body .ttb-country-mega--foreign .ttb-country-link:focus .country-name {
    min-width: 0 !important;
    max-width: none !important;
    overflow: visible !important;
    color: #142844 !important;
    font-size: 13.4px !important;
    font-weight: 500 !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
    text-overflow: clip !important;
  }

  body .ttb-country-mega--foreign .ttb-country-link b {
    width: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
    height: 24px !important;
    margin-left: 0 !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    justify-self: end !important;
    border-radius: 8px !important;
    font-size: 11px !important;
    line-height: 1 !important;
  }

  body .ttb-country-mega--foreign::-webkit-scrollbar {
    width: 7px !important;
  }

  body .ttb-country-mega--foreign::-webkit-scrollbar-track {
    background: transparent !important;
  }

  body .ttb-country-mega--foreign::-webkit-scrollbar-thumb {
    border-radius: 999px !important;
    background: #b8cce5 !important;
  }

  body .ttb-country-mega--foreign .ttb-country-1080-zone .ttb-country-link .country-name,
body .ttb-country-mega--foreign .ttb-country-1080-zone .ttb-country-link:hover .country-name,
body .ttb-country-mega--foreign .ttb-country-1080-zone .ttb-country-link:focus .country-name {
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.15 !important;
  }

  body .ttb-country-mega--foreign
  .ttb-country-mega-inner > .ttb-country-col:nth-child(-n + 4)
  .ttb-country-link,
body .ttb-country-mega--foreign
  .ttb-country-1080-zone
  .ttb-country-link {
    width: 100% !important;
    box-sizing: border-box !important;
    display: grid !important;
    grid-template-columns: 23px minmax(0, 1fr) var(--ttb1080-badge-width) !important;
    column-gap: 7px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  body .ttb-country-mega--foreign
  .ttb-country-mega-inner > .ttb-country-col:nth-child(-n + 4)
  .ttb-country-link > b,
body .ttb-country-mega--foreign
  .ttb-country-1080-zone
  .ttb-country-link > b {
    width: var(--ttb1080-badge-width) !important;
    min-width: var(--ttb1080-badge-width) !important;
    max-width: var(--ttb1080-badge-width) !important;
    height: var(--ttb1080-badge-height) !important;
    min-height: var(--ttb1080-badge-height) !important;
    max-height: var(--ttb1080-badge-height) !important;
    margin: 0 !important;
    padding: 0 !important;
    position: static !important;
    inset: auto !important;
    transform: none !important;
    justify-self: stretch !important;
    align-self: center !important;
    box-sizing: border-box !important;
    font-size: 11px !important;
    line-height: 1 !important;
  }

  body .ttb-country-mega--domestic {
    width: min(1060px, calc(100vw - 20px)) !important;
    max-width: none !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    overflow-x: hidden !important;
  }

  body .nav-mega-item:hover > .ttb-country-mega--domestic,
  body .nav-mega-item:focus-within > .ttb-country-mega--domestic {
    transform: translateX(-50%) !important;
  }

  body .ttb-country-mega--domestic .ttb-country-mega-inner {
    width: 100% !important;
    min-width: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    align-items: start !important;
    gap: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  body .ttb-country-mega--domestic .ttb-country-col {
    width: 100% !important;
    min-width: 0 !important;
    padding: 15px 18px 18px !important;
    box-sizing: border-box !important;
  }

  body .ttb-country-mega--domestic .ttb-country-link {
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    grid-template-columns: 24px minmax(0, 1fr) 42px !important;
    column-gap: 9px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  body .ttb-country-mega--domestic .ttb-country-link .country-name {
    min-width: 0 !important;
    max-width: none !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
  }

  body .ttb-country-mega--domestic .ttb-country-link > b {
    width: 42px !important;
    min-width: 42px !important;
    max-width: 42px !important;
    justify-self: end !important;
    margin: 0 !important;
  }

  .ttb-site-footer {
    overflow: hidden !important;
  }

  .ttb-site-footer .ttb-footer-inner {
    width: min(940px, calc(100% - 84px)) !important;
    max-width: 940px !important;
    margin: 0 auto !important;
    padding: 58px 0 50px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1.45fr)
      minmax(0, .72fr)
      minmax(0, .85fr)
      minmax(0, 1.18fr) !important;
    gap: 30px !important;
    align-items: start !important;
    justify-content: center !important;
    text-align: left !important;
    transform: none !important;
  }

  .ttb-site-footer .ttb-footer-brand,
.ttb-site-footer .ttb-footer-col {
    min-width: 0 !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .ttb-site-footer .ttb-footer-brand-row {
    gap: 14px !important;
    margin: 0 0 20px !important;
  }

  .ttb-site-footer .ttb-footer-logo {
    width: 78px !important;
    height: 78px !important;
    flex: 0 0 78px !important;
    padding: 9px !important;
    border-radius: 16px !important;
  }

  .ttb-site-footer .ttb-footer-brand h3 {
    margin: 0 !important;
    font-size: 25px !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
  }

  .ttb-site-footer .ttb-footer-brand p,
.ttb-site-footer .ttb-footer-col p,
.ttb-site-footer .ttb-footer-col a {
    font-size: 14px !important;
    line-height: 1.72 !important;
  }

  .ttb-site-footer .ttb-footer-brand p {
    max-width: 292px !important;
  }

  .ttb-site-footer .ttb-footer-col {
    padding-top: 4px !important;
  }

  .ttb-site-footer .ttb-footer-col h4 {
    margin: 0 0 20px !important;
    font-size: 17px !important;
    line-height: 1.2 !important;
  }

  .ttb-site-footer .ttb-footer-col a {
    margin-bottom: 9px !important;
  }

  .ttb-site-footer .ttb-footer-register {
    margin-top: 8px !important;
    padding: 7px 24px !important;
  }

  .ttb-site-footer .ttb-footer-contact p {
    gap: 7px !important;
    margin: 0 0 8px !important;
    white-space: nowrap !important;
  }

  .ttb-site-footer .ttb-footer-socials {
    gap: 10px !important;
    margin-top: 16px !important;
    flex-wrap: wrap !important;
  }

  .ttb-site-footer .ttb-footer-socials a {
    width: 34px !important;
    height: 34px !important;
    border-radius: 9px !important;
  }

  .ttb-site-footer .ttb-social-facebook {
    font-size: 18px !important;
  }

  .ttb-site-footer .ttb-footer-socials svg {
    width: 17px !important;
    height: 17px !important;
  }

  .ttb-site-footer .ttb-footer-meta-wrap {
    padding-bottom: 30px !important;
  }

  .ttb-site-footer .ttb-footer-meta-inner,
.ttb-site-footer .ttb-footer-bottom-final {
    width: min(940px, calc(100% - 84px)) !important;
    max-width: 940px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

}

@media (max-width: 767px) {
  html,
body {
    overflow-x: hidden !important;
  }

  body .site-header {
    display: block !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1200 !important;
    overflow: visible !important;
    background: #ffffff !important;
  }

  body .site-header .header-main,
body .container.header-main {
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 68px !important;
    height: 68px !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
  }

  body .mobile-menu-toggle {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    z-index: 1202 !important;
  }

  body .mobile-menu-overlay {
    display: block !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: 2147483000 !important;
    background: rgba(6, 16, 32, .62) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity .24s ease, visibility .24s ease !important;
  }

  body .mobile-menu-panel {
    display: block !important;
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: min(88vw, 390px) !important;
    max-width: 390px !important;
    height: 100dvh !important;
    z-index: 2147483001 !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    background: #ffffff !important;
    transform: translate3d(-105%, 0, 0) !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transition: transform .28s ease !important;
    will-change: transform !important;
  }

  body.mobile-menu-open {
    overflow: hidden !important;
    touch-action: none !important;
  }

  body.mobile-menu-open .mobile-menu-overlay {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  body.mobile-menu-open .mobile-menu-panel {
    transform: translate3d(0, 0, 0) !important;
  }

}

.tour-program-card.is-popup-filtered-out {
  display: none !important;
}
