@font-face {
    font-family: "Nysé";
    src: url("/static/fonts/Nysé-Book.otf") format("opentype");
    font-display: swap;
}

:root {
    --vh: 8.51px;
}

html,
body {
    background: #eaeceb;
    transition: 0.15s ease-in-out all;
    font-family: Helvetica;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
}

.mt-170p {
    margin-top: 170px;
}

.mt-110p {
    margin-top: 110px;
}

.mt-100p {
    margin-top: 100px;
}

.mt-70p {
    margin-top: 70px;
}

.mt-60p {
    margin-top: 60px;
}

.mt-50p {
    margin-top: 50px;
}

.mt-40p {
    margin-top: 40px;
}

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

.font-size-12p {
    font-size: 12px;
}

.font-size-60p {
    font-size: 60px;
}

.lh-5p {
    line-height: 5px;
}

.font-size-14p {
    font-size: 14px;
}

/*
SLIDER
 */
/* Slider */
.slick-slider {
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;

    content: "";
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}

[dir="rtl"] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;

    height: auto;

    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/* Icons */
@font-face {
    font-family: "slick";
    font-weight: normal;
    font-style: normal;

    src: url("/static/fonts/slick.eot");
    src: url("/static/fonts/slick.eot?#iefix") format("embedded-opentype"), url("/static/fonts/slick.woff") format("woff"),
        url("/static/fonts/slick.ttf") format("truetype"), url("/static/fonts/slick.svg#slick") format("svg");
}

/* Arrows */
.slick-prev,
.slick-next {
    z-index: 100;
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: transparent;
    outline: none;
    background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #fcf5eb;
    width: 40px;
    height: 40px;
    opacity: 0;
    padding-top: 1px;
    display: inline-block;
    border-radius: 50%;
    transition: 0.15s ease-in-out all;
}

.slick-prev {
    left: 5px;
}

[dir="rtl"] .slick-prev {
    right: 5px;
    left: auto;
}

.slick-prev:before {
    content: " ";
    background-image: url("/static/images/chevron-left.svg");
    background-position: center;
    background-size: 20px;
    background-repeat: no-repeat;
}

[dir="rtl"] .slick-prev:before {
    content: "→";
}

.slick-next {
    right: 5px;
}

[dir="rtl"] .slick-next {
    right: auto;
    left: 5px;
}

.slick-next:before {
    content: " ";
    background-image: url("/static/images/chevron.svg");
    background-position: center;
    background-size: 20px;
    background-repeat: no-repeat;
}

[dir="rtl"] .slick-next:before {
    content: "←";
}

/* Dots */

.slick-dots {
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}

.slick-dots li {
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: inline-block;
    width: 8px;
    height: 8px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}

.slick-dots li button:before {
    width: 20px;
    height: 20px;
    text-align: center;
    opacity: 0.25;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
    opacity: 0.75;
    color: black;
}

/*
START DATERANGE
 */
.daterangepicker {
    position: absolute;
    color: inherit;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #ddd;
    width: 278px;
    max-width: none;
    padding: 0;
    margin-top: 7px;
    top: 100px;
    left: 20px;
    z-index: 3001;
    display: none;
    font-size: 15px;
    line-height: 1em;
}

.daterangepicker:before,
.daterangepicker:after {
    position: absolute;
    display: inline-block;
    border-bottom-color: rgba(0, 0, 0, 0.2);
    content: "";
}

.daterangepicker:before {
    top: -7px;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    border-bottom: 7px solid #ccc;
}

.daterangepicker:after {
    top: -6px;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    border-left: 6px solid transparent;
}

.daterangepicker.opensleft:before {
    right: 9px;
}

.daterangepicker.opensleft:after {
    right: 10px;
}

.daterangepicker.openscenter:before {
    left: 0;
    right: 0;
    width: 0;
    margin-left: auto;
    margin-right: auto;
}

.daterangepicker.openscenter:after {
    left: 0;
    right: 0;
    width: 0;
    margin-left: auto;
    margin-right: auto;
}

.daterangepicker.opensright:before {
    left: 9px;
}

.daterangepicker.opensright:after {
    left: 10px;
}

.daterangepicker.drop-up {
    margin-top: -7px;
}

.daterangepicker.drop-up:before {
    top: initial;
    bottom: -7px;
    border-bottom: initial;
    border-top: 7px solid #ccc;
}

.daterangepicker.drop-up:after {
    top: initial;
    bottom: -6px;
    border-bottom: initial;
    border-top: 6px solid #fff;
}

.daterangepicker.single .daterangepicker .ranges,
.daterangepicker.single .drp-calendar {
    float: none;
}

.daterangepicker.single .drp-selected {
    display: none;
}

.daterangepicker.show-calendar .drp-calendar {
    display: block;
}

.daterangepicker.show-calendar .drp-buttons {
    display: block;
}

.daterangepicker.auto-apply .drp-buttons {
    display: none;
}

.daterangepicker .drp-calendar {
    display: none;
    max-width: 270px;
}

.daterangepicker .drp-calendar.left {
    padding: 8px 0 8px 8px;
}

.daterangepicker .drp-calendar.right {
    padding: 8px;
    margin-left: 20px;
}

.daterangepicker .drp-calendar.single .calendar-table {
    border: none;
}

.daterangepicker .calendar-table .next span,
.daterangepicker .calendar-table .prev span {
    color: #fff;
    border: solid black;
    border-width: 0 2px 2px 0;
    border-radius: 0;
    display: inline-block;
    padding: 3px;
}

.daterangepicker .calendar-table .next span {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.daterangepicker .calendar-table .prev span {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
    min-width: 32px;
    width: 32px;
    height: 24px;
    line-height: 24px;
    font-size: 12px;
    border-radius: 4px;
    border: 1px solid transparent;
    white-space: nowrap;
    cursor: pointer;
}

.daterangepicker .calendar-table {
    border: 1px solid #fff;
    border-radius: 4px;
    background-color: #fff;
}

.daterangepicker .calendar-table table {
    width: 100%;
    margin: 0;
    border-spacing: 0;
    border-collapse: collapse;
}

.daterangepicker td.available:hover,
.daterangepicker th.available:hover {
    background-color: #eee;
    border-color: transparent;
    color: inherit;
}

.daterangepicker td.week,
.daterangepicker th.week {
    font-size: 80%;
    color: #ccc;
}

.daterangepicker td.off,
.daterangepicker td.off.in-range,
.daterangepicker td.off.start-date,
.daterangepicker td.off.end-date {
    background-color: #fff;
    border-color: transparent;
    color: #999;
}

.daterangepicker td.in-range {
    background-color: #ebf4f8;
    border-color: transparent;
    color: #000;
    border-radius: 0;
}

.daterangepicker td.start-date {
    border-radius: 4px 0 0 4px;
}

.daterangepicker td.end-date {
    border-radius: 0 4px 4px 0;
}

.daterangepicker td.start-date.end-date {
    border-radius: 4px;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
    background-color: #357ebd;
    border-color: transparent;
    color: #fff;
}

.daterangepicker th.month {
    width: auto;
}

.daterangepicker td.disabled,
.daterangepicker option.disabled {
    color: #999;
    cursor: not-allowed;
    text-decoration: line-through;
}

.daterangepicker select.monthselect,
.daterangepicker select.yearselect {
    font-size: 12px;
    padding: 1px;
    height: auto;
    margin: 0;
    cursor: default;
}

.daterangepicker select.monthselect {
    margin-right: 2%;
    width: 56%;
}

.daterangepicker select.yearselect {
    width: 40%;
}

.daterangepicker select.hourselect,
.daterangepicker select.minuteselect,
.daterangepicker select.secondselect,
.daterangepicker select.ampmselect {
    width: 50px;
    margin: 0 auto;
    background: #eee;
    border: 1px solid #eee;
    padding: 2px;
    outline: 0;
    font-size: 12px;
}

.daterangepicker .calendar-time {
    text-align: center;
    margin: 4px auto 0 auto;
    line-height: 30px;
    position: relative;
}

.daterangepicker .calendar-time select.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.daterangepicker .drp-buttons {
    clear: both;
    text-align: right;
    padding: 8px;
    border-top: 1px solid #ddd;
    display: none;
    line-height: 12px;
    vertical-align: middle;
}

.daterangepicker .drp-selected {
    display: inline-block;
    font-size: 12px;
    padding-right: 8px;
}

.daterangepicker .drp-buttons .btn {
    margin-left: 8px;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 8px;
}

.daterangepicker.show-ranges.single.rtl .drp-calendar.left {
    border-right: 1px solid #ddd;
}

.daterangepicker.show-ranges.single.ltr .drp-calendar.left {
    border-left: 1px solid #ddd;
}

.daterangepicker.show-ranges.rtl .drp-calendar.right {
    border-right: 1px solid #ddd;
}

.daterangepicker.show-ranges.ltr .drp-calendar.left {
    border-left: 1px solid #ddd;
}

.daterangepicker .ranges {
    float: none;
    text-align: left;
    margin: 0;
}

.daterangepicker.show-calendar .ranges {
    margin-top: 8px;
}

.daterangepicker .ranges ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

.daterangepicker .ranges li {
    font-size: 12px;
    padding: 8px 12px;
    cursor: pointer;
}

.daterangepicker .ranges li:hover {
    background-color: #eee;
}

.daterangepicker .ranges li.active {
    background-color: #08c;
    color: #fff;
}

/*
END DATERANGE
 */

/*
START PROGRESS
 */
@-webkit-keyframes ld {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

@-moz-keyframes ld {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

@-o-keyframes ld {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes ld {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

.m-progress {
    position: relative;
    opacity: 0.8;
    color: transparent !important;
    text-shadow: none !important;
}

.m-progress img {
    opacity: 0 !important;
}

.m-progress:hover,
.m-progress:active,
.m-progress:focus {
    cursor: default;
    color: transparent;
    outline: none !important;
    box-shadow: none;
}

.m-progress:before {
    content: "";
    display: inline-block;
    position: absolute;
    background: transparent;
    border: 1px solid #fff;
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    box-sizing: border-box;
    top: 50%;
    left: 50%;
    margin-top: -12px;
    margin-left: -12px;
    width: 24px;
    height: 24px;
    -webkit-animation: ld 1s ease-in-out infinite;
    -moz-animation: ld 1s ease-in-out infinite;
    -o-animation: ld 1s ease-in-out infinite;
    animation: ld 1s ease-in-out infinite;
}

/*
END PROGRESS
 */

body {
    color: #000;
    font-size: 16px;
    font-weight: normal;
}

.cfont {
    font-family: "Nysé" !important;
}

.container {
    max-width: 1280px;
    width: 100%;
}

.btn-transparent {
    background-color: transparent !important;
}

.btn-default {
    border-color: #000;
    background-color: transparent;
    border: 0;
}

.btn-default:hover {
    border-color: #000;
}

.flex {
    display: flex;
    display: -webkit-flex;
}

.flex .col-sm-p20 {
    display: flex;
    flex-direction: column;
}

.flex-col {
    flex-direction: column !important;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-nowrap {
    flex-wrap: nowrap !important;
}

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

.flex-bottom {
    align-items: end;
}

.flex-end {
    justify-content: flex-end;
}

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

.flex-gap-4 {
    gap: 4px;
}

.flex-gap {
    gap: 10px;
}

.flex-gap-20 {
    gap: 20px;
}

.flex-gap-35 {
    gap: 35px;
}

.flex-gap-25 {
    gap: 25px;
}

.flex-space-between {
    justify-content: space-between;
}

.flex-column-reverse {
    flex-direction: column-reverse;
}

.hero {
    background-position: center;
    background-size: cover;
    position: relative;
    min-height: 100vh;
}

.hero-room {
    background-image: none !important;
    min-height: 100vh;
}

.hero-room h1 {
    margin-top: 25px !important;
}

.hero-room.barranco {
    background-image: url("/static/images/casa/romanorte-rooms-hero.jpg") !important;
}

.hero-room.romanorte {
    background-image: url("/static/images/casa/romanorte-rooms-hero.jpg") !important;
}

.hero {
    background-image: url("/static/images/casa/casa-barranco-hero-1.jpg");
}

.hero.romanorte {
    background-image: url("/static/images/casa/casa-romanorte-hero.jpg");
}

.hero.centenario {
    background-image: url("/static/images/casa/webp/casa-centenario-hero.webp");
}

.hero.doblell {
    background-image: none !important;
}

.otto {
    background-image: url("/static/images/casa/casa-otto-hero.jpg");
}

.events {
    background-image: url("/static/images/casa/casa-barranco-events-1.jpg");
}

.our_house {
    background-image: url("/static/images/casa/webp/casa_our_house_banner.webp");
}

.our_house.romanorte {
    background-image: url("/static/images/casa/casa-romanorte-our-house.jpg");
}

.our_house.centenario {
    background-image: url("/static/images/casa/webp/casa-centenario-our-house-new.webp") !important;
}

.our_house.doblell {
    background-image: url("/static/images/casa/webp/doblell-our-home-1.webp") !important;
}

.living-room.centenario {
    background-image: url("/static/images/casa/webp/casa-centenario-living-room-banner-new.webp") !important;
}

.tv_room.centenario {
    background-image: url("/static/images/casa/webp/casa-centenario-tv-room-new.webp") !important;
}

.kitchen.centenario {
    background-image: url("/static/images/casa/webp/casa-centenario-kitchen-2.webp") !important;
}

.terrace.centenario {
    background-image: url("/static/images/casa/webp/casa-centenario-terrace-new-2.webp") !important;
}

.hero-room.centenario {
    background-image: url("/static/images/casa/webp/casa-centenario-hero-room.webp") !important;
}

.hero-room.doblell {
    background-image: url("/static/images/casa/webp/doblell-hero-room.webp") !important;
}

.rooms {
    background-image: url("/static/images/casa/casa_rooms.png");
}

.wellness-hero {
    background-image: url("/static/images/casa/casa-wellness-hero-1.jpg");
}

.thinking_room {
    background-image: url("/static/images/casa/casa-barranco-thinking.jpg");
}

.main-room {
    background-image: url("/static/images/casa/casa-romanorte-main-room.jpg");
}

.main-room.hero-mobile {
    background-image: url("/static/images/casa/casa-romanorte-main-room.mobile.jpg");
}

.honesty-bar {
    background-image: url("/static/images/casa/casa-romanorte-honesty-bar.jpg");
}

.honesty-bar.hero-mobile {
    background-image: url("/static/images/casa/casa-romanorte-honesty-bar.mobile.jpg");
}

.reading-room {
    background-image: url("/static/images/casa/casa-romanorte-reading-room.jpg");
}

.reading-room.hero-mobile {
    background-image: url("/static/images/casa/casa-romanorte-reading-room.mobile.jpg");
}

.co-working-room {
    background-image: url("/static/images/casa/casa-romanorte-co-working-room.jpg");
}

.kitchen {
    background-image: url("/static/images/casa/casa-romanorte-kitchen.jpg");
}

.kitchen.hero-mobile {
    background-image: url("/static/images/casa/casa-romanorte-kitchen.mobile.jpg");
}

.terrace {
    background-image: url("/static/images/casa/casa-romanorte-terrace.jpg");
}

.terrace.hero-mobile {
    background-image: url("/static/images/casa/casa-romanorte-terrace.mobile.jpg");
}

.garden-gym {
    background-image: url("/static/images/casa/casa-romanorte-garden-gym.jpg");
}

.garden-gym.hero-mobile {
    background-image: url("/static/images/casa/casa-romanorte-garden-gym.mobile.jpg");
}

.dining-room {
    background-image: url("/static/images/casa/casa-romanorte-dining-room.jpg");
}

.dining-room.hero-mobile {
    background-image: url("/static/images/casa/casa-romanorte-dining-room.mobile.jpg");
}

.hero .container-fluid {
    position: relative;
    z-index: 1;
}

.casa_co-working {
    flex-direction: column;
    justify-content: center;
    padding-left: 295px;
    padding-right: 295px;
}

.casa_co-working p {
    text-align: center;
}

.casa_co-working h3 {
    margin-bottom: 20px;
}

.normal-link {
    color: #000 !important;
    text-decoration: none !important;
}

.casa_shared_spaces_img {
    width: 100%;
}

.casa_shared_spaces h3 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
}

.casa_shared_spaces p {
    text-align: center;
    width: 739px;
}

.casa_shared_spaces-li {
    list-style: circle;
}

.casa_shared_spaces-li-checked {
    list-style: disc;
}

.casa_shared_spaces-a {
    text-decoration: none;
    color: #000000;
}

.casa_home-welcome {
    flex-direction: column;
    justify-content: center;
    padding-left: 205px;
    padding-right: 205px;
}

.casa_home-welcome p {
    text-align: center;
    font-size: 14px;
}

.casa_home-welcome a {
    text-decoration: underline;
    color: black;
    margin-top: 27px;
    font-size: 14px;
}

.casa_home-services {
    margin-bottom: 70px;
    padding-left: 35px;
    padding-right: 35px;
}

.casa_home-services h3.bigger {
    font-size: 35px;
}

.casa_home-services a {
    text-decoration: underline;
    color: #000000;
    font-size: 14px;
}

.casa_events-welcome {
    flex-direction: column;
    justify-content: center;
    padding-left: 205px;
    padding-right: 205px;
}

.casa_events-welcome h3 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
}

.casa_events-services button {
    background: #000000;
    border-radius: 100px;
    color: #ffffff;
    margin-top: 27px;
}

.casa_room {
    max-width: 1020px;
    width: 100%;
    margin-top: 187px;
    margin-bottom: 50px;
}

.casa_room form .form-group {
    width: 25%;
    margin: 0;
}

.casa_room form .form-group label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: normal;
}

.casa_room form .form-group label svg {
    height: 14px;
    width: 14px;
}

.casa_room form .form-group label .icon {
    margin-right: 5px;
}

.casa_room form .form-group .dropdown-menu {
    width: 100%;
    border: 0;
    border-radius: 0;
}

.casa_room form .btn {
    border-radius: 30px;
    font-size: 18px;
    text-transform: uppercase;
    display: inline-block;
    flex-grow: inherit;
    margin-left: auto;
    background-color: transparent !important;
    color: #000 !important;
}

.casa_room form .form-group .search-field {
    color: #000 !important;
    border-bottom: 1px solid #000;
    width: 100%;
    display: inline-block;
    font-size: 15px;
    text-decoration: none !important;
}

.casa_room form {
    background-color: #eaeceb;
    padding: 20px 50px;
    border-radius: 48px;
}


.casa_room-above {
    margin-top: 322px;
    color: #fff;
    margin-bottom: 50px;
}

.casa_room-above h1 {
    font-size: 130px;
    margin: 0;
    line-height: 1em;
}

.casa_room-above p {
    margin: 0;
    letter-spacing: 5px;
    font-size: 16px;
}

.casa_room-links a {
    background: #CBCBCB;
    color: #fff;
    border-color: #CBCBCB !important;
    font-size: 12px;
}

.casa_room-links a:hover,
.casa_room-links a.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

.casa_room-links {
    padding: 20px 0;
}

.casa_room-content {
    font-size: 18px;
    margin-bottom: 40px;
}

.casa_room-content svg {
    height: 25px;
    width: 25px;
    margin-bottom: 40px;
}

.casa_room-images img:hover {
    transform: scale(1.5);
}

.casa_room-images img {
    margin: 45px 0;
    transition: transform 0.2s;
}


.casa_room-page h2.cfont {
    margin: 0;
    font-size: 60px;
    line-height: 1em;
    text-transform: uppercase;
}

.casa_room-container {
    max-width: 700px;
    width: 100%;
}

.casa_room-border {
    border-bottom: 1px solid #CBCBCB;
    padding-bottom: 59px;
    margin-bottom: 45px;
}


.btn-bordered {
    border: 1px solid;
}

.hero:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(28, 28, 28, 0.3) 11%, rgba(255, 255, 255, 0) 100%);
    z-index: 0;
}

.hero-above {
    margin-top: 250px;
    color: #fff;
    margin-bottom: 50px;
}

.hero-above h1 {
    font-size: 130px;
    margin: 0;
    line-height: 1em;
}

.hero-above p {
    margin: 0;
    letter-spacing: 5px;
    font-size: 16px;
}

.hero-events {
    margin-top: 250px;
    color: #fff;
    margin-bottom: 50px;
}

.hero-events h1 {
    font-size: 130px;
    margin: 0;
    line-height: 1em;
    width: 977px;
}

.hero-events p {
    margin: 0;
    letter-spacing: 5px;
    font-size: 16px;
}

.call-to-action a {
    font-size: 18px;
    line-height: 1em !important;
    border-radius: 30px;
    background-color: transparent !important;
    border: 1px solid #fff !important;
    color: #fff !important;
}

.call-to-action a:hover {
    background-color: #fff !important;
    color: #000 !important;
}

.wh-amenity {
    width: 100%;
    line-height: 0;
}

.careers-page label {
    font-size: 14px;
}

.call-to-action {
    margin-top: 120px;
}

.hero-bellow {
    max-width: 680px;
    width: 100%;
    margin: 0 auto 80px;
    position: relative;
    z-index: 1;
}

.casa-hero-bellow {
    max-width: 760px;
    width: 100%;
    margin: 0 auto 0 !important;
    position: relative;
    z-index: 1;
}

.hero-bellow-flex {
    display: flex;
    justify-content: center;
}

.hero-bellow-flex a {
    position: absolute;
    border-radius: 100px;
    background: #000000;
    text-align: center;
    font-size: 14px;
    color: white;
    text-transform: uppercase;
    padding: 5px 20px;
}

.legal-page a {
    color: #000000;
    text-decoration: underline;
}

.flex-grow {
    flex-grow: 1;
}

.hero-bellow form .form-group {
    width: 35%;
    margin: 0;
}

.hero-bellow form .form-group label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: normal;
}

.hero-bellow form .form-group .icon svg {
    height: 14px;
    width: 14px;
}

.country-destinations-list {
    overflow-x: auto;
}

.country-city-wrapper a {
    text-decoration: none;
    color: #000 !important;
    overflow: hidden;
}

.country-city-room {
    display: inline-block;
    line-height: 0;
}

a.country-city-room img {
    object-fit: cover;
    height: 100%;
    transition: all 0.15s ease-in-out;
    transform: scale(1);
    width: 100%;
}

.country-city-wrapper a {
    text-decoration: none;
    color: #000 !important;
    max-height: 300px;
}

.country-city-wrapper {
    width: 40% !important;
    flex: 0 0 auto;
    margin-bottom: 30px;
}

.hero-bellow form .form-group .icon {
    margin-right: 5px;
}

.hero-bellow form .form-group .dropdown-menu {
    width: 100%;
    border: 0;
    border-radius: 0;
}

.hero-bellow form .btn {
    border-radius: 30px;
    font-size: 18px;
    display: inline-block;
    flex-grow: inherit;
    margin-left: auto;
    background-color: transparent;
    color: #000;
}

.pointer {
    cursor: pointer;
}

.datepickers-container {
    z-index: 10001;
}

.section {
    padding-top: 50px;
    padding-bottom: 50px;
}

.local-travel-hero img {
    width: 100% !important;
    height: auto !important;
}

.destination-image img {
    object-fit: cover;
    height: 100% !important;
    transition: all 0.15s ease-in-out;
    transform: scale(1);
    width: 100% !important;
}

.destination-image:hover img {
    transform: scale(1.05);
}

.destination-image {
    background-color: transparent;
    height: 400px;
    max-height: 400px;
    display: inline-block;
    width: 100%;
}

.destination-name {
    font-size: 16px;
    color: #000 !important;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-top: 20px;
    display: inline-block;
    font-weight: normal;
    /* added to remove h3 bold */
}

.destination-name a {
    color: inherit;
    text-decoration: none !important;
}

.wh-amenity img {
    width: 100% !important;
    height: 100% !important;
}

.col-sm-p20 {
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
}

.wh-amenity-label {
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 1.2;
    margin-top: 15px;
    margin-bottom: 40px;
    display: inline-block;
    width: 100%;
}

.wh-amenity-label h3 {
    all: unset;
}

h3,
h4 {
    font-weight: normal;
}

.local-travel-tab a.active {
    border-bottom: 1px solid;
}

select {
    -webkit-appearance: none !important;
}

.local-travel-tab {
    width: 100%;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 5px;
    line-height: 1.2em;
    display: inline-block;
}

.local-travel-tab-content {
    font-size: 18px;
    margin-top: 20px;
    line-height: 1.2em;
}

.subherothird {
    min-height: 80vh;
    background-image: url("/static/images/home/secondhero.jpg");
    background-position: center;
    background-size: cover;
    color: #fff;
    text-transform: uppercase;
}

.subherothird.is-mobile {
    background-image: url("/static/images/home/secondhero.mobile.jpg");
}

.subherothird h2 {
    font-size: 100px;
    color: #fff;
    margin: 0;
    line-height: 1em;
}

.subherothird p {
    margin: 0;
    letter-spacing: 5px;
    font-size: 16px;
    font-weight: normal;
}

.abou_casa_info {
    margin-top: 66px;
    margin-bottom: 109px;
}

.footer-form {
    width: 100%;
}

.footer-form form {
    color: #000;
}

.footer-form form button {
    flex-grow: 1;
}

.footer-form form .form-group {
    width: 22%;
    margin: 0;
}

.footer-form form .form-group label {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: normal;
}

.hero-bellow form .form-group .search-field {
    color: #000 !important;
    width: 100%;
    display: inline-block;
    font-size: 15px;
    text-decoration: none !important;
    margin-left: 10px;
}

.footer-form form .form-group label svg {
    height: 16px;
    width: 16px;
}

.footer-form form .form-group label .icon {
    margin-right: 5px;
    line-height: 0;
}

.fill-dark svg * {
    fill: #000 !important;
}

.footer-form form .form-group .dropdown-menu {
    width: 100%;
    border: 0;
    border-radius: 0;
}

.checkout-page div#credit-card-wrapper,
.checkout-page div#card-element {
    padding: 10px 0;
}

.footer-form form .btn {
    border-radius: 30px;
    font-size: 18px;
    text-transform: uppercase;
}

.footer-form form .form-group .search-field {
    color: #000;
    border-bottom: 1px solid #000;
    width: 100%;
    display: inline-block;
    font-size: 16px;
    text-decoration: none !important;
}

.footer-header {
    width: 200px;
    padding-bottom: 15px;
    text-decoration: underline;
}

.checkout-page .form-control {
    background-color: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

.checkout-page p {
    font-size: 16px !important;
}

label {
    font-weight: normal;
}

.checkout-page .search-field {
    color: #000;
    border-bottom: 1px solid #000 !important;
    width: 100%;
    display: inline-block;
    font-size: 16px;
    text-decoration: none !important;
    font-weight: 600;
}

.btn-primary {
    background: #000 !important;
    color: #fff !important;
    border-color: #000 !important;
}

.btn-seconda {
    background: #CBCBCB !important;
    color: #fff !important;
    border-color: #CBCBCB !important;
}

.footer-form .main-icon svg {
    height: 30px;
    width: 30px;
}

.footer-form .main-icon {
    width: 10%;
}

.footer {
    background: #d6eaee;
    padding: 80px 0 20px;
}

.menu-col {
    padding-right: 70px;
}

.footer-menu,
.footer-menu a {
    color: #000;
    font-size: 12px;
}

.newsletter-form input {
    color: #000;
    background: transparent !important;
    border: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    box-shadow: none;
}

.newsletter-form button {
    position: absolute;
    top: 0;
    right: 0;
}

.newsletter-form button {
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
}

.newsletter-form button svg {
    height: 15px;
    width: 15px;
}

.checkout-page .search-field::-webkit-input-placeholder,
.newsletter-form input::-webkit-input-placeholder {
    color: #000;
}

.checkout-page .search-field:-ms-input-placeholder,
.newsletter-form input:-ms-input-placeholder {
    color: #000;
}

.checkout-page .search-field::placeholder,
.newsletter-form input::placeholder {
    color: #000;
    font-weight: normal;
}

.whatstapp-link {
    position: fixed;
    z-index: 10001;
    bottom: 10px;
    right: 10px;
    line-height: 0;
}

.whatstapp-link a {
    line-height: 0;
    display: inline-block;
}

.header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    padding: 20px 0;
    margin-bottom: -63px;
}

.text-decoration-underline {
    text-decoration: underline !important;
}

.margin-less {
    margin: 0 !important;
}

.header a {
    color: #fff !important;
    text-decoration: none;
    font-size: 12px;
}

a.main-menu svg {
    height: 10px;
    width: 10px;
    margin-left: 15px;
}

.main-logo svg {
    fill: #fff;
    height: 37px;
    width: 125px;
}

.subheader {
    height: 0;
    position: relative;
    z-index: 1;
}

.header .main-call {
    font-size: 12px;
    display: inline-block;
}

.main-logo {
    display: inline-block;
}

.relative {
    position: relative;
}

.main-menu-dropdown .dropdown-menu a {
    color: #CBCBCB !important;
    display: inline-block;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-family: Helvetica;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.4em;
    text-align: left;
}

.main-menu-dropdown .dropdown-menu a.active {
    color: #000 !important;
}

.main-menu-dropdown .dropdown-menu {
    padding: 38px;
    box-shadow: none;
    border-radius: 0;
    border: 1px solid #e8ebea;
    top: -22px;
    max-width: 447px;
    width: 100%;
}

.main-menu-dropdown .dropdown-menu ul+ul {
    margin-top: 75px !important;
}

.main-menu-dropdown .dropdown-menu ul+ul a {
    margin: 0;
    text-transform: uppercase;
    font-family: Helvetica;
    font-size: 10px;
    font-weight: 400;
    line-height: 11px;
    letter-spacing: 0em;
    text-align: left;

}

.main-menu-dropdown .dropdown-menu svg {
    height: 25px;
    width: 25px;
    margin-bottom: 30px;
}

.header.dark svg * {
    fill: #000 !important;
}

.header.dark a.main-menu,
.header.dark .top-right-menu a {
    color: #000 !important;
}

.main-full-container {
    height: 100vh;
}

.about-links a {
    color: #9b9b9b;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 25px;
}

.about-links a:hover,
.about-links a.active {
    color: #000;
    text-decoration: underline;
}

.about-links {
    padding: 20px 0;
}

.border-less {
    border: 0 !important;
}

.flex-height {
    height: 100%;
}

.flex-width {
    width: 100%;
}

.about-content {
    font-size: 18px;
    margin-bottom: 40px;
}

.about-content svg {
    height: 25px;
    width: 25px;
    margin-bottom: 40px;
}

.btn-points {
    background-color: #d6eaee !important;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: bold;
}

.daterangepicker.show-calendar .ranges {
    margin-top: 8px;
}

.about-images img:hover {
    transform: scale(1.5);
}

.about-images img {
    margin: 45px 0;
    transition: transform 0.2s;
}

.btn-rounded {
    border-radius: 30px;
}

ul.list-dashed {
    list-style: none;
    padding-left: 1em;
}

ul.list-dashed>li:before {
    display: inline-block;
    content: "-";
    width: 1em;
    margin-left: -1em;
}

.about-page h2.cfont {
    margin: 0;
    font-size: 60px;
    line-height: 1em;
    text-transform: uppercase;
}

.profile-photo-wrapper {
    width: 180px;
    text-align: center;
}

.hero-bellow form {
    background-color: #eaeceb;
    padding: 15px 20px 15px 32px;
    border-radius: 48px;
}


.casa-hero-bellow form {
    border-radius: 18px 18px 0px 0px !important;
    background: #F9F7F5 !important;
    box-shadow: 0px -17px 20px 0px rgba(0, 0, 0, 0.25) !important;
    padding: 34px
}

.col-sm-c7 {
    width: 14.25%;
    padding-left: 15px;
    padding-right: 15px;
}

.col-sm-c6 {
    width: 16.66%;
    padding-left: 15px;
    padding-right: 15px;
}

.main-wrapper {
    padding-top: 100px;
    min-height: calc(100vh - 182px);
}

.btn {
    padding-left: 20px;
    padding-right: 20px;
}

.why-page h3 {
    margin: 0;
}

.rest-address {
    padding-right: 20px;
}

.why-page h2 {
    font-weight: normal;
}

.why-subhero {
    margin-top: 50px;
}

.clink {
    color: #000 !important;
    border-bottom: 1px solid;
    text-decoration: none !important;
}

.contact-links a {
    display: flex;
    align-items: center;
}

.contact-links a svg {
    height: 20px;
    width: 20px;
    margin-right: 10px;
}

.signup-page p,
.signup-page a {
    font-size: 13px;
}

.signup-page a {
    color: #000 !important;
    text-decoration: none !important;
}

.signup-page input::-webkit-input-placeholder {
    color: #000;
}

.signup-page input:-ms-input-placeholder {
    color: #000;
}

.signup-page input::placeholder {
    color: #000;
}

.owner-partner-page .form-control::-webkit-input-placeholder,
.careers-page .form-control::-webkit-input-placeholder,
.contact-page .form-control::-webkit-input-placeholder {
    color: #000;
}

.owner-partner-page .form-control:-ms-input-placeholder,
.careers-page .form-control:-ms-input-placeholder,
.contact-page .form-control:-ms-input-placeholder {
    color: #000;
}

.flex-none {
    flex: none;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

.range-container {
    display: inline-block;
    width: 100%;
    padding: 25px 0;
}

.noUi-connect {
    background: #000 !important;
}

.noUi-horizontal {
    height: 5px !important;
}

.noUi-horizontal .noUi-handle {
    border-radius: 30px !important;
    width: 28px !important;
    right: -14px !important;
    border: 1px solid #000 !important;
    top: -11px !important;
    outline: none !important;
}

.noUi-handle:after,
.noUi-handle:before {
    display: none !important;
}

.owner-partner-page .form-control::placeholder,
.careers-page .form-control::placeholder,
.contact-page .form-control::placeholder {
    color: #000;
}

.careers-page hr {
    border-color: #000 !important;
}

ul.dropdown-menu.prevent-on-click li {
    padding: 25px;
}

ul.dropdown-menu.prevent-on-click {
    min-width: 250px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 100001;
}

.owner-partner-page .form-control,
.careers-page .form-control,
.contact-page .form-control,
.signup-page .form-control {
    color: #000000;
    border: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    outline: none !important;
    padding-left: 0;
}

.signup-page .form-group {
    margin-bottom: 60px;
}

.panel-default>.panel-heading {
    background-color: transparent;
    font-size: 15px;
    border-bottom: 1px solid #000;
}

.panel-group .panel {
    background-color: transparent;
    border: 0 !important;
    border-radius: 0;
}

.panel-default>.panel-heading+.panel-collapse>.panel-body {
    border: 0 !important;
}

.main-full-container.search-page {
    padding-top: 0;
}

.search-filters .form-group {
    margin: 0;
    line-height: 1em;
}

.no-scrolling .header {
    position: relative;
    height: 65px;
    margin: 0 !important;
}

.search-filters {
    padding: 20px 0;
}

.search-filters .form-group .search-field {
    color: #000;
    font-size: 15px;
    border-bottom: 1px solid #000;
    display: inline-block;
    width: 100%;
    text-decoration: none;
    line-height: 1em;
}

.search-filters .form-group .dropdown {
    line-height: 1em;
}

.container-fluid {
    width: 100%;
}

.photo-icon svg+svg {
    margin-left: 10px;
}

#map {
    height: 100%;
}

.search-content {
    border-top: 1px solid #ebebe6;
}

.padding-less {
    padding: 0 !important;
}

.padding-right-0 {
    padding-right: 0 !important;
}

.padding-left-0 {
    padding-left: 0 !important;
}

.pagination div a {
    line-height: 1em;
    display: inline-block;
    font-size: 13px;
    width: 32px;
    padding: 11px 0 8px;
    border-radius: 50%;
    text-decoration: none;
    text-align: center;
    color: #000;
    font-weight: bold;
}

.pagination div.active a {
    background-color: #000 !important;
}

.pagination div a:hover {
    background-color: #eaeaea;
}

nav.nav-pagination {
    display: inline-block;
    width: 100%;
    border-top: 1px solid #ebebe6;
}

.search-room-item .room-zone {
    color: #aeaeae;
    font-size: 11px;
}

.search-room-item .room-title {
    font-size: 15px;
    line-height: 1em;
    min-height: 30px;
    display: flex;
    align-items: end;
}

.search-room-item a {
    color: #000;
    text-decoration: none;
    position: relative;
}

.search-room-item {
    margin: 40px 0 0;
}

.search-room-item .room-thumbnail {
    height: 320px;
    overflow: hidden;
    position: relative;
}

.margin-left-0 {
    margin-left: 0;
}

.margin-left-20 {
    margin-left: 20px;
}

.margin-left-26 {
    margin-left: 26px;
}

.margin-content-shared-spaces {
    margin: 0 10px;
}

.inner-gallery-item {
    opacity: 0;
    visibility: hidden;
    transition: .15s ease-in-out all;
    position: relative;
    z-index: 0;
    height: 0;
}

#slider .inner-gallery-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.search-room-item .room-thumbnail img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    transition: 0.15s ease-in-out all;
    opacity: 1;
}

.search-room-item .room-thumbnail img.active {
    z-index: 1;
    opacity: 1;
}

.listing-carousel-wrapper {
    line-height: 0;
}

.search-room-item .listing-carousel-wrapper a {
    display: inline-block;
    width: 100%;
    position: relative;
}

.dots div {
    padding: 4px;
    background-color: #fff;
    border-radius: 50%;
    opacity: 0.6;
    transition: 0.15s ease-in-out all;
}

.dots div.active {
    opacity: 1;
}

.container.container-lg {
    max-width: 1600px;
}

.dots {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    gap: 8px;
}

.loader {
    text-align: center;
    margin-top: 50%;
}

.loader svg {
    height: 20px;
    width: 20px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.room-listing-description {
    font-size: 15px;
    margin-top: 5px;
}

.search-room-item>a {
    margin-bottom: 10px;
    display: inline-block;
    width: 100%;
}

.whPin {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 30px;
    padding: 3px 10px;
    font-size: 14px;
    box-shadow: rgb(0 0 0 / 4%) 0 0 0 1px, rgb(0 0 0 / 18%) 0 2px 4px;
    transform: scale(1);
    transform-origin: 50% 50%;
    transition: transform 150ms ease 0s;
    cursor: pointer;
}

.htmlMarker:hover {
    z-index: 1000;
}

.whPin:hover {
    transform: scale(1.07);
}

.whPin svg {
    height: 14px;
    width: 14px;
    margin-left: 5px;
}

span.count-box {
    width: 16px;
    text-align: center;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    font-weight: bold;
    margin-right: -5px;
    margin-left: 3px;
    font-size: 12px;
}

.htmlMarker.active {
    z-index: 1000;
}

.htmlMarker.active .whPin svg {
    fill: #fff;
}

.htmlMarker.active .whPin {
    background-color: #000;
    color: #fff;
    transform: scale(1.07);
}

.htmlMarker.active .whPin .count-box {
    background-color: #fff;
    color: #000;
}

.not-results {
    padding: 15px;
}

.not-results p {
    font-size: 16px;
}

.not-results a {
    color: #000;
    font-size: 14px;
    text-decoration: none;
}

.back-button {
    color: #000 !important;
    text-decoration: none !important;
    font-weight: bold;
}

.map-zoom a:hover {
    background-color: #f9f9f9;
}

.restaurant-name {
    font-weight: bold;
    font-size: 17px;
    margin-bottom: 5px;
}

.restaurant-calls {
    font-size: 14px;
    margin-top: 20px;
}

.map-zoom .divider {
    width: 100%;
    height: 1px;
    background-color: #ddd;
}

.restaurant-photo {
    height: 200px;
    width: 200px;
    float: left;
    margin-right: 30px;
    flex: none;
    overflow: hidden;
}

.map-zoom a {
    display: inline-block;
    line-height: 0;
    padding: 10px;
    transition: 0.15s ease-in-out all;
}

.restaurant-item {
    display: none;
}

.restaurant-item.active {
    display: flex;
}

.map-zoom svg {
    height: 16px;
    width: 16px;
    fill: #000;
}

.map-zoom {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10001;
    background-color: #fff;
    box-shadow: rgb(0 0 0 / 12%) 0 6px 16px !important;
    border-radius: 5px;
    overflow: hidden;
    width: initial;
}

.restaurant-description {
    font-size: 14px;
}

.map-zoom svg * {
    fill: #000;
}

.breadcrumb li {
    line-height: 1em;
}

.breadcrumb svg {
    height: 15px;
    width: 15px;
}

.breadcrumb a {
    display: inline-block;
    line-height: 1em;
}

.breadcrumb {
    padding: 0;
    background-color: transparent;
    display: flex;
    align-items: center;
    color: #949494;
    font-size: 13px;
    margin-bottom: 10px !important;
}

.breadcrumb li:nth-child(1):before,
.breadcrumb li:nth-child(2):before {
    display: none;
}

.breadcrumb li:nth-child(1) a {
    margin-right: 12px;
}

.breadcrumb li:before {
    content: " " !important;
    height: 10px;
    background-color: #000;
    padding: 0 0.5px !important;
    margin: 0 10px;
    display: inline-block;
    vertical-align: middle;
}

.horizontal-gallery {
    position: relative;
    overflow: hidden;
    min-height: 130px;
    padding: 0;
}

.restaurant-calls svg {
    height: 15px;
    width: 15px;
    fill: #000;
}

.restaurant-calls svg * {
    fill: #000;
}

.restaurant-calls a {
    color: #000;
    font-size: 14px;
    text-decoration: none !important;
}

.restaurant-item:after {
    clear: both;
    content: " ";
    display: table;
}

.restaurant-item {
    clear: both;
    margin-bottom: 40px;
}

.gallery-section-wrapper {
    justify-content: space-between !important;
}

.gallery-section-wrapper .gallery-section:first-child {
    padding-right: 0;
}

.gallery-section {
    line-height: 0;
    height: 480px;
    justify-content: space-between;
    flex-direction: column;
}

.margin-left-auto {
    margin-left: auto;
}

.room-photo-item {
    height: inherit;
    display: inline-block;
    width: 100%;
}

.room-photo-item {
    height: 100%;
    display: inline-block;
}

.thumbnail-box {
    overflow: hidden;
    line-height: 0;
}

.room-photo-item img {
    height: 100%;
    max-width: none;
    width: 100%;
    object-fit: cover;
}

.gallery-icon {
    position: absolute;
    bottom: 10px;
    border-radius: 30px;
    z-index: 1;
    background: #fffbf2;
    border: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #000 !important;
    text-decoration: none !important;
    left: 25px;
    padding: 5px 10px;
}

.gallery-section.flex.flex-wrap a {
    height: 100%;
    max-height: 233px;
    justify-content: space-between;
}

.gallery-icon svg {
    height: 25px;
    width: auto;
    margin-right: 10px;
}

.padding-bottom-0 {
    padding-bottom: 0 !important;
}

.room-page h1 {
    margin: 0 !important;
    line-height: 0.8em;
}

.room-spaces div:not(.prevent):not(:first-child):before {
    content: " ";
    display: inline-block;
    width: 1px;
    height: 8px;
    vertical-align: middle;
    background-color: #000;
    margin: 0 6px 0 10px;
}

.room-page h3 {
    font-size: 40px;
    text-transform: uppercase;
}

.amt-item-box-icon svg {
    height: 80px;
    width: 80px;
}

.amt-item-text {
    line-height: 1em;
    min-height: 26px;
}

.amt-item-box {
    font-size: 13px;
    text-align: center;
    width: 100%;
    max-width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.amenities-list {
    display: flex;
    border-radius: 15px;
    flex-wrap: wrap;
}

.room-page hr {
    border-top: 1px solid #000;
    margin-top: 40px;
    margin-bottom: 40px;
}

.text-content {
    line-height: 1.8em;
}

.booking-box {
    background-color: #fff;
    padding: 30px 30px;
    border-radius: 20px;
}

.amt-item-box-icon.bed-icon svg {
    height: 80px;
    width: 80px;
}

.bed-title {
    margin-bottom: 5px;
}

.real-estates-page .hero-content h2 {
    font-size: 80px !important;
    margin-bottom: 30px;
}

.real-estates-page .hero-content p {
    text-transform: uppercase;
}

.booking-policies,
.booking-policies p {
    font-size: 14px !important;
}

.booking-policies .booking-policies-heading {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: bold;
}

.room-map #map {
    height: 400px;
}

.room-page .subtitle {
    letter-spacing: 5px;
    margin: 30px 0 10px;
    text-transform: uppercase;
}

.breadcrumb a {
    color: #000;
    text-decoration: none;
}

.listing-mobile-carousel {
    display: none;
}

.room-search-spaces div {
    display: flex;
    align-items: center;
    gap: 4px;
}

.room-search-spaces svg {
    height: 11px;
    width: 11px;
}

.main-full-container.about-page {
    height: initial;
    margin-top: 50px;
    margin-bottom: 50px;
    min-height: 65vh;
}

.careers-page h2 {
    text-transform: uppercase;
    font-size: 49px;
    line-height: 0.8em;
}

.room-search-spaces .beds svg {
    height: 18px;
    width: 18px;
}

.panel-title a {
    text-transform: uppercase;
}

.daterange>div {
    display: inline-block;
}

.search-field:not(.prevent):after {
    content: "";
    float: right;
    margin-left: auto;
}

.min-height {
    min-height: calc(100vh - 168px);
}

ol {
    list-style-type: none;
    counter-reset: item;
    margin: 0;
    padding: 0;
}

ol>li {
    display: table;
    counter-increment: item;
    margin-bottom: 0.6em;
}

ol>li:before {
    content: counters(item, ".") ". ";
    display: table-cell;
    padding-right: 0.6em;
}

li ol>li {
    margin: 0;
}

li ol>li:before {
    content: counters(item, ".") " ";
}

.terms-page p {
    font-size: 15px;
}

.alert-default {
    background-color: #fff;
}

.daterangepicker .ranges,
.daterangepicker .drp-calendar {
    float: left;
}

.daterangepicker.show-calendar {
    width: auto;
    gap: 15px;
    border-radius: 30px;
    border: 0 !important;
    box-shadow: 0 4px 15px rgb(0 0 0 / 20%);
}

.daterangepicker .calendar-table td.off.ends {
    color: transparent !important;
    cursor: default;
    background-color: transparent !important;
}

.daterangepicker td.active {
    position: relative;
    background-color: #000 !important;
    border-color: transparent;
    color: #fff;
    border-radius: 50%;
}

.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
    font-size: 14px;
    width: 35px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 50%;
}

.daterangepicker td.active span {
    display: inline-block;
    width: 35px;
    line-height: 35px;
    background-color: #000;
    border-radius: 50%;
    z-index: 100;
    position: relative;
}

div#selfie-container video,
div#document-container video {
    width: 100%;
    background-color: #000;
}

.daterangepicker td.in-range {
    background-color: #e9eceb;
}

.daterangepicker .ranges {
    display: none;
}

.daterangepicker.opensright:before,
.daterangepicker.opensright:after {
    display: none !important;
}

.alert-box {
    font-size: 14px;
    padding: 10px;
    margin-bottom: 30px;
}

.alert-box ul {
    margin: 0 !important;
}

.alert-box.danger {
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid red;
}

.alert-box.success {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
}

.alert-box p {
    font-size: 18px;
}

.photo-wrapper svg {
    height: 180px;
    width: 180px;
    background-color: #fff;
    border-radius: 50%;
    border: 5px solid #fff;
}

.photo-wrapper {
    border-radius: 50%;
    line-height: 0;
    height: 180px;
    width: 180px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.photo-wrapper:hover div {
    display: block !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.photo-wrapper div svg {
    background-color: transparent;
    border: 0;
    height: 20px;
    width: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkout-page h3.cfont {
    font-size: 50px;
    text-transform: uppercase;
}

.photo-wrapper img {
    height: 100%;
    width: 100%;
}

.discover-page hr {
    border-color: #000;
}

.service-description h4 {
    font-size: 25px;
    letter-spacing: 5px;
    margin-top: 0;
}

.service-description p {
    font-size: 16px !important;
}

.flex.service-item {
    margin-top: 10px;
    margin-bottom: 18px;
}

.service-description {
    margin-left: 25px;
}

.service-icon svg {
    width: 45px;
    height: 45px;
}

.no-scrolling {
    height: 100vh;
    overflow: hidden;
}

.error-page h1 {
    font-size: 200px;
    margin: 0;
    line-height: 1em !important;
}

.error-page h2 {
    font-size: 80px;
    margin: 0 !important;
}

.error-page a {
    color: #000 !important;
}

.stay-item {
    border: 2px solid #000;
    padding: 20px;
    margin-bottom: 20px;
}

.stay-thumbnail {
    width: 200px;
    margin-left: auto;
}

.stay-item .stay-days {
    height: 100%;
    font-size: 14px;
}

.stay-item .room-spaces div {
    display: inline-block;
}

.stay-item .room-title {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.stay-item .room-zone {
    color: #aeaeae;
    font-size: 11px;
}

.stay-item .stay-description {
    max-width: 400px;
    width: 100%;
    font-size: 14px;
}

.checkout-page a:not(.prevent) {
    border-bottom: 1px solid;
}

.checkout-page a {
    color: #000;
    text-decoration: none;
}

.booking-info-box .booking-box {
    box-shadow: 0 0 9px 0 #ccc;
    border-radius: 0;
    padding: 0;
}

.checkout-page .search-field.daterange {
    line-height: 34px;
}

.total-summary.prevent {
    margin-top: 0 !important;
    border-top: 0 !important;
}

.booking-box-description {
    padding: 15px;
}

.stay-item hr {
    border-color: #ccc;
}

.stay-item .stay-description p {
    font-size: 14px;
}

.stay-item a {
    color: #000 !important;
    text-decoration: none;
    font-size: 14px;
}

.border-dotted {
    border-bottom: 1px dotted;
}

.stay-icon {
    margin-right: 15px;
}

.stay-icon svg {
    height: 30px;
    width: 30px;
}

.wd-100 {
    width: 100%;
}

.wd-50 {
    width: 50%;
}

.tab-content .nav-tabs .active a {
    text-decoration: underline;
}

.tab-content .nav-tabs a {
    padding: 0;
    font-size: 25px;
    text-transform: uppercase;
    color: #000 !important;
    line-height: 1em;
    border: 0 !important;
    margin-right: 15px;
    background-color: #fff !important;
}

.tab-content .nav-tabs {
    margin: 0;
    border: 0 !important;
    margin-bottom: 30px;
}

.tab-content .nav-tabs a span {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 15px;
    text-transform: none;
    margin-left: 10px;
    text-decoration: none !important;
}

.tab-content .tab-pane .form-group {
    padding-top: 5px;
    margin: 0;
}

.tab-content .tab-pane .form-group label {
    font-size: 14px;
    font-weight: normal;
    color: #aeaeae;
    margin: 0;
}

.monthly-booking-form,
.booking-form {
    border-top: 1px solid;
    margin-top: 10px;
}

.discover-content {
    margin-top: 50px;
}

.discover-content-filters {
    padding: 20px;
    background-color: #eaebea;
    min-width: 210px;
}

.discover-content-filters h4 {
    margin: 0;
    border-bottom: 1px solid #000;
    margin-bottom: 15px;
}

.discover-content-filters .meal-filter-item:not(:last-child) {
    margin-bottom: 20px;
}

.meal-filter-item span {
    line-height: 1em;
}

.meal-filter-item.active .checkbox:after {
    content: " ";
    position: absolute;
    top: 1px;
    left: 1px;
    bottom: 1px;
    right: 1px;
    background-color: #000;
}

.meal-filter-item .checkbox {
    height: 16px;
    width: 16px;
    border: 1px solid #000;
    margin: 0;
    margin-left: auto;
    position: relative;
}

.restaurant-benefits {
    font-size: 14px;
    margin-top: 20px;
}

.tab-content .tab-pane .form-group .search-field,
.tab-content .tab-pane .form-group .form-control {
    border: 0;
    height: inherit;
    background-color: transparent !important;
    box-shadow: none;
    font-size: 16px;
    color: #000;
    border-bottom: 1px solid #000;
    border-radius: 0 !important;
    line-height: 1em;
    padding: 6px 0;
}

.profile-page a {
    color: #000;
    text-decoration: none;
    text-transform: none;
    font-size: 15px;
}

.booking-room-dates {
    font-size: 14px;
    margin-top: 20px;
}

.booking-room-location {
    color: #aeaeae;
    font-size: 11px;
}

.booking-room-title {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 5px;
    overflow: hidden;
}

.confirmation-wrapper {
    border: 2px solid;
}

.confirmation-content {
    padding: 50px;
}

.confirmation-wrapper .orange-section {
    background-color: #fdac04;
    padding: 50px;
}

.confirmation-wrapper .letter-spacing {
    letter-spacing: 3px;
    font-size: 14px !important;
}

.email-verification-wrapper {
    border: 2px solid;
    padding: 50px;
}

.confirmation-page p {
    font-size: 16px !important;
}

.verification-box input {
    border: 0;
    border-bottom: 1px solid;
    width: 100%;
    text-align: center;
    font-size: 28px;
    outline: none;
}

.confirmation-page a:not(.btn) {
    color: #000 !important;
    text-decoration: none !important;
}

.password-button {
    position: relative;
}

div#card-errors {
    font-size: 12px;
    color: red;
}

.slick-dots li {
    margin: 0;
}

.slick-dots li.slick-active button:before {
    opacity: 0.75;
    color: white;
}

.slick-dots li button:before {
    content: " ";
    padding: 4px;
    background-color: #fff;
    border-radius: 50%;
    height: 0;
    width: 0;
}

.password-button div {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    line-height: 0;
    display: inline-block;
    border-radius: 50%;
    background-color: transparent;
    padding: 3px;
    opacity: 0.4;
}

.password-button div svg {
    height: 20px;
    width: 20px;
}

.password-button div.active,
.password-button div:hover {
    opacity: 1;
    background-color: #f9f9f9;
}

.slick-dots {
    bottom: 0;
}

.apartment-carousel:hover .slick-prev:before,
.apartment-carousel:hover .slick-next:before {
    opacity: 0.6;
}

.partners-content {
    padding-left: 40px;
    padding-right: 40px;
}

.owner-partner-page form p {
    font-size: 14px;
}

.survey-page textarea {
    background-color: #edefee;
    font-size: 18px;
    border: 0;
    box-shadow: none !important;
    border-radius: 0;
    outline: none !important;
    padding: 20px;
}

.testimonial-quote {
    color: #ebac28;
    font-size: 90px;
    line-height: 1em;
    position: absolute;
    top: 20px;
    left: 20px;
}

.testimonials-wrapper {
    background-color: #fff;
}

.testimonials-wrapper .slick-track {
    height: initial;
}

.testimonials-wrapper .slick-list {
    padding: 100px 0;
}

.testimonial-item {
    border: 2px solid #afafaf;
    border-radius: 2px;
    padding: 20px;
    position: relative;
    padding-top: 75px;
    min-height: 340px;
}

.testimonial-item.middle-item {
    margin-top: -20px;
}

.testimonials-wrapper .slick-track {
    display: flex;
    gap: 10px;
}

.testimonial-author {
    font-weight: bold;
    margin-top: 5px;
}

.confirmation-subtitle {
    font-size: 18px;
}

.confirmation-time {
    font-size: 23px;
}

.sub-title {
    font-weight: bold;
    font-size: 18px;
}

.main-sub-text {
    margin-top: 15px;
}

ul.dropdown-menu.amenities-filter.prevent-on-click li {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
}

ul.dropdown-menu.amenities-filter.prevent-on-click li label {
    display: flex;
    gap: 10px;
}

.confirmation-title {
    font-size: 21px;
}

.packs-icon {
    margin-bottom: 40px;
}

.link-normal {
    color: #000 !important;
    text-decoration: none !important;
}

.packs-icon svg {
    height: 80px;
    width: 80px;
}

.packs-content {
    display: none !important;
    margin-top: 50px;
}

.packs-content.active {
    display: flex !important;
}

.pack-item-img img {
    object-fit: cover;
    height: 100%;
    transition: all 0.15s ease-in-out;
    transform: scale(1);
    width: 100%;
}

.pack-item-img {
    height: 300px;
    width: 300px;
    overflow: hidden;
}

.pack-item-content {
    padding-left: 30px;
}

.rating {
    display: flex;
    width: 100%;
    justify-content: start;
    overflow: hidden;
    flex-direction: row-reverse;
    position: relative;
}

.rating-0 {
    filter: grayscale(100%);
}

.rating>input {
    display: none;
}

.rating>label {
    cursor: pointer;
    width: 40px;
    height: 40px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23e3e3e3' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 76%;
    transition: 0.3s;
}

.rating>input:checked~label,
.rating>input:checked~label~label {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23fcd93a' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
}

.rating>input:not(:checked)~label:hover,
.rating>input:not(:checked)~label:hover~label {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23d8b11e' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
}

.footer-menu a {}

.restaurant-description-wrapper {
    flex-grow: 1;
}

.real-estates-page .advantage-list-item {
    font-size: 20px;
}

.tachado {
    text-decoration: line-through;
}

.real-estates-page .header a {
    font-size: initial;
}

.real-estates-page h3 {
    font-weight: 400;
    font-size: 30px;
}

.real-estates-page h2 {
    font-weight: bold;
    font-size: 115px !important;
    line-height: 0.8em;
}

.real-estates-page .hero-above h1 {
    font-size: 170px;
    line-height: 140px;
}

.real-estates-page .hero-above p {
    font-size: 13px;
    letter-spacing: 0.6em;
}

.real-estates-page .hero-above {
    margin: 0 !important;
    min-height: 80vh;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
}

.real-estates-page .form-title {
    font-size: 30px;
}

.real-estates-page .form-wrapper label {
    margin: 0;
}

.real-estates-page .form-wrapper .btn {
    font-size: 20px;
    font-weight: 400;
    border-radius: 25px;
    padding: 2px 15px;
}

.real-estates-page .form-wrapper .btn.btn-primary {
    color: #fff !important;
}

.real-estates-page .form-wrapper .form-group {
    margin-bottom: 40px;
}

.real-estates-page .form-wrapper a {
    color: #000 !important;
    text-decoration: none !important;
}

.real-estates-page .form-wrapper .form-control {
    border: 0;
    box-shadow: none;
    border-bottom: 1px solid #d2d2d2;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 16px;
}

.real-estates-page .real-estates-carousel {
    overflow: auto;
    gap: 20px;
}

.real-estates-page .hero-above .hero-content {
    margin: 250px 0;
}

.real-estates-page .advantage-counter {
    font-size: 45px;
}

.real-estates-page .advantage-list-item {
    border-top: 1px solid #d2d2d2;
    padding-top: 10px;
    padding-bottom: 15px;
}

.real-estates-page .hero {
    background-image: url("/static/images/real-estates/hero-new.jpeg");
}

.advantage-list-more {
    margin-top: 70px;
}

.advantage-list-more a {
    color: #000 !important;
    text-decoration: none;
    border-bottom: 1px solid;
}

.real-estates-page .experts-text {
    font-size: 20px;
}

.real-estates-page .advantage-list-items {
    display: none;
}

.photo-icon svg {
    height: 80px;
    width: 80px;
}

.buy-sell {
    font-size: 16px;
}

.photo-icon {
    border: 2px solid;
    padding: 20px;
    margin: auto;
    max-width: 320px;
    /* height: 320px; */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.real-estates-alliances-wrapper {
    justify-content: space-between;
}

.real-estates-alliances .partners-logo img {
    max-height: 60px;
}

.why-page img {
    width: 100%;
}

.payment-gateways .nav-tabs>li.active>a {
    border: 2px solid #000;
    background: #fff;
    color: #000;
    border-bottom-color: transparent !important;
}

.payment-gateways .tab-content {
    border: 2px solid #000;
    padding: 10px;
    border-radius: 0 0 5px 5px;
}

.payment-gateways .nav-tabs>li {
    float: left;
    margin-bottom: -3px;
}

.payment-gateways .nav-tabs>li>a {
    border: 2px solid transparent;
    border-radius: 4px 4px 0 0;
}

.wyndeals-wrapper-bar,
.wyndeals-wrapper {
    display: none;
}

.wyndeals-wrapper .wyndeals-cta a {
    color: #000 !important;
    font-size: 12px;
    margin-top: 40px;
    display: inline-block;
}

.wyndeals-wrapper .wyndeals-content {
    letter-spacing: 5px;
}

.wyndeals-wrapper .wyndeals-head {
    font-size: 80px;
    line-height: 1em;
    margin-top: 20px;
    margin-bottom: 30px;
}

.wyndeals-wrapper .wyndeals-icon svg {
    height: 32px;
    width: 32px;
}

.wyndeals-wrapper .wyndeals-box {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    position: fixed;
    bottom: 20px;
    left: 20px;
    padding: 40px 60px 20px 60px;
}

.wyndeals-wrapper .wyndeals-backdrop {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.2);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.wyndeals-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 14px;
    text-align: center;
    z-index: 1000001;
}

.wyndeals-close {
    position: absolute;
    right: 10px;
    top: 10px;
    display: inline-block;
    line-height: 20px;
    width: 20px;
    cursor: pointer;
}

.wyndeals-wrapper .wyndeals-head div {
    line-height: 0.85em;
}

.wyndeals-wrapper-bar {
    background-color: #c9e5e9;
    font-size: 14px;
    padding: 5px 0;
    width: 100%;
    color: #000 !important;
    text-decoration: none !important;
}

.restaurant-photo img {
    object-fit: cover;
    height: 100%;
    transition: all 0.15s ease-in-out;
    transform: scale(1);
    width: 100%;
}

.restaurant-description,
.restaurant-benefits {
    max-width: 80%;
}

.checkout-form label:not(.prevent) {
    margin-bottom: 0 !important;
    font-size: 12px;
    line-height: 1em;
    display: inline-block;
    width: 100%;
}

.checkout-page .container {
    max-width: 1020px;
}

.concurso-page {
    padding-top: 65px;
}

.award-property-hero .slick-prev:before,
.award-property-hero .slick-next:before {
    opacity: 0.6;
}

.concurso-page .heading a {
    font-size: 80px;
    display: inline-block;
    line-height: 1em;
    margin: 0 10px;
    text-decoration: none !important;
    color: #565656;
}

.gamechanger-light-page .concurso-page .heading a {
    color: #b4b4b4;
}

.concurso-page .heading a.active,
.concurso-page .heading a:hover {
    color: #000;
}

.gamechanger-dark-page .concurso-page .heading a.active,
.gamechanger-dark-page .concurso-page .heading a:hover {
    color: #fff !important;
}

.concurso-page .heading a span {
    font-size: 18px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.concurso-page .heading {
    margin-top: 40px;
}

.concurso-page h1 {
    font-size: 200px;
    line-height: 1em;
    margin-top: 0;
    margin-bottom: -40px;
}

.concurso-page h1.prevent {
    margin-bottom: 0;
}

.flex-end {
    align-items: end;
}

.footer.dark a {
    color: #fff;
}

.footer.dark {
    background-color: #000;
    color: #fff;
}

.dlocal-currency label {
    color: #000 !important;
    font-weight: bold !important;
    font-size: 16px !important;
}

.dlocal-currency {
    gap: 10px;
    color: #000 !important;
}

.dlocal-local-currency {
    /* display: none; */
}

label[disabled] {
    color: #999 !important;
}

.footer.dark .footer-menu,
.footer.dark .footer-menu a {
    color: #fff;
}

.footer.dark .newsletter-form input {
    color: #fff;
    border-bottom: 1px solid #fff;
}

.footer.dark .newsletter-form input::placeholder {
    color: #fff;
}

.footer.dark .newsletter-form button svg {
    fill: #fff;
}

.gamechanger-subtitle {
    font-size: 25px !important;
    font-weight: normal !important;
    margin: 0 !important;
}

.jury-item {
    margin-top: 35px;
    padding-top: 35px;
    border-top: 1px solid #000;
}

.award-propertiers+.award-propertiers {
    margin-top: 65px;
}

.award-property-list .active {
    color: #000;
}

.award-property-list {
    color: #b4b4b4;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.award-property-item {
    width: 20%;
}

.white-text {
    color: #fff;
}

.white-text .jury-item {
    border-top: 1px solid #fff;
}

.flex-self-bottom {
    align-self: flex-end;
}

.gamechanger-jury-title {
    line-height: 35px;
}

.gamechanger-jury-title span {
    line-height: 1em;
    display: inline-block;
    vertical-align: middle;
}

.award-slide {
    cursor: pointer;
}

.award-slide:hover {
    color: #000;
}

.award-properties+.award-properties {
    margin-top: 35px;
}

.full-width {
    width: 100%;
}

.width-482px {
    width: 482px;
}

.gamechangers-title {
    padding: 0 30px;
}

.gamechangers-title svg {
    width: 100%;
    height: auto;
}

.debug-mode {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: red;
    z-index: 100001;
    color: #fff;
    text-align: center;
    padding: 10px;
}

.payment-gateways .nav-tabs>li>a:hover {
    background-color: transparent !important;
    text-decoration: underline;
}

.dlocal-card-observation {
    padding-left: 15px;
    line-height: 1em;
}

div#card-errors-dlocal {
    font-size: 12px;
    color: red;
}

.daterangepicker.opensleft:before,
.daterangepicker.opensleft:after {
    display: none !important;
}

.confirmation-content h1 {
    margin-bottom: 20px;
}

.description-box {
    white-space: pre-wrap;
    line-height: 1.2em;
}

.th-footer {
    padding-right: 117px;
    padding-bottom: 30px;
    text-decoration: underline;
    font-style: normal;
    font-family: "Helvetica";
}

.casa_home-services p {
    font-size: 14px;
    line-height: 1.3;
}

.casa_home-services p:not(.prevent) {
    min-height: 85px;
}

.casa-lander h2.big-subtitle {
    margin: 0;
    font-size: 42px;
    text-transform: none !important;
    font-weight: normal;
    line-height: 1.3;
}

.text-normal {
    text-transform: none !important;
}

.casa-lander .btn {
    text-decoration: none;
}

.casa-lander .page-header-casa {
    font-family: Helvetica;
    font-size: 10px;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 0.5em;
}

.casa-lander textarea::-webkit-input-placeholder {
    color: #9D9D9D !important;
}

.casa_events-services {
    padding-left: 35px;
    padding-right: 35px;
}

.casa-h3-title {
    font-family: Nysé;
    font-size: 30px;
    line-height: 35px;
    letter-spacing: 0;
}

.casa-h3-title-new {
    color: #000;
    font-family: Nysé;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.casa-p-heading {
    font-family: Helvetica;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0;
    text-align: center;
}

.casa-p-heading.text-left {
    text-align: left !important;
}

.sub-heading-section {
    max-width: 648px;
    margin: auto;
}

.sub-heading-section div {
    margin: 10px 67px 0 !important;
}

.margin-top-13 {
    margin-top: 13px !important;
}

.margin-top-9 {
    margin-top: 9px !important;
}

.margin-bottom-5 {
    margin-bottom: 5px !important;
}

.sub-heading-section a {
    font-size: 12px;
    margin-top: 16px;
    color: #000;
    text-decoration: underline;
    display: inline-block;
    margin-bottom: 16px;
}

.margin-top-82 {
    margin-top: 82px;
}

.margin-top-54 {
    margin-top: 54px;
}

.margin-top-50 {
    margin-top: 54px;
}

.margin-bottom-50 {
    margin-bottom: 50px;
}

.casa-h3-regular {
    font-family: Nysé;
    font-size: 20px;
    line-height: 23px;
    letter-spacing: 0;
    text-align: left;
}

.casa-p-regular {
    font-family: Helvetica;
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 0;
    text-align: left;
    margin: 0;
}

.casa-regular-content a {
    color: #7B7B7B;
    font-family: Helvetica;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    margin-top: 20px;
    display: inline-block;
}

.casa-col {
    padding: 0 35px !important;
}

.margin-bottom-56 {
    margin-bottom: 56px;
}

.margin-bottom-170 {
    margin-bottom: 170px;
}

.margin-bottom-100 {
    margin-bottom: 100px;
}

.margin-bottom-30 {
    margin-bottom: 30px !important;
}

.margin-bottom-36 {
    margin-bottom: 36px !important;
}

.min-height-96 {
    min-height: 96px;
}

.margin-top-100 {
    margin-top: 100px;
}

.casa-subtitle-normal {
    font-family: Helvetica;
    font-size: 40px;
    font-weight: 400;
    line-height: 46px;
    letter-spacing: 0em;
}

.casa-title-big {
    font-family: Helvetica;
    font-size: 40px;
    font-weight: 400;
    line-height: 46px;
    letter-spacing: 0;
    text-align: left;

}

.max-width-580 {
    max-width: 580px;
}

.margin-top-64 {
    margin-top: 64px;
}

.margin-top-112 {
    margin-top: 112px;
}

.btn-casa {
    text-decoration: none;
    font-size: 10px !important;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 0;
    text-align: center;
    padding: 7px 17px;
}

.btn-casa-normal {
    font-size: 12px !important;
}

.casa-h2-subtitle {
    font-family: Nysé;
    font-size: 50px;
    line-height: 38px;
    letter-spacing: 0;
    /* text-align: center; */
}

.hero h1 {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.casa-p-small {
    font-size: 10px;
    font-weight: 400;
    line-height: 11px;
    letter-spacing: 0;
    text-align: left;
}

.casa-p-normal {
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 0;
    text-align: left;
}

.casa-p-normal a {
    color: #000;
    text-decoration: underline;
}

.margin-top-30 {
    margin-top: 30px !important;
}

.flex-gap-20 {
    gap: 20px;
}

.faq-page .panel-title,
.faq-page .panel-body {
    font-size: 14px;
}

.full-page {
    height: 100vh;
}

.casa-main-heading h3 {
    font-family: Helvetica;
    font-size: 10px;
    font-weight: 400;
    line-height: 11px;
    letter-spacing: 0.6em;
    text-align: center;
}

.casa-main-heading h1 {
    color: #000;
    font-family: Nysé;
    font-size: 57.542px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.casa-main-heading p {
    color: #000;
    font-family: Helvetica;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 740px;
}

.margin-top-40 {
    margin-top: 40px;
}

.casa-logo svg {
    height: 49px;
    width: 168px;
    left: 564px;
    top: 90px;
    border-radius: 0px;
}

.casa-choose-wrapper img {
    width: 100%;
}

.casa-choose-text-p {
    color: #000;
    font-family: Nysé;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.casa-choose {
    color: #000 !important;
    text-decoration: none !important;
}

.margin-top-70 {
    margin-top: 70px;
}

.casa-choose-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 0%);
}

.casa-p-16 {
    font-size: 16px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.casa-p-14 {
    font-size: 14px !important;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0;
}

.casa-p-32 {
    font-size: 32px !important;
}

.margin-top-15 {
    margin-top: 15px;
}

.casa-letter-spacing {
    letter-spacing: 5px;
}

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

.margin-top-130 {
    margin-top: 130px;
}

.margin-top-140 {
    margin-top: 140px !important;
}

.casa-link {
    color: #000000 !important;
    text-decoration: none !important;
}

.margin-top-200 {
    margin-top: 200px;
}

.header.dark.search-header {
    margin: 0 !important;
}

.casa-h1-page-header {
    font-family: Nysé;
    font-size: 60px;
    line-height: 70px;
    letter-spacing: 0;
}

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

.other-rooms-links .btn {
    background-color: transparent;
    border: 1px solid #000;
    color: #000;
    margin: 0 10px;
    font-size: 12px;
    width: 155px !important;
    height: 51px;
}

.margin-top-20 {
    margin-top: 20px;
}

.margin-top-80 {
    margin-top: 80px;
}

.margin-top-25 {
    margin-top: 25px !important;
}

.sticky-col {
    position: sticky;
    top: 50px;
}

.big-carousel img {
    width: 100%;
}

.events img {
    width: 100%;
}

form.main-search-form {
    max-width: 560px;
    margin: auto;
}

.scrolling-bar {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 0;
}

.scrolling-bar a {
    flex: 0 0 auto;
}

.otto-title {
    line-height: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.big-carousel-arrows a {
    display: inline-block;
    text-decoration: none !important;
}

.big-carousel-arrows div {
    display: inline-block;
    cursor: pointer;
}


.container-slider {
    max-width: 100%;
}

.button-slider {
    position: absolute;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 5px 0;
    color: #3c376f;
    font-size: 2rem;
}

.button-slider span {
    position: relative !important;
    display: inline-block !important;
    transform: translateX(0) !important;
    transition: transform 0.3s ease !important;
}

#slider {
    width: 100%;
    overflow: hidden;
    min-height: calc(100vh - 110px);
    position: relative;
}

.slide img {
    width: 100%;
    height: auto;
}

.previous {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    user-select: none;
    background-color: rgba(244, 240, 240, 0.349);
    z-index: 100;
    transform: translateY(-50%);
}

.previous {
    left: 0;
}

.next {
    right: 0;
}

.previous:hover,
.next:hover {
    color: rgb(0, 0, 0);
    text-decoration: none;
    background-color: rgba(244, 240, 240, 0.82);
}

.slider-nav ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center;

}

.slider-nav li {
    display: flex !important;
    flex: 2 !important;
    text-align: center !important;
    justify-content: center;
}

.img-slider {
    max-width: 100% !important;
    display: none !important;
    box-shadow: 10px 10px 20px 0 rgba(94, 47, 59, 0.2) !important;
}

.img-slider.active {
    display: block !important;
    -webkit-animation: fadeImg 0.8s !important;
    animation: fadeImg 0.8s !important;
}

.slider-nav .arrow {
    flex: 0 0 15% !important;
}

.slider-nav a {
    flex-basis: 100% !important;
    display: flex !important;
    align-items: center !important;
}

.slider-nav span {
    display: block !important;
    width: 100% !important;
}

@-webkit-keyframes fadeImg {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeImg {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


.break-lines {
    white-space: pre-line !important;
}

.casa-data-sent {
    text-align: center;
}

.casa-data-message {
    display: inline-block;
    font-size: 13px;
    font-weight: bold;
    font-style: italic;
}

.availability {
    color: #000 !important;
    text-decoration: none !important;
    font-size: 12px;
}

.other-rooms-links a {
    text-decoration: none !important;
}

.footer-menu a {
    display: block;
    padding: 5px 0;
}

.room-daterange.search-field .text {
    flex-grow: 1;
}

.room-daterange.search-field {
    display: flex;
}

.floating-booking-wrapper {
    display: none;
    background-color: #f9f7f5;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10001;
    padding: 10px 20px;
    box-shadow: 0 -6px 4px rgb(0 0 0 / 10%);
}

.floating-booking-wrapper {
    font-size: 13px;
}

.floating-booking-wrapper .room-item-per-night {
    font-weight: bold;
    font-size: 16px;
}

.floating-booking-wrapper .room-item-dates {
    font-weight: bold;
    text-decoration: underline;
}

.floating-booking-wrapper .btn {
    font-size: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
}

#slider img {
    position: absolute;
    left: 0;
    object-fit: cover;
    transition: .15s ease-in-out all;
    opacity: 0;
    height: 100%;
}

.ms-auto {
    margin-left: auto !important;
}

.casa-room-information {
    position: relative;
    bottom: 40px;
    z-index: 100;
    color: #fff;
    font-size: 14px;
    height: 0;
}

.other-rooms-links {
    margin-top: 30px;
}

.casa-room-information-label {
    font-family: Nysé;
    font-size: 32px;
}

.casa-room-information-icon svg {
    margin-right: 10px;
}

.casa-previous,
.casa-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 38px;
    height: 38px;
    padding: 7px 11px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    user-select: none;
    z-index: 100;
    transform: translateY(-50%);
    border: 1px solid;
    border-radius: 69px;
    background-color: transparent !important;
}

.casa-previous {
    left: 55px;
}

.casa-next {
    right: 55px;
}

.casa-previous:hover,
.casa-next:hover {
    color: rgb(0, 0, 0);
    text-decoration: none;
    background-color: rgba(244, 240, 240, 0.82);
}

.casa-previous:hover,
.casa-next:hover {
    transform: translateY(-50%) scale(1.2) !important;
}


.casa-slider>ul.slider {
    position: relative;
    width: 100%;
}

.casa-slider>ul.slider h1 {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.6);
    padding: 10px;
    left: 50%;
    top: 100px;
    transform: translate(-50%, -50%);
}

.casa-slider>ul.slider li {
    position: absolute;
    left: 0px;
    top: 0px;
    opacity: 0;
    width: inherit;
    height: inherit;
    transition: opacity .5s;
    background: #fff;
    overflow: hidden;
    background-color: transparent;
    max-width: 100%;
    max-height: 841px;
    display: inline-block;
    width: 100%;
}

.casa-slider>ul.slider li img {
    width: 100%;
    object-fit: cover;
    margin: 0;
    object-fit: cover;
    height: 100% !important;
    transition: all 4s ease-in-out;
    transform: scale(1);
    width: 100% !important;
}

.casa-slider>img {
    width: 100%;
    object-fit: cover;
    margin: 0;
    object-fit: cover;
    height: 100% !important;
    transition: all 4s ease-in-out;
    transform: scale(1);
    width: 100% !important;
}

.casa-slider>ul.slider li:first-child {
    opacity: 1;
    /*Mostramos el primer <li>*/
}

.casa-slider>ul.slider li:target {
    opacity: 1;
    /*Mostramos el <li> del enlace que pulsemos*/
}

.casa-slider>.menu {
    bottom: 9px;
    position: absolute;
    text-align: center;
    margin: 20px;
    padding-left: 0px;
    left: 48%;
}

.casa-slider>.menu li {
    display: inline-block;
    text-align: center;
}

.casa-slider>.menu li a {
    display: inline-block;
    text-decoration: none;
    background-color: #fff;
    padding: 2px;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    margin-right: 10px;
}

.casa-hero {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 55px;
    font-family: Nysé;
    font-size: 20px;
    line-height: 23px;
    color: rgb(255, 255, 255);
}

.casa-hero-slide {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 65px;
    font-family: Nysé;
    font-size: 20px;
    line-height: 23px;
    z-index: 4;
    color: rgb(255, 255, 255);
}

.home-casa-img-wapper {
    height: 663px;
    position: relative;
    margin-top: 50px;
}

.home-casa {
    padding-top: 50px;
}

.home-casa h3 {
    font-family: "Nysé";
    font-size: 30px;
    line-height: 35px;
    text-align: center;
    margin-bottom: 0;
}

.home-casa p {
    font-size: 14px;
    line-height: 16px;
    max-width: 724px;
    margin: 20px auto 0;
}

.home-casa .btn {
    margin-top: 45px;
    font-size: 12px;
    padding: 7px 25px;
    border-radius: 20px;
}

.casa-slider .carousel {
    height: 663px;
}

.casa-slider .carousel-inner,
.casa-slider .carousel-inner .item,
.casa-slider .carousel-inner .item img {
    height: 100%;
}

.casa-slider .carousel-inner .item img {
    object-fit: cover;
    margin: 0;
    height: 100% !important;
    transition: all 4s ease-in-out;
    transform: scale(1);
    width: 100% !important;
}

.casa-slider li {
    color: transparent;
}

.new-form label {
    margin-bottom: 0 !important;
    font-size: 12px !important;
    line-height: 1em;
    display: inline-block;
    width: 100%;
}

.container-casa-img {
    overflow: hidden;
    background-color: transparent;
    height: 100%;
    max-height: 300px;
    display: inline-block;
    max-width: 100%;
    width: 100%;
}

.container-casa-img img {
    object-fit: cover;
    height: 100% !important;
    transition: all 4s ease-in-out;
    transform: scale(1);
    width: 100% !important;
}

.casa-sub-heading-section {
    max-width: 853px !important;
}

.centenario-home-img {
    overflow: hidden;
    background-color: transparent;
    height: 380px;
    max-height: 100%;
    display: inline-block;
    max-width: 100%;
    width: 570px;
}

.centenario-shared-spaces-img {
    overflow: hidden;
    background-color: transparent;
    height: 100%;
    max-height: 100%;
    display: inline-block;
    max-width: 100%;
    width: 100%;
}

.centenario-shared-spaces-img img,
.centenario-home-img img {
    object-fit: cover;
    height: 100% !important;
    transform: scale(1);
    width: 100% !important;
}

#country-code {
    border: none;
    border-bottom: 1px solid #000000;
    margin-right: 10px;
}

.booking-summary {
    font-size: 14px;
}

.total-summary {
    padding-top: 28px !important;
}

.summary-wrapper+.summary-wrapper {
    padding-top: 10px;
}

.total-to-pay {
    font-size: 16px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #000;
}

.checkin-only {
    color: #777 !important;
}

.centenario-house-img {
    width: 481px;
    height: 380px;
}

.casa-centenario-about-img {
    width: 205px;
    height: 260px;
}

.casa-centenario-about-img img,
.centenario-house-img img {
    object-fit: cover;
    height: 100% !important;
    transform: scale(1);
    width: 100% !important;
}

.casa-centenario-about-text {
    width: 481px;
}

.dobleelle-day-cafe {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 380px;
}

.dobleelle-p-home {
    height: 100px;
}

.casa-dobleelle-about-text {
    width: 500px;
}

.dobleelle-about-title {
    font-size: 32px !important;
}

.casa-doblell {
    position: absolute;
    top: 70%;
    left: 50%;
    width: 760px;
    transform: translate(-50%, -50%);
}

.casa-doblell form {
    border-radius: 20px 20px 20px 20px !important;
    box-shadow: 0px -17px 20px 0px rgba(0, 0, 0, 0.25) !important;
    padding: 0;
    background: rgba(255, 255, 255, 0.77) !important;

}

.casa-doblell-explore {
    position: absolute;
    top: 95%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.casa-doblell-explore a {
    color: #FFF;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
}

.casa-doblell-explore svg * {
    fill: #ffff !important;
}

.casa-doblell-explore svg {
    width: 19px !important;
    height: 9px !important;
}


.casa-doblell-explore-hide {
    display: none;
}

.doblell-h2-subtitle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 682px;
    transform: translate(-50%, -50%);
    color: #fff;
}

.doblell-hero {
    background-position: center;
    background-size: cover;
    position: relative;
    min-height: 100vh;
}

#sliderDoblell {
    width: 100%;
    overflow: hidden;
    min-height: 100vh;
    position: relative;
}

#sliderDoblell img {
    position: absolute;
    left: 0;
    object-fit: cover;
    transition: .15s ease-in-out all;
    height: 100%;
    width: 100%;
}


#sliderDoblell .inner-gallery-item.active {
    opacity: 1;
    visibility: visible;
}

.btn-primary-casa {
    display: flex !important;
    width: 170px !important;
    height: 35px !important;
    padding: 8.292px 24.877px !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 9.214px !important;
    border-radius: 57px !important;
    background-color: #000 !important;
    color: #fff !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
}

.casa-hero-bellow form .form-group {
    padding: 24px;
    border-right: 0.5px solid #B3B3B3;
}

.form-button {
    padding: 24px;
}