/* Custom CSS */

/* Example: Override main section background color. */
/* body .jupiterx-main {
    background-color: gray;
} */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&amp;display=swap');

.post-header img {
    width: 100%;
}

.izibox {
    margin-top: 66px;
}


.mtfrontage-blog-card h4 a {
	color: inherit;
	text-decoration: none;
}

.mtfrontage-blog-card h4 a:hover {
	color: var(--primary-color);
}

.mtfrontage-readmore {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.mtfrontage-readmore:hover {
	transform: translateX(4px);
}

.mtfrontage-img img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	display: block;
}

main.mpt-single-post h1 {
    color: white !important;
}





/* ===== ELEGANT CATEGORY GRID ===== */
.mtfrontage-category-header {
    margin-bottom: 3rem;
    text-align: center;
}

.mtfrontage-category-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.mtfrontage-category-desc {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Tarjeta de Post */
.mtfrontage-post-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.03);
}

.mtfrontage-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Contenedor de Imagen */
.mtfrontage-card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2; /* Mantiene proporci贸n uniforme */
}

.mtfrontage-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.mtfrontage-post-card:hover .mtfrontage-card-img-wrap img {
    transform: scale(1.05); /* Efecto zoom suave */
}

/* Etiqueta de Categor铆a Flotante */
.mtfrontage-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 2;
}

/* Cuerpo de la Tarjeta */
.mtfrontage-card-body {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.mtfrontage-card-meta {
    font-size: 0.85rem;
    color: #95a5a6;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mtfrontage-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.mtfrontage-card-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mtfrontage-card-title a:hover {
    color: #0d6efd; /* Color de acento (ajustable) */
}

.mtfrontage-card-excerpt {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1; /* Empuja el bot贸n hacia abajo */
}

/* Bot贸n Read More */
.mtfrontage-card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease, color 0.3s ease;
    margin-top: auto;
}

.mtfrontage-card-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.mtfrontage-card-link:hover {
    color: #0d6efd;
    gap: 12px; /* Flecha se desplaza al hacer hover */
}





/* ============================================
   Category Page - Minimal & Elegant
   ============================================ */

.mtfrontage-category-section {
    background-color: #fafafa;
    padding: 5rem 0;
    color: #1a1a1a;
    line-height: 1.6;
}

/* ---------- Header ---------- */
.mtfrontage-category-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e5e5e5;
}

.mtfrontage-category-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
}

.mtfrontage-category-title::after {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background-color: #1a1a1a;
    margin: 1.25rem auto 0;
}

.mtfrontage-category-desc {
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.95rem;
    color: #666;
    font-weight: 300;
}

.mtfrontage-category-desc p {
    margin: 0;
}

/* ---------- Post Card ---------- */
.mtfrontage-post-card {
    background-color: #ffffff;
    border: 1px solid #ececec;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.mtfrontage-post-card:hover {
    border-color: #1a1a1a;
    transform: translateY(-2px);
}

/* ---------- Card Image ---------- */
.mtfrontage-card-img-wrap {
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 10;
    background-color: #f0f0f0;
}

.mtfrontage-card-img-wrap a {
    display: block;
    width: 100%;
    height: 100%;
}

.mtfrontage-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: grayscale(10%);
}

.mtfrontage-post-card:hover .mtfrontage-card-img-wrap img {
    transform: scale(1.04);
    filter: grayscale(0%);
}

/* ---------- Card Body ---------- */
.mtfrontage-card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.mtfrontage-card-meta {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    font-weight: 400;
}

.mtfrontage-card-meta i {
    margin-right: 0.4rem;
    font-size: 0.7rem;
}

.mtfrontage-card-title {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 1rem 0;
    letter-spacing: 0.2px;
}

.mtfrontage-card-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mtfrontage-card-title a:hover {
    color: #666;
}

.mtfrontage-card-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
    font-weight: 300;
    flex-grow: 1;
}

/* ---------- Read More Link ---------- */
.mtfrontage-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    padding-top: 1rem;
    border-top: 1px solid #ececec;
    transition: gap 0.3s ease, color 0.3s ease;
    align-self: flex-start;
    width: 100%;
}

.mtfrontage-card-link:hover {
    color: #000;
    gap: 0.85rem;
}

.mtfrontage-card-link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.mtfrontage-card-link:hover i {
    transform: translateX(3px);
}

/* ---------- Empty State ---------- */
.mtfrontage-category-section .lead {
    font-weight: 300;
    color: #999;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

/* ---------- Pagination ---------- */
.mtfrontage-pagination-wrap {
    margin-top: 4rem !important;
    padding-top: 2.5rem;
    border-top: 1px solid #e5e5e5;
}

.mtfrontage-pagination-wrap .pagination,
.mtfrontage-pagination-wrap .nav-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mtfrontage-pagination-wrap .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.85rem;
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    border: 1px solid #e5e5e5;
    background-color: #fff;
    transition: all 0.3s ease;
}

.mtfrontage-pagination-wrap .page-numbers:hover {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.mtfrontage-pagination-wrap .page-numbers.current {
    background-color: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

.mtfrontage-pagination-wrap .page-numbers.dots {
    border: none;
    background: transparent;
}

.mtfrontage-pagination-wrap .prev,
.mtfrontage-pagination-wrap .next {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    gap: 0.5rem;
}

.mtfrontage-pagination-wrap .prev i,
.mtfrontage-pagination-wrap .next i {
    font-size: 0.7rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .mtfrontage-category-section {
        padding: 3rem 0;
    }
    
    .mtfrontage-category-header {
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
    }
    
    .mtfrontage-card-body {
        padding: 1.5rem;
    }
    
    .mtfrontage-pagination-wrap {
        margin-top: 2.5rem !important;
    }
    
    .mtfrontage-pagination-wrap .page-numbers {
        min-width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }
}


.Zebra_DatePicker {
    position: inherit !important;
    width: 100% !important;
    border: 0px !important;
    box-shadow: none !important;
}

.Zebra_DatePicker .dp_header .dp_previous, .Zebra_DatePicker .dp_header .dp_next {
    font-size: 25px;
    color: #282828;
}

.Zebra_DatePicker .dp_header .dp_previous, .Zebra_DatePicker .dp_header .dp_next {
    font-size: 25px;
    color: #282828;
}

.Zebra_DatePicker table {
    margin-top: 0;
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    color: #282b2f;
    line-height: 1.5;
    border-radius: 4px;
    box-shadow: none;
    overflow: hidden;
    margin-bottom: 30px;
}

.Zebra_DatePicker .dp_actions .dp_caption {
    font-size: 1.3rem !important;

}

.resultados {
    font-size: 0.85rem !important;
}

.Zebra_DatePicker table tr:hover {
    background-color: #ffffff;
}

.Zebra_DatePicker table th {
    background-color: #fff;
    color: #000;
    font-weight: bold;
    padding: 10px;
    text-align: left;
}

.Zebra_DatePicker table td, table th {
    font-size: 1.1rem;
    padding: 5px !important;
    vertical-align: top;
    border: 1px solid transparent !important;
}

/* Estilo base de la tabla */
.Zebra_DatePicker table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
}

/* Encabezado de la tabla */
.Zebra_DatePicker table th {
    background-color: #fff;
    color: #000;
    font-weight: bold;
    padding: 10px;
    text-align: left;
}

/* Filas impares con un fondo gris claro */
.Zebra_DatePicker table tr:nth-child(odd) {
    background-color: #fff;
}

/* Filas pares con un fondo blanco */
.Zebra_DatePicker table tr:nth-child(even) {
    background-color: #fff;
}

/* Estilo en hover */
.Zebra_DatePicker table tr:hover {
    background-color: #fff;
}


.Zebra_DatePicker td {
    padding: 5px;
    font-size: 0.8rem;
}

.Zebra_DatePicker .dp_body .dp_selected {
    background: #025833 !important;
    color: #fff;
}


.btn-block {
    width: 100% !important;
}

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1440px !important;
}


h2.accordion-header-responsive {
    font-size: 1rem !important;
    margin-bottom: 0;
    margin-top: 0;
    background-color: green !important;
    color: white !important;
    padding: 10px;
    border-radius: 5px;
}

.accordion-item-responsive {
    margin-bottom: 5px;
}

a.btn-reservations {
    width: 100%;
}

h2 {
    font-size: 1.3rem !important;
}

h3 {
    font-size: 1.25rem !important;
}

h4 {
    font-size: 1.2rem !important;
}

h5 {
    font-size: 1.15rem !important;
}

h6 {
    font-size: 1rem !important;
}


.slider-tour {
    opacity: 0;
    transition: all 300ms;
    height: 600px;
}

.slider-tour.slick-initialized {
    opacity: 1;
    height: 100%;
}


.post-header {
    position: relative;
}

.post-header h1 {
    left: 0;
    width: 100%;
    position: absolute;
    bottom: 30%;
    z-index: 9999999;
    color: white;
    text-align: center;
    font-size: 2rem;
    text-shadow: 0 0 11px black;
}


.jupiterx-corner-buttons.jupiterx-scrolled {
    display: none;
}

.main_header {
    position: absolute !important;
    z-index: 9;
    width: 100%;
}


.phone {
    text-align: center;
}

h2.title_tour {
    font-family: "Oswald";
}


.phone a {
    color: grey;
}


.slick-slide img {
    width: 100%;
}

.title-page-desktop img {
    width: 100%;
}


.tour-card h5 {
    font-family: 'Oswald', sans-serif;
}


/* Estilo base de la tabla */
table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
}

/* Encabezado de la tabla */
table th {
    font-weight: bold;
    padding: 10px;
    text-align: left;
}

/* Filas impares con un fondo gris claro */
table tr:nth-child(odd) {
    background-color: #f2f2f2;
}

/* Filas pares con un fondo blanco */
table tr:nth-child(even) {
    background-color: #fff;
}

/* Estilo en hover */
table tr:hover {
    background-color: #ddd;
}


.icono_tab {
    display: none;
}


.read-more__link {
    margin-bottom: 18px;
    display: block;
    color: #ffbc00 !important;
    font-weight: 600;
    text-decoration: underline !important;
    text-transform: uppercase;
}


.accordion-button::after {
    background-image: url(../down-arrow.html) !important;
}

button.accordion-button {
    font-family: 'Oswald';
}


.raven-nav-menu-toggle-button > .fa-bars {
    color: #EFC34E;
}

.raven-nav-menu-dropdown {
    padding: 0 !important;
    background-color: #fafafa;
}


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

.short_price {
    column-count: 2;
}

.megamenu li {
    margin-bottom: 5px;
    margin-top: 5px;
    border-bottom: 1px solid #dddddd;
    padding-bottom: 5px;
}

.jet-menu div.jet-sub-mega-menu {
    overflow: hidden;
}

.main-content {
    margin-top: 15px;
    background-color: #fdfdfd;
}

.main_header {
    background: rgb(0, 0, 0);
    background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0.7206232834930848) 0%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0.7206232834930848) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7206232834930848) 0%, rgba(0, 0, 0, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
}

.header-container {
    overflow: hidden;
    width: 100%;
}

.nav-tour-slide {
    margin: 5px;
    padding: 0;
    overflow: hidden;
}

.slider-nav {
    padding-bottom: 10px;
    margin-bottom: -90px;
    top: -90px;
}

.label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.box_detail img {
    width: 20px;
    margin-top: -10px;
}

.box_detail {
    padding-bottom: 5px;
    border-bottom: 1px solid #d2d2d2;
    margin-bottom: 20px;
}

.label-detail {
    line-height: 1;
}

.detalles {
    background-color: #ffffff;
    padding: 5px;
}

.main_details .label-detail {
    margin-bottom: 5px;
    display: block;
}

.main_details {
    border-top: 1px solid #c7c7c7;
    padding-top: 15px;
}

.main_details img {
    width: 25px;
    margin-right: 10px;
}

.intro_tour {
    box-shadow: 0 5px 9px #00000026;
    padding-bottom: 15px;
    padding-top: 15px;
    margin-bottom: 30px;
}

.places_data {
    margin-top: -5px;
    line-height: 1.4;
    font-size: 0.7rem !important;
    margin-left: 40px;
}

.nav-tour-slide img {
    transform: scale(1);
    transition: all 600ms;

}

.main_details .label-detail {
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}

.amount {
    line-height: 1;
    font-size: 2rem;
    font-family: "Oswald", serif;
    font-weight: 600;
}

span.usd_label {
    font-size: 1.6rem;
}

span.places {
    font-weight: 700;
}

.box_price {
    text-align: center;
}

.box_price .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #9c9c9c;
}

.data_label {
    margin: 0;
    line-height: 1;
    font-size: 0.9rem;
}


.level_icon img {
    height: 30px !IMPORTANT;
}

.nav-tour-slide img:hover {
    transform: scale(1.2);
    cursor: pointer;
}

.slick-prev:before, .slick-next:before {
    color: black !important;
}

.phones {
    background-color: #025833;
    font-weight: 600;
    border-radius: 5px;
    border: 0px solid grey;
    padding: 10px;
    line-height: 1.3;
    color: white;
}

.phones .btn-call {
    background-color: #EFC34E !important;
    color: #025833 !important;
    font-weight: 700;
}

.btn-call {
    background-color: #142838 !important;
    color: #fff !important;
    border: none;
    border-radius: 4rem !important;
    font-weight: 600;
    text-transform: uppercase;
    padding: 1.5rem 3rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-call:hover {
    background-color: #305a7c !important;
}


.label_duration {
    background: #ffffffd4;
    width: fit-content;
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 5px;
    text-transform: uppercase;
}

.sites_to_visir {
    margin-top: 0;
    color: #979797;
}

.box-price p {
    margin-bottom: 0;
}

.title-box h1 {
    font-size: 2.6rem;
    color: white;
    text-shadow: 0 0 10px black;
    font-weight: 800;
    margin-bottom: 30px;
}

.accordion-collapse h2 {
    font-size: 1.2rem;
    font-weight: 700;
}

.titulo_dia h2 {
    font-size: 1rem;
}

.subheader {
    background-color: #f4f4f4;
}


.megamenu-center ul li a {
    padding: 0;
    list-style-type: none;
}

.megamenu-center ul li a {
    font-size: 0.85rem;
    margin-bottom: -1px;
    border-top: 1px solid #e8e8e8;
    padding-bottom: 5px;
    border-bottom: 1px solid #e8e8e8;
    color: #015933;
    display: block;
    padding-top: 5px;
    line-height: inherit;
}

.megamenu-center ul li a:hover {
    background-color: #fbfbfb;
}

.imagem_principal {
    position: relative;
    overflow: hidden;
}

.trip_style {
    -webkit-border-top-right-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -moz-border-radius-topright: 5px;
    -moz-border-radius-bottomright: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    position: absolute;
    top: 10px;
    background-color: #015933;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
}

.detalles-card {

}

.detalles_card {
    font-size: 0.9rem;
    margin-top: 10px;
    margin-bottom: 10px;
}


.tour-card .card-title {
    min-height: 55px;
    font-weight: 700;
    text-align: center;
}

.detalles-inner {
    border-bottom: 1px solid #edededc9;
    border-top: 1px solid #edededc9;
    font-size: 0.9rem;
    padding: 5px 15px;
    border-radius: 0;
    color: black;
}

.btn-block {
    width: 100%;
}

.box_price .data_label {
    padding: 15px;
}

.btn-reservations {
    text-transform: uppercase;
    border: 2px solid #015933 !important;
    border-radius: 0 !important;
    color: white !important;
    transition: all 500ms !important;
    background-color: #015933 !important;
}

.btn-orange {
    text-transform: uppercase;
    border: 2px solid #ffc92e !important;
    border-radius: 15px !important;
    color: white !important;
    transition: all 500ms !important;
    background-color: #ffc92e !important;
}

.btn-orange:hover {
    text-transform: uppercase;
    border: 2px solid #ffc92e !important;
    border-radius: 15px !important;
    color: #ffc92e !important;
    transition: all 500ms !important;
    background-color: rgba(255, 201, 46, 0) !important;
}


.title-phone a {
    color: white !important;
    transition: all 500ms;
}

.title-phone a:hover {
    color: #ffc92e !important;
}

p.tour-card-text {
    line-height: 1.2;
    text-align: center;
    min-height: 38px;
    margin-bottom: 7px;
    font-size: 0.8rem;
    color: grey;
    margin-top: 10px;
}

.btn-reservations:hover {
    text-transform: uppercase;
    border: 2px solid #015933 !important;
    border-radius: 0 !important;
    color: #015933 !important;
    background-color: white !important;
}

span.icon_in svg {
    width: 30px;
    margin-top: -8px;
}

.included h4 {
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
}


.no-included h4 {
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
}

.btn-reservations-2 {
    text-transform: uppercase;
    border: 2px solid #ffcc33 !important;
    border-radius: 0 !important;
    color: #015933 !important;
    transition: all 500ms !important;
    background-color: #ffcc33 !important;
}

.btn-reservations-2:hover {
    text-transform: uppercase;
    border: 2px solid #ffcc33 !important;
    color: #000000 !important;
    background-color: #ffcc33 !important;
}


.tour-card .card-body {
    padding: 5px 0 0 0;
}

p.price_from {
    margin-bottom: 0;
}

.price_from {
    line-height: 1;
}

.from_label {
    font-weight: 700;
    font-size: 0.8rem;
}

span.pperson {
    font-size: 0.8rem;
}

.from_amount {
    font-weight: 700;
    font-size: 1.5rem;
}

.tour-card {
    border-radius: 0 !important;
    overflow: hidden;
    padding: 10px;
    transition: all 400ms;
}


.tour-card:hover {
    box-shadow: 0 .25rem .50rem rgba(0, 0, 0, .4) !important;
}


.tour-card img {
    border-radius: 10px;
    transform: scale(1);
}


.tour-card:hover img {
    transform: scale(1.2);

}

.tour-card .card-title {
    min-height: 65px;
    font-weight: 700;
}

.tour-card .card-footer {
    transition: all 200ms;
}

.tour-card .card-footer:hover {
    background-color: #d9d9d9;
}


.tour-card img {
    transition: all 700ms;
}

.feat_image {
    overflow: hidden;
}

.box_menu {
    z-index: 9;
    position: sticky;
    top: 0px;
}

.jupiterx-main-content a {
    transition: all 200ms;
}

.jupiterx-main-content a:hover {

}

span.label_from {
    font-size: 1.2rem;
}

.header-container {
    position: relative;
}

.tour-heading {
    width: 100%;
    position: absolute;
    bottom: 0;
    background: rgb(0, 0, 0);
    background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0.7206232834930848) 0%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0.7206232834930848) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7206232834930848) 0%, rgba(0, 0, 0, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
}

.adicional {
    color: white;
}

.main_details {
    text-align: left !important;
}

.initial-nav ul {
    margin: 0;
    color: white;
    list-style: none;
    padding: 0;
}

.initial-nav ul li {
    display: inline;
}

.adicional {
    margin-bottom: 30px;
}

.initial-nav {
    margin-bottom: 10px;
    margin-top: 5px;
}

.initial-nav a {
    padding-left: 10px;
    padding-right: 10px;
    border-bottom: 2px solid white;
    padding-bottom: 5px;
    transition: all 300ms;
}

.initial-nav a:hover {
    border-bottom-color: #ffcc33;
    color: #ffcc33 !important;
}

.initial-nav a {
    color: white !important;
}

.tour-content h2 {
    font-size: 1.6rem;
    text-transform: uppercase;
    padding-left: 15px;
    border-left: 5px solid #006633;
    position: relative;
}

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

.trip_details li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    border-left: 1px solid #d1d1d17d;
    transition: all 300ms;
    padding-left: 5px;
}

.trip_details li:hover {
    background-color: #f6f6f6;
    border-left: 1px solid rgba(150, 150, 150, 0.49);
}


/* Estilos efecto portada */
.owl-theme .owl-nav .owl-prev {
    float: left
}

.jupiterx-main-content {
    padding: 0 !important;
    word-wrap: break-word;
}

.text-mr {
    font-size: 0.9rem;
}

.gocard {
    border-radius: 15px;
    overflow: hidden;
}


.gocard img {
    opacity: 0.8;
    transition: all 300ms;
}

.gocard img:hover {
    transform: scale(1.2);
    opacity: 1;
}


.gocard {
    background-color: black;
    position: relative;
}

.gocard .duracion {
    font-size: 0.85rem;
    left: 10px;
    font-weight: 700;
    position: absolute;
    top: 10px;
    color: white;
    padding: 5px 10px;
    border: 1px solid white;
    border-radius: 10px;
    background-color: #00000014;
}

.gocard .style {
    background-color: #00000014;
    font-size: 0.85rem;
    right: 10px;
    font-weight: 700;
    position: absolute;
    top: 10px;
    color: white;
    padding: 5px 10px;
    border: 1px solid white;
    border-radius: 10px;
}

.gocard .content {
    position: absolute;
    bottom: 0;
    color: white;
    padding: 15px;
    width: 100%;
    background: rgb(0, 0, 0);
    background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0.5690651260504201) 0%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0.5690651260504201) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5690651260504201) 0%, rgba(0, 0, 0, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
}

.gocard .adicional {
    color: #faca4f;
    font-size: 0.9rem;
    line-height: 1;
}

.gocard .deta .tour-card-text {
    color: white;
    line-height: 1.2;
}


.room2-carousel .owl-nav {
    position: absolute;
    top: 46%;
    width: 100%;
    opacity: .8;
    transition: opacity .2s ease
}

.room2-carousel:hover .owl-nav {
    opacity: 1
}

.room2-carousel .owl-prev {
    position: absolute;
    left: 25px
}

.room2-carousel .owl-next {
    position: absolute;
    right: 25px
}

.room-image-wrapper, .room-item, .room2-carousel .room-item {
    position: relative
}

.room-content-wrapper, .room2-carousel .room-content-wrapper {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    padding: 30px
}

.room-content-wrapper .overlay, .room2-carousel .room-content-wrapper .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(0 0 0 / 16%);
    transition: all .3s ease
}

.room-content-wrapper:hover .overlay, .room2-carousel .room-content-wrapper:hover .overlay {
    background-color: rgba(150, 122, 80, .7)
}

.room-title, .room2-carousel .room-title {
    top: 40%;
    position: relative;
    text-align: center;
    display: block;
    transition: all .3s ease
}

.room-content-wrapper:hover .room-title, .room2-carousel .room-content-wrapper:hover .room-title {
    top: 15%
}

.room-title h3, .room2-carousel .room-title h3 {
    color: #fff
}

.room-price-wrapper, .room2-carousel .room-price-wrapper {
    position: absolute;
    bottom: 45px;
    text-align: center;
    left: 0;
    right: 0
}

.room-price-wrapper del, .room2-carousel .room-price-wrapper del {
    display: none
}

.room-price-wrapper ins, .room2-carousel .room-price-wrapper ins {
    text-decoration: none
}

.room-price, .room2-carousel .room-price {
    border: 2px solid #ffffff;
    border-radius: 3px;
    color: #ffffff;
    display: inline-block;
    letter-spacing: .1rem;
    padding: 14px 36px;
    text-transform: uppercase;
    font-family: 'Nunito', Serif;
    font-weight: 500;
    font-size: 1.125rem;
    transition: all .3s ease;
}

.room-content-wrapper:hover .room-price, .room-price.style-2, .room2-carousel .room-content-wrapper:hover .room-price, .room2-carousel .room-price.style-2 {
    background-color: #907650;
    border-color: #907650;
    color: #fff
}

.room-excerpt, .room2-carousel .room-excerpt {
    position: relative;
    top: 22%;
    opacity: 0;
    transition: opacity .3s ease
}

.room-content-wrapper:hover .room-excerpt, .room2-carousel .room-content-wrapper:hover .room-excerpt {
    opacity: 1
}

.room-excerpt p, .room2-carousel .room-excerpt p {
    color: #fff;
    text-align: center
}

.room-image-wrapper .secondary {
    position: absolute;
    bottom: 35px
}

.event2-carousel {
    padding-right: 35px
}

@media only screen and (max-width: 992px) {
    .event2-carousel {
        padding-right: 0
    }
}

.event2-carousel .owl-stage-outer {
    margin-bottom: 35px
}

.event2-carousel .event-image-button-wrapper {
    position: relative
}

.event2-carousel .event-image-arrow {
    border-bottom: 10px solid #fff;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    bottom: 0;
    height: 0;
    margin-left: 65px;
    position: absolute;
    width: 0
}

.event2-carousel .event-image-button {
    background-color: #967a50;
    color: #fff;
    font-size: 1rem;
    padding: 15px 0;
    text-align: center;
    width: 60px;
    position: absolute;
    right: 0;
    bottom: 0
}

.event2-carousel .event-date-wrapper {
    border: 1px solid #d2d2d2;
    color: #967a50;
    line-height: 1;
    padding: 10px 15px;
    pointer-events: none;
    margin-top: 1px;
    max-width: 120px;
    width: 27%;
    float: left
}

.event2-carousel .event-date-wrapper .inner-wrapper .event-month {
    font-family: Lato;
    font-size: .9rem !important;
    font-weight: 400;
    text-align: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #d2d2d2
}

.event2-carousel .event-date-wrapper .inner-wrapper .event-day {
    font-family: Lato;
    font-weight: 300;
    font-size: 3.375rem !important;
    text-align: center;
    margin-top: 6px
}

.event2-carousel .event-title-wrapper {
    margin-top: 40px;
    margin-bottom: 40px
}

.event2-carousel .event-title-wrapper .event-title {
    max-width: 73%;
    padding-left: 15px;
    float: left
}

.event2-carousel .event-title-wrapper .event-title h3, .event2-carousel .event-title-wrapper .event-title h3 a {
    color: #0f2453;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    margin: 0;
    padding: 0
}

.event2-carousel .event-excerpt {
    float: left
}

.event2-carousel.owl-theme .owl-controls .owl-nav .owl-next:hover:after, .event2-carousel.owl-theme .owl-controls .owl-nav .owl-prev:hover:after {
    color: #b6b6b6
}

.event2-carousel.owl-theme .owl-controls .owl-nav .owl-prev:after {
    margin-left: -12px
}

.event2-carousel.owl-theme .owl-controls .owl-nav .owl-next:after {
    margin-right: -12px
}

@media screen and (max-width: 992px) {
    .calluna-shortcodes-responsive .calluna-flexslider-wrap .flex-direction-nav .flex-prev {
        opacity: 1;
        left: 10px
    }

    .calluna-shortcodes-responsive .calluna-flexslider-wrap .flex-direction-nav .flex-next {
        opacity: 1;
        right: 10px
    }
}

@media only screen and (max-width: 768px) {
    .calluna-shortcodes-responsive .calluna-col {
        width: 100%
    }

    .calluna-shortcodes-responsive .calluna-five-sixth, .calluna-shortcodes-responsive .calluna-four-fifth, .calluna-shortcodes-responsive .calluna-one-fifth, .calluna-shortcodes-responsive .calluna-one-fourth, .calluna-shortcodes-responsive .calluna-one-half, .calluna-shortcodes-responsive .calluna-one-sixth, .calluna-shortcodes-responsive .calluna-one-third, .calluna-shortcodes-responsive .calluna-three-fifth, .calluna-shortcodes-responsive .calluna-three-fourth, .calluna-shortcodes-responsive .calluna-two-fifth, .calluna-shortcodes-responsive .calluna-two-third {
        width: 100%;
        float: none;
        margin-right: 0;
        margin-bottom: 20px
    }

    .calluna-shortcodes-responsive .calluna-shortcodes-responsive .calluna-pricing-table > div {
        margin-bottom: 25px
    }

    .calluna-shortcodes-responsive .calluna-box.left, .calluna-shortcodes-responsive .calluna-box.right, .calluna-shortcodes-responsive .calluna-shortcodes-responsive .calluna-box {
        float: none;
        width: 100% !important
    }

    .calluna-shortcodes-responsive .calluna-tabs ul.ui-tabs-nav {
        margin-left: 0
    }

    .calluna-shortcodes-responsive .calluna-tabs ul.ui-tabs-nav li {
        width: 100%
    }

    .calluna-shortcodes-responsive .calluna-tabs ul.ui-tabs-nav li a {
        border-left-width: 1px
    }
}

@media only screen and (max-width: 480px) {
    .calluna-testimonial {
        display: block;
        float: left
    }

    .calluna-testimonial-author-image {
        margin-left: auto;
        margin-right: auto;
        width: 120px;
        margin-bottom: 20px;
        float: none
    }
}

/* Estilos efecto portada */


.text-white, .text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white h5, .text-white a {
    color: white !important;
}


/* efecto para los tours */


.blog-card {
    display: block;
    max-width: 100%;
    width: 100%;
    height: 450px;
    position: relative;
    color: #fff;
    top: 0%;
    right: 0;
    left: 0;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0px;
    box-shadow: 0px 10px 20px -9px rgba(0, 0, 0, 0.5);
    text-align: center;
    transition: all 0.4s;
    background-size: 100%;
}

.blog-card a {
    color: #fff;
    text-decoration: none;
    transition: all 0.2s
}

.blog-card .color-overlay {
    background: rgba(64, 84, 94, 0);
    width: 550px;
    height: 500px;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    transition: background 0.3s cubic-bezier(0.33, 0.66, 0.66, 1);
}

.blog-card .gradient-overlay {
    background-image: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.6) 21%);
    width: 550px;
    height: 500px;
    position: absolute;
    top: 350px;
    left: 0;
    z-index: 15;
}

.blog-card:hover {
    box-shadow: 0px 18px 20px -9px rgba(0, 10, 30, 0.75);
}

.blog-card:hover .card-info {
    opacity: 1;
    bottom: 40px;
}

.blog-card:hover .color-overlay {
    background: rgba(0, 0, 0, 0.8);
}

.blog-card:hover .title-content {
    margin-top: 30px
}

.title-content {
    padding: 20px;
    text-align: center;
    margin: 170px 0 0 0;
    position: absolute;
    z-index: 20;
    width: 100%;
    top: 0;
    left: 0;
    transition: all 0.6s;
}

.blog-card:hover h3:after {

    animation: changeLetter 0.3s 1 linear;
    width: 80%
}

.blog-card .intro {
    opacity: 0.85;
    font-size: 0.85rem;
}


.blog-card h3, h1 {
    font-size: 1.8em;
    font-weight: 400;
    letter-spacing: 0px;
    margin-bottom: 0;
    display: inline-block;
}

.blog-card h3 a {
    font-weight: 800;
    font-size: 1.2rem;
    text-shadow: 0px 0px 4px rgb(0, 0, 0);
    transition: all .2s;
    line-height: 90%;
}

.blog-card h3 a:hover {
    text-shadow: 0px 8px 20px rgba(0, 0, 0, 0.95);
}

.blog-card .title-content h3:after {
    content: " ";
    display: block;
    width: 10%;
    height: 2px;
    margin: 5px auto;
    border: 0;
    background: #BDA26B;
    transition: all 0.2s
}


.blog-card .card-info {
    box-sizing: border-box;
    padding: 0;
    width: 100%;
    position: absolute;
    bottom: -40px;
    left: 0;
    margin: 0 auto;
    padding: 0 30px;
    font-style: 16px;
    line-height: 24px;
    z-index: 20;
    opacity: 0;
    transition: bottom 0.64s, opacity 0.63s cubic-bezier(0.33, 0.66, 0.66, 1);
}

.blog-card .card-info a {
    display: block;
    width: 100px;
    margin: 15px auto;
    background: #fff;
    color: #444;
    padding: 3px 10px;
    border-radius: 2px;
    font-size: 0.8em
}

.blog-card .card-info a:hover {
    background: #8e7c49;
    color: #fff;
}

.blog-card .card-info a:hover span {
    filter: brightness(10);
    opacity: 1
}


/* efecto para los tours */


div#jupiterx-primary {
    padding: 0px;
}


.swiper-carousel-tours {
    overflow: hidden;
}

.duration {
    font-size: 15px;
    color: white;
}

.price_prev {
    width: 100%;
    font-size: 1.3rem !important;
    height: 100%;
    padding: 10px !important;
}

div#sidebar_tour {
    background-color: white;
}

.fecha-reserva-box .datepicker {
    width: 100%;
}


.text-black {
    color: black !important;
}

.bg_title {
    position: absolute;
    bottom: 20%;
    width: 100%;
}

.title-text {
    transition: all 400ms;
    width: 50%;
    background-color: #0000005e;
    padding: 30px;
    color: white;
}

.title-text:hover {
    background-color: #00000096;
}

.texto_encima {
    color: #ffc92e;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1;
}

.title-text h1 {
    font-size: 2.3rem;
    text-transform: uppercase;
    font-weight: 700;
}

.texto_debajo {
    line-height: 1.4;
    margin-bottom: 10px;
    margin-top: 10px;
    font-size: 0.9rem;
}

p#breadcrumbs a {
    color: #015933;
    font-weight: 600;
}

.book_now_box {
    background-color: white;
}

.book_now_box h4 {
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 0;
}

.book_now_box h5 {
    font-size: 1rem;
}

.book_now_box .con {
    font-size: 0.9rem;
    line-height: 1.2;
    margin-bottom: 8px;
}

.title-page {
    position: relative;
}

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

ul.lang-selector li {
    margin-right: 3px;
    display: inline-block;
    margin-left: 3px;
}

ul.lang-selector img {
    width: 25px !important;
    height: 15px !important;
}

.lang-selector a {
    top: -5px !important;
    padding: 0;
    line-height: 1;
    position: relative;
}

ul.lang-selector {
    margin: 0px 0 0 5px;
    padding: 0;
    list-style: none;
}

.card-cook img {
    margin-top: -60px
}

.adicional img {
    margin-top: -5px;
    width: 30px;
    height: 30px;
}

.box-price h5 {
    font-size: 0.9rem;
}

.box-price h5 .monto {
    font-size: 0.9rem;
}

.box-price span.monto {
    font-size: 2rem;
    font-family: "Oswald", serif;
}

.add_details {
    font-size: 0.8rem;
}

.tour-accordion-header h2 {
    margin-bottom: 5px;
    font-size: 1.3rem;
    font-weight: 600;
}

.tour-accordion-header {
    padding: 5px 20px;
}

.day_n {
    color: #015933;
    font-weight: 700;
    position: relative;
}

.tour-accordion-header {
    border-bottom: 2px solid #006633;
    cursor: pointer;
    transition: all 400ms;
    background-color: #fcfcfc;
}

.tour-accordion-header:hover {
    border-bottom: 2px solid #006633;
    cursor: pointer;
    background-color: #f1f1f1;
}

.tri_down {
    position: absolute;
    right: 0;
    color: black;
    font-size: 2rem;
    transition: all 400ms;
    transform: rotate(90deg);
}

.collapsed .tri_down {
    transform: rotate(0deg);
}

.tour-accordion-header:hover .tri_down {
    color: #ffc92e;
}

.tri_down {
    position: absolute;
    right: 0;
    color: black;
    font-size: 2rem;
    transition: all 200ms;
    transform: rotate(90deg);
}


/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {

    .deta {
        display: none;
    }

    a.btn-reservations {
        border-radius: 5px !important;
        font-size: 1rem;
        width: 100%;
    }

    .btn-reservations-2 {
        border-radius: 5px !important;
        font-size: 1rem !important;
        width: 100%;
    }


    .tour-content h2 {
        font-size: 1.2rem;
        text-transform: uppercase;
        padding-left: 15px;
        border-left: 5px solid #006633;
        position: relative;
        font-weight: 700;
    }


    .content h3 {
        margin-bottom: 0;
        font-size: 1rem;
    }

    .gocard .adicional {
        margin-bottom: 10px;
    }


    .texto_debajo {
        display: none;
    }

    .slick-slide img {
        width: 100%;
        display: block;
    }


    h2.title_tour {
        color: #025833;
        font-size: 1.1rem;
        text-align: center;
        font-weight: 800;
    }

    /* Styles */
    .section_tour .accordion-item h2 {
        font-size: 0.85rem;
    }

    .tour-box {
        padding: 10px !important;
    }

    .accordion-item-responsive i {
        margin-right: 10px;
    }

    h2.accordion-header-responsive button {
        font-weight: 700 !important;
        text-transform: uppercase;
        font-size: 0.9rem !important;
    }

    .mobile_menu {
        display: none;
    }

    .mobile_menu {
        box-shadow: 0 5px 8px 2px #0000002e;
        background: white;
        z-index: 9;
        position: sticky;
        top: 0;
    }

    .nav-responsive li {
        display: inline-block;
    }

    .nav-responsive a {
        display: block;
        padding-left: 5px;
        padding-right: 5px;
    }

    .nav-responsive li.current {
        background-color: green;
    }

    .nav-responsive li.current a {
        color: white;
    }


    .box_menu {
        display: none;
    }


    .icono_tab {
        display: none;
    }

    .itinerary_label {
        font-size: 0.8rem !important;
        font-weight: 600;
    }

    .itinerary_label {

    }


    .logo_footer img {
        width: 50px
    }

    .initial-nav {
        display: none;
    }

    .nav_item_7 {
        display: none !important;
    }

    .nav_item_9 {
        display: none !important;
    }

    .box-price {
        display: none;
    }

    .label_duration {
        margin: auto;
    }

    .slider-nav {
        display: none !important;
    }

    .title-box h1 {
        font-size: 2rem;
        text-align: center;
    }

    .box-price {
        display: none !important;
    }

    button.slick-arrow {
        display: none !important;
    }

    .slider-tour {
        display: none !important;
    }

    .header-container {
        height: 60vh;
    }

    .title-page-desktop {
        display: none;
    }

    .title-text {
        text-align: center;
        width: 100%;
    }

    .title-text h1 {
        font-size: 2rem;
        text-transform: uppercase;
        font-weight: 400;
    }

    .bg_title {
        position: absolute;
        bottom: 29%;
        width: 100%;
    }


    .box_menu {
        z-index: 9;
        position: sticky;
        top: 0;
    }

    #sidebar_tour li {
        margin-right: 0 !important;
    }

    ul#nav {
        width: max-content;
        display: inline-block;
        margin-bottom: 0;
        padding-left: 0;
    }

    ul#nav li {
        display: inline-block;
        padding: 0px 3px;
        margin-bottom: 0px;
    }

    button.accordion-button {
        font-size: 1.1rem !important;
        padding: 10px;
        text-align: left;
        border-radius: 5px;
    }

    .accordion-body {
        padding: 10px;
    }

    .box_menu {
        padding: 0;
        width: 100% !important;
    }

    .content {
        width: 100% !important;
    }

    #nav a {
        font-family: "Oswald", Sans-serif;
        font-size: 15px !important;
        padding: 10px !important;
    }

    .mb-5 {
        margin-bottom: 0 !important;
    }

    .mt-6 {
        margin-top: 0 !important;
    }

    p#breadcrumbs {
        display: none;
    }

    .detalles {
        display: none;
    }

    .text-help {
        display: none;
    }

    .pdf_itinerary {
        display: none;
    }

    .book_online {
        display: none;
    }

    div#accordionExample {
        padding-top: 15px;
    }

    h2 {
        font-size: 1.4rem;
    }

    .hide-mobile {
        display: none !important;
    }

}

/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
    /* Styles */
}

/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
    /* Styles */
}

/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    /* Styles */
}

/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
    /* Styles */
}

/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    /* Styles */
}

/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
    /* Styles */
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
    /* Styles */
}

/* Desktops and laptops ----------- */
@media only screen  and (min-width: 1224px) {

    h2.accordion-header-responsive {
        display: none;
    }

    .tour-box {
        padding: 15px;
    }


    .item_collapse .accordion-collapse {
        display: block !important;
    }

    /* Styles */
    .title-page-mobile {
        display: none;
    }

    .imagen_mobile {
        display: none;
    }

    .mobile_menu {
        display: none;
    }

    .box_menu {
        border-radius: 0;
        background-color: white;
        padding: 5px;
        border: 1px solid #ededed;
        margin-bottom: 15px;
    }


}


/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
    /* Styles */
}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
    /* Styles */
}

/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
    /* Styles */
}

@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
    /* Styles */
}

/* iPhone 6, 7, 8 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
    /* Styles */
}

@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
    /* Styles */
}

/* iPhone 6+, 7+, 8+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
    /* Styles */
}

@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
    /* Styles */
}

/* iPhone X ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 812px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
    /* Styles */
}

@media only screen and (min-device-width: 375px) and (max-device-height: 812px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
    /* Styles */
}

/* iPhone XS Max, XR ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 896px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
    /* Styles */
}

@media only screen and (min-device-width: 414px) and (max-device-height: 896px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
    /* Styles */
}

/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
    /* Styles */
}

@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
    /* Styles */
}

/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
    /* Styles */
}

@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
    /* Styles */
}

/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
    /* Styles */
}

@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
    /* Styles */
}

ul#nav {
    display: flex;
    margin: 0;
    padding: 0;
}

#nav li {
    margin-left: 0;
    margin-top: 0;
    display: inline-block;
    margin-bottom: 0;
    margin-right: 10px;
}

#nav a {
    font-weight: 700;
    background: #ededed;
    color: #666;
    display: block;
    font-size: 20px;
    padding: 10px 15px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 900ms;
    border-radius: 0;
}

#nav a:hover {
    background: #006633;
    color: #ffcc33;
}

#nav .current a {
    background: #006633;
    color: #ffcc33;

}

.tour-box h2 {
    color: #006633;
    border-left: 0px solid #006633;
    margin-left: 0px;
    padding-left: 0px;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 15px;
    padding-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 600;
}

.section {
    border-bottom: 5px solid #ccc;
    min-height: 60vh;
    padding: 50px 20px;
}

.section p:last-child {
    margin-bottom: 0;
}


.accordion-item {
    margin-bottom: 15px;
}

.accordion-collapse {
    border-width: 1px !important;
}

.accordion-button.collapsed {
    border-bottom-width: 1px !important;
}

.accordion-button:not(.collapsed) {
    font-size: 1.5rem;
    color: #000000;
    background-color: #fdfdfd;
}

.accordion-button {
    font-size: 1.25rem !important;
}

.accordion-button:not(.collapsed) {
    color: #0c63e4;
    background-color: #ededed;
}

.accordion-button:not(.collapsed) {
    color: #000000 !important;
    background-color: #ededed !important;
}


.accordion-button:focus {
    z-index: 3;
    border-color: #015933 !important;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(1 89 51 / 24%);
!important;
}

img.image-itinerario {
    width: 480px;
}

.bg-itinerario {
    padding: 30px 0;
    background-color: #fbfbfb;
}

.sidebar {
    position: sticky;
    top: 0;
}

.tripadvisor_sidebar img {
    width: 200px;
    text-align: center;
    margin: auto;
    display: block;
}

li.normal.nav_item_6 {
    display: none !important;
}


.tripadvisor_sidebar h4 {
    text-align: center;
    font-size: 0.9rem;
}


li.normal {
    text-align: center;
}

.itinerary_label {
    font-size: 1rem;
    font-weight: 600;
}

.accordion-body {
    background-color: white;
}

.accordion-button.collapsed {
    background-color: #025833;
    color: #EFC34E;
}

.borde {
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, .125);
    background-color: white;
}

.gallery-thumbs {
    margin-top: 10px;
}

.thumbnail-slide-category {
    opacity: 0.5;
    transition: all 200ms;
    cursor: pointer;
    border-radius: 5px;
}

.thumbnail-slide-category:hover {
    opacity: 1;
}

.swiper-slide-thumb-active {
    opacity: 1;
}


.swiper-slide-tour {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.grid {
    position: relative;
    margin: 0 auto;
    max-width: 1000px;
    list-style: none;
    text-align: center;
    padding: 10px;
}

/* Common style */
.grid figure {
    position: relative;
    overflow: hidden;
    margin: 10px 1%;
    min-width: 100%;
    max-height: 640px;
    background: #000;
    text-align: center;
    cursor: pointer;
}

.grid figure img {
    position: relative;
    display: block;
    min-height: 100%;
    max-width: 100%;
    opacity: 1;
}

.grid figure figcaption {
    padding: 1em;
    color: #fff;
    font-size: 1.25em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
    pointer-events: none;
}

.grid figure figcaption, .grid figure figcaption > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.grid figure figcaption > a {
    z-index: 1000;
    text-indent: 200%;
    white-space: nowrap;
    font-size: 0;
    opacity: 0;
}

.grid figure h2 {
    font-weight: 500;
}

.grid figure h2 span {
    font-weight: 800;
}

.grid figure h2,
.grid figure p {
    margin: 0;
}

.grid figure p {
    margin-top: 0px;
    font-weight: 400;
    font-size: 79%;
    line-height: 140%;
    color: white !important;
}

.label-detail b:hover {
    color: #015933;
}


/*---------------*/
/***** Lily *****/
/*---------------*/

figure.effect-lily img {
    max-width: none;
    width: -webkit-calc(100% + 50px);
    width: calc(120%);
    opacity: 1;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(-40px, 0, 0);
    transform: translate3d(-40px, 0, 0);
}

figure.effect-lily figcaption {
    text-align: left;
}

figure.effect-lily figcaption > div {
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 10px 20px 10px 20px;
    width: 100%;
    height: 36%;
    background: rgb(0, 0, 0);
    background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(164, 27, 16, 0.009138689655549759) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(164, 27, 16, 0.009138689655549759) 100%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(164, 27, 16, 0.009138689655549759) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#a41b10", GradientType=1);
}

figcaption > div > a.btn {
    bottom: 0 !important;
    position: relative;
}

a.btn.btn-sm.btn-outline-light:hover {
    color: black !important;
}

figure.effect-lily h2,
figure.effect-lily p {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
    text-shadow: 2px 2px 4px black !important;
    color: white;
}

figure.effect-lily h2 {
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    text-shadow: 2px 2px 4px black !important;
}

figure.effect-lily p {
    color: rgba(255, 255, 255, 0.8);
    opacity: 1;
    padding: 10px;
    -webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
    transition: opacity 0.2s, transform 0.35s;
}

figure.effect-lily h2 {
    color: white !important;
}

figure.effect-lily:hover img {
    opacity: 0.5;
}

figure.effect-lily:hover p {
    opacity: 1;
}

figure.effect-lily:hover img {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

figure.effect-lily:hover h2,
figure.effect-lily:hover p {
    -webkit-transform: translate3d(0, -50px, 0);
    transform: translate3d(0, -50px, 0);
}


figure.effect-lily:hover p {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
}


/* Efectos para categorias */


.operator-snippet__data {
    border-top: 1px solid #dfdfdf;
}

.operator-snippet__data .box {
    padding: 10px;
    border-right: 1px solid #dfdfdf;
    text-align: center;
}

h2.serif.tourtitle {
    color: white !important;
}

/* Efectos para categorias */

.sidebar > #nav > li.normal.current a {
    color: white !important;
}

.sidebar > #nav > li.normal a {
    color: black !important;
}

.border-tour {
    margin: 0 0 10px 15px;
    padding: 5px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
}

.accordion-body {
    text-align: justify;
}

.sidebar .amount {
    font-size: 3rem;
}


.box_note {
    background-color: #00663317;
    padding: 10px;
    color: #000000;
    font-size: 0.8rem;
}

.box_specialist {
    margin-top: 70px;
    text-align: center;
}

.foto_specialist img {
    margin: auto;
    border-radius: 50% !important;
    width: 90px;
    margin-top: -60px;
    box-shadow: 0 0 4px #0000006b !important;
    display: block;
    border: 3px solid white !important;
}

.box_specialist h4 {
    text-transform: uppercase;
    font-size: 1rem;
    text-align: center;
}

.foto_specialist {
    margin-bottom: 15px;
}

.box_specialist p {
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 1.2;
}


.detalles {
    border: 10px;
}

.table > :not(caption) > * > * {
    vertical-align: middle !important;
}

.text-right {
    text-align: right;
}

.elementor-25754 .elementor-element.elementor-element-c495052 .jet-popup-action-button__instance {
    width: 100%;
}

.book_form_box {

}

.book_form_box h2 {
    margin-bottom: 0px;
    font-size: 1.4rem;
    font-family: "Oswald", Sans-serif !important;
}


.hide {
    display: none !important;
}


.pax_information {
    font-weight: 500;
    font-size: 0.85rem;
}

.pax_information > .row > div {
    padding: 0 5px !important;
}

.pax_information label {
    margin-bottom: 0;
    margin-top: 10px;
}

.resumen-pedido {
    font-size: 0.85rem;
    padding: 10px;
}

.resumen-pedido table {
    width: 100%;
}

.resumen-pedido tr {
    border-bottom: 1px solid #ffd6a5;
}

.resumen-pedido td {
    padding-bottom: 5px;
    padding-top: 5px;
}


/* efectos portada */

.travel_tour_card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    background: white;
    color: currentColor;
    text-decoration: none !important;
    overflow: hidden;
    transition-property: color;
    transition-delay: 0.15s;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;

}

.travel_tour_card.hover {
    color: white;
    transition-delay: 0;
}

.travel_tour_card, .travel_tour_card__image, .travel_tour_card__image::after, .travel_tour_card__author, .travel_tour_card__body, .travel_tour_card__foot, .travel_tour_card__border {
    transition-duration: 0.4s;
    /*transition-timing-function: cubic-bezier(0.51, 0.92, 0.24, 1);*/
}

.travel_tour_card__head {
    position: relative;
    padding-top: 70%;
}

.travel_tour_card__author {
    position: absolute;
    padding: 10px;
    left: 0;
    bottom: 0;
    color: white;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-delay: 0.15s;
}

.travel_tour_card.hover .travel_tour_card__author {
    transition-delay: 0;
}

.travel_tour_card__image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    -webkit-transform-origin: top center;
    transform-origin: top center;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-delay: 0.15s;
}

.travel_tour_card__image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .5;
    /*background: linear-gradient(30deg, rgb(0 0 0 / 85%), rgb(255 255 255 / 50%));*/
    transition-property: opacity;
    transition-delay: 0.15s;
}

.travel_tour_card.hover .travel_tour_card__image {
    transition-delay: 0;
}

.travel_tour_card.hover .travel_tour_card__image::after {
    opacity: 1;
    transition-delay: 0;
}

.travel_tour_card__body {
    position: relative;
    padding: 15px;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-delay: 0.15s;
}

.travel_tour_card.hover .travel_tour_card__body {
    transition-delay: 0;
}

.travel_tour_card .travel_tour_card__headline {
    color: #015933 !important;
}

.travel_tour_card.hover .travel_tour_card__headline {
    color: white !important;
}

.travel_tour_card__headline {
    font-weight: 400;
    margin: 0;
    border-bottom: none;
    font-size: 1.3rem;
    min-height: 40px;
}

.travel_tour_card__text {
    line-height: 1.5;
    margin: 0;
    opacity: .8;
}

.travel_tour_card__foot {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 2em 2em;
    opacity: 0;
    transition-property: opacity;
}

.travel_tour_card.hover .travel_tour_card__foot {
    opacity: 1;
    transition-delay: 0.15s;
}

.travel_tour_card__link {
    color: currentColor;
    text-decoration: none;
    border-bottom: 2px solid #f0c34c;
}

.travel_tour_card__border {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 6px;
    background: #f0c34c;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition: all 200ms;
}

.travel_tour_card.hover .travel_tour_card__border {
    -webkit-transform: none;
    transform: none;
    transition-delay: 0.15s;
}

.separator_mr {
    margin-top: 0px;
    height: 5px;
    width: 50%;
    background-color: #f0c34c;
    margin-bottom: 15px;
}

.author {
    display: flex;
    align-items: center;
}

.author__image {
    flex-shrink: 0;
    margin-right: 1em;
    width: 56px;
    height: 56px;
    border-radius: 100%;
    overflow: hidden;
}

.author__content {
    display: grid;
    grid-gap: .4em;
    font-size: .9em;
}

.author__header {
    margin: 0;
    font-weight: 600;
}

.author__subheader {
    margin: 0;
    opacity: .8;
}

a.travel_tour_card {
    margin-bottom: 15px;
}

/* efectos portada */


.socios img {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 200ms;
}

.socios img:hover {
    -webkit-filter: grayscale(1);
    filter: none;
    opacity: 1;
}

.mt-6 {
    margin-top: 30px;
}

div#inclusions {
    background-color: #f8f8f8;
}

h2.text-white {
    color: white !important;
}


.showcase {
    position: relative;
    overflow: hidden;
}

.showcase_title {
    position: absolute;
    bottom: 0;
    padding: 15px;
}

.showcase1 h2 {
    font-weight: 700;
    font-size: 1.9rem;
    line-height: 1.1;
}

.showcase2 h2 {
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 1.1;
}

.showcase img {
    width: 100%;
    transition: all 500ms;
}

.showcase:hover img {
    transform: scale(1.2);
}

.showcase_title {
    width: 100%;
}


.showcase_title {
    color: white;
    background: rgb(0, 0, 0);
    background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0.5690651260504201) 0%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0.5690651260504201) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5690651260504201) 0%, rgba(0, 0, 0, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
}

.included ul li:before {
    font-family: 'Font Awesome 5 Free';
    content: '\f105';
    margin: 0 5px 0 -13px;
    color: #62ab00;
    font-weight: 900;
}

.included li, .no-included li {
    list-style: none;
}

.no-included ul li:before {
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    content: '\f105';
    margin: 0 5px 0 -13px;
    color: #ba0101;
}

.tour-box ul {
    padding-left: 15px;
}


/* chat bonito */


.wa__button {
    border-bottom: none !important;
}

.wa__btn_w_img:hover {
    text-decoration: none;
}

.wa__button,
.wa__btn_popup,
.wa__button *,
.wa__btn_popup *,
.wa__btn_popup :before,
.wa__button :before,
.wa__button :after,
.wa__btn_popup :after,
.wa__popup_chat_box,
.wa__popup_chat_box *,
.wa__popup_chat_box :before,
.wa__popup_chat_box :after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

/* VVV--button--VVV */
.wa__button {
    position: relative;
    width: 300px;
    min-height: 64px;
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    color: #fff;
    box-shadow: 0px 4px 8px 1px rgba(32, 32, 37, 0.09);
    -webkit-box-shadow: 0px 4px 8px 1px rgba(32, 32, 37, 0.09);
    -moz-box-shadow: 0px 4px 8px 1px rgba(32, 32, 37, 0.09);
}

.wa__btn_txt {
    display: inline-block;
    font-size: 12px;
    line-height: 1.33em;
}

.wa__btn_w_icon .wa__btn_txt {
    padding: 16px 20px 15px 71px;
}

.wa__button_text_only .wa__btn_txt,
.wa__r_button.wa__btn_w_img.wa__button_text_only .wa__btn_txt,
.wa__sq_button.wa__btn_w_img.wa__button_text_only .wa__btn_txt {
    padding-top: 25px;
    padding-bottom: 24px;
}


.wa__btn_w_icon .wa__btn_txt .wa__btn_title {
    font-weight: 600;
    padding-left: 2px;
    font-size: 14px;
}

.wa__cs_info {
    margin-bottom: 2px
}

.wa__btn_status {
    color: #F5A623;
    font-size: 9px;
    padding: 2px 0 0;
    font-weight: 700;
}

.wa__cs_info .wa__cs_name,
.wa__cs_info .wa__cs_status {
    display: inline-block;
}

.wa__cs_info .wa__cs_name {
    font-weight: 400;
    font-size: 12px;
    line-height: 1.36em;
}

.wa__stt_online .wa__cs_info .wa__cs_name {
    color: #d5f0d9
}

.wa__stt_offline .wa__cs_info .wa__cs_name {
    color: #76787d;
}

.wa__cs_info .wa__cs_status {
    width: 36px;
    height: 14px;
    margin-left: 3px;
    padding: 1px;
    font-size: 9px;
    line-height: 1.34em;
    border-radius: 5px;
    color: rgba(255, 255, 255, 0.98);
    position: relative;
    top: -1px;
    left: 0px;
    text-align: center;
}

.wa__stt_online .wa__cs_info .wa__cs_status {
    background: #62c971;
}

.wa__stt_offline .wa__cs_info .wa__cs_status {
    background: #b9bbbe;
}


.wa__stt_online {
    background: #2DB742;
    cursor: pointer;
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    backface-visibility: hidden;
    will-change: transform;
}

.wa__stt_online .wa__btn_txt {
    position: relative;
    z-index: 4;
}

.wa__r_button.wa__stt_online:before {
    border-radius: 50vh;
}

.wa__sq_button.wa__stt_online:before {
    border-radius: 5px;
}

.wa__stt_online:before {
    content: '';
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    opacity: 0;
    will-change: opacity;
}

.wa__button.wa__stt_online:focus,
.wa__button.wa__stt_online:active,
.wa__button.wa__stt_online:hover {
    box-shadow: 0px 4px 8px 1px rgba(32, 32, 37, 0.19);
    transform: translate(0, -3px);
    -webkit-transform: translate(0, -3px);
    -moz-transform: translate(0, -3px);
    -ms-transform: translate(0, -3px);
}

.wa__button.wa__stt_online:focus:before,
.wa__button.wa__stt_online:active:before,
.wa__button.wa__stt_online:hover:before {
    opacity: 1;
}

.wa__stt_online.wa__btn_w_icon .wa__btn_icon img {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
}

.wa__stt_offline {
    background: #EBEDF0;
    color: #595B60;
    box-shadow: none;
    cursor: initial;
}

.wa__stt_offline.wa__btn_w_icon .wa__btn_txt {
    padding: 8px 20px 6px 71px;
}

.wa__stt_offline.wa__r_button.wa__btn_w_img .wa__btn_txt {
    padding: 8px 20px 8px 100px
}

.wa__stt_offline.wa__sq_button.wa__btn_w_img .wa__btn_txt {
    padding: 8px 20px 8px 70px;
}

.wa__btn_w_icon .wa__btn_icon {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
}

.wa__btn_w_icon .wa__btn_icon img {
    width: 41px;
    height: 69px;
}

.wa__btn_w_img {
    position: relative;
    width: 300px;
    margin: 20px 0 20px;
}

.wa__btn_w_img .wa__cs_img {
    position: absolute;
    top: 50%;
    left: 0px;
    text-align: center;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
}

.wa__btn_w_img .wa__cs_img_wrap {
    width: 79px;
    height: 79px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border: 3px solid #ffffff;
    position: relative;
    overflow: hidden;
}

.wa__btn_w_img .wa__cs_img img {
    max-width: 100%;
    height: auto;
    transition: 0.2s ease transform;
    -webkit-transition: 0.2s ease transform;
    -moz-transition: 0.2s ease transform;
}

.wa__btn_w_img .wa__cs_img:after {
    content: '';
    background: #ffffff url('../svg/whatsapp_logo_green.svg') center center no-repeat;
    background-size: 21px;
    display: block;
    width: 27px;
    height: 27px;
    position: absolute;
    top: 20px;
    right: -14px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    box-shadow: 0px 4px 6px 0px rgba(39, 38, 38, 0.3);
    -webkit-box-shadow: 0px 4px 6px 0px rgba(39, 38, 38, 0.3);
    -moz-box-shadow: 0px 4px 6px 0px rgba(39, 38, 38, 0.3);
}

.wa__stt_offline.wa__btn_w_img .wa__cs_img:after {
    content: '';
    background: #ffffff url('../whatsapp_logo_gray.html') center center no-repeat;
    background-size: 21px;
    display: block;
    width: 27px;
    height: 27px;
    position: absolute;
    top: 20px;
    right: -14px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    box-shadow: 0px 4px 6px 0px rgba(39, 38, 38, 0.3);
    -webkit-box-shadow: 0px 4px 6px 0px rgba(39, 38, 38, 0.3);
    -moz-box-shadow: 0px 4px 6px 0px rgba(39, 38, 38, 0.3);
}


.wa__btn_w_img .wa__btn_txt {
    padding: 14px 20px 12px 103px;
}

.wa__r_button {
    border-radius: 50vh;
}

.wa__sq_button {
    border-radius: 5px;
}

.wa__sq_button.wa__btn_w_img {
    width: 270px;
    margin-left: 30px;
}

.wa__r_button.wa__btn_w_img .wa__cs_img {
    left: -5px;
}

.wa__sq_button.wa__btn_w_img .wa__cs_img {
    left: -35px;
}

.wa__sq_button.wa__btn_w_img .wa__btn_txt {
    padding: 10px 20px 10px 70px;
    display: table-cell;
    vertical-align: middle;
    height: 66px;
}

.wa__btn_txt .wa__btn_title {
    font-weight: 600;
}

.wa__r_button.wa__btn_w_img .wa__btn_txt {
    padding: 8px 20px 8px 100px;
    display: table-cell;
    vertical-align: middle;
    height: 66px;
}

.wa__r_button.wa__btn_w_img .wa__cs_info .wa__cs_status {
    margin-left: 3px;
}

/* ^^^--button--^^^ */

/* VVV--popup--VVV */

.wa__popup_chat_box {
    font-family: Arial, Helvetica, sans-serif;
    width: 351px;
    border-radius: 5px 5px 8px 8px;
    -webkit-border-radius: 5px 5px 8px 8px;
    -moz-border-radius: 5px 5px 8px 8px;
    position: fixed;
    overflow: hidden;
    box-shadow: 0px 10px 10px 4px rgba(0, 0, 0, 0.04);
    -webkit-box-shadow: 0px 10px 10px 4px rgba(0, 0, 0, 0.04);
    -moz-box-shadow: 0px 10px 10px 4px rgba(0, 0, 0, 0.04);
    bottom: 102px;
    right: 25px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    -ms-transform: translate(0, 50px);
    transform: translate(0, 50px);
    -webkit-transform: translate(0, 50px);
    -moz-transform: translate(0, 50px);
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    will-change: transform, visibility, opacity;
    max-width: calc(100% - 50px);
}

.wa__popup_chat_box:hover,
.wa__popup_chat_box:focus,
.wa__popup_chat_box:active {
    box-shadow: 0px 10px 10px 4px rgba(32, 32, 37, 0.23);
    -webkit-box-shadow: 0px 10px 10px 4px rgba(32, 32, 37, 0.23);
    -moz-box-shadow: 0px 10px 10px 4px rgba(32, 32, 37, 0.23);
}

.wa__popup_chat_box.wa__active {
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    visibility: visible;
    opacity: 1;
}

.wa__popup_chat_box .wa__popup_heading {
    position: relative;
    padding: 15px 43px 17px 74px;
    color: #d9ebc6;
    background: #2db742;
}

.wa__popup_chat_box .wa__popup_heading_sm {
    padding: 12px 15px 17px 74px;
}

.wa__popup_chat_box .wa__popup_heading:before {
    content: '';
    background: url('../svg/whatsapp_logo.svg') center top no-repeat;
    background-size: 33px;
    display: block;
    width: 55px;
    height: 33px;
    position: absolute;
    top: 20px;
    left: 12px;
}

.wa__popup_chat_box .wa__popup_heading_sm:before {
    top: 19px;
    left: 11px;
}

.wa__popup_chat_box .wa__popup_heading .wa__popup_title {
    padding-top: 2px;
    padding-bottom: 3;
    color: #ffffff;
    font-size: 18px;
    line-height: 24px;
}

.wa__popup_chat_box .wa__popup_heading .wa__popup_intro {
    padding-top: 4px;
    font-size: 12px;
    line-height: 20px;
}

.wa__popup_chat_box .wa__popup_heading_sm .wa__popup_intro {
    padding-top: 0px;
}

.wa__popup_chat_box .wa__popup_heading .wa__popup_intro a {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
}

.wa__popup_chat_box .wa__popup_heading .wa__popup_intro a:hover,
.wa__popup_chat_box .wa__popup_heading .wa__popup_intro a:focus,
.wa__popup_chat_box .wa__popup_heading .wa__popup_intro a:active {
    text-decoration: underline;
}

.wa__popup_chat_box .wa__popup_notice {
    font-size: 11px;
    color: #a5abb7;
    font-weight: 500;
    padding: 0 3px;
}

.wa__popup_chat_box .wa__popup_content {
    background: #ffffff;
    padding: 13px 20px 21px 19px;
    text-align: center;
}

.wa__popup_chat_box .wa__popup_content_left {
    text-align: left;
}

.wa__popup_chat_box .wa__popup_avatar {
    position: absolute;
    overflow: hidden;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    left: 12px;
    top: 12px;
}

.wa__popup_chat_box .wa__popup_avatar.nta-default-avt {
    border-radius: unset;
    -webkit-border-radius: unset;
    -moz-border-radius: unset;
}

.wa__popup_chat_box .wa__stt {
    padding: 13px 40px 12px 74px;
    position: relative;
    text-decoration: none;
    display: table;
    width: 100%;
    border-left: 2px solid #2db742;
    background: #f5f7f9;
    border-radius: 2px 4px 2px 4px;
    -webkit-border-radius: 2px 4px 2px 4px;
    -moz-border-radius: 2px 4px 2px 4px;
}

.wa__popup_chat_box .wa__stt:after {
    content: '';
    background: url('../svg/whatsapp_logo_green.svg') 0 0 no-repeat;
    position: absolute;
    right: 14px;
    top: 26px;
    width: 20px;
    height: 20px;
    background-size: 100% 100%;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
}

.wa__popup_chat_box .wa__stt.wa__stt_offline:after {
    background-image: url('../whatsapp_logo_gray_sm.html');
}

.wa__popup_chat_box .wa__stt.wa__stt_online {
    transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
}

.wa__popup_chat_box .wa__stt.wa__stt_online:hover,
.wa__popup_chat_box .wa__stt.wa__stt_online:active,
.wa__popup_chat_box .wa__stt.wa__stt_online:focus {
    background: #ffffff;
    box-shadow: 0px 7px 15px 1px rgba(55, 62, 70, 0.07);
    -webkit-box-shadow: 0px 7px 15px 1px rgba(55, 62, 70, 0.07);
    -moz-box-shadow: 0px 7px 15px 1px rgba(55, 62, 70, 0.07);
}

.wa__popup_content_list .wa__popup_content_item {
    margin: 14px 0 0;
    transform: translate(0, 20px);
    -webkit-transform: translate(0, 20px);
    -moz-transform: translate(0, 20px);
    will-change: opacity, transform;
    opacity: 0;
}

.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item {
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    transition-delay: 2.1s;
    -webkit-transition-delay: 2.1s;
    -moz-transition-delay: 2.1s;
}

.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(1) {
    transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s;
    -moz-transition-delay: 0.3s;
}

.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(2) {
    transition-delay: 0.5s;
    -webkit-transition-delay: 0.5s;
    -moz-transition-delay: 0.5s;
}

.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(3) {
    transition-delay: 0.7s;
    -webkit-transition-delay: 0.7s;
    -moz-transition-delay: 0.7s;
}

.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(4) {
    transition-delay: 0.9s;
    -webkit-transition-delay: 0.9s;
    -moz-transition-delay: 0.9s;
}

.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(5) {
    transition-delay: 1.1s;
    -webkit-transition-delay: 1.1s;
    -moz-transition-delay: 1.1s;
}

.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(6) {
    transition-delay: 1.3s;
    -webkit-transition-delay: 1.3s;
    -moz-transition-delay: 1.3s;
}

.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(7) {
    transition-delay: 1.5s;
    -webkit-transition-delay: 1.5s;
    -moz-transition-delay: 1.5s;
}

.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(8) {
    transition-delay: 1.7s;
    -webkit-transition-delay: 1.7s;
    -moz-transition-delay: 1.7s;
}

.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(9) {
    transition-delay: 1.9s;
    -webkit-transition-delay: 1.9s;
    -moz-transition-delay: 1.9s;
}

.wa__popup_chat_box.wa__lauch .wa__popup_content_list .wa__popup_content_item {
    opacity: 1;
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
}

.wa__popup_content_list .wa__popup_content_item .wa__member_name {
    font-size: 14px;
    color: #363c47;
    line-height: 1.188em !important;
}

.wa__popup_content_list .wa__popup_content_item .wa__member_duty {
    font-size: 11px;
    color: #989b9f;
    padding: 2px 0 0;
    line-height: 1.125em !important;
}

.wa__popup_content_list .wa__popup_content_item .wa__member_status {
    color: #F5A623;
    font-size: 10px;
    padding: 5px 0 0;
    line-height: 1.125em !important;
}

.wa__popup_content_list .wa__popup_content_item .wa__popup_txt {
    display: table-cell;
    vertical-align: middle;
    min-height: 48px;
    height: 48px;
}

.wa__popup_content_list .wa__popup_content_item .wa__stt_offline {
    border-left-color: #c0c5ca;
}

.wa__popup_avt_list {
    font-size: 0;
    margin: 7px 0 24px;
}

.wa__popup_avt_list .wa__popup_avt_item {
    display: inline-block;
    position: relative;
    width: 46px;
}

.wa__popup_avt_list .wa__popup_avt_img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 2px solid #ffffff;
    left: -7px;
}

.wa__popup_call_btn {
    background: #2db742;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    width: 275px;
    max-width: 100%;
    font-size: 16px;
    padding: 14px 10px;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    margin: 25px 0 15px;
    box-shadow: 0px 8px 17px 2px rgba(13, 15, 18, 0.2);
    -webkit-box-shadow: 0px 8px 17px 2px rgba(13, 15, 18, 0.2);
    -moz-box-shadow: 0px 8px 17px 2px rgba(13, 15, 18, 0.2);
}

.wa__popup_call_btn.wa__popup_call_btn_lg:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
    background: url('../whatsapp_logo_green_sm.html') 0 0 no-repeat;
    background-size: 100% 100%;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    vertical-align: top;
    top: 0px;
    margin-right: -19px;
    left: -31px;
    transition: 0.2s ease background-image;
    -webkit-transition: 0.2s ease background-image;
    -moz-transition: 0.2s ease background-image;
}

.wa__popup_call_btn.wa__popup_call_btn_lg:hover:before,
.wa__popup_call_btn.wa__popup_call_btn_lg:focus:before,
.wa__popup_call_btn.wa__popup_call_btn_lg:active:before {
    background-image: url('../svg/whatsapp_logo.svg')
}

.wa__popup_chat_box_gray {
    border-radius: 2px 2px 8px 8px;
}

.wa__popup_chat_box_gray .wa__popup_heading_gray {
    background: #f8f8f8;
    border-top: 3px solid #2db742;
    color: #868c9a;
    font-weight: 500;
}

.wa__popup_chat_box_gray .wa__popup_heading_gray .wa__popup_title {
    color: #595b60;
}

.wa__popup_chat_box_gray .wa__popup_heading_gray:before {
    content: '';
    background: url(../svg/whatsapp_logo_green.svg) center top no-repeat;
    background-size: 33px;
    display: block;
    width: 55px;
    height: 33px;
    position: absolute;
    top: 20px;
    left: 12px;
}

.wa__popup_chat_box_gray .wa__popup_heading_gray .wa__popup_intro a {
    color: #595b60;
}

.wa__popup_chat_box_ct {
    width: 384px;
    text-align: center;
}

.wa__popup_chat_box_ct .wa__popup_heading_ct {
    text-align: center;
    padding: 18px 0 18px;
}

.wa__popup_chat_box_ct .wa__popup_heading_ct:before {
    content: '';
    background: url(../svg/whatsapp_logo.svg) center top no-repeat;
    background-size: 30px;
    display: block;
    width: 30px;
    height: 31px;
    position: absolute;
    top: 15px;
    left: 72px;
}

.wa__popup_chat_box_ct .wa__popup_heading_ct .wa__popup_title {
    padding-left: 22px;
    padding-bottom: 14px;
}

.wa__popup_chat_box_ct .wa__popup_heading_ct .wa__popup_intro {
    margin-top: -5px;
    line-height: 12px;
}

.wa__popup_chat_box_ct .wa__popup_ct_avt_list:after {
    content: '';
    clear: both;
    display: block;
}

.wa__popup_chat_box_ct .wa__popup_ct_content {
    background: #ffffff;
    padding: 0 0 14px;
}

.wa__popup_chat_box_ct .wa__popup_ct_content .wa__popup_notice {
    padding-top: 18px;
    padding-bottom: 15px;
}

.wa__popup_chat_box_ct .wa__popup_ct_content_item {
    width: 33%;
    float: left;
    font-size: 10px;
}

.wa__popup_chat_box_ct .wa__popup_ct_content_item a {
    text-decoration: none;
    color: #989b9f;
}

.wa__popup_chat_box_ct .wa__popup_ct_content_item .wa__popup_ct_txt {
    padding-top: 8px;
}

.wa__popup_chat_box_ct .wa__popup_ct_content_item .wa__member_name {
    color: #363c47;
    font-size: 13px;
}

.wa__popup_chat_box_ct .wa__popup_ct_content_item .wa__member_duty {
    color: #989b9f;
    padding: 3px 0 0;
}

.wa__popup_chat_box_ct .wa__popup_ct_content_item .wa__member_stt_online {
    color: #2db742;
    font-size: 9px;
    line-height: 12px;
    display: inline-block;
    padding: 3px 0 0 16px;
    background: url('../svg/whatsapp_logo_green.svg') 0 3px no-repeat;
    background-size: 12px auto;
    -webkit-background-size: 12px auto;
    -moz-background-size: 12px auto;
}

.wa__popup_chat_box_ct .wa__popup_ct_content_item .wa__member_stt_offline {
    color: #f5a623;
    font-size: 9px;
    line-height: 12px;
    padding: 2px 0 0;
}


.wa__popup_chat_box_ct .wa__popup_ct_avatar img {
    border-radius: 50%
}

.wa__popup_chat_box_ct .wa__popup_ct_call_btn {
    width: 97px;
    font-size: 11px;
    padding: 9px 10px 11px;
    margin: 15px 0 15px;
}

/* ^^^--popup--^^^ */

/* VVV--popup button--VVV */
.wa__btn_popup {
    position: fixed;
    right: 30px;
    bottom: 40px;
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
    z-index: 999;
}

.wa__btn_popup .wa__btn_popup_icon {
    width: 56px;
    height: 56px;
    background: #2db742;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    box-shadow: 0px 6px 8px 2px rgba(0, 0, 0, 0.14);
    -webkit-box-shadow: 0px 6px 8px 2px rgba(0, 0, 0, 0.14);
    -moz-box-shadow: 0px 6px 8px 2px rgba(0, 0, 0, 0.14);
}

.wa__btn_popup .wa__btn_popup_icon:before {
    content: '';
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: transparent url('../svg/whatsapp_logo.svg') center center no-repeat;
    background-size: 30px auto;
    -webkit-background-size: 30px auto;
    -moz-background-size: 30px auto;
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
}

.wa__btn_popup .wa__btn_popup_icon:after {
    content: '';
    opacity: 0;
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: transparent url('../svg/x_icon.svg') center center no-repeat;
    background-size: 14px auto;
    -webkit-background-size: 14px auto;
    -moz-background-size: 14px auto;
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    -ms-transform: scale(0) rotate(-360deg);
    transform: scale(0) rotate(-360deg);
    -webkit-transform: scale(0) rotate(-360deg);
    -moz-transform: scale(0) rotate(-360deg);
}

.wa__btn_popup.wa__active .wa__btn_popup_icon:before {
    opacity: 0;
    -ms-transform: scale(0) rotate(360deg);
    transform: scale(0) rotate(360deg);
    -webkit-transform: scale(0) rotate(360deg);
    -moz-transform: scale(0) rotate(360deg);
}

.wa__btn_popup.wa__active .wa__btn_popup_icon:after {
    opacity: 1;
    -ms-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
    -webkit-transform: scale(1) rotate(0deg);
    -moz-transform: scale(1) rotate(0deg);
}

.wa__btn_popup .wa__btn_popup_txt {
    position: absolute;
    width: 156px;
    right: 100%;
    background-color: #f5f7f9;
    font-size: 12px;
    color: #43474e;
    /*top: 15px;*/
    top: 7px;
    /* top: 50%;
    transform: translate(0,-50%);
    -moz-transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%); */
    padding: 7px 0 7px 12px;
    margin-right: 7px;
    letter-spacing: -0.03em;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
}

.wa__btn_popup.wa__active .wa__btn_popup_txt {
    -ms-transform: translate(0, 15px);
    transform: translate(0, 15px);
    -webkit-transform: translate(0, 15px);
    -moz-transform: translate(0, 15px);
    opacity: 0;
    visibility: hidden;
}

/* ^^^--popup button--^^^ */


/* home */

/* Similar trips Swiper */
.mpr-similar-trips {
    margin-top: 20px;
    overflow: hidden;
    position: relative;
}

.mpr-similar-trips__head {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 14px;
    min-height: 42px;
}

.mpr-similar-trips__nav {
    align-items: center;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(24, 32, 26, .08);
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(24, 32, 26, .09);
    display: inline-flex;
    gap: 6px;
    padding: 5px;
}

.mpr-similar-trips__button {
    align-items: center;
    background: #fff;
    border: 1px solid transparent;
    border-radius: 999px;
    color: #18201a;
    display: inline-flex;
    height: 36px;
    justify-content: center;
    transition: background-color .22s ease, color .22s ease, transform .22s ease, box-shadow .22s ease;
    width: 36px;
}

.mpr-similar-trips__button:hover {
    background: #a64b32;
    box-shadow: 0 8px 20px rgba(166, 75, 50, .25);
    color: #fff;
    transform: translateY(-1px);
}

.mpr-similar-trips__button:active {
    transform: translateY(0) scale(.96);
}

.mpr-similar-trips__button.swiper-button-disabled {
    cursor: not-allowed;
    opacity: .38;
    transform: none;
}

.mpr-similar-trips__swiper {
    overflow: hidden;
    padding: 4px 2px 44px;
}

.mpr-similar-trips__swiper .swiper-slide {
    height: auto;
}

.mpr-similar-trips__swiper .mpr-trip-card {
    height: 100%;
}

.mpr-similar-trips__pagination {
    align-items: center;
    bottom: 4px !important;
    display: flex;
    gap: 7px;
    justify-content: center;
    left: 0;
    position: absolute;
    right: 0;
    z-index: 3;
}

.mpr-similar-trips__pagination .swiper-pagination-bullet {
    background: #9b9b9b !important;
    border-radius: 999px;
    height: 7px;
    margin: 0 !important;
    opacity: .42;
    transform: scale(.86);
    transition: width .28s ease, opacity .28s ease, background-color .28s ease, transform .28s ease;
    width: 7px;
}

.mpr-similar-trips__pagination .swiper-pagination-bullet-active {
    background: #a64b32 !important;
    box-shadow: 0 2px 9px rgba(166, 75, 50, .24);
    opacity: 1;
    transform: scale(1);
    width: 30px;
}

@media (max-width: 767.98px) {
    .mpr-similar-trips__head {
        margin-bottom: 10px;
    }

    .mpr-similar-trips__swiper {
        padding-bottom: 40px;
    }
}

/* Tour cards redesign */
.mpr-trip-card {
    background: #fff;
    border: 1px solid rgba(24, 32, 26, .09);
    border-radius: 14px;
    box-shadow: 0 12px 34px rgba(24, 32, 26, .07);
    color: #18201a;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    position: relative;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.mpr-trip-card::before {
    background: linear-gradient(90deg, #2f6f4e, #b8792a);
    content: "";
    height: 3px;
    left: 0;
    opacity: .95;
    position: absolute;
    right: 0;
    top: 0;
    transform: scaleX(.26);
    transform-origin: left;
    transition: transform .32s ease;
    z-index: 2;
}

.mpr-trip-card:hover {
    border-color: rgba(47, 111, 78, .24);
    box-shadow: 0 20px 48px rgba(24, 32, 26, .13);
    transform: translateY(-6px);
}

.mpr-trip-card:hover::before {
    transform: scaleX(1);
}

.mpr-trip-card__media {
    aspect-ratio: 1.24 / 1;
    background: #f1f2f3;
    display: block;
    overflow: hidden;
    position: relative;
    text-decoration: none;
}

.mpr-trip-card__media::after {
    background: linear-gradient(180deg, rgba(24, 32, 26, 0) 42%, rgba(24, 32, 26, .48) 100%);
    content: "";
    inset: 0;
    opacity: .72;
    position: absolute;
    transition: opacity .28s ease;
}

.mpr-trip-card__media img {
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform .55s ease, filter .55s ease;
    width: 100%;
}

.mpr-trip-card:hover .mpr-trip-card__media img {
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.075);
}

.mpr-trip-card:hover .mpr-trip-card__media::after {
    opacity: .54;
}

.mpr-trip-card__badge {
    align-items: center;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 999px;
    bottom: 12px;
    color: #18201a;
    display: inline-flex;
    font-size: .78rem;
    font-weight: 800;
    gap: 7px;
    left: 12px;
    max-width: calc(100% - 24px);
    padding: 7px 10px;
    position: absolute;
    z-index: 2;
}

.mpr-trip-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px 18px 14px;
}

.mpr-trip-card__eyebrow {
    color: #2f6f4e;
    font-size: .7rem;
    font-weight: 850;
    letter-spacing: .08em;
    margin-bottom: 7px;
    text-transform: uppercase;
}

.mpr-trip-card__title {
    font-size: 1.18rem;
    font-weight: 850;
    letter-spacing: 0;
    line-height: 1.2;
    margin: 0 0 9px;
}

.mpr-trip-card__title a {
    color: #18201a;
    text-decoration: none;
}

.mpr-trip-card__title a:hover {
    color: #2f6f4e;
}

.mpr-trip-card__text {
    color: #667064;
    font-size: .91rem;
    line-height: 1.58;
    margin: 0 0 14px;
}

.mpr-trip-card__footer {
    align-items: center;
    border-top: 1px solid #e7e7e7;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding: 14px 18px 18px;
}

.mpr-trip-card__price span,
.mpr-trip-card__price small {
    color: #667064;
    display: block;
    font-size: .72rem;
    font-weight: 750;
    line-height: 1.2;
    text-transform: uppercase;
}

.mpr-trip-card__price strong {
    color: #18201a;
    display: block;
    font-size: 1.16rem;
    font-weight: 900;
    line-height: 1.15;
    margin: 2px 0;
}

.mpr-trip-card__cta {
    align-items: center;
    background: #a64b32;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(166, 75, 50, .22);
    color: #fff !important;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: .88rem;
    font-weight: 900;
    gap: 8px;
    justify-content: center;
    letter-spacing: .02em;
    min-height: 44px;
    min-width: 132px;
    padding: 10px 18px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color .24s ease, box-shadow .24s ease, transform .24s ease;
    overflow: hidden;
}

.mpr-trip-card__cta::before {
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .32), transparent);
    content: "";
    height: 100%;
    left: -120%;
    position: absolute;
    top: 0;
    transform: skewX(-18deg);
    transition: left .48s ease;
    width: 70%;
}

.mpr-trip-card__cta i {
    font-size: .82rem;
    position: relative;
    transition: transform .24s ease;
}

.mpr-trip-card__cta:hover {
    background: #8f3d28;
    box-shadow: 0 13px 30px rgba(166, 75, 50, .34);
    color: #fff !important;
    transform: translateY(-2px);
}

.mpr-trip-card__cta:hover::before {
    left: 130%;
}

.mpr-trip-card__cta:hover i {
    transform: translateX(3px);
}

@media (max-width: 767.98px) {
    .mpr-trip-card__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .mpr-trip-card__cta {
        justify-content: center;
        width: 100%;
    }
}


/* estilo para la vista de tours */


.mpr-tour {
    --ink: #18201a;
    --muted: #667064;
    --line: #e7e7e7;
    --soft: #f6f6f6;
    --accent: #2f6f4e;
    --accent-dark: #214f38;
    --warm: #b8792a;
    color: var(--ink);
    background: #fff;
    font-family: inherit;
}

.mpr-tour a {
    color: inherit;
}

.mpr-hero {
    border-bottom: 1px solid var(--line);
    background: var(--soft);
}

.mpr-hero-media {
    position: relative;
    background: #ffffff;
}

.mpr-hero-grid {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, 1fr);
    height: clamp(190px, 26vw, 330px);
    padding: 8px;
}

.mpr-hero-image {
    border-radius: 6px;
    overflow: hidden;
}

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

.mpr-hero-panel {
    padding: clamp(18px, 3vw, 34px) 0;
}

.mpr-kicker {
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.55rem;
}

.mpr-title {
    font-size: clamp(1.85rem, 5vw, 3.55rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0;
    margin: 0;
    max-width: 920px;
}

.mpr-places {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.55;
    margin-top: 0.75rem;
    max-width: 920px;
}

.mpr-hero-actions {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.mpr-btn {
    align-items: center;
    border-radius: 6px;
    display: inline-flex;
    font-weight: 750;
    gap: 0.5rem;
    justify-content: center;
    min-height: 46px;
    padding: 0.72rem 1rem;
    text-decoration: none;
    transition: 0.2s ease;
}

.mpr-btn-primary {
    background: var(--accent);
    border: 1px solid var(--accent);
    color: #fff !important;
}

.mpr-btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #fff !important;
}

.mpr-btn-outline {
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink) !important;
}

.mpr-btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent) !important;
}

.mpr-summary {
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.mpr-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.mpr-summary-item {
    border-right: 1px solid var(--line);
    padding: 1rem 0.9rem;
}

.mpr-summary-item:last-child {
    border-right: 0;
}

.mpr-summary-label {
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
}

.mpr-summary-value {
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.25;
    margin-top: 0.2rem;
}

.mpr-layout {
    padding: clamp(28px, 5vw, 64px) 0;
}

.mpr-main {
    min-width: 0;
}

.mpr-nav {
    background: #fff;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 20;
}

.mpr-nav-scroll {
    display: flex;
    gap: 0.35rem;
    overflow-x: auto;
    padding: 0.65rem 0;
    scrollbar-width: none;
}

.mpr-nav-scroll::-webkit-scrollbar {
    display: none;
}

.mpr-nav a {
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--muted);
    flex: 0 0 auto;
    font-size: 0.86rem;
    font-weight: 750;
    padding: 0.52rem 0.85rem;
    text-decoration: none;
    white-space: nowrap;
}

.mpr-nav a:hover {
    background: var(--soft);
    color: var(--ink);
}

.mpr-section {
    border-bottom: 1px solid var(--line);
    padding: clamp(26px, 4vw, 46px) 0;
    scroll-margin-top: 78px;
}

body.home section {
    padding-top: 60px;
    padding-bottom: 60px;
}

section#hero {
    padding: 0;
    margin: 0;
}

.mpr-section:first-child {
    padding-top: 0;
}

.mpr-section-title {
    align-items: baseline;
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.2rem;
}

.mpr-section-title span {
    color: var(--warm);
    font-size: 0.78rem;
    font-weight: 800;
}

.mpr-section-title h2 {
    font-size: clamp(1.45rem, 3vw, 2.1rem);
    font-weight: 850;
    margin: 0;
}

.mpr-content {
    color: #2d352d;
    font-size: 1rem;
    line-height: 1.75;
}

.mpr-content :is(h1, h2, h3, h4, h5, h6) {
    color: var(--ink);
    font-weight: 800;
    letter-spacing: 0;
    margin-top: 1.2rem;
}

.mpr-content ul,
.mpr-content ol {
    padding-left: 1.15rem;
}

.mpr-content li {
    margin-bottom: 0.45rem;
}

.mpr-details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}

.mpr-detail {
    align-items: flex-start;
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
}

.mpr-detail:nth-child(odd) {
    border-right: 1px solid var(--line);
}

.mpr-detail:nth-last-child(-n + 2) {
    border-bottom: 0;
}

.mpr-detail i {
    color: var(--accent);
    margin-top: 0.2rem;
    width: 18px;
}

.mpr-detail-label {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 750;
    text-transform: uppercase;
}

.mpr-detail-value {
    font-weight: 750;
    line-height: 1.35;
    margin-top: 0.1rem;
}

.mpr-itinerary {
    display: grid;
    gap: 0.8rem;
}

.mpr-day {
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}

.mpr-day-button {
    align-items: center;
    background: #fff;
    border: 0;
    color: var(--ink);
    display: flex;
    gap: 0.9rem;
    justify-content: space-between;
    padding: 1rem;
    text-align: left;
    width: 100%;
}

.mpr-day-button:not(.collapsed) {
    background: var(--soft);
}

.mpr-day-label {
    color: var(--accent);
    flex: 0 0 auto;
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
}

.mpr-day-title {
    flex: 1;
    font-size: 1.03rem;
    font-weight: 850;
    line-height: 1.25;
}

.mpr-day-body {
    padding: 1rem;
}

.mpr-gallery-strip {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 1rem;
}

.mpr-gallery-strip img,
.mpr-gallery-grid img {
    aspect-ratio: 4/3;
    border-radius: 6px;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.mpr-two-col {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mpr-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 1.1rem;
}

.mpr-panel h3 {
    align-items: center;
    display: flex;
    font-size: 1.08rem;
    gap: 0.5rem;
    margin: 0 0 0.75rem;
}

.mpr-panel h3 i.fa-check {
    color: var(--accent);
}

.mpr-panel h3 i.fa-times {
    color: #9d3d2e;
}

.mpr-accordion .accordion-item {
    border: 1px solid var(--line);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.mpr-accordion .accordion-button {
    box-shadow: none;
    font-weight: 800;
}

.mpr-accordion .accordion-button:not(.collapsed) {
    background: var(--soft);
    color: var(--ink);
}

.mpr-gallery-grid {
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(3, 1fr);
}

.mpr-booking-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(24, 32, 26, 0.08);
    overflow: hidden;
    position: sticky;
    top: 76px;
}

.mpr-booking-head {
    background: var(--ink);
    color: #fff;
    padding: 1.1rem;
}

.mpr-booking-head .label {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.74rem;
    font-weight: 750;
    text-transform: uppercase;
}

.mpr-booking-price {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    margin-top: 0.25rem;
}

.mpr-booking-price small {
    font-size: 0.82rem;
    font-weight: 700;
}

.mpr-booking-body {
    padding: 1.1rem;
}

.mpr-form-label {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.mpr-total {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 6px;
    margin-top: 0.85rem;
    padding: 0.75rem;
}

.mpr-total-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.25rem 0;
}

.mpr-total-row strong {
    font-weight: 850;
}

.mpr-advisor {
    border-top: 1px solid var(--line);
    margin-top: 1rem;
    padding-top: 1rem;
}

.mpr-advisor img {
    border-radius: 50%;
    height: 48px;
    object-fit: cover;
    width: 48px;
}

.mpr-small-note {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.55;
}

.mpr-tripadvisor {
    border-top: 1px solid var(--line);
    margin-top: 1rem;
    padding-top: 1rem;
}

.mpr-tripadvisor img {
    max-width: 190px;
    width: 100%;
}

.mpr-mobile-cta {
    display: none;
}

.Zebra_DatePicker,
#contenedor-calendario {
    max-width: 100%;
}

@media (max-width: 991.98px) {
    .mpr-summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mpr-summary-item:nth-child(2) {
        border-right: 0;
    }

    .mpr-summary-item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .mpr-booking-card {
        margin-top: 1.5rem;
        position: static;
    }

    .mpr-layout {
        padding-bottom: 90px;
    }

    .mpr-mobile-cta {
        align-items: center;
        background: #fff;
        border-top: 1px solid var(--line);
        bottom: 0;
        box-shadow: 0 -8px 24px rgba(24, 32, 26, 0.08);
        display: grid;
        gap: 0.65rem;
        grid-template-columns: 1fr 1.2fr;
        left: 0;
        padding: 0.65rem 0.85rem;
        position: fixed;
        right: 0;
        z-index: 60;
    }

    .mpr-mobile-cta .price {
        font-size: 0.82rem;
        line-height: 1.2;
    }

    .mpr-mobile-cta .price strong {
        display: block;
        font-size: 1.15rem;
    }
}

@media (max-width: 767.98px) {
    .mpr-hero-grid {
        grid-template-columns: repeat(3, 78vw);
        height: 210px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .mpr-hero-image {
        scroll-snap-align: start;
    }

    .mpr-hero-panel {
        padding: 18px 0;
    }

    .mpr-title {
        font-size: clamp(1.85rem, 10vw, 2.75rem);
    }

    .mpr-summary-grid,
    .mpr-details-grid,
    .mpr-two-col,
    .mpr-gallery-grid {
        grid-template-columns: 1fr;
    }

    .mpr-summary-item,
    .mpr-detail,
    .mpr-detail:nth-child(odd) {
        border-right: 0;
    }

    .mpr-detail:nth-last-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .mpr-detail:last-child,
    .mpr-summary-item:last-child {
        border-bottom: 0;
    }

    .mpr-gallery-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .mpr-section {
        scroll-margin-top: 70px;
    }

    .mpr-btn {
        width: 100%;
    }
}

.mpr-hero-swiper {
    height: clamp(230px, 30vw, 380px);
    padding: 5px;
}

.mpr-hero-swiper .swiper-slide {
    border-radius: 8px;
    overflow: hidden;
}

.mpr-hero-mobile-image {
    display: none;
    height: 260px;
    padding: 8px;
}

.mpr-hero-mobile-image img {
    border-radius: 8px;
}

.mpr-hero .swiper-pagination {
    align-items: center;
    bottom: 16px !important;
    display: flex;
    gap: 7px;
    left: 16px !important;
    text-align: left;
    width: auto !important;
}

.mpr-hero .swiper-pagination-bullet {
    background: #8b9389;
    border-radius: 999px;
    height: 7px;
    margin: 0 !important;
    opacity: 0.42;
    transform: scale(0.86);
    transition: width 0.28s ease, opacity 0.28s ease, background-color 0.28s ease,
    transform 0.28s ease;
    width: 7px;
}

.mpr-hero .swiper-pagination-bullet-active {
    background: var(--accent);
    box-shadow: 0 2px 8px rgba(47, 111, 78, 0.25);
    opacity: 1;
    transform: scale(1);
    width: 28px;
}

.mpr-hero-controls {
    align-items: center;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(24, 32, 26, 0.08);
    border-radius: 999px;
    bottom: 10px;
    box-shadow: 0 10px 26px rgba(24, 32, 26, 0.12);
    display: flex;
    gap: 5px;
    padding: 4px;
    position: absolute;
    right: 14px;
    z-index: 4;
}

.mpr-hero .swiper-button-next,
.mpr-hero .swiper-button-prev {
    background: #fff;
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--ink);
    height: 36px;
    left: auto;
    margin: 0;
    position: static;
    right: auto;
    top: auto;
    transition: background-color 0.22s ease, color 0.22s ease,
    transform 0.22s ease, box-shadow 0.22s ease;
    width: 36px;
}

.mpr-hero .swiper-button-next:hover,
.mpr-hero .swiper-button-prev:hover {
    background: var(--accent);
    box-shadow: 0 8px 18px rgba(47, 111, 78, 0.25);
    color: #fff;
    transform: translateY(-1px);
}

.mpr-hero .swiper-button-next:active,
.mpr-hero .swiper-button-prev:active {
    transform: translateY(0) scale(0.96);
}

.mpr-hero .swiper-button-next:after,
.mpr-hero .swiper-button-prev:after {
    font-size: 12px;
    font-weight: 900;
}

.mpr-detail {
    background: #fff;
}

.mpr-detail i {
    align-items: center;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    display: flex;
    height: 34px;
    justify-content: center;
    margin-top: 0;
    width: 34px;
}

.mpr-day {
    background: #fff;
    border-color: #dfe5dc;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(24, 32, 26, 0.04);
}

.mpr-day-button {
    border-radius: 14px;
    font-size: 1rem;
    padding: 1rem 1.1rem;
}

.mpr-day-button:not(.collapsed) {
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.mpr-day-button:focus {
    box-shadow: 0 0 0 0.16rem rgba(47, 111, 78, 0.12);
}

.mpr-day-label {
    color: var(--muted);
}

.mpr-day-body {
    padding: 1.15rem;
}

.mpr-inclusion-tabs {
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
}

.mpr-inclusion-tabs .nav {
    background: var(--soft);
    gap: 0.35rem;
    padding: 0.5rem;
}

.mpr-inclusion-tabs .nav-link {
    border: 1px solid transparent;
    border-radius: 10px;
    color: var(--muted);
    font-weight: 800;
}

.mpr-inclusion-tabs .nav-link.active {
    background: #fff;
    border-color: var(--line);
    color: var(--ink);
}

.mpr-inclusion-tabs .tab-content {
    padding: 1.2rem;
}

.mpr-price-card {
    background: linear-gradient(180deg, #fff, var(--soft));
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1.2rem;
}

.mpr-price-top {
    align-items: center;
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

.mpr-price-top strong {
    font-size: 1.65rem;
    line-height: 1;
}

.mpr-addon-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    margin-top: 1rem;
    padding: 1rem;
}

.mpr-gallery-grid a {
    border-radius: 10px;
    display: block;
    overflow: hidden;
    position: relative;
}

.mpr-gallery-grid a:after {
    background: linear-gradient(180deg, transparent, rgba(24, 32, 26, 0.42));
    content: "";
    inset: 0;
    opacity: 0;
    position: absolute;
    transition: 0.25s ease;
}

.mpr-gallery-grid img {
    border-radius: 10px;
    transform: scale(1);
    transition: transform 0.35s ease, filter 0.35s ease;
}

.mpr-gallery-grid a:hover img {
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.045);
}

.mpr-gallery-grid a:hover:after {
    opacity: 1;
}

.mpr-sidebar {
    position: sticky;
    top: 76px;
}

.mpr-sidebar .mpr-booking-card {
    position: relative;
    top: auto;
}

.mpr-hero {
    padding: 0 !important;
    margin: 0 !important;
}

.mpr-hero-media {
    margin: 0;
}

.mpr-hero-panel {
    padding: 14px 0 !important;
}

.mpr-hero-actions {
    margin-top: 0.75rem;
}

.mpr-section {
    background: linear-gradient(180deg, #fff, #fafafa);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(24, 32, 26, 0.045);
    margin-bottom: 1rem;
    padding: clamp(22px, 3.5vw, 38px) !important;
}

.mpr-section:first-child {
    padding-top: clamp(22px, 3.5vw, 38px) !important;
}

.mpr-layout {
    background: #f3f4f5;
}

.mpr-booking-body {
    position: relative;
}

#contenedor-calendario {
    height: 0 !important;
    margin: 0 !important;
    min-height: 0 !important;
    overflow: visible !important;
    position: relative !important;
}

.Zebra_DatePicker {
    box-shadow: 0 16px 38px rgba(24, 32, 26, 0.16) !important;
    display: block !important;
    left: 0 !important;
    opacity: 0;
    pointer-events: none;
    position: absolute !important;
    top: auto !important;
    transform: translateY(8px) scale(0.98);
    transition: opacity 0.2s ease, transform 0.2s ease;
    visibility: hidden;
    z-index: 30;
}

.mpr-datepicker-open .Zebra_DatePicker {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    visibility: visible;
}

.mpr-travel-tabs .nav {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
}

.mpr-travel-tabs .nav::-webkit-scrollbar {
    display: none;
}

.mpr-travel-tabs .nav-item {
    flex: 0 0 auto;
}

@media (max-width: 991.98px) {
    .mpr-sidebar {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .mpr-hero-swiper {
        display: none;
    }

    .mpr-hero-mobile-image {
        display: block;
        height: 220px;
        padding: 0;
    }

    .mpr-hero-grid {
        display: none;
    }

    .mpr-hero-panel {
        padding: 12px 0 !important;
    }

    .mpr-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mpr-section {
        border-radius: 12px;
        margin-bottom: 0.85rem;
    }
}


/* estilo para la vista de tours */


section.mpr-summary {
    margin: 0;
    padding: 0;
}




/* ============================================
   TripAdvisor Reviews Section
   ============================================ */

.tripadvisor_box {
    position: relative;
    padding: 60px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f4fdf9 100%);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 175, 135, 0.08);
    overflow: hidden;
    margin: 40px auto;
}

/* Decoración superior con los colores de TripAdvisor */
.tripadvisor_box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, 
        #000000 0%, 
        #00AF87 50%, 
        #34E0A1 100%);
}

/* ---- Título de la sección ---- */
.tripadvisor_box .mpr-section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
}

.tripadvisor_box .mpr-section-title span {
    display: inline-block;
    padding: 6px 18px;
    background-color: #00AF87;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 30px;
    margin-bottom: 12px;
}

.tripadvisor_box .mpr-section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    position: relative;
    padding-bottom: 15px;
}

.tripadvisor_box .mpr-section-title h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #34E0A1;
    border-radius: 2px;
}

/* ---- Contenido / párrafo ---- */
.tripadvisor_box .mpr-content {
    margin-bottom: 35px;
}

.tripadvisor_box .mpr-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.tripadvisor_box .mpr-content a {
    color: #00AF87;
    text-decoration: none;
    border-bottom: 2px solid #34E0A1;
    transition: all 0.3s ease;
}

.tripadvisor_box .mpr-content a:hover {
    color: #000000;
    border-bottom-color: #000000;
}

.tripadvisor_box .mpr-content a b {
    font-weight: 700;
}

/* ---- Contenedor del shortcode de Trustindex ---- */
.tripadvisor_box .ti-widget,
.tripadvisor_box [class*="trustindex"] {
    margin-top: 20px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .tripadvisor_box {
        padding: 40px 15px;
    }

    .tripadvisor_box .mpr-section-title h2 {
        font-size: 1.6rem;
    }

    .tripadvisor_box .mpr-content p {
        font-size: 0.95rem;
    }
}




/* ============================================
   TripAdvisor Badge / Recommendation
   ============================================ */

.mpr-tripadvisor {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 22px 28px;
    background: #ffffff;
    border: 2px solid #e8f5ef;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0, 175, 135, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* Brillo diagonal que cruza al hacer hover */
.mpr-tripadvisor::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(52, 224, 161, 0.25) 50%,
        transparent 100%
    );
    transition: left 0.6s ease;
}

.mpr-tripadvisor:hover {
    transform: translateY(-5px);
    border-color: #34E0A1;
    box-shadow: 0 12px 28px rgba(0, 175, 135, 0.25);
}

.mpr-tripadvisor:hover::before {
    left: 100%;
}

/* ---- Texto pequeño ---- */
.mpr-tripadvisor .mpr-small-note {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a4a4a;
    letter-spacing: 0.3px;
    text-align: center;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.mpr-tripadvisor:hover .mpr-small-note {
    color: #00AF87;
}

/* ---- Enlace e imagen ---- */
.mpr-tripadvisor a {
    display: inline-block;
    line-height: 0;
    position: relative;
    z-index: 2;
}

.mpr-tripadvisor img {
    max-width: 180px;
    height: auto;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

.mpr-tripadvisor:hover img {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 8px rgba(0, 175, 135, 0.3));
}

/* ---- Responsive ---- */
@media (max-width: 480px) {
    .mpr-tripadvisor {
        padding: 18px 20px;
    }

    .mpr-tripadvisor img {
        max-width: 140px;
    }

    .mpr-tripadvisor .mpr-small-note {
        font-size: 0.85rem;
    }
}