/*
    Theme Name: hospes2026-2026
    Theme URI: hospes2026-2026
    Description: Hospes2026-2026
    Author:       Mirai Dev Team
    Author URI:   http://mirai.com
    Template:     mirai-ma
    Version:      1.0.0
    License:      GNU General Public License v2 or later
    License URI:  http://www.gnu.org/licenses/gpl-2.0.html
    Text Domain:  mirai-maai
*/

/*********************************************************/
/*********************************************************/
/* GENERAL STYLES */
/*********************************************************/

:root {
    /***** SPACES *****/
    --mft-space-5xs: 4px;
    --mft-space-4xs: 8px;
    --mft-space-3xs: 12px;
    --mft-space-2xs: 16px;
    --mft-space-xs: clamp(16px, calc(16px + (24 - 16) * ((100vw - 1180px) / (1920 - 1180))), 24px);
    /*24 --- 16*/
    --mft-space-s: clamp(24px, calc(24px + (32 - 24) * ((100vw - 1180px) / (1920 - 1180))), 32px);
    /*32 --- 24*/
    --mft-space-m: clamp(32px, calc(32px + (40 - 32) * ((100vw - 1180px) / (1920 - 1180))), 40px);
    /*40 --- 32*/
    --mft-space-l: clamp(32px, calc(32px + (48 - 32) * ((100vw - 1180px) / (1920 - 1180))), 48px);
    /*48 --- 32*/
    --mft-space-xl: clamp(32px, calc(32px + (56 - 32) * ((100vw - 1180px) / (1920 - 1180))), 56px);
    /*56 --- 32*/
    --mft-space-2xl: clamp(48px, calc(48px + (64 - 48) * ((100vw - 1180px) / (1920 - 1180))), 64px);
    /*64 --- 48*/
    --mft-space-3xl: clamp(48px, calc(48px + (80 - 48) * ((100vw - 1180px) / (1920 - 1180))), 80px);
    /*80 --- 48*/
    --mft-space-4xl: clamp(48px, calc(48px + (96 - 48) * ((100vw - 1180px) / (1920 - 1180))), 96px);
    /*96 --- 48*/
    --mft-space-5xl: clamp(48px, calc(48px + (160 - 48) * ((100vw - 1180px) / (1920 - 1180))), 160px);
    /*160 --- 48*/

    --mft-space-gap-columns: clamp(48px, calc(48px + (140 - 48) * ((100vw - 1180px) / (1920 - 1180))), 140px);
    /*140 --- 48*/

    /***** CONTAINERS *****/
    --width-s: 700px;
    --width-m: 1600px;
    --width-l: 1920px;
    --container-legal: 1080px;
    --width-text-content: 1320px;

    /***** MIN-HEIGHT FOR IMG *****/
    --min-height-s: 300px;
    --min-height-m: 500px;
    --min-height-l: 600px;

    --mft-hero-visual-height: calc(100dvh - var(--hero-content-height));
    --mft-hero-visual-height-mobile: calc(100svh - var(--hero-content-height));

    /***** CALCULATE THE HEADER HEIGHT BY JQ *****/
    --mft-min-height-header: 0px;
}

body,
a,
a:hover {
    font-size: inherit;
    font-family: inherit;
    color: inherit;
    text-transform: inherit;
    text-decoration: none;
}

/* a, a:hover, p, h1, h2, h3, h4, h5 {
	text-transform: inherit!important;
}*/

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    word-spacing: inherit;
    margin: inherit;
}

/* FIXED WIDGET ICON BOX - TITLE AS PARAGRAPH TAG */
p.elementor-icon-box-title {
    margin-top: 0;
}

/***** SPACE BETWEEN SECTIONS *****/
.mft-space-section-t {
    padding-top: var(--mft-space-5xl);
}

.mft-space-section-b {
    padding-bottom: var(--mft-space-5xl);
}

/* SIZE VARIANTS */
.mft-space-section-t--4xl {
    padding-top: var(--mft-space-4xl);
}

.mft-space-section-b--4xl {
    padding-bottom: var(--mft-space-4xl);
}

/* COMPONENT SPACING OVERRIDES */

.mft-hero .mft-space-section-t,
.cmp-intro.mft-space-section-t {
    padding-top: var(--mft-space-4xl);
}

/***** CONTAINERS ******/

.elementor-element:where(.mft-container-s, .mft-container-m, .mft-container-l) {
    margin: 0 auto;
    box-sizing: border-box;
}

.mft-container-s.elementor-element {
    max-width: var(--width-s);
}

.mft-container-m.elementor-element {
    max-width: var(--width-m);
}

.mft-container-l.elementor-element {
    max-width: var(--width-l);
}

.mft-container-text-content.elementor-element {
    max-width: var(--width-text-content);
}


/***** MEDIA FIT UTILITIES *****/

/* COVER */

.mft-media-cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* CONTAIN */

.mft-media-contain img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

/***** WIDGET IMG RESPONSIVE - makes the image cover and adapt to the container *****/
.mft-bg-img .elementor-element:not(.mft-wrapper-content),
.mft-bg-img .elementor-element :where(.elementor-widget-image, .e-n-carousel.swiper, .elementor-widget-container) {
    height: 100%;
    /*padding-bottom: 0 !important;*/
}

.mft-bg-img .elementor-element .elementor-widget-image img,
.mft-bg-img .elementor-element .elementor-widget-container img {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.mft-minh-s {
    min-height: var(--min-height-s);
    /*300px*/
}

.mft-minh-m {
    min-height: var(--min-height-m);
    /*500px*/
}

.mft-minh-l {
    min-height: var(--min-height-l);
    /*600px*/
}

@media(max-width:1024px) {
    .mft-minh-l {
        min-height: var(--min-height-m);
    }

    .mft-minh-m {
        min-height: var(--min-height-s);
    }
}

/* HERO 4 IMAGE SIZE */
@media(max-width: 767px) {
    .mft-hero-4 .mft-minh-l {
        min-height: 250px;
    }

    .mft-hero-4 .mft-minh-s {
        min-height: 160px;
    }
}

/***** CENTER ICON RRSS - centre social media widget icon *****/
.elementor-social-icon.elementor-icon {
    display: flex;
}

/***** FIX MOBILE ICON BOX *****/
@media (max-width: 767px) {

    .elementor-widget-icon-box.elementor-vertical-align-middle:where(.elementor-position-left, .elementor-position-right):not(.elementor-mobile-position-top) .elementor-icon-box-wrapper,
    .elementor-widget-icon-box.elementor-vertical-align-middle:where(.elementor-position-left, .elementor-position-right) .elementor-icon-box-icon {
        display: flex;
        align-items: center;
    }
}

/****** 404 PAGE ******/
.not-found-page {
    display: table;
    margin-bottom: 0;
    width: 100%;
    min-height: 570px;
    text-align: center;
    background: url(https://static-resources-elementor.mirai.com/common/bg-404.png) no-repeat center center transparent;
}

.not-found-page span {
    display: table-cell;
    vertical-align: middle;
    font-size: 18px;
}

/***** Hide engine on detail pages *****/
body:where(.cat-room-detail, .cat-offer-detail) [data-mirai-component="finder"] {
    display: none;
}

/***** Colour for the selected menu link *****/
.mft-wrapper-menu-current-link {
    color: var(--e-global-color-accent) !important;
}

/***** Hiding Recaptcha badge *****/
.grecaptcha-badge {
    visibility: hidden;
}


/***** So that loading does not appear in bookingstep1 *****/
body.elementor-editor-active .mi-rs.loading {
    display: none;
}

/***** To make the language selector visible in modal *****/
.wpml-ls-legacy-dropdown-click:hover .wpml-ls-sub-menu {
    visibility: visible;
}

/***** Hide Quicktext chatbot when opening a finder modal in mobile and when opening an Elementor popup *****/
body:has(ui-modal-overflow[class*="_visible"]) #qt-button-frame,
body:has(.dialog-widget [data-mirai-component]) #qt-button-frame {
    visibility: hidden;
}

/* Press the default focus of the WordPress submenu */
.mft-popup-menu .menu-item a:focus {
    background: transparent;
    color: inherit;
}

/*********************************************************/
/*********************************************************/
/* STYLES THROUGH CLASSES */
/*********************************************************/

/***** FROM ABSOLUTE TO RELATIVE - change an absolute element to a relative element from 1024px and above *****/
@media (max-width: 1024px) {
    .mft-relative-tb {
        position: relative;
    }
}

/***** HIDE TEXT CLOSE POP UP CLOSE BUTTON ****/
.btn-close-popup .elementor-icon-box-title {
    display: none;
}

/***** UNDERLINE - add a low line to a button *****/
.mft-underline.elementor-element::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--e-global-color-text);
    transition: all .3s ease-out;
}

.mft-underline.elementor-element:hover::after {
    background-color: var(--e-global-color-primary);
}

/***** SEPARATOR LINE BETWEEN TITLE AND TEXT *****/
.mft-divider.elementor-element {
    width: 70px !important;
    border-top: 3px solid var(--e-global-color-primary);
}

.mft-divider-white.elementor-element {
    border-top: 3px solid var(--e-global-color-47eea86e);
}

/***** MOVE THE MOTOR ON Y-AXIS - to put the engine half on the hero image and half off the hero image ******/
.mft-booking-translateY .elementor-widget-Mirai-Finder {
    translate: 0 -50%;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.10);
}

/***** CHANGE THE COLOUR OF TEXT AND BUTTONS ON A COLOURED BACKGROUND *****/

/* on a dark background - variable white colour */
.mft-light-text,
.mft-light-text .elementor-button {
    color: var(--e-global-color-47eea86e) !important;
    fill: var(--e-global-color-47eea86e) !important;
}

/* on a light background - variable black colour */
.mft-dark-text,
.mft-dark-text .elementor-button {
    color: var(--e-global-color-21f8c9b7) !important;
    fill: var(--e-global-color-21f8c9b7) !important;
}

/* DYNAMIC CHANGE OF TEXT AND IMAGE BOXED ALTERNATELY */
.mft-alternative-box:nth-of-type(even) {
    flex-direction: row-reverse;
}

/*********************************************************/
/*********************************************************/
/* ARROWS & DOTS CAROUSEL STYLES */
/*********************************************************/

/***** ARROWS *****/
.mft-arrows-carousel-styles .elementor-swiper-button i {
    padding: 20px 24px;
    font-family: 'fap-regular' !important;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    color: var(--e-global-color-text);
    background: #FFFFFF;
    border-radius: 50%;
    /*box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.16);*/
    transition: color .3s ease-out, background .3s ease-out;
}

.mft-arrows-carousel-styles .elementor-swiper-button:hover i {
    color: var(--e-global-color-47eea86e);
    background: var(--e-global-color-52235058);
}

.mft-arrows-carousel-styles .elementor-swiper-button-prev i::before {
    content: "\2329";
}

.mft-arrows-carousel-styles .elementor-swiper-button-next i::before {
    content: "\f054";
}

/* when arrows are on a dark background they turn to white */
.mft-arrows-carousel-styles.mft-arrows-carousel-styles-white .elementor-swiper-button i {
    color: var(--e-global-color-secondary);
    background: var(--e-global-color-47eea86e);
}

@media (max-width: 767px) {
    .mft-arrows-carousel-styles .elementor-swiper-button i {
        padding: 12px 15px;
        font-size: 14px;
    }
}

/***** DOTS *****/
.mft-dots-carousel-styles .swiper-pagination .swiper-pagination-bullet {
    width: 4px;
    height: 4px;
    margin: 3px;
    background: var(--e-global-color-52235058);
    transition: opacity .3s ease-out, background .3s ease-out;
}

.mft-dots-carousel-styles .swiper-pagination .swiper-pagination-bullet:hover {
    background: var(--e-global-color-52235058);
}

/* DOTS AS LINES */
.mft-dots-carousel-styles .swiper-pagination .swiper-pagination-bullet {
    width: var(--mft-space-xs);
    height: 4px;
    border-radius: 4px;
}

.mft-dots-carousel-styles .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: calc(var(--mft-space-xs) * 3);
}

/* COMPACT VARIANT */
@media (max-width: 767px) {
    .mft-dots-carousel--compact .swiper-pagination .swiper-pagination-bullet {
        width: var(--mft-space-3xs);
        margin: 2px;
    }

    .mft-dots-carousel--compact .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        width: calc(var(--mft-space-3xs) * 2);
    }
}

/*********************************************************/
/* CAROUSEL NAVIGATION VISIBILITY */
/*********************************************************/

/* HIDE ARROWS */
.mft-carousel-nav--hide-arrows .elementor-swiper-button {
    display: none;
}

/* HIDE DOTS */
.mft-carousel-nav--hide-dots .swiper-pagination {
    display: none;
}

/* HIDE ARROWS DESKTOP */
@media (min-width: 1024px) {
    .mft-carousel-nav--hide-arrows-desktop .elementor-swiper-button {
        display: none;
    }
}

/* HIDE DOTS DESKTOP */
@media (min-width: 1024px) {
    .mft-carousel-nav--hide-dots-desktop .swiper-pagination {
        display: none;
    }
}

/*********************************************************/
/* CAROUSEL NAV - BOTTOM LEFT */
/*********************************************************/

.mft-carousel-nav--bottom {
    --nav-left: 0px;
    --nav-bottom: 0px;
    --nav-gap: 16px;
    --nav-arrow-space: 56px;
    --nav-dots-space: 90px;

    position: relative;
    padding-bottom: 96px;
}

.mft-carousel-nav--bottom .elementor-swiper-button {
    top: auto !important;
    bottom: var(--nav-bottom) !important;
}

.mft-carousel-nav--bottom .swiper-pagination {
    top: auto !important;
    bottom: 24px !important;
}

.mft-carousel-nav--bottom .elementor-swiper-button-prev {
    left: var(--nav-left) !important;
    right: auto !important;
    transform: none !important;
}

.mft-carousel-nav--bottom .swiper-pagination {
    left: calc(var(--nav-left) + var(--nav-arrow-space) + var(--nav-gap)) !important;
    right: auto !important;
    width: auto !important;
    transform: none !important;
}

.mft-carousel-nav--bottom .elementor-swiper-button-next {
    left: calc(var(--nav-left) + var(--nav-arrow-space) + var(--nav-gap) + var(--nav-dots-space) + var(--nav-gap)) !important;
    right: auto !important;
    transform: none !important;
}

/* RESPONSIVE */

@media (max-width: 767px) {
    .mft-carousel-nav--bottom {
        padding-bottom: 32px;
    }

    .mft-carousel-nav--bottom .swiper-pagination {
        bottom: 15px !important;
    }

    .mft-carousel-nav--bottom {
        --nav-arrow-space: 40px;
        --nav-gap: 12px;
    }

}

/*********************************************************/
/*********************************************************/
/* AUTOSCROLL POPUPS */
/*********************************************************/

/***** AUTOSCROLL *****/
.mft-scrolly-auto {
    overflow: hidden !important;
    overflow-y: auto !important;
    max-height: calc(100dvh - 120px);
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

/***** SCROLL BAR STYLES *****/
.mft-modal-scroll::-webkit-scrollbar {
    width: 5px;
}

.mft-modal-scroll::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--e-global-color-text);
    border-radius: 2px;
}

.mft-modal-scroll::-webkit-scrollbar-thumb {
    background-color: var(--e-global-color-text);
    border-radius: 2px;
    transition: background .3s;
}

.mft-modal-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--e-global-color-primary);
}

/*********************************************************/
/*********************************************************/
/* BUTTONS */
/*********************************************************/

/***** GENERIC BUTTON STYLES *****/
.elementor-button[class^='mft-btn'] {
    padding: var(--mft-space-xs) var(--mft-space-xs);
    font-family: var(--e-global-typography-6d2edf1-font-family);
    font-size: var(--e-global-typography-6d2edf1-font-size);
    font-weight: var(--e-global-typography-6d2edf1-font-weight);
    text-transform: var(--e-global-typography-6d2edf1-text-transform);
    line-height: var(--e-global-typography-6d2edf1-line-height);
    letter-spacing: var(--e-global-typography-6d2edf1-letter-spacing);
    fill: inherit;
    background-color: transparent;
    border-radius: 0;
    transition: all .3s ease;
}

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

/* fixed extra heigth span icon */
.elementor-button .elementor-button-icon {
    display: flex;
}

/* when hovering */
@media (hover: hover) and (pointer: fine) {
    .mft-btn .elementor-button-text::after {
        content: "\f061";
        padding-left: 10px;
        font-family: 'fap-regular';
        font-size: 12px;
        opacity: 0;
        transition: all .3s ease;
    }

    .mft-btn:not(.mft-btn-4) .elementor-button-content-wrapper {
        align-items: center;
        translate: 11px 0;
        transition: all .3s ease;
    }

    .elementor-button.mft-btn:hover .elementor-button-text::after {
        opacity: 1;
    }

    .elementor-button.mft-btn:hover .elementor-button-content-wrapper {
        translate: 0 0;
    }
}

/***** BTN - 1 - As the Finder Button *****/
.elementor-button.mft-btn-1 {
    padding: var(--mft-space-3xs) var(--mft-space-2xs);
    color: var(--mirai-ui-button-color);
    fill: var(--mirai-ui-button-color);
    background-color: var(--mirai-ui-button-background);
    border: 2px solid var(--mirai-ui-button-background);
    border-radius: var(--mft-space-5xs);
}

@media (hover: hover) and (pointer: fine) {
    .elementor-button.mft-btn-1:hover {
        fill: var(--mirai-ui-button-color-active);
        background-color: var(--mirai-ui-button-background-active);
        border: 2px solid var(--mirai-ui-button-background-active);
    }
}

/* light variant */
.elementor-button.mft-btn-1--light {
    color: var(--mirai-ui-button-background);
    fill: var(--mirai-ui-button-background);
    background-color: var(--e-global-color-47eea86e);
    border: 2px solid var(--e-global-color-47eea86e);
}

/* HOVER */
@media (hover: hover) and (pointer: fine) {
    .elementor-button.mft-btn-1--light:hover {
        color: var(--e-global-color-47eea86e);
        fill: var(--e-global-color-47eea86e);
        background-color: var(--mirai-ui-button-background);
        border: 2px solid var(--mirai-ui-button-background);
    }
}

/***** BTN - 2 *****/
.elementor-button.mft-btn-2 {
    padding: var(--mft-space-3xs) var(--mft-space-2xs);
    color: var(--e-global-color-text);
    fill: var(--e-global-color-text);
    background-color: var(--e-global-color-6cb047a);
    border-bottom: 2px solid transparent;
    border-radius: var(--mft-space-5xs);
    line-height: var(--e-global-typography-6d2edf1-line-height);
}

@media (hover: hover) and (pointer: fine) {
    .elementor-button.mft-btn-2:hover {
        color: var(--e-global-color-text);
        fill: var(--e-global-color-text);
        background-color: var(--e-global-color-6cb047a);
        border-bottom-color: var(--e-global-color-text);
    }
}

/***** BTN - 3 *****/
.elementor-button.mft-btn-3 {
    color: var(--e-global-color-primary);
    fill: var(--e-global-color-primary);
    background-color: transparent;
    border: 2px solid;
}

@media (hover: hover) and (pointer: fine) {
    .elementor-button.mft-btn-3:hover {
        color: var(--e-global-color-47eea86e);
        fill: var(--e-global-color-47eea86e);
        background-color: var(--e-global-color-primary);
        border: 2px solid var(--e-global-color-primary);
    }
}

/***** BTN - 4 *****/
.elementor-button.mft-btn-4 {
    position: relative;
    color: var(--e-global-color-52235058);
    fill: var(--e-global-color-52235058);
    background-color: transparent;
    padding: 0;
}


.mft-btn.mft-btn-4 .elementor-button-text {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    line-height: 1.2;
}

.mft-btn.mft-btn-4 .elementor-button-text::after {
    padding-left: 0;
    font-size: 0;
}

@media (hover: hover) and (pointer: fine) {
    .elementor-button.mft-btn-4:hover {
        color: var(--e-global-color-52235058);
        fill: var(--e-global-color-52235058);
    }

    .elementor-button.mft-btn.mft-btn-4:hover .elementor-button-text::after {
        padding-left: 10px;
        font-size: 12px;
        opacity: 1;
    }
}

/* underline */
.mft-btn.mft-btn-4 .elementor-button-text::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
}

.mft-light-text a.elementor-button.mft-btn-4::before,
.mft-light-text a.elementor-button.mft-btn-4:hover::before {
    background: var(--e-global-color-47eea86e);
}

.mft-dark-text a.elementor-button.mft-btn-4::before,
.mft-dark-text a.elementor-button.mft-btn-4:hover::before {
    background: var(--e-global-color-21f8c9b7);
}

@media (hover: hover) and (pointer: fine) {

    /* color hover underline */
    a.elementor-button.mft-btn-4:hover::before {
        background: var(--e-global-color-52235058);
    }
}


/***** BUTTON SIZE BUTTONS ADAPTED TO THE CONTAINER AND RESPONSIVE *****/
.mft-wrapper-btn .mft-btn-width.elementor-element a {
    display: block;
    width: 100%;
    text-align: center;
}

/*********************************************************/
/*********************************************************/
/* STYLE FORM */
/*********************************************************/

.mft-acceptance-form {
    font-family: "Helvetica";
    font-size: 12px;
    font-weight: 400;
    color: #333333;
}

.mft-acceptance-form a,
.mft-acceptance-form a:hover {
    text-decoration: underline;
    font-weight: bold;
}

#form-field-acceptance {
    width: 20px;
    height: 20px;
    margin: 0 10px 0 0;
}

.elementor-field-group-acceptance .elementor-field-option {
    display: flex;
    align-items: center;
}

.mft-form-style .eicon-caret-down:before {
    content: "\f078";
    font-family: 'fap-regular' !important;
    font-size: 10px;
    font-weight: normal;
}

.mft-mandatory-form {
    color: #d32f2f;
}

.mft-form-style input,
.mft-form-style textarea,
.mft-form-style select {
    padding-top: 20px !important;
}

.mft-form-style input:focus,
.mft-form-style textarea:focus,
.mft-form-style select:focus {
    border-color: #000 !important;
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--corporative-color) 50%, transparent) !important;
}

.mft-form-style label:not(.elementor-field-group-acceptance label) {
    position: absolute;
    top: 12px;
    left: 25px;
    pointer-events: none;
    z-index: 1;
    transition: all 0.3s ease;
}

.mft-form-style label:not(.elementor-field-group-acceptance label),
.mft-form-style .elementor-field-group .elementor-field-textual {
    font-family: "Helvetica";
    font-size: 16px;
    font-weight: 400;
    color: #666;
}

.mft-form-style .elementor-field-group .elementor-field-textual {
    color: #333;
    padding-left: 19px;
}

.mft-form-style .elementor-field-group:has(input:focus) label,
.mft-form-style .elementor-field-group:has(textarea:focus) label,
.mft-form-style .elementor-field-group:has(select:focus) label,
.mft-form-style .elementor-field-group:has(input:not(:placeholder-shown)) label,
.mft-form-style .elementor-field-group:has(textarea:not(:placeholder-shown)) label,
.mft-form-style .elementor-field-group:has(select:valid) label {
    top: 5px;
    font-size: 12px !important;
}

.mft-form-style .elementor-field-type-submit .elementor-button {
    background-color: var(--mirai-ui-button-background);
}

.mft-form-style .elementor-field::placeholder,
.mft-form-style .elementor-field-group label:after {
    color: transparent !important;
}

.mft-form-style .elementor-field-group .elementor-field-textual {
    border: 1px solid #DDDDDD;
}

/*********************************************************/
/*********************************************************/
/* WPML */
/*********************************************************/

.wpml-elementor-ls {
    display: flex;
    align-items: center;
}

.wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle {
    min-height: 21px;
    padding-right: 0;
}

.wpml-ls-legacy-dropdown-click a {
    padding: 1px 10px 1px 28px;
    color: var(--e-global-color-bd9d5b8);
    border: none;
}

.wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle {
    background-color: transparent;
}

.wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle::after {
    display: none;
}

.wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle::before {
    content: "\1f310";
    font-family: 'fap-regular';
    position: absolute;
    left: 0;
    font-size: 18px;
}

.wpml-ls-legacy-dropdown-click a.wpml-ls-link {
    padding: 7px 10px 7px 10px;
    text-align: center;
    background-color: var(--e-global-color-47eea86e);
}

.wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu a {
    border-width: 0;
}

.wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
    border-top: none;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.16);
    transition: .3s ease-in-out;
}

.wpml-ls-legacy-dropdown-click {
    transition: .3s ease-in-out;
}

.wpml-ls-legacy-dropdown-click a.wpml-ls-link {
    position: relative;
}

.wpml-ls-legacy-dropdown-click a.wpml-ls-link::after {
    content: "";
    position: absolute;
    inset: auto 50% 3px;
    transform: translateX(-50%);
    width: 20px;
    height: 1px;
    background: transparent;
    transition: .3s ease-in-out;
}

.wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu a.wpml-ls-link::after {
    background: currentColor;
}

@media (hover: hover) and (pointer: fine) {

    /*.wpml-ls-legacy-dropdown-click a.wpml-ls-link:hover::after {
    	background: var(--e-global-color-fc842eb);
	}*/
    .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu a.wpml-ls-link:hover::after {
        background: currentColor;
    }
}

@media (max-width: 1024px) {

    /* hide native language and arrow in tb */
    .wpml-ls-legacy-dropdown-click .wpml-ls-current-language a.wpml-ls-item-toggle .wpml-ls-native,
    .wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle::after {
        display: none;
    }

    /* to remove the space after hiding the arrow */
    .wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle {
        padding-right: 0;
    }

    /* the space for the language drop-down */
    .wpml-ls-legacy-dropdown-click a {
        padding: 0;
    }

    .wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle::before {
        font-size: 16px;
    }

    .wpml-ls-legacy-dropdown-click a.wpml-ls-link {
        padding: 5px 0;
        font-size: 13px;
    }
}

/*********************************************************/
/*********************************************************/
/* START LEGAL PAGE TEXT WIDGET */
/*********************************************************/

/***** COOKIES POLICY ******/
.cookies-section,
.mft-legal-text {
    max-width: var(--container-legal) !important;
    margin: 0 auto;
    box-sizing: border-box;
}

.cookies-section {
    padding: var(--mft-space-4xl) 0;
}

.cookies-section a {
    font-weight: bold;
    transition: color .3s ease-in-out;
}

.cookies-section a:hover {
    color: var(--e-global-color-primary);
}

.cookies-section .elementor-widget-wrap .elementor-widget-heading:first-child .mi-title3 {
    display: none;
}

/***** LEGAL NOTICE ******/

/* Heading H1 */
.mft-legal-text h1,
.cookies-section .elementor-widget-wrap .elementor-widget-heading:first-child .mi-title3,
.blog-single-post .elementor-widget-theme-post-title h1,
.elementor-widget-single-job-title h1 {
    padding-bottom: 20px;
    font-family: var(--e-global-typography-primary-font-family) !important;
    font-size: var(--e-global-typography-primary-font-size) !important;
    font-weight: var(--e-global-typography-primary-font-weight) !important;
    line-height: var(--e-global-typography-primary-line-height) !important;
    color: var(--e-global-color-text) !important;
}

/* Heading H2 */
.mft-legal-text h2,
.cookies-section .mi-title3,
.blog-single-post h1,
.blog-single-post h2,
.single_job_listing h2 {
    padding: 16px 0;
    font-family: var(--e-global-typography-secondary-font-family);
    font-size: var(--e-global-typography-secondary-font-size);
    font-weight: var(--e-global-typography-secondary-font-weight);
    line-height: var(--e-global-typography-secondary-line-height);
    text-transform: var(--e-global-typography-secondary-text-transform);
}

/* Heading H3*/
.mft-legal-text h3,
.blog-single-post h3,
.single_job_listing h3 {
    padding: 16px 0;
    font-family: var(--e-global-typography-accent-font-family);
    font-weight: var(--e-global-typography-accent-font-weight);
    font-weight: bold;
    line-height: var(--e-global-typography-accent-line-height);
    text-transform: uppercase;
}

/* Heading H4*/
.mft-legal-text h4 {
    padding-bottom: 20px;
    font-family: Sans-serif;
    font-size: clamp(19px, calc(19px + (20 - 19) * ((100vw - 360px) / (1920 - 360))), 20px);
    font-weight: 700;
    line-height: var(--e-global-typography-962030d-line-height);
}

.mft-legal-text h1 {
    margin: 0 0 30px;
}

.mft-legal-text h2 {
    margin: 45px 0 0;
}

.mft-legal-text h3,
.mft-legal-text h4,
.cookies-section .mi-title3 {
    margin: 30px 0 0;
}

/* LINKS */
.mft-legal-text a {
    text-wrap: wrap;
    overflow-wrap: break-word;
    text-decoration: none;
    color: var(--e-global-color-primary);
    transition: .3s ease-in-out;
}

.mft-legal-text a:hover {
    color: var(--e-global-color-13f4851a);
}

.mft-legal-text a span {
    color: inherit !important;
}

/* SPACE AFTER ELEMENTS */
.mft-legal-text :where(p, ul, ol, span) {
    margin-bottom: 15px;
}

/* LISTS */
.mft-legal-text ol {
    padding-left: 18px;
}

.mft-legal-text ol li {
    margin-bottom: 5px;
    list-style: circle outside none;
    overflow-wrap: break-word;
}

.mft-legal-text ul {
    padding-left: 35px;
}

.mft-legal-text ul li {
    margin-bottom: 5px;
    list-style: disc outside none;
    overflow-wrap: break-word;
}

/* TABLE STYLE */
.mft-legal-text table tr:first-child {
    color: var(--e-global-color-47eea86e);
    background-color: var(--e-global-color-d9f1a36);
}

/* Table general styles */
.mft-legal-text table {
    margin: 30px 0;
    width: 100%;
    font-size: 1em;
    background-color: transparent;
    border-spacing: 0;
    border-collapse: collapse;
}

@media (max-width:1023px) {
    .mft-legal-text table {
        display: block;
        overflow-x: auto;
        max-width: 100%;
    }
}

/* Table cell padding and styles */
.mft-legal-text table :where(td, th) {
    padding: 15px;
    min-width: 200px;
    vertical-align: top;
    line-height: 1.5em;
    border: 1px solid var(--e-global-color-15b9b07);
}

/* Background of odd table rows */
.mft-legal-text table tbody>tr:nth-child(odd)> :where(td, th) {
    background-color: #09090912;
}

.mft-legal-text table a:hover {
    text-decoration: none;
}

/*********************************************************/
/*********************************************************/
/* DYNAMIC PAGES */
/*********************************************************/

/***** GENERAL STYLE *****/

/* ICONS -- these icons are painted on the room detail and offer pages */
a.back-link::before,
a:where(.fwd-link, .down-link)::after {
    content: "\f060";
    display: inline-block;
    margin: 0 .5em;
    vertical-align: middle;
    font-family: 'fap-regular' !important;
    font-size: .85em;
    font-weight: normal;
    text-decoration: none;
    line-height: .85em;
    transition: all .2s ease-out;
}

a.fwd-link::after {
    content: "\f060";
}

a.down-link::after {
    content: "\f078";
}

a.fwd-link:hover,
.back a:hover,
a.down-link:hover {
    text-decoration: none;
}

a.fwd-link:hover::after {
    margin-left: 1em;
    margin-right: 0;
}

.back a:hover::before {
    margin-right: 1em;
    margin-left: 0;
}

a.down-link:hover::after {
    transform: translateY(0.3em);
}

/* container */
.rooms-listing-wrapper,
.rooms-detail-wrapper,
.offers-listing-wrapper,
.offers-detail-wrapper {
    max-width: var(--width-m);
    margin: 0 auto;
    box-sizing: border-box;
}

/* titles rooms & detail room */
.rooms-listing-wrapper h2,
.rooms-detail-wrapper h2,
.rooms-listing-wrapper h3 {
    font-family: var(--e-global-typography-secondary-font-family), Sans-serif;
    font-size: var(--e-global-typography-secondary-font-size);
    font-weight: var(--e-global-typography-secondary-font-weight);
    line-height: var(--e-global-typography-secondary-line-height);
    text-decoration: none;
    text-transform: var(--e-global-typography-secondary-text-transform);
    transition: .3s ease-in-out;
}

.rooms-listing-wrapper .room-box h3 a,
.rooms-detail-wrapper h3 {
    font-family: var(--e-global-typography-accent-font-family), Sans-serif;
    font-size: var(--e-global-typography-accent-font-size);
    font-weight: var(--e-global-typography-accent-font-weight);
    line-height: var(--e-global-typography-accent-line-height);
    text-decoration: none;
    transition: .3s ease-in-out;
}

/* hover title room */
.rooms-listing-wrapper .room-box h3 a:hover {
    color: var(--e-global-color-primary) !important;
}

.offers-listing-wrapper h2,
/* title intro offer */
.offers-listing .offer .offer-title,
/* title offer */
.offers-detail-wrapper .offer-wrapper .offer-title,
/* title offer detail */
.offers-listing-4 .offer-text h3

/* title card offer tpl 4*/
    {
    font-family: var(--e-global-typography-962030d-font-family), Sans-serif;
    font-size: var(--e-global-typography-962030d-font-size);
    font-weight: var(--e-global-typography-962030d-font-weight);
    line-height: var(--e-global-typography-962030d-line-height);
    text-transform: none;
}

.offers-listing-wrapper h2 {
    display: none;
}

.offers-listing .offer .offer-title {
    width: 100%;
    font-size: 27px;
}

/* decoration title underlined */
/*.offers-listing .offer .offer-title::after,
.offers-detail-wrapper .offer-header-content-wrapper .offer-title::after {
	content: "";
	display: block;
	margin: var(--mft-space-2xs) 0;
	width: 70px;
	height: 3px;
	background: var(--e-global-color-primary);
}*/

/***** btn - more information & offer-button *****/
.rooms-listing-wrapper .room-box a.more-info,
.rooms-listing-wrapper .room-box .room-intro a,
.offers-listing .offer .offer-button {
    font-weight: var(--e-global-typography-6d2edf1-font-weight);
    padding: var(--mft-space-3xs) var(--mft-space-2xs);
    color: var(--e-global-color-text);
    fill: var(--e-global-color-text);
    background-color: var(--e-global-color-6cb047a);
    border-bottom: 2px solid transparent;
    border-radius: var(--mft-space-5xs);
    line-height: var(--e-global-typography-6d2edf1-line-height);
    transition: all .3s ease;
    text-transform: uppercase;
}

/* hover btn - more information & button */
.rooms-listing-wrapper .room-box a.more-info:hover,
.rooms-listing-wrapper .room-box .room-intro a:hover,
.offers-listing .offer .offer-button:hover {
    color: var(--e-global-color-text);
    fill: var(--e-global-color-text);
    background-color: var(--e-global-color-6cb047a);
    border-bottom-color: var(--e-global-color-text);
}

/* btn - more information */
.rooms-listing-wrapper .room-box a.more-info,
.rooms-listing-wrapper .room-box .room-intro a {
    margin-top: var(--mft-space-m);
    display: block !important;
    width: max-content;
    text-decoration: none !important;
}

/* btn -  offer-button */
.offers-listing .offer .offer-button {
    position: relative !important;
    bottom: 0;
    right: 0;
    display: inline-block;
    margin: 10px 35px;
}

.room-box .room-content ul.exclusive-services {
    margin: 15px 0;
    padding-left: 0;
}

/* btn - more information full width & center mobile */
@media (max-width:767px) {

    .rooms-listing-wrapper .room-box a.more-info,
    .rooms-listing-wrapper .room-box .room-intro a {
        width: auto;
        text-align: center;
    }

    .offers-listing .offer .offer-button {
        display: block;
    }

}

/***** icons and room description text *****/
.rooms-listing-1 .room-box .room-detail ul li {
    font-weight: 500;
}

.rooms-listing-wrapper .room-box .room-detail ul li span:where(.occupancies-ico, .size-ico, .distibution-ico) {
    width: auto;
    height: auto;
    background-image: none !important;
}

.rooms-listing-wrapper .room-box .room-detail ul li span:where(.occupancies-ico, .size-ico, .distibution-ico)::before {
    padding-right: 5px;
    font-family: 'fap-regular' !important;
    font-weight: normal;
    font-size: 25px;
    color: var(--e-global-color-primary);
}

.rooms-listing-wrapper .room-box .room-detail ul li span.occupancies-ico::before {
    content: "\1f464";
}

.rooms-listing-wrapper .room-box .room-detail ul li span.size-ico::before {
    content: "\f05a";
}

.rooms-listing-wrapper .room-box .room-detail ul li span.distibution-ico::before {
    content: "\1f6cf";
}

.offers-listing-wrapper.no-offers {
    text-align: center;
    padding: 50px 24px;
}

/********** TEMPLATES ROOMS **********/

/* ROOM TEMPLATE 2 */
.rooms-listing-2 .room-box {
    border: none;
}

.rooms-listing-2 .room-box .room-detail {
    padding: 2% 2%;
    /*hospes*/
}

@media (min-width:979px) {

    .rooms-listing-2 .room-box .room-image,
    .rooms-listing-2 .room-box .room-detail {
        width: 50%;
    }

    .rooms-listing-2 .room-box .room-detail ul {
        width: 50%;
        left: auto;
    }
}

@media (max-width:979px) {
    .rooms-listing-2 .room-detail h3 {
        padding-top: var(--mft-space-m);
    }
}

/*********************************************************/
/* HOSPES - ROOM TEMPLATE 2 */
/*********************************************************/

.rooms-listing-wrapper>.row:first-child {
    display: none;
}

.room-box .room-detail .price-box .min-price {
    background-color: var(--e-global-color-6cb047a);
    color: var(--e-global-color-text);
    border-radius: var(--mft-space-5xs);
}

.room-box .room-image .available-rooms {
    background-color: #F1EBE5;
    color: #4D4A47;
    border-radius: var(--mft-space-5xs);
    padding: 8px 16px;
}

/*********************************************************/
/*********************************************************/

/* decomment when requesting centred content - for all templates*/
/*.rooms-listing-wrapper .room-detail,
.rooms-listing-wrapper .room-box .room-detail ul,
.rooms-listing-wrapper .room-box .room-content,
.rooms-listing-5 .room-name,
.rooms-listing-5 .room-description {
text-align: center !important;
}*/

/* centring for template 2 and 4 */
/*.rooms-listing-wrapper .room-box .room-content,
.rooms-listing-2 .room-box .room-detail .room-description,
.rooms-listing-4 .room-box .room-description,
.rooms-listing-5 .room-intro .row:last-child {
display: flex;
flex-direction: column;
align-items: center;
}*/

/* centred check-list template 5 */
/*.rooms-listing-5 .room-services-list {
padding-left: var(--mft-space-l);
}*/

/********** TEMPLATE OFFERS **********/

/* OFFER TEMPLATE 4 */
.offers-listing-4 .offer-text {
    text-align: center;
}

.offers-listing-4 .offer .offer-box {
    /*min-height: 400px;*/
    transition: .3s ease-in-out;
}

.offers-listing-4 .offer .offer-box img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offers-listing-4 .offer .offer-box:hover {
    box-shadow: 0px 0px 9px #00000047;
}

/*********************************************************/
/* HOSPES - OFFERS TEMPLATE 4 - listing + room detail offers */
/*********************************************************/

/* CONTENT */

.offers-listing-wrapper .offer-text {
    padding: var(--mft-space-xs) 0 !important;
}

.offers-listing-wrapper .offer-text h3 {
    text-transform: none !important;
}

/* CARD */

.offers-listing-4 .offer .offer-box {
    background-color: #F1EBE5;
}

.offers-listing-4 .offer .offer-box:hover {
    box-shadow: none;
}

/* IMAGE */

.offers-listing-4 .offer .offer-box>img {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center center;
}

/* CONTENT */

.offers-listing-4 .offer .offer-box>.offer-text {
    position: relative !important;
    inset: auto !important;
    bottom: auto !important;
    display: block !important;
    width: 100% !important;
    padding: var(--mft-space-xs);
    color: var(--e-global-color-text);
    text-align: left;
    background-color: #F1EBE5;
}

.offers-listing-4 .offer-name {
    padding: 0;
    margin: 0;
}

.offers-listing-4 .offer-discount {
    margin-top: var(--mft-space-3xs);
    margin-bottom: 0;
    font-family: var(--e-global-typography-text-font-family);
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);
    line-height: var(--e-global-typography-text-line-height);
}

/* BUTTON */

.go-to-offers-page {
    margin-top: var(--mft-space-xs);
}

.go-to-offers-page a {
    text-transform: uppercase;
    text-decoration: underline;
}

/*********************************************************/
/*********************************************************/

/***** ROOM DETAILS *****/
.calendar-wrapper.calendar-type1 {
    border-top: 0;
}

.rooms-detail-wrapper .room-box-services h3,
.rooms-detail-wrapper h3 {
    margin-bottom: 40px;
}

.rooms-detail-wrapper h4 {
    font-family: var(--e-global-typography-962030d-font-family), Sans-serif;
    font-size: var(--e-global-typography-962030d-font-size);
    font-weight: var(--e-global-typography-962030d-font-weight);
    line-height: var(--e-global-typography-962030d-line-height);
}

.rooms-detail-wrapper h2 {
    padding-bottom: var(--mft-space-s);
}

.rooms-detail-wrapper .room-box-detail,
.rooms-detail-wrapper .room-box-price {
    background-color: var(--e-global-color-15b9b07) !important;
}

.rooms-detail-wrapper .room-box-services,
.rooms-detail-wrapper .room-box-common-services {
    padding: 15px 0px;
}

.rooms-detail-5 .offers-listing-1 {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.rooms-detail-5 .offers-listing-1 .offer {
    width: 48%;
}

.rooms-detail-5 .room-box-offers .elementor-container .offer-list-wrapper {
    background: transparent;
}

/*.rooms-detail-5 .room-box-offers {
	background: var(--e-global-color-f79e654);
}*/

/*********************************************************/
/* HOSPES - ROOM DETAIL TEMPLATE 2 */
/*********************************************************/

.rooms-detail-wrapper .room-box-detail,
.rooms-detail-wrapper .room-box-price {
    background-color: #fff !important;
}

@media (min-width: 1200px) {
    .rooms-detail-wrapper .room-box-image .room-box-description {
        margin-top: 0px !important;
    }
}

/* room price */

.rooms-detail-wrapper .room-box-image .room-box-detail .box-price {
    background-color: #aba196;
    border-radius: var(--mft-space-5xs);
}

.room-box .room-detail .price-box .min-price span,
.rooms-detail-wrapper .room-box-image .room-box-detail .box-price span {
    font-size: 26px;
    font-weight: 400;
    margin: 0 0 -2px;
}

.room-box .room-detail ul li span[class*='-ico'],
.rooms-detail-wrapper ul li span[class*='-ico'] {
    display: none !important;
}

/* caja imagen */
.rooms-detail-wrapper .room-box-image {
    margin: 0;
    border: 1px solid #aaa;
    border-bottom: 1px dashed #ddd;
    border-radius: 3px 3px 0 0;
}

/* lista */
.rooms-detail-wrapper .room-box-extras {
    padding: 0 48px 48px;
    border: 1px solid #aaa;
    border-top: 0;
    border-radius: 0 0 3px 3px;
    margin: 0;
}

/* titles */

/*.room-box-description h3 {}
*/

.rooms-detail-wrapper .room-box-extras h4,
.rooms-detail-wrapper .room-box-offers>h3 {
    text-transform: uppercase;
    padding: 48px 0 29px;
    margin: 0;
}

/**/
.room-box-extras {
    hyphens: auto;
    word-break: break-word;
    overflow-wrap: break-word;
}

@media (min-width: 768px) {

    /* equipamiento */
    .rooms-detail-wrapper .room-box-extras div {
        width: 100%;
    }

    .rooms-detail-wrapper .room-box-extras div ul,
    .rooms-listing-wrapper .common-services {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 0;
        margin: 0;
        -webkit-box-shadow: inset 0 -1px #e9e9e9;
        box-shadow: inset 0 -1px #e9e9e9;
    }


    .rooms-detail-wrapper .room-box-extras div ul li,
    .rooms-listing-wrapper .common-services li {
        border-bottom: 1px solid #e9e9e9;
        padding: 15px 10px;
        width: 33%;
        margin: 0;
        list-style: none;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
}

/* offers in room details */

.rooms-detail-wrapper .room-box-offers {
    margin-top: 48px;
    padding-bottom: 48px;
}

.rooms-detail-wrapper .room-box-image,
.rooms-detail-wrapper .room-box-extras,
.rooms-detail-wrapper .room-box-offers {
    border: 1px solid #ddd;
}


/***** OFFER DETAILS *****/
.offers-detail-wrapper.offer-detail-1 .offer-features-wrapper .offer-boxes-wrapper .offer-box span,
.offers-detail-wrapper.offer-detail-1 .offer-features-wrapper .offer-boxes-wrapper .offer-box meta {
    font-family: var(--e-global-typography-fcce242-font-family);
    font-size: 20px !important;
    font-weight: var(--e-global-typography-fcce242-font-weight);
    line-height: var(--e-global-typography-fcce242-line-height);
}

.offers-detail-wrapper.offer-detail-1 .offer-photo {
    width: 230px;
}

.offers-detail-wrapper .offer-photo {
    width: auto;
}

.offers-detail-wrapper.offer-detail-2 .offer-wrapper {
    float: none;
}

.offers-detail-wrapper.offer-detail-2 .offer {
    margin: 55px auto;
}

.offer-detail-5 .offer-wrapper .offer-title i.eci {
    display: inline;
    margin: 0 15px 0 0;
    font-size: 25px;
}


/************************************************************************************************/
/************************************************************************************************/
/************************************************************************************************/

/* END */

/*********************************************************/
/*********************************************************/
/* CUSTOM CSS - HOSPES */
/*********************************************************/

/*********************************************************/
/* MAIN MENU POPUP */
/*********************************************************/

/* MENU ARROWS */

.mft-popup-menu .elementor-nav-menu--main a.elementor-item[href^="#popup-submenu-"] {
    display: inline-flex;
    align-items: center;
}

.mft-popup-menu .elementor-nav-menu--main a.elementor-item[href^="#popup-submenu-"]::after {
    content: "\f054";
    font-family: 'fap-regular' !important;
    font-size: 16px !important;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    opacity: 1 !important;
    display: inline-block !important;
    position: static !important;
    inset: auto !important;
    width: auto !important;
    height: auto !important;
    margin-left: 12px !important;
}

@media (hover: hover) and (pointer: fine) {
    .mft-popup-menu .elementor-nav-menu--main a.elementor-item[href^="#popup-submenu-"]:hover::after {
        transform: translateX(3px);
        transition: transform .2s ease;
    }
}

/* UNDERLINE STYLE - LOOP ITEM SUBMENU */

.loop-item-submenu__icontitle a:hover .elementor-icon-list-text {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* MENU ITEM - SHOP GIFT ICON */

.mft-popup-menu .menu-item-3273>a.elementor-item {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
}

.mft-popup-menu .menu-item-3273>a.elementor-item::before {
    content: "\f06b";
    font-family: 'fap-regular' !important;
    font-size: 24px;
    position: relative;
    top: -1px;
    opacity: 1 !important;
}

/*********************************************************/
/* HOTEL MEDIA MASKS */
/*********************************************************/

/* TARGET MEDIA (IMG + VIDEO) */

.cmp-hotels-carousel [class*="shape-hospes-"] :is(img, video) {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* HOTEL-SPECIFIC EXCEPTIONS */
/*
.shape-hospes-maricel img {
    object-position: 30% center !important;
}*/

/* BASE SHAPE */

[class*="shape-hospes-"] :is(img, video) {
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

/* IMG FILTER */

.mft-media-filter :is(img, video) {
    filter:
        saturate(65%) contrast(90%) brightness(105%) sepia(8%);
}

/* SVG PER HOTEL */

.shape-hospes-amerigo :is(img, video) {
    -webkit-mask-image: url("/app/uploads/sites/2108/shape-hospes-amerigo-2.svg");
    mask-image: url("/app/uploads/sites/2108/shape-hospes-amerigo-2.svg");
}

.shape-hospes-maricel :is(img, video) {
    -webkit-mask-image: url("/app/uploads/sites/2108/shape-hospes-maricel-1.svg");
    mask-image: url("/app/uploads/sites/2108/shape-hospes-maricel-1.svg");
}

.shape-hospes-palau-mar :is(img, video) {
    -webkit-mask-image: url("/app/uploads/sites/2108/shape-hospes-palau-mar-1.svg");
    mask-image: url("/app/uploads/sites/2108/shape-hospes-palau-mar-1.svg");
}

.shape-hospes-casas-rey-baeza :is(img, video) {
    -webkit-mask-image: url("/app/uploads/sites/2108/shape-hospes-casas-rey-baeza-1.svg");
    mask-image: url("/app/uploads/sites/2108/shape-hospes-casas-rey-baeza-1.svg");
}

.shape-hospes-palacio-san-esteban :is(img, video) {
    -webkit-mask-image: url("/app/uploads/sites/2108/shape-hospes-palacio-san-esteban-1.svg");
    mask-image: url("/app/uploads/sites/2108/shape-hospes-palacio-san-esteban-1.svg");
}

.shape-hospes-puerta-alcala :is(img, video) {
    -webkit-mask-image: url("/app/uploads/sites/2108/shape-hospes-puerta-alcala-1.svg");
    mask-image: url("/app/uploads/sites/2108/shape-hospes-puerta-alcala-1.svg");
}

.shape-hospes-palacio-patos :is(img, video) {
    -webkit-mask-image: url("/app/uploads/sites/2108/shape-hospes-palacio-patos-1.svg");
    mask-image: url("/app/uploads/sites/2108/shape-hospes-palacio-patos-1.svg");
}

.shape-hospes-palacio-bailio :is(img, video) {
    -webkit-mask-image: url("/app/uploads/sites/2108/shape-hospes-palacio-bailio-1.svg");
    mask-image: url("/app/uploads/sites/2108/shape-hospes-palacio-bailio-1.svg");
}

.shape-hospes-palacio-arenales :is(img, video) {
    -webkit-mask-image: url("/app/uploads/sites/2108/shape-hospes-palacio-arenales-1.svg");
    mask-image: url("/app/uploads/sites/2108/shape-hospes-palacio-arenales-1.svg");
}

/*********************************************************/
/* CMP HOTELS CAROUSEL - home & hotels page */
/*********************************************************/

.cmp-hotels-carousel [class*="shape-hospes-"] {
    aspect-ratio: 370 / 540;
}

@media (min-width: 768px) {
    .cmp-hotels-carousel .swiper-pagination {
        display: none;
    }
}

/*********************************************************/
/* CMP EXPAND CARD */
/*********************************************************/

/* BASE */

.cmp-expand-card {
    position: relative;
    aspect-ratio: 3 / 4;
}

.cmp-expand-card__inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.cmp-expand-card__face {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: opacity .4s ease, visibility .4s ease;
}

/* STATUS */

.cmp-expand-card__face--front {
    opacity: 1;
    visibility: visible;
}

.cmp-expand-card__face--back {
    opacity: 0;
    visibility: hidden;
}

/* OPEN STATE */

.cmp-expand-card.is-open .cmp-expand-card__face--front {
    opacity: 0;
    visibility: hidden;
}

.cmp-expand-card.is-open .cmp-expand-card__face--back {
    opacity: 1;
    visibility: visible;
}

/* TOGGLE */

.cmp-expand-card__toggle,
.cmp-expand-card__toggle .elementor-button {
    cursor: pointer;
}

/* VARIANTS */
/*
cmp-expand-card--toggle-top
cmp-expand-card--toggle-bottom
cmp-expand-card--static
*/


/*********************************************************/
/* CMP CAROUSELs */
/*********************************************************/

/* OFFSET RIGHT */

.cmp-cards__carousel .swiper {
    width: 100vw;
    margin-left: calc((100% - var(--width-m)) / 2);
}

@media (max-width: 1440px) {
    .cmp-cards__carousel .swiper {
        width: calc(100% + var(--mft-space-s));
        margin-left: 0;
    }
}

/* STATIC DESKTOP - when only 3 slides */
/* Use for 3-slide carousels without autoplay. */

@media (min-width: 1024px) {
    .cmp-cards__carousel--static-desktop {
        padding-bottom: 0;
    }

    .cmp-cards__carousel--static-desktop .swiper {
        width: 100%;
        margin-left: 0;
        --e-n-carousel-swiper-offset-size: 0px;
    }
}

@media (min-width: 1024px) {
    .cmp-cards__carousel--static-desktop .elementor-swiper-button i {
        display: none;
    }
}

/*********************************************************/
/* CMP SYNC SLIDES */
/*********************************************************/

.cmp-sync-slides-wrapper {
    overflow-x: hidden;
}

.cmp-sync-slides {
    position: relative;
    width: min(100%, var(--width-l));
    margin-inline: auto;
}

@media (min-width: 1260px) and (hover: hover) and (pointer: fine) {
    .cmp-sync-slides {
        aspect-ratio: 1900 / 800;
    }
}

.cmp-sync-slides .swiper {
    overflow: visible;
}

/***** COMMON STYLES *****/

/* SIZES */
.cmp-sync-slides__left-img {
    width: clamp(180px, 17vw, 330px);
    aspect-ratio: 330 / 340;
    height: auto;
}

.cmp-sync-slides__center-content {
    width: clamp(320px, 28vw, 550px);
}

.cmp-sync-slides__center-content img {
    width: 100%;
    aspect-ratio: 550 / 700;
    height: auto;
    object-fit: cover;
    object-position: center center;
}

.cmp-sync-slides__center-video.elementor-widget-video .elementor-wrapper {
    aspect-ratio: 550 / 700;
}

.cmp-sync-slides__right-img {
    width: clamp(240px, 27vw, 530px);
    aspect-ratio: 530 / 580;
    height: auto;
}

/***** SHARED PROPERTIES - SIDE IMAGES *****/

.cmp-sync-slides__left-img,
.cmp-sync-slides__right-img {
    position: absolute;
    object-fit: cover;
    object-position: center center;
}

/***** LEFT IMAGE *****/

.cmp-sync-slides__left-img {
    left: 10%;
    bottom: 2%;
}

.cmp-sync-slides__left-img img {
    transform: rotate(8deg);
}

/* variant: media offset large */

.cmp-sync-slides--media-offset .cmp-sync-slides__left-img {
    translate: 0 110px;
}

.cmp-sync-slides--media-offset .cmp-sync-slides__left-img img {
    transform: rotate(8deg);
}

@media (max-width: 1024px) {
    .cmp-sync-slides__left-img {
        display: none;
    }
}

/***** CENTER CONTENT *****/

.cmp-sync-slides__center-content {
    padding-top: var(--mft-space-4xl);
    display: flex;
    flex-direction: column;
    gap: var(--mft-space-m);
    transform: translateX(var(--mft-space-3xl));
}

/***** RIGHT IMAGE *****/

.cmp-sync-slides__right-img {
    right: -4%;
    top: 6%;
}

.cmp-sync-slides__right-img img {
    transform: rotate(10deg);
}

/***** LAPTOP *****/

@media (min-width: 1025px) and (max-width: 1440px) and (hover: hover) and (pointer: fine) {

    /*.cmp-sync-slides,
	.cmp-sync-slides__carousel .swiper {
    min-height: 760px;
    }*/

    .cmp-sync-slides__content {
        width: 45%;
    }

    .cmp-sync-slides__center-content {
        transform: translateX(100px);
    }

    .cmp-sync-slides__left-img {
        display: none;
    }

    .cmp-sync-slides__right-img {
        right: -6%;
    }
}

/***** TABLET + MOBILE *****/

@media (max-width: 1024px) {
    .cmp-sync-slides {
        min-height: auto;
    }

    .cmp-sync-slides__template {
        position: relative !important;
    }

    .cmp-sync-slides__left-img,
    .cmp-sync-slides__right-img {
        display: none;
    }

    .cmp-sync-slides__center-content {
        padding-top: 0;
        transform: none;
    }
}

@media (max-width: 767px) {
    .cmp-sync-slides__center-content {
        width: 76%;
    }
}

/***** FADE EFFECT sync slides *****/

/* FADE EFFECT */

/* FRONTEND ONLY: HIDE NON-ACTIVE SLIDES */
body:not(.elementor-editor-active) .cmp-sync-slides__carousel .swiper-slide {
    opacity: 0;
    transition: none;
}

/* SHOW ACTIVE SLIDE */
body:not(.elementor-editor-active) .cmp-sync-slides__carousel .swiper-slide.swiper-slide-active {
    opacity: 1;
    transition: opacity 0.8s ease-in-out;
}

/* SINGLE SLIDE: KEEP IT VISIBLE */
body:not(.elementor-editor-active) .cmp-sync-slides__carousel .swiper-wrapper:has(> .swiper-slide:only-child)>.swiper-slide:only-child {
    opacity: 1;
}

/*********************************************************/
/* CMP HERO - GENERAL */
/*********************************************************/

/* MEDIA */

.mft-hero__visual {
    position: relative;
    height: var(--mft-hero-visual-height);
    overflow: hidden;
}

.mft-hero__img,
.mft-hero__video.elementor-widget-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.mft-hero__img {
    z-index: 1;
}

.mft-hero__video.elementor-widget-video {
    z-index: 2;
}

.mft-hero__img img,
.mft-hero__video.elementor-widget-video .elementor-wrapper,
.mft-hero__video.elementor-widget-video video {
    display: block;
    width: 100%;
    height: 100%;
}

.mft-hero__img img,
.mft-hero__video.elementor-widget-video video {
    object-fit: cover;
    object-position: center center;
}

/* EMPTY VIDEO FALLBACK */

.mft-hero__video:not(:has(video[src])) {
    display: none;
}

/* RESPONSIVE */

@media (max-width: 767px) {
    .mft-hero__visual {
        height: var(--mft-hero-visual-height-mobile);
    }
}

/* BREADCRUMBS */

span.breadcrumb_last {
    font-style: italic;
}

/* hero inner pages corpo - white content bg */
.mft-hero--corpo {
    background-color: #fff;
}

/* EXCLUDE BREADCRUMBS ON SINGLE POSTS */

.single-post .mft-breadcrumbs {
    display: none;
}

/* HERO IMAGE POSITION */

@media (max-width: 767px) {

    .hero-bg-pos-left .mft-hero__img img {
        object-position: 35% center;
    }

    .hero-bg-pos-right .mft-hero__img img {
        object-position: 80% center;
    }
}

/*********************************************************/
/* CMP HERO - DETAIL PAGES */
/*********************************************************/

/* CONTENT */

body:where(.cat-offer-detail, .cat-room-detail) .mft-hero__content,
body:where(.cat-offer-detail, .cat-room-detail) .mft-breadcrumbs {
    display: none;
}

/* MEDIA */

body:where(.cat-offer-detail, .cat-room-detail) .mft-hero__visual {
    height: 500px;
}

/* RESPONSIVE */
/*
@media (max-width: 767px) {
    body:where(.cat-offer-detail, .cat-room-detail) .mft-hero__visual {
        height: 500px;
    }
}*/


/*********************************************************/
/* CMP EDITORIAL INTRO - hotel home */
/*********************************************************/

/* GALLERY CAROUSEL */

.cmp-editorial-intro__carousel img {
    aspect-ratio: 270 / 350;
}

/* GALLERY CAROUSEL OVERFLOW */

.mft-carousel-overflow-right :where(.swiper, .swiper-container) {
    overflow: visible;
}

/* IMAGE CAROUSEL OVERFLOW*/
.cmp-hotel-intro__carousel .swiper {
    overflow: visible;
}

/*********************************************************/
/* CMP INTRO - inner pages */
/*********************************************************/

/* BRAND LOGO */

.cmp-intro__brand img {
    height: 60px;
    object-fit: contain;
}

/* CONTACT ICON LIST */

@media (max-width: 767px) {
    .cmp-intro__meta .elementor-icon-list-items.elementor-inline-items {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--mft-space-4xs);
    }
}

/* EVENTS HERO ACTIONS */
/* adjustment only for laptop layouts to avoid CTA wrapping */

@media (min-width: 1025px) and (max-width: 1440px) {
    body.cat-events .mft-hero__actions {
        width: 33%;
    }
}

/*********************************************************/
/* CMP TILTED CAROUSEL - home hotel > rooms */
/*********************************************************/

/* SLIDER */

.cmp-tilted-carousel__slider .swiper {
    overflow: visible;
}

/* IMAGE */

.cmp-tilted-carousel__slider .elementor-widget-image .elementor-widget-container {
    aspect-ratio: 800 / 500;
}

.cmp-tilted-carousel__slider .elementor-widget-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* ipad pro + laptop navigation */

@media (min-width: 1024px) and (max-width: 1440px) {

    .cmp-tilted-carousel__slider .elementor-swiper-button-next {
        right: 20% !important;
        top: 40% !important;
    }

    .cmp-tilted-carousel__slider .elementor-swiper-button-prev {
        left: 20% !important;
        top: 40% !important;
    }

}

/*********************************************************/
/* MEDIA TEXT - IMAGES / VIDEO */
/*********************************************************/

/* MEDIA CONTAINER */
.cmp-media-text__media {
    position: relative;
}

/* PRIMARY IMAGE */

.cmp-media-text__img--primary {
    width: 75%;
}

.cmp-media-text__img--primary img {
    aspect-ratio: 500 / 570;
}

/* SECONDARY IMAGE / VIDEO */

.cmp-media-text__img--secondary,
.cmp-media-text__video--secondary.elementor-widget-video {
    position: absolute;
    bottom: -15%;
    right: 0;
    width: 48%;
    /*transform: translateY(20%);*/
}


.cmp-media-text__img--secondary img,
.cmp-media-text__video--secondary.elementor-widget-video .elementor-wrapper {
    aspect-ratio: 370 / 470;
}

/* VARIANT - REVERSED (DESKTOP + NON-TOUCH) */

@media (min-width: 1025px) and (hover: hover) and (pointer: fine) {
    .cmp-media-text--reversed .e-con-inner {
        flex-direction: row-reverse !important;
    }
}


/*********************************************************/
/* GRID COMPONENT - 2 columns */
/*********************************************************/

/* MEDIA */

.mft-grid__item img {}

.mft-grid__media {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.mft-grid__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*********************************************************/
/* CMP SERVICES LIST */
/*********************************************************/

@media (min-width: 768px) {
    .cmp-services-list.elementor-widget-icon-list .elementor-icon-list-items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cmp-services-list.elementor-widget-icon-list .elementor-icon-list-items {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }
}

/*********************************************************/
/* CMP FEATURED OFFERS */
/*********************************************************/

/* TEMP LIMIT */

.cmp-featured-offers .e-loop-item:nth-of-type(n + 4) {
    display: none;
}

/* IMAGE */

/* wrapper */
.cmp-featured-offers .elementor-widget-image .elementor-widget-container {
    aspect-ratio: 507 / 380;
}

/* image */
.cmp-featured-offers .elementor-widget-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/*********************************************************/
/* CMP EDITORIAL */
/*********************************************************/

/* MEDIA */

.cmp-editorial__media--primary {
    aspect-ratio: 3 / 4;
    width: 33%;
}

.cmp-editorial__video--primary .elementor-wrapper {
    aspect-ratio: 3 / 4;
    width: 33%;
}

.cmp-editorial__video--primary .elementor-widget-container {
    display: flex;
    justify-content: flex-end;
}

.cmp-editorial__media--secondary {
    aspect-ratio: 8 / 6;
}

@media (max-width: 767px) {
    .cmp-editorial__media--primary {
        width: 50%;
    }

    .cmp-editorial__video--primary .elementor-wrapper {
        aspect-ratio: 3 / 4;
        width: 50%;
    }

    .cmp-editorial__media--secondary {
        aspect-ratio: 1 / 1;
    }
}

/*********************************************************/
/* CMP MEDIA BLOCK */
/*********************************************************/

.cmp-media-block__media {
    aspect-ratio: 820 / 650;
}

@media (max-width: 767px) {
    .cmp-media-block__media {
        aspect-ratio: 1 / 1;
    }
}



/*********************************************************/
/* CMP SALONS CAROUSEL */
/*********************************************************/

/* CAROUSEL OFFSET */

.cmp-salons-carousel .swiper {
    overflow: visible;
}

.cmp-salons {
    clip-path: inset(0 0 0 calc((100vw - 1620px) / 2));
}

@media (min-width: 1024px) {
    .cmp-salons-carousel__media {
        aspect-ratio: 780 / 570;
    }

    /* SLIDE */
    .cmp-salons-carousel .swiper-slide {
        height: auto;
    }

    /* EQUAL HEIGHT CARD */
    .cmp-salons-carousel__card,
    .cmp-salons-carousel__content {
        height: 100%;
    }
}

/* MEDIA */

.cmp-salons-carousel__media {
    aspect-ratio: 780 / 570;
}

/* META */

.cmp-salons-carousel__meta .elementor-icon-list-items {
    justify-content: flex-start;
    column-gap: var(--mft-space-m);
    row-gap: var(--mft-space-4xs);
}

@media (max-width: 767px) {

    .cmp-salons-carousel__meta .elementor-icon-list-items {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: var(--mft-space-4xs);
    }
}

/* SALONS ROW */

@media (min-width: 1025px) and (hover: hover) and (pointer: fine) {
    .cmp-salons-carousel__row {
        display: grid;
        grid-template-columns: 25% 1fr 38%;
        align-items: center;
        column-gap: var(--mft-space-xs);
    }

}

/* SALONS LIST DIVIDERS - MOBILE */

@media (max-width: 767px) {

    /* ROW */
    .cmp-salons-carousel__list .cmp-salons-carousel__row {
        padding-top: var(--mft-space-xs);
    }

    /* DIVIDER */
    .cmp-salons-carousel__list .cmp-salons-carousel__row:not(:first-child) {
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }
}

/* CONTENT */
/*.cmp-salons-carousel__content {
    min-height: 700px;
}*/


/*********************************************************/
/* CMP MEDIA ACCORDION - TOGGLES */
/*********************************************************/

/* MEDIA */

.cmp-media-accordion__media {
    aspect-ratio: 6 / 8;
}

/* ICON expand/collapse */

.cmp-media-accordion__accordion .e-n-accordion-item-title-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 56px;
    height: 56px;

    padding: 16px;
    background: #fff;
    border-radius: 50%;
}

@media (max-width: 1024px) {
    .cmp-media-accordion__accordion .e-n-accordion-item-title-icon {
        width: 40px;
        height: 40px;

        padding: 8px;
    }
}

/*********************************************************/
/* MFT CONTACT HOTELS */
/*********************************************************/

/* HOTEL LOGOS */

.mft-contact-hotels__brand img {
    height: 100px;
    object-fit: contain;
}

.mft-contact-hotels__partners img {
    height: 80px;
    object-fit: contain;
}

/*PARTNERS LOGOS */

@media (max-width: 767px) {
    .mft-contact-hotels__partners img {
        width: 100px;
    }
}

/*********************************************************/
/* CMP FEATURES CAROUSEL */
/*********************************************************/

/* OFFSET RIGHT */

.cmp-features-carousel__carousel {
    width: 100vw;
    margin-left: calc((100% - var(--width-m)) / 2);
}


@media (max-width: 1440px) {
    .cmp-features-carousel__carousel {
        width: calc(100% + var(--mft-space-s));
        margin-left: 0;
    }

    .cmp-features-carousel__carousel .swiper-slide {
        width: 100% !important;
    }

}

/* MEDIA */

.cmp-features-carousel__media {
    aspect-ratio: 230 / 250;
}

/*********************************************************/
/* CMP CONTACT CAROUSEL - contact corpo page */
/*********************************************************/

.cmp-contact-carousel__carousel {
    width: 100vw;
    margin-left: calc((100% - var(--width-m)) / 2);
}

@media (max-width: 1440px) {
    .cmp-contact-carousel__carousel {
        width: calc(100% + var(--mft-space-s));
        margin-left: 0;
    }
}

/*********************************************************/
/* POPUP - RESTAURANTS BOOKING */
/*********************************************************/

/* VISIBILITY CONTROL PANEL PER RESTAURANT */

.cmp-booking-panel {
    display: none;
}

.cmp-booking-panel.is-active {
    display: block;
}


/*********************************************************/
/* BLOG */
/*********************************************************/

/* EXPERIENCIES POSTS */

body.cat-landing .cmp-post-card__media,
body.cat-landing .cmp-post-card__media--img,
.cat-corporate .cmp-post-card__media,
.cat-corporate .cmp-post-card__media--img {
    aspect-ratio: 1 / 1;
}

/*********************************************************/
/* TOOLTIP */
/*********************************************************/

/*
HTML EXAMPLE

<span
    class="cmp-tooltip"
    data-tooltip="Here is the tooltip text"
    tabindex="0">

    Here is visible text

</span>
*/

/*********************************************************/
/* TOOLTIP */
/*********************************************************/

/* BASE */
.cmp-tooltip {
    position: relative;
    cursor: help;
}

/* BUBBLE */
.cmp-tooltip::before {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 20px);
    z-index: 10;
    width: max-content;
    max-width: 280px;
    padding: 8px 16px;
    font-size: 12px;
    line-height: 1.3;
    color: #fff;
    background: #000;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(4px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
    pointer-events: none;
}

/* HOVER */
.cmp-tooltip:hover::before,
.cmp-tooltip:focus::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* UNDERLINE VARIANT */
.cmp-tooltip--underline {
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 4px;
}

/******************************************/
/* NOTE TEXT - icon list secondary text */
/******************************************/

span.text-note {
    display: block;
    margin-top: 4px;
    font-family: var(--e-global-typography-8035a56-font-family);
    font-size: var(--e-global-typography-8035a56-font-size);
    font-weight: var(--e-global-typography-8035a56-font-weight);
    line-height: 1.1 !important;
    /*opacity: 0.60;*/
    ;
    color: var(--e-global-color-52235058);

}

/*********************************************************/
/* HELPER CLASSES */
/*********************************************************/

/* NO WRAP ON BUTTON TEXT */
.nowrap-btn {
    white-space: nowrap;
}

.no-margin p:last-of-type,
.elementor-icon-box-content p:last-of-type {
    margin-bottom: 0 !important;
}

/* WORD BREAK */
.text-hyphens-auto {
    hyphens: auto;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* CONTENT PADDING */
.mft-content-padding {
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 1024px) {
    .mft-content-padding {
        padding-left: var(--mft-space-s);
        padding-right: var(--mft-space-s);
    }
}

@media (max-width: 767px) {
    .mft-content-padding {
        padding-left: var(--mft-space-xs);
        padding-right: var(--mft-space-xs);
    }
}

/* ICON VIDEO */

.icon-center-absolute {
    position: absolute;
    top: 53% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
}

/*********************************************************/
/* GLOBAL OVERFLOW CONTROL */
/*********************************************************/

html,
body {
    max-width: 100%;
    overflow-x: clip;
}

@supports not (overflow: clip) {

    html,
    body {
        overflow-x: hidden;
    }
}

/*********************************************************/
/* TEMPORARY FIXES */
/*********************************************************/

/* HIDE SALON 3D BUTTONS UNTIL ALL 3D VIEWS ARE READY */

.cmp-salons-carousel .elementor-widget-button {
    display: none;
}