#google-map-container{
    width: 100%;
    /* height: calc(100vh - 145px); */
    height: 100%;
    overflow: hidden;
}

#google-map-container::after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 16px 0px inset;
    pointer-events: none;
    z-index: 2;
}

.el-item.uk-card.uk-card-default.uk-card-small {
    background-color: transparent;
    box-shadow: unset;
}

.el-item.uk-card.uk-card-default.uk-card-small h3, .el-item.uk-card.uk-card-default.uk-card-small p{
    /* color: #fff; */
    margin: 0;
}

.uk-slideshow-items {
    border-radius: 4px;
}

h3.uk-card-title.single-line-text {
    font-size: 0.813rem;
    margin-top: 3px;
}

.uk-card-body {
    padding: 10px 0px !important;
}

p.nexus-card-address {
    font-size: 13px;
    color: #9b9894;
}

p.nexus-card-listing {
    font-size: 13px;
    margin-top: 8px;
}

.nexus-card-price{
    position: absolute;
    top: 5px;
    left: 5px;
    background-color: #000000cc;
    padding: 2px 10px;
    border-radius: 4px;    
    font-size: 13px;
}

.el-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

/* Hover: grow the card and apply shadow to the image container */
.el-item:hover {
    transform: scale(1.03); /* slightly more than 10px visually */
    z-index: 5; /* bring to front if overlapping */
}

/* Carousel box-shadow on hover */
.el-item:hover .carousel-container::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 16px 0px inset;
    pointer-events: none;
    z-index: 2;
    border-radius: 6px; /* optional if your carousel has radius */
}


.carousel-container {
    position: relative;
  }
  
  /* Always render ::after but start invisible */
  .carousel-container::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 16px 0px inset;
    border-radius: 6px;
    z-index: 2;
    opacity: 0;
    transition: opacity 1s ease;
  }
  
  /* On hover, fade in the shadow over 1 second */
  .el-item:hover .carousel-container::after {
    opacity: 1;
  }

  .search-container input[type=date], 
  .search-container input[type=email], 
  .search-container input[type=number], 
  .search-container input[type=password], 
  .search-container input[type=search], 
  .search-container input[type=tel], 
  .search-container input[type=text], 
  .search-container input[type=url], 
  .search-container select, textarea{
    background-color: transparent;
    border: none;
    width: unset !important;
}

.nexus-line-right{
    /* border-right: 1px solid #fff !important;
    border-radius: 0 !important;      */
}

.caleran-disabled.caleran-disabled-range {
    color: #fff !important;
}

/* .caleran-day {
    background-color: #d37d4a;
    color: #fff !important;
} */

#nexus-search .caleran-day {
    background-color: #d37d4a;
    color: #fff !important;
}
#nexus-search{
    width: 100% !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;    
}

.caleran-day.caleran-disabled-range.caleran-disabled-range-start.caleran-end.caleran-selected span {
    background-color: unset !important;
}

.caleran-day.caleran-disabled-range.caleran-disabled-range-end.caleran-start.caleran-selected span {
    background-color: unset !important;
}

.caleran-day.caleran-selected span {
    border-radius: 0 !important;
}

.caleran-input
{
    width: 100% !important;
}

/* 
.caleran-disabled {
    background-color: #463b3f !important;
}

.caleran-container.caleran-hotel-style .caleran-calendar .caleran-disabled-range-start, .caleran-container-mobile.caleran-hotel-style .caleran-calendar .caleran-disabled-range-start {
    background-image: -o-linear-gradient(225deg, #f3f3ff 49%, transparent 50%) !important;
    background-image: linear-gradient(225deg, #463b3f 49%, transparent 50%) !important;
}

.caleran-container.caleran-hotel-style .caleran-calendar .caleran-disabled-range-end, .caleran-container-mobile.caleran-hotel-style .caleran-calendar .caleran-disabled-range-end {
    background-image: -o-linear-gradient(45deg, #f3f3ff 49%, transparent 50%) !important;
    background-image: linear-gradient(45deg, #463b3f 49%, transparent 50%) !important;
}

.caleran-calendar, .caleran-days-container{
    background-color: #1a0c0c;
}

.caleran-dayofweek, .caleran-title {
    color: #fff !important;
}


.caleran-title {
    background-color: #302424 !important;
}


.caleran-title, .caleran-calendar, .caleran-input{
    border: none !important;
} */

/* Guests Dropdown Container */
.guest-container {
    position: relative; /* Relative for positioning dropdown */
    }

    .guest-dropdown {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 15px;
    width: 200px;
    z-index: 10;
    }

    /* Guest Rows */
    .guest-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    }

    /* Counter Buttons */
    .counter {
    display: flex;
    align-items: center;
    gap: 10px;
    }

    .counter-btn {
    border: 1px solid #ccc;
    background-color: transparent;
    color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-weight: bold;
    }

    .counter-btn:hover {
    background-color: #f0f0f0;
    }

    /* Location Container */
    .location-container {
    position: relative; /* Needed for dropdown positioning */
    }

    /* Location Dropdown */
    .location-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    width: 200px;
    z-index: 1000;
    padding: 5px 0;
    }

    .location-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
    }

    .location-dropdown li {
    padding: 8px 15px;
    cursor: pointer;
    color: #fff;
    }

    .location-dropdown li:hover {
    background-color: #f0f0f0;
    }
    .search-container .fas, .search-container input,.search-container input::placeholder {
        color: #fff;
    }    


/* test */
.search-container {
    display: flex;
    align-items: center;
    /* background-color: #fefcf9; */
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    padding: 10px 0px;
    max-width: 100%;
    box-shadow: none;
}
  
.search-input {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #5a2e2e;
    position: relative;
    flex: 1 1 100%; /* full width on small screens */    
}

@media (min-width: 768px) {
    .search-container {
        flex-wrap: nowrap;
    }

    .search-input {
        flex: 1;
        min-width: 100px !important;
    }
}

.search-input:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    height: 24px;
    width: 1px;
    background-color: #e0e0e0;
}

.search-input input {
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
    width: auto;
    font-size: 14px;
    color: #5a2e2e;
    font-weight: 500;
    cursor: pointer;
}

.search-input input:focus {
    outline: none;
}

.uk-icon svg {
    stroke: #6b6b6b;
}

.location-dropdown,
.guest-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100;
    background: #1a0c0c;
    border: 1px solid #fff;
    border-radius: 6px;
    margin-top: 4px;
    padding: 10px;
    display: none;
}

/* .location-container:hover .location-dropdown,
.guest-container:hover .guest-dropdown {
    display: block;
} */

.counter-btn {
    background: none;
    border: 1px solid #ccc;
    padding: 2px 6px;
    border-radius: 4px;
    cursor: pointer;
}

.counter-btn:hover {
    background-color: #f0f0f0;
}


.mobile-filter-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    /* border-top: 1px solid #ddd; */
    background: transparent;
}

.uk-accordion-content {
    max-height: 250px !important;
    overflow-y: auto;
}

#nexus-mobile-filter-modal h3.uk-accordion-title::before {
    display: none;
}


.nexus-mobile-footer-filter .uk-flex.uk-flex-between.uk-padding-small.uk-background-default.uk-box-shadow-large {
    background-color: #1a0c0c;
    color: #fff;
}


.nexus-mobile-footer-filter{
    background-color: transparent;
}

#nexus-mobile-footer-filter .uk-background-default {
    /* background-color: #1a0c0c;
    color: #fff; */
    background-color: transparent;
}

#nexus-mobile-footer-filter .uk-background-default .uk-icon svg {
    stroke: #fff;
}

.uk-modal-dialog.uk-modal-body.uk-margin-auto-vertical.uk-height-viewport.uk-animation-slide-bottom {
    /* background-color: #1a0c0c;
    color: #fff; */
}

h3.uk-accordion-title {
    /* color: #fff; */
}

.uk-list-striped>:nth-of-type(odd) {
    background: #1a0c0c !important;
}

.uk-modal-dialog.uk-modal-body {
    background-color: #1a0c0c;
    color: #fff;
}

h2.uk-modal-title {
    color: #fff;
}


.nexus-map-container-right{
    right: 0px;
    top: 145px;
    z-index: 995;
}

#nexus-desktop-footer-filter{
    /* position: fixed; */
    z-index: 999;
    background: #1a0c0c;
    top: 76px;
    /* margin: 0px 20px; */
    left: 0;
    right: 0;
}

div#listing-search-list {
    margin-top: 13px;
}
/* 
.guest-dropdown {
    background-color: #1a0c0c;
    color: #fff;
    padding-bottom: 0;
} */

.nexus-map-container-right {
    position: fixed; /* Default for larger screens */
}

@media (max-width: 640px) {
    .nexus-map-container-right {
        position: relative; /* Override on mobile */
    }

    #google-map-container{
        width: 100vw;
        height: 600px;
        margin-left: -5vw;        
    }
}

.nexus-listing-list-title{
    margin: 35px 0px 10px 40px;
    color: #fff;    
}

.uk-switch {
    position: relative;
    width: 36px;
    height: 20px;
    appearance: none;
    background: #ccc;
    outline: none;
    border-radius: 20px;
    transition: background 0.3s;
    cursor: pointer;
}

.uk-switch:checked {
    background: #d97349; /* Customize this color */
}

.uk-switch::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    background: #fff;
    transition: transform 0.3s;
}

.uk-switch:checked::before {
    transform: translateX(16px);
}





/* Optional switch styling */
.uk-switch {
    position: relative;
    width: 36px;
    height: 20px;
    appearance: none;
    background: #ccc;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.uk-switch:checked {
    background: #d97349;
}

.uk-switch::before {
    content: \"\";
    position: absolute;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.3s ease;
}

.uk-switch:checked::before {
    transform: translateX(16px);
}

#amenity_list {
    max-height: calc(100vh - 400px);
    overflow-y: auto;
}

#map-search-toggle-label {
    position: absolute;
    z-index: 9999 !important;
    top: 60px;
    left: 10px;    
}

.single-search-input{
    /* border: none; */
    /* background-color: #fff;     */
    display: flex;
    align-items: center;
    padding: 8px 12px;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #5a2e2e;
    position: relative;    
}

.single-search-input input {
    border: none;
    background: transparent !important;
    padding: 0;
    margin: 0;
    width: auto;
    font-size: 14px;
    color: #5a2e2e;
    font-weight: 500;
    cursor: pointer;
}

.nexus-card-premium{
    border-width: 2px;
    border-color: #D97349;
    border-style: solid;
    border-radius: 5px;
}


.nexus-nexus-skeleton-line {
    background-color: #e0e0e0;
    border-radius: 4px;
    margin: 6px 0;
    animation: pulse 1.5s infinite ease-in-out;
}

.nexus-nexus-skeleton-image {
    background-color: #ddd;
    width: 100%;
    height: 140px !important;
    animation: pulse 1.5s infinite ease-in-out;
    border-radius: 4px;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

div#nexus-nexus-skeleton-loader {
    /* padding: 0px 40px; */
}            

p.nexus-nexus-skeleton-line {
    margin-bottom: 5px !important;
}            


#listing-search-list .uk-container{
    max-width: 100%;
    padding: 0;
}

.nexus-search-bar-container{
    margin: 0 !important;
    /* padding: 0px 0px 13px 0px; */
    background-color: #1a0c0c;
    /* position: fixed; */
    width: 100%;
    z-index: 999;
    /* border-style: solid;
    border-width: 0px 0px 1px 0px;
    border-color: #fff; */
    left: 0;    
}

.nexus-card-redirection{
    cursor: pointer;
}

#location-dropdown-mobile{
    z-index: 9999;
    position: fixed;
    top: 100px;
    left: 20px;    
}

#nexus-mobile-filter-modal{
    overflow: hidden;
    border: none !important;
}

input#guest-input {
    background-color: transparent;
}

span.nexus-icon-number {
    padding-right: 5px;
}

#pagination-controls button{
    border-radius: 100%;
    border-style: none;
    border-width: 1px;
    background-color: transparent;
    font-weight: 500;
    padding: 3px 7px;
    height: 25px;
    text-align: center;
    line-height: 20px;
}

#pagination-controls .active{
    background-color: #000000;
    color: #fff;
    border-color: #000000;
    border-width: 2px;
    border-style: solid;
}

/* div#google-map-container {
    position: unset !important;
    width: 100%;
    min-height: 400px;
    height: 100%;
} */


.nexus-location-dropdown,
.nexus-guests-dropdown,
.nexus-bedrooms-dropdown {
    margin-bottom: 15px;
}

.select2-container--default .select2-selection--single {
    height: 40px;
    border-radius: 4px;
    border: 1px solid #ccc;
    padding: 6px 12px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 26px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 7px;
    right: 6px;
}


/* .nexus-skeleton-item {
    background: #eee;
    height: 250px;
    border-radius: 8px;
    animation: pulse 1.5s infinite ease-in-out;
  }
  
  @keyframes pulse {
    0% { background-color: #eee; }
    50% { background-color: #ddd; }
    100% { background-color: #eee; }
  }
   */


.select2-selection__clear {
  display: none !important;
}

.select2-container .select2-selection--single .select2-selection__arrow {
  top: 50% !important;
  transform: translateY(-50%);
  right: 8px; /* adjust as needed */
  position: absolute;
}

.nexus-info-box {
  font-family: inherit;
}
.nexus-info-image {
  margin-bottom: 8px;
}

/* 1) Outer wrapper */
#google-map-container .gm-style .gm-style-iw-d {
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;   /* if you want square corners */
  box-shadow: none !important;    /* optional */
}

/* 2) Inner content wrapper */
#google-map-container .gm-style .gm-style-iw-c {
  padding: 0 !important;
  margin: 0 !important;
}

/* 3) Your own .nexus-info-box if you want zero-gap inside it, too */
#google-map-container .gm-style .gm-style-iw-c .nexus-info-box {
  padding: 0 !important;
  margin: 0 !important;
}


button.uk-button.uk-button-primary:hover, button.uk-button.uk-button-primary:focus, button.uk-button.uk-button-primary:active {
    /* height: 51px; */
}

/* 
.caleran-disabled.caleran-disabled-range {
    text-decoration: line-through;
} */


button#nexus-page-button:active, button#nexus-page-button:focus{
    outline: none !important;
    box-shadow: none !important;
    border-color: transparent !important;    
}



.leaflet-popup-content-wrapper,
.leaflet-popup-content,
.nexus-info-box,
.nexus-info-image img,
.leaflet-popup-tip-container,
.leaflet-popup-tip {
    border-radius: 0 !important;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-content {
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    min-width: 0 !important;
    max-width: none !important;
}

.leaflet-popup-content-wrapper {
    padding-bottom: 0 !important;
}

.leaflet-popup-tip-container {
    height: 18px !important;
    margin: 0 !important;
}

.leaflet-popup-tip {
    margin: 0 auto !important;
    box-shadow: none !important;
}

.nexus-info-box {
    background: #fff;
    border-radius: 0 !important;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-width: unset;
    max-width: unset;
    width: unset;
}

.nexus-info-image img {
    display: block;
    height: auto;
    max-width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 0 !important;
    /* NO width: 100% here! */
}

.nexus-info-content {
    padding: 8px 20px 15px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.nexus-info-title {
    font-size: 1.17rem;
    font-weight: 600;
    padding: 0 !important;
    margin: 0 !important;
    color: #18181a;
    letter-spacing: 0;
}

.nexus-info-meta {
    font-size: 0.99rem;
    color: #6b6b6b;
    margin-bottom: 2px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0;
}

.nexus-info-meta span {
    display: flex;
    align-items: center;
    gap: 2px;
    white-space: nowrap;
    margin-right: 10px;
}

.nexus-info-meta span:last-child {
    margin-right: 0;
}

.nexus-info-meta span:not(:first-child)::before {
    content: "·";
    margin: 0 4px 0 0;
    color: #d1d1d1;
    font-weight: 900;
}

.nexus-info-meta i {
    margin-right: 2px;
    font-size: 1em;
    vertical-align: -0.1em;
}

.nexus-info-price {
    font-weight: 600;
    font-size: 1.08rem;
    color: #222;
    margin-top: 2px;
}


.leaflet-popup-tip-container {
    display: none !important;
}

.leaflet-container a.leaflet-popup-close-button{
    color: #fff !important;
}


/* .elementor-widget-nexusn_nexus_loop_widget {
    width: 50% !important;
    min-width: 0 !important;
    max-width: 50% !important;
    transition: width 0.2s;
}
.elementor-widget-nexusn_nexus_loop_widget.nexus-loop-expanded {
    width: 100% !important;
    max-width: 100% !important;
}

.elementor-widget-nexus_listings_map_leaflet.nexus-hidden {
    visibility: hidden !important;
    width: 0 !important;
    min-width: 0 !important;
    max-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}
.elementor-widget-nexus_listings_map_leaflet.nexus-visible {
    visibility: visible !important;
    width: 50% !important;
    min-width: 0 !important;
    max-width: 50% !important;
    height: auto !important;
    overflow: visible !important;
    transition: width 0.2s;
} */


#nexus-left {
    /* width: 50% !important; */
    min-width: 0 !important;
    /* max-width: 50% !important; */
    transition: width 0.3s, visibility 0s 0.3s;
}
#nexus-left.nexus-loop-expanded {
    width: 100% !important;
    max-width: 100% !important;
}

#nexus-right.nexus-hidden {
    visibility: hidden !important;
    width: 0 !important;
    min-width: 0 !important;
    max-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}
#nexus-right.nexus-visible {
    visibility: visible !important;
    /* width: 50% !important; */
    min-width: 0 !important;
    /* max-width: 50% !important; */
    height: auto !important;
    overflow: visible !important;
    transition: width 0.3s, visibility 0s 0.3s;
}

.select2-dropdown{
    z-index: 999 !important;
}

div#single-booking-nexus-custom-calendar {
    width: 100%;
    margin: 0;
}





/* Force Caleran calendar popup to look like desktop popover ALWAYS */
.caleran-calendar.caleran-modal {
    position: absolute !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: auto !important;
    max-width: none !important;
    max-height: none !important;
    min-width: 330px !important; /* adjust as needed */
    min-height: 300px !important; /* adjust as needed */
    margin: 0 !important;
    border-radius: 8px !important;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.10),0 1.5px 4px rgba(0,0,0,0.08);
    z-index: 999999 !important;
}

/* Prevent full screen overlay */
.caleran-overlay {
    /* Don't hide it, just make it invisible and let pointer events through */
    background: none !important;
    opacity: 0 !important;
    pointer-events: auto !important; /* still clickable */
}

/* Optional: Make sure the calendar stays close to the input */
.caleran-calendar {
    left: 0 !important;
    top: 100% !important;
    overflow: hidden !important;
}

.caleran-calendars{
    overflow: hidden !important;
}

.caleran-input{
    width: calc(100% - 25x) !important;
}

.caleran-footer{
    display: none;
}

.nexus-calendar-blank:hover{
    background-color: transparent !important;
}


.nexus-calendar-blank::hover{
    background-color: transparent !important;
}

button.nexus-see-more-btn {
    position: absolute;
    left: 25px;
    bottom: 40px;
}
.nexus-review-content{
    padding-bottom: 40px;
}


.nexus-modal-overlay,
.nexus-modal-content,
.nexus-modal-img-wrap,
.nexus-modal-image,
.nexus-modal-swiper .swiper-slide {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-touch-callout: none !important;
    -webkit-user-drag: none !important;
}

.nexus-imggrid-5-modal-content{
    box-shadow: none !important;
}

.nexus-imggrid-5-modal-imgwrap img{
    box-shadow: none !important;
    background-color: transparent !important;
}

.sortable-list {
    max-height: calc(100vh - 275px);
    overflow: auto;
}

.listing-cal-prev, .listing-cal-next {
    /* padding: 0 !important; */
    /* background: transparent !important; */
}

.listing-cal-prev-dropdown, .listing-cal-next-dropdown{
    /* padding: 0 !important; */
    /* background: transparent !important; */
}

.nexus-loop-item .elementor-heading-title a {
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 1 !important;
    overflow: hidden !important;
    max-width: 100% !important;
}


.nexus-loop-item.is-hovered {
  outline: 2px solid #001871;
  outline-offset: 2px;
  transition: outline-color .15s ease;
}


.nexus-swiper-footer .swiper-arrows{
    position: absolute !important;
    right: 0 !important;    
}