/* New Banner Itinerary */

.itinerary__banner .breadcrumb ul li a {
  font-size: 13px;
}
.itinerary__banner {
  padding: 50px 0 0 0;
  /* margin-bottom: 50px; */
}

.iti__banner__title {
  display: inline-block;
  letter-spacing: -0.03em;
  /* margin-bottom: 40px; */
}

.iti__banner__title h1 {
  color: var(--primary);

  font-weight: 700;
  font-size: 42px;

  letter-spacing: -0.02em;

  color: #000000;
}
.banner-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 20px;
}

.banner-grid .item {
  grid-column: span 4;
}

.banner-grid .item:first-child {
  grid-row: span 2;
  grid-column: span 5;
}

.banner-grid .item:nth-child(2) {
  grid-row: span 2;
  grid-column: span 3;
}

.banner-grid .item:nth-child(n + 5) {
  display: none;
}

.fancybox__container {
  z-index: 99999;
}

.banner__img {
  width: 100%;
  height: 100%;
  cursor: pointer;
  aspect-ratio: 16/9;
}

.banner__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.banner-mobile .banner__img {
  height: 350px;
}

.banner-desktop {
  position: relative;
}

.view__img {
  position: absolute;
  right: 15px;
  top: 15px;
  font-weight: 500;
  border-radius: 2px;
  padding: 8px 8px;
  font-size: 12px;
  background: #fff;
  color: #111;
  z-index: 99;
}

.view__img:hover {
  background: var(--primary);
  color: #fff;
}

.iti__title {
  margin-bottom: 20px;
}

.iti__title h1 {
  color: var(--primary);
  margin: 0;
  margin-bottom: 15px;
}

.iti__title p {
  margin: 0;
  font-weight: 600;
  width: 75%;
  color: #444;
}
/* New Banner Itinerary */

.tripdetails__header {
  display: none;
}

.tripdetails__header {
  z-index: 998;
  background-color: #e8f1f8;
  background: var(--primary);
  position: sticky;
}

.trip-sub-nav {
  margin: 0;
  padding: 0;
  height: 50px;
  align-items: center;
  max-width: 100%;
  display: flex;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
}
.trip-sub-nav::-webkit-scrollbar {
  display: none;
}
.trip-sub-nav {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.trip-sub-nav li {
  height: 100%;
  display: inline-block;
  list-style: none;
  cursor: pointer;
}
.trip-sub-nav li > a {
  display: inline-flex;
  height: 100%;
  line-height: 100%;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  padding: 11px 16px;
  border-radius: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  align-items: center;
  white-space: nowrap;
}

.trip-sub-nav li.active-tab > a,
.trip-sub-nav li:hover > a {
  background-color: var(--secondary);
  color: #fff;
  /* pointer-events: none; */
}

.trip__facts {
  padding: 30px;
  background: #e7eef6;
  margin-bottom: 30px;
  border-radius: 10px;
}

.facts__item {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}

.facts__item > div {
  flex: 0 0 33.33333333%;
  margin-bottom: 40px;
  padding: 0 12px;
}

.fact__card {
  position: relative;
  padding-left: 50px;
}

.fact__icon {
  position: absolute;
  left: 0;
  top: 5px;
}

.fact__icon i {
  width: 35px;
  font-size: 25px;
  height: 35px;
  color: var(--primary);
}

.fact__card span {
  display: block;
  line-height: 1.3;
}

.fact__icon img {
  width: 40px;
}

.fact__title {
  font-size: 14px;
  line-height: 22px;
  color: #4a4a4a;
  font-weight: 400;
}

.fact__content,
.fact-content {
  font-size: 15px;
  color: #1c1c1c;
  position: relative;

  font-weight: 600;
  line-height: 28px;

  letter-spacing: -0.01em;
  color: #0d4f9e;
}

.fact-content .fact__content {
  display: inline-block;
}

.fact__content svg {
  vertical-align: middle;
}

.fact__content[data-tooltip]::after {
  border-radius: 2px;
  min-width: 250px;
  max-width: 250px;
  content: attr(data-tooltip);
  position: absolute;
  bottom: 29px;
  right: 0;
  background-color: rgba(255, 255, 255, 0.94);
  box-shadow: rgba(0, 0, 0, 0.24) 0 0 24px;
  color: rgba(0, 0, 0, 0.68);
  white-space: normal;
  padding: 15px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 9;
  backdrop-filter: blur(8px);
}

.fact-content:hover .fact__content[data-tooltip]::before {
  content: "";
  position: absolute;
  border-width: 10px;
  border-style: solid;
  border-color: #dbdbdb transparent transparent transparent;
  top: -16px;
  left: -87%;
  transform: translateX(-50%);
}

.fact-content:hover .fact__content::after {
  opacity: 1;
  visibility: visible;
  transform: translateY(-5px); /* Slide-up effect */
}

.highlights__section {
  padding: 30px;
  background: #e7eef6;
  border-radius: 10px;
}

.highlights__section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.highlights__section ul li {
  position: relative;
  padding-left: 27px;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 27px;
  color: #111;
}

.highlights__section p {
  font-size: 16px;
  color: #111;
  line-height: 28px;
}

.highlights__section ul li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 22px;
  height: 22px;
  background-image: url("../img/icon-tick-secondary.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.iti__section {
  padding-bottom: 50px;
}

.iti__date {
  position: relative;
  margin-right: 30px;
}

.iti__date .trip__days {
  margin-right: 0;
}

.iti__item > div:last-child {
  width: 100%;
}

.iti__date .days__seperator {
  display: none;
  padding: 20px 0;
  text-align: center;
  margin: 10px 0;
  /* margin-right: 30px; */
  color: #75aa49;
  position: relative;
}

.iti__date .days__seperator small {
  background: #fff;
  padding: 5px 0;
}
.iti__date .days__seperator::before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  opacity: 0.1;
  background: #000000;
  left: 50%;
  top: 0;
  z-index: -1;
  transform: translateX(-50%);
}

.iti__item .trip__days__last {
  display: none;
}

.iti__item.active .days__seperator,
.iti__item.active .days__seperator + .trip__days__last {
  display: block;
}

.iti__content {
  /* margin-left: 100px; */
  display: none;
  margin-top: 12px;
}

.iti__content p {
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 12px;
}

.iti__date svg {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 44px;
  height: 43px;
}

.iti__date .trip__days strong {
  font-size: 22px;
  letter-spacing: -0.03em;
  width: 44px;
  height: 43px;
  line-height: 47px;
}

.iti__date .trip__days span {
  font-size: 12px;
  right: -15px;
  bottom: -4px;
}

/* .iti__date span {
  text-align: center;
  display: flex;
  align-items: center;
  height: 45px;
  justify-content: center;
  width: 45px;
  color: var(--secondary);
  flex-direction: column;
  font-size: 16px;
  margin-top: 4px;
}

.iti__date small {
  color: var(--primary);
  display: block;
  font-size: 12px;
  text-transform: uppercase;
} */

.iti__header {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  position: relative;
}

.iti__header::after {
  content: "\2b";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 0;
  color: var(--primary);
  font-size: 19px;
  width: 40px;
  background: #fff;
  border-radius: 40px;
  text-align: center;
  transition: 0.3s linear;
}

.itinerary__wrapper .iti__title {
  margin-bottom: 0;
  width: 75%;
}

.itinerary__specs-item span {
  color: #333;
  font-size: 14px;
}

.itinerary__specs-item small {
  display: block;
  font-size: 15px;
  color: var(--primary);
}

.expand-all-accord {
  padding: 10px 18px;
  background: var(--primary);
  color: #fff;
  display: inline-block;
  font-size: 14px;
  border-radius: 5px;
}

.expand-all-accord:hover {
  color: #fff;
  background: var(--secondary);
}

.iti__item.active .iti__header::after {
  transform: rotate(45deg);
}

.iti__header h3 {
  font-weight: 500;
  color: #0d0d0d;
  font-family: var(--primary-font);
  font-size: 19px;
}

.iti__header:hover h3,
.iti__item.active h3 {
  color: var(--primary);
}

.iti__item {
  display: flex;
  padding-bottom: 15px;
  position: relative;
  padding-left: 15px;
  padding-top: 15px;
  border-top: 1px solid;
  border-image: linear-gradient(to left, #eaeaea 50%, rgba(0, 0, 0, 0) 100%) 1;
}
.iti__item:first-child {
  border: none;
  border-image: none;
}
.iti__item::before {
  content: "";
  /* background: #ccc; */
  width: 120px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 39px;
  border-radius: 16px;
  pointer-events: none;
  border-left: 1px solid #ccc;
}

.iti__item:last-child::before {
  display: none;
}

.itinerary__specs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: #000;
  background-color: #e7eef6;
  padding: 3px 24px;
  margin: 26px 0 0;
  border-radius: 10px;
}
.itinerary__specs-item {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 0;
}
.itinerary__specs-item:not(:last-child) {
  margin-right: 15px;
}
.itinerary__specs-item img,
.itinerary__specs-item svg {
  height: auto;
  width: 30px;
  margin-right: 10px;
}

.itinerary__specs-item .fact__card {
  padding-left: 35px;
}

.wh__included {
  margin-bottom: 20px;
  padding: 30px;
  background: #e7eef6;
  border-radius: 10px;
}

.wh__included.wh__excluded {
  background: #f0dfdf;
}

.wh__included ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wh__included ul li {
  padding-left: 30px;
  margin-bottom: 8px;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0.01em;

  color: #000000;
}

.wh__included ul li {
  background: url("../img/icon-included.svg") 0 0 no-repeat;
  background-size: 18px;
  background-position: left 4px;
}

.wh__included.wh__excluded ul li {
  background-image: url("../img/icon-excluded.svg");
}

.wh__included {
  margin-bottom: 20px;
}

.additional__wrapper:not(:last-child) {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #4a4a4a;
}

.additional__wrapper .content__area h2,
.additional__wrapper .content__area h3,
.additional__wrapper .content__area h4,
.additional__wrapper .content__area h5,
.additional__wrapper .content__area h6 {
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #404040;
}

.additional__wrapper .content__area h3 {
  font-size: 28px;
}

.additional__wrapper .content__area h3:not(:first-child) {
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1px dashed #4a4a4a;
}

.additional__informations > div {
  padding: 30px;
  background: #ffffff;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}

.map__wrapper {
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}

.map__wrapper img {
  border-radius: 10px;
}

.gallery__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 15px;
}

.gallery-wrap {
  grid-column: span 2;
}

.gallery-wrap:first-child {
  grid-column: span 2 / span 2;
  grid-row: span 2 / span 2;
}

.gallery-wrap:nth-child(2) {
  grid-column-start: 3;
  grid-row-start: 2;
}

.gallery-wrap:nth-child(3) {
  grid-column-start: 4;
  grid-row-start: 2;
}

.gallery-wrap:last-child {
  grid-column: span 2 / span 2;
  grid-column-start: 3;
  grid-row-start: 1;
}

.gallery__wrapper > a {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery__wrapper img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  border-radius: 10px;
}

.iti-mobile .intl-tel-input.iti-container {
  z-index: 99999;
}

.sidebar__wrapper {
  background: #ffffff;
  box-shadow: 4px 2px 25px 4px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  /* padding-top: 30px; */
  position: relative;
}

.sidebar__price {
  padding: 20px;
  text-align: center;
  border-bottom: 1px dashed #444;
}

.sidebar__price p {
  font-weight: 700;
  font-size: 25px;
  letter-spacing: -0.02em;
  color: #0d4f9e;
}

.sidebar__price p del {
  font-size: 20px;
  letter-spacing: -0.02em;
  color: #0d4f9e;
  opacity: 0.6;
}

.sidebar__price p small {
  font-weight: 600;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: -0.01em;
  color: #0c0c0d;
}

.sidebar__bottom {
  padding: 30px;
}

.btn__wrap .btn {
  width: 100%;
  margin-top: 10px;
  padding: 13px 25px;
}
.counter-wrapper {
  margin-top: 8px;
}

.counter-wrapper input {
  background: #e7eef6;
  border-radius: 10px;
  height: 45px;
  text-align: center;
  border: none;
  width: 100%;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.01em;
  color: #000000;
  opacity: 0.45;
  font-family: var(--secondary-font);
  font-weight: bold;
}

.counter-wrapper {
  position: relative;
}
.counter-wrapper button {
  position: absolute;
  left: 0;
  top: 0;
  width: 45px;
  height: 45px;
  border: none;
  color: var(--secondary);
  background: transparent;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  border: 1px solid #a2a7ad;
  z-index: 1;
  cursor: pointer;
}

.counter-wrapper button:hover {
  background: var(--secondary);
  color: #fff;
}

.counter-wrapper button.dec-btn {
  left: auto;
  right: 0;
}

.addTraveller {
  text-align: center;
  margin-bottom: 12px;
}

.sidebar__wrapper .trip__card--ribbon {
  left: 50%;
  transform: translateX(-50%);
}

.pdf-loader {
  width: 25px;
  display: none;
}
.pdf__download {
  font-family: var(--primary-font);
  padding: 12px 15px;
  display: block;
  margin-top: 15px;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #477aba;
  width: 100%;
  background: transparent;
  border: 1px solid rgba(13, 79, 158, 0.3);
  border-radius: 10px;
}

.pdf__download svg {
  margin-right: 6px;
}

.pdf__download:hover {
  background: var(--primary);
  color: #fff;
}

.pdf__download:hover svg path {
  fill: #fff;
}

.single .newsletter__section,
.page-template-template-itinerary .newsletter__section {
  margin-top: 0;
}

.foter__cta__btn {
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(245, 245, 245, 1);
  padding: 10px 15px;
  padding-left: 70px;
  z-index: 99;
  text-align: center;
  display: none;
  align-items: center;
  justify-content: space-between;
}

.foter__cta__btn .btn {
  padding: 0px 19px;
  line-height: 38px;
  font-size: 13px;
  border-radius: 5px;
}

.foter__cta__btn strong {
}

.footer__price {
  /* text-align: center; */
}

.footer__price strong {
  font-size: 17px;
  color: #fff;
}

.footer__price .trek__meta > div {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  text-align: left;
}

.footer__price span {
  color: #111;
  font-size: 16px;
  font-weight: 600;
}

.footer__price span small {
  font-size: 13px;
  display: block;
}

.footer__price .trek__meta {
  margin-top: 0;
  justify-content: center;
  gap: 15px;
  color: #111;
}

.footer__price .trek__price del {
  color: #111;
}

.footer__price .trip__total__days {
  font-size: 14px;
}

.itinerary__cta--section {
  padding: 30px;
  background: var(--primary);
  border-radius: 10px;
  margin-bottom: 30px;
}

.itinerary__cta--section h2 {
  margin-bottom: 12px;
  color: #fff;
}

.itinerary__cta--section p {
  color: #f2f2f2;
  margin-top: 12px;
  margin-bottom: 30px;
}

.trip__card--ribbon + .sidebar__price {
  padding-top: 40px;
}

.itinerary__cta--section .btn:hover {
  background: #333;
}

@media (max-width: 959px) {
  .fact__icon img {
    width: 30px;
  }

  .iti__header h3 {
    padding-right: 35px;
    font-size: 17px;
  }

  .trip__facts {
    padding: 20px;
  }

  .iti__title {
    font-size: 28px;
  }
  .fact__card {
    padding-left: 39px;
  }

  .fact__card span {
    font-size: 12px;
  }

  .fact__content,
  .fact-content {
    font-size: 14px;
  }

  .facts__item > div {
    flex: 0 0 50%;
    margin-bottom: 20px;
  }

  .iti__header {
    gap: 10px;
  }

  .facts__item > div:last-child {
    margin-bottom: 0;
  }

  .highlights__section,
  .wh__included {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .iti__date {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 12px;
  }

  .iti__date .days__seperator::before {
    width: 100%;
    height: 1px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .itinerary__wrapper .iti__title {
    margin-bottom: 12px;
  }

  .iti__date .days__seperator {
    display: block;
    padding: 0 20px;
    margin: 0 10px;
  }

  .iti__item .trip__days__last {
    display: block;
  }
  .iti__date .days__seperator small {
    padding: 0 15px;
  }
  .banner-grid .item {
    display: none;
  }

  .banner-grid .item:first-child {
    display: block;
    grid-column: span 12;
  }

  .iti__banner__title h1 {
    font-size: 35px;
  }
  .foter__cta__btn {
    display: flex;
    align-items: center;
    position: sticky;
    bottom: 0;
  }

  .iti__banner__title {
    /* margin-bottom: 20px; */
  }

  .iti__item {
    display: block;
  }
}
