/* Itinerary Accordion shortcode */
.trip-itinerary.accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trip-itinerary .accordion-item {
  background-color: #eef4ff;
  border-radius: 30px;
  padding: 18px 24px;
}

.trip-itinerary .accordion-title {
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  margin: 0;
  font-size: 20px;
  cursor: pointer;
}

.trip-itinerary .accordion-title:after {
  content: ' ';
  transition: 0.3s ease-out;
  width: 30px;
  height: 22px;
  background-image: url(/wp-content/uploads/2024/04/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px;
}

.trip-itinerary .accordion-item.opened .accordion-title:after {
  transform: rotate(180deg);
}

.trip-itinerary .accordion-content {
  overflow: hidden;
  font-size: 17px;
  transition: 0.3s ease-out;
}

.trip-itinerary .accordion-item.opened .accordion-content {
  margin-top: 40px;
}

.trip-itinerary .accordion-item:not(.opened) .accordion-content {
  max-height: 0 !important;
}

.map-wrapper {
  display: flex;
  border-radius: 30px;
  overflow: hidden;
}

/* FAQS accordion */
.faqs-accordion .accordion-item {
  padding: 16px 24px;
}
.faqs-accordion .accordion-item.opened .accordion-content {
    margin-top: 20px;
}
.faqs-accordion .accordion-title:after {
  background-image: url(/wp-content/uploads/2024/05/accordion-arrow.svg);
  width: 26px;
  height: 24px;
  background-size: 16px;
}
.faqs-accordion .accordion-title {
    align-items: center;
}
.faqs-accordion .accordion-content {
  font-size: 18px;
}

@media screen and (max-width: 520px) {
	.faqs-accordion .accordion-title,
	.faqs-accordion .accordion-content,{
		font-size: 16px;
	}
}

/* Whats included list shortcode */

/* hide the navigation item when this section is disabled */
body.trip-not-using-outcomes .trip-internal-navigation li:has(> a[href="#trip-outcomes"]) {
  display: none;
}
.trip-whats_included_list ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.trip-whats_included_list ul li {
    position: relative !important;
    background-color: #dbf4f3;
    border-radius: 30px;
    padding: 12px 24px 12px 50px;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 10px;
    width: calc(50% - 5px);
    outline: none;
    height: 60px;
    display: flex;
    align-items: center;
}

.trip-whats_included_list ul li:before {
  content: url(/wp-content/uploads/2024/04/checkmark-icon.svg);
  width: 16px;
  height: 13px;
  position: absolute;
  left: 20px;
  top: calc(50% - 5px);
  transform: translateY(-50%);
}

@media screen and (max-width: 1080px) {
  .trip-whats_included_list ul li {
    width: 100%;
  }
}

/* Trip map */
body.trip-not-using-map .trip-internal-navigation li:has(> a[href="#trip-map"]),
body.trip-not-using-map #trip-map {
	display: none !important;
}

/* Trip highlights shortcode */

/* hide the navigation item when this section is disabled */
body.trip-not-using-highlights .trip-internal-navigation li:has(> a[href="#trip-highlights"]) {
  display: none;
}

.highlights-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  cursor: default !important;
}

.highlight-box {
  border-radius: 30px;
  padding: 0;
  width: calc(33.333% - 20px);
  overflow: hidden;
  position: relative;
  height: 346px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.highlight-box svg {
  position: absolute;
  bottom: -11px;
  left: -9px;
  width: 131%;
  height: auto;
}

.highlight-box .content-box {
  padding: 0 30px 20px 30px;
  text-align: center;
  color: #fff;
  position: relative;
  width: 100%;
  min-height: 76px;
}

.highlight-box .content-box h4 {
  max-width: 210px;
  margin: auto;
  font-family: 'europa', sans-serif;
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
}

@media screen and (max-width: 820px) {
.highlights-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap !important;
    align-items: stretch;
    cursor: grab;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    margin-left: -30px;
    margin-right: -30px;
    
  }
	.highlights-container::-webkit-scrollbar {
    	display: none;
	}
  .highlight-box {
    width: 42%;
    flex: 0 0 auto;
  }
  .highlight-box:first-of-type {
	margin-left: 30px;
  }
  .highlight-box:last-of-type {
	margin-right: 30px;
  }
}

@media screen and (max-width: 480px) {
  .highlight-box {
    width: 75%;
  }
}


/* Related taxonomies (subjects) */
.tla-related-taxonomies {
    display: flex;
    flex-wrap: wrap;
	gap: 26px;
	justify-content: center;
}

.tla-tax-card {
    width: calc(25% - 20px);
    border-radius: 30px;
    overflow: hidden;
	height: 100%;
}

.tla-tax-card .image {
    min-height: 277px;
    position: relative;
    background-position: center;
    background-size: cover;
}
.tla-tax-card .image svg {
    position: absolute;
    bottom: -88px;
    left: -23px;
}

.tla-tax-card .image svg path,
.tla-tax-card .content,
.tla-tax-card .content button,
.tla-tax-card .content h3,
.tla-tax-card .content button svg path
{
	transition: all .4s;
}

.tla-tax-card .content {
    background: #eef4ff;
    padding: 0 18px 28px 18px;
    text-align: center;
    z-index: 2;
    position: relative;
}
.tla-tax-card .content h3 {
    font-size: 24px;
    font-weight: bold;
    line-height: 30px;
	color: var(--e-global-color-text);
}

.tla-tax-card .content button {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 21px;
    fill: var(--e-global-color-4bec6b5);
    color: var(--e-global-color-4bec6b5);
    background-color: #01ACA9;
    border-radius: 30px 30px 30px 30px;
    padding: 12px 24px;
	border: 0;
}

.tla-tax-card:hover .content a:hover {
    background-color: var(--e-global-color-0bcafad);
}

.tla-tax-card:hover .image svg path {
	fill: var(--e-global-color-0bcafad);
}
.tla-tax-card:hover .content {
	background-color: var(--e-global-color-0bcafad);
}
.tla-tax-card:hover .content h3 {
	color: #ffffff;
}
.tla-tax-card:hover .content button {
	background-color: #ffffff;
	color: var(--e-global-color-text);
}
.tla-tax-card:hover .content button svg path {
	fill: var(--e-global-color-text);
}

@media screen and (max-width: 768px) {
    .tla-tax-card {
        width: calc(50% - 20px);
    }
}

@media screen and (max-width: 480px) {
    .tla-tax-card {
        width: calc(100% - 20px);
    }
}

/* related taxonomies sldier */
.swiper-slide .tla-tax-card {
    width: initial;
    margin: 0;
}

.swiper-container.tla-related-taxonomies-carousel {
    overflow: hidden !important;
}

.swiper-container.tla-related-taxonomies-carousel .swiper-wrapper {
    overflow: visible !important;
}

.tla-related-taxonomies-carousel .swiper-button-prev {
	left: -36px;
}
.tla-related-taxonomies-carousel .swiper-button-next {
	right: -36px;
}
.tla-related-taxonomies-carousel .swiper-button-prev:after,
.tla-related-taxonomies-carousel .swiper-button-next:after {
	font-size: 26px;
}

@media screen and (min-width: 1220px) {
	.tla-related-taxonomies-carousel.centered .swiper-wrapper {
    	justify-content: center;
	}
}