@font-face {
    font-family: 'Acumin Pro ExtraCondensed Bold';
    src: url("/static/fonts/Acumin Pro ExtraCondensed Bold.otf") format("opentype");
    /* font-display: swap; */
}

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

:root {
    --vh: 9px
}

html,
body {
    transition: .15s ease-in-out all;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
}

.width-100 {
    width: 100% !important;

}


.width-345px {
    width: 345px !important;
}

.width-360px {
    max-width: 360px !important;
    width: 100%;
}


.width-490 {
    width: 490px;

}

.top_4_ne {
    top: -4px;
}

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

.background-white {
    background: #FFF;
}

/*
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: 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: .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: .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: .25;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
    opacity: .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 .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 {
    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;
    display: none;
    line-height: 12px;
    vertical-align: middle;
}

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

.daterangepicker .drp-buttons .cancelBtn:hover,
.daterangepicker .drp-buttons .cancelBtn {
    position: relative;
    margin-left: 9px;
    font-size: 15px;
    font-weight: bold;
    padding: 4px 8px;
    right: 380px;
    bottom: 20px;
    text-decoration-line: underline;
    background-color: #fff;
}

.daterangepicker .drp-buttons .drp-selected,
.daterangepicker .drp-buttons .applyBtn {
    display: none;
}

.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: .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;
}

.wh-b-solid.m-progress:before {
    border: 1px solid #000;
    border-top-color: transparent;
    border-bottom-color: transparent;
}

.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: 'Acumin Pro ExtraCondensed Bold', sans-serif !important;
    text-transform: uppercase !important;
}

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

.container-xl {
    max-width: 1440px !important;
}

.container-md {
    max-width: 1110px !important;
}

.container-sm {
    max-width: 676px !important;
}

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

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

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

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

.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-justify-between {
    justify-content: space-between !important;
}

.flex-justify-around {
    justify-content: space-around !important;
}

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

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

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

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

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

.flex-justify-around {
    justify-content: space-around !important;
}

.flex-gap {
    gap: 10px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.flex-1 {
    flex: 1;
}

.flex-8 {
    flex: 8;
}

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

.hero:not(.hero-mobile) {
    background-image: url('/static/images/home/hero.jpg');
}

.hero:not(.hero-mobile) {
    background-image: url('/static/images/home/hero.jpg');
}

.hero.hero-mobile {
    background-image: url('/static/images/home/hero.jpg');
}

.hero.hero-real-estate {
    background-image: url('/static/images/real-estates/hero-new.jpg') !important;
}

.hero.hero-colombia {
    background-image: url('/static/images/home/hero.colombia.jpg') !important;
}

.hero.hero-colombia {
    background-image: url('/static/images/home/hero.colombia.jpg') !important;
}

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

.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;
}

.owner-page {
    background-image: url('/static/images/owners/owner-hero.jpg') !important;
}

.property-page {
    background-image: url('/static/images/owners/property-hero.jpg') !important;
}

.hero-property,
.hero-owner {
    margin-top: 241px;
    color: #fff;
    margin-bottom: 50px;
    width: 955px;
}

.hero-property h1,
.hero-owner h1 {
    font-size: 110px;
    margin: 0;
    line-height: 120px;
}

.hero-owner p {
    margin: 0;
    letter-spacing: 7px;
    font-size: 16px;
    text-transform: uppercase;
}

.hero-property p {
    margin: 0;
    letter-spacing: 7px;
    font-size: 14px;
    text-transform: uppercase;
}

.hero-owner-btn:hover {
    text-decoration: none;
    color: #fff;
}

.hero-owner-btn {
    display: inline-flex;
    height: 36px;
    background: transparent;
    padding: 11px 31px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 57px;
    color: #fff;
    border: 2px solid #FFF;
    text-decoration: none;
}

.real-estate-sessio-height {
    min-height: 700px;
}

.real-estate-session {
    text-align: center;
}

.real-estate-session .title {
    font-size: 32px;
}

.real-estate-session .register {
    font-size: 14px;
    font-family: Helvetica, sans-serif !important;
}

.real-booking-form-terms,
.real-estate-session .terms {
    color: #878787;
    font-size: 14px;
    line-height: 1em;
}

.real-estate-session .register a {
    color: #000;
    font-size: 14px;
    text-decoration-line: underline;
    font-family: Helvetica, sans-serif !important;
}

.real-estate-session .btn {
    display: flex;
    width: 293px;
    height: 42px;
    padding: 9px 27px;
    font-family: Helvetica, sans-serif;
    font-size: 16px;
    justify-content: center;
    align-items: center;
    border-radius: 57px;
}

.real-estate-text {
    font-size: 22px;
    line-height: 120%;
}

.real-estate-btn {
    border-radius: 37px;
    border: 1px solid #FFF;
    background: rgba(255, 255, 255, 0.00);
    display: flex;
    width: 184px;
    height: 33px;
    padding: 8px 20px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    color: #FFF;
    font-size: 18px;
    text-transform: uppercase;
}

.real-estate-btn:hover {
    color: #FFF;
    text-transform: uppercase;
    text-decoration: none;
}

.real-estate-contact a {
    color: #000;
    font-family: Helvetica, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}

.real-estate-contact p {
    font-size: 22px;
    margin-bottom: 47px;
}

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

.hero-above h1 {
    font-size: 100px;
    margin: 0;
    line-height: 120px;
}

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

.hero-estate {
    color: #fff;
    margin-bottom: 50px;
}

.hero-estate h1 {
    font-size: 120px;
    margin: 0;
    line-height: 120px;
}

.hero-estate p {
    margin: 0;
    font-size: 14px;
    line-height: 112%;
    letter-spacing: 7px;
}

.hero-events {
    margin-top: 230px;
    color: #fff;
    margin-bottom: 210px;
}

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

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

}

.real-estate-h1 {
    font-size: 60px;
}

.real-estate-h2 {
    font-size: 100px !important;
}

.subherothird-p {
    color: #000;
    font-family: Helvetica, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.real-estate-buy svg {
    width: 26px;
    height: 26px;
    margin-right: 16px;
}

.call-to-action a {
    font-size: 14px;
    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;
}

.terms-page h1,
.cancellation-page h1 {
    margin: 0;
    font-size: 40px !important;
    text-transform: uppercase;
    line-height: 0.9em;
}

.cancellation-page span {
    font-size: 14px !important;
}

.cancellation-p {
    font-size: 12px;
    line-height: 14px;
    color: #747474;
}

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

.hero-bellow {
    max-width: 1020px;
    width: 100%;
    margin-top: 120px;
    margin-bottom: 50px;
}

.property-page .hero-bellow,
.owner-page .hero-bellow {
    max-width: 1020px;
    width: 100%;
    margin-top: 0;
    text-align: center;
    margin-bottom: 50px;
}

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

.text-initial {
    text-transform: initial;
}

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

.new-hero-above.hero-bellow form .form-group {
    width: initial;
}

.new-hero-above.hero-bellow form .form-group.border-left {
    margin-left: 20px;
    border-left: 1px solid #B3B3B3;
}

.hero-bellow form .form-group {
    width: 26%;
    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 label 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 .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 label .icon {
    margin-right: 5px;
    line-height: 0;
    min-width: 15px;
}

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

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

.pointer {
    cursor: pointer;
}

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

.container.section h2 {
    margin: 0;
    font-size: 40px;
    text-transform: uppercase;
}

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

.local-traveller-description {
    width: 714px;
    font-size: 14px;
    text-align: center;
}

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

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

.destination-image {
    overflow: hidden;
    background-color: transparent;
    height: 400px;
    max-height: 400px;
    display: inline-block;
    max-width: 290px;
    width: 290px;
}

.destinations-item {
    width: 100%;
}

.real-estate-item img {
    width: 100% !important;
}

.real-estate-item {
    overflow: hidden;
    background-color: transparent;
    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: 0;
    display: inline-block;
    font-weight: normal;
    /* added to remove h3 bold */
}

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

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

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

.col-sm-p25 {
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
}

.col-sm-p50 {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
}

.wh-amenity-label {
    text-transform: uppercase;
    letter-spacing: 0.4em;
    line-height: 1.2;
    margin-top: 10px;
    margin-bottom: 40px;
    display: inline-block;
    width: 90%;
    min-height: 60px;
}

.point-backgraound-azul {
    background: #CBE6EA;

}

.point-gradiente {
    background: linear-gradient(180deg, rgba(203, 230, 234, 1) 46%, rgba(255, 255, 255, 1) 100%);
}

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

.point-title {
    color: #000;
    text-align: center;
    font-family: 'Acumin Pro ExtraCondensed Bold', sans-serif;
    text-transform: uppercase;
}

.point-title h1 {
    font-size: 150px;
}

.point-subtitle {
    color: #000;
    font-family: 'Acumin Pro ExtraCondensed Bold', sans-serif;
    text-align: center;
    text-transform: uppercase;
}

.point-subtitle p {
    font-size: 50px;
    line-height: 46px;
    max-width: 842px;
    width: 100%;
}

.point-img {
    object-fit: cover;
    height: 100% !important;
    transform: scale(1);
    width: 100% !important;
}

.point-what {
    text-align: center;
}

.point-what-h2 {
    font-family: 'Acumin Pro ExtraCondensed Bold', sans-serif;
    font-size: 50px !important;
    line-height: 88.5%;
    text-transform: uppercase;
}

.point-text,
.point-text:hover,
.point-what p {
    color: #000;
    max-width: 585px;
    width: 100%;
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    line-height: normal;
    text-decoration: none;
}

.point-leavel-div {
    width: 180px !important;
}

.point-leavel div {
    max-width: 205px;
    width: 100%;
}

.point-leavel-num {
    font-family: 'Acumin Pro ExtraCondensed Bold', sans-serif;
    font-size: 40px;
}

.point-leavel-text {
    font-family: Helvetica, sans-serif;
    font-size: 16px;
    line-height: normal;
}

.point-leavel-title {
    max-width: 440px;
    width: 100% !important;
}

.point-leavel-title p {
    font-family: Helvetica, sans-serif;
    font-size: 18px;
}

.point-leavel-2 p {
    max-width: 500px;
    width: 100%;
    line-height: normal;
}

.point-leavel-2 svg {
    width: 25px;
    height: 25px;
}

.point-line {
    border-style: solid;
    border-color: #bfbfbf;
    border-width: 1px 0 0 0;
    width: 100% !important;
    height: 0;
    position: relative;
    transform-origin: 0 0;
    transform: rotate(0deg) scale(1, 1);

}

.point-line-dot {
    border-style: solid;
    border-color: #bfbfbf;
    border-width: 1px 0 0 0;
    width: 100% !important;
    height: 0;
    position: relative;
    transform-origin: 0 0;
    transform: rotate(0deg) scale(1, 1);
    top: 139px;
}

.point-line-dot-ver {
    display: none;
}

.point-travel {
    width: 280px;
    color: #000;
    font-family: 'Acumin Pro ExtraCondensed Bold', sans-serif;
    font-size: 40px;
    font-style: normal;
    line-height: normal;
    text-transform: uppercase;
}

.point-travel-title {
    margin-top: 0;
}

.point-btn {
    text-transform: inherit !important;
}

.point-travel-title-text {
    width: 767px;
    font-size: 18px;
    margin-top: 0;
    line-height: normal;
}

.point-travel-dot {
    border-radius: 50%;
    width: 19px;
    height: 19px;
    position: relative;
    z-index: 101;
}

.point-dot-rose {
    background: #F7BEC9;
}

.point-dot-yellow {
    background: #FDAC04;
}

.point-dot-blue {
    background: #cbe6ea;
}

.point-travel-text {
    width: 280px;
    padding-top: 28px;
}

.point-travel-text ul {
    padding-left: 3px;
}

.point-travel-text li {
    color: #D9D9D9;
    list-style: outside;
    line-height: normal;
    margin-bottom: 15px;
}

.point-travel-text span {
    color: #000;
    list-style: outside;
}

.point-colapse p,
.point-colapse span {
    color: #000;
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.point-col-sm-4,
.point-col-sm-8 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    float: left;
}

.point-col-sm-4 {
    width: 38.333333%;
}

.point-col-sm-offset-4 {
    margin-left: 38.333333%;
}

.point-col-sm-8 {
    width: 61.666667%;
}

.margin-15 {
    margin: 15px;
}

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

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

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

.margin-left-10 {
    margin-left: 10px !important;
}

.margin-left-15 {
    margin-left: 15px !important;
}

.margin-left-10 {
    margin-left: 15px !important;
}

.margin-left-70 {
    margin-left: 70px !important;
}

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

.margin-left-70 {
    margin-left: 70px !important;
}

.margin-left-60 {
    margin-left: 60px !important;
}

.wh-amenity-label h3 {
    all: unset;
    font-size: 12px;
    color: #000;
}

.list-unstyled svg {
    margin-right: 5px;
}

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;
}

.local-travel h2 {
    font-size: 100px !important;
    margin: 0;
    text-align: center;
}

.local-traveller-title {
    max-width: 330px;
    margin: auto;
}

.local-travel-label {
    position: relative;
    bottom: 45px;
    color: #FFFFFF;
    font-size: 14px;
}

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

.subherothird.real-estate {
    background-image: url('/static/images/real-estate/sell.jpg') !important;
}

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

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

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

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

.real-estate-say {
    width: 791px !important;
}

.real-estate-svg svg {
    height: 45px;
    margin: 45px;
}

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

.subscribe-newsletter-new {
    min-height: 670px;
    background-image: url('/static/images/about/wh_zuzu.jpg');
    background-position: center;
    background-size: cover;
    color: #fff;
    text-transform: uppercase;
}

.subscribe-newsletter-new p {
    margin: 0;
    letter-spacing: 5px;
    font-size: 14px;
    font-weight: normal;
}

.subscribe-newsletter-new input::placeholder,
.subscribe-newsletter-new input::-webkit-input-placeholder,
.subscribe-newsletter-new input {
    color: #fff !important;
}

.subscribe-newsletter-new .newsletter-button {
    color: #fff !important;
    border: 1px solid #fff !important;
    border-radius: 33px;
    background: transparent !important;
}

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

.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;
    border-bottom: 1px solid #000;
    width: 100%;
    display: inline-block;
    font-size: 15px;
    text-decoration: none !important;
}

.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;
}

.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: 400;
}

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

.btn-secondary {
    background: transparent !important;
    color: #000 !important;
    border-color: #000 !important;
}

.btn-sold-out {
    background: #D2D2D2 !important;
    color: #000 !important;
    border-color: #D2D2D2 !important;
}

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

.text-14 {
    font-size: 14px !important;
}

.footer-form .main-icon {
    width: 10%;
    margin-right: 80px;
}

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

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

.line {
    position: absolute;
    width: 100%;
    height: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.menu-col {
    /* width: 14%; */
}

.menu-col-new {
    width: 20%;
}

.footer-title {
    text-decoration-line: underline;
    font-size: 18px !important;
    margin-bottom: 15px;
}

.footer-menu,
.footer-menu a {
    color: #000;
    font-size: 14px;
    line-height: 25px;
}

.list-social a {
    display: contents !important;
}


.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: #949494;
}

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

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


.checkout-event-page .search-field::placeholder,
.newsletter-form input::placeholder {
    color: #949494;
    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: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    padding: 10px 0;
    transition: .1s ease-in-out all;
    background-color: #fff;
}

.header-fixed {
    box-shadow: 0 2px 7px rgb(0 0 0 / 10%);
}

.header-fixed-transparente {
    background: rgb(255 255 255 / 0%) !important;
}

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

.wh_mr-40 {
    padding-right: 40px !important;
}

.header a {
    color: #fff !important;
    font-size: 16px;
}

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

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

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

.relative {
    position: relative;
}

.main-menu-dropdown .dropdown-menu a {
    font-style: normal;
    font-weight: 400;
    font-family: 'Acumin Pro ExtraCondensed Bold', sans-serif;
    color: #000 !important;
    margin-bottom: 35px;
    text-transform: uppercase;
    font-size: 30px;
    line-height: 1em;
    display: block;
}

.main-menu-dropdown .dropdown-menu a span {
    border-bottom: 2px solid transparent;
}

.main-menu-dropdown .dropdown-menu a.active span {
    border-bottom: 2px solid #000;
}

#mainMenuWrapper {
    display: none;
}

.main-menu-open #mainMenuWrapper {
    display: block;
}

.main-menu-open #mainMenuWrapper .dropdown-menu {
    display: block !important;
}

.main-menu-dropdown .dropdown-menu {
    height: 100vh;
    position: fixed;
    padding: 31px 0 30px 0;
    border-radius: 0;
    border: 0;
    top: 0;
    box-shadow: 0 0 7px rgb(0 0 0 / 15%);
    z-index: 100001;
    margin-top: 0;
    max-width: 410px;
    width: 100%;
}

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

.main-menu-dropdown .dropdown-menu ul + ul a {
    margin: 0;
    font-size: 10px;
    text-transform: uppercase;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

.main-menu-dropdown .dropdown-menu .close-menu {
    line-height: 0;
    margin: 0 0 0 15px !important;
    padding: 10px;
    display: inline-block;
    cursor: pointer;
}

.main-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100000;
    background-color: rgba(0, 0, 0, 0.3);
}

.casa-wh {
    color: #000 !important;
    text-decoration: underline !important;
}

.header.dark {
    background: #fff;
}

.panel-group .panel + .panel {
    margin-top: 0;
}

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

.header.header-fixed a.main-menu,
.header.dark a.main-menu,
.header.header-fixed .top-right-menu a,
.header.header-fixed .slash-lang,
.header.dark .slash-lang,
.header.dark a.main-call,
.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%;
}

.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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.padding-top-125 {
    padding-top: 125px !important;
}

.padding-top-150 {
    padding-top: 150px !important;
}

.about-images img {
    margin: 45px 0;
    transition: transform .2s;
    -webkit-transition: transform .2s;
    -moz-transition: transform .2s;
    -ms-transition: transform .2s;
    -o-transition: transform .2s;
}

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

.border-bottom {
    border-bottom: 1px solid #fff !important;
}

.about-input {
    color: #fff !important;
    border: 0 !important;
    border-bottom: 1px solid #fff !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    padding-left: 0 !important;
}

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

.btn-file + label {
    cursor: pointer;
}

.btn-file:focus + label {
    cursor: pointer;
    outline: -webkit-focus-ring-color auto 5px;
}

.btn-file + label + * {
    pointer-events: none;
}

.btn-file + label {
    color: #fff !important;
    background-color: black;
    display: block;
    padding-left: 15px;
    padding-right: 15px;
}

.btn-file {
    width: 0;
    height: 0;
    z-index: -1;
    position: relative;
    overflow: hidden;
}

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: 14px 19px 19px 0;
    border-radius: 100px;
}

.hero-bellow-estate form {
    background-color: rgba(255, 255, 255, 0.77);
    border-radius: 20px;
    padding: 0;
}

.hero-bellow-estate form .form-group {
    width: 25%;
    margin: 0;
    padding: 10px 24px;
    border-right: 1px solid #B3B3B3;
}

.right_6 {
    right: 15%;
}

.right_15 {
    right: 15%;
}

.about_room {
    position: absolute;
    top: 92%;
    left: 4%;
    color: white;
    font-size: 14px;
}

.about_more:hover,
.about_more {
    text-decoration: none;
    position: absolute;
    top: 94%;
    color: white;
    font-size: 14px;
}

.col-sm-c9 {
    width: 24.25%;
    padding-left: 15px;
    padding-right: 15px;
}

.col-sm-c8 {
    width: 21.25%;
    padding-left: 15px;
    padding-right: 15px;
}

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

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

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

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

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

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

.main-wrapper h1 {
    margin: 0;
    font-size: 60px;
    text-transform: uppercase;
    line-height: 0.9em;
}

.main-wrapper p {
    font-size: 18px;
    line-height: 1.2em;
}

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

.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;
}

.txt_faq {
    color: #000;
}

.text_contact {
    font-size: 14px;
}

.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: #D2D2D2;
}

.events-page input::placeholder {
    color: #000 !important;
}

.events-page-title {
    text-transform: uppercase;
}

.careers-page input::placeholder,
.careers-page textarea::placeholder {
    color: #000 !important;
}

.careers-page select,
.careers-page option {
    color: #000 !important;
}

.owner-partner-page .form-control::-webkit-input-placeholder,
.owner-partner-page .form-control option,
.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,
.events-page .form-control,
.signup-page .form-control {
    color: #000000;
    border: 0;
    border-bottom: 1px solid #D2D2D2;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    outline: none !important;
    padding-left: 0;
}

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

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

.contact-page-title {
    font-size: 40px !important;
}

.event-page-title {
    font-size: 40px !important;
}

.contact-page a {
    margin-right: 16px;
}

.contact-page-faq {
    color: #000 !important;
    text-decoration: underline !important;
}

.header-menu .panel-default > .panel-heading {
    border-bottom: none !important;
    padding: 30px 25px !important;
}

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

.panel-group .panel {
    background-color: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    max-width: 375px !important;
    width: 100%;
}

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

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

.col-ms-c1 {
    width: 5%;
    padding-left: 15px;
    padding-right: 15px;
}

.header-menu-title {
    margin-bottom: 0 !important;
    font-family: Helvetica, sans-serif !important;
    font-size: 20px !important;
    text-transform: capitalize !important;
}

.header-menu-title:before {
    content: "" !important;
    transition: all 0.5s;
}

.main-menu-dropdown .dropdown-menu .header-menu-subtitle {
    font-family: 'Helvetica', sans-serif;
    color: #000 !important;
    margin-bottom: 5px;
    text-transform: none;
    font-size: 12px !important;
    line-height: 1em;
    padding-left: 15px;
    display: block;
}

.panel-heading a:before {
    font-size: 18px;
    content: "+";
    float: right;
    transition: all 0.5s;
}

.panel-heading.active a:before {
    font-size: 18px;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
    content: "-";
}

.panel-a {
    color: #000;
    font-size: 14px !important;
    border-bottom: none !important;
    text-transform: capitalize !important;
}

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

.search-filters {
    padding: 20px 0;
    max-height: 56px;
    min-height: 56px;;
}

.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;
}

.search-results {
    /* max-height: calc(100vh - 121px); */
    max-height: calc(100vh - 150px);
    overflow: auto;
}

#map {
    height: 100%;
}

.search-content {
    max-height: calc(100vh - 121px);
    padding-right: 0 !important;
}

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

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

.padding-right-100 {
    padding-right: 100px !important;
}

.padding-right-50 {
    padding-right: 50px !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: #ADADAD;
    font-size: 14px;
}

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

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

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

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

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

.inner-gallery-item {
    opacity: 0;
    visibility: hidden;
}

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

.search-room-item .room-thumbnail img {
    height: 100%;
    width: 100%;
    object-fit: cover;

    top: 0;
    left: 0;
    z-index: 0;
    transition: .15s ease-in-out all;
    opacity: 1;
}

.slick-track {
    height: 380px;
}

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

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

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

.search_the_collection-wapper {
    position: absolute !important;
    top: 50%;
    z-index: 100;
    right: -10%;
    transform: translateY(-50%);
}

.search_the_collection {
    margin: 0;
    transform: rotate(-90deg);
    color: #FFF;
    text-align: center;
    font-size: 34px;
    line-height: normal;
    display: inline-block;
    width: 171px;
}

.search_the_collection-background {
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.77) -0.1%, rgba(0, 0, 0, 0.00) 26.49%);
}

.dots div {
    padding: 4px;
    background-color: #fff;
    border-radius: 50%;
    opacity: .6;
    transition: .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: 30%;
}

.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: 14px;
    margin-top: 0;
}

.real-estate-listing-description {
    font-size: 14px;
    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: .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;
}

.font-size-18 {
    font-size: 18px !important;
}

.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;
}

.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 1px !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, .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;
}

.ame-item-box-icon svg {
    height: 20px;
    width: 20px;
    margin-right: 12px;
}

.ame-item-icon svg {
    height: 24px;
    width: 24px;
    margin-right: 12px;
}

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

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

.amc-item-box {
    font-size: 13px;
    width: 100%;
    max-width: 17%;
    margin-right: 57px;
}

.ame-item-icon:before {
    content: ' ' !important;
    height: 20px;
    background-color: #000;
    padding: 0 1px !important;
    margin: 0 20px 0 0;
    display: inline-block;
    vertical-align: middle;
}

.ame-item-box {
    line-height: 100%;

    font-size: 16px;
    text-transform: capitalize;
    width: 100%;
    max-width: 30%;
}

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

.amenities-list-text {
    font-size: 16px;
}

.real-estate-bnt.active {
    background: #C2C3C3;
}

.real-estate-bnt {
    display: flex;
    width: 139px;
    height: 45px;
    padding: 9px 25px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 57px;
    border: 2px solid #C2C3C3;
    font-size: 13px;
    color: #000;
    text-decoration: none;
}

.real-estate-bnt:hover {
    color: #000;
    text-decoration: none;
}

.real-estate-details-content {
    width: 100%;
    max-width: 50%;
}

.real-estate-details-title {
    color: #000;
    font-family: Helvetica, sans-serif;
    font-size: 22px !important;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.real-estate-details {
    margin-top: 16px;
    border-bottom: 1px #7B7B7B solid;
}

.real-estate-details p {
    color: #000;
    font-family: Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    text-transform: capitalize;

}

.real-estate-content-more {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    font-size: 16px;
    padding: 20px 15px;
    z-index: 100;
}

.real-estate-content-more a {
    border-radius: 57px;
    padding: 9px 27px;
    text-decoration: none;
}

.real-estate-text-more {
    font-size: 16px;
    line-height: normal;
    text-transform: lowercase;
}

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

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

.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;
}

.total-summary {
    padding-top: 22px !important;
}

.booking-summary {
    font-size: 14px;
}

.total-to-pay {
    font-size: 16px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #000;
}

.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;
}

.search-page .container {
    max-width: 1200px;
}

.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: 40px;
    line-height: 0.8em;
}

.careers-page p {
    margin-bottom: 28px;
    font-size: 14px !important;
}

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

.panel-title {
    margin: 0 !important;
}

.panel-title a {
    text-transform: uppercase;
    text-decoration: none;

}

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

.search-field:not(.prevent):after {
    content: '+';
    float: right;
}

.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: 14px;
}

.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 {
    width: 100%;
    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: 55px;
    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 {
    color: #000;
    text-decoration: none;
}

.booking-info-box .booking-box {
    box-shadow: 0 0 9px 0 #ccc;
    border-radius: 8px;
    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: 20px;
}

.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%;
}

.wd-10 {
    width: 10%;
}

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

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

.text-decoration-none:hover,
.text-decoration-none {
    text-decoration: none !important;
}

.text-capitalize {
    text-transform: capitalize !important;
}

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

.real-estate span {
    color: #000;
    font-family: 'Acumin Pro ExtraCondensed Bold', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    text-decoration: none;
    line-height: normal;
}

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

.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: 25px;
    margin: 0;
}

.tab-content .tab-pane .form-group label {
    font-size: 14px;
    font-weight: normal;
    color: #000;
    margin: 0;
    display: block;
    line-height: 1em;
}

.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 0 15px 0;
    border-bottom: 1px solid #000;
}

.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 0 0 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;
}

.real-estate-content .tab-pane .form-group .search-field,
.real-estate-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;
}

.real-estate-content input::-webkit-input-placeholder,
.real-estate-content input::placeholder {
    color: #000 !important;
    font-size: 16px !important;
}

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

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

.booking-event-date {
    font-size: 14px;
}

.booking-room-location {
    color: #6F6F6F;
    font-size: 14px;
}

.booking-room-title {
    color: #000;
    font-family: Helvetica;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.booking-event-title {
    color: #000;
    font-family: Helvetica, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.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;
}

.about-img {
    width: 541px;
    height: 705px;
}

.benefits-title {
    font-size: 40px;
    line-height: 48px;
}

.benefits-p {
    min-height: 210px;
}

.search-filters .form-group {
    margin: 20px 0;
}

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

.password-button {
    position: relative;
}

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

.app-links svg {
    height: 29px;
    width: 103px;
}

.slick-dots li {
    margin: 0;
}

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

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

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

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

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

.margin-top-45-nega {
    margin-top: -40px !important;
}

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

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

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

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

.password-button div {
    position: absolute;
    bottom: 4px;
    right: 5px;
    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;
}

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

.apartment-check-input[type="checkbox"]:not(.old) {
    opacity: 0;
    position: absolute;
    width: 20px;
    height: 20px;
    margin: 0;
}

.apartment-check-input[type="checkbox"]:not(.old) + label {
    cursor: pointer;
}

.apartment-check-input[type="checkbox"]:not(.old) + label:before {
    content: '';
    width: 20px;
    height: 20px;
    border: 1px solid #aeaeae;
    border-radius: 3px;
    cursor: pointer;
    vertical-align: top;
    display: inline-block;
    margin-right: 5px;
}

.apartment-check-input[type="checkbox"]:not(.old):checked + label:before {
    box-shadow: inset 0 0 1px 2px white;
    background: #000;
    border: 1px double #000;
}

.apartment-check-label {
    color: #aeaeae;
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    font-style: normal;
}

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

.search_wellness {
    box-shadow: 0 2px 5px rgb(0 0 0 / 10%);
}

.wellness_conteten {
    margin-top: 37px;
    font-size: 18px;
    max-width: 549px;
    width: 100%;
}

.wellness_conteten h3 {
    margin-top: 37px;
}

.wellness_conteten span {
    color: #888888;
}

.wellness_conteten p {
    margin-top: 37px;
}

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

.select-restaurant {
    border: 0;
    box-shadow: none;
    border-bottom: 1px solid #000;
    border-radius: 0;
    display: inline-block;
    background-color: #EAECEB;
}

.select-restaurant:after {
    content: '+';
    float: right;
}

.search-option::before {
    content: '+';
    float: right;
}

.search-select {
    color: #000;
    border: none;
    font-size: 15px;
    border-bottom: 1px solid #000;
    display: inline-block;
    width: 100%;
    text-decoration: none;
    line-height: 1em;
    text-transform: capitalize;
    background: transparent;
}

.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: 75px 20px 20px 20px;
    position: relative;
    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 .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: .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 {
    display: block;
    padding: 0 0;
    line-height: 25px;
}

.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: 100px !important;
    line-height: 0.8em;
}

.real-estates-page .hero-above h1 {
    font-size: 100px;
    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;
    flex-direction: column;
}

.real-estates-page .hero-events h1 {
    font-size: 100px;
    line-height: 105px;
}

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

.real-estates-page .hero-events {
    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 .real-estates-carousel::-webkit-scrollbar-thumb {
    background-color: #a5a6a679 !important;
    border-radius: 5px !important;
}

.real-estates-page .real-estates-carousel::-webkit-scrollbar {
    height: 4px !important;
}

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

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

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

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

.real-estate-img {
    height: 390px;
}

.real-estate-img img {
    object-fit: cover;
    height: 100% !important;
    transform: scale(1);
    width: 100% !important;
}

.real-estate-row {
    max-width: 950px;
    width: 100%;
}

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

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

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

.wynwood-house-advantages-list p {
    color: #000;
    font-size: 16px !important;
}

.wynwood-house-advantages-list {
    font-size: 18px !important;
}

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

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

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

.font-size-20 {
    font-size: 20px;
}

.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;
    width: 127px;
    height: 54px;
}

.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;
}

.point-recommend {
    max-width: 470px;
}

.point-recommend p {
    color: #000;
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.point-simply {
    max-width: 503px;
}

.point-simply p {
    color: #ADADAD;
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

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

.hiddenimg {
    display: none !important;
}

.hidden-lg {
    display: none !important;
}

.hidden-sm {
    display: block !important;
}

.hidden-title {
    font-size: 38px !important;
}

.wyndeals-wrapper-bar.active {
    display: block !important;
}

.wyndeals-wrapper-bar.active a:first-child {
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    z-index: 0;
    display: inline-block;
    top: 0;
}

.wyndeals-wrapper-bar.active a:not(:first-child) {
    position: relative;
    z-index: 1;
    color: #000;
    text-decoration: underline;
}

.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: 1000;
}

.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 .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%;
}

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

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

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

.events-page h3 {
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.9em;
    line-height: 87.5%;
}

.events-page h2 {
    font-weight: bold;
    font-size: 100px !important;
    line-height: 0.8em;
}

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

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

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

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

.events-page .hero-events h1 {
    font-size: 100px;
    line-height: 105px;
}

.events-page .hero-events p {
    font-size: 13px;
    letter-spacing: 0.9em;
}

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

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

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

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

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

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

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

.events-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;
}

.events-page .events-carousel {
    gap: 20px;
}

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

.events-page .hero-events .hero-content {
    margin: 250px 0;
}

.events-page .advantage-counter {
    padding-top: 2px;
    font-size: 25px !important;
}

.events-page .advantage-list-item {
    border-top: 1px solid #D2D2D2;
    padding-top: 30px;
    padding-bottom: 30px;
}

.events-page .advantage-list-item p {
    color: #000 !important;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
}

.events-page .advantage-list-item span {
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: #888888;
}

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

.events-page .experts-text p {
    font-size: 18px;
}

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

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

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

.new-events-page .hero {
    background-image: url("/static/images/events/new-events-hero.jpg") !important;
}

.new-events-page h1 {
    color: #FFF;
    text-align: center;
    font-size: 90px;
    line-height: 84.5%;
    text-transform: uppercase;
    width: 925px;
}

.new-experts-text h2 {
    font-size: 45px;
    font-weight: 700;
    line-height: 44px;
    text-transform: uppercase;
    width: 384px;
}

.new-experts-text-label {
    text-align: right;
    font-family: Helvetica, sans-serif;
    font-size: 16px;
    width: 583px;
}

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

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

.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-btn {
    width: 79px;
    height: 31px;
    font-size: 14px;
    border: 1px solid #000000;
    border-radius: 100px;
    background: transparent;
    line-height: 16px;
    flex-grow: 0 !important;
}

.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;
}


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%;
}

.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: 1001;
    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;
}

#country-code {
    border: none;
    border-bottom: 1px solid #000000;
    margin-right: 10px;
}

#country-code-checkout {
    border: none;
    border-bottom: 1px solid #000000;
    margin-right: 10px;
    width: 27%;
}

div.contact-links > p > a {
    font-size: 14px;
    border-bottom: 1px solid black;
}

#contact-title {
    margin-bottom: 1rem;
}

.faq-title {
    font-size: 40px;
    margin-bottom: 0 !important;
}

#faq {
    border: 0
}

div.contact-links > p {
    margin-bottom: 16px;
    width: max-content;
}

#links {
    padding-top: .7rem;
}

.sticky {
    position: sticky;
    top: 70px;
}

.career-item-wrapper:hover {
    background-color: #f9f9f9;
}

.career-item-wrapper {
    padding: 10px 15px;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #ddd;
    color: #000 !important;
    text-decoration: none !important;
}

.career-item-wrapper .career-item-name {
    font-weight: bold;
    font-size: 18px;
}

.career-item-description {
    padding-right: 15px;
}

.career-item-wrapper + .career-item-wrapper {
    margin-top: 10px;
}

.split-wynwood-house {
    background: #E9EBEA;
}

.split-wynwood-casa {
    background: #E8DBD1;
}

.split-wynwood-logo svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 168px;
    height: 49px;
}

.split-wynwood-discover {
    text-align: center;
}

.split-wynwood-discover div {
    display: inline-block;
    color: #000000;
    text-decoration: none !important;
    font-family: Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 11px;
    letter-spacing: 0.5em;
    padding-bottom: 4px;
    border-bottom: 1px solid #000;
}

.split-wynwood-item {
    transition: .15ms ease-in-out all;
}

.split-wynwood-item:hover {
    background: transparent;
}

.split-wynwood-item:before {
    content: " ";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.split-wynwood-house:before {
    background-image: url(/static/images/wynwood-house-split.jpg);
}

.split-wynwood-casa:before {
    background-image: url(/static/images/wynwood-casa-split.jpg);
}

.split-wynwood-item:hover .split-wynwood-discover div {
    color: #fff !important;
    border-bottom: 1px solid #fff !important;
}

.split-wynwood-item:hover svg * {
    fill: #fff !important;
}

.split-wynwood-logo svg {
    margin-left: 10px;
}

.label-showing label {
    margin-bottom: 0 !important;
    font-size: 12px;
    line-height: 1em;
    display: inline-block;
    width: 100%;
}

.careers-list-wrapper + .careers-list-wrapper {
    margin-top: 50px;
}

.change-camera {
    line-height: 0;
    margin-left: 5px;
}

.change-camera svg {
    height: 20px;
    width: 20px;
}

.photo-item-wrapper {
    background-color: #000;
    text-align: center;
}

.photo-item-wrapper img {
    max-height: 320px;
    margin: auto;
}

.change-camera {
    display: none;
}

.progress-bar-container {
    height: 33px;
    background: #fff;
    position: relative;
    border: 1px solid #CBCBCB;
    border-radius: 15px;
}

.progress-bar-indicator {
    height: 100%;
    border-radius: 15px;
    /*-webkit-mask: linear-gradient(#fff 0 0);*/
    mask: linear-gradient(#fff 0 0);
}

.progress-bar-indicator::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(255, 209, 228);
    background: linear-gradient(90deg, #FFD1E4 0.22%, #FBD2E4 31.22%, #EFD7E5 60.22%, #DCDEE7 88.22%, #D2E3E8 100.22%);
}

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

.profile-information-item + .profile-information-item {
    border-top: 1px solid #D9D9D9;
}

.profile-information-hr {
    border-top: 1px solid #D9D9D9;
}

.profile-information-item {
    padding: 10px 0;
}

.profile-information-item a {
    text-decoration: none;
    color: #000000;
}


.profile-information-label {
    text-decoration: none !important;
}

.profile-information-edit {
    color: #888888 !important;
    text-decoration: none !important;
}

.profile-information-button {
    padding: 6px 15px;
    line-height: 1em;
    display: inline-block;
    background: #000000;
    border-radius: 100px;
    text-align: center;
}

.text-white {
    color: #fff !important;
}

.profile-information-button a {
    color: #FFFFFF;
    text-decoration: none !important;
}

.nearest-reservation-photo {
    object-fit: cover;
    height: 100% !important;
    transition: all 4s ease-in-out;
    transform: scale(1);
    width: 100% !important;
}

.size-100 {
    font-size: 100px !important;
}

.size-40 {
    font-size: 40px !important;
}

.size-45 {
    font-size: 45px !important;
}

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

.size-1 {
    font-size: 16px !important;
}

.size-12 {
    font-size: 14px !important;
}

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

.share-box a {
    display: inline-block;
    padding: 10px 5px;
}

.share-box div {
    padding: 0 5px;
    display: flex;
    align-items: center;
}

.share-box .border-left {
    border-left: 1px solid #dccc;
}

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

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

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

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

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

.share-box .small {
    font-size: 10px;
}

.share-box {
    border: 1px solid #ccc;
    border-radius: 15px;
}

.margint-top-20 {
    margin-top: 20px !important;
}

.color-text {
    color: #CBCBCB;
}

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

.hero-bellow form .form-group .dropdown {
    padding-left: 20px;
}

.hero-bellow-estate form .form-group .dropdown {
    padding-left: 0 !important;
}

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

.margin-right-30 {
    margin-right: 30px;
}

.margin-right-38 {
    margin-right: 38px !important;
}

.margin-right-25 {
    margin-right: 25px;
}

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

.margin-right-140 {
    margin-right: 140px;
}

.margin-right-45 {
    margin-right: 45px;
}

.padding-right-200 {
    padding-right: 200px !important;
}

.padding-right-25 {
    padding-right: 25px !important;
}

.padding-right-35 {
    padding-right: 35px;
}

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

.padding-left-15 {
    padding-left: 15px;
}

.padding-left-10 {
    padding-left: 10px;
}

.padding-left-125 {
    padding-left: 125px !important;
}

.padding-left-100 {
    padding-left: 100px !important;
}

.shadowed {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.search-map {
    padding-top: 20px !important;
}

.country-landing {
    height: fit-content;
    width: 100%;
    background-color: #fff;
}

.country-landing .landing-hero {
    width: 100%;
    height: calc(100vh - 100px);
    min-height: 600px;
    max-height: 680px;
    background-color: #fff;
    padding: 8rem 1rem 2rem;
    /* max-width: 1280px; */
    margin: 0 auto;
}

.landing-hero .hero-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.landing-hero svg {
    position: absolute;
    bottom: 6px;
    z-index: 10;
    stroke: white;
    fill: white;
}

.landing-hero .hero-image-carrousel {
    display: flex;
    overflow-x: scroll;
    position: absolute;
    bottom: 0;
    align-items: baseline;
    padding-bottom: 0.3rem;
}

.hero-image-carrousel::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.hero-image-carrousel::-webkit-scrollbar-track {
    background-color: #e1e1e1;
    border-radius: 5px;
    position: relative;
    top: 1rem;
}

.hero-image-carrousel::-webkit-scrollbar-thumb {
    background: #969696;
    border-radius: 4px;
}

.hero-image-carrousel::-webkit-scrollbar-thumb:hover {
    background: #5f5f5f;
}

.landing-hero .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 587px;
}

.landing-hero .country-name {
    color: #fff;
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    margin: 0;
    font-size: 70px !important;
    font-family: 'Acumin Pro ExtraCondensed Bold', sans-serif;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.5rem !important;
    font-weight: 400;
}

.upper-landing-form {
    width: 100%;
    max-width: 1280px;
    padding: 4rem 1.8rem 10rem;
    margin: 0 auto;
}

.why-location {
    background-color: #fff;
    padding: 2rem 4rem;
    max-width: 1280px;
    margin: 0 auto 53px auto;
}

.why-location h2 {
    margin: 0 0 3rem;
    font-family: 'Acumin Pro ExtraCondensed Bold', sans-serif;
    font-size: 100px;
    text-transform: uppercase;
}

.why-text-container {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.why-text-container p {
    flex: 1;
}

.why-location .learn-more {
    width: fit-content;
    max-width: fit-content;
    border: none;
    background-color: transparent;
    color: #565656;
    text-decoration: underline;
    padding: 0.5rem 4rem 0 0;
    display: none;
}

.country-destinations {
    background-color: #fff;
    padding: 2rem 4rem;
    max-width: 1280px;
    margin: 0 auto 7rem auto;
}

.country-destinations h2 {
    margin: 0 0 3rem;
    font-family: 'Acumin Pro ExtraCondensed Bold', sans-serif;
    font-size: 100px;
    text-transform: uppercase;
}

.country-destinations-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.country-destinations-container .city {
    flex: 1;
    max-width: 25%;
}

.country-destinations-container .city a {
    color: inherit;
}

.country-destinations-container .city img {
    width: 100%;
    height: auto;
    max-height: 230px;
    object-fit: cover;
}

.country-destinations-container .city p {
    margin-top: 7px;
}

.before-footer {
    background-color: #d6eaee;
}

.before-footer-container {
    padding: 8rem 2rem 4rem;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.before-footer h2 {
    margin-top: 0;
    font-family: 'Acumin Pro ExtraCondensed Bold', sans-serif;
    font-size: 80px;
    text-transform: uppercase;
}

.before-footer p {
    font-size: 15px;
    letter-spacing: 1rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.country-landing-form-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    /* margin-top: 120px;
    margin-bottom: 50px; */
}

.country-landing-form-container form .form-group {
    width: 25%;
    margin: 0;
}

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

.country-landing-form-container form .form-group label svg {
    height: 14px;
    width: 14px;
}

.country-landing-form-container form .form-group label .icon {
    margin-right: 5px;
}

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

.country-landing-form-container 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;
}

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

.home-casa {
    background-color: #fff;
    padding-top: 50px;
}

.home-casa h3 {
    font-family: "Nysé", sans-serif;
    font-size: 30px;
    line-height: 35px;
    text-align: center;
    margin-top: 48px;
    margin-bottom: 0;
}

.home-casa p {
    font-size: 14px;
    line-height: 16px;
    max-width: 600px;
    margin: 48px auto 0;
}

.home-casa .btn {
    margin-top: 45px;
    font-size: 12px;
    padding: 7px 25px;
    border-radius: 20px;
}

.casa-hero {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 55px;
    font-family: 'Nysé', sans-serif;
    font-size: 20px;
    line-height: 23px;
    color: #fff;
}

.home-casa img {
    margin-top: 55px;
    margin-bottom: 50px;
    width: 100%;
}

.home-casa .home-c2a-mobile a {
    margin-top: 20px;
    text-decoration: none !important;
    font-size: 10px;
    padding: 2px 15px;
}

.home-casa .home-c2a-mobile {
    margin-top: 20px;
    margin-bottom: 100px;
}

/* Clases de css para el div con la clase contenedor */
.contenedor-imagen {
    max-width: 300px;
    max-height: 300px;
    display: inline-block;
    overflow: hidden;
}

.imagen-filtro {
    width: 392px;
    transition: all 0.4s ease;
    -webkit-filter: grayscale(100%);
    /* Chrome, Safari, Opera */
    filter: grayscale(100%);
}

.imagen-filtro:hover {
    -webkit-filter: grayscale(0%);
    /* Chrome, Safari, Opera */
    filter: grayscale(0%);
}

.confirmation-container {
    font-family: Helvetica, Helvetica Neue, sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: 14px;
    margin: 0;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    width: 100%;
    padding: 10px;
}

.confirmation-block-apartment {
    display: table !important;

}

.confirmation-block-apartment-xs {
    display: none !important;

}

.confirmation-main {
    display: block;
    margin: auto;
    max-width: 600px;
    width: 100%;
    padding: 30px 0 100px
}

.confirmation-font-10 {
    font-size: 10px;
    line-height: 11px;
}

.confirmation-font-14 {
    font-size: 14px;
    line-height: 16px;
}

.confirmation-font-22 {
    font-size: 22px;
    line-height: 25px;
}

.confirmation-font-12 {
    font-size: 12px;
    line-height: 12px;
}

.confirmation-font-16 {
    font-size: 16px;
    line-height: 18px;
}

.confirmation-font-24 {
    font-size: 24px;
    line-height: 27px;
}


.confirmation-letter-spacing-4 {
    letter-spacing: 0.4em;
}

.confirmation-line-height-23 {
    line-height: 23px !important;
}

.confirmation-letter-spacing-3 {
    letter-spacing: 0.3em;
}

.confirmation-text-center {
    text-align: center;
}

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

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

.confirmation-margin-top-25px {
    margin-top: 25px;
}

.confirmation-margin-top-30px {
    margin-top: 30px;
}

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

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

.confirmation-margin-top-60px {
    margin-top: 60px;
}

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

.confirmation-img-baner {
    border: none;
    -ms-interpolation-mode: bicubic;
    max-width: 100%
}

.confirmation-block-xs {
    display: table-cell;
    width: 50%;
    vertical-align: top;
}

.confirmation-padding-right-10 {
    padding-right: 10px
}

.confirmation-block {
    display: table;
    width: 100%;
}

.confirmation-hr {
    border: 0;
    border-bottom: 1px solid #ababab;
    margin: 24px 0;
}

.confirmation-map {
    color: #ababab;
    text-decoration: underline;
}

.confirmation-table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
}

.confirmation-width-50 {
    width: 50%;
}

.confirmation-color {
    color: #A0A0A0;
}

.confirmation-border-botom {
    border-bottom: 1px solid #A0A0A0
}

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

.confirmation-col-sm-p25 {
    width: 25%;
    padding-left: 5px;
    padding-right: 5px;
}

.confirmation-blok-img {
    padding-right: 8px;
    padding-left: 8px;
    margin-right: auto;
    margin-left: auto;
}

.casa-modal-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10001;
}

.casa-modal-box {
    background-color: #fff;
    border-radius: 3px;
    padding: 10px;
}

.close-casa-modal svg {
    height: 14px;
    width: 14px;
}

.close-casa-modal {
    position: absolute;
    top: -10px;
    right: -10px;
    line-height: 0;
    padding: 15px;
    background: #fff;
}

.country-flag svg {
    width: 22px;
    height: 15px;
}

li.country-flag a {
    display: flex;
    align-items: center;
}

.casa-modal-logo svg {
    width: 113px !important;
    height: 33px !important;
}

.casa-modal-box {
    background-color: #fff;
    border-radius: 3px;
    padding: 10px 10px 22px 10px;
    position: absolute;
    left: 10px;
    bottom: 10px;
}

.casa-modal-photo img {
    max-width: 356px;
    border-radius: 3px;
    overflow: hidden;
}

.casa-modal-logo {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding-bottom: 20px;
}

.casa-modal-title {
    font-family: "Nysé", sans-serif;
    font-size: 25px;
    line-height: 29px;
    text-align: center;
    margin-top: 25px;
}

.modal-link {
    font-size: 12px;
    text-decoration: underline;
    color: #000;
    margin-top: 15px;
    display: inline-block;
}

.width_180px {
    width: 180px;
}

.width-270 {
    width: 270px;
}

.width-60 {
    width: 60%;
}

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

@media screen and (max-width: 1250px) {
    .landing-hero .country-name {
        font-size: 300px;
        letter-spacing: 1.75rem;
    }
}

@media screen and (max-width: 970px) {
    .landing-hero .country-name {
        font-size: 60px;
        letter-spacing: 0.6rem;
    }

    .guide-list {
        width: 100% !important;
    }
}

@media screen and (max-width: 880px) {
    .country-landing .landing-hero {
        height: 70vh;
        max-height: 600px;
    }

    .landing-hero .hero-image img {
        max-height: 600px;
    }
}

@media screen and (max-width: 880px) {
    .country-landing .landing-hero {
        height: 65vh;
        min-height: 500px;
        /* max-height: 520px; */
        /* padding: 8rem 1rem 2rem; */
    }

    .country-destinations-container {
        flex-wrap: wrap;
    }

    .country-destinations-container .city {
        max-width: 50%;
        min-width: 40%;
    }

    .landing-hero .hero-image-carrousel {
        height: 100%;
    }
}

@media screen and (max-width: 550px) {
    .hero-image-carrousel {
        height: 100%;
    }

    .landing-hero .hero-image img {
        max-height: 500px;
    }

    .upper-landing-form {
        padding: 3rem 1.5rem;
    }

    .country-landing-form-container form .form-group {
        width: 100%;
    }

    .country-landing-form-container .form-group-guests {
        max-width: 50%;
    }

    .why-location {
        padding: 3rem 1.5rem;
        margin-bottom: 0;
    }

    .why-location h2 {
        font-size: 60px;
        margin-bottom: 1rem;
    }

    .why-text-container {
        flex-direction: column;
        gap: 2rem;
    }

    .why-text-container p:not(:first-child):last-of-type {
        display: none;
    }

    .why-location .learn-more {
        display: inherit;
    }

    .country-destinations {
        padding: 2rem 1.5rem;
        margin-bottom: 4rem;
    }

    .country-destinations-container::-webkit-scrollbar {
        width: 5px;
        height: 5px;
    }

    .country-destinations-container::-webkit-scrollbar-track {
        background-color: rgb(238, 238, 238);
        border-radius: 3px;
    }

    .country-destinations-container::-webkit-scrollbar-thumb {
        background-color: darkgrey;
        border-radius: 3px;
        /* outline: 1px solid slategrey; */
    }

    .country-destinations h2 {
        font-size: 60px;
        margin-bottom: 1rem;
    }

    .country-destinations-container {
        flex-wrap: nowrap;
        overflow-x: scroll;
    }

    .country-destinations-container .city {
        min-width: 95%;
        max-width: none;
        padding-bottom: 1rem;
    }

    .country-destinations-container .city img {
        min-height: 50vh;
        max-height: 400px;
    }

    .country-destinations-container .city p {
        margin: 0.5rem 0
    }

    .before-footer-container {
        padding: 4rem 0;
    }

    .before-footer h2 {
        font-size: 60px;
        margin-bottom: 1rem;
        padding: 0 1.5rem;
    }

    .before-footer p {
        font-size: 12px;
        letter-spacing: 0.15rem;
        margin-bottom: 0;
        padding: 0 1.5rem;
    }

}

@media screen and (max-width: 450px) {
    /* .landing-hero .country-name {
        font-size: 120px;
    } */
}

@media screen and (max-width: 380px) {
    .landing-hero .country-name {
        font-size: 55px;
    }
}

.home-casa h3 {
    font-family: "Nysé", sans-serif;
    font-size: 30px;
    line-height: 35px;
    text-align: center;
    margin-top: 48px;
    margin-bottom: 0;
}

.home-casa p {
    font-size: 14px;
    line-height: 16px;
    max-width: 600px;
    margin: 48px auto 0;
}

.home-casa .btn {
    margin-top: 45px;
    font-size: 12px;
    padding: 7px 25px;
    border-radius: 20px;
}

.home-casa img {
    margin-top: 55px;
    margin-bottom: 50px;
}

.header .main-menu.main-call {
    margin-right: 30px;
}

.dropdown-menu-left {
    transform-origin: left top;
    animation: slideInLeft .5s ease;
}

@keyframes slideInLeft {
    from {
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.dropdown-menu-left.close-menu {
    animation: slideOutLeft .5s ease;
}

@keyframes slideOutLeft {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-100%, 0, 0);
        visibility: hidden;
    }
}

.country-landing-casa .country-casa-hero div {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Nysé", sans-serif;
    color: #fff;
    font-size: 20px;
    line-height: 24px;
}

.country-landing-casa .country-casa-hero {
    margin-top: 55px;
    margin-bottom: 50px;
}

.country-destinations-container.neighborhoods-2 .city {
    max-width: 33.33%;
}

.country-destinations-container.neighborhoods-2 .city img {
    max-height: 290px;
}

.home-casa-img-wapper {
    height: 562px;
    position: relative;
    margin-top: 50px;
    margin-bottom: 0;
}

.casa-slider > ul,
li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.casa-slider > ul.slider {
    position: relative;
    width: 100%;
    height: 500px;
}

.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: 0;
    top: 0;
    opacity: 0;
    width: inherit;
    height: inherit;
    transition: opacity .5s;
    background: #fff;
}

.casa-slider > ul.slider li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
}

.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: -5px;
    position: absolute;
    text-align: center;
    margin: 20px;
    left: 47%;
}

.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;
}

.light-blue {
    background-color: #D6E9ED;
}

.ft-acumin {
    font-family: 'Acumin Pro ExtraCondensed Bold', sans-serif;
}

.ft-100 {
    font-size: 100px;
}

.pt-5 {
    padding-top: 5rem;
}

.pb-5 {
    padding-bottom: 5rem;
}

.mt-5 {
    margin-top: 5rem;
}

.mb-5 {
    margin-bottom: 5rem;
}

.m-0 {
    margin: 0;
}

.custom-dropdown {
    position: relative;
    display: inline-block;

}

.custom-dropdown-icon {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    pointer-events: none;
    /* Evita que el icono sea seleccionable */
}

.custom-dropdown-icon::before {
    content: "+";
}

.event-benefis-p {
    line-height: normal !important;
    font-size: 18px !important;
    color: #888888 !important;
}

.owner-property {
    color: #000;
    font-family: 'Acumin Pro ExtraCondensed Bold', sans-serif;
    font-size: 140px;
    font-style: normal;
    font-weight: 700;
    line-height: 84.5%;
}

.owner-property-p {
    width: 694px;
}

.owner-property-p p {
    color: #000;
    font-family: Helvetica, sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.form-owner h3 {
    color: #000;
    font-family: 'Acumin Pro ExtraCondensed Bold', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.event-country h2 {
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: 84.5%;
    text-transform: uppercase;
}

.event-country-content {
    max-width: 31.33%
}

.event-country-label {
    color: #000;
    text-align: justify;
    font-family: Helvetica, sans-serif;
    font-size: 14px;
}

.event-confirm-label {
    color: #000;
    text-align: justify;
    font-family: Helvetica, sans-serif;
    font-size: 12px;
}

.event-country-label p {
    width: 100%;
    display: inline-block;
}

.event-country-span {
    color: #000;
    text-align: justify;
    font-family: Helvetica, sans-serif;
    font-size: 13px;
}

.event-confirm-span {
    color: #000;
    text-align: justify;
    font-family: Helvetica, sans-serif;
    font-size: 10px;
}

.event-country-month {
    color: #888;
    font-family: Helvetica, sans-serif;
    font-size: 16px;
}

.event-country-month {
    color: #888;
    font-family: Helvetica, sans-serif;
    font-size: 14px;
}

.event-country-overflow {
    overflow-x: auto;
    overflow-y: hidden;
    height: 710px;
}

.event-country {
    height: 100%;
}


.event-country-title {
    color: #000;
    font-size: 27px;
    font-style: normal;
    font-weight: 700;
    line-height: 88%;
    text-transform: uppercase;
}

.event-confirm-title {
    margin-top: 6px;
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 88%;
    text-transform: uppercase;
}

.event-country-panama {
    width: 1065px;
}

.event-country-panama-label {
    color: #000;
    font-size: 16px;
}

.event-country-panama-span {
    color: #888;
    font-size: 16px;
    text-decoration-line: underline;
}

.event-space-title {
    font-size: 50px;
    text-transform: uppercase;
    margin: 0;
}

.event-space-img img {
    max-width: 545px;
    object-fit: cover;
    height: 100% !important;
    transform: scale(1);
    width: 100% !important;
}

.event-space-content {
    width: 583px;
}

.event-space-input {
    padding: 0;
}

.new-experiences-tilte {
    font-size: 42px;
    font-weight: 700;
    line-height: 44px;
    text-transform: uppercase;
}

.new-experiences-content {
    width: 400px;
}

.new-experiences-img img {
    object-fit: cover;
    height: 100% !important;
    transform: scale(1);
    width: 100% !important;
}

.event-sold-out-content {
    position: absolute;
    width: 120%;
    bottom: 25%;
    left: 50%;
    height: 54px;
    background-color: #F8BDC8;
    transform: rotate(344deg) translateX(-50%);
}

.event-sold-out-label {
    font-size: 24px;
    color: #000;
    font-family: 'Acumin Pro ExtraCondensed Bold', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 84.5%;
}

.event-organice-content {
    border-radius: 6px 0 0 6px;
    background: #000;
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.08);
    display: inline-flex;
    padding: 9px 18px;
    text-decoration: none !important;
}

.event-organice-label:hover,
.event-organice-label {
    color: #FFF;
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    text-decoration: none;
}

.event-detail-img img {
    max-width: 545px;
    object-fit: cover;
    height: 100% !important;
    transform: scale(1);
    width: 100% !important;
}

.event-detail-content {
    width: 786px;
}

.event-detail-span a,
.event-detail-span {
    color: #888;
    font-family: Helvetica, sans-serif;
    font-size: 16px;
}

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

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

.event-detail-breadcrumb {
    padding: 0;
}

.event-detail-count-left {
    width: 40px;
    height: 39px;
    border-radius: 40px 0 0 40px;
    border-top: 1px solid #E9E9E9;
    border-bottom: 1px solid #E9E9E9;
    border-left: 1px solid #E9E9E9;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8C8C8C;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
}

.event-detail-count-center {
    width: 76px;
    height: 39px;
    border: 1px solid #E9E9E9;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8C8C8C;
    font-size: 16px;
    font-weight: 400;
}

.event-detail-count-right {
    width: 40px;
    height: 39px;
    border-radius: 0 40px 40px 0;
    border-top: 1px solid #E9E9E9;
    border-right: 1px solid #E9E9E9;
    border-left: 0 solid #E9E9E9;
    border-bottom: 1px solid #E9E9E9;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8C8C8C;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
}

.event-detail-span a {
    text-decoration-line: underline;
    margin-left: 5px;
}

.event-detail-title {
    font-size: 45px;
    font-style: normal;
    font-weight: 700;
    line-height: 44px;
}

.event-detail-sold-out-content {
    position: relative;
    width: 100%;
    bottom: 294px;
    height: 54px;
    background-color: #F8BDC8;
    transform: skewY(342deg);
}

.event-country-content-img {
    position: relative;
    overflow: hidden;
}

.event-country-content-info {
    position: relative;
    padding: 30px 16px;
    border-radius: 0 0 7px 7px;
    background: #FFF;
    box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.06);
    height: 210px;
    max-height: 210px;
}

.event-confirm-content-info {
    position: relative;
    padding: 30px 16px;
    border-radius: 0 0 7px 7px;
    background: #FFF;
    box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.06);
    height: 250px;
    max-height: 250px;
}


.event-country-content-btn {
    position: absolute;
    top: 92%;
    right: 25%;
    left: 25%;
}

.room-more {
    text-decoration-line: underline;
    text-transform: capitalize;
    line-height: 84.5%;
    letter-spacing: 2px;
    color: #000;
}

.comparison-section {
    width: 100% !important;
}

.comparison-details-content {
    width: 100%;
    max-width: 100%;
}

.comparison-boder {
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 20px;
}

.comparison-label {
    height: 50px;
}

.comparison-label label {
    font-size: 43px;
    text-transform: uppercase;
}

.comparison-item-listing {
    flex-grow: 1;
}

.comparison-item-height {
    height: calc(100% - 61px);
    overflow-y: auto;
    max-height: calc(132vh - 121px);
}

.comparison-item-btn {
    width: 33.333% !important;
}

.comparison-item-delete {
    text-decoration: underline;
    font-size: 12px;
}

.comparison-icon svg {
    width: 17px;
    height: 17px;
}

.comparison-detail-span {
    color: #000;
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 84.5%;
    text-transform: uppercase;
}

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

.modal-comparison {
    position: fixed;
    top: 50%;
    right: 0;
    width: 111px;
    z-index: 10003;
    transform: translateY(-50%);
}

.modal-form-search {
    position: fixed;
    top: 63px;
    right: 0;
    width: 411px;
    height: 844px;
    z-index: 10003;
}

#comparisonModal {
    display: none;
}

.modal-form-search-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    width: 100%;
    height: 100%;
}

.modal-form-search-content a {
    font-size: 16px !important;
}

.modal-comparison-content {
    background-color: #fff;
    padding: 20px 13px;
    width: 413px;
    max-height: 479px;
    border-radius: 12px 0 0 12px;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.14);
}

.modal-compariso-title {
    color: #000;
    font-family: 'Acumin Pro ExtraCondensed Bold', sans-serif;
    font-size: 27px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin: 0;
}

.modal-comparison-img img {
    width: 85px;
    height: 85px;
    object-fit: cover;
    transform: scale(1);
    max-width: 85px;
}

.modal-comparison-room {
    color: #000;
    font-family: Helvetica, sans-serif;
    font-size: 16px;
    line-height: 120%;
    text-transform: capitalize;
}

.modal-comparison-zone {
    color: #ADADAD;
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1em;
    text-transform: lowercase;
}

.modal-comparison-btn {
    padding: 11px 0;
    border-radius: 60px;
    text-decoration: none;
    background: #000;
    font-size: 18px;
    line-height: 1em;
    width: 100%;
}

#comparisonBtntModal {
    display: none;
}

.modal-comparison-btn a {
    text-decoration: none;
}

.modal-comparison-trash {
    display: none;
    height: 0;
}

.modal-comparison-trash button {
    width: 27px;
    height: 23px;
    border-radius: 33px;
}

.modal-comparison-trash svg {
    position: relative;
    z-index: 2;
    top: -21px;
    left: -25px;
}

.modal-comparison-a,
.modal-comparison-a:hover {
    color: #000;
    text-align: center;
    font-family: Helvetica, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    text-transform: capitalize;
}

.modal-comparison-empty {
    display: flex;
    width: 85px;
    height: 85px;
    justify-content: center;
    align-items: center;
    background-color: #E2E2E2;
}

.search-label {
    color: #000 !important;
    width: 100%;
    display: inline-block;
    font-size: 16px;
    text-decoration: none !important;
}

.price-field {
    text-align: center;
    padding: 0 27px;
}

.price-field input[type=range] {
    position: absolute;
    width: 289px;
    height: 3px;
    outline: 0;
    border: 0;
    border-radius: 5px;
    pointer-events: none;
    -webkit-appearance: none;
}

.price-field input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
}

.price-field input[type=range]:active,
.price-field input[type=range]:focus {
    outline: 0;
}

.price-field input[type=range]::-ms-track {
    width: 188px;
    height: 2px;
    border: 0;
    outline: 0;
    box-sizing: border-box;
    pointer-events: none;
    background: transparent;
    color: transparent;
    border-radius: 5px;
}

.price-field input[type=range]::-webkit-slider-thumb {
    position: relative;
    outline: 0;
    border-radius: 50%;
    border: 1px solid #000;
    height: 25px;
    width: 25px;
    margin: -11px 0 0 0;
    background-color: #fff;
    cursor: pointer;
    pointer-events: all;
    z-index: 100;
}

.price-field input[type=range]::-webkit-slider-runnable-track {
    width: 188px;
    height: 2px;
    cursor: pointer;
    background: #000;
    border-radius: 5px;
}

.price-field input[type=range]:hover::-webkit-slider-thumb {
    box-shadow: 0 0 0 1px #fff;
    transition-duration: 0.3s;
}

.price-field input[type=range]:active::-webkit-slider-thumb {
    box-shadow: 0 0 0 1px #fff;
    transition-duration: 0.3s;
}

.price-wrap .resultPriceUpper,
.price-wrap .resultPriceLower {
    color: #000;
    font-family: Helvetica, sans-serif;
    font-size: 16px;
}

.price-wrap {
    padding: 0 27px;
}

.price-wrap output {
    font-family: Helvetica, sans-serif;
    font-size: 16px;
}

.real-estate-overflow-auto::-webkit-scrollbar {
    width: 3px !important;
}

.real-estate-overflow-auto::-webkit-scrollbar-thumb {
    background-color: #a5a6a679 !important;
    border-radius: 5px !important;
}

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

.collecction-content {
    position: relative;
}

.collecction-banner {
    max-width: 624px;
    height: 650px;
    flex-shrink: 0;
    width: 100%;
}

.collecction-discover {
    background: #F9F7F5;
    width: 100%;
    -ms-flex: 0 0 calc(100% - 624px);
    flex: 0 0 calc(100% - 624px);
    max-width: calc(100% - 624px);
}

.collecction-banner-img {
    object-fit: cover;
    height: 100% !important;
    transform: scale(1);
    width: 100% !important;
}

.collecction-discover-title {
    color: #000;
    font-size: 48px !important;
    font-style: normal;
    line-height: 90%;
}

.collecction-discover-label {
    color: #000;
    font-family: Helvetica, sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.collecction-discover-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
}

.collecction-room-content .slick-slide img,
.collecction-discover-content .slick-slide img {
    object-fit: cover;
    height: 100% !important;
    width: 100% !important;
}

.collecction-room-content .slick-initialized .slick-slide {
    max-height: 380px;
}

.collecction-discover-list > ul {
    padding-left: 17px !important;
}

.collecction-discover-list li {
    padding: 0;
    margin: 20px 0 0 0;
    list-style: disc !important;
}

.collecction-discover-ol {
    position: relative;
    left: 155px;
    bottom: 75px;
}

.collecction-discover-ol ol {
    position: relative;
}

.collecction-discover-ol .active {
    background-color: #000;
    width: 50px;
}

.collecction-discover-ol li {
    background: rgba(0, 0, 0, 0.25);
    color: transparent;
}

.carousel-caption {
    right: 6%;
    left: 6%;
    padding-bottom: 30px;
    bottom: -11px;
}

.collecction-banner svg {
    fill: #fff;
}

.collecction-banner .room-spaces div:not(.prevent):not(:first-child):before {
    background-color: #fff !important;
}

.collecction-banner-span {
    color: #FFF;
    font-family: Helvetica, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-left: 20px;
}

.collecction-banner-room {
    color: #FFF;
    text-align: left;
    font-family: Helvetica, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 4px;
    text-transform: uppercase;
    max-width: 400px;
    width: 100%;
}

.collecction-banner .carousel-inner,
.collecction-banner .item {
    height: 100%;
}

.collecction-discover-btn {
    display: flex;
    height: 38px;
    padding: 9px 25px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    align-self: stretch;
    border-radius: 55px;
    background: #000;
    font-size: 12px;
    text-transform: uppercase;
    color: #fff !important;
}

.the-collection {
    overflow: hidden;
}

#banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    min-height: 700px;
}

.the-collection #banner video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

a.the-collection-more {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.casa_our_house_banner {
    object-fit: cover;
    height: 100% !important;
    transform: scale(1);
    width: 100% !important
}

.the-collection-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 100%;
}

.the-collection-content h1 {
    font-size: 90px !important;
    color: #FFF;
    text-align: center;
    line-height: 84.5%;
    text-transform: uppercase;
}

.the-collection-more,
.the-collection-more:hover {
    color: #FFF;
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}

.the-collection-by-img {
    overflow: hidden;
    background-color: transparent;
    height: 536px;
    max-height: 536px;
    max-width: 405px;
    display: inline-block;
    width: 100%;
}

.the-collection-by-large img,
.collecction-room-img img,
.the-collection-by-small img,
.the-collection-by-img img {
    object-fit: cover;
    height: 100% !important;
    transition: all 4s ease-in-out;
    transform: scale(1);
    width: 100% !important;
}

.the-collection-by-title h2 {
    color: #000;
    font-size: 42px !important;
    line-height: 32px;
    text-transform: uppercase;
    margin: 0;
}

.the-collection-by-title span {
    color: #000;
    font-family: Helvetica, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-bottom: 11px;
    margin-left: 10px;
}

.the-collection-by-text {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 542px;
    width: 100%;
}

.the-collection-list ul {
    padding-left: 17px !important;
}

.the-collection-list li {
    padding: 0;
    margin: 0;
    list-style: disc !important;
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.the-collection-list li + li {
    margin-top: 12px;
}

.the-collection-by-small {
    overflow: hidden;
    background-color: transparent;
    height: 304px;
    max-height: 304px;
    max-width: 203px;
    display: inline-block;
    width: 100%;
}

.the-collection-by-large {
    overflow: hidden;
    background-color: transparent;
    height: 482px;
    max-height: 482px;
    max-width: 279px;
    display: inline-block;
    width: 100%;
}

.the-collection-rooms {
    background: #F9F7F5;
    margin-top: 115px;
}

.the-collection-rooms .hero-bellow form {
    border-radius: 0 !important;
    background: #F9F7F5 !important;
}

.the-collection-rooms .hero-bellow form .form-group label {
    letter-spacing: 0 !important;
}

.collecction-room {
    width: 100%;
    -ms-flex: 0 0 624px;
    flex: 0 0 624px;
    max-width: 624px;
}

.collecction-room .slick-slider .slick-track,
.collecction-room .slick-slider .slick-list,
.collecction-room .slick-slider,
.collecction-room .carousel {
    height: 100%;
}

.collecction-room-img {
    overflow: hidden;
    background-color: transparent;
    height: 100%;
    max-width: 624px;
    display: inline-block;
    width: 100%;
}

.collecction-room li {
    color: transparent;
}

.collecction-room-content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.collecction-room-content .collecction-discover {
    box-shadow: 0 0 13px 0 rgba(0, 0, 0, 0.07);
    background-color: #fff;
}

.collecction-room-container::-webkit-scrollbar {
    width: 2px !important;
}

.collecction-room-container::-webkit-scrollbar-thumb {
    background-color: #A5A6A6 !important;
    border-radius: 5px !important;
}

.the-collection-rooms .hero-bellow {
    max-width: 100% !important;
    margin-top: 40px !important;
    position: sticky;
    top: 60px;
    z-index: 100;
}

.the-collection-country-filter {
    position: sticky;
    top: 200px;
    min-width: 200px;
}

.collecction-room-locations {
    color: #696969;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
    display: inline-block;
    width: 100%;
    padding: 5px 0;
}

.collecction-room-locations:hover {
    text-decoration: underline !important;
}

.collecction-room-locations.activate {
    color: #000 !important;
    text-decoration-line: underline;
}

.collecction-room-title {
    color: #000;
    font-size: 32px !important;
    font-style: normal;
    line-height: 76%;
    max-width: 200px;
    width: 100%;
    margin: 0;
}

.collecction-room-title-wrapper {
    margin-bottom: 15px;
}

.collecction-room-span {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#searchCollection {
    border-radius: 57px !important;
    background-color: #000 !important;
    color: #fff !important;
    width: 134px;
    height: 35px;
    padding: 8px 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
}

#clearFilters {
    color: #ADADAD !important;
    font-size: 14px;
    text-align: center;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    text-transform: capitalize !important;
    border: 0 !important;
}

.the-collection-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #73737330;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #737577;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}


.collecction-room-left {
    content: "<";
    border-radius: 43px;
    background: rgba(255, 255, 255, 0.33);
    position: absolute;
    left: 25px;
    top: 175px;
    display: flex;
    width: 31px;
    height: 31px;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.collecction-room-right {
    content: ">";
    border-radius: 43px;
    background: rgba(255, 255, 255, 0.33);
    position: absolute;
    right: 25px;
    top: 175px;
    display: flex;
    width: 31px;
    height: 31px;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.the-collection-rooms a {
    color: #696969;
    text-decoration: none;
}

.the-collection-rooms a.activate,
.the-collection-rooms a:hover {
    color: #000;
    text-decoration: underline;
}

.the-collection-rooms a.child-activate {
    color: #000;
}

.room-recervation {
    color: #000;
    text-align: center;
    font-size: 16px;
}

.room-recervation a {
    color: #8C8C8C;
    font-size: 16px;
    text-decoration-line: underline;
}

.cancellation-content {
    display: flex;
    width: 100%;
    padding: 24px;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0 0 17px 0 rgba(0, 0, 0, 0.07);
}

.cancellation-hidden {
    display: none;
}

.btn-cancellation {
    display: flex;
    max-width: 184px;
    height: 32px;
    padding: 17px 47px;
    justify-content: center;
    align-items: center;
    color: #fff !important;
    gap: 10px;
    border-radius: 40px;
    text-transform: uppercase;
    background: #000;
}

.country-divider {
    color: #757575;
    padding: 0 12px;
    margin-top: 10px;
    font-size: 13px;
}

.dropdown-menu {
    min-width: 220px;
}

.checkin-only {
    color: #777 !important;
}

.summary-wrapper + .summary-wrapper {
    padding-top: 10px;
}

#booking-form.sticky {
    top: 70px;
}

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

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

.confirm_event-content {
    width: 850px;
}

.confirm_event-title {
    width: 496px;
}

.confirm_event-title h2 {
    color: #000;
    text-align: center;
    font-family: 'Acumin Pro ExtraCondensed Bold', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 98%;
    text-transform: uppercase;
}

.confirm_event-label {
    color: #000;

    font-size: 14px !important;
    font-weight: 400;
    line-height: 140% !important;
}

.confirm_event-span {
    color: #767676;
    font-family: Helvetica, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.confirm_event-total {
    color: #000;
    text-align: right;
    font-family: Helvetica, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
}

.confirm_event-presing {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
}

.confirm_event-place {
    color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
}

.confirm_event-contry {
    color: #888;
    font-size: 14px;
    line-height: 140%;
}

.confirm_event-hr {
    border-top: 1px solid #d1d1d1;
}

.confirm_event-experience {
    font-size: 12px;
    text-transform: uppercase;
}

.confirm_event-experience-content {
    width: 100%;
}

.confirm_event_home {
    position: relative;
}

.confirm_event_home img {
    object-fit: cover;
    height: 100% !important;
    transform: scale(1);
    width: 100% !important;
}

.confirm_event_home-content {
    position: absolute;
    text-align: center;
    width: 100%;
    top: 230px;
}

.confirm_event_home-content h1 {
    width: 100%;
    color: #FFF;
    font-family: 'Acumin Pro ExtraCondensed Bold', sans-serif;
    font-size: 100px;
}

.confirm_event_home-content p {
    margin-top: 30px;
    color: #FFF;
    font-size: 18px;
}

.confirm_event_home-content a {
    margin-top: 30px;
    height: 33px;
    padding: 8px 22px;
    border-radius: 51px;
    background: #000;
    font-size: 14px;
    text-transform: uppercase;
}

.event-organice-hover {
    display: none;
}

#openOrganice:hover #hoverLabel {
    display: inline-block !important;
}

#openOrganice:hover #hoverSvg {
    display: none !important;
}

.recervation-us {
    text-decoration-line: underline;
    color: #888888;
}

.flotante-btn {
    position: fixed;
    right: 0;
    bottom: 40%;
    z-index: 100;
}

#hoverSvg svg {
    height: 20px;
}

#openOrganice #hoverSvg {
    display: none;
    line-height: 0 !important;
}

.hero.hero-real-estate {
    min-height: 658px;
    padding: 100px 0 80px;
}

.real-estate-zone {
    font-size: 13px;
    color: #ADADAD;
    margin-top: 5px;
}

.real-estate-title {
    font-size: 16px;
    color: #000;
}

.real-estate-title,
.real-estate-zone {
    line-height: 1em;
}

.real-estate-thumbnail {
    height: 320px;
    overflow: hidden;
    position: relative;
}

.real-estate-thumbnail .slick-track {
    height: 320px;
}

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

.real-estate-thumbnail img.active {
    z-index: 1;
    opacity: 1;
}

.real-estate-room-item a {
    text-decoration: none !important;
    height: 320px;
}

.real-estate-carousel {
    margin: 14px 0;
}

.room-content-description a {
    font-size: 14px;
    color: #000;
}

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

.icon-small {
    line-height: 0;
}

.icon-small svg {
    height: 13px !important;
    width: 13px !important;
}

.border-bottom-black {
    border-bottom: 1px solid #000;
}

.real-estate-item-listing {
    margin: 30px 0;
}

div#comparisonModal {
    width: 111px;
}

div#comparisonModal.active {
    width: 413px;
}

div#comparisonModal.active .modal-comparison-content {
    padding: 20px !important;
}

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

.top-header {
    top: 70px;
}

.w-100 {
    width: 100% !important;
    max-width: 100% !important;
}

.real-estate-property-general-details {
    display: flex;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}

.real-estate-property-general-details-item {
    padding: 12px 30px;
    width: 33.33%;
    position: relative;
}

.lh-0 {
    line-height: 0;
}

.pr-2 {
    padding-right: 2rem;
}

.real-estate-property-general-details-item + .real-estate-property-general-details-item:before {
    content: ' ' !important;
    height: 20px;
    background-color: #000;
    padding: 0 1px !important;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.real-estate-property-general-details-item:nth-child(4n):before {
    display: none !important;
}

.real-estate-property-general-details-item div {
    line-height: 1.2em;
}

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

.additional-services-img {
    height: 388px;
}

.additional-services-img img {
    object-fit: cover;
    height: 100% !important;
    width: 100% !important;
}

.wellness_conteten h3 {
    font-size: 18px;
}

.li-normal-dropdown li {
    display: block;
    padding: 3px 20px !important;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
}

.li-normal-dropdown li.padding-less {
    padding: 0 !important;
}

.gap-10 {
    gap: 10px;
}

.color-black {
    color: #000 !important;
}

.real-estate-compare-item {
    margin-top: 0 !important;
}

.chevron-icon {
    display: flex;
    height: 21px;
    align-items: center;
    transition: .15s ease-in-out all;
}

.comparison-panel-heading.active .chevron-icon {
    rotate: 180deg;
}

.comparison-panel-heading h4 a {
    padding: 8px 0;
    margin-top: 30px;
}

.ft-28 {
    font-size: 28px;
}

.how-to-deactivate .icon {
    min-height: 55px;
}

.how-to-deactivate-step {
    max-width: 315px;
}

.event-confirm-content-img {
    overflow: hidden;
    background-color: transparent;
    height: 312px;
    max-height: 312px;
    max-width: 249px;
    width: 100%;
}

.event-confirm-content-img img {
    object-fit: cover;
    height: 100% !important;
    transform: scale(1);
    width: 100% !important;
}

.event-confirm-content {
    max-width: 249px;
    width: 100%;
}

.event-confirm-label {
    color: #000;
    text-align: justify;
    font-family: Helvetica, sans-serif;
    font-size: 11px;
}

.event-confirm-month {
    color: #888;
    font-family: Helvetica, sans-serif;
    font-size: 11px;
}

.event-confirm-title {
    color: #000;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 88%;
    text-transform: uppercase;
}

.event-confirm-span {
    color: #000;
    text-align: justify;
    font-family: Helvetica, sans-serif;
    font-size: 10px;
}

.event-confirm-label p {
    width: 223px;
    font-size: 10px !important;
    display: inline-block;
}

.destinations-overflow {
    overflow-y: auto;
}

::-webkit-scrollbar-thumb {
    background-color: rgb(238, 238, 238);
    border-radius: 1px
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.local-travel-img {
    overflow: hidden;
    background-color: transparent;
    height: 562px;
    max-height: 562px;
    max-width: 1250px;
    width: 100%;
}

.benefis-hero-img img,
.about-img-hero img,
.local-travel-img img {
    object-fit: cover;
    height: 100% !important;
    transform: scale(1);
    width: 100% !important;
}

.benefis-hero-img,
.about-img-hero {
    overflow: hidden;
    background-color: transparent;
    height: 630px;
    max-height: 630px;
    max-width: 1250px;
    width: 100%;
}

.mt-1 {
    margin-top: 1rem;
}

.wp-usage {
    padding-top: 30px;
    border-bottom: 1px solid;
    padding-bottom: 30px;
}

.slider-container {
    padding: 20px 0 40px;
}

.slider-click-pips {
    height: 20px !important;
    border-radius: 10px !important;
}

.slider-click-pips .noUi-connects {
    border-radius: 10px 0 0 10px !important;
}

.slider-click-pips.noUi-horizontal .noUi-handle {
    height: 20px !important;
    width: 20px !important;
    top: -2px !important;
}

.slider-click-pips.noUi-horizontal .noUi-connect {
    background: rgb(255, 209, 228) !important;
    background: linear-gradient(90deg, #FFD1E4 0.22%, #FBD2E4 31.22%, #EFD7E5 60.22%, #DCDEE7 88.22%, #D2E3E8 100.22%) !important;
}

.add-type-room {
    display: flex;
    height: 30px;
    padding: 6px 8px;
    justify-content: center;
    align-items: center;
    gap: 13px;
    border-radius: 7px;
    background: #D2E3E8;
}

.type-room-bottom {
    display: flex;
    height: 29px;
    padding: 6px 14px;
    justify-content: center;
    align-items: center;
    gap: 13px;
    border-radius: 7px;
    background: #F2F2F2;
    font-size: 12px;
    text-transform: capitalize;
}

.open-type-room {
    display: block;
}

.close-type-filters {
    border: 1px solid #000 !important;
    background: #FFF !important;
}

.type-room-bottom.the-collection-btn,
#propertyTypeSelector input:checked + label {
    background-color: #D2E3E8 !important;
}

.type-room-bottom.new-arrivals-btn {
    background-color: #FEAC00 !important;
}

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

.captcha-formgroup [type=text] {
    color: #000000;
    border: 0;
    border-bottom: 1px solid #D2D2D2;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    outline: none !important;
    padding-left: 0;
    margin-left: 10px;
    flex-grow: 1;
}

.real-estate-guest {
    cursor: pointer;
}

.new-search-field .icon svg {
    height: 18px;
    width: 18px;
    margin-right: 14px;
}

.new-hero-bellow form .form-group .new-search-field {
    color: #000 !important;
    width: 100%;
    font-size: 14px;
    text-decoration: none !important;
}

.new-hero-bellow {
    max-width: 1201px;
    width: 100%;
    margin-bottom: 227px;
}

.new-hero-bellow form .form-group {
    width: 20%;
    margin: 0;
    padding: 21px 24px 20px 24px;
    border-right: 1px solid #B3B3B3;
}

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

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

.new-hero-bellow form .form-group label .icon {
    margin-right: 5px;
    line-height: 0;
    min-width: 15px;
}

.new-hero-bellow form .form-group .dropdown-menu {
    width: 100%;
    border: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.new-hero-bellow form .btn {
    border-radius: 30px;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-block;
    flex-grow: inherit;
    margin-left: 25px;
    width: 170px;
    height: 35px;
    padding: 8px 25px;
}

.new-hero-bellow form {
    background-color: rgba(255, 255, 255, 0.77);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.new-destination-image {
    overflow: hidden;
    height: 318px;
    max-height: 315px;
    display: inline-block;
    width: 242px;
    background: rgba(0, 0, 0, 0.20);
    position: relative;
    z-index: 0;
}

.new-destination-image-home {
    width: 215px;
}

.long-term-rentals-img img,
.wh-detination-img img,
.new-are-you-ready-image img,
.property-img img,
.casa-collection-content img,
.new-destination-image img {
    object-fit: cover;
    height: 100% !important;
    transition: all 4s ease-in-out;
    transform: scale(1);
    width: 100% !important;
}

.logo-types-wh-img img {
    object-fit: contain;
    height: 100% !important;
    transition: all 4s ease-in-out;
    transform: scale(1);
    width: 100% !important;
}

.new-destinations-item {
    position: relative;
    width: 100%;
    line-height: 0;

}

.new-destination-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFF;
    text-align: center;
    font-size: 59px;
    line-height: normal;
    text-transform: uppercase;
}

.new-destination-image:hover img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.new-are-you-ready-image {
    overflow: hidden;
    height: 100%;
    max-height: 702px;
    display: inline-block;
    max-width: 550px;
    width: 100%;
}

.new-are-you-ready-content {
    width: 100%;
    height: 758px;
    background: #FEAC00;
    padding-left: 71px;
}

.new-are-you-ready-text {
    width: 100%;
    max-width: 487px;
    font-family: Helvetica, sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.new-are-you-ready-title {
    width: 100%;
    max-width: 545px;
}

.new-are-you-ready-title h3 {
    font-size: 50px;
}

.new-are-you-ready-btn a {
    border-radius: 67px;
    font-family: Helvetica, sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    -webkit-border-radius: 67px;
    -moz-border-radius: 67px;
    -ms-border-radius: 67px;
    -o-border-radius: 67px;
}

.wh-detination-img {
    position: relative;
    overflow: hidden;
    height: 100%;
    max-height: 281px;
    display: inline-block;
    width: 100%;
}

.wh-detination-label {
    position: absolute;
    bottom: 5%;
    left: 5%;
    color: #FFF;
    font-size: 38px;
    line-height: 80%;
    width: 100%;
    max-width: 155px;
}

.wh-detination-content {
    width: 400px;
    height: 281px;
    line-height: 0;
}

.casa-collection-content {
    position: relative;
    height: 641px;
    width: 583px;
    transition: 0.5s;
}

.the-collection-text {
    position: absolute;
    top: 43%;
    left: 20%;
}

.casa-collection-text {
    position: absolute;
    top: 20%;
    left: 6%;
    cursor: pointer;
}

.the-collection-title {
    color: #FFF;
    text-align: center;
    font-size: 74px;
    line-height: normal;
}

.casa-collection-text h3 {
    color: #FFF;
    text-align: center;
    font-family: Nysé, sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.casa-collection-text p {
    color: #FFF;
    text-align: center;
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 512px;
    width: 100%;
}

.casa-collection-text a {
    border-radius: 43px;
    border: 1px solid #FFF;
    color: #fff;
    padding: 6px 35px;
}

.long-term-rentals-img {
    max-width: 100%;
    width: 405px;
    max-height: 100%;
    height: 536px;
    overflow: hidden;
    display: inline-block;
    background: rgba(0, 0, 0, 0.20);
}

.long-term-rentals-content {
    margin-left: 120px;
}

.long-term-rentals-content h2 {
    font-family: "Acumin Pro ExtraCondensed Bold", sans-serif;
    font-size: 42px !important;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.long-term-rentals-content p {
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 542px;
}

.long-term-rentals-content a {
    padding: 8px 20px;
    border-radius: 36px;
    border: 1px solid #000;
    background: #000;
    -webkit-border-radius: 36px;
    -moz-border-radius: 36px;
    -ms-border-radius: 36px;
    -o-border-radius: 36px;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.logo-types-wh-img {
    height: 30px;
}

.real-estate-slide {
    position: absolute;
    left: 3%;
    top: 6%;
    color: rgb(255, 255, 255) !important;
    height: 88%;
    width: 90%;
}

.real-estate-slide p {
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.real-estate-slide a {
    border-radius: 37px;
    border: 1px solid #FFF;
    color: #FFF;
    background: rgba(255, 255, 255, 0.00);
    padding: 8px 20px;
    font-family: Helvetica, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.real-estate-slide h3 {
    font-size: 40px;
    margin: 0;
}

.casa-collection-icon {
    position: absolute;
    top: 48%;
    left: 32%;
    cursor: pointer;
}

.casa-collection-icon svg {
    width: 212px;
    height: 66px;
}

.background-slider::after,
.new-destination-image::after,
.wh-detination-img::after,
.property-img::after,
.casa-collection-content::after {
    content: '';
    position: absolute;
    background: rgba(0, 0, 0, 0.45);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
}

.real-estate-slide,
.wh-detination-label,
.the-collection-text,
.new-destination-name,
.casa-collection-icon,
.casa-collection-text,
.wh-detination-labe {
    z-index: 1;
}

.wh-detination-container {
    position: absolute;
    transform: translateX(-50%);
    bottom: -282px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    background: #fff;
    padding: 31px 24px;
    z-index: 1;
    transition: 0.6s;
    left: 50%;
    width: 100%;
    line-height: normal;
}

.wh-detination-container .btn {
    border-radius: 31px;
    border: 1px solid #000;
    background: #fff
}

.wh-detination-container h3 {
    color: #000;
    font-size: 18px;
    font-family: "Helvetica", sans-serif;
}

.wh-detination-container p {
    color: #000;
    font-size: 13px;
    font-family: "Helvetica", sans-serif;
}

.wh-detination-container a {
    text-decoration: none;
}

.wh-detination-img:hover .wh-detination-container {
    bottom: 50%;
    opacity: 1;
    transform: translate(-50%, 50%);
}

.property-img {
    width: 412px;
    height: 395px;
    position: relative;
}

.property-content {
    position: absolute;
    bottom: 19px;
    width: 100%;
    padding: 0 15px;
    z-index: 1;
}

.property-content-title {
    height: 457px;
}

.property-title,
.property-price {
    color: #fff;
    font-size: 14px;
    font-family: Helvetica, sans-serif;
}

.property-title svg {
    fill: #fff;
}

.property-price span {
    font-weight: 700;
}

.property-zone {
    color: #B6B6B6;
    font-family: Helvetica, sans-serif;
    font-size: 13px;
}

.property-container {
    gap: 20px;
    overflow-x: auto;
}

.property-content-title h3 {
    font-size: 40px;
}

.property-content-title p {
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    max-width: 380px;
    width: 100%;
}

.property-background {
    background: #F9F7F5;
    padding-bottom: 40px;
}

.btn-property {
    display: inline-flex;
    height: 32px;
    padding: 6px 19px;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    border-radius: 7px;
    background: #D2E3E8;
    color: #000;
    font-size: 14px;
    text-decoration: none;
    margin-right: 16px;
}

.btn-property.active {
    background: #000;
    color: #fff;

}

.btn-property.active path {
    fill: #fff;
}

.neighborhoods-cities-selector li {
    display: block;
    padding: 3px 20px !important;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
}

.new-hero-bellow .home-form .form-group label {
    font-size: 12px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: normal;
}

.guides-menu-background {
    background: #F2F2F2;
}

.guides-menu-background a:hover,
.guides-menu {
    display: flex;
    width: 182px;
    height: 45px;
    padding: 20px 27px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    color: #000;
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}

.guides-menu.active {
    border-bottom: 3px solid #FEAC00;
    background: #F2F2F2;
}

.guides-content {
    width: 100%;
    height: 475px;
    position: relative;
}

.guides-content img {
    object-fit: cover;
    height: 100% !important;
    transform: scale(1);
    width: 100% !important;
}

.guides-content-title {
    position: absolute;
    top: 36%;
    color: #fff;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
}

.guides-content-title h2 {
    font-size: 100px;
    padding: 0;
    margin: 0;
}

.guides-content-title p {
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 13px;
    text-transform: uppercase;
}

.guide-search-bnt {
    display: flex;
    color: #fff;
    width: 174px;
    height: 30px;
    padding: 6px 36px 6px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    border-radius: 53px;
    background: #000;
}

.guide-search-bnt svg {
    fill: #fff;
}

.search-filters-guide .form-group {
    margin: 0 !important;

}

.search-filters-guide .search-select {
    padding-bottom: 11px;
}

.guide-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    max-width: 290px;
}

.guide-list-img {
    height: 342px;
}

.guide-list-img img {
    object-fit: cover;
    height: 100% !important;
    transform: scale(1);
    width: 100% !important;
}

.guide-list-conteten {
    font-size: 18px;
    max-width: 590px;
    width: 100%;
    display: flex;
    padding: 16px 16px 20px 16px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 6px;
    flex-shrink: 0;
    align-self: stretch;
    border-radius: 0 0 7px 7px;
    background: #FFF;
    box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.08);
}

.guide-list-conteten:hover {
    text-decoration: none;
}

.guide-list-conteten h3 {
    color: #000;
    font-size: 28px !important;
    font-style: normal;
    font-weight: 700;
    line-height: 88%;
    text-align: left;
    max-width: 50%;
    width: 100%;
}

.guide-list-conteten span {
    color: #000;
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: right;
    margin-left: 15px;
}

.guide-list-conteten p {
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.guide-list-conteten-title {
    margin-top: 10px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    text-align: justify;
    align-items: center;
    height: 45px;
}

.guide-list-benifist {
    color: #000;
    text-align: justify;
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

.guide-list-description {
    color: #848484;
    text-align: justify;
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

.destinations-list {
    flex-wrap: nowrap;
    overflow-x: auto;
}

.about-content-img {
    max-width: 541px;
    width: 100%;
    height: 671px;

}

.contact-img img,
.about-content-img img {
    object-fit: cover;
    height: 100% !important;
    transform: scale(1);
    width: 100% !important;
}

.about-content {
    width: 100%;
}

.contact-img {
    max-width: 475px;
    width: 100%;
    height: 665px;
}

.contact-content {
    height: 665px;
}

.contact-container {
    background: #FFF;
    box-shadow: 0 0 17px 0 rgba(0, 0, 0, 0.07);
}

.contact-content {
    padding: 0 20px !important;
}

.main-menu-dropdown .dropdown-menu .header-menu-sub-title {
    color: #000;
    font-family: Helvetica, sans-serif !important;
    font-size: 16px !important;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    text-transform: capitalize;
}

.panel-heading .header-menu-sub-title:before {
    content: none !important;
}

.panel-sub-heading-li,
.header-menu .panel-default > .panel-sub-heading {
    padding: 17px 60px !important;
}

.panel-sub-heading a {
    font-size: 16px !important;
}

.align-conten {
    align-content: center;
}

.form-group .text {
    font-size: 15px;
}

.real-estate-guest {
    cursor: pointer;
}

.form-group .text {
    font-size: 14px;
}

.panel-sub-heading-ul li {
    padding: 17px 45px !important;
}

.panel-sub-heading-li a,
.panel-sub-heading-ul a {
    font-family: Helvetica, sans-serif !important;
    text-decoration-line: underline;
    text-transform: none !important;
    font-size: 16px !important;
    margin: 0 !important;
}

.panel-sub-svg svg {
    width: 100% !important;
    height: 100% !important;
    transform: rotate(180) !important;
}

.panel-sub-heading .collapsed .panel-sub-svg svg {
    transform: rotate(0) !important;
}

.header-menu .panel-title.collapsed div svg {
    transform: rotate(0);
}

.header-menu .panel-title div svg {
    transition: .5s ease-in-out;
    transform: rotate(180deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -ms-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
}

.header-menu .panel-heading a:before {
    display: none !important;
}

.panel-sub-heading .collapsed .header-menu-title,
.panel-sub-heading .collapsed .panel-sub-svg {
    text-decoration: none;
}

.panel-sub-heading .panel-title.collapsed .header-menu-sub-title {
    text-decoration: underline;
}

.panel-sub-heading .header-menu-title,
.panel-sub-heading .panel-title .header-menu-sub-title {
    transition: .5s ease-in-out all;
    text-decoration: none;
    order: 1;
    -webkit-transition: .5s ease-in-out all;
    -moz-transition: .5s ease-in-out all;
    -ms-transition: .5s ease-in-out all;
    -o-transition: .5s ease-in-out all;
}

.panel-sub-heading .collapsed .panel-sub-svg {
    order: 2;
}

.collapse {
    transition-duration: 0.5s;
}

.header-menu {
    max-height: calc(100vh - 75px);
    overflow: auto;
}

.panel-sub-svg {
    width: 10px;
    height: 15px;
}

.main-menu-dropdown .dropdown-menu .panel-title {
    text-decoration: none !important;
}

#accordion {
    transition-duration: 0.5s;
}

.carousel-bottom {
    bottom: 2%;
}

.loging-guides p {
    text-align: center;
    font-size: 16px;
}

.loging-guides .btn {
    display: flex;
    height: 40px;
    padding: 6px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.loging-guides .btn-primary {
    border-radius: 53px;
    background: #000;
}

.loging-guides .btn-default {
    border-radius: 24px;
    border: 1px solid #000;
    background: #FFF;
}

.profile-services-menu-link {
    display: flex;
    align-items: center;
    color: #000 !important;
    text-decoration: none !important;
    font-size: 18px;
    padding: 15px 0;
}

.profile-services-menu-link .profile-services-menu-link-icon {
    line-height: 0;
    width: 30px;
    text-align: center;
    margin-right: 40px;
}

.profile-user-card {
    display: flex;
    align-items: center;
}

.profile-user-card-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 30px;
    flex: none;
}

.profile-user-card-photo img {
    object-fit: cover;
    height: 100% !important;
    transition: all 4s ease-in-out;
    transform: scale(1);
    width: 100% !important;
}

.profile-user-card-details a {
    font-size: 14px;
    color: #000 !important;
    margin-top: 5px;
    display: inline-block;
}

.text-ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.about-title {
    font-size: 100px;
}

.the-collection-coming-soon {
    color: #fff;
    font-size: 18px;
    letter-spacing: 7px;
    text-transform: uppercase;
}

.guide-container-list,
.guide-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 26px;
}

.dropdown-backdrop {
    display: none !important;
}

.noUi-marker-horizontal.noUi-marker-large {
    height: 10px !important;
}

.search-count-right,
.search-count-left {
    width: 29px;
    height: 30px;
    border-top: 1px solid #E9E9E9;
    border-bottom: 1px solid #E9E9E9;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8C8C8C;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
}

.search-count-left {
    border-radius: 6px 0 0 6px;
    border-left: 1px solid #E9E9E9;
}

.search-count-right {
    border-radius: 0 6px 6px 0;
    border-right: 1px solid #E9E9E9;
}

.search-count-center {
    width: 65px;
    height: 30px;
    border: 1px solid #E9E9E9;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8C8C8C;
    font-size: 16px;
    font-weight: 400;
}

.search-count {
    padding: 14px 16px;
    border-radius: 0 7px 7px 7px !important;
}

.search-filters .form-group .search-field-guest,
.footer-form form .form-group .search-field-guest {
    color: #000;
    border-bottom: 1px solid #000;
    width: 100%;
    font-size: 15px;
    text-decoration: none !important;
}

.btn-guest {
    width: 100% !important;
    margin-top: 25px !important;
    border: 1px solid #000 !important;
    font-size: 14px !important;
    border-radius: 30px;
}


.breadcrumb li:before {
    height: 14px !important;
}


.guides-back,
.guides-breadcrumb span,
.guides-breadcrumb a {
    font-size: 18px !important;
}

.event-detail .guide-title {
    font-size: 18px;
}

.socials-networks .guide-title {
    font-size: 14px;
}

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

.guide-title {
    color: #959595;
}

.guides-web {
    color: #000;
    font-size: 14px;
    text-decoration-line: underline;
}

.guide-breadcrumb-item {
    position: relative;
    font-size: 16px;
    color: #959595;
}

.guide-breadcrumb-item:not(:last-child)::after {
    content: '•';
    color: #999;
    padding: 0 15px;
}

.restaurants_by_categori_title {
    font-size: 32px;
    color: #000;
}

.restaurants_by_categori_more:hover,
.restaurants_by_categori_more {
    font-size: 16px !important;
    color: #000;
    text-decoration: underline;
}

.guide-container a {
    text-decoration: none;
}

.search-count span {
    user-select: none;
}

#casaWynwood {
    opacity: 0;
    transition: opacity 1.5s ease;
}

#casaWynwoodOpen {
    opacity: 1;
    transition: opacity 1.5s ease;
}

#hoverContent:hover #casaWynwood {
    opacity: 1;
    transition: opacity 1.5s ease;
}

#hoverContent:hover #casaWynwoodOpen {
    opacity: 0;
    transition: opacity 1.5s ease;
}

.guide-detail-img {
    width: 380px;
    max-height: 100%
}

.guide-detail-img img {
    object-fit: cover;
    height: 100% !important;
    transform: scale(1);
    width: 100% !important;
}

.restaurants_by_categori_title {
    font-size: 32px;
}

.restaurants_by_categori_more {
    font-size: 13px;
}

.guide-overflow {
    overflow: auto;
}

.guide-container {
    width: 1238px;
    display: flex;
    gap: 26px;
    flex-direction: row;
}

.guide-title {
    color: #959595;
    font-family: Helvetica, sans-serif;
    font-size: 16px;
}

.event-detail-title {
    font-size: 32px
}

button.no-format {
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 15px;
}

.collecction-room .slick-prev:before,
.collecction-room .slick-prev:before,
.collecction-room .slick-next:before,
.collecction-room .slick-next:before {
    opacity: 1;
}

.collecction-room .slick-prev,
.collecction-room .slick-next {
    z-index: 1;
}

.collecction-room-content + .collecction-room-content {
    margin-top: 20px;
}

.the-collection-carousel a.slick-slide:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(84 84 84 / 13%) 70%, rgb(0 0 0 / 77%) 100%);
    z-index: 1;
}

.the-collection .new-hero-bellow {
    max-width: 1020px;
    width: 100%;
    margin-top: 120px;
    margin-bottom: 50px;
}

.the-collection .new-hero-bellow form .form-group {
    width: 25%;
}

.the-collection .new-hero-bellow form {
    padding: 0 !important;
}

.the-collection .new-hero-bellow form button {
    background: #000 !important;
    color: #fff !important;
    border-color: #000 !important;
}

.the-collection-country-filter li + li {
    margin-top: 24px;
}

#theCollectionAdd {
    width: 100%;
}

.width-150 {
    width: 150px;

}

.width-120 {
    width: 120px;

}

.flex-check {
    display: flex !important;
    display: -webkit-flex !important;
    flex-direction: row;
}

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

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

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

.padding-top-20 {
    padding-top: 20px !important;
}

.padding-top-20 {
    padding-top: 20px !important;
}

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

.padding-bottom-15 {
    padding-bottom: 15px !important;
}

.booking-whitout-box {
    box-shadow: none !important;
}

.margin-right-23 {
    margin-right: 23px;
}

.margin-right-10 {
    margin-right: 10px !important;
}

.fw-700 {
    font-weight: 700;
}

.fl-80 {
    line-height: 80%;
}

.ft-80 {
    font-size: 80px;
}

.ft-15 {
    font-size: 15px !important;
}

.ft-18 {
    font-size: 18px !important;
}

.ft-64 {
    font-size: 64px;
}

.ft-24 {
    font-size: 24px;
}

.ft-40 {
    font-size: 40px !important;
}

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

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

.input-number {
    border: none;
    text-align: center;
    background-color: #fff;
}

.input-number-group input[type=number]::-webkit-inner-spin-button,
.input-number-group input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
    background: #C9E5EA !important;
}

.tab-content {
    background: #FFF;
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.07);
}

.box-shadow-none {
    box-shadow: none;
}

.tab-btn-form {
    max-width: 120px;
    width: 100%;
    display: flex;
    height: 38px;
    padding: 9px 26px;
    justify-content: center;
    align-items: center;
    gap: 9px;
    border-radius: 59px;
    background: #000;
    color: #FFF !important;
    text-align: center;
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
}

.row-tab {
    padding: 20px !important;
}

.border-bottom-1 {
    border-bottom: 1px solid #000;
}

#set_hours {
    border: none;
    text-align: end;
}

.input-cars {
    max-width: 95px;
    width: 100%;
}

.check-cars {
    max-width: 165px;
    width: 100%;
    text-align: end;
    gap: 17%;
    text-transform: capitalize;
}

.check-cars label {
    font-size: 16px !important;
    margin-left: 10px;
    cursor: pointer;
}

.check-cars-input[type="radio"] {
    display: none;
}

.check-cars-position {
    position: relative;
}

.check-cars-input[type="radio"] + Label .span-car {
    width: 21px;
    height: 21px;
    float: left;
    border: 2px solid #B3B3B3;
    background: #fff;
    cursor: pointer;
    border-radius: 100%;
}

.check-cars-input[type="radio"]:checked + Label .span-car {
    background-size: 24px 24px;
    border-color: #000;
    position: relative;
}

.check-cars-input[type="radio"]:checked + label .span-car:after {
    content: " ";
    border-radius: 100%;
    position: absolute;
    top: 2px;
    left: 2px;
    background-color: #000;
    height: 13px;
    width: 13px;
}

.p-car {
    margin: 0 0 0 7px;

}

.summary-cars {
    padding: 20px;
    border-radius: 7px;
    background: #FFF;
    box-shadow: 0 0 17px 0 rgba(0, 0, 0, 0.17);
}

.btn-transport {
    height: 37px;
    padding: 5px 12px;
    flex: 1 0 0;
    border-radius: 40px;
}

.btn-transport-transparent {
    background: #FFF;
    border: 1px solid #000;
    text-align: center;
}

.btn-transport-black {
    color: #fff;
    background: #000;
    border: 1px solid #000;
    width: 100%;
    flex-grow: 3;
}

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

.tab-content > .actived {
    display: block;
}

.input-number-label {
    color: #949494;
}

.add-ons-page .tab-pane .form-group label {
    color: #949494 !important;
    font-family: Helvetica, sans-serif;
    font-size: 14px !important;
}

.add-ons-img {
    overflow: hidden;
    background-color: transparent;
    height: 87px;
    max-height: 87px;
    display: inline-block;
    max-width: 87px;
    width: 100%;
}

.add-ons-img img {
    object-fit: cover;
    height: 100% !important;
    transition: all 4s ease-in-out;
}

.add-ons-p {
    color: #000;
    font-family: Helvetica, sans-serif;
    font-size: 14px !important;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin: 0;
}

.add-ons-span {
    color: #A1A1A1;
    font-family: Helvetica, sans-serif;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.add-ons-total {
    width: 115px;
}

.add-ons-total p {
    color: #000;
    text-align: right;
    font-family: Helvetica, sans-serif;
    font-size: 14px !important;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin: 0;
}

.modal-open .modal {
    z-index: 10000;

}

.add-service-modal {
    width: 135px;
    height: 249px;
    flex-shrink: 0;
    border-radius: 14px;
    border: 1px solid #A1A1A1;
}

.modal-content-add {
    padding: 0 40px 40px 40px;
}

.bnt-add-ons-transparnte {
    width: 100%;
    border-radius: 100px;
    border: 1px solid #000;
    background: transparent;
    height: 31px;
    color: #000;
    text-align: center;
    font-family: Helvetica, sans-serif;
    padding: 7px 33px;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 138.99%;
}

.bnt-add-ons-black:hover,
.bnt-add-ons-black {
    width: 100%;
    border-radius: 100px;
    border: 1px solid #000;
    background: #000;
    height: 31px;
    color: #FFF;
    text-align: center;
    padding: 7px 33px;
    font-family: Helvetica, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 138.99%;
}

.add-ons-bookings {
    font-family: Helvetica, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.add-ons-bookings-gray {
    color: #8C8C8C;
}

.content-add-ons {
    position: fixed;
    width: 100%;
    padding: 10px 44px;
    gap: 10px;
    background: #FFF;
    bottom: 0;
    z-index: 10;
    box-shadow: 0 -4px 7px 0 rgba(0, 0, 0, 0.10);
}

.bnt-add-banner-black:hover,
.bnt-add-banner-black {
    background: #000;
    color: #FFF;
    display: flex;
    padding: 15px 14px;
    align-items: flex-start;
    gap: 10px;
}

.hr-add-check-out {
    margin-top: 20px;
    margin-bottom: 0;
    border: 0;
    border-top: 1px solid #000;
}

.add-more-information {
    color: #8C8C8C !important;
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline !important;
}

.edit-add-on:hover,
.edit-add-on {
    color: #000;
    text-align: center;
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
}

.add-ons-img-contet {
    overflow: hidden;
    background-color: transparent;
    height: 237px;
    max-height: 237px;
    display: inline-block;
    width: 100%;
}

.add-book-img-contet {
    overflow: hidden;
    background-color: transparent;
    height: 173px;
    max-height: 174px;
    display: inline-block;
    max-width: 440px;
    width: 100%;
}

.addicional-service-img img,
.add-ons-img-contet img,
.add-book-img-contet img {
    object-fit: cover;
    height: 100% !important;
    transition: all 4s ease-in-out;
    transform: scale(1);
    width: 100% !important;
}

.add-book-p {
    color: #000;
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.add-book-p span,
.add-book-span {
    color: #8C8C8C !important;
    font-size: 14px;
}

.late-check-input {
    display: none;
}

.late-check-input + label {
    cursor: pointer;
    position: relative;
}

.late-check-input[type="radio"] + label .span-late-check-out {
    width: 9px;
    height: 9px;
    float: left;
    border: 1px solid #000;
    background: #fff;
    cursor: pointer;
    border-radius: 100%;
    padding: 7px 0 3px 10px;
}

.late-check-input[type="radio"]:checked + label .span-late-check-out {
    background-size: 24px 24px;
    border-color: #000;
}

.late-check-input[type="radio"]:checked + label .span-late-check-out:after {
    content: "";
    width: 0;
    height: 0;
    border: 4px solid #000;
    border-radius: 96%;
    position: absolute;
    top: 3px;
    left: 2px;

}

.p-late-check-out {
    color: #000;
    font-family: Helvetica, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.late-hr {
    border-top: 1px solid #000;
}

.addicional-service-img {
    overflow: hidden;
    background-color: transparent;
    max-height: 388px;
    display: inline-block;
    max-width: 583px;
    height: 388px;
    width: 100%;
}

.arrowOpenClose,
.input-group-button {
    cursor: pointer;
}

.input-number-text {
    font-size: 18px;
}


.li_remove a {
    cursor: pointer !important;
}

.removeTab {
    background: transparent;
    border: none !important;
}

.light-gray {
    background-color: #F0F0F0;
}

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

.border-bottom-black {
    line-height: 1em;
    border-bottom: 1px solid #000 !important;
}

#returnHour,
#goingHour {
    padding: 0;
    background-color: transparent;
    border: 0;
}

.transportation-radio {
    position: relative;
    display: flex;
    margin: 0;
    cursor: pointer;
}

.transportation-radio:before {
    content: " ";
    height: 20px;
    width: 20px;
    display: inline-block;
    border: 2px solid #B3B3B3;
    border-radius: 50%;
    margin-right: 5px;
}

.transportation-hidden-radio:checked + label:before {
    border-color: #000 !important;
}

.transportation-hidden-radio:checked + label:after {
    content: " ";
    height: 12px;
    width: 12px;
    position: absolute;
    border-radius: 50%;
    left: 4px;
    top: 4px;
    background-color: #000;
}

.more-less-count {
    padding: 0 10px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.btn-wynwood {
    background-color: #000 !important;
    color: #fff !important;
    border-radius: 50px;
}

.nav-hidden > li {
    display: none !important;
}

.nav-hidden > li {
    display: none !important;
}

.long_termn_rentals_landing {
    padding: 1px 0 80px 0;
    background: #F9F7F5;
    margin-top: 100px;
}

.property-landing-courty .property-content-title h3 {
    font-size: 80px !important;
    line-height: 80%;
}

.content-guide {
    height: 105px;
}

input.timepicker {
    line-height: 1em !important;
    border: 0;
    border-bottom: 1px solid #000 !important;
    background-color: transparent;
    width: initial !important;
    display: inline-block;
    margin: 0;
    padding: 0;
    letter-spacing: 0 !important;
    font-size: 14px;
    height: 14px;
    max-width: 70px;
    text-align: center;
    cursor: pointer;
}

.booking-form .daterange .text {
    font-size: 16px;
    line-height: 19px;
}

.txt-uppercase {
    text-transform: uppercase;
}

.payment-method-item {
    cursor: pointer;
    width: 100%;
    padding: 16px;
    border: 1px solid #B3B3B3;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.payment-method-item-icon {
    line-height: 0;
}

.payment-method-item-radio input {
    display: none;
}

.payment-method-item-radio .custom-radio {
    width: 24px;
    height: 24px;
    border: 2px solid #B3B3B3;
    border-radius: 50%;
    position: relative;
}

.payment-method-item-radio input:checked + .custom-radio {
    border-color: #000 !important;
}

.payment-method-item-radio input:checked + .custom-radio:before {
    content: " ";
    background-color: #000;
    height: 16px;
    width: 16px;
    position: absolute;
    border-radius: 50%;
    top: 2px;
    left: 2px;
}

div#otherPaymentButtons button {
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, .20) !important;
    width: 100%;
    border: 0;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    padding: 15px 0;
    gap: 8px;
    line-height: 1em;
}

div#otherPaymentButtons #google-pay-button button {
    background: #fff;
    color: #000;
}

div#otherPaymentButtons #apple-pay-button button {
    background: #000;
    color: #fff;
}

.card-button-wrapper button {
    width: 100%;
    font-size: 20px;
    border-radius: 6px;
    padding: 12px 0;
    font-weight: bold;
}

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

.slash-lang {
    color: #fff;
    font-size: 14px;
}

.wh-h-44 {
    height: 44px !important;
}

.wh-bg-white {
    background: #FFFFFF !important;
}

.wh-bg-black {
    background: #000000 !important;
}

.wh-br-6 {
    border-radius: 6px !important;
}

.wh-br-57 {
    border-radius: 57px !important;
}

.wh-bs-grey {
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.20) !important;
}

.wh-border-none {
    border: none !important;
}

.wh-gap-15 {
    gap: 15px !important;
}

.wh-gap-20 {
    gap: 20px !important;
}

.wh-gap-24 {
    gap: 24px !important;
}

.wh-d-flex {
    display: flex !important;
}

.wh-py-7 {
    padding-top: 7px !important;
    padding-bottom: 7px !important;
}

.wh-py-17 {
    padding-top: 17px !important;
    padding-bottom: 17px !important;
}

.wh-px-16 {
    padding-left: 16px !important;
    padding-right: 16px !important;
}

.wh-px-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
}

.wh-align-items-center {
    align-items: center !important;
}

.wh-fs-15 {
    font-size: 15px !important;
}

.wh-fs-16 {
    font-size: 16px !important;
}

.wh-ff-helvetica {
    font-family: Helvetica, sans-serif;
}

.wh-text-color-black {
    color: #000000 !important;
}

.wh-color-white {
    color: white !important;
}

.wh-mb-17 {
    margin-bottom: 17px !important;
}

.wh-flex-column {
    flex-flow: column !important;
}

.wh-b-solid {
    border: 1px solid #000000 !important;
}

.wh-w-170 {
    width: 170px !important;
}

.wh-w-214 {
    width: 214px !important;
}

.wh-h-35 {
    height: 35px !important;
}

.check-in-form div#card-element {
    display: inline-block;
    width: 100%;
    height: 40px;
    padding: 9px 10px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 22px;
    color: #33475b;
    border: 1px solid #cbd6e2;
    box-sizing: border-box;
    border-radius: 15px;
    background-color: #f6f8fa;
}

.font-size-14 {
    font-size: 14px !important;
}

.check-out-title {
    color: #000;
    font-family: Helvetica;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 5.76px;
    text-transform: uppercase;
    margin: 0;
}

.check-out-input {
    position: relative;
}

.check-out-input select,
.check-out-input input {
    height: 50px;
    padding: 10px 16px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 7px;
    border: 1px solid #999;
    width: 100%;
}

.check-out-input label {
    color: #000;
    font-family: Helvetica;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.check-out-input option,
.check-out-input input::placeholder,
.check-out-input input::-webkit-input-placeholder {
    font-family: Helvetica;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background-color: #fff;
}

.pd-5 {
    padding: 5px;
}

.password_error,
.email_error,
.generic_error {
    color: #F97066;
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.generic_error {
    display: none;
}

.generic_error.active {
    display: block !important;
}

.check-out-input-error option:focus-visible,
.check-out-input-error input:focus-visible {
    border: 3px solid #F97066 !important;
    color: #F97066 !important;
}

.check-out-input-error input::placeholder,
.check-out-input-error input::-webkit-input-placeholder {
    color: #F97066 !important;
}

.check-out-input-error select,
.check-out-input-error input {
    border-radius: 7px !important;
    border: 2px solid #F97066 !important;
    background: #FFF !important;
    outline: none;
    color: #F97066 !important;

}

.check-out-input-success select:focus-visible,
.check-out-input-success input:focus-visible {
    border: 3px solid #32D583 !important;
}

.check-out-input-success select,
.check-out-input-success input {
    border-radius: 7px !important;
    border: 2px solid #32D583 !important;
    background: #FFF !important;
    outline: none;
}

.btn-disable-checkout {
    background: #D9D9D9 !important;
    border: 1px solid #D9D9D9 !important;
    color: #979797 !important;
    height: 37px;
    flex: 1 0 0;
    border-radius: 40px;
}

.requisito {
    font-family: Helvetica;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.no-cumplido {
    color: #F97066;
}

.cumplido {
    color: #32D583;
}

.icono-verde::before {
    content: " ✔ ";
    color: #32D583;
}

.icono-rojo::before {
    content: " X ";
    color: #F97066;
}

.check-out-hr {
    margin-top: 48px;
    margin-bottom: 48px;
}

.font-18 {
    font-size: 18px !important;
}

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

.wh-664 {
    max-width: 664px !important;
    width: 100% !important;
}

.txt-lowercase {
    text-transform: lowercase;
}

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

}

.check-out-service-container {
    display: flex;
    width: 664px;
    align-items: flex-start;
    gap: 10.675px;
}

.check-out-service {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13.878px;
    align-self: stretch;
    border-radius: 7px;
    background: #F7F7F8;
    width: 157px;
    height: 249px;
    padding: 10px;
}

.check-out-service-title {
    color: #000;
    font-family: Helvetica;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

.check-out-service-img {
    max-width: 136px;
    max-height: 145px;
    width: 100%;
    height: 100%;
}

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

.check-out-button {
    border-radius: 42px;
    background: #000;
    display: flex;
    width: 136px;
    height: 25px;
    padding: 18px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #FFF !important;
    font-family: Helvetica;
    font-size: 12px;
    text-transform: uppercase;
}

.booking-room-img {
    max-width: 140px;
    width: 100%;
    height: 128px;
}

.booking-room-img img {
    object-fit: cover;
    height: 100%;
    transition: all .15s ease-in-out;
    transform: scale(1);
    width: 100%;
    border-radius: 7px;
}

.booking-room-dates {
    border-radius: 7px;
    background: #FAFAFA;
    height: 51px;
    padding: 20px 16px;
}

.booking-room-dates-span {
    display: flex !important;
    color: #808080;
    font-family: Helvetica;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
}

.booking-room-dates-text {
    color: #000;
    font-family: Helvetica;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}

.wh-points-rounded {
    display: flex;
    height: 41px;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 22px;
    border: 3px solid #FCE5E9;
    background: #F8BDC8;
    font-family: Helvetica;
    font-size: 14px;
    color: #000;
    font-weight: 400;
}

.wh-points-learn-more {
    color: #999 !important;
    font-family: Helvetica;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline !important;
    text-decoration-style: solid !important;
}

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


.booking-gallery-icon {
    position: absolute;
    left: 95px;
    top: 9px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.32);
    padding: 5px 5px 0px 5px;
}

.booking-gallery-icon svg {
    width: 25px;
    height: 21px;
}

.check-out-service-button {
    text-align: center;
    width: 100%;
    text-transform: uppercase;
}

.toggle-button {
    display: inline-flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: unset;
    right: 12px;
    cursor: pointer;
}

.toggle-button svg {
    width: 20px;
    height: 20px;
    color: #979797;
}

.password-wrapper {
    position: relative;
}

.header .list-inline > li {
    padding: 0;
}

.menu-left-border {
    border-left: 1px solid #ddd;
    padding-left: 20px !important;
    margin-left: 20px !important;
}

.top-right-menu {
    margin-left: auto !important;
}

.header .main-menu.main-call {
    margin: 0 !important;
    line-height: 0;
}

a.main-menu svg {
    height: 25px;
    width: 25px;
}

.container-others {
    max-width: 1400px;
}

.profile-information-links a,
.profile-information-links button {
    border: 0;
    margin-top: 5px;
}

.the-collection-country-filter ul ul {
    padding-left: 10px;
    margin-top: 14px;
}

.the-collection-country-filter ul ul li + li {
    margin-top: 24px;
}

.check-out-service-one {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 25px;
    align-self: stretch;
    border-radius: 7px;
    background: #F7F7F8;
    width: 665px;
    height: 180px;
    padding: 16px;
}


.check-out-service-one-img {
    max-width: 245px;
    max-height: 148px;
    width: 100%;
    height: 100%;
}

.check-out-service-one-img img {
    object-fit: cover;
    height: 100%;
    transition: all .15s ease-in-out;
    transform: scale(1);
    width: 100%;
    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -ms-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
}

.check-out-service-one-content {
    height: 100%;
}

.check-out-service-one-title {
    color: #000;
    font-family: Helvetica;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

.check-out-service-one-description {
    color: #000;
    font-family: Helvetica;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    width: 362px;
}

.booking-box.booking-box-people {
    display: flex;
    padding: 32px;
    background: #FAFAFA;
    flex-direction: column;
    gap: 24px;
}

.booking-box-people-title {
    color: #959595;
    font-family: Helvetica;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.booking-box-people-text {
    color: #000;
    font-family: Helvetica;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.modal-people {
    display: none;
    position: fixed;
    z-index: 1112;
    padding-top: 100px;
    right: 85px;
    display: block;
    top: 0;
    width: 400px;
}

.btn-transport-dark {
    background: #000;
    color: #fff;
    border: 1px solid #000;
    width: 100%;
}

.modal-date {
    position: fixed;
    z-index: 1112;
    padding-top: 100px;
    right: 85px;
    display: block;
    top: 0;
    width: 710px;
}

.position-static {
    position: static;
}

#showingCalendarContainer .daterangepicker {
    position: relative;
    display: inline-block !important;
    width: 100%;
    background-color: #FAFAFA;
    top: 0 !important;
    left: 0 !important;
}

#modalPeople .modal-dialog {
    width: 407px !important;
}

#modalDate .modal-dialog {
    width: 610px !important;
}

#showingCalendarContainer .daterangepicker.openscenter:after,
#showingCalendarContainer .daterangepicker.openscenter::before {
    display: none !important;
}

#showingCalendarContainer .calendar-table {
    background-color: #FAFAFA;
    border: 1px solid #FAFAFA;

}

#showingCalendarContainer .daterangepicker .cancelBtn {
    display: none !important;
}

#modalDate .booking-box.booking-box-people {
    background: #fff;
}

#modalDateClosed {
    margin-left: 50%;
}

#showingCalendarContainer .daterangepicker td.start-date.end-date {
    border-radius: 50% !important;
}

#modalDate,
#modalPeople {
    top: 25%;
}

#modalPeople .search-count-right,
#modalPeople .search-count-left {
    width: 35px;
    height: 44px;
    color: #000;
}

#modalPeople .search-count-center {
    height: 44px;
    color: #000;
}

.search-count-disable {
    color: #dbdada !important;
}

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

div#indicatorContent {
    width: 110px;
}

#search-the-collection .text {
    color: #000!important;
}

.tc-country-name {
    padding-left: 18px;
}

.tc-city-selection {
    display: none;
}