/* blockquote */
blockquote {
  color: #444;
  background: #fffbea;
  border-left: 6px solid var(--color-gold);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  padding: 1em 1.5em;
  font-size: 16px;
}
blockquote p {
  margin: 0!important;
}

/* misc */
::selection {
  background: var(--color-gold);
  color: var(--color-white);
}

/* img-cover */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* cursor-pointer */
.cursor-pointer {
  cursor: pointer;
}

/* shadow-hover */
.shadow-hover {
  transition: transform var(--transition-base),box-shadow var(--transition-base);
}
.shadow-hover:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

/* description-text */
.description-text {
  text-align: center;
  width: 65%;
  margin: 0 auto;
  line-height: 1.7;
}

/* difficulty-bars */
.difficulty-bars .difficulty-bar,.tour-card01-uros .difficulty-bars .difficulty-bar {
  background-color: var(--color-gold);
}

/* datos_itinerario */
.datos_itinerario ul li::before,.pricelist ul li::before,.single_page ul li::before,.trainhotel_section ul li::before {
  display: none!important;
}

/* tour-content */
.tour-content ul li {
  list-style: none;
  position: relative;
  padding-left: .85rem;
}

/* acf-included */
.acf-included ul li::before,.acf-no-included li::before,.acf-recommendations li::before {
  content: ""!important;
  position: absolute!important;
  left: -5px!important;
  top: .75em!important;
  width: 5px!important;
  height: 5px!important;
  border-radius: 50%!important;
}
.acf-included ul li::before {
  background-color: #10b41d!important;
}

/* acf-no-included */
.acf-no-included li::before {
  background-color: #b41010!important;
}

/* acf-recommendations */
.acf-recommendations li::before {
  background-color: #173eda!important;
}

/* tour-info-container */
.tour-info-container {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  font-family: 'Open Sans',Arial,sans-serif;
}

/* info-block */
.info-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* info-text */
.info-text {
  display: flex;
  flex-direction: column;
}

/* info-label */
.info-label {
  color: #0d2137;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
}

/* info-value */
.info-value {
  color: #334155;
  font-weight: 400;
  font-size: 11px;
  line-height: 1;
  margin-top: 5px;
}

/* info-icon */
.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-icon svg {
  width: 25px;
  height: 25px;
  fill: #edbd4f;
  stroke: rgba(237,189,79,0);
}
.info-icon img {
  height: 30px;
}

/* sites_to_visit */
.sites_to_visit {
  color: #002a63e3;
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: .8rem;
}
.sites_to_visit svg {
  width: 15px;
  height: 15px;
  fill: #edbd4f;
  stroke: rgba(237,189,79,0);
}

/* subtitle_box */
.subtitle_box {
  border-bottom: 1px solid var(--color-border-light);
}
.subtitle_box h2 {
  margin-bottom: 0;
}

/* barrita-vertical */
span.barrita-vertical {
  margin: 0 5px;
  color: var(--color-black);
}

/* note */
.note,.note_pricing,.note_upgrades {
  padding: 15px;
  border-radius: var(--radius-lg);
}
.note {
  background-color: var(--color-white);
  border: 1px solid rgba(0,0,0,.18);
  margin-top: 25px;
}

/* note_upgrades */
.note_upgrades {
  background-color: rgba(255,196,7,.02);
  border: 1px solid var(--color-gold);
  margin: 30px 0;
}

/* border0 */
.border0 {
  border: 1px solid transparent;
}

/* head */
.head {
  position: relative;
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
}
.head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 1px;
  background-color: var(--color-gold);
}

/* h_price */
span.h_price {
  right: 0;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-primary);
}

/* pricelist */
.pricelist ul {
  padding: 0;
  margin: 0 0 15px!important;
}
.pricelist ul li {
  border-bottom: 1px dotted #aaa;
  padding: 10px!important;
}
.pricelist li.best_value {
  background-color: #f7f7f7;
}

/* date_price */
span.date_price {
  position: absolute;
  right: 10px;
  font-size: 1.2rem;
  font-weight: 700;
}

/* best */
span.best {
  position: relative;
  top: -2px;
  margin-left: 10px;
  padding: 5px 10px;
  border: 1px solid orange;
  border-radius: 7px;
  background-color: rgba(255,165,0,.05);
  color: orange;
  font-size: .6rem;
  font-weight: 700;
}

/* usd_label */
span.usd_label {
  color: grey;
  font-size: .9rem;
}

/* flotante_tour */
.flotante_tour,.flotante_tour_mobile {
  position: fixed;
  z-index: 9;
  background-color: var(--color-white);
  opacity: 0;
  transition: bottom .45s ease,opacity .45s ease,transform var(--transition-base);
}

/* flotante_tour_mobile */
.flotante_tour_mobile.visible {
  /* bottom: -10px;
  */
    opacity: 1;
}

/* detail-bd-content */
.detail-bd-content {
  position: relative;
}

/* tour-info-container */
@media (min-width: 1024px) {
  .tour-info-container {
    grid-template-columns:repeat(4,1fr);
    gap: 30px;
    padding: 0 0 25px;
  }
}

/* box_nav */
@media (min-width: 1024px) {
  .box_nav {
    position: sticky;
    top: 0;
    z-index: 9;
    width: var(--container-width);
    max-width: var(--container-max);
    margin: 0 auto;
  }
}

/* tabs-inclusions-content */
@media (min-width: 1024px) {
  .tabs-inclusions-content ul {
    padding-left: 5px;
  }
}

/* element_5 */
@media screen and (max-width: 767px) {
  .element_5,.element_6,.flotante_tour,.nav-menu-wrapper svg,.trainhotel_section .nav-tabs i,span.mobile-hidden {
    display:none;
  }
}

/* nav-menu */
@media screen and (max-width: 767px) {
  .nav-menu {
    margin: 0;
    padding: 0;
  }
}

/* head-accor-item */
@media screen and (max-width: 767px) {
  .head-accor-item {
    padding: 5px 15px!important;
  }
}

/* acf-included */
@media screen and (max-width: 767px) {
  .acf-included,.acf-no-included,.acf-what-to-bring {
    border-right: 0!important;
  }
}

/* tabs-inclusions-content */
@media screen and (max-width: 767px) {
  .tabs-inclusions-content ul {
    padding-left: 5px;
  }
}

/* description-text */
@media (max-width: 576px) {
  .description-text,.why-choose-ue-header .text-home-description {
    width: 100%;
  }
}

/* info-label */
@media (max-width: 480px) {
  .info-label {
    font-size:13px;
  }
}

/* info-value */
@media (max-width: 480px) {
  .info-value {
    font-size: 10px;
  }
}

/* tour-info-container */
@media (max-width: 480px) {
  .tour-info-container {
    gap: 15px 10px;
    margin-bottom: 20px;
  }
}

/* subtitle_box */
@media (max-width: 480px) {
  .subtitle_box {
    text-align: center;
  }
  .subtitle_box h2 {
    font-size: 1.3rem;
  }
}

/* home */
body.home .hero-image,body.home .hero-image img,body.home .hero-media,body.home .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* title-fqa */
#faqs .title-fqa,.section-fqa-cat .title-fqa {
  margin-bottom: 26px;
  color: var(--color-primary);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
}

/* faq_list */
#faqs .faq_list,.cont-faqs .faq_list,.section-fqa-cat .faq_list {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 16px;
  align-items: start;
  margin-top: 15px;
}

/* faq_col */
#faqs .faq_col,.cont-faqs .faq_col,.section-fqa-cat .faq_col {
  display: grid;
  gap: 16px;
}

/* faq_item */
#faqs .faq_item,.cont-faqs .faq_item,.section-fqa-cat .faq_item {
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid rgba(0,25,58,.1);
  border-radius: 16px;
}

/* faq_question */
#faqs .faq_question,.cont-faqs .faq_question,.section-fqa-cat .faq_question {
  width: 100%;
  min-height: 66px;
  padding: 18px 22px;
  border: 0;
  background: 0 0;
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

/* faq_icon */
#faqs .faq_icon,.cont-faqs .faq_icon,.section-fqa-cat .faq_icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-primary);
  font-size: 20px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* faq_answer */
#faqs .faq_answer,.cont-faqs .faq_answer,.section-fqa-cat .faq_answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

/* faq_answer_inner */
#faqs .faq_answer_inner,.cont-faqs .faq_answer_inner,.section-fqa-cat .faq_answer_inner {
  padding: 0 22px 22px;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.75;
}
#faqs .faq_answer_inner p:last-child,.section-fqa-cat .faq_answer_inner p:last-child {
  margin-bottom: 0;
}

/* faq_item */
#faqs .faq_item.active .faq_icon,.cont-faqs .faq_item.active .faq_icon,.section-fqa-cat .faq_item.active .faq_icon {
  background: var(--color-primary);
  color: var(--color-white);
}

/* title-fqa */
@media (max-width: 768px) {
  #faqs .title-fqa,.section-fqa-cat .title-fqa {
    font-size:26px;
  }
}

/* faq_list */
@media (max-width: 768px) {
  #faqs .faq_list,.cont-faqs .faq_list,.section-fqa-cat .faq_list {
    grid-template-columns: 1fr;
  }
}

/* flotante_tour_mobile */
.flotante_tour_mobile {
  padding: 10px;
  background: rgba(255,255,255,.96);
  border-top: 1px solid rgba(0,25,58,.1);
  box-shadow: 0 -12px 34px rgba(0,25,58,.16);
  backdrop-filter: blur(14px);
}

/* flotante_mobile_inner */
.flotante_mobile_inner {
  display: grid;
  grid-template-columns: 34px 1fr auto 42px 42px;
  gap: 8px;
  align-items: center;
}

/* flotante_mobile_price */
.flotante_mobile_price small,.flotante_mobile_price span {
  display: block;
  color: var(--color-text);
  font-size: 11px;
  line-height: 1.1;
}
.flotante_mobile_price strong {
  display: block;
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.1;
}

/* flotante_mobile_btn */
.flotante_mobile_btn,.flotante_mobile_icon {
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}
.flotante_mobile_btn {
  padding: 10px 12px;
  font-size: 12px;
  text-transform: uppercase;
  white-space: nowrap;
}
.flotante_mobile_btn.is-gold {
  background: var(--color-gold);
  color: var(--color-primary);
}

/* flotante_tour_mobile */
@media (min-width: 769px) {
  .flotante_tour_mobile {
    display:none;
  }
}

/* trip-summary-timeline */
.trip-summary-timeline ol,.trip-summary-timeline p,.trip-summary-timeline ul {
  margin-left: 58px;
  margin-bottom: 16px;
}

/* trainhotel-intro */
.trainhotel-intro {
  max-width: 920px;
  margin: 0 auto 32px;
  text-align: center;
}

/* trainhotel-tabs */
.trainhotel-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  border-bottom: 1px solid #d9dee8;
  margin-bottom: 24px;
}

/* trainhotel-panels */
.trainhotel-panels {
  position: relative;
}

/* trainhotel-image */
.trainhotel-image {
  margin: 0;
  height: 100%;
}
.trainhotel-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

/* trainhotel-content */
.trainhotel-content {
  padding: 32px 38px;
}
.trainhotel-content h2,.trainhotel-content h3 {
  color: #00193a;
  margin: 0 0 16px;
}
.trainhotel-content li,.trainhotel-content p {
  line-height: 1.65;
}
.trainhotel-content ul {
  padding-left: 20px;
}

/* trainhotel-tabs */
@media (max-width: 768px) {
  .trainhotel-tabs {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
    border-bottom: 0;
    margin-bottom: 18px;
  }
}

/* trainhotel-image */
@media (max-width: 768px) {
  .trainhotel-image img {
    min-height: 230px;
  }
}

/* trainhotel-content */
@media (max-width: 768px) {
  .trainhotel-content {
    padding: 24px 22px;
  }
}

/* tour-hero-gallery */
.tour-hero-gallery {
  padding: 0;
  background: #fff;
}

/* tour-hero-container */
.tour-hero-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

/* tour-gallery */
.tour-gallery {
  position: relative;
}

/* tour-gallery-grid */
.tour-gallery-grid {
  display: grid;
  grid-template-columns: 2.15fr .75fr .75fr;
  grid-template-rows: repeat(2,255px);
  gap: 10px;
  overflow: hidden;
}

/* tour-gallery-item */
.tour-gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #00193a;
}
.tour-gallery-item:first-child {
  grid-row: span 2;
}
.tour-gallery-item:nth-child(4) {
  grid-column: 3;
  grid-row: 1/3;
}

/* tour-gallery-img */
.tour-gallery-img,.tour-gallery-link {
  display: block;
  width: 100%;
  height: 100%;
}
.tour-gallery-img {
  object-fit: cover;
  transition: transform .35s ease;
}

/* tour-gallery-link */
.tour-gallery-link:hover .tour-gallery-img {
  transform: scale(1.04);
}

/* tour-gallery-overlay */
.tour-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(0,0,0,.62),rgba(0,0,0,.18));
}

/* tour-gallery-hidden */
.tour-gallery-hidden {
  display: none;
}

/* tour-gallery-more */
.tour-gallery-more {
  position: absolute;
  right: 18px;
  bottom: 24px;
  z-index: 3;
}

/* tour-gallery-btn */
.tour-gallery-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 6px;
  background: rgba(0,25,58,.9);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background .25s ease,color .25s ease;
}
.tour-gallery-btn:hover {
  background: #ffc407;
  color: #00193a;
}

/* tour-hero-title */
.tour-hero-title {
  position: absolute;
  left: 6%;
  bottom: 18%;
  z-index: 2;
  max-width: 48%;
  color: #fff;
}

/* tour-duration */
.tour-duration {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(15px,1vw,18px);
  font-weight: 500;
}

/* tour-title-line */
.tour-title-line {
  display: block;
  width: 72px;
  height: 5px;
  margin-top: 18px;
  border-radius: 999px;
  background: #ffc407;
}

/* tour-slogan */
.tour-slogan {
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(16px,1.2vw,21px);
  line-height: 1.5;
}

/* tour-hero-title */
@media (max-width: 991px) {
  .tour-hero-title {
    bottom:10%;
    max-width: 48%;
  }
}

/* tour-gallery-grid */
@media (max-width: 600px) {
  .tour-gallery-grid {
    grid-template-columns:1fr;
    grid-template-rows: 420px;
  }
}

/* tour-gallery-item */
@media (max-width: 600px) {
  .tour-gallery-item {
    display: none;
  }
  .tour-gallery-item:first-child {
    display: block;
    grid-column: auto;
  }
}

/* tour-hero-title */
@media (max-width: 600px) {
  .tour-hero-title {
    left: 24px;
    right: 24px;
    bottom: 70px;
    max-width: none;
  }
}

/* tour-gallery-more */
@media (max-width: 600px) {
  .tour-gallery-more {
    right: 24px;
    bottom: 24px;
  }
}

/* tour-gallery-btn */
@media (max-width: 600px) {
  .tour-gallery-btn {
    padding: 10px 16px;
    font-size: 14px;
  }
}

/* tour-breadcrumb */
.tour-breadcrumb {
  width: 100%;
  margin: 15px auto 20px;
  font-size: 14px;
}

/* tour-breadcrumb-list */
.tour-breadcrumb-list {
  color: #5f6b7a;
}

/* tour-breadcrumb */
.tour-breadcrumb a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}
.tour-breadcrumb a:hover {
  color: var(--color-gold);
}
.tour-breadcrumb span {
  color: #5f6b7a;
}

/* media-empty */
.media-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f5f7;
}

/* pos-abs-overlay */
.pos-abs-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.25);
}

/* media-play */
.media-play {
  margin: 16px;
  font-weight: 700;
  font-size: 50px;
}

/* media-label */
.media-label {
  margin: 16px;
  font-weight: 700;
}

/* inclusions-box */
.inclusions-box,.packing-box {
  margin-top: 24px;
}
.inclusions-box {
  border: 1px solid #e7ebf0;
  border-radius: 14px;
  overflow: hidden;
}

/* inclusions-grid */
.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
}

/* acf-block */
.acf-block {
  padding: 24px;
}

/* has-separator */
.has-separator {
  border-right: 1px solid #e7ebf0;
}

/* packing-grid */
.packing-grid {
  display: grid;
  gap: 24px;
}

/* packing-col */
.packing-col {
  border: 1px solid #e7ebf0;
  border-radius: 14px;
  background: #fff;
}

/* inclusions-grid */
@media (max-width: 768px) {
  .inclusions-grid,.packing-grid {
    grid-template-columns:1fr;
  }
}

/* has-separator */
@media (max-width: 768px) {
  .has-separator {
    border-right: 0;
    border-bottom: 1px solid #e7ebf0;
  }
}

/* acf-block */
@media (max-width: 768px) {
  .acf-block {
    padding: 20px;
  }
}

/* pricing-label */
.pricing-label {
  display: block;
  color: #ffc407;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* pricing-grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
}

/* pricing-card */
.pricing-card {
  height: 100%;
  padding: 24px;
  border: 1px solid #e7ebf0;
  border-radius: 16px;
  background: #fff;
}

/* price-card-content */
.price-card-content {
  margin-bottom: 16px;
}

/* pricing-grid */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns:1fr;
  }
}

/* pricing-card */
@media (max-width: 768px) {
  .pricing-card {
    padding: 20px;
  }
}

/* custom-modal */
.custom-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,.58);
}
.custom-modal.show {
  display: flex;
}

/* custom-modal-dialog */
.custom-modal-dialog {
  width: min(760px,100%);
  max-height: 90vh;
}

/* custom-modal-content */
.custom-modal-content {
  position: relative;
  max-height: 90vh;
  overflow: auto;
  border-radius: 18px;
  background: #fff;
}

/* custom-modal-header */
.custom-modal-header {
  display: flex;
  justify-content: flex-end;
  padding: 14px 16px 0;
}

/* modal-close */
.modal-close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #00193a;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

/* custom-modal-body */
.custom-modal-body {
  padding: 10px 32px 32px;
}

/* custom-modal */
@media (max-width: 600px) {
  .custom-modal {
    padding:14px;
  }
}

/* custom-modal-body */
@media (max-width: 600px) {
  .custom-modal-body {
    padding: 8px 20px 24px;
  }
}

/* ══════════════════════════════════════════════════════
   Procedente de general.css
   ══════════════════════════════════════════════════════ */

/* best_value */
li.best_value br {
  display: none;
}

/* inquire-modal */
.inquire-modal.modal-header {
  background: var(--color-gold);
  justify-content: space-between;
  padding: 15px 20px;
  display: flex;
}

/* section-cat-calendar */
.section-cat-calendar .cat-calendar-cont {
  width: 90%;
  max-width: 1450px;
  margin: 0 auto;
  padding: 3% 0;
}
.section-cat-calendar .cat-tours1-body {
  text-align: center;
}
.section-cat-calendar .cat-calend-title {
  text-align: center;
  color: #00224f;
  font-size: 40px !important;
  font-weight: 700 !important;
}
.section-cat-calendar .cat-calend-descrip {
  margin-bottom: 40px;
}

/* #wpforms-form-728 */
#wpforms-form-728 label {
  margin-bottom: 5px;
  font-size: 14px;
}

/* wpforms-field */
#wpforms-form-728 .wpforms-field {
  margin-bottom: 10px;
  padding: 0;
}

/* card-pricing-mb */
.card-pricing-mb {
  display: none;
}

/* section-detail-tour */
.section-detail-tour {
  grid-template-columns: 1fr minmax(350px, 28%);
  margin-bottom: 3rem;
  display: grid;
  gap: 30px;
}
.section-detail-tour .detail-bd-content {
  padding-right: 20px;
}
.section-detail-tour .body-descrip {
  margin-bottom: 40px;
}
.section-detail-tour .tour-media-videos {
  position: relative;
}
.section-detail-tour .tour-media-videos .cont-video {
  height: 280px;
}
.section-detail-tour .pos-abs-overlay {
  position: absolute;
  top: 0;
}
.section-detail-tour .tour-media-maps {
  position: relative;
}
.section-detail-tour .tour-media-maps .contn-map {
  height: 280px;
}
.section-detail-tour .nav-tabs-activities {
  margin-top: 20px;
  margin-bottom: 20px;
  list-style: none;
}

/* tour_lists */
@media only screen and (max-width: 992px) {
  .tour_lists {
    margin-left: 0;
  }
  .tour_lists > div:after, .tour_lists > div:first-child:before {
    display: none !important;
  }
}

/* nav-tabs-activities */
.nav-tabs-activities {
  flex-wrap: wrap;
  list-style: none;
  display: flex;
}
.nav-tabs-activities .nav-item .head-accor-item {
  color: #00224f;
  background-color: #fff;
  border-bottom: 3px solid transparent;
  position: relative;
  transition: all .3s;
}

/* tour-content */
.tour-content h2 {
  font-size: 1.8rem;
}
.tour-content h3 {
  margin-top: 15px;
  font-size: 1.25rem;
  margin-bottom: 15px;
  font-weight: 500;
}

/* itinerary-gallery */
.itinerary-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}
.itinerary-gallery a {
  display: block;
  overflow: hidden;
  border-radius: 12px;
}
.itinerary-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .itinerary-gallery {
    grid-template-columns:1fr;
  }
  .itinerary-gallery img {
    height: 220px;
  }
}

/* tour-content */
.tour-content h4 {
  color: var(--color-primary);
  font-size: 1rem;
}
.tour-content h4 b, .tour-content h4 strong {
  font-weight: 500;
}
.tour-content p {
  margin-bottom: 5px;
}
.tour-content section {
  margin-bottom: 45px;
  padding-bottom: 45px;
  border-bottom: 1px solid var(--color-gold);
}
.tour-content {
  padding: 30px 0;
}
.tour-content ul {
  margin-bottom: 15px;
  margin-left: 0;
}
.tour-content ul li {
  list-style: none;
  position: relative;
  padding-left: .85rem;
}
.tour-content ul li::before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: orange;
  border-radius: 50%;
  position: absolute;
  left: -5px;
  top: .55em;
}

/* iti-count */
.iti-count {
  position: relative;
}
.iti-count:after {
  content: "";
  border-left: 2px dashed #ffd859;
  width: 0;
  height: 100%;
  padding-top: 0;
  position: absolute;
  top: 40px;
  left: 20px;
}

/* iti-item */
.iti-item {
  gap: 10px;
  padding: 20px 0;
  display: flex;
}

/* iti-count-cont */
.iti-count-cont {
  color: #fff;
  background-color: var(--color-gold);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 10px;
  font-family: "Merriweather 24pt", sans-serif;
  font-weight: 700;
  display: flex;
}

/* pos-abs-overlay */
.pos-abs-overlay {
  background-color: #0000004d;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

/* view-map */
.view-map {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

/* tour-media-container */
.tour-media-container {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  display: grid;
}

/* box_nav */
.box_nav {
  z-index: 9;
  position: sticky;
  top: 0;
}

/* tour-nav-booking-bar */
.tour-nav-booking-bar {
  display: flex;
  align-items: stretch;
}

/* tour-nav-tabs-area */
.tour-nav-tabs-area {
  flex: 1 1 auto;
  min-width: 0;
}

/* nav-menu-wrapper */
.nav-menu-wrapper, .tour-nav-tabs-area {
  position: relative;
  min-width: 0;
  overflow: visible;
}

/* box_nav */
.box_nav.tour-nav-booking-bar {
  border-top: 3px outset var(--color-gold);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
  background: var(--color-white);
}

/* tabs-tour-info */
.tabs-tour-info .tour-nav-link.active, .tabs-tour-info .tour-nav-link.is-active {
  background: rgba(193, 146, 43, .08);
  color: #00224f;
  font-weight: 700;
  border-radius: 8px;
}
.tabs-tour-info li {
  flex: 0 0 auto;
  list-style: none;
}
.tabs-tour-info .tour-nav-link span {
  white-space: nowrap;
}

/* nav-indicator */
.nav-indicator.visible {
  opacity: 1;
}

/* tour-nav-booking-area */
.tour-nav-booking-area {
  flex: 0 0 386px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  padding: 5px 20px;
  background: #fff;
  white-space: nowrap;
}

/* tour-nav-price */
.tour-nav-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1;
  color: #0b1633;
  min-width: 170px;
}

/* tour-nav-price-top */
.tour-nav-price-top {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

/* tour-nav-price */
.tour-nav-price .price-label {
  display: inline-flex;
  align-items: end;
  font-size: 10px;
  letter-spacing: 1.2px;
  color: #4d4c4c;
  white-space: nowrap;
  font-weight: 600;
}
.tour-nav-price .price-main {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  white-space: nowrap;
}
.tour-nav-price strong {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}
.tour-nav-price small {
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}
.tour-nav-price em {
  display: block;
  font-size: 10px;
  font-style: normal;
  letter-spacing: 1.2px;
  color: #4d4c4c;
}

/* tour-nav-book-btn */
.tour-nav-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  height: 46px;
  padding: 0 24px;
  background: var(--color-gold);
  border-radius: 5px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
}
.tour-nav-book-btn:hover {
  background: #e4aa00;
  color: #111;
}

/* nav-menu-wrapper */
.nav-menu-wrapper {
  position: relative;
}

/* nav-indicator */
.nav-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--color-gold);
  border-radius: 2px;
  opacity: 0;
  transition: transform .4s cubic-bezier(.4, 0, .2, 1), width .4s cubic-bezier(.4, 0, .2, 1), opacity .3s ease;
}
.nav-indicator.visible {
  opacity: 1;
}

/* tailor-modal */
.tailor-modal .wpforms-field-label-inline {
  padding: 0 !important;
}

/* modal-dialog */
.modal-dialog {
  margin: 50px auto;
  transition: transform .3s;
  transform: translateY(0);
  width: 65%;
}

/* modal-content */
.modal-content {
  background: #fff;
  border-radius: 10px;
  animation: .3s fadeIn;
  overflow: hidden;
  box-shadow: 0 5px 20px #0003;
}

/* modal-header */
.modal-header {
  background: var(--color-gold);
  justify-content: flex-end;
  padding: 20px;
  display: flex;
}

/* modal-body */
.modal-body {
  padding: 20px;
}

/* btn-close */
.btn-close {
  cursor: pointer;
  background: 0 0;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
}

/* section-tour-related */
.section-tour-related .title-related {
  text-align: center;
  font-size: clamp(24px, 2.3vw, 40px);
}

/* cards-items */
.cards-items .related-img {
  height: 280px;
}
.cards-items .related-img img {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.cards-items .card-related {
  grid-template-rows: 280px 1fr;
  display: grid;
}
.cards-items .related-body {
  z-index: 2;
  background: #f8fafc;
  border-radius: 15px;
  margin-top: -15px;
  padding: 15px;
  position: relative;
}
.cards-items .related-title {
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}
.cards-items .related-title a {
  color: #00224f;
}
.cards-items .tour-description {
  color: #00193a;
  margin-bottom: 20px;
  font-size: 14px;
}
.cards-items .difficulty-section {
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  display: flex;
}
.cards-items .difficulty-label {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 700;
}
.cards-items .difficulty-bars {
  gap: 4px;
  display: flex;
}
.cards-items .difficulty-bars .difficulty-bar {
  background-color: var(--color-gold);
  border-radius: 3px;
  width: 34px;
  height: 8px;
}
.cards-items .price-section {
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  display: flex;
}
.cards-items .price-section .price-label {
  color: #00193a;
  font-size: 14px;
  font-weight: 600;
}
.cards-items .price-section .price {
  color: #00193a;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
.cards-items .price-section .price-per-person {
  color: #00193a;
  margin-top: 2px;
  font-size: 13px;
}
.cards-items .tour-btn {
  color: #000;
  text-transform: uppercase;
  background-color: var(--color-gold);
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}
.cards-items .tour-btn svg {
  vertical-align: middle;
}
.cards-items .tour-btn:hover {
  color: #000;
  background-color: #f59e0b;
  transform: translateY(-1px);
}

/* section-detail-tour */
@media (max-width: 600px) {
  .section-detail-tour .detail-bd-content {
    min-width: 0;
    padding-right: 0;
  }
}

/* detail-bd-features */
@media (max-width: 600px) {
  .detail-bd-features {
    border-left: none;
    order: 1;
    margin-top: 25px;
    padding-left: 0;
    display: none;
  }
}

/* about-why-contenedor */
@media (max-width: 600px) {
  .about-why-contenedor, .section-detail-tour, .tour-media-container {
    grid-template-columns: 1fr;
  }
}

/* section-detail-tour */
@media (max-width: 600px) {
  .section-detail-tour .nav-tabs-activities {
    flex-wrap: nowrap;
    top: 0;
    overflow-x: auto;
  }
}

/* card-pricing-mb */
@media (max-width: 600px) {
  .card-pricing-mb {
    margin-bottom: 20px;
    display: block;
  }
}

/* booking-card-new */
.booking-card-new {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 1px;
  font-family: inherit;
}

/* booking-card-title */
.booking-card-title {
  color: var(--color-primary);
  font-size: 25px;
  line-height: 1.1;
  font-weight: 700;
  display: block;
  text-align: center;
  margin-bottom: 5px;
}

/* booking-card-new */
.booking-card-new {
  position: relative;
  overflow: hidden;
}

/* booking-card-body */
.booking-card-body {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #C4C6CF;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
  padding: 60px 25px 15px;
}

/* booking-tour-price-badge */
.booking-tour-price-badge {
  position: absolute;
  width: 130px;
  background: var(--color-primary);
  left: 50%;
  transform: translateX(-50%);
  top: 1px;
  height: 40px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}

/* booking-card-label */
.booking-card-label {
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 700;
  background-color: #C4C6CF;
  padding: .40em .75em;
  font-size: .70em;
  line-height: 1;
  display: inline-block;
  border-radius: 20px;
}

/* booking-card-price-box */
.booking-card-price-box {
  margin-top: 20px;
  margin-bottom: 30px;
}

/* booking-card-price-row */
.booking-card-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  color: #001f45;
}

/* booking-card-old-price */
.booking-card-old-price {
  position: relative;
  color: #74777F;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 8px;
  white-space: nowrap;
  text-decoration: line-through;
  text-decoration-color: #636870;
}

/* booking-card-price */
.booking-card-price {
  color: #001f45;
  font-size: 40px;
  line-height: .95;
  font-weight: 900;
  white-space: nowrap;
}

/* booking-card-person */
.booking-card-person {
  color: #333843;
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 9px;
  white-space: nowrap;
}

/* booking-card-note */
.booking-card-note {
  display: flex;
  gap: 10px;
  background: #f5f4fb;
  color: #656b78;
  border: 1px solid #efedf8;
  border-radius: 12px;
  padding: 10px 15px;
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 24px;
  align-items: center;
}

/* booking-card-note-icon */
.booking-card-note-icon {
  color: #bd7777;
  font-size: 25px;
  line-height: 0;
}

/* booking-card-actions */
.booking-card-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 16px;
}

/* booking-btn */
.booking-btn {
  width: 100%;
  padding: 15px 10px;
  border: 0;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.booking-btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

/* booking-btn-primary */
.booking-btn-primary {
  background: var(--color-gold);
  color: var(--color-primary);
}
.booking-btn-primary:hover {
  color: #111;
  box-shadow: 0 8px 18px rgba(255, 196, 0, .35);
}

/* booking-btn-secondary */
.booking-btn-secondary {
  background: #001f45;
  color: #fff;
}
.booking-btn-secondary:hover {
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 31, 69, .25);
}

/* booking-card-rating */
.booking-card-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex-wrap: wrap;
  color: #001f45;
  font-size: 11px;
  line-height: 1.2;
  padding: 0 0 16px;
  border-bottom: 1px solid #d7d7d7;
}
.booking-card-rating a {
  color: #001f45;
  font-weight: 700;
  text-decoration: underline;
}

/* booking-card-list */
.booking-card-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 20px;
}

/* booking-stars */
.booking-stars {
  color: #ffc400;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1;
}

/* booking-card-benefits */
.booking-card-benefits {
  color: #222833;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  gap: 8px;
  flex-direction: column;
}

/* booking-benefit */
.booking-benefit {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.booking-benefit span {
  width: 20px;
  display: inline-flex;
  justify-content: center;
  color: #001f45;
  font-size: 10px;
}

/* booking-tripadvisor-award */
.booking-tripadvisor-award {
  display: flex;
  align-items: center;
  justify-content: center;
}
.booking-tripadvisor-award img {
  display: block;
  max-width: 120px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* booking-card-benefits */
@media (max-width: 575px) {
  .booking-card-benefits {
    gap: 5px;
    padding: 10px 15px 18px;
  }
}

/* booking-tripadvisor-award */
@media (max-width: 575px) {
  .booking-tripadvisor-award img {
    max-width: 120px;
  }
}

/* booking-card-new */
@media (max-width: 575px) {
  .booking-card-new {
    max-width: 100%;
    border-radius: 12px;
  }
}

/* booking-card-title */
@media (max-width: 575px) {
  .booking-card-title {
    font-size: 23px;
  }
}

/* booking-card-body */
@media (max-width: 575px) {
  .booking-card-body {
    padding: 26px 25px 5px;
    padding-top: 60px;
  }
}

/* booking-card-price */
@media (max-width: 575px) {
  .booking-card-price {
    font-size: 40px;
  }
}

/* booking-card-old-price */
@media (max-width: 575px) {
  .booking-card-old-price {
    font-size: 22px;
  }
}

/* section-form */
.section-form {
  border: 1px solid #caced7;
  border-radius: 10px;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 30px;
}
.section-form h3 {
  text-align: start !important;
  color: #00193a !important;
  margin: 0 0 10px !important;
  padding: 0 !important;
  font-size: 18px !important;
}

/* header-info */
.header-info h2 {
  color: #00193a !important;
  font-size: clamp(1rem, 2vw + .5rem, 1.75rem) !important;
}

/* wpforms-container-full */
div.wpforms-container-full button[type=submit] svg {
  vertical-align: middle;
}

/* section-form */
.section-form > h2 {
  text-align: center;
}
.section-form .title {
  color: #00193a;
  font-size: 18px;
}
.section-form label {
  color: #00193a;
  font-size: 15px;
}
.section-form input[type=date], .section-form input[type=email], .section-form input[type=number], .section-form input[type=tel], .section-form input[type=text], .section-form select {
  background-color: #f9f9f9;
  border: 1px solid #d7d7d7;
  border-radius: 5px;
  width: 100%;
  height: 40px;
  padding: 0 10px;
}
.section-form textarea {
  background-color: #f9f9f9;
  border: 1px solid #d7d7d7;
  border-radius: 5px;
  width: 100%;
  padding: 10px;
}

/* _description */
._description.justify_ img {
  border-radius: 15px;
  display: block;
  width: 50%;
  height: auto;
  margin: 60px auto;
}

/* modal-dialog */
#myModalenquire .modal-dialog {
  width: min(620px, 100%);
  margin: auto;
}

/* modal-content */
#myModalenquire .modal-content {
  position: relative;
  width: 100%;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

/* h_price */
@media only screen and (max-width: 480px) and (orientation: portrait) {
  span.h_price {
    font-size: .8rem;
  }
}

/* title-fqa */
@media only screen and (max-width: 480px) and (orientation: portrait) {
  h2.title-fqa {
    font-size: 1.4rem;
  }
}

/* flotante_tour_mobile */
@media only screen and (min-width: 600px) and (max-width: 900px) and (orientation: portrait) {
  .flotante_tour_mobile {
    display: none;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1024px) and (orientation: landscape) {
  .flotante_tour_mobile {
    display: none;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .flotante_tour_mobile {
    display: none;
  }
}
@media only screen and (min-width: 1440px) and (max-width: 1920px) {
  .flotante_tour_mobile {
    display: none;
  }
}
@media only screen and (min-width: 1920px) {
  .flotante_tour_mobile {
    display: none;
  }
}

/* slider-reviews */
.slider-reviews .avatar img {
  width: 100%;
  height: 100%;
}

/* dots */
.dots span {
  width: 16px !important;
  height: 16px !important;
  border: 3px solid #00b894;
  border-radius: 50%;
  background: #00b894;
}

/* trip_logo */
.trip_logo svg {
  width: 140px;
}

/* tabs-tour-info */
.tabs-tour-info .tour-nav-link.is-active::after {
  opacity: 1;
}
.tabs-tour-info .tour-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  text-decoration: none;
  color: var(--color-primary);
  padding: 5px 12px;
  border-radius: 6px;
  transition: background .25s ease, color .25s ease;
}
.tabs-tour-info .tour-nav-link svg path {
  transition: stroke .25s ease;
}
.tabs-tour-info .tour-nav-link svg circle, .tabs-tour-info .tour-nav-link svg ellipse {
  transition: fill .25s ease;
}
.tabs-tour-info .tour-nav-link:hover {
  background: rgba(193, 146, 43, .08);
  color: #00224f;
}
.tabs-tour-info .tour-nav-link.active::after, .tabs-tour-info .tour-nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 3px;
  height: 2px;
  background: var(--color-gold);
  border-radius: 999px;
}

/* tour-nav-booking-area */
@media (max-width: 991px) {
  .tour-nav-booking-area {
    display: none !important;
  }
}

/* flotante_tour_mobile */
@media (max-width: 991px) {
  .flotante_tour_mobile {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: block;
    background: #fff;
    padding: 8px 16px;
  }
}

/* flotante_mobile_inner */
@media (max-width: 991px) {
  .flotante_mobile_inner {
    display: grid;
    grid-template-columns: .9fr 1.5fr;
    align-items: center;
    gap: 16px;
    max-width: 450px;
    margin: 0 auto;
  }
}

/* flotante_mobile_price */
@media (max-width: 991px) {
  .flotante_mobile_price {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }
  .flotante_mobile_price span {
    font-size: 13px;
    font-weight: 700;
    color: #595858;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .flotante_mobile_price strong {
    font-size: 32px;
    font-weight: 800;
    color: #06112a;
  }
  .flotante_mobile_price small {
    font-size: 14px;
    color: #4d4c4c;
  }
}

/* flotante_mobile_btn */
@media (max-width: 991px) {
  .flotante_mobile_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #f6b900;
    color: #06112a;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    max-width: 215px;
  }
}

/* flotante-mobile-actions */
@media (max-width: 991px) {
  .flotante-mobile-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }
}

/* btn-float-enquire */
@media (max-width: 991px) {
  .btn-float-enquire {
    width: 80px;
    background: transparent;
    border: 2px solid #f6b900;
    padding: 7px;
    path {
            fill: #ffc407;
        };
  }
}
