<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
    Frontend: Daniel Gomez
    linked: 
    https://www.linkedin.com/in/daniel-gomez-66aabb17b
    02/10/2021
*/
@import url('https://fonts.googleapis.com/css2?family=Cinzel&amp;family=Fira+Sans:wght@100;400;700&amp;display=swap');
.cinzel_font{
    font-family: 'Cinzel', serif;
}
.fira_sans_font{
    font-family: 'Fira Sans', sans-serif;
}


* {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    height: 100%;
    color: #fff;
    padding-left: 0;
    background: black;
}

.gold{
    color: #a5866c;
}
#menu_intro &gt; p &gt; span {
    color: #a5866c !important;
}
#menu_intro p a {
    color: #a5866c;
    font-weight: bold;
}

span.bold {
    font-weight: bold;
    padding-right: 1%;
}

.container-fluid {
    margin: 0;
    padding: 0;
}

section#fondo {
    height: 100%;
}

.container_mobile {
    max-width: 460px;
}

.container_mobile,
.container_mobile.newyear,
section#fullscreen {
    height: auto;
    background: url(../img/experiencias/background.png) repeat;
    background-size: auto;
}

.background_image {
    background-position: center center;
    background-size: cover;
    height: 215px;
}

.container_mobile.destino_id {
    height: auto;
    padding-bottom: 1rem;
    height: 100vh;
}

.show.show_description.pt-3.pb-2 {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    margin-bottom: auto;
    text-align: center;
}

.back_footer {
    height: 5vh;
    display: flex;
}

.icon_back {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #AC8269;
}

img.logo_back.img-fluid {
    width: 45px;
    height: auto;
}


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


.leyenda_back {
    padding-left: 1rem;
    width: 100%;
    background-color: #191919;
    display: flex;
    align-items: center;
}

.logo {
    padding-top: 1rem;
    padding-bottom: 1rem;

}


.logo &gt; .img-fluid {
    max-width: 75%;
    height: auto;
}

.btn.btn-lg.btn_reservar {
    background-color: #FC2626;
    color: white;
    border-radius: 30px;
    width: 60%;
    font-size: 15px;
    padding: 5px;
}
.btn.btn-lg.btn_reservar.btn_reservar_empty {
    background-color: #585858;
}

.letter_not_height {
    margin-bottom: 5px;
}
.btn_style_ot, .btn_style_ot:hover {
    color: #fff !important;
    background: #FC2626;
    border-radius: 30px;
    padding: 5px;
    font-size: 15px;
    width: 251px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    font-weight: 400 !important;
}
.p_description {
    color: #ffffff;
}

h2.cinzel_font.gold {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

a#a-website {
    color: white;
    font-weight: bold;
    text-decoration: none;
    /* letter-spacing: 1px; */
}

ul.slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slick-dots li{
    width: auto;
}

.slick-dots li button:before {
    font-size: 7px;
    line-height: 17px;
    width: 15px;
    height: 15px;
}

.slick-dots li.slick-active button {
    opacity: 1;
    border: solid 1px #AC8269;
    border-radius: 15px;
    width: 20px;
    color: transparent;
    height: 1px;

}

.slick-dots li.slick-active button:before {
    opacity: .75;
    color: transparent;
    border-radius: 10px;
    width: 20px;
}


.slick-dots li button {
    border: solid 1px #AC8269;
    border-radius: 50%;
    height: 10px;
    width: auto;
    padding-top: 5px;
}

.slick-dots li button:before {
    color:transparent;
}

.slick-dotted.slick-slider {
    margin-bottom: 20px;
}

.sliderShowSucursal,
.slideshow {
    position: relative;
    z-index: 1;
    height: 100%;
  }
  .sliderShowSucursal *,
  .slideshow * {
    outline: none;
  }

  .sliderShowSucursal .slider,
  .slideshow .slider {
    box-shadow: 0 20px 50px -25px black;
  }

  .sliderShowSucursal .slider-track,
  .slideshow .slider-track {
    -webkit-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
    transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  }

  .sliderShowSucursal .item,
  .slideshow .item {
    height: 100%;
    position: relative;
    z-index: 1;
  }

  .sliderShowSucursal .item img ,
  .slideshow .item img {
    width: 100%;
    -webkit-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
    transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
    -webkit-transform: scale(1.3);/*-webkit-transform: scale(1.2);*/
            transform: scale(1.3);/*transform: scale(1.2)*/
  }
  .sliderShowSucursal .item.slick-active img ,
  .slideshow .item.slick-active img {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation: cssAnimation 8s 1 ease-in-out forwards;
    animation: cssAnimation 8s 1 ease-in-out forwards;
  }
  
  @keyframes cssAnimation {
    from {
      -webkit-transform: scale(1) translate(0px);
    }
    to {
      -webkit-transform: scale(1.3) translate(0px);
    }
  }
  @-webkit-keyframes cssAnimation {
    from {
      -webkit-transform: scale(1) translate(0px);
    }
    to {
      -webkit-transform: scale(1.3) translate(0px);
    }
  }



  .modal {
    position: fixed;
    top: 0px;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
        background: #000000c4;
    display: none;
}
.wrap_ot {
    padding: 40px 30px;
    position: relative;
    background: #fff;
}
.wrap_ot iframe {
    margin: 0 auto;
    display: block;
}
.title_ot {
    color: #000;
    text-align: center;
    font-size: 20px;
}
.close {
    font-size: 20px;
    display: block;
    text-align: center;
    position: absolute;
    right: 10px;
    color: #fff;
    top: 10px;
    background: #000;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    line-height: 26px;
}


.container_mobile{
    height: 100%;
}
.container_mobile.newyear {
    height: auto;
}

.div_pdf {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding-bottom: 1rem;
}

.buttom_pdf {
    display: flex;
    border-radius: 30px;
    cursor: pointer;
    width: 200px;
}

img.icon_download {
    width: 20px;
    height: 20px;
    position: relative;
    left: -3px;
}

.boxbuttom.icon,
.boxbuttom.menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

.boxbuttom.icon {
    width: 20%;
    background-color: white;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.boxbuttom.menu {
    width: 80%;
    border: 2px solid white;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    padding: 6px;
}

.boxbuttom.icon {
    width: 20%;
    position: relative;
}

.container.amenidades {
    display: flex;
    justify-content: center;
    width: 100%;
}

.section_full {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    max-width: 460px;
    margin: 0 auto;
    background-color: #1c1c1c;
}

.wraper_section {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 5px;
    text-align: center;
}

.wraper_section {
    display: flex;
    justify-content: center;
}

a.pdf_menu {
    color: white!important;
    text-decoration: none!important;
}

.slideshow {
    width: 100%;
    height: auto;
}

@media only screen and (min-width : 480px) {
    .container_mobile {
        max-width: 460px;
        margin: 0 auto;
    }

    .container_mobile.destino_id {
        height: 100vh;
    }
    section#fullscreen {
        height: auto;
    }
}

/* F O O T E R */
section.footer {
    display: flex;
    justify-content: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
    flex-direction: column;
    align-items: center;
}
img.img_footer {
    width: 210px;
}
span.span-exp {
    font-size: 10px;
    margin-top: 1rem;
}</pre></body></html>