/*Variables*/
:root {
    --fontPrimary:"Poppins", sans-serif;
    --colorPrimary:#006980;
    --colorSecondary:#FFA06A;
    --colorGray:#575656;
    --colorClearGray:#9D9D9C;
    --gradientDark:  linear-gradient(180deg, rgba(0, 0, 0, 0.12) 50%, rgba(0, 0, 0, 0.4) 100%);
    --heightVh: 62vh;
    --gradient:linear-gradient(180deg, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.4) 100%);
    --gradientClear:linear-gradient(180deg, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.25) 100%);
}
/*Estilos genéricos*/
.center{
    text-align: center !important;
}
.left{
    text-align: left !important;
}
.right{
    text-align: right !important;
}
.fLeft{
    float:left !important;
}
.fontPrimary{
    font-family: var(--fontPrimary) !important;
}
.fontSecondary{
    font-family: var(--fontSecondary) !important;
}
.colorPrimary{
    color:var(--colorPrimary) !important;
}
.colorSecondary{
    color:var(--colorSecondary) !important;
}
.colorGray{
    color:var(--colorGray) !important;
}
.colorClearGray{
    color:var(--colorClearGray) !important;
}
.bgClear{
    background:#E9F0F2;
}
.bgPrimary{
    background:var(--colorPrimary);
}
.no-gradient:before{
    content:none !important;
}
.white,.white strong, .white span{
    color:#fff !important;
}
a{
    text-decoration:none !important;
    color:var(--colorPrimary);
    cursor:pointer !important;
}
.underline{
    text-decoration:underline;
}
.white.underline{
    text-decoration-color:underline;
}
a:hover{
    cursor:pointer !important;
}
.img-responsive{
    max-width:100%;
    width:100%;
    height:auto;
    object-fit:cover;
}
.m0Auto{
    margin:0 auto !important;
}
.mTop20{
    margin-top: 20px !important;
}
.mTop30{
    margin-top:30px !important;
}
.mTop40{
    margin-top: 40px !important;
}
.mTop60{
    margin-top: 60px !important;
}
.mTop100{
    margin-top:100px !important;
}
.mTop120{
    margin-top: 8vh !important;
}
.mBT20{
    margin-bottom:20px !important;
}
.mBT40{
    margin-bottom: 40px !important;
}
.mBT60{
    margin-bottom: 60px !important;
}
.mBT120{
    margin-bottom: 8vh !important;
}
.paddTop40{
    padding-top: 40px !important;
}
.paddTop50{
    padding-top:50px !important;
}
.paddTop30{
    padding-top: 30px !important;
}
.paddTop20{
    padding-top: 20px !important;
}
.paddBT40{
    padding-bottom: 40px !important;
}
.paddTop60{
    padding-top: 75px !important;
}
.paddBT60{
    padding-bottom: 60px !important;
}
.intro .paddTop60{
    padding-top:85px !important;
}
.paddTop120{
    padding-top: 15vh !important;
}
.paddBT120{
    padding-bottom: 8vh !important;
}
.mLeft10{
    margin-left:10% !important;
}
.indent{
    margin-left:15px;
    font-size:16px;
}
.invertx{
    transform:scaleX(-1);
}
.fRegular{
    font-weight:400 !important;
}
.w50{
    width:50% !important;
}
.w60{
    width:60% !important;
}
.w70{
    width:70% !important;
}
.w80{
    width:80% !important;
}
.w90{
    width:92% !important;
}
.footer .w80{
    width:92% !important;
}
.hide{
    display:none !important;
}
.flex-start{
    align-items:flex-start !important;
}
.opbottom{
    object-position:bottom;
}
.optop{
    object-position:top;
}
.opright{
    object-position:right;
}
.opleft{
    object-position:left;
}
.opcenter{
    object-position:center;
}
.container, .container-fluid,.row{
    padding-left:0 !important;
    padding-right:0 !important;
}
.opac{
    opacity:0;
}

.textHero.mTop20{
   margin-top: 0 !important;
}
body .row{
    margin:0;
}
html{
     overflow-x:hidden;
}
/*Animaciones*/
.animationOpac{
    animation:animopac 1s forwards;
}
.animationOpac2{
    animation:animopac .3s forwards;
}
@keyframes animopac{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}
.animationLeft{
    animation:fadeinleft 1s forwards;
}
@keyframes fadeinleft{
    from{
        transform:translateX(-1000px);
    }
    to{
        transform: translateX(0);
    }
}
.animationRight{
    animation:fadeinright 1s forwards;
}
@keyframes fadeinright{
    from{
        transform:translateX(1000px);
    }
    to{
        transform: translateX(0);
    }
}
body{
    color:var(--colorGray);
    font-family:var(--fontPrimary);
    font-size:18px;
    font-weight:200;
    line-height:1.4em;
    position:relative;
}
p strong{
    font-weight:400;
}
#breadcrumb{
    display:none;
}
h1,h2,h3, .subH,.intro p.title{
    font-size:40px;
    font-weight:400;
    color:var(--colorGray);
    line-height:1.1em;
    margin-bottom:0;
}
.subH,h3{
     font-size:36px;
 }
p{
    margin-bottom:0;
}
/*Header*/
.header{
    position:absolute;
    top:10px;
    left:0;
    width:100vw;
    z-index:3;
    padding:20px 0 0 0;
}
.openMenu .header{
    z-index:4;
}
.editMode .header{
    position:relative !important;
}
.header.hfixed{
    position:fixed;
    top:0;
    position: fixed;
    padding: 5px 10px 8px 10px;
    background:rgba(255,255,255,.95);
    box-shadow: 1px 1px 15px rgba(0, 0, 0, .15);
}
.header.hfixed .call-center svg path{
    fill:var(--colorGray);
}
.header.hfixed .personLogin-content:before,.header.hfixed .mybooking-content:before,.header.hfixed .call-center .dropDownPhones>img,
.header.hfixed .icon-checkin{
    filter:none;
}
.header.hfixed .group-languages-texts .btn-secondary.open-selector-language,
.header.hfixed .group-languages-texts .btn-secondary.open-selector-language span:after{
    color:var(--colorGray);
}
.header.hfixed .top-menu>.col:first-child,.header.hfixed .top-menu>.col:last-child {
    width:50% !important;
}
.header.hfixed  .top-menu>.col:nth-child(2){
    display:none;
}
.header.hfixed .logo{
    display:none;
}
.header.hfixed .logofixed.d-none{
    display:block !important;
    margin-top:-8px;
}
.logofixed img{
    max-height:40px;
    width:auto;
}
.logo{
    max-width:200px;
    height:auto;
}
.top-menu{
    position:relative;
}
#toggleMenu{
    width:35px;
    height:35px;
    left:40px;
    position:absolute;
}
.header.hfixed #toggleMenu{
    top:20px;
}
#toggleMenu div{
    position: absolute;
    background: #fff;
    height: 5px;
    border-radius: 80px;
}
.openMenu #toggleMenu div{
    height:3px;
    background:var(--colorGray);
}
.header.hfixed #toggleMenu div{
    background:var(--colorGray);
}
#toggleMenu div:first-child{
    top:0;
    width:80%;
}
#toggleMenu div:nth-child(2){
    top:12px;
    width:100%;
}
#toggleMenu div:last-child{
    top:24px;
    width:60%;
}
.openMenu #toggleMenu{
    z-index:3;
}
.openMenu #toggleMenu div{
    width:100%;
}
.openMenu #toggleMenu div:first-child {
    transform: rotate(45deg);
    margin-top: 0;
    top:24px;
}
.openMenu #toggleMenu div:nth-child(2){
    display:none;
}
.openMenu #toggleMenu div:last-child {
    transform: rotate(-45deg);
}
.big-menu-flex{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}
.big-menu-flex>.row>.col{
    padding-left:0;
    padding-right:0;
}
.editMode .big-menu-flex{
    display:block !important;
    position:relative;
    height:auto;
}
.big-menu-flex>.row>.col>.htt-text-image{
    display:flex;
}
.big-menu-flex>.row>.col>.htt-text-image>div{
    height:100vh;
    width:50vw;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    background: #fff;
}
.editMode .big-menu-flex>.row>.col>.htt-text-image>div{
    height:auto;
}
.big-menu-flex .menuHoteles a{
    color: #9D9D9C;
    font-size: 36px;
    line-height: 1.5em;
    letter-spacing:1.44px;
    transition:.5s all;
}
.big-menu-flex .menuHoteles a:hover{
    color:var(--colorPrimary);
    font-weight:400;
}
.big-menu-flex .menuHoteles a:hover:before,.big-menu-flex .menuHoteles a:hover:after{
    content:"-";
}
#big-menu-images{
    padding:40px;
}
#big-menu-images img.img-responsive{
    height:100%;
    object-fit:cover;
}
.menuExt{
    margin-left:100px;
    display:flex;
}
.menuExt div, .menuExt span{
    color:#fff;
    cursor:pointer;
}
.menuExt span, .menuExt a{
    font-weight:400;
}
.menuExt>div{
    padding:0 20px;
    position:relative;
}
.menuExt>div:before{
    content:"\f111";
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    font-size: 4px;
    vertical-align: 5px;
    position:absolute;
    left:-2px;
}
.menuExt>div:first-child:before{
    content:none;
}
.menuExt .popMenu{
    position:absolute;
    left:0;
    width: max-content;
    max-width:60vw;
    border-radius: 30px;
    padding: 36px;
    background-color: #fff;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.menuExt .popMenu .close{
    position:absolute;
    right: 0;
    top: 0;
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight:400;
    color:var(--colorGray);
    padding:10px 15px;
}
.menuExt .flexMenu{
    display:flex;
    flex-wrap:wrap;
}
.menuExt .flexMenu>div{
    margin:8px;
    flex:1;
}
.menuExt #popExperiencias .flexMenu>div{
    flex:1 0 calc(25% - 16px);
}
.menuExt #popExperiencias .subTitlePop{
    margin-top:5px;
}
.menuExt .flexMenu .ver-hoteles{
    flex:1 0 100%;
}
.menuExt .flexMenu .ver-hoteles a{
    font-size:16px;
}
.menuExt .flexMenu .ver-hoteles a{
    transition:.3s all;
}
.menuExt .flexMenu .ver-hoteles i{
    margin-left:10px;
}
/*.menuExt #popExperiencias, .menuExt #popHoteles{
    background-image:url(/dam/multiHotel-Universal-Beach-Hotels/home/logo-menu-ext-universal.png);
    background-repeat:no-repeat;
}*/
.menuExt #popExperiencias{
    background-size: 12%;
    background-position: 92% 85%;
}
.menuExt #popHoteles{
    background-size: 35%;
    background-position: 10% 80%;
}
.menuExt .popMenu .imgMenu img{
    /*max-width:250px;*/
    height:180px;
    object-fit:cover;
}
.header.hfixed .menuExt div i{
    color:var(--colorGray);
}
.header.hfixed .menuExt span{
    display:none;
}
.header.hfixed .menuExt>div:before{
    content:none;
}
.header.hfixed .menuExt{
    margin-top:20px;
}
.popMenu p.titlePop{
    font-size:28px;
    font-weight:400;
    margin-bottom:10px;
}
.popMenu p.subTitlePop a{
    font-size:21px;
    font-weight:400;
}
.menuExt #popHoteles .subTitlePop{
    font-size:18px;
    font-weight:400;
}
.menuExt #popHoteles .list-menu-hoteles a{
    font-size:15px;
    font-weight:400;
    color:var(--colorGray);
}
.menuExt #popHoteles .list-menu-hoteles li{
    list-style-type:disc;
    color:var(--colorGray);
    font-size:12px;
}
.menuExt #popHoteles hr{
    background: #DADADA;
    height: 1px;
    opacity:1;
    margin:.5rem;
    border:none;
}
.popMenu p.textPop{
    font-size:18px;
    font-weight:200;
}
.header .accesos-header>.row{
    float:right;
    padding-right:50px !important;
    flex-wrap:nowrap;
}
.header .ic-header-right .accesos-header>.row>.col:first-child{
    min-width:220px;
}
.editMode .header .accesos-header>.row{
    /*float:none;*/
    flex-wrap:wrap;
}
.header.hfixed .accesos-header>.row{
    padding-right:230px !important;
    margin-top:20px;
}
html[lang=de] .header.hfixed .accesos-header>.row{
    padding-right:250px !important;
}
.accesos-header>.row>.col{
    flex:1 0 25%;
    padding:0 10px;
}
.ic-header-right .accesos-header>.row>.col{
    flex:1;
}
.mybooking-content-text, .person-login-text, span.bi-cart-fill, span.bi.bi-person-fill{
    display:none;
}
.person-login-text-logged{
    color:#fff;
}
.hfixed .person-login-text-logged{
    color:var(--colorGray);
}
.personLogin-content:before {
    content: url(/dam/multiHotel-Universal-Beach-Hotels/home/icons/icon-user.png);
}
.mybooking-content:before {
    content: url(/dam/multiHotel-Universal-Beach-Hotels/home/icons/icon-cart.png);
}
.personLogin-content:before, .mybooking-content:before,.header .call-center .dropDownPhones>img {
    position: relative;
    filter:brightness(0) invert(1);
}
.group-languages-texts{
    margin-top:2px;
}
.group-languages-texts .btn-secondary.open-selector-language {
    background: transparent;
    border: 0;
    color:#fff;
    font-family:var(--fontPrimary);
    position:relative;
    font-style: normal;
    font-weight: 500;
    padding:0 0 7px 0;
}
.dropdown-menu.options-selector-language{
    margin:0;
    padding:0;
}
.open-selector-language span{
    position:relative;
}
.open-selector-language span:after{
   position: absolute;
    top: 6px;
    right: -10px;
    font-size: 8px;
    content: "\f078";
    font-family: 'FontAwesome';
    color: #fff;
}
#toggleMenu, .call-center{
    cursor:pointer;
}
.header .call-center svg path{
    margin-top:3px;
    fill:#fff;
}
.grid-dropDownPhones{
    position:relative;
}
.dropDownPhones>img, .icon-checkin img{
    width:32px !important;
    height:32px !important;
}
.dropDown-menu-box {
    position: absolute;
    min-width: 450px;
    right: -25% !important;
    left: auto;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.2);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    visibility: hidden;
    opacity: 0;
    margin-top: 5px;
    padding:36px;
    border-radius:30px;
}
.dropDown--active .dropDown-menu-box{
    visibility: visible;
    opacity: 1;
}
.dropDown-menu-box p, .dropDown-menu-box span{
    font-size:16px;
}
.dropDown-menu-box .cuadroTelf{
    display: flex;
    justify-content: space-between;
    align-items:center;
    flex-wrap:wrap;
}
.dropDown-menu-box .call-box {
    width:100%;
}
.dropDown-menu-box .call-box .button-transparent.button-primary{
    width:100%;
    background:var(--colorPrimary);
    color:#fff;
}
.button-transparent.button-primary.white{
    border:1px solid #fff;
}
.button-transparent.button-primary.white:hover{
    background:#fff;
    color:var(--colorPrimary) !important;
}
.dropDown-menu-box .cuadroTelf .pull-left img,
.dropDown-menu-box .cuadroTelf .pull-left i{
    margin-right:5px;
}
.dropDown-menu-box .button-transparent{
    padding:8px 16px;
}
.dropDown-menu-box .button-transparent:hover{
    color:#fff;
}
.dropDown-menu-box .phoneCallMe{
    border-radius:30px;
    margin:5px 0;
}
/*Cabecera y motor*/
.cabecera-motor{
    position:relative;
}
.cabecera-motor>.container-fluid>.row>.col{
    padding:0;
}
.cabecera-motor video, .container-hero picture img.img-responsive{
    width:100%;
    height:100vh;
    object-fit:cover;
}
.container-hero{
    position:relative;
}
.container-hero .button-transparent{
    width:fit-content;
}
.container-hero .button-transparent{
    margin-right:8%;
}
.container-hero .buttonsOffer{
    display:flex;
    align-items:center;
}
.container-hero img.img-responsive{
    height:100vh;
}
.container-hero:before{
    content:"";
    position:absolute;
    width:100%;
    height:100vh;
    top:0;
    left:0;
    z-index:2;
    background: var(--gradient);
}
.container-hero.container-hero-dark:before{
    content:none;
}
.container-hero.container-hero-dark img.img-responsive{
    filter:brightness(.85);
}
.containerTxtSlide{
    position:absolute;
    width:90%;
    top:35%;
    left:5%;
    z-index:2;
}
.containerTxtSlide>.w60{
    width:75% !important;
}
/*.container-hero .playVideo{
    position:absolute;
    right:10%;
    bottom:30px;
    z-index:3;
}*/
.container-hero .scroll-hero{
    cursor:pointer;
}
.titleHero{
    font-size:60px;
    font-weight:400;
    line-height:64px;
}
.containerTxtSlide p.subTitleHero, h1.subTitleHero{
    font-size:20px;
    text-transform:uppercase;
    font-weight:200;
    letter-spacing:3px;
}
.containerTxtSlide p.textHero{
    font-size:21px;
    font-weight:200;
    line-height:1.3em;
}
.scroll-hero{
    position: absolute;
    bottom: 10px;
    z-index: 2;
    width: 100%;
}
.scroll-hero i{
    font-size:24px;
}
.grid-motor{
    position:absolute;
    bottom:20px;
    width:100%;
    z-index:2;
}
.topfixed .grid-motor{
    z-index:4;
}
.topfixed #buttonShowSearcherScroll{
    top:2px;
    right:0;
}
#buttonShowSearcherScroll{
    font-family: var(--fontPrimary) !important;
    text-transform: capitalize !important;
    color: var(--colorPrimary) !important;
    background-color: #fff !important;
    padding: 20px 40px !important;
    border: 1px solid var(--colorPrimary) !important;
    border-radius: 50px !important;
    transform:scale(.6);
    font-weight: 500;
    animation: ripple 1s linear infinite;
    transition: all 0.7s ease !important;
    box-shadow: 0 0 0 2px rgba(0,105,128, 0.1),
    0 0 0 1px var(--colorPrimary, 0.1),        
    0 0 0 5px rgba(0,105,128, 0.1),        
    0 0 0 8px rgba(0,105,128, 0.1);
}
#buttonShowSearcherScroll:hover{
    background-color:var(--colorPrimary) !important;
    color:#fff !important;
    transform: scale(.65);
}
@keyframes ripple {
    0% {
        box-shadow: 0 0 0 2px rgba(0,105,128, 0.1),
        0 0 0 1px var(--colorPrimary, 0.1),
        0 0 0 5px rgba(0,105,128, 0.1),
        0 0 0 8px rgba(0,105,128, 0.1);
    }
    50% {
        box-shadow: 0 0 0 2px rgba(0,105,128, 0.1),
        0 0 0 2px var(--colorPrimary, 0.1),
        0 0 0 9px rgba(0,105,128, 0.1),
        0 0 0 12px rgba(0,105,128, 0.1);
    }
    100%{
        box-shadow: 0 0 0 2px rgba(0,105,128, 0.1),
        0 0 0 1px var(--colorPrimary, 0.1),
        0 0 0 7px rgba(0,105,128, 0.1),
        0 0 0 9px rgba(0,105,128, 0.1);
    }
}

#app-container{
    padding:0 !important;
}

#app-container>div#no_agent{
    padding:0 !important;
}
#app-container>div.bRadiusTop{
    border-bottom-left-radius:0;
    border-bottom-right-radius:0;
}
#app-container>div>div{
    box-shadow:none !important;
}
/*#search-button-selector{
    border-radius:80px !important;
}*/
#search-button-selector.bRadius0{
    border-radius:0 !important;
}
div.MuiButtonGroup-contained{
    box-shadow:none;
}
#app-container .MuiGrid-root.MuiGrid-item.css-1wxaqej:last-child{
    display:flex;
    align-items:center;
}
/*Popup news*/
.news:not(.editMode .news){
    position: fixed;
    right: 0;
    margin: 20px;
    bottom: 14%;
    z-index: 4;
    width: 80px;
    height: 80px;
    background: var(--colorPrimary);
    border-radius: 50%;
    display:none;
}
/*Home*/
/*Swiper hoteles*/
.swiper-button-lock{
    display:flex !important;
}
.grid-swiper-hoteles{
    margin-left:8%;
}
.grid-swiper-hoteles.paddTop60{
    padding-top:20px !important;
}
.grid-swiper-hoteles.grid-swiper-hoteles-destinos{
    margin-left:5%;
}
.grid-swiper-hoteles.grid-swiper-hoteles-destinos .swiper-libreria-v3-button-right .htt-swiper-button-prev-wrapper{
    right:calc(5% + 80px);
}
.grid-swiper-hoteles.grid-swiper-hoteles-destinos .swiper-libreria-v3-button-right .htt-swiper-button-next-wrapper{
    right:calc(5% + 20px);
}
.editMode .grid-swiper-hoteles{
    margin-left:0;
}
.swiper-container .swiper-pagination,.swiper-container  .swiper-button-next, .swiper-container  .swiper-button-prev{
    z-index:2 !important;
}
.swiper-libreria-v3-button-right{
    margin:0 auto !important;
    padding-top:80px !important;
}
.swiper-libreria-v3-button-right .swiper-pagination{
    display:none !important;
}
.swiper-libreria-v3-button-right .swiper-slide{
    border-radius:30px !important;
}
.swiper-libreria-v3-button-right .htt-swiper-button-prev-wrapper, .swiper-libreria-v3-button-right .htt-swiper-button-next-wrapper{
    border:1px solid var(--colorPrimary);
}
.swiper-libreria-v3-button-right .swiper-button-next, .swiper-libreria-v3-button-right .swiper-button-prev{
    color:var(--colorPrimary) !important;
}
.swiper-libreria-v3-button-right .card-hotel img.img-responsive,
.swiper-libreria-v3-button-right .card-hotel video{
    height:calc(var(--heightVh) - 8vh);
}
.swiper-libreria-v3-button-right .card-hotel video{
    width:100%;
    object-fit:cover;
    vertical-align:middle;
}
.exp-senderismo .swiper-libreria-v3-button-right .card-hotel img.img-responsive,
.exp-spa .swiper-libreria-v3-button-right .card-hotel img.img-responsive,
.exp-senderismo .swiper-libreria-v3-button-right .card-hotel  video,
.exp-spa .swiper-libreria-v3-button-right .card-hotel video{
    height:var(--heightVh);
}
.swiper-side-transparent .swiper-button-prev,
.swiper-side-transparent .swiper-button-next,
.swiper-general-1-column .swiper-button-prev,
.swiper-general-1-column .swiper-button-next,
.swiper-navigation-bottom-right .swiper-button-prev,
.swiper-navigation-bottom-right .swiper-button-next,
.swiper-libreria-v3-button-right .swiper-button-prev,
.swiper-libreria-v3-button-right .swiper-button-next{
    width:100% !important;
    height:100% !important;
    top:0 !important;
    margin-top:0 !important;
}

/*Hoteles swiper tabs destino*/
.tabsDestino .grid-swiper-hoteles .swiper-slide{
    display:none;
}
.tabsDestino .grid-swiper-hoteles.sant-elm .swiper-slide:has(#card-aquamarin),
.tabsDestino .grid-swiper-hoteles.sant-elm .swiper-slide:has(#card-aquamarin-beach-houses),
.tabsDestino .grid-swiper-hoteles.sant-elm .swiper-slide:has(#card-don-camilo){
    display:block;
}
.tabsDestino .grid-swiper-hoteles.peguera .swiper-slide:has(#card-lido){
    display:block;
}
.tabsDestino .grid-swiper-hoteles.formentera .swiper-slide:has(#card-mar-suites){
    display:block;
}
.tabsDestino .grid-swiper-hoteles.magaluf .swiper-slide:has(#card-florida){
    display:block;
}
.tabsDestino .grid-swiper-hoteles.playa-palma .swiper-slide:has(#card-neptuno){
    display:block;
}
.tabsDestino .grid-swiper-hoteles.colonia-sant-jordi .swiper-slide:has(#card-romantica),
.tabsDestino .grid-swiper-hoteles.colonia-sant-jordi .swiper-slide:has(#card-marques),
.tabsDestino .grid-swiper-hoteles.colonia-sant-jordi .swiper-slide:has(#card-cabo-blanco),
.tabsDestino .grid-swiper-hoteles.colonia-sant-jordi .swiper-slide:has(#card-grand-leon),
.tabsDestino .grid-swiper-hoteles.colonia-sant-jordi .swiper-slide:has(#card-casa-marquesa){
    display:block;
}
.tabsDestino .grid-swiper-hoteles.sillot .swiper-slide:has(#card-perla){
    display:block;
}
.tabsDestino .grid-swiper-hoteles.cala-millor .swiper-slide:has(#card-bikini){
    display:block;
}
.tabsDestino .grid-swiper-hoteles.canyamel .swiper-slide:has(#card-laguna),
.tabsDestino .grid-swiper-hoteles.canyamel .swiper-slide:has(#card-castell-royal),
.tabsDestino .grid-swiper-hoteles.canyamel .swiper-slide:has(#card-laguna-garden){
    display:block;
}
.tabsDestino .grid-swiper-hoteles.playa-muro .swiper-slide:has(#card-elisa){
    display:block;
}
/*Fin hoteles swiper tabs destino*/
/*Hoteles swiper experiencias*/
.grid-swiper-hoteles.exp .swiper-slide{
    display:none;
}
.grid-swiper-hoteles.exp-todo-incluido .swiper-slide:has(#card-perla),
.grid-swiper-hoteles.exp-todo-incluido .swiper-slide:has(#card-romantica),
.grid-swiper-hoteles.exp-todo-incluido .swiper-slide:has(#card-castell-royal){
    display:block;
}
.grid-swiper-hoteles.exp-adults-only .swiper-slide:has(#card-neptuno),
.grid-swiper-hoteles.exp-adults-only .swiper-slide:has(#card-florida),
.grid-swiper-hoteles.exp-adults-only .swiper-slide:has(#card-cabo-blanco){
    display:block;
}
.grid-swiper-hoteles.exp-familias .swiper-slide:has(#card-elisa),
.grid-swiper-hoteles.exp-familias .swiper-slide:has(#card-bikini),
.grid-swiper-hoteles.exp-familias .swiper-slide:has(#card-lido),
.grid-swiper-hoteles.exp-familias .swiper-slide:has(#card-don-camilo),
.grid-swiper-hoteles.exp-familias .swiper-slide:has(#card-romantica),
.grid-swiper-hoteles.exp-familias .swiper-slide:has(#card-laguna),
.grid-swiper-hoteles.exp-familias .swiper-slide:has(#card-aquamarin-beach-houses),
.grid-swiper-hoteles.exp-familias .swiper-slide:has(#card-laguna-garden){
    display:block;
}
.grid-swiper-hoteles.exp-golf .swiper-slide:has(#card-grand-leon),
.grid-swiper-hoteles.exp-golf .swiper-slide:has(#card-aquamarin),
.grid-swiper-hoteles.exp-golf .swiper-slide:has(#card-neptuno),
.grid-swiper-hoteles.exp-golf .swiper-slide:has(#card-castell-royal),
.grid-swiper-hoteles.exp-golf .swiper-slide:has(#card-lido),
.grid-swiper-hoteles.exp-golf .swiper-slide:has(#card-perla),
.grid-swiper-hoteles.exp-golf .swiper-slide:has(#card-laguna){
    display:block;
}
.grid-swiper-hoteles.exp-fitness .swiper-slide:has(#card-grand-leon),
.grid-swiper-hoteles.exp-fitness .swiper-slide:has(#card-aquamarin),
.grid-swiper-hoteles.exp-fitness .swiper-slide:has(#card-neptuno),
.grid-swiper-hoteles.exp-fitness .swiper-slide:has(#card-cabo-blanco),
.grid-swiper-hoteles.exp-fitness .swiper-slide:has(#card-marques),
.grid-swiper-hoteles.exp-fitness .swiper-slide:has(#card-florida),
.grid-swiper-hoteles.exp-fitness .swiper-slide:has(#card-lido),
.grid-swiper-hoteles.exp-fitness .swiper-slide:has(#card-mar-suites){
    display:block;
}
.grid-swiper-hoteles.exp.exp-senderismo .swiper-slide{
    display:block;
}
.grid-swiper-hoteles.exp-senderismo .swiper-slide:has(#card-mar-suites){
    display:none;
}
.grid-swiper-hoteles.exp-spa .swiper-slide:has(#card-aquamarin),
.grid-swiper-hoteles.exp-spa .swiper-slide:has(#card-lido),
.grid-swiper-hoteles.exp-spa .swiper-slide:has(#card-grand-leon){
    display:block;
}
.grid-swiper-hoteles.exp-beach-club .swiper-slide:has(#card-aquamarin),
.grid-swiper-hoteles.exp-beach-club .swiper-slide:has(#card-grand-leon){
    display:block;
}
/*.grid-swiper-hoteles .swiper-libreria-v3-button-right .card-hotel img.img-responsive{
    min-height:var(--heightVh);
}*/
/*Fin hoteles swiper experiencias*/
.card-hotel{
    position:relative;
    height:100%;
}
.card-hotel img.img-responsive{
    height:100%;
}
.wrapper-card-hotel{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:linear-gradient(180deg, rgba(0, 0, 0, 0.09) 80%, rgba(0, 0, 0, 0.3) 100%);;
    z-index: 2;
    display: flex;
    /*flex-direction: column;*/
    justify-content: space-between;
    padding:20px;
}
.card-hotel a{
    color:#fff;
}
.card-hotel a.price_from{
    font-size:28px;
    font-weight:400;
}
.card-hotel h3{
    font-size:24px;
}
.card-hotel .subTitle, .card-hotel p.stars, p.stars{
    font-size:14px;
}
.card-hotel p.stars{
     margin:5px 0;
 }
.card-hotel p.place{
    font-size:16px;
}
.card-hotel .top-card-hotel{
    display: flex;
    flex-direction:column;
    order: 2;
}
.card-hotel .bottom-card-hotel p:last-child{
    position: absolute;
    bottom: 20px;
    width: 90%;
    left: 5%;
}
.oferta-home, .experiencia-home, .oferta-detalle{
    position:relative;
}
.oferta-home .img-oferta img.img-responsive, .valor-home .img-valores img.img-responsive{
    height:calc(var(--heightVh) + 2vh);
    object-fit:cover;
}
.oferta-home .button-transparent{
    margin-bottom:20px;
}
.oferta-home .text-oferta, .experiencia-home .text-experiencia,
.valores-home .text-valores, .oferta-detalle .text-oferta{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: var(--gradient);
    background-blend-mode: darken, normal;
    padding:80px 60px 60px 60px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    align-items:center;
}
.experiencia-home.experiencia-home-hotel .text-experiencia{
    background: var(--gradientDark);
}
.experiencia-home .text-experiencia, .experiencia-home video, .experiencia-home img.img-responsive{
    border-radius:30px;
}
.oferta-home .subTitle{
    font-weight:400;
    font-size:28px;
    text-transform:uppercase;
}
p.subTitleSmall, span.subTitleSmall{
    font-size:18px;
    font-weight:300;
}
.oferta-home .title{
    font-size:28px;
    font-weight:400;
}
.oferta-home .descuento{
    font-size:40px;
    font-weight:400;
}
.oferta-home p:not(.oferta-home p.mTop30){
    line-height:36px;
}
.subTitle{
    text-transform:uppercase;
}
.verMas,.button-transparent{
    min-width:300px;
    padding:12px 40px;
    border-radius:50px;
    font-size:20px;
    font-weight:400;
    transition:.5s all;
}
.verMas.verMasWhite{
    background:#fff;
    color:var(--colorPrimary);
}
.verMas.verMasWhite:hover,.button-transparent:hover{
    background:var(--colorPrimary);
    color:#fff;
}
.button-transparent.button-primary, .ver-hoteles .button-primary{
    border: 1px solid var(--colorPrimary);
    color: var(--colorPrimary);
    float: right;
    font-size:18px;
}
.button-primary:hover{
    color:#fff;
}
.button-transparent.buttonPlay{
    padding: 6px 24px 6px 4px !important;
    margin-right:0;
    cursor:pointer;
    width:fit-content;
    background: rgba(255, 255, 255, .3);
    font-size:20px;
}
.button-transparent.buttonPlay.buttonStop{
    padding: 6px 4px 6px 24px !important;
}
.button-transparent.button-gray{
    border:1px solid var(--colorGray);
    display:inline-block;
}
.button-transparent.button-gray:hover{
    color:#fff !important;
    border:1px solid var(--colorPrimary);
}
.checkin-header a.button-transparent{
    /*max-width: fit-content;
    float: right;*/
    padding: 4px 20px;
    margin-top: -2px;
    /*margin-right:-50px;*/
    font-size:16px;
}
.header.hfixed .checkin-header a.button-transparent{
    color:var(--colorGray);
    border-color:var(--colorGray);
}
.header.hfixed .checkin-header a.button-transparent:hover{
    color:#fff !important;
    border-color:#fff !important;
}
.icon-checkin{
    display:none;
    filter:brightness(0) invert(1);
}
/*.hfixed .ic-header-right>.row>div:has(.checkin-header){
    display:none;
}
.editMode .hfixed .ic-header-right>.row>div:has(.checkin-header){
    display:block;
}
.hfixed .ic-header-right>.row>div:last-child{
    width:100% !important;
}*/
.bottom-text-experiencia .button-transparent.buttonPlay{
    margin-right:40px;
    position:absolute;
    left:10%;
}
.ofertas-home>.row>.col, .experiencias-home>.container-fluid>.row>.col{
    padding:0;
}

.experiencias-home>.container-fluid>.row>.col{
    flex:1 0 100%;
}
.oferta-home .vertical-line{
    height: 150px;
    border-left: 2px solid #fff;
    margin-bottom: 15px;
    margin-left:-1px;
}
.experiencia-home .img-experiencia img.img-responsive, .experiencia-home .img-experiencia video{
    height:calc(90vh - 75px);
    object-fit:cover;
    margin:75px 0;
}
.experiencia-home .img-experiencia video{
    width:100%;
}
.experiencia-home .text-experiencia{
    background: var(--gradient);
    justify-content:space-between;
    height:calc(90vh - 75px);
    margin:75px 0;
}
.experiencia-home .text-experiencia .descripcion{
    font-size:21px;
    line-height:26px;
}
.experiencia-home .bottom-text-experiencia{
    width:100%;
    display:flex;
    justify-content:center;
}
/* Background images for each tab */
.tabs-hoteles-home #container-tab1 {
    background-image: url('/dam/multiHotel-Universal-Beach-Hotels/home/experiencias/experiencia-spa-universal-beach-hotels.jpg');
}

.tabs-hoteles-home #container-tab2 {
    background-image: url('/dam/multiHotel-Universal-Beach-Hotels/home/experiencias/experiencia-deportes-universal-beach-hotels.jpg');
}

.tabs-hoteles-home #container-tab3 {
    background-image: url('/dam/multiHotel-Universal-Beach-Hotels/home/experiencias/experiencia-solo-adultos-universal-beach-hotels.jpg');
}

.tabs-hoteles-home #container-tab4 {
    background-image: url('/dam/multiHotel-Universal-Beach-Hotels/home/experiencias/experiencia-grupos-eventos-universal-beach-hotels.jpg');
}

.tabs-hoteles-home #container-tab5 {
    background-image: url('/dam/multiHotel-Universal-Beach-Hotels/home/experiencias/experiencia-gastronomia-universal-beach-hotels.jpg');
}

/*.tabs-hoteles-home #container-tab6 {
    background-image: url('/dam/multiHotel-Universal-Beach-Hotels/home/ofertas/oferta1-universal-beach-hotels.jpg');
}*/
.tabs-hoteles-home #container-tab7 {
    background-image: url('/dam/multiHotel-Universal-Beach-Hotels/home/experiencias/experiencia-familias-ninos-universal-beach-hotels.jpg');
}
.tabs-hoteles-home #container-tab8 {
    background-image: url('/dam/multiHotel-Universal-Beach-Hotels/home/experiencias/experiencia-todo-incluido-universal-beach-hotels.jpg');
}

.experiencia-home .top-text-experiencia h2.title{
    font-size:60px;
}
.fa-play, .fa-stop{
    width: 30px;
    height: 30px;
    background: var(--colorSecondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right:10px;
}
.fa-play:before, .fa-stop:before{
    font-size:16px;
}
.fa-stop{
    margin-right:0;
    margin-left:10px;
}
.button-transparent{
    min-width:auto;
    color:#fff;
    border:1px solid #fff;
    display:flex;
    justify-content:center;
    align-items:center;
}
.tabs-hoteles-home{
    margin-top:-10px;
}
.tabs-hoteles-home a.button-transparent{
    background:transparent;
    width:fit-content;
    margin:0 auto;
}
.tabs-hoteles-home .col{
    padding-left:0;
    padding-right:0;
}
.valor-home{
    position:relative;
}
.valores-home .text-valores{
   background: var(--gradient);
}
.valores-home h3{
    font-size:48px;
    line-height:1.2em;
}
.valores-home>.container-fluid.paddTop40>.row>.col{
    padding:0;
}
.titleIconFlex{
    display:flex;
}
.titleIconFlex img{
    margin-right:20px;
}
.gridInstagram>.row{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-gap: 20px;
}
.gridInstagram>.row .w-100{
    display:none;
}
.gridInstagram>.row>.col:first-child{
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
}
.gridInstagram>.row>.col{
    padding:0;
}
.gridInstagram>.row>.col img.img-responsive{
    height:calc(38vh - 10px);   
    object-fit:cover;
}
.gridInstagram>.row>.col:first-child img.img-responsive{
    height:76vh;
}
.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
}
/*Footer*/
.footer{
    background-color:var(--colorPrimary);
    background-image: url(/dam/multiHotel-Universal-Beach-Hotels/home/vector-footer-50.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 10%;
}
.footer .hoteles-footer ul {
    margin-bottom:0;
}
.footer .hoteles-footer ul li, .redes-footer i{
    color:#fff;
    line-height:normal;
    transition:.3s all;
}
.redes-footer i:hover{
    transform:scale(.9);
}
p.zona{
    font-weight:400;
}
.footer p, .footer a{
    font-size:16px;
}
.footer p.title{
    font-size:24px;
    font-weight:600;
    line-height:30px;
}
.footer .hoteles-footer>.row>.col:first-child{
    padding-right:43px;
}
.footer .gridCopy{
    align-items:center;
}
.redes-footer{
    display:flex;
}
.redes-footer a{
    margin-right:15px;
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.redes-footer i{
    font-size:21px;
}
.legal-footer{
    border-top:1px solid rgba(255,255,255,.3);
}
.legal-footer a{
    position:relative;
    padding:0 6px;
}
.legal-footer a:before {
    content: "\f111";
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    font-size: 3px;
    vertical-align: 5px;
    position: absolute;
    left: -3px;
}
.legal-footer a:first-child:before{
    content:none;
}
/*Popup Newsletter*/
form#news{
    max-width: 450px;
    border-radius: 30px;
    padding:30px;
}
form#news p.title{
    font-size: 28px;
    font-weight: 400;
    color: var(--colorPrimary);
}
form#news input[type=text]{
    width:100%;
    border-radius:25px;
    border-color:rgba(0,0,0,.12);
    height:35px;
}
form#news p{
    font-size:16px;
    line-height:normal;
}
 form#news label, form#news p.info-privacy{
    font-size:14px;
    line-height:normal;
    line-height:1.1em;
 }
form#news button[type=submit]{
    width:100%;
}
form#news .fancybox-slide--html .fancybox-close-small{
    right: 10px;
    top: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 50%;
}
form#news ::placeholder{
    color:#C4C4C4;
    font-size:16px;
    font-weight:400;
}
form#news div.checkBtnForm{
    margin-bottom:5px;
    display:flex;
    align-items:flex-start;
}
form#news div.checkBtnForm input{
    margin-right:4px;
}
.box-news-footer{
    background-color: rgba(255, 255, 255, .2);
    border-radius: 65px;
    padding: 30px;
    margin-top: 100px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid #eedfcc;
    background-image:url(/dam/multiHotel-Universal-Beach-Hotels/home/bg-isotipo-universal.png);
    background-size:4.8%;
}
.box-news-footer .mTop40{
    margin-top:0 !important;
}
.box-news-footer p{
    line-height:normal;
    font-size:20px;
    font-weight:500;
}
.box-news-footer a{
    cursor:pointer;
    padding: 15px 40px;
    background: var(--colorPrimary);
    border-radius: 50px;
    font-size: 20px;
    font-weight: 500;
    max-width: 350px;
    margin: 0 auto;
    display: block;
    width: 100%;
}
/*Landing gastronomía*/
.restaurantes .restaurante{
    position:relative;
}
.restaurantes .restaurante img.img-responsive{
    border-radius: 30px;
    height:calc(var(--heightVh) + 7vh);
    object-fit:cover;
}
.restaurantes .restaurante .logo-restaurante{
    max-width:250px;
    height:auto;
    position:absolute;
    bottom:45%;
}
.restaurantes .restaurante .textRestaurante{
    position:absolute;
    content:"";
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:2;
    background: var(--gradient);
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    align-items:center;
    border-radius:30px;
    padding:45px;
}
restaurantes .restaurante .textRestaurante img{
    max-width:280px;
    height:auto;
}
/*.swiper-general-1-column .swiper-slide:before{
    position:absolute;
    content:"";
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: var(--gradient);
    z-index:2;
}*/
.swiper-general-1-column .swiper-slide img.img-responsive{
    height:var(--heightVh);
}

.swiper-side-transparent .swiper-slide img.img-responsive {
    height:var(--heightVh);
}
.swiper-side-transparent .swiper-slide-content-text{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px;
    z-index: 3;
}
.swiper-side-transparent h3, .swiper-side-transparent p.titleSwiper{
    font-size:21px;
    font-weight:400;
}
.swiper-side-transparent .swiper-slide-content-text button {
    background-color: white;
    color: #1485ba;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 25px;
}
.swiper-side-transparent .swiper-slide-prev,
.swiper-side-transparent .swiper-slide-next {
    opacity: 0.8;
}
.swiper-side-transparent .swiper-slide>div{
    position:relative;
    width:100%;
}
/*.swiper-side-transparent .swiper-slide>div:before{
    background: var(--gradient);
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    content:"";
    z-index:2;
}
*/

.swiper-side-transparent .htt-swiper-button-prev-wrapper,
.swiper-side-transparent .htt-swiper-button-next-wrapper,
.swiper-general-1-column .htt-swiper-button-prev-wrapper,
.swiper-general-1-column .htt-swiper-button-next-wrapper,
.swiper-navigation-bottom-right .htt-swiper-button-prev-wrapper,
.swiper-navigation-bottom-right .htt-swiper-button-next-wrapper,
.swiper-libreria-v3-button-right .htt-swiper-button-prev-wrapper,
.swiper-libreria-v3-button-right .htt-swiper-button-next-wrapper{
    background-color: #fff;
    border-radius: 100%;
    position: absolute;
    bottom:30px;
    margin-top: calc(0px -(var(--swiper-navigation-size) / 2));
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.swiper-pagination-bullet,
.swiper-pagination-bullet-active{
    background-color: white !important;
}
/*.swiper-side-transparent .swiper-slide {
    display: flex !important;
}*/
.swiper-side-transparent .swiper-button-prev,
.swiper-side-transparent .swiper-button-next,
.swiper-general-1-column .swiper-button-prev,
.swiper-general-1-column .swiper-button-next,
.swiper-navigation-bottom-right .swiper-button-prev,
.swiper-navigation-bottom-right .swiper-button-next{
    color:var(--colorGray) !important;
}
.swiper-side-transparent .swiper-button-prev,
.swiper-side-transparent .swiper-button-next,
.swiper-general-1-column .swiper-button-prev,
.swiper-general-1-column .swiper-button-next,
.swiper-navigation-bottom-right .swiper-button-prev,
.swiper-navigation-bottom-right .swiper-button-next,
.swiper-libreria-v3-button-right .swiper-button-prev,
.swiper-libreria-v3-button-right .swiper-button-next{
    left:auto !important;
    right:auto !important;
    --swiper-navigation-size: 15px;
}
.htt-swiper-button-prev-wrapper,
.htt-swiper-button-next-wrapper {
    border-radius:50%;
    width:40px !important;
    height:40px !important;
}
/*Landing eventos*/
a.btnBook{
    min-width:300px;
    padding:12px 48px;
    font-size:16px;
    font-size:16px;
    border-radius: 50px;
    border: 1px solid var(--colorPrimary);
    font-weight:400;
    transition:.3s all;
    cursor:pointer;
}
a.btnBook:hover{
    background:var(--colorPrimary);
    color:#fff !important;
}
a.btnBook img{
    margin-right:7px;
    max-width:24px;
    height:auto;
}
a.btnBook:hover img, a.btnBook.button-primary img{
    filter:brightness(0) invert(1);
}
a.btnBook.button-primary{
    background:var(--colorPrimary);
    color:#fff;
}
a.btnBook.button-primary:hover{
    background:transparent;
    color:var(--colorPrimary) !important;
}
a.btnBook.button-primary:hover img{
    filter:none;
}
.swiper-navigation-bottom-right .swiper-button-prev,
.swiper-navigation-bottom-right .swiper-button-next{
    color: var(--colorPrimary) !important;
}
.swiper-navigation-bottom-right .htt-swiper-button-prev-wrapper,
.swiper-navigation-bottom-right .htt-swiper-button-next-wrapper{
    border:1px solid var(--colorPrimary);
    background:transparent;
}
.swiper-navigation-bottom-right .swiper-button-prev,
.swiper-navigation-bottom-right .swiper-button-next{
    border-radius: 50%;
    --swiper-navigation-size: 17px;
}
.swiper-navigation-bottom-right .button-transparent:hover{
    color:#fff;
}
.exp-eventos .swiper-side-transparent .swiper-slide img.img-responsive {
    height:calc(var(--heightVh) - 5vh);
}
.grid-instalaciones .swiper-general-1-column .swiper-slide img.img-responsive,
.grid-servicios .swiper-general-1-column .swiper-slide img.img-responsive{
    height:45vh;
}
.tabsEventos .swiper-navigation-bottom-right .swiper-slide img.img-responsive{
    height:calc(var(--heightVh) - 10vh);
}

/*Formulario*/
.form-row{
    display: flex;
    flex-direction: column;
    margin-top:5px;
}
.form-row input:not(.form-row input[type=checkbox]),.form-row select, .form-row textarea{
    margin-top: 15px;
    border-radius: 25px;
    padding:8px 0;
    border-color: rgba(0, 0, 0, .12);
    width:100%;
    font-size:16px;
    color: var(--colorGray);
    
}
input::file-selector-button{
   border-radius: 25px; 
   color: var(--colorGray);
   border-color: rgba(0, 0, 0, .12);
}
.form-row label{
    font-size:16px;
}
form .button-wrapper{
    margin-top:15px;
}
form input[type=submit],#personModify button.b2c-cr-wcm5,form#news button[type=submit]{
    padding: 15px 20px;
    border: none;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    border-radius: 50px;
    min-width: 170px;
    background: var(--colorPrimary);
    float: right;
    transition:.3s all;
    border:2px solid var(--colorPrimary);
    margin:0 auto;
}
form input[type=submit]:hover,#personModify button.b2c-cr-wcm5:hover{
    color:var(--colorPrimary);
    background:#fff;
}
div#mgnlhp {
    position: absolute;
    left: -20000px;
}
input.user-success{
    margin-top:10px;
}
form input[type=text],form input[type=date],form select,form textarea{
    padding-left: 10px !important;
    padding-right: 10px !important;
}
/*Landing hoteles*/
.svgHoteles{
    height:100%;
    position:relative;
}
.svgHoteles svg{
    position: absolute;
    bottom:0;
    right: -10%;
    width:100%;
}
.editMode .svgHoteles svg{
    position:relative;
    width:inherit;
}
.mapHoteles>.row>div:last-child .htt-text-image {
    height:100%;
}
.mapHoteles p.zona{
    margin-bottom:10px;
}
.mapHoteles ul a{
    color:var(--colorGray);
    line-height:1.7em;
}
.pin-hotel{
	transition:.3s all;
	opacity:.45;
}
.pin-hotel.opac{
    opacity:1;
}
/*Landing-destinos*/
.tit-destino{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
/*Landing deportes*/
.swiper-deportes .swiper-slide img.img-responsive{
    height:var(--heightVh);
    border-radius:20px;
}
.swiper-deportes .swiper-slide>div, .swiper-ofertas-web .swiper-slide{
    position:relative;
}
.swiper-deportes h3{
    font-size:28px;
}
.swiper-deportes .swiper-slide>div .swiper-slide-content-text,
.swiper-ofertas-web .swiper-slide .text-oferta-web {
    background: var(--gradient);
    border-radius:20px;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:2;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    padding:20px;
}
.swiper-deportes.buttons-up-right .htt-swiper-button-next-wrapper{
    right:40px !important;
}
.swiper-deportes.buttons-up-right .htt-swiper-button-prev-wrapper{
    right:100px!important;
}
.card-hotel-experiencia img.img-responsive{
    border-top-left-radius:30px;
    border-top-right-radius:30px;
    max-height:300px;
    object-fit:cover;
    object-position:center;
}
.wrapper-card-hotel-experiencia{
    padding: 20px;
    box-shadow: 0 1px 8px 0 rgb(0 0 0 / .2) !important;
    overflow: hidden;
    border-bottom-left-radius:30px;
    border-bottom-right-radius:30px;
    position:relative;
}
.wrapper-card-hotel-experiencia p:last-child{
    /*position:absolute;
    bottom:20px;
    right:20px;
    left: 20px;*/
    display: flex;
    justify-content: center;
}
.wrapper-card-hotel-experiencia .ver-hoteles .button-primary{
    width:fit-content;
}
.swiper-ciclismo .wrapper-card-hotel-experiencia hr{
    width:80px;
    height:3px;
    background:var(--colorClearGray);
    border:none;
}
.swiper-ciclismo ul{
    padding-left:20px;
    padding-bottom:60px;
}
.equals-golf.swiper-ciclismo p.left.mTop20{
    padding-bottom:20px;
}
.swiper-ciclismo .swiper .swiper-pagination{
    position:relative;
    margin-top:30px;
}
.swiper-ciclismo .swiper .swiper-pagination-bullet{
    background-color: var(--colorPrimary) !important;
    opacity:1;
    width:4px;
    height:4px;
}
.swiper-ciclismo .swiper .swiper-pagination-bullet-active{
    width:8px;
    height:8px;
}
.swiper-ciclismo .swiper h3{
    font-size:28px;
}
.swiper-ciclismo .swiper p.subTitle, .swiper-ciclismo .swiper p.place{
    font-size:16px;
}
.swiper-ciclismo .swiper{
    padding:0 10px;
}
/*.oax.agMapFullScreen .oax_flex_view_wrapper, .agMapFullScreen .oax .oax_flex_view_wrapper*/
.oax.agMapFullScreen .oax-flexView:not(.oax-flexView-switchView), .agMapFullScreen .oax .oax-flexView:not(.oax-flexView-switchView),
.oax-fullscreen .oax .oax-flexView{
    transform:scale(.8) !important;
    top:10% !important;
    z-index:2 !important;
}
.agMapSmallScreen.oax-smallscreen .oax-part-flexviewpage,.agMapSmallScreen.oax-smallscreen .oax-singleviewpage,.oax-part-flexviewpage, .oax-singleviewpage{
    z-index:2 !important;
}
/*landing ofertas*/
.swiper-ofertas-web .text-oferta-web{
    line-height:normal;
}
.swiper-ofertas-web .top-text-oferta-web p{
    margin-top:8px;
}
.swiper-ofertas-web .condiciones-oferta{
    display:none !important;
}
.swiper-ofertas-web .swiper-slide img.img-responsive{
    height:calc(var(--heightVh) - 5vh);
    border-radius:20px;
}
.swiper-ofertas-web h3{
    font-size:30px;
    font-weight:400;
    line-height:1.2em;
}
.swiper-ofertas-web p{
    font-size:20px;
    font-weight:400;
    line-height:1.3em;
}
.swiper-ofertas-web p .descuento{
    font-size:40px;
    font-weight:400;
}
.swiper-ofertas-web p.code-oferta-web{
    display: inline-block;
    background: rgba(234, 245, 244, .7);
    border-radius: 20px;
    padding: 10px;
    color: var(--colorGray);
    font-weight: 500;
    font-size:16px;
    margin-bottom:5px;
}
.swiper-ofertas-web .code-oferta-web span{
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6);
    font-weight:400;
    font-size: 26px;
    color:#fff;
    display:block;
    margin-top:5px;
}
.swiper-ofertas-web .button-transparent{
    width: fit-content;
    margin: 0 15px;
    min-width: 250px;
    cursor:pointer;
}
.swiper-ofertas-web p.buttons-offer{
    display:flex;
    justify-content:center;
}
.swiper-ofertas-web p.buttons-offer .button-transparent{
    min-width:240px;
    padding:12px 15px;
}
.swiper-ofertas-web p.buttons-offer .button-transparent.button-color{
    background:var(--colorPrimary);
}
.swiper-ofertas-web p.buttons-offer .button-transparent.button-color:hover{
    background:transparent;
}
.box-code{
    padding:10px 20px;
    border-radius:30px;
}
.box-code .text-code{
    font-size:16px;
}
.box-code .code{
    font-size:20px;
    font-weight:800;
}
.swiper-ofertas-web .box-code.bgClear{
    background:rgba(233,240,242,.8);
    width:fit-content;
    padding:10px 40px;
    margin:0 auto;
}
.swiper-ofertas-web .top-text-oferta-web .box-code p{
    margin-top:0;
}
.swiper-ofertas-web .box-code .text-code{
    font-size:15px;
}
/*Detalle oferta*/
.container-hero .descuento-hero{
    font-size:40px;
    line-height:1.2em;
}
.oferta-detalle .text-oferta{
    justify-content:flex-start;
    align-items:flex-start;
    border-radius:30px;
}
.oferta-detalle .text-oferta p.title{
    font-size:48px;
}
.oferta-detalle .img-oferta img.img-responsive{
    height:var(--heightVh);
    border-radius:30px;
}
.desc-oferta .button-primary, .oferta-no-vigente .button-primary,
.suscripcion-oferta .button-primary, .suscripcion-oferta .button-primary{
    float:none !important;
    width:fit-content;
}
.oferta-destacada img{
    border-radius:35px;
}
.grid-master-offer{
    background: #E9F0F2;
    padding: 12px;
    border-radius:40px;
}
.grid-master-offer p{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
}
.grid-master-offer a{
    margin-left:8px;
    min-width:auto !important;
}
.grid-master-offer a, .grid-master-offer span{
    margin:5px 8px 5px 0;
}
/*.condiciones{
    border-top: 1px solid var(--colorGray);
}*/
.condiciones p.title{
    text-transform:uppercase;
    font-weight:400;
}
section:has(.condiciones){
    padding-top:20px;
    background-image:url(/dam/multiHotel-Universal-Beach-Hotels/ofertas/pattern-universal-beach-hotels.png);
}
/*Landing faqs*/
.accordion-item{
    border:none !important;
    margin-bottom:5px;
}
.accordion-item .accordion-button{
    border-radius:0;
    border-bottom:1px solid rgba(0,0,0,.1);
    font-size:18px;
    padding-left:0;
}
.accordion-button::after, .accordion-button.collapsed::after{
    background-image:none !important;
    font-size:24px;
    transform:none !important; 
}
.accordion-button::after{
    content:"-";
    font-size:24px;
}
.accordion-button.collapsed::after{
    content:"+";
}
.grid-faqs .col{
    padding-left:0;
}
.accordion-button:not(.collapsed){
    background-color:transparent;
    box-shadow:none;
    color:var(--colorPrimary);
    border-color: var(--colorPrimary);
}
.accordion-button:focus{
    box-shadow:none; 
}
.accordion-button:hover,.accordion-button{
    z-index:1;
}
.openMenu .grid-faqs>.row>.col~a{
    display:none !important;
}
.accordion.quicktextFAQ .accordion-item~a{
    display:none;
}
/*Landing privacy*/
.banner-privacy .col{
    padding:0;
}
.banner-privacy img.img-responsive{
    max-height:480px;
}
/*landing trabaja con nosotros*/
.form-work{
    display:none;
}
.box-empleo{
    position:relative;
}
.box-empleo p{
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index:2;
}
.box-empleo img.img-responsive{
    filter:brightness(.85);
}
/*Landings protección de datos*/
.text-legal p{
    margin-top:10px;
    text-align:left !important;
}
.text-legal p:first-child{
    margin-top:40px;
}
.text-legal h4{
    font-size:18px;
    margin:15px 0;
}
._CookieScriptReportPageSaveSettingButton{
    background:var(--colorPrimary);
    border:none;
    color:#fff;
    border-radius:35px;
    padding:5px 10px;
    font-size:18px;
    margin-top:10px;
}
._CookieScriptReportPageTable{
    overflow-x: auto !important;
    display: block;  
}
/*Google Maps*/
.googleMapsContainer .gHeader~p .gLink{
    font-family:var(--fontPrimary);
    font-weight:400;
}
/*Sostenibilidad*/
.grid-sostenibilidad p.subTitleSmall{
    font-size: 22px;
    font-weight: 400;
    line-height: 1.3em;
    margin-top: 5px;
    color:var(--colorClearGray);
}
.objetivos h3{
   font-size:32px;
}
.logos-sostenibilidad{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
}
.logos-sostenibilidad img{
    mix-blend-mode:multiply;
    max-width:250px;
    height:auto;
}
@media(min-width:1921px){
    .flex-center img.img-responsive,.habitacion .swiper-general-1-column .swiper-slide img.img-responsive,
    .servicio-hotel .swiper-general-1-column .swiper-slide img.img-responsive{
        max-height:540px !important;
    }
}
@media(min-width:1680px){
.hAuto{
    height:auto !important;
}
}
@media(min-width:1511px){
    .accesos-header>.row>.col{
        flex:1 0 14%;
        padding:0 10px;
    }
    .accesos-header>.row>.col:first-child{
        flex:1 0 58%;
    }
}
@media(min-width:1199px){
    html.snap-html{
        scroll-snap-type: y mandatory;
        scroll-behavior:smooth;
    }
    .snap-container section, .footer section{
        scroll-snap-align: start;
        scroll-margin:15px 0 0 0;
    }
    .snap-container section.intro{
        scroll-margin:0;
    }
}
@media(min-width:1025px){
    .gridCopy>.row{
        display:flex;
        align-items:center;
    }
    .logo-mobile{
        display:none;
    }
    .call-center .dropDownPhones{
        margin-top:-1px;
    }
    .ofertas-home.swiper-mobile .swiper-slide{
        flex:1;
    }
}
@media(min-width:992px){
    .flex-center>.row{
        display:flex;
        align-items:center;
    }
}
@media(max-width:1680px){
    /*.checkin-header a.button-transparent{
        margin-right:0;
    }*/
    .menuExt{
        margin-left:60px;
    }
}
@media(max-width:1510px){
    .top-menu.menu-ficha .col-7{
        width:70% !important;
    }
    .top-menu.menu-ficha .col-5{
        width:30% !important;
    }
    .checkin-header .button-transparent{
        display:none;
    }
    .checkin-header .icon-checkin{
        display:block;
        text-align:right;
        /*margin-left:-30px;*/
    }
    .header .ic-header-right .accesos-header>.row>.col:first-child{
        min-width:auto;
    }
    /*.ic-header-right>.row>div:first-child{
        width:25% !important;
    }
    .ic-header-right>.row>div:first-child .htt-text-image{
        text-align:center;
    }
    .ic-header-right>.row>div:last-child{
        width:75% !important;
    }*/
}
@media(max-width:1440px){
    .menuExt{
        margin-left:70px;
    }
    .big-menu-flex .menuHoteles a{
        font-size:32px;
    }
    .menuExt .popMenu{
        max-width:75vw;
        padding:24px;
    }
    ul.list-menu-hoteles{
        line-height:1.2em;
        margin-bottom:0;
    }
    .swiper-libreria-v3-button-right .card-hotel img.img-responsive,
    .swiper-libreria-v3-button-right .card-hotel video{
        height:calc(var(--heightVh) - 15vh) !important;
    }
    .exp-senderismo .swiper-libreria-v3-button-right .card-hotel img.img-responsive,
    .exp-spa .swiper-libreria-v3-button-right .card-hotel img.img-responsive,
    exp-senderismo .swiper-libreria-v3-button-right .card-hotel video,
    .exp-spa .swiper-libreria-v3-button-right .card-hotel video{
        height:calc(var(--heightVh) - 5vh) !important;
    }
    .subTitlePop.mTop20{
        margin-top:8px !important;
    }
    .swiper-side-transparent .htt-swiper-button-prev-wrapper{
        right:25% !important;
    }
     
    .swiperMobile .swiper-slide img.img-responsive,
    .swiper-side-transparent .swiper-slide img.img-responsive,
    .swiper-deportes .swiper-slide img.img-responsive,
    .oferta-detalle .img-oferta img.img-responsive{
        min-height:calc(var(--heightVh) - 15vh);
        height:calc(var(--heightVh) - 15vh) !important;
    }
    .swiper-ofertas-web .swiper-slide img.img-responsive{
        height:calc(var(--heightVh) - 18vh) !important;
    }
    .valor-home .img-valores img.img-responsive{
        height:calc(var(--heightVh) - 12vh) !important;
    }
    .oferta-home .text-oferta, .experiencia-home .text-experiencia, 
    .valores-home .text-valores, .oferta-detalle .text-oferta{
        padding:60px 40px 40px 40px;
    }
    .restaurantes .restaurante img.img-responsive{
        height:calc(var(--heightVh) + 5vh);
    }
    .mapHoteles ul a{
        line-height:1.1em;
    }
    .mapHoteles p.zona{
        margin-bottom:0;
    }
    .exp-eventos .swiper-side-transparent .swiper-slide img.img-responsive {
        height:calc(var(--heightVh) - 20vh) !important;
        min-height:auto !important;
    }
    .tabsEventos .swiper-navigation-bottom-right .swiper-slide img.img-responsive{
        height:calc(var(--heightVh) - 12vh);
    }
    p.mTop40{
        margin-top:30px !important;
    }
    .swiper-ofertas-web p.code-oferta-web.mTop20,
    .swiper-ofertas-web .box-code.mTop20{
        margin-top:8px !important;
        margin-bottom:4px;
    }
    .swiper-ofertas-web .box-code.bgClear{
        padding:7px 40px;
    }
}
@media(max-width:1366px){
    body{
        font-size:16px;
    }
    .w80,.tabsPrimary.tabsDestino nav{
        width:92% !important;
    }
    .w80,.footer .w80, .w90{
        width:95% !important;
    }
    .mTop40{
        margin-top:25px !important;
    }
    .mBT40{
        margin-bottom:25px !important;
    }
    .accesos-header>.row>.col{
        padding:0 10px;
    }

    .titleHero{
        font-size:44px !important;
        line-height:1.1em;
    }
    .logo{
        max-width:180px;
    }
    .popMenu p.titlePop{
        font-size:21px;
    }
    .ic-header-right>.row>div:first-child .htt-text-image{
        text-align:right;
    }
   /* p.checkin-header{
        text-align:center;
    }
    .checkin-header .icon-checkin{
        margin-left:50px;
    }*/
    .menuExt #popHoteles .list-menu-hoteles a{
        font-size:15px;
    }
    .menuExt .popMenu .subTitlePop.mTop20{
        margin-top:3px !important;
        font-size:16px;
    }
    .menuExt ul.list-menu-hoteles{
       line-height:1.2em; 
       margin-bottom:0;
    }
    .big-menu-flex .menuHoteles a{
        font-size:28px;
    }
    .menuExt .popMenu .imgMenu img{
        max-width:240px;
        height:150px;
    }
    h1:not(h1.subTitleHero), h2, .intro p.title, p.destacado{
        font-size:36px;
    }
    h3, .subH,.valores-home h3{
        font-size:32px;
    }
    .containerTxtSlide .w60{
        width:100% !important;
    }
    .grid-swiper-hoteles.w90{
        margin-left:5%;
        padding-top:20px !important;
        width:95% !important;
    }
    .tabs-hoteles-home h1,.experiencia-home .top-text-experiencia h2.title{
        font-size:48px !important;
    }
    /*.tabs-hoteles-home nav{
        width:98% !important;
    }*/
    .verMas, .button-transparent{
        font-size:18px !important;
    }
    .swiper-ofertas-web p{
        font-size:18px;
    }
    .swiper-ofertas-web p.code-oferta-web{
        padding:10px;
    }
    .valor-home .img-valores img.img-responsive,
    .swiperMobile .swiper-slide img.img-responsive,
    .swiper-side-transparent .swiper-slide img.img-responsive,
    .swiper-deportes .swiper-slide img.img-responsive,
    .oferta-detalle .img-oferta img.img-responsive{
        min-height:calc(var(--heightVh) - 10vh) !important;
    }
    .swiper-ofertas-web .swiper-slide img.img-responsive{
        height:calc(var(--heightVh) - 22vh) !important;
    }
    .swiper-deportes .swiper-slide>div .swiper-slide-content-text, .swiper-ofertas-web .swiper-slide .text-oferta-web{
        padding:18px;
    }
    .box-news-footer a{
        font-size:18px;
    }
    .footer p.title{
        font-size:21px;
    }
    .footer p, .footer a{
        font-size:16px;
    }
    .oferta-home .img-oferta img.img-responsive, .valor-home .img-valores img.img-responsive{
        height:calc(var(--heightVh) - 5vh);
    }
    .form-row input:not(.form-row input[type=checkbox]), .form-row select, .form-row textarea{
        margin-top:6px;
    }
    .cms-btn-up-mov{
        bottom:50px;
    }
    .grid-sostenibilidad .flex-center img.img-responsive{
         max-height:400px;
    }
}
@media(max-width:1280px){
    .menuExt a{
        padding:0 10px;
    }
    .swiper-ofertas-web p.buttons-offer{
        flex-wrap:wrap;
    }
    .swiper-ofertas-web p.buttons-offer .button-transparent{
        width:80%;
        margin-top:5px;
    }
    .header .accesos-header>.row{
        padding-right:0 !important;
    }
    .top-menu.menu-ficha .col-5{
        width:25% !important;
    }        
    .top-menu.menu-ficha .col-7{
        width:75% !important;
    }
    .ic-header-right>.row>div:first-child .htt-text-image{
        text-align:center;
    }
}
@media(max-width:1199px){
    .menuExt>div{
        display:none;
    }
    /*.ic-header-right>.row>div:last-child{
        width:100% !important;
    }*/
}
/*@media(min-width:1025px) and (max-width:1199px){
    .ic-header-right>.row>div:first-child .htt-text-image{
        text-align:left;
    }
}*/
@media(min-width:1025px) and (max-width:1366px){
     .swiper-ofertas-web .swiper-slide .top-text-oferta-web h3 br,
     .swiper-ofertas-web .swiper-slide .top-text-oferta-web p br{
         display:none;
     }
}
@media(max-width:1024px){
    .col {
        flex: 1 0 100%;
    }
    body{
        overflow-x:hidden;
    }
    .w50, .w60, .w70, .w80,.footer .w80, .w90,.tabsPrimary.tabsDestino nav{
        width:98% !important;
    }
    .mLeft10{
        margin-left:4% !important;
    }
    .paddTop120{
        padding-top:45px !important;
    }
    .paddTop120.anchor-destino{
        padding-top:85px !important;
    }
    .paddBT120{
        padding-bottom:60px !important;
    }
    .paddTop60{
        padding-top:35px !important;
    }
    .logo-desktop{
        display:none;
    }
    .menuExt{
        margin-left:0;
        justify-content:flex-start;
    }
    .hfixed .menuExt{
        margin-left:60px;
    }
    .header.hfixed .top-menu>.row>div{
        width:25%;
    }
    .header.hfixed .top-menu>.row>div:first-child{
        width:75%;
    }
    .header.hfixed .top-menu>.row>div:nth-child(2){
        display:none;
    }
    .header .top-menu>.row>div:last-child:not(.header.hfixed .top-menu>.row>div:last-child){
        padding-right:0 !important;
    }
    /*.header .top-menu>.row>div:last-child:not(.header.hfixed .top-menu>.row>div:last-child){
        padding-right:0 !important;
    }*/
    .openMenu #toggleMenu div:first-child,#toggleMenu div:last-child{
        top:20px;
    }
    #toggleMenu div:nth-child(2){
        top:10px;
    }
    #toggleMenu{
        left:0;
        width:30px;
        height:30px;
    }
    .logo{
        max-height:40px;
        margin-left:-10px;
        width:auto;
        margin-top:-5px;
    }
    .header .accesos-header>.row{
        padding-right:20px !important;
    }
    .containerTxtSlide {
        top:35%;
    }
     .verMas, .button-transparent{
         padding:12px 20px;
     }
    .oferta-home .text-oferta, .experiencia-home .text-experiencia,
    .valores-home .text-valores, .oferta-detalle .text-oferta{
        padding:20px;
    }
    .experiencia-home .text-experiencia,
    .experiencia-home .img-experiencia img.img-responsive, .experiencia-home .img-experiencia video{
        margin:5vh 0;
    }
    h1:not(h1.subTitleHero), h2, .titleHero, .experiencia-home .top-text-experiencia h2.title,
    .tabs-hoteles-home h1,.intro p.title, p.destacado{
        font-size:32px !important;
        line-height:1.1em;
    }
    .valores-home h3, .subH{
        font-size:28px !important;
    }
    .containerTxtSlide h1{
        line-height:1.4em;
    }
    .containerTxtSlide p.textHero{
        font-size:18px;
        line-height:1.4em;
    }
    .grid-motor{
        position:relative;
        bottom:0;
    }
    #big-menu-images{
        padding:10px;
    }
    .experiencia-home .bottom-text-experiencia{
        flex-wrap:wrap;
    }
    .experiencia-home .bottom-text-experiencia .button-transparent{
        margin-right:0;
        margin-top:10px;
    }
    .experiencias-home{
        padding-left:20px;
        padding-right:20px;
    }
     .oferta-home .img-oferta img.img-responsive, .valor-home .img-valores img.img-responsive,
    .experiencia-home .img-experiencia img.img-responsive, .experiencia-home .img-experiencia video,
    .experiencia-home .text-experiencia, .valor-home .img-valores img.img-responsive,
    .swiperMobile .swiper-slide img.img-responsive,
    .restaurantes .restaurante img.img-responsive,
    .swiper-side-transparent .swiper-slide img.img-responsive,
    .swiper-deportes .swiper-slide img.img-responsive,
    .swiper-ofertas-web .swiper-slide img.img-responsive,
    .oferta-detalle .img-oferta img.img-responsive,
    .swiper-libreria-v3-button-right .card-hotel img.img-responsive,
    .swiper-libreria-v3-button-right .card-hotel video{
        min-height:55vh !important;
    }
    .swiper-side-transparent .swiper-slide img.img-responsive,
    .experiencia-home .img-experiencia img.img-responsive, .experiencia-home .img-experiencia video,
    .experiencia-home .text-experiencia{
        height:55vh !important;
    }
    .swiper-general-1-column .swiper-slide img.img-responsive{
        height:320px;
    }
    .swiper-ofertas-web .swiper-pagination{
        display:none;
    }
    .swiper-mobile{
        padding-top:90px !important;
    }
    .swiper-mobile .swiper-pagination,.swiper-ofertas-web .swiper-pagination{
        position:relative;
        margin-top:25px;
    }
    .swiper-mobile .swiper-button-next, .swiper-mobile .swiper-button-prev{
        color: var(--colorPrimary);
        left: auto;
        margin-top: 15px;
        border: 1px solid var(--colorPrimary);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        top:0;
    }
    .swiper-mobile .swiper-button-next{
        right:40px;
    }
    .swiper-mobile .swiper-button-prev{
        right:100px;
    }
    .swiper-mobile .swiper-button-next:after, .swiper-mobile .swiper-button-prev:after{
        font-size:15px;
    }
    .swiper-mobile .swiper-pagination-bullet, .swiper-ofertas-web .swiper-pagination-bullet{
        background-color:var(--colorPrimary) !important;
        width:4px;
        height:4px;
    }
    .swiper-mobile .swiper-pagination-bullet-active, .swiper-ofertas-web .swiper-pagination-bullet-active{
        width:8px;
        height:8px;
    }
    .tabs-hoteles-home nav, .tabsPrimary nav{
        width:100% !important;
    }
    .tit-destino{
        display:block;
    }
    .tit-destino p{
        margin-top:10px;
    }
    .tabsPrimary nav.swiperTabsPrimary{
        max-width:100% !important;
    }
    .grid-form-eventos h2{
        margin-bottom:20px !important;
    }
    .box-news-footer{
        flex-direction:column;
    }
    .box-news-footer .mTop40{
        margin-top:40px !important;
    }
    .box-news-footer{
        background-size:10%;
    }
    .footer{
        padding:0 20px;
        background-size:20%;
    }
    .footer .left:not(.footer .hoteles-footer .left), .footer .right{
        text-align:center !important;
    }
    .footer .hoteles-footer ul.left, .footer .hoteles-footer p.zona{
        text-align:center !important;
        list-style-type:none;
        padding-left:0;
    }
    .footer .hoteles-footer>.row>.col:first-child{
        padding:0;
    }
    .gridCopy .col{
        margin-top:30px;
    }
    .footer .w80.paddBT120{
        padding-bottom:0 !important;
    }
    .footer .gridCopy.paddTop60{
        padding-top:30px !important;
    }
    .footer .mTop40, .footer .title{
        margin-top:10px !important;
    }
    .footer.paddTop120,.footer .paddTop120{
        padding-top:30px !important;
    }
    .box-news-footer{
        margin-top:40px !important;
    }
    .logo-footer{
        max-height:90px;
        width:auto;
    }
    .redes-footer{
        justify-content:center;
    }
    .grid-swiper-hoteles.w90, .gridOfertas{
        margin-left:0 !important;
        width:100% !important;
    }
    .swiper.swiper-libreria-v3-button-right .swiper-slide{
        width:60% !important;
    }
    .restaurantes .restaurante{
        margin-top:10px;
    }
    .svgHoteles{
        display:none;
    }
    .footer .w80.paddBT120.legal-footer{
        padding-bottom:120px !important;
    }
    .swiper-navigation-bottom-right .swiper-pagination{
        display:none !important;
    }
        .tabsPrimary .dropdown {
        background: var(--colorPrimary);
        padding: 10px 15px;
        border-radius: 35px;
    }
    .menu-select-mobile{
        width:100% !important;
    }
    .tabsPrimary .dropdown button,.menu-select-mobile .dropdown-button{
        color: var(--colorPrimary);
        background: #fff;
        border-radius: 35px;
        width: 100%;
        padding: 12px 10px;
        border: none;
        font-weight: 500;
        font-size: 17px;
    }
    .tabsPrimary .dropdown-menu.show{
        width:100%;
        margin-left:-20px !important;
        padding:10px;
        border-radius:35px;
    }
    .menu-select-mobile .dropdown-menu.show{
        margin-left:0 !important;
        padding:10px;
        border-radius:35px;
        width:100%;
    }
    .tabsPrimary .dropdown-menu.show li, .menu-select-mobile .dropdown-menu.show li{
        color:var(--colorPrimary);
    }
    .menu-select-mobile .dropdown-menu.show li a{
        font-size:17px;
    }
    .tabsPrimary .dropdown-menu.show li a, .menu-select-mobile .dropdown-menu.show li a{
        border-radius:35px;
        padding:10px;
    }
    .tabsPrimary .dropdown-item.active,.tabsPrimary .dropdown-item:active,
    .menu-select-mobile .dropdown-item.active,.menu-select-mobile .dropdown-item:active {
        background-color:var(--colorPrimary);
    }
    .tabsPrimary .btn-check:checked+.btn, .menu-select-mobile .btn-check:checked+.btn,
    .tabsPrimary .btn.active,.menu-select-mobile .btn.active,
    .tabsPrimary .btn.show,.menu-select-mobile  .btn.show,
    .tabsPrimary .btn:first-child:active, .menu-select-mobile .btn:first-child:active,
    .tabsPrimary :not(.btn-check)+.btn:active,.menu-select-mobile :not(.btn-check)+.btn:active{
        background-color:var(--colorPrimary);
        border-color:var(--colorPrimary);
        color:#fff;
    }
}
@media(max-width:991px){
    .swiper-general-1-column{
        margin-bottom:20px;
    }
    .condiciones p.title{
        font-size:16px;
    }
    .oferta-destacada img{
        margin-bottom:15px;
    }
    .oax-top-cont{
        z-index:2;
    }
    .grid-sostenibilidad .flex-center img{
        margin:20px 0;
    }
    .grid-sostenibilidad .objetivos h3{
        font-size:24px;
    }
}
@media(min-width:768px) and (max-width:1024px){
    .header{
        padding:20px 10px;
    }
    .header.hfixed .accesos-header>.row,html[lang=de] .header.hfixed .accesos-header>.row{
        padding-right:20px !important;
    }
    .topfixed #buttonShowSearcherScroll{
        right:20px;
        top:120px;
    }
    .svgHoteles svg{
        width:130%;
        right:-20%;
    }
    .topfixed .grid-motor{
        z-index:2;
    }
}
@media(min-width:768px){
.swiper-ofertas-web .swiper-slide{
    flex:1;
    min-width:calc(50% - 20px);
}
.swiper-ofertas-web .swiper-slide.mright0{
    margin-right:0 !important;
}
}
@media(max-width:767px){
    .header{
        top:0;
        padding:20px 10px 0 10px;
    }
    .header.hfixed{
        padding-right:0;
    }
    .header.hfixed .logofixed{
        width:50%;
    }
    .short-mobile .container-hero picture img.img-responsive{
        height:60vh;
    }
    body{
        font-size:15px;
        line-height:1.3em;
    }
    .grid-motor{
        z-index:4;
    }
    .menuExt>div.logofixed{
        padding:0;
        position:absolute;
        left:50%;
        transform:translate(-50%, 0);
    }
    .accesos-header>.row>.col {
        padding: 0 0 0 15px;
    }
    /*.header .call-center,*/ .accesos-header div.col:has(.htt-language-selector){
        display:none;
    }
    .dropDown-menu-box{
        right:-10vw !important;
        min-width: 95vw;
    }
    .dropDownPhones>img, .icon-checkin img{
        width:25px !important;
        height:25px !important;
    }
    .personLogin-content:before {
        content: url(/dam/multiHotel-Universal-Beach-Hotels/home/icons/icon-user-767.png);
    }
    .mybooking-content:before {
        content: url(/dam/multiHotel-Universal-Beach-Hotels/home/icons/icon-cart-767.png);
    }
    .ic-header-right>.row>div:last-child{
        padding-right:0px;
    }
    .accesos-header .col:has(.checkin-header){
        display:none;
    }
    /*.call-center-mobile{
        position: absolute;
        top:80px;
        right: 20px;
        height: 50px;
        width: 50px;
        border: 3px solid #fff;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index:2;
    }
    .call-center-mobile .dropDownPhones>img{
        filter:brightness(0) invert(1);
    }
    .call-center-mobile .dropDown-menu-box{
        min-width: 350px;
        top:40px;
        padding:40px 15px;
        width: 90vw;
        min-width: 100%;
        right: -25px !important;
    }
    .container-hero .call-center-mobile .button-transparent{
        width:100%;
        margin-right:0;
    }*/
    .cuadroTelf .pull-right{
        margin-top:10px;
    }
    .containerTxtSlide .w60{
        width:100% !important;
    }
    .containerTxtSlide h1{
        font-size:21px !important;
    }
    .container-hero .button-transparent{
        margin-right:4%;
        padding:12px 16px;
    }
    .container-hero .buttonsOffer{
        flex-wrap:wrap;
    }
    .container-hero .buttonsOffer .button-transparent{
        width:100%;
    }
    .container-hero .buttonsOffer a:last-child{
        margin-top:10px;
    }
    .big-menu-flex #big-menu-images{
        display:none !important;
    }
    .big-menu-flex>.row>.col>.htt-text-image>div{
        width:100vw;
    }
    .languages-mobile, .mybooking-mobile{
        position: absolute;
        top: 15px;
        right: 40px;
        width: fit-content;
    }
    .openMenu #toggleMenu{
        top:-7px !important;
    }
    .openMenu .header{
        z-index:99;
    }
    .openMenu .header.hfixed #toggleMenu{
        top:8px !important;
    }
    .mybooking-mobile{
        top:20px;
        right:80px;
    }
    .mybooking-mobile .mybooking-content:before{
        filter:none;
    }
    .languages-mobile .group-languages-texts .btn-secondary.open-selector-language,
    .languages-mobile .group-languages-texts .btn-secondary.open-selector-language span:after{
        color:var(--colorGray);
        font-weight:400;
    }
     .languages-mobile .group-languages-texts .btn-secondary.open-selector-language,
     .languages-mobile .dropdown-item{
         font-size:18px;
     }
     .languages-mobile .dropdown-item {
         padding:8px;
     }
    .header .accesos-header>.row,.header.hfixed .accesos-header>.row,html[lang=de] .header.hfixed .accesos-header>.row{
        padding-right:0 !important;
    }
    .scroll-down{
        bottom:80px;
    }
    body #buttonShowSearcherMobile{
        padding:20px !important;
        bottom:15px !important;
        border-radius:36px;
        background-color:var(--colorPrimary) !important;
        box-shadow:1px 0 60px rgba(255,255,255,.2) !important;
        font-weight:400 !important;
        text-transform:none !important;
        font-size:1.6em !important;
        border:1px solid #fff;
    }
    .intro .paddTop60{
        padding-top:50px !important;
    }
    .cms-btn-up-mov{
        bottom:65px;
    }
    #app-container>div{
        padding:0;
    }
    .scroll-hero{
        visibility:hidden;
    }
    .container-hero:before{
        background:var(--gradientClear);
    }
    .containerTxtSlide{
        z-index:2;
    }
    .swiper.swiper-libreria-v3-button-right .swiper-slide{
        width:85% !important;
    }
    .wrapper-card-hotel{
        padding:20px 15px !important;
    }
    .card-hotel .price_from_container a{
        line-height:1.3em;
    }
    /*Menu mobile*/
    .big-menu-flex .menuHoteles a{
        color:var(--colorGray);
    }
    .big-menu-flex .menuHoteles a{
        font-size:24px;
        line-height:1.7em;
    }
    .logo-big-menu img{
        max-height:100px;
        width:auto;
        margin-bottom:15px;
    }
    .big-menu-flex a.link-mobile{
        position:relative;
    }
   /* .big-menu-flex a.link-mobile:after{
        content:"\f054";
        font-family: 'FontAwesome';
        color:#9D9D9C;
        position:absolute;
        font-size:14px;
        right: -15px;
        top: -1px;
    }
    .backMenu{
        width: 35px;
        position: absolute;
        left: 75px;
        top: 22px;
        font-size: 28px;
        color: var(--colorGray);
    }*/
    .mLeft100{
        margin-left:-100vw;
    }
    #big-menu-mobile .ver-hoteles{
       position: absolute;
        top: 58px;
        right: 0;
        transform: translate(-50%);
        width: fit-content;
        padding: 5px 10px;
        border: 1px solid var(--colorClearGray);
        border-radius: 36px;
    }
    .hoteles-mobile{
        margin-top:42px;
        padding:0 8px;
    }
    .hoteles-mobile ul{
        line-height:1.5em;
        list-style:none;
        padding-left:18px;
    }
    .hoteles-mobile ul li a{
        color:var(--colorGray);
        font-size:17px !important;
    }
    .hoteles-mobile ul li{
        position:relative;
    }
    .hoteles-mobile ul li:before{
        content: "\f111";
        font-family: var(--fa-style-family, "Font Awesome 6 Free");
        font-weight: var(--fa-style, 900);
        font-size: 4px;
        vertical-align: 5px;
        position: absolute;
        left: -8px;
    }
    /* Background images for each tab */
    .tabs-hoteles-home #container-tab1 {
        background-image: url('/dam/multiHotel-Universal-Beach-Hotels/home/experiencias/experiencia-spa-767-universal-beach-hotels.jpg');
    }
    
    .tabs-hoteles-home #container-tab2 {
        background-image: url('/dam/multiHotel-Universal-Beach-Hotels/home/experiencias/experiencia-deportes-767-universal-beach-hotels.jpg');
    }

    .tabs-hoteles-home #container-tab3 {
       background-image: url('/dam/multiHotel-Universal-Beach-Hotels/home/experiencias/experiencia-solo-adultos-767-universal-beach-hotels.jpg');
    }

    .tabs-hoteles-home #container-tab4 {
        background-image: url('/dam/multiHotel-Universal-Beach-Hotels/home/experiencias/experiencia-grupos-eventos-767-universal-beach-hotels.jpg');
    }

    .tabs-hoteles-home #container-tab5 {
        background-image: url('/dam/multiHotel-Universal-Beach-Hotels/home/experiencias/experiencia-gastronomia-767-universal-beach-hotels.jpg');
    }

    /*.tabs-hoteles-home #container-tab6 {
        background-image: url('/dam/multiHotel-Universal-Beach-Hotels/home/ofertas/oferta1-universal-beach-hotels.jpg');
    }*/
    .tabs-hoteles-home #container-tab7 {
        background-image: url('/dam/multiHotel-Universal-Beach-Hotels/home/experiencias/experiencia-familias-ninos-767-universal-beach-hotels.jpg');
    }
    .tabs-hoteles-home #container-tab8 {
        background-image: url('/dam/multiHotel-Universal-Beach-Hotels/home/experiencias/experiencia-todo-incluido-767-universal-beach-hotels.jpg');
    }
    .swiper-ofertas-web p.buttons-offer{
        flex-wrap:wrap;
    }
    .swiper-ofertas-web .box-code.bgClear{
        padding:7px 20px;
        width:100%;
    }
    .box-code .code{
        font-size:18px;
    }
    .experiencia-home .bottom-text-experiencia{
        flex-direction:column;
    }
    .bottom-text-experiencia .button-transparent.buttonPlay{
        position:relative;
        left:0;
    }
    .grid-swiper-hoteles-destinos>.row>.col{
        padding-left:0;
        padding-right:0;
    }
    .card-hotel-experiencia img.img-responsive{
        height:250px;
    }
    .container-hero .descuento-hero{
        font-size:28px;
    }
    .swiper-ofertas-web .code-oferta-web span{
        font-size:24px;
    }
    .swiper-ofertas-web .swiper-slide img.img-responsive{
        min-height:62vh !important;
    }
    .experiencia-home .text-experiencia .descripcion{
        display:none;
    }
    .mapHoteles ul a{
        font-size:16px !important;
    }
    .logo-hero{
        max-width:250px;
        height:auto;
    }
    .box-empleo p{
        width:100%;
    }
    .privacy p.mTop20{
        margin-top:10px !important;
    }
    .g-recaptcha{
        margin-top:25px;
    }
    form input.user-success{
        position:absolute;
        margin-top:3px;
    }
    form input.user-success~label{
        padding-left:18px;
        font-size:15px;
    }
    form .button-wrapper{
        display:flex;
    }
    .logos-sostenibilidad{
        flex-wrap:wrap;
    }
    .logos-sostenibilidad img{
        max-width:180px;
    }
    .footer{
        padding:0;
        background-size:40%;
    }
    .footer p, .footer a{
        line-height:1.3em;
    }
}
@media(max-width:576px){
.invert>.row>div:first-child{
    order:2;
}
}

@media (max-width: 767px) {
    .objPosMobileRom {
        object-position: center !important;
    }
}


div#larga-estancia img {
    object-position: right;
}

.gridOfertas.ofertas-neptuno .swiper-slide:has(#larga-estancia) img,
.gridOfertas.ofertas-florida-magaluf .swiper-slide:has(#larga-estancia) img{
    object-position: center;
}



/* Popup */
.modal-header {
    border-bottom: none !important;
}

.modal-body {
   padding-top: 0px !important;
}

/* Transfer button */
.transfer-motor{
  padding:8px 30px;
  width:max-content;
  background:rgb(0 105 128 / 75%);
  border-top-right-radius:50px;
  border-bottom-right-radius:50px;
}
.transfer-motor a{
  color:#fff;
  font-size: 14px;
}