/* Booking error state. Keep selectors scoped so theme rules do not change it. */
.barefoot-booking-checkout .bookit__error {
    align-items: center;
    background-color: #f1f1f1;
    border-radius: 20px;
    color: #003349;
    display: flex;
    flex-direction: column;
    margin: 30px auto;
    max-width: 720px;
    padding: 50px 25px;
    text-align: center;
}
.barefoot-booking-checkout .bookit__error__icon {
    align-items: center;
    background-color: #ff5959;
    border-radius: 50%;
    color: #fff;
    display: flex;
    font-size: 28px;
    font-weight: 700;
    height: 54px;
    justify-content: center;
    margin-bottom: 20px;
    width: 54px;
}
.barefoot-booking-checkout .bookit__error__eyebrow {
    color: #ff5959;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.barefoot-booking-checkout .bookit__error h2 {
    color: #003349;
    margin-bottom: 15px;
}
.barefoot-booking-checkout .bookit__error__message {
    color: #5a5a5a;
    margin-bottom: 25px;
}
.barefoot-booking-checkout .bookit__error__action {
    margin-top: 5px;
}

@media screen and (max-width: 400px){
    .barefoot-booking-checkout .bookit__error {
        padding-inline: 0.5rem;
    }
}


/* Standalone rental search UI. Keep selectors scoped so theme form rules do
 * not change the search layout or the Flatpickr controls. */

.barefoot-search-form-wrap,
.rental-search-results {
    --barefoot-ink: #4a4646;
    --barefoot-muted: #716b6b;
    --barefoot-border: #ced4da;
    --barefoot-surface: #f7f7f7;
    --barefoot-accent: #fff200;
    --barefoot-focus: rgba(255, 242, 0, .42);
}

.barefoot-search-form-wrap,
.barefoot-search-form-wrap *,
.rental-search-results,
.rental-search-results * {
    box-sizing: border-box;
}

.barefoot-search-form-wrap {
    width: 100%;
    margin: 0 auto 20px;
    padding: 32px 34px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: #fbfbfb;
    box-shadow: none;
}

.barefoot-search-form {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    align-items: stretch;
}

.barefoot-search-form .form-group {
    position: relative;
    min-width: 0;
    max-width: 100%;
    margin: 0;
}

.barefoot-search-form .form-group > i {
    position: absolute;
    top: 50%;
    left: 18px;
    z-index: 2;
    width: 18px;
    color: #777;
    font-size: 16px;
    line-height: 1;
    text-align: center;
    transform: translateY(-50%);
    pointer-events: none;
}

.barefoot-search-form .form-control,
.barefoot__map-search__filters .form-control {
    width: 100%;
    max-width: 100%;
    height: 49px;
    min-height: 49px;
    margin: 0;
    border: 0;
    border-radius: 0;
    outline: 0;
    background-color: #dddfe0;
    box-shadow: none;
    color: var(--barefoot-ink, #4a4646);
    font: inherit;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.25;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.barefoot-search-form .form-control {
    padding: 0 16px 0 52px;
}

.barefoot-search-form .barefoot-search-form__field--date > .form-control.bookdate[readonly] {
    background-color: #dddfe0 !important;
    color: var(--barefoot-ink, #4a4646) !important;
    opacity: 1;
    -webkit-text-fill-color: var(--barefoot-ink, #4a4646);
}

.barefoot-search-form .barefoot-search-form__field--select {
    display: flex;
    min-height: 49px;
    align-items: center;
    background-color: #dddfe0;
}

/* Native select options cannot contain HTML. Keep the Font Awesome icon
 * inline in the control so the select itself needs only normal text padding. */
.barefoot-search-form .barefoot-search-form__field--select .form-control {
    width: auto;
    min-width: 0;
    padding-left: 8px;
    flex: 1 1 auto;
    background-color: transparent;
}

.barefoot-search-form .barefoot-search-form__field--select > i {
    position: static;
    width: 18px;
    margin-left: 12px;
    flex: 0 0 18px;
    font-size: 18px;
    transform: none;
}

.barefoot-search-form .barefoot-search-form__field--select option {
    margin-left: 0 !important;
    padding-left: 0 !important;
    padding-inline-start: 0 !important;
    text-indent: 0 !important;
}

.barefoot-search-form .barefoot-search-form__field--select:hover {
    background-color: #d4d6d7;
}

.barefoot-search-form .barefoot-search-form__field--select:focus-within {
    box-shadow: 0 0 0 4px var(--barefoot-focus, rgba(255, 242, 0, .42));
}

.barefoot-search-form .barefoot-search-form__field--select .form-control:hover,
.barefoot-search-form .barefoot-search-form__field--select .form-control:focus {
    background-color: transparent;
    box-shadow: none;
}

/* Select2 keeps the icon and value in the same rendered line, while the
 * original icon/select remain a usable no-JavaScript fallback. */
.barefoot-search-form .barefoot-search-form__field--select.has-select2 {
    display: block;
    background: transparent;
}

.barefoot-search-form .barefoot-search-form__field--select.has-select2:hover,
.barefoot-search-form .barefoot-search-form__field--select.has-select2:focus-within {
    background: transparent;
    box-shadow: none;
}

.barefoot-search-form .barefoot-search-form__field--select.has-select2 > i {
    display: none;
}

.barefoot-search-form .barefoot-search-form__field--select.has-select2 > .select2.select2-container {
    display: block;
    width: 100% !important;
    height: 49px;
    font-family: "DM Sans", sans-serif;
}

.barefoot-search-form .has-select2 .select2-selection--single {
    height: 49px;
    border: 0;
    border-radius: 0;
    outline: 0;
    background: #dddfe0;
    box-shadow: none;
    transition: background-color .18s ease, box-shadow .18s ease;
}

.barefoot-search-form .has-select2 .select2-selection--single:hover {
    background: #d4d6d7;
}

.barefoot-search-form .has-select2 .select2-container--focus .select2-selection--single,
.barefoot-search-form .has-select2 .select2-container--open .select2-selection--single {
    background: #fff;
    box-shadow: 0 0 0 4px var(--barefoot-focus, rgba(255, 242, 0, .42));
}

.barefoot-search-form .has-select2 .select2-selection--single .select2-selection__rendered {
    height: 49px;
    padding: 0 40px 0 12px;
    overflow: hidden;
    color: var(--barefoot-ink, #4a4646);
    font-size: 18px;
    font-weight: 300;
    line-height: 49px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.barefoot-search-form .barefoot-select2__value {
    display: flex;
    height: 49px;
    min-width: 0;
    align-items: center;
    gap: 8px;
}

.barefoot-search-form .barefoot-select2__value i {
    width: 18px;
    flex: 0 0 18px;
    color: #777;
    font-size: 18px;
    line-height: 1;
    text-align: center;
}

.barefoot-search-form .barefoot-select2__text {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.barefoot-search-form .has-select2 .select2-selection--single .select2-selection__arrow {
    top: 0;
    right: 10px;
    width: 24px;
    height: 49px;
}

.barefoot-search-form .has-select2 .select2-selection--single .select2-selection__arrow b {
    margin-top: -3px;
    border-width: 6px 5px 0;
    border-color: #4a4646 transparent transparent;
    transition: transform .18s ease;
}

.barefoot-search-form .has-select2 .select2-container--open .select2-selection__arrow b {
    border-width: 6px 5px 0;
    border-color: #4a4646 transparent transparent;
    transform: rotate(180deg);
}

.barefoot-search-form .has-select2 > .select2-container--open:not(.select2) {
    z-index: 9999;
}

.barefoot-search-form .has-select2 .select2-dropdown {
    overflow: hidden;
    border: 1px solid #c7c9ca;
    border-radius: 0;
    background: #fff;
    box-shadow: 0 12px 28px rgba(49, 46, 46, .2);
}

.barefoot-search-form .has-select2 .select2-dropdown--below {
    transform-origin: top center;
    animation: barefoot-select2-drop-down .18s ease-out both;
}

.barefoot-search-form .has-select2 .select2-dropdown--above {
    transform-origin: bottom center;
    animation: barefoot-select2-drop-up .18s ease-out both;
}

.barefoot-search-form .has-select2 .select2-results__options {
    max-height: 250px;
    padding: 4px 0;
}

.barefoot-search-form .has-select2 .select2-results__option {
    min-height: 38px;
    margin: 0;
    padding: 9px 12px;
    color: var(--barefoot-ink, #4a4646);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-indent: 0;
    transition: background-color .12s ease, color .12s ease;
}

.barefoot-search-form .has-select2 .select2-results__option[aria-selected="true"] {
    background: #eef0f0;
}

.barefoot-search-form .has-select2 .select2-results__option--highlighted[aria-selected] {
    background: var(--barefoot-ink, #4a4646);
    color: #fff;
}

.barefoot-search-form .has-select2 .select2-search--dropdown {
    padding: 8px;
    border-bottom: 1px solid #e1e2e2;
}

.barefoot-search-form .has-select2 .select2-search--dropdown .select2-search__field {
    height: 38px;
    padding: 6px 9px;
    border: 1px solid #c7c9ca;
    border-radius: 0;
    outline: 0;
    color: var(--barefoot-ink, #4a4646);
    font: 16px/1.25 "DM Sans", sans-serif;
}

.barefoot-search-form .has-select2 .select2-search--dropdown .select2-search__field:focus {
    border-color: var(--barefoot-ink, #4a4646);
    box-shadow: 0 0 0 3px var(--barefoot-focus, rgba(255, 242, 0, .42));
}

@keyframes barefoot-select2-drop-down {
    from {
        opacity: 0;
        transform: translateY(-7px) scaleY(.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scaleY(1);
    }
}

@keyframes barefoot-select2-drop-up {
    from {
        opacity: 0;
        transform: translateY(7px) scaleY(.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scaleY(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .barefoot-search-form .has-select2 .select2-dropdown--below,
    .barefoot-search-form .has-select2 .select2-dropdown--above,
    .barefoot-search-form.is-searching .barefoot-search-form__submit .btn,
    .barefoot-search-modal.is-open::before,
    .barefoot-search-modal.is-open .barefoot-search-modal__dialog,
    .barefoot-search-modal.is-closing::before,
    .barefoot-search-modal.is-closing .barefoot-search-modal__dialog {
        animation: none;
    }
}

.barefoot-search-form select.form-control,
.barefoot__map-search__filters select.form-control {
    padding-right: 45px;
    overflow: hidden;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234a4646' d='M1.41.59 6 5.17 10.59.59 12 2l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 12px 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.barefoot-search-form select.form-control::-ms-expand,
.barefoot__map-search__filters select.form-control::-ms-expand {
    display: none;
}

.barefoot-search-form .form-control::placeholder,
.barefoot__map-search__filters .form-control::placeholder {
    color: var(--barefoot-muted, #716b6b);
    opacity: 1;
}

.barefoot-search-form .form-control:hover,
.barefoot__map-search__filters .form-control:hover {
    background-color: #d4d6d7;
}

.barefoot-search-form .form-control:focus,
.barefoot__map-search__filters .form-control:focus {
    border-color: transparent;
    background-color: #dddfe0;
    box-shadow: 0 0 0 4px var(--barefoot-focus, rgba(255, 242, 0, .42));
}

.barefoot-search-form .barefoot-search-form__submit .btn {
    display: inline-flex;
    width: 100%;
    min-width: 0;
    min-height: 49px;
    margin: 0;
    padding: 10px 20px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 0;
    background: var(--barefoot-ink);
    box-shadow: none;
    color: #fff;
    font: inherit;
    font-family: "Nunito", sans-serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: background-color .2s ease, background-position .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.barefoot-search-form.is-searching .barefoot-search-form__submit .btn,
.barefoot-search-form.is-searching .barefoot-search-form__submit .btn:hover {
    background-image: linear-gradient(110deg, var(--barefoot-ink) 0%, #242222 45%, #777273 50%, #242222 55%, var(--barefoot-ink) 100%);
    background-size: 240% 100%;
    animation: barefoot-search-loading 1.1s linear infinite;
}

.barefoot__map-search.is-searching {
    opacity: .75;
    pointer-events: none;
}

@keyframes barefoot-search-loading {
    from {
        background-position: 120% 0;
    }
    to {
        background-position: -120% 0;
    }
}

.barefoot-search-form .barefoot-search-form__submit .btn:hover {
    border-color: #555152;
    background: #555152;
    color: #fff;
    transform: translateY(-1px);
}

.barefoot-search-form .barefoot-search-form__submit .btn:focus-visible {
    outline: 3px solid rgba(74, 70, 70, .28);
    outline-offset: 2px;
}

.barefoot-search-form__advanced-trigger > button {
    display: inline-flex;
    width: 100%;
    min-height: 49px;
    margin: 0;
    padding: 10px 14px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 0;
    background: transparent;
    color: #312e2e;
    font: 600 15px/1.2 "DM Sans", sans-serif;
    cursor: pointer;
    box-shadow: 0 0 0 rgba(49, 46, 46, 0);
    transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease, transform .2s ease;
}

.barefoot-search-form__advanced-trigger > button:hover,
.barefoot-search-form__advanced-trigger > button[aria-expanded="true"] {
    border-color: #4a4646;
    background: #4a4646;
    box-shadow: 0 8px 20px rgba(49, 46, 46, .14);
    color: #fff;
    transform: translateY(-1px);
}

.barefoot-search-form__advanced-trigger > button:focus,
.barefoot-search-form__advanced-trigger > button:focus-visible,
.barefoot-search-form__advanced-trigger > button.focus,
body .barefoot-search-form__advanced-trigger > button.btn:focus,
body .barefoot-search-form__advanced-trigger > button.btn:focus-visible,
body .barefoot-search-form__advanced-trigger > button.btn.focus {
    border-color: #c4c7c8 ;
    background: transparent ;
    background-image: none ;
    box-shadow: none ;
    color: #312e2e ;
    outline: 0 ;
    transform: none ;
}

.barefoot-search-form__hamburger {
    display: inline-flex;
    width: 22px;
    flex: 0 0 22px;
    flex-direction: column;
    gap: 4px;
}

.barefoot-search-form__hamburger > span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: transform .22s cubic-bezier(.22, 1, .36, 1);
}

.barefoot-search-form__advanced-trigger > button:hover .barefoot-search-form__hamburger > span:first-child,
.barefoot-search-form__advanced-trigger > button[aria-expanded="true"] .barefoot-search-form__hamburger > span:first-child {
    transform: translateX(3px);
}

.barefoot-search-form__advanced-trigger > button:hover .barefoot-search-form__hamburger > span:last-child,
.barefoot-search-form__advanced-trigger > button[aria-expanded="true"] .barefoot-search-form__hamburger > span:last-child {
    transform: translateX(-3px);
}

.barefoot-search-modal[hidden] {
    display: none !important;
}

.barefoot-search-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    padding: 20px;
    overflow-x: hidden;
    overflow-y: auto;
    align-items: center;
    justify-content: center;
    isolation: isolate;
    overscroll-behavior: contain;
    cursor: pointer;
}

.barefoot-search-modal::before {
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 78% 16%, rgba(255, 255, 255, .24), transparent 38%),
        rgba(64, 62, 62, .22);
    -webkit-backdrop-filter: blur(11px) saturate(.82);
    backdrop-filter: blur(11px) saturate(.82);
    content: "";
    pointer-events: none;
    transition: opacity .22s ease, -webkit-backdrop-filter .22s ease, backdrop-filter .22s ease;
}

.barefoot-search-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(1060px, 100%);
    margin: 0;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, .72);
    background: #fbfbfb;
    box-shadow: 0 24px 70px rgba(49, 46, 46, .28);
    cursor: default;
}

.barefoot-search-modal.is-open::before {
    animation: barefoot-search-backdrop-in .24s ease-out both;
}

.barefoot-search-modal.is-open .barefoot-search-modal__dialog {
    animation: barefoot-search-dialog-in .3s cubic-bezier(.22, 1, .36, 1) both;
}

.barefoot-search-modal.is-outside-hover::before {
    -webkit-backdrop-filter: blur(5px) saturate(.92);
    backdrop-filter: blur(5px) saturate(.92);
    opacity: .82;
}

.barefoot-search-modal.is-closing {
    pointer-events: none;
}

.barefoot-search-modal.is-closing::before {
    animation: barefoot-search-backdrop-out .22s ease-in both;
}

.barefoot-search-modal.is-closing .barefoot-search-modal__dialog {
    animation: barefoot-search-dialog-out .22s cubic-bezier(.4, 0, 1, 1) both;
}

@keyframes barefoot-search-backdrop-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes barefoot-search-dialog-in {
    from {
        opacity: 0;
        filter: blur(5px);
        transform: translateY(18px) scale(.975);
    }
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0) scale(1);
    }
}

@keyframes barefoot-search-backdrop-out {
    to { opacity: 0; }
}

@keyframes barefoot-search-dialog-out {
    from {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        filter: blur(3px);
        transform: translateY(10px) scale(.985);
    }
}

.barefoot-search-modal__header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    padding: 22px 26px 18px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid #d8d9d9;
    background: rgba(251, 251, 251, .96);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.barefoot-search-modal__header h2 {
    margin: 0;
    color: var(--barefoot-ink, #4a4646);
    font: 600 28px/1.15 "DM Sans", sans-serif;
}

.barefoot-search-modal__close {
    display: inline-flex;
    width: 42px;
    height: 42px;
    margin: 0;
    padding: 0;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: var(--barefoot-ink, #4a4646);
    font: 300 38px/1 sans-serif;
    cursor: pointer;
    transition: background-color .18s ease, color .18s ease;
}

.barefoot-search-modal__close:hover,
.barefoot-search-modal__close:focus-visible {
    background: #dddfe0;
    color: #312e2e;
    transform: none !important;
}

.barefoot-search-form--modal {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px 14px;
    padding: 20px 26px 24px;
}

.barefoot-search-form--modal .form-group > label:not(.sr-only) {
    display: block;
    margin: 0 0 7px;
    color: var(--barefoot-ink, #4a4646);
    font: 600 14px/1.25 "DM Sans", sans-serif;
}

.barefoot-search-form--modal .barefoot-search-form__field > i {
    top: auto;
    bottom: 16px;
    transform: none;
}

.barefoot-search-form--modal .barefoot-search-form__field--name {
    grid-column: 1 / -1;
}

.barefoot-search-form--modal .barefoot-search-form__field--name .form-control {
    padding-left: 16px;
}

.barefoot-search-form--modal .has-select2 > .select2-container--open:not(.select2) {
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
    min-width: 100%;
    max-width: 100%;
}

.barefoot-search-form--modal .has-select2 .select2-dropdown {
    width: 100% !important;
    min-width: 0;
    max-width: 100%;
}

.barefoot-search-form--modal .has-select2 .select2-results__options {
    max-height: 220px;
}

.barefoot-search-form--modal .has-select2 .select2-results__option--highlighted[aria-selected] {
    background: #d7d9da;
    color: #312e2e;
}

.barefoot-search-modal__checks,
.barefoot-search-modal__actions {
    grid-column: 1 / -1;
}

.barefoot-search-modal__checks {
    display: flex;
    padding: 4px 0;
    align-items: center;
    gap: 14px 30px;
    flex-wrap: wrap;
}

.barefoot-search-modal__check {
    display: inline-flex;
    margin: 0;
    align-items: center;
    gap: 10px;
    color: var(--barefoot-ink, #4a4646);
    font: 500 16px/1.3 "DM Sans", sans-serif;
    cursor: pointer;
}

.barefoot-search-modal__check input {
    width: 22px;
    height: 22px;
    margin: 0;
    accent-color: var(--barefoot-ink, #4a4646);
}

.barefoot-search-modal__specials-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font: 500 16px/1.3 "DM Sans", sans-serif;
}

.barefoot-search-modal__specials-link .fa-external-link-alt {
    font-size: 0.8em;
}

.barefoot-search-modal__actions {
    display: flex;
    margin-top: 2px;
    align-items: stretch;
    justify-content: flex-end;
    gap: 10px;
}

.barefoot-search-modal__actions .barefoot-search-form__submit {
    min-width: 180px;
}

.barefoot-search-modal__reset {
    min-width: 120px;
    min-height: 49px;
    margin: 0;
    padding: 10px 18px;
    border: 1px solid #c4c7c8;
    background: #dddfe0;
    color: #312e2e;
    font: 600 15px/1.2 "DM Sans", sans-serif;
    cursor: pointer;
}

.barefoot-search-modal__reset:hover,
.barefoot-search-modal__reset:focus-visible {
    border-color: #4a4646;
    background: #4a4646;
    color: #fff;
}

body .barefoot-search-modal .barefoot-search-form--modal .form-control:focus,
body .barefoot-search-modal .barefoot-search-form--modal .has-select2 .select2-container--focus .select2-selection--single,
body .barefoot-search-modal .barefoot-search-form--modal .has-select2 .select2-container--open .select2-selection--single,
body .barefoot-search-modal .barefoot-search-form--modal .has-select2 .select2-search--dropdown .select2-search__field:focus {
    box-shadow: 0 0 0 3px rgba(74, 70, 70, .22) !important;
}

body .barefoot-search-modal .barefoot-search-form--modal .barefoot-search-modal__actions > button.barefoot-search-modal__reset {
    display: inline-flex !important;
    min-width: 120px !important;
    min-height: 49px !important;
    padding: 10px 18px !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid #c4c7c8 !important;
    border-radius: 0 !important;
    background: #dddfe0 !important;
    background-image: none !important;
    color: #312e2e !important;
    visibility: visible !important;
    opacity: 1 !important;
}

body .barefoot-search-modal .barefoot-search-form--modal .barefoot-search-modal__actions > button.barefoot-search-modal__reset:hover,
body .barefoot-search-modal .barefoot-search-form--modal .barefoot-search-modal__actions > button.barefoot-search-modal__reset:focus-visible {
    border-color: #4a4646 !important;
    background: #4a4646 !important;
    color: #fff !important;
}

/* The theme loads after the plugin on this site and restyles .btn. Keep this
 * deliberately specific so the modal action always remains visible. */
body .barefoot-search-modal .barefoot-search-form--modal .barefoot-search-modal__actions .barefoot-search-form__submit {
    display: block !important;
    min-width: 180px !important;
    visibility: visible !important;
    opacity: 1 !important;
}

body .barefoot-search-modal .barefoot-search-form--modal .barefoot-search-modal__actions .barefoot-search-form__submit > button.btn.btn-primary-dk {
    position: relative !important;
    display: inline-flex !important;
    width: 100% !important;
    min-width: 180px !important;
    min-height: 49px !important;
    margin: 0 !important;
    padding: 10px 20px !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid #312e2e !important;
    border-radius: 0 !important;
    background: #312e2e !important;
    background-image: none !important;
    box-shadow: none !important;
    color: #fff !important;
    font: 700 18px/1.2 "Nunito", sans-serif !important;
    text-indent: 0 !important;
    text-shadow: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
}

body .barefoot-search-modal .barefoot-search-form--modal .barefoot-search-modal__actions .barefoot-search-form__submit > button.btn.btn-primary-dk:hover,
body .barefoot-search-modal .barefoot-search-form--modal .barefoot-search-modal__actions .barefoot-search-form__submit > button.btn.btn-primary-dk:focus-visible {
    border-color: #555152 !important;
    background: #555152 !important;
    background-image: none !important;
    color: #fff !important;
    outline: 3px solid rgba(74, 70, 70, .24) !important;
    outline-offset: 2px !important;
}

body .barefoot-search-modal .barefoot-search-form--modal .barefoot-search-modal__actions .barefoot-search-form__submit > button.btn.btn-primary-dk::before,
body .barefoot-search-modal .barefoot-search-form--modal .barefoot-search-modal__actions .barefoot-search-form__submit > button.btn.btn-primary-dk::after {
    display: none !important;
    content: none !important;
}

body.barefoot-search-modal-open {
    overflow: hidden;
}

body.barefoot-search-modal-open .flatpickr-calendar {
    z-index: 100002 !important;
}

.barefoot-search-form__reset {
    display: flex;
    width: 100%;
    margin-top: 18px;
    align-items: center;
    justify-content: center;
}

.barefoot-search-form-wrap .barefoot-search-form__reset > button {
    display: inline-flex;
    width: auto;
    min-width: 154px;
    min-height: 42px;
    margin: 0;
    padding: 10px 17px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid var(--barefoot-ink, #4a4646) !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
    color: var(--barefoot-ink, #4a4646) !important;
    font: 600 14px/20px "DM Sans", sans-serif;
    text-decoration: none !important;
    cursor: pointer;
    appearance: none;
    transform: none !important;
    transition: background-color .18s ease, color .18s ease;
}

.barefoot-search-form-wrap .barefoot-search-form__reset > button:hover {
    border-color: var(--barefoot-ink, #4a4646) !important;
    background: var(--barefoot-ink, #4a4646) !important;
    box-shadow: none !important;
    color: #fff !important;
    text-decoration: none !important;
    transform: none !important;
}

.barefoot-search-form-wrap .barefoot-search-form__reset > button:focus-visible {
    outline: 3px solid rgba(74, 70, 70, .28);
    outline-offset: 2px;
}

.barefoot-search-form-wrap .barefoot-search-form__reset > button i {
    display: block;
    width: 13px;
    flex: 0 0 13px;
    font-size: 12px;
    line-height: 1;
    text-align: center;
    transform: none !important;
    transition: none;
}

.barefoot-search-form-wrap .barefoot-search-form__reset > button:hover i {
    transform: none !important;
}

.barefoot__map-search__filters {
    border: 1px solid #dde1e4;
    border-radius: 8px;
    background: var(--barefoot-surface);
}

.barefoot__map-search__filters .form-control {
    padding: 0 42px 0 14px;
}

#barefootMapCnt .rental-search-results__content {
    --barefoot-results-map-width: clamp(360px, 32.25vw, 680px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) var(--barefoot-results-map-width);
    gap: 20px;
    width: 100% !important;
    max-width: none !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    align-items: start;
}

#barefootMapCnt .rental-search-results__properties-container {
    grid-column: 1 / -1;
    grid-row: 1;
}

#barefootMapCnt .rental-search-results__properties,
#barefootMapCnt .rental-search-results__map {
    width: auto;
    max-width: none;
    min-width: 0;
    padding: 0;
}

#barefootMapCnt .rental-search-results__properties {
    position: static;
    left: auto;
    width: 100%;
    max-width: 100%;
    /* The list stays inside the untouched theme container. Reserve only the
     * portion occupied by the viewport-pinned map and the 20px gap. */
    padding: 0 max(0px, calc(50% + var(--barefoot-results-map-width) + 20px - 50vw)) 0 0 !important;
}

#barefootMap.rental-search-results__map {
    position: sticky !important;
    top: 180px !important;
    z-index: 1;
    grid-column: 2;
    grid-row: 1;
    display: block;
    height: calc(100vh - 220px);
    max-height: 1400px;
    overflow: hidden;
    align-self: stretch;
    border: 0;
    border-radius: 0;
    background: #eef1f2;
    box-shadow: none;
}

/* WP Engine can briefly serve the previous cached template after the plugin
 * stylesheet has already updated. Keep that markup aligned to the supplied
 * 2000px design (85px left gutter, 405px cards, map flush right). */
#barefootMapCnt > .rental-search-results__container:not(.container) {
    width: calc(100% - 68px);
    max-width: 1830px;
    margin-right: auto;
    margin-left: auto;
}

#barefootMapCnt > .rental-search-results__container:not(.container) > .rental-search-results__content {
    width: auto !important;
    margin-right: calc(50% - 50vw) !important;
}

#barefootMapCnt > .rental-search-results__container:not(.container) .rental-search-results__properties {
    grid-column: 1;
    grid-row: 1;
    width: auto;
    max-width: none;
    padding-right: 0 !important;
}

/* body.admin-bar #barefootMap.rental-search-results__map {
    top: 0 !important;
    height: auto;
} */

/* The legacy theme bundle gives the result list a fixed 990px height. That
 * shortens the sticky containing block and makes the map appear static. */
#barefootMapCnt,
#barefootMapCnt .rental-search-results__content,
#barefootMapCnt .rental-search-results__properties,
#barefootMapCnt .barefoot__map-search__list {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}

.rental-search-results__content{
    margin-bottom: 2rem !important;
}

#barefootList {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 18px;
    width: 100%;
    max-width: 100%;
    margin: 0;
}

#barefootList > .rental-property-card {
    width: auto;
    max-width: none;
    min-width: 0;
    margin: 0 !important;
    padding: 0;
}

.rental-property-card__inner {
    display: flex;
    height: 100%;
    flex-direction: column;
}

.rental-property-card__image {
    overflow: hidden;
    aspect-ratio: 406 / 313;
    background: #eef1f2;
}

.rental-property-card__image a,
.rental-property-card__image img {
    display: block;
    width: 100%;
    height: 100%;
}

.rental-property-card__image img {
    object-fit: cover;
    object-position: center center;
    transition: transform .25s ease;
}

.rental-property-card__image a:hover img {
    transform: scale(1.025);
}

.rental-property-card__stats {
    display: flex !important;
    gap: 8px 12px;
    margin: 10px 8px 8px;
    overflow: visible;
    flex-wrap: wrap !important;
    color: #312e2e;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    line-height: 1.1;
    white-space: nowrap;
}

.rental-property-card__stats span {
    min-width: 0;
}

.rental-property-card__stats i,
.rental-property-card__address i {
    margin-right: 4px;
}

.rental-property-card__title {
    margin: 0 8px 2px;
    font-family: "DM Sans", sans-serif;
    font-size: 23px;
    font-weight: 500;
    line-height: 1.13;
}

.rental-property-card__title a {
    color: #4a4646;
    text-decoration: none;
}

.rental-property-card__title a:hover,
.rental-property-card__title a:focus {
    color: #000;
    text-decoration: underline;
}

.rental-property-card__address {
    margin: 0 8px;
    color: #312e2e;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.625;
}

.rental-property-card__nightly-rate {
    margin: auto 8px 0;
    padding-top: 8px;
    color: #312e2e;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
}

.barefoot__map-search__map-item {
    width: 310px;
    max-width: calc(100vw - 80px);
    padding-bottom: 6px;
    background: #fff;
}

#barefootMap .gm-style-iw-c {
    max-height: none !important;
    padding: 0 !important;
    overflow: visible !important;
}

#barefootMap .gm-style-iw-d {
    max-height: none !important;
    overflow: visible !important;
}

#barefootMap .gm-style-iw-chr {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    height: 0;
}

#barefootMap .gm-style-iw-ch {
    display: none;
}

#barefootMap .gm-ui-hover-effect {
    top: 8px !important;
    right: 8px !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, .92) !important;
    box-shadow: 0 1px 6px rgba(0, 0, 0, .24) !important;
}

#barefootMap .gm-ui-hover-effect span {
    width: 18px !important;
    height: 18px !important;
    margin: 7px !important;
}

.barefoot__map-search__map-item .rental-property-card__image {
    aspect-ratio: 406 / 250;
}

.barefoot__map-search__map-item .rental-property-card__image img {
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
}

.barefoot__map-search__map-item .rental-property-card__stats {
    gap: 6px 10px;
    margin: 9px 8px 7px;
    font-size: 11px;
    line-height: 1.2;
}

.barefoot__map-search__map-item .rental-property-card__title {
    margin-bottom: 3px;
    font-size: 19px;
}

.barefoot__map-search__map-item .rental-property-card__address {
    padding-bottom: 4px;
    font-size: 13px;
    line-height: 1.4;
}

.barefoot__map-search__map-item .rental-property-card__nightly-rate {
    padding-top: 5px;
    font-size: 14px;
}

.barefoot-pagination[hidden] {
    display: none !important;
}

.barefoot-pagination {
    display: flex;
    margin-top: 34px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.barefoot-pagination__summary {
    color: var(--barefoot-muted);
    font-size: 14px;
}

.barefoot-pagination__pages {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    flex-wrap: wrap;
}

.barefoot-pagination__button,
.barefoot-pagination__gap {
    display: inline-flex;
    min-width: 40px;
    min-height: 40px;
    padding: 7px 10px;
    align-items: center;
    justify-content: center;
    border: 1px solid #dde1e4;
    border-radius: 4px;
    background: #fff;
    color: var(--barefoot-ink);
    font: inherit;
    font-size: 14px;
    line-height: 1;
}

.barefoot-pagination__button {
    cursor: pointer;
    transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}

.barefoot-pagination__button:hover:not(:disabled),
.barefoot-pagination__button:focus-visible,
.barefoot-pagination__button[aria-current="page"] {
    border-color: var(--barefoot-ink);
    background: var(--barefoot-ink);
    color: #fff;
}

.barefoot-pagination__button:focus-visible {
    outline: 3px solid var(--barefoot-accent);
    outline-offset: 2px;
}

.barefoot-pagination__button:disabled:not([aria-current="page"]) {
    opacity: .4;
    cursor: not-allowed;
}

.barefoot-pagination__button--previous,
.barefoot-pagination__button--next {
    min-width: 82px;
}

.barefoot-pagination__gap {
    min-width: 24px;
    padding-inline: 2px;
    border-color: transparent;
    background: transparent;
}

/* Flatpickr is appended to body, so these selectors cannot be nested under
 * the form wrapper. They intentionally use the same search palette. */
.flatpickr-calendar {
    max-width: calc(100vw - 24px);
    overflow: hidden;
    border: 1px solid #dde1e4;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(36, 34, 34, .22);
    color: #4a4646;
    font-family: inherit;
}

.flatpickr-calendar.arrowTop::before,
.flatpickr-calendar.arrowTop::after {
    border-bottom-color: #4a4646;
}

.flatpickr-calendar.arrowBottom::before,
.flatpickr-calendar.arrowBottom::after {
    border-top-color: #4a4646;
}

.flatpickr-months {
    padding: 6px 8px 0;
    background: #4a4646;
}

.flatpickr-months .flatpickr-month,
.flatpickr-current-month,
.flatpickr-current-month input.cur-year,
.flatpickr-current-month .flatpickr-monthDropdown-months {
    background: transparent;
    color: #fff;
    fill: #fff;
}

.flatpickr-months .flatpickr-month {
    height: 52px !important;
}

.flatpickr-current-month {
    height: 44px;
    padding-top: 12px;
    font-size: 16px;
    font-weight: 700;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    font-weight: 700;
}

.flatpickr-current-month .numInputWrapper span.arrowUp::after {
    border-bottom-color: #fff;
}

.flatpickr-current-month .numInputWrapper span.arrowDown::after {
    border-top-color: #fff;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    top: 4px;
    height: 44px;
    padding: 13px;
    color: #fff;
    fill: #fff;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
    fill: #fff200;
}

.flatpickr-weekdays {
    background: #f2f2f2;
}

span.flatpickr-weekday {
    background: #f2f2f2;
    color: #4a4646;
    font-size: 12px;
    font-weight: 700;
}

.flatpickr-days {
    border: 0;
}

.flatpickr-day {
    border-radius: 4px;
    color: #4a4646;
    font-weight: 500;
}

.flatpickr-day.today {
    border-color: #e8dc04;
}

.flatpickr-day:hover,
.flatpickr-day:focus,
.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
    border-color: #fff200;
    background: #fff200;
    color: #4a4646;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
    border-color: #4a4646;
    background: #4a4646;
    color: #fff;
}

.flatpickr-day.inRange {
    border-color: #f2f2f2;
    background: #f2f2f2;
    box-shadow: -5px 0 0 #f2f2f2, 5px 0 0 #f2f2f2;
}

.flatpickr-day.date-checkin:not(.flatpickr-disabled),
.flatpickr-day.date-available:not(.flatpickr-disabled) {
    border-color: #aebd87;
    background: #eef3df;
    color: #35411e;
}

.flatpickr-day.date-checkin:not(.flatpickr-disabled)::after,
.flatpickr-day.date-available:not(.flatpickr-disabled)::after {
    position: absolute;
    right: 4px;
    bottom: 3px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #6f8a32;
    content: "";
}

.flatpickr-day.date-checkin.selected,
.flatpickr-day.date-checkin.selected:hover,
.flatpickr-day.date-available.selected,
.flatpickr-day.date-available.selected:hover {
    border-color: #4a4646;
    background: #4a4646;
    color: #fff;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed {
    border-color: transparent;
    background: transparent;
    color: #b4b3b3;
}

.flatpickr-day.date-booked:not(.prevMonthDay):not(.nextMonthDay),
.flatpickr-day.date-booked:not(.prevMonthDay):not(.nextMonthDay):hover {
    border-color: #e9a4a0 !important;
    background: #fee4e2 !important;
    color: #b42318 !important;
    font-weight: 700;
    text-decoration: none;
}

/* Keep the selected check-in visible while the user chooses checkout. */
.flatpickr-day.date-stay-start,
.flatpickr-day.date-stay-start:hover {
    border-color: #4a4646;
    background: #4a4646;
    color: #fff;
    font-weight: 700;
}

/* Property rate selector: modal treatment matching the supplied reference. */
body.property-date-picker-open {
    overflow: hidden;
}

body.property-date-picker-open::before {
    position: fixed;
    inset: 0;
    z-index: 99998;
    background: rgba(0, 0, 0, .58);
    content: "";
}

.flatpickr-calendar.property-rate-calendar {
    --rate-calendar-gap: 30px;
    --rate-calendar-checkin-bg: #e5f2d6;
    --rate-calendar-checkin-border: #c7dda9;
    --rate-calendar-checkin-text: #35472d;
    --rate-calendar-available-bg: #e5f2d6;
    --rate-calendar-available-border: #c7dda9;
    --rate-calendar-available-text: #35472d;
    --rate-calendar-action-outline: #a6c788;
    --rate-calendar-unavailable-bg: #f8cecc;
    --rate-calendar-unavailable-border: #e9a4a0;
    --rate-calendar-unavailable-text: #a51e1e;
    position: fixed !important;
    top: 50% !important;
    right: auto !important;
    bottom: auto !important;
    left: 50% !important;
    z-index: 99999 !important;
    width: min(820px, calc(100vw - 32px)) !important;
    max-width: calc(100vw - 32px) !important;
    max-height: calc(100vh - 32px);
    overflow-x: hidden;
    overflow-y: auto;
    border: 0;
    border-radius: 0;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .3);
    transform: translate(-50%, -50%) !important;
}

.flatpickr-calendar.property-rate-calendar::before,
.flatpickr-calendar.property-rate-calendar::after {
    display: none !important;
}

.property-rate-calendar__header {
    display: flex;
    min-height: 58px;
    padding: 0 30px;
    border-bottom: 1px solid #e1e1e1;
    align-items: center;
    justify-content: space-between;
    background: #fff;
}

.property-rate-calendar__title {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: #171717;
    font-size: 18px;
    font-weight: 500;
}

.property-rate-calendar__title i {
    font-size: 16px;
}

.property-rate-calendar__dismiss,
.property-rate-calendar__clear,
.property-rate-calendar__close {
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #161616;
    font: inherit;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease, text-decoration-color .18s ease;
}

.property-rate-calendar__dismiss {
    width: 36px;
    height: 36px;
    padding: 0;
    color: #969696;
    font-size: 28px;
    font-weight: 300;
    line-height: 34px;
    text-transform: none;
}

.flatpickr-calendar.property-rate-calendar .flatpickr-months {
    width: 100%;
    padding: 28px 30px 14px;
    gap: var(--rate-calendar-gap);
    background: #fff;
}

.flatpickr-calendar.property-rate-calendar .flatpickr-months .flatpickr-month {
    height: 52px !important;
    flex: 0 0 calc((100% - var(--rate-calendar-gap)) / 2);
    background: #fff;
    color: #171717;
    fill: #171717;
}

.flatpickr-calendar.property-rate-calendar .flatpickr-current-month,
.flatpickr-calendar.property-rate-calendar .flatpickr-current-month input.cur-year,
.flatpickr-calendar.property-rate-calendar .flatpickr-current-month .flatpickr-monthDropdown-months {
    background: #fff;
    color: #171717;
    font-size: 18px;
    font-weight: 700;
}

.flatpickr-calendar.property-rate-calendar .flatpickr-current-month {
    height: 52px;
    padding-top: 10px;
}

.flatpickr-calendar.property-rate-calendar .flatpickr-current-month input.cur-year,
.flatpickr-calendar.property-rate-calendar .flatpickr-current-month .flatpickr-monthDropdown-months {
    height: 34px;
    padding-top: 0;
    line-height: 34px;
}

.flatpickr-calendar.property-rate-calendar .flatpickr-current-month .numInputWrapper {
    width: 72px;
}

.flatpickr-calendar.property-rate-calendar .flatpickr-months .flatpickr-prev-month,
.flatpickr-calendar.property-rate-calendar .flatpickr-months .flatpickr-next-month {
    top: 89px !important;
    width: 31px;
    height: 31px;
    padding: 8px;
    border: 1px solid #dcdcdc;
    border-radius: 50%;
    color: #222;
    fill: #222;
}

.flatpickr-calendar.property-rate-calendar .flatpickr-months .flatpickr-prev-month {
    left: 35px;
}

.flatpickr-calendar.property-rate-calendar .flatpickr-months .flatpickr-next-month {
    right: 35px;
}

.flatpickr-calendar.property-rate-calendar .flatpickr-prev-month svg,
.flatpickr-calendar.property-rate-calendar .flatpickr-next-month svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
    transform: translateY(-50%);
}

.flatpickr-calendar.property-rate-calendar .flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-calendar.property-rate-calendar .flatpickr-months .flatpickr-next-month:hover {
    border-color: #263f3e;
    background: #263f3e;
    color: #fff;
    fill: #fff;
}

.flatpickr-calendar.property-rate-calendar .flatpickr-prev-month:hover svg,
.flatpickr-calendar.property-rate-calendar .flatpickr-next-month:hover svg {
    fill: #fff;
}

.flatpickr-calendar.property-rate-calendar .flatpickr-innerContainer {
    display: block;
    width: 100%;
    padding: 0 30px 28px;
}

.flatpickr-calendar.property-rate-calendar .flatpickr-rContainer,
.flatpickr-calendar.property-rate-calendar .flatpickr-weekdays,
.flatpickr-calendar.property-rate-calendar .flatpickr-days {
    width: 100% !important;
    max-width: none !important;
}

.flatpickr-calendar.property-rate-calendar .flatpickr-weekdays {
    height: 32px;
    background: #fff;
}

.flatpickr-calendar.property-rate-calendar .flatpickr-weekdaycontainer,
.flatpickr-calendar.property-rate-calendar .dayContainer {
    box-shadow: none !important;
    width: calc((100% - var(--rate-calendar-gap)) / 2) !important;
    min-width: 0 !important;
    max-width: none !important;
    flex: 0 0 calc((100% - var(--rate-calendar-gap)) / 2);
}

.flatpickr-calendar.property-rate-calendar .flatpickr-weekdaycontainer + .flatpickr-weekdaycontainer,
.flatpickr-calendar.property-rate-calendar .dayContainer + .dayContainer {
    margin-left: var(--rate-calendar-gap);
}

.flatpickr-calendar.property-rate-calendar span.flatpickr-weekday {
    background: #fff;
    color: #575757;
    font-size: 14px;
    font-weight: 700;
}

.flatpickr-calendar.property-rate-calendar .flatpickr-day {
    display: flex;
    height: 47px;
    max-width: 14.285714%;
    border: 1px solid #fff;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    flex-basis: 14.285714%;
    flex-direction: column;
    background: #eeeeee;
    color: #323232;
    font-size: 14px;
    font-weight: 600;
    line-height: 17px;
}

.flatpickr-calendar.property-rate-calendar .flatpickr-day.prevMonthDay,
.flatpickr-calendar.property-rate-calendar .flatpickr-day.nextMonthDay {
    visibility: hidden;
}

.flatpickr-calendar.property-rate-calendar .flatpickr-day.date-unavailable:not(.date-booked),
.flatpickr-calendar.property-rate-calendar .flatpickr-day.flatpickr-disabled:not(.date-booked):not(.date-available):not(.date-checkout) {
    border-color: #fff;
    background-color: var(--rate-calendar-unavailable-bg);
    background-image: none;
    color: var(--rate-calendar-unavailable-text);
    text-decoration: none;
}

.flatpickr-calendar.property-rate-calendar .flatpickr-day.date-checkin:not(.flatpickr-disabled) {
    border-color: #fff;
    border-width: 1px;
    background: var(--rate-calendar-checkin-bg);
    color: var(--rate-calendar-checkin-text);
}


.flatpickr-calendar.property-rate-calendar .flatpickr-day.date-checkout {
    background: var(--rate-calendar-checkin-bg) !important;
    color: var(--rate-calendar-checkin-text) !important;
    cursor: pointer;
}

.flatpickr-calendar.property-rate-calendar .flatpickr-day.date-available:not(.date-booked) {
    border-color: #fff;
    background: var(--rate-calendar-available-bg);
    color: var(--rate-calendar-available-text);
    cursor: pointer;
    opacity: 1;
}

.flatpickr-calendar.property-rate-calendar--checkin .flatpickr-day.date-available,
.flatpickr-calendar.property-rate-calendar .flatpickr-day.date-available.flatpickr-disabled {
    cursor: not-allowed;
}

.flatpickr-calendar.property-rate-calendar .flatpickr-day.date-available::after {
    display: none;
}

.flatpickr-calendar.property-rate-calendar .flatpickr-day.date-checkin:not(.selected)::after,
.flatpickr-calendar.property-rate-calendar .flatpickr-day.date-checkout:not(.selected)::after {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
    border: 2px solid var(--rate-calendar-action-outline);
    box-sizing: border-box;
    content: '';
    pointer-events: none;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: unset;
    background-color: unset;
}

.flatpickr-calendar.property-rate-calendar .flatpickr-day.date-booked:not(.date-checkout):not(.prevMonthDay):not(.nextMonthDay),
.flatpickr-calendar.property-rate-calendar .flatpickr-day.date-booked:not(.date-checkout):not(.prevMonthDay):not(.nextMonthDay):hover {
    border-color: #fff !important;
    background: #f8cecc !important;
    background-image: none !important;
    color: #a51e1e !important;
    text-decoration: none;
}

.flatpickr-calendar.property-rate-calendar .flatpickr-day.selected,
.flatpickr-calendar.property-rate-calendar .flatpickr-day.selected:hover,
.flatpickr-calendar.property-rate-calendar .flatpickr-day.date-stay-start,
.flatpickr-calendar.property-rate-calendar .flatpickr-day.date-stay-start:hover {
    border-color: #263f3e !important;
    background: #263f3e !important;
    color: #fff !important;
}

.property-rate-calendar__day-number {
    display: inline-flex;
    min-width: 24px;
    height: 22px;
    padding: 0 4px;
    border: 1px solid transparent;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.flatpickr-calendar.property-rate-calendar .flatpickr-day.selected .property-rate-calendar__day-number,
.flatpickr-calendar.property-rate-calendar .flatpickr-day.date-stay-start .property-rate-calendar__day-number {
    border-color: #fff;
}

.property-rate-calendar__day-rate {
    display: block;
    font-size: 10px;
    font-weight: 400;
    line-height: 11px;
}

.property-rate-calendar__legend {
    display: flex;
    width: 100%;
    padding: 0 30px 18px;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px 22px;
    background: #fff;
    color: #575757;
    font-size: 12px;
    line-height: 1.3;
}

.property-rate-calendar__legend span {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.property-rate-calendar__legend i {
    display: block;
    width: 18px;
    height: 18px;
    margin-right: 7px;
    border: 1px solid transparent;
    border-radius: 2px;
    box-sizing: border-box;
    flex: 0 0 18px;
}

.property-rate-calendar__legend .is-action {
    position: relative;
    border-color: var(--rate-calendar-available-border);
    background: var(--rate-calendar-available-bg);
}

.property-rate-calendar__legend .is-action::after {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    border: 1px solid var(--rate-calendar-action-outline);
    content: "";
}

.property-rate-calendar__legend .is-available {
    border-color: var(--rate-calendar-available-border);
    background: var(--rate-calendar-available-bg);
}

.property-rate-calendar__legend .is-unavailable {
    border-color: var(--rate-calendar-unavailable-border);
    background-color: var(--rate-calendar-unavailable-bg);
    background-image: none;
}

.property-rate-calendar__footer {
    display: flex;
    min-height: 70px;
    padding: 0 30px;
    border-top: 1px solid #e1e1e1;
    align-items: center;
    justify-content: space-between;
    background: #fff;
}

.property-rate-calendar__clear,
.property-rate-calendar__close {
    min-height: 42px;
    padding: 10px 0;
    font-size: 12px;
}

.property-rate-calendar__close {
    min-width: 101px;
    padding-right: 20px;
    padding-left: 20px;
    border: 1px solid #dedede;
}

.property-rate-calendar__dismiss:hover {
    background: #eeeeee;
    color: #161616;
}

.property-rate-calendar__clear:hover {
    color: #161616;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.property-rate-calendar__close:hover {
    border-color: #263f3e;
    background: #263f3e;
    color: #fff;
}

.property-rate-calendar__dismiss:focus,
.property-rate-calendar__clear:focus,
.property-rate-calendar__close:focus {
    outline: none;
}

.property-rate-calendar__dismiss:focus-visible,
.property-rate-calendar__clear:focus-visible,
.property-rate-calendar__close:focus-visible,
.flatpickr-calendar.property-rate-calendar .flatpickr-prev-month:focus-visible,
.flatpickr-calendar.property-rate-calendar .flatpickr-next-month:focus-visible {
    outline: 3px solid #fff200;
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .flatpickr-calendar.property-rate-calendar {
        --rate-calendar-gap: 0px;
        width: calc(100vw - 20px) !important;
        max-width: calc(100vw - 20px) !important;
        max-height: calc(100vh - 20px);
    }

    .property-rate-calendar__header,
    .property-rate-calendar__footer {
        padding-right: 16px;
        padding-left: 16px;
    }

    .property-rate-calendar__legend {
        padding-right: 16px;
        padding-left: 16px;
        justify-content: flex-start;
        gap: 9px 16px;
    }

    .flatpickr-calendar.property-rate-calendar .flatpickr-months {
        padding: 22px 16px 10px;
    }

    .flatpickr-calendar.property-rate-calendar .flatpickr-months .flatpickr-month,
    .flatpickr-calendar.property-rate-calendar .flatpickr-weekdaycontainer,
    .flatpickr-calendar.property-rate-calendar .dayContainer {

        width: 100% !important;
        flex-basis: 100%;
    }

    .flatpickr-calendar.property-rate-calendar .flatpickr-innerContainer {
        padding: 0 16px 20px;
    }

    .flatpickr-calendar.property-rate-calendar .flatpickr-months .flatpickr-prev-month,
    .flatpickr-calendar.property-rate-calendar .flatpickr-months .flatpickr-next-month {
        top: 83px !important;
    }

    .flatpickr-calendar.property-rate-calendar .flatpickr-months .flatpickr-prev-month {
        left: 18px;
    }

    .flatpickr-calendar.property-rate-calendar .flatpickr-months .flatpickr-next-month {
        right: 18px;
    }

    .flatpickr-calendar.property-rate-calendar .flatpickr-day {
        height: 46px;
    }
}

/* Property detail page — matched to example/rental-BUILDOUT-oc-vacations. */
.property-detail {
    --property-ink: #4a4646;
    --property-copy: #312e2e;
    --property-field: #dddfe0;
    width: 100%;
    color: var(--property-copy);
    font-family: "DM Sans", sans-serif;
    overflow: hidden;
}

.property-detail,
.property-detail * {
    box-sizing: border-box;
}

.property-detail__gallery {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin: 0 0 64px calc(50% - 50vw) !important;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: #f7f7f7;
}

.property-detail .property-detail__gallery > .property-detail__gallery-grid {
    display: flex !important;
    gap: 14px;
    height: clamp(500px, 48vw, 736px);
    min-height: 500px;
    margin: 0 auto;
    align-items: stretch;
    flex-flow: row nowrap !important;
}

.property-detail .property-detail__gallery-grid > .property-detail__gallery__image,
.property-detail .property-detail__gallery-grid > .property-detail__gallery__secondary {
    max-width: none !important;
    height: 100%;
    padding: 0 !important;
}

.property-detail .property-detail__gallery-grid > .property-detail__gallery__image--primary {
    width: calc(60% - 6px) !important;
    flex: 0 0 calc(60% - 6px) !important;
}

.property-detail .property-detail__gallery-grid > .property-detail__gallery__secondary {
    position: relative;
    display: flex !important;
    width: calc(40% - 8px) !important;
    gap: 14px;
    flex: 0 0 calc(40% - 8px) !important;
    flex-flow: column nowrap !important;
}

.property-detail .property-detail__gallery-grid > .property-detail__gallery__secondary > .property-detail__gallery__image {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: calc(50% - 7px) !important;
    padding: 0 !important;
    flex: 1 1 calc(50% - 7px) !important;
}

.property-detail .property-detail__gallery-grid > .property-detail__gallery__secondary > .property-detail__gallery__image:nth-child(n + 3) {
    display: none;
}

.property-detail .property-detail__gallery-grid > .property-detail__gallery__secondary > .property-detail__gallery__image:first-child:nth-last-child(2) {
    height: 100% !important;
    flex-basis: 100% !important;
}

.property-detail .property-detail__gallery > .property-detail__gallery-grid--single > .property-detail__gallery__image--primary {
    width: 100% !important;
    flex-basis: 100% !important;
}

.property-detail__gallery__image {
    position: relative;
    overflow: hidden;
    border: 0;
}

.property-detail .property-detail__gallery__image a,
.property-detail .property-detail__gallery__image img {
    width: 100% !important;
    height: 100% !important;
}

.property-detail .property-detail__gallery__image a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-detail .property-detail__gallery__image img {
    display: block;
    max-width: none !important;
    min-height: 0;
    object-fit: cover !important;
    object-position: center center;
}

.property-detail .property-detail__gallery__image .property-detail__gallery-trigger,
.property-detail .property-detail__gallery__secondary > .property-detail__gallery-trigger {
    position: absolute;
    right: auto;
    bottom: 18px;
    left: 18px;
    z-index: 2;
    display: inline-flex;
    width: auto !important;
    height: auto !important;
    min-height: 38px;
    padding: 9px 14px;
    align-items: center;
    gap: 8px;
    border: 0;
    border-radius: 0;
    background: var(--property-ink);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .22);
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease;
}

.property-detail .property-detail__gallery__image .property-detail__gallery-trigger--mobile {
    display: none;
}

.property-detail .property-detail__gallery__secondary > .property-detail__gallery-trigger--desktop {
    bottom: 0;
    left: 0;
    min-width: 198px;
    min-height: 54px;
    padding: 15px 22px;
    font-size: 17px;
    line-height: 24px;
}

.property-detail .property-detail__gallery__image .property-detail__gallery-trigger:hover,
.property-detail .property-detail__gallery__image .property-detail__gallery-trigger:focus,
.property-detail .property-detail__gallery__image .property-detail__gallery-trigger:active,
.property-detail .property-detail__gallery__secondary > .property-detail__gallery-trigger:hover,
.property-detail .property-detail__gallery__secondary > .property-detail__gallery-trigger:focus,
.property-detail .property-detail__gallery__secondary > .property-detail__gallery-trigger:active {
    border: 0 !important;
    background: #000 !important;
    box-shadow: none !important;
    color: #fff200 !important;
    text-decoration: none !important;
    transform: none !important;
}

.property-detail__gallery__hidden {
    display: none !important;
}

.property-detail > .container-fluid {
    width: 100%;
    max-width: 1532px;
    margin: 0 auto;
    padding: 0 16px;
}

.property-detail > .container-fluid > .row {
    display: grid !important;
    grid-template-columns: minmax(0, 939px) minmax(340px, 500px);
    gap: 72px;
    margin: 0 !important;
    align-items: start;
    justify-content: space-between;
}

.property-detail > .container-fluid > .row > .col-xl-5,
.property-detail > .container-fluid > .row > .col-xl-7,
.property-detail > .container-fluid > .row > .col-xl-7 > .row {
    display: contents !important;
}

.property-detail__info {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
}

.property-detail__booking {
    grid-column: 2;
    grid-row: 1;
    width: 100% !important;
    max-width: 500px;
    margin-top: 68px;
    padding: 0 !important;
    align-self: start;
}

.property-detail__booking-column {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    max-width: 500px;
    align-self: start;
}

.property-detail__booking-column .property-detail__booking {
    margin-top: 0;
}

.property-detail__archive-return {
    margin: 0 0 18px;
}

.property-detail__archive-return .btn {
    display: inline-flex;
    min-height: 42px;
    padding: 9px 16px;
    border: 1px solid var(--property-ink);
    border-radius: 0;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: var(--property-ink);
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
    text-decoration: none;
    transition: background-color .18s ease, color .18s ease, transform .18s ease;
}

.property-detail__archive-return .btn:hover,
.property-detail__archive-return .btn:focus {
    background: var(--property-ink);
    color: #fff;
    text-decoration: none;
    transform: translateX(-2px);
}

.property-detail__map {
    grid-column: 1;
    grid-row: 2;
    width: 100% !important;
    max-width: 932px;
    margin: 48px 0 96px !important;
    padding: 0 !important;
}

.property-detail__calendar {
    display: none !important;
}

.property-detail__info__addy {
    margin: 0 0 18px;
    color: var(--property-ink);
    font-size: 22px;
    line-height: 1.35;
}

.property-detail__info__addy i {
    margin-right: 8px;
    font-size: 20px;
}

.property-detail__info__name {
    margin: 0 0 22px;
    color: var(--property-ink);
    font-family: "DM Sans", sans-serif;
    font-size: clamp(32px, 2.1vw, 43px);
    font-weight: 500;
    line-height: 1.12;
}

.property-detail__info__stats {
    display: flex !important;
    margin: 0 0 28px;
    align-items: center;
    gap: 12px 20px;
    flex-wrap: wrap;
    color: var(--property-copy);
    font-size: 15px;
    line-height: 1.3;
}

.property-detail__info__stats span {
    margin: 0 !important;
    white-space: nowrap;
}

.property-detail__info__stats i {
    margin-right: 6px;
}

.property-detail__info__desciption {
    margin: 0 0 38px !important;
    color: var(--property-copy);
    font-size: 17px;
    line-height: 1.48;
}

.property-detail__info__desciption p {
    margin: 0 0 22px;
}

.property-detail__amenities {
    margin-top: 34px;
}

.property-detail__amenities h2,
.property-detail__map h2 {
    margin: 0 0 24px;
    color: var(--property-ink);
    font-family: "DM Sans", sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
}

.property-detail__amenities ul {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.property-detail__amenities li {
    display: flex;
    min-width: 0;
    min-height: 64px;
    margin: 0;
    padding: 12px 18px;
    align-items: center;
    gap: 14px;
    background: var(--property-field);
    color: var(--property-ink);
    font-size: 14px;
    line-height: 1.25;
}

.property-detail__amenities li i {
    width: 24px;
    flex: 0 0 24px;
    font-size: 20px;
    text-align: center;
}

.property-detail__amenities li span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.property-detail__booking .inner {
    width: 100%;
    padding: 22px 20px 23px;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: 0 3px 16px rgba(49, 46, 46, .22);
}

.property-detail__booking-closed {
    min-height: 150px;
    padding: 18px 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--property-ink);
    font-size: 17px;
    line-height: 1.5;
}

.property-detail__booking-closed > :first-child {
    margin-top: 0;
}

.property-detail__booking-closed > :last-child {
    margin-bottom: 0;
}

.property-detail__booking-closed h2,
.property-detail__booking-closed h3 {
    margin: 0 0 14px;
    color: var(--property-ink);
    font: inherit;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
}

.property-detail__booking-closed a {
    color: var(--property-ink);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.property-detail__booking-dates {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 19px;
}

.property-detail__booking .form-group {
    position: relative;
    min-width: 0;
    margin: 0;
}

.property-detail__booking .property-detail__booking-guests {
    margin-bottom: 13px;
}

.property-detail__booking .form-control {
    width: 100%;
    height: 45px;
    min-height: 45px;
    padding: 0 14px;
    border: 0;
    border-radius: 0;
    outline: 0;
    background-color: var(--property-field);
    box-shadow: none;
    color: var(--property-ink);
    font: inherit;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.25;
}

.property-detail__booking-dates .form-control[readonly] {
    background-color: var(--property-field) !important;
    color: var(--property-ink) !important;
    opacity: 1;
    -webkit-text-fill-color: var(--property-ink);
}

.property-detail__booking .form-control::placeholder {
    color: var(--property-ink);
    opacity: 1;
}

.property-detail__booking select.form-control {
    padding-right: 44px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234a4646' d='M1.41.59 6 5.17 10.59.59 12 2l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 12px 8px;
    appearance: none;
}

.property-detail__booking .form-control:focus {
    box-shadow: 0 0 0 3px rgba(255, 242, 0, .5);
}

.property-detail__booking-note {
    display: none;
    min-height: 23px;
    margin: 0 14px 17px;
    align-items: flex-start;
    gap: 7px;
    color: var(--property-ink);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.35;
}

.property-detail__booking-note--special {
    display: flex;
}

.property-detail__booking-note > span {
    flex: 0 0 auto;
    padding-top: 2px;
    letter-spacing: -2px;
}

.property-detail__booking-special {
    min-width: 0;
}

.property-detail__booking-special-title {
    display: block;
    font-weight: 700;
}

.property-detail__booking-special-description {
    margin-top: 3px;
    font-size: 14px;
}

.property-detail__booking-special-description > :last-child {
    margin-bottom: 0;
}

.property-detail__availability-disclaimer {
    display: flex;
    margin: -2px 14px 16px;
    padding: 10px 12px;
    align-items: flex-start;
    gap: 8px;
    border-left: 3px solid #777273;
    background: #eef0f0;
    color: #4a4646;
    font-size: 12px;
    line-height: 1.45;
}

.property-detail__availability-disclaimer i {
    padding-top: 2px;
    flex: 0 0 auto;
}

.property-detail__booking-result {
    display: none;
    min-height: 24px;
    margin: -7px 14px 13px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--property-ink);
    font-size: 14px;
    line-height: 1.35;
}

.property-detail__booking-result.is-active {
    display: flex;
}

.property-detail__booking-nights {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 2px;
}

.property-detail__booking-result .guests {
    display: block;
    min-height: 17px;
    color: #4a4646;
    font-size: 13px;
    line-height: 1.25;
}

.property-detail__booking-result .nightly-rate {
    display: block;
    min-height: 17px;
    color: #312e2e;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
}

.property-detail__booking-result .rate {
    margin-left: auto;
    text-align: right;
}

.property-detail__booking-result.is-error .nights:empty {
    display: none;
}

.property-detail__booking-result.is-error .rate {
    width: 100%;
    margin-left: 0;
    text-align: left;
}

.property-detail__booking #rateDisplay.is-error {
    color: #b42318;
    font-weight: 700;
}

.property-detail__booking #rateDisplay.is-success {
    color: #39721f;
    font-weight: 700;
}

.property-detail__booking #btnBookNow {
    width: 100%;
    min-height: 56px;
    margin: 0;
    padding: 14px 20px;
    border: 0;
    border-radius: 0;
    background: var(--property-ink);
    color: #fff;
    font: inherit;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
}

.property-detail__booking #btnBookNow:hover:not(:disabled) {
    background: #000;
    color: #fff200;
}

.property-detail__booking #btnBookNow:disabled {
    opacity: 1;
    cursor: not-allowed;
}

.property-detail__booking .alert {
    margin: 12px 0 0;
    border-radius: 0;
    font-size: 14px;
}

#propertyMap {
    width: 100%;
    height: 200px;
    min-height: 0;
    aspect-ratio: 2 / 1;
    overflow: hidden;
    background: #eef1f2;
}

/* Win over the legacy barefoot.scss bundle when the theme prints it after
 * this plugin stylesheet. */
.property-detail .property-detail__gallery {
    border: 0;
    border-radius: 0;
}

.property-detail .property-detail__info__name {
    margin-bottom: 22px;
    font-size: clamp(32px, 2.1vw, 43px);
}

.property-detail .property-detail__booking {
    width: 100% !important;
    max-width: 500px;
    padding: 0 !important;
}

.property-detail .property-detail__booking .inner {
    height: auto;
    padding: 22px 20px 23px;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: 0 3px 16px rgba(49, 46, 46, .22);
}

.property-detail .property-detail__map #propertyMap {
    width: 100%;
    height: 200px;
    min-height: 0;
    aspect-ratio: 2 / 1;
    border: 0;
    border-radius: 0;
}

@media (max-width: 1199px) {
    .property-detail > .container-fluid > .row {
        grid-template-columns: minmax(0, 1.7fr) minmax(320px, 1fr);
        gap: 36px;
    }

    .property-detail__amenities ul {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .property-detail__gallery {
        margin-bottom: 40px !important;
    }

    .property-detail > .container-fluid > .row {
        grid-template-columns: minmax(0, 1fr);
        gap: 36px;
    }

    .property-detail__info,
    .property-detail__booking-column,
    .property-detail__booking,
    .property-detail__map {
        grid-column: 1;
    }

    .property-detail__info {
        grid-row: 1;
    }

    .property-detail__booking-column {
        grid-row: 2;
        max-width: 500px;
        margin: 0 auto;
        justify-self: center;
    }

    .property-detail__info > .property-detail__booking-column {
        width: 100%;
        margin: 0 auto 36px;
    }

    .property-detail__booking {
        margin: 0;
    }

    .property-detail__map {
        grid-row: 3;
        max-width: none;
        margin-block: 12px !important;
    }

    .property-detail.is-booking-reordered .property-detail__map {
        grid-row: 2;
    }

    .property-detail.is-booking-reordered .property-detail__archive-return {
        grid-column: 1;
        grid-row: 3;
        margin-block: 0 1.5rem;
        margin-inline: unset;
    }
}

@media (max-width: 767px) {
    .property-detail .property-detail__gallery > .property-detail__gallery-grid {
        height: 62vw;
        min-height: 340px;
    }

    .property-detail .property-detail__gallery-grid > .property-detail__gallery__image--primary {
        width: 100% !important;
        flex-basis: 100% !important;
    }

    .property-detail .property-detail__gallery-grid > .property-detail__gallery__secondary {
        display: none !important;
    }

    .property-detail .property-detail__gallery__image .property-detail__gallery-trigger--mobile {
        display: inline-flex;
    }

    .property-detail__info__addy {
        margin-bottom: 12px;
        font-size: 17px;
    }

    .property-detail__info__name {
        font-size: 32px;
    }

    .property-detail .property-detail__info__stats {
        width: 100%;
        align-items: start !important;
        gap: 10px 14px;
    }

    .property-detail .property-detail__info__stats span {
        display: flex;
        min-width: 0;
        align-items: flex-start;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .property-detail__amenities ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.5px) {
    .property-detail__booking-column,
    .property-detail__booking-column .property-detail__booking {
        width: 100% !important;
        max-width: none;
    }
}

@media (max-width: 479px) {
    .property-detail__booking-dates,
    .property-detail__amenities ul {
        grid-template-columns: minmax(0, 1fr);
    }

    .property-detail .property-detail__gallery > .property-detail__gallery-grid {
        min-height: 300px;
    }

    .property-detail .property-detail__booking .inner {
        padding: 16px;
    }

    .property-detail__booking-note,
    .property-detail__booking-result {
        margin-right: 4px;
        margin-left: 4px;
    }

    .property-detail .property-detail__info__stats {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (min-width: 1400px) {
    .barefoot-search-form {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.05fr) minmax(0, 1.15fr) minmax(0, .85fr) minmax(0, .85fr) minmax(120px, .75fr);
    }

    .barefoot-search-form--has-advanced {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.1fr) minmax(0, .8fr) minmax(0, .8fr) minmax(120px, .75fr) 58px;
    }

    .barefoot-search-form--modal {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .barefoot-search-form--has-advanced .barefoot-search-form__advanced-trigger-label {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
}

/* The homepage uses the existing advanced-search modal without changing the
 * rental-search page layout. Desktop stays on one row, tablet uses two rows,
 * and mobile collapses to the modal trigger only. */
@media (min-width: 1200px) {
    .search-box-wrap.container.barefoot-search-form-wrap--home {
        max-width: 1504px;
        padding-right: 34px;
        padding-left: 34px;
    }

    .barefoot-search-form--home.barefoot-search-form--has-advanced {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.1fr) minmax(0, .8fr) minmax(0, .8fr) minmax(120px, .75fr) 58px;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .search-box-wrap.container.barefoot-search-form-wrap--home {
        width: calc(100% - 30px);
        max-width: 1100px;
        padding-right: 24px;
        padding-left: 24px;
    }

    .barefoot-search-form--home.barefoot-search-form--has-advanced {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .search-box-wrap.container.barefoot-search-form-wrap--home {
        width: 72px;
        max-width: 72px;
        padding: 10px;
    }

    .barefoot-search-form--home.barefoot-search-form--has-advanced {
        display: block;
    }

    .barefoot-search-form--home.barefoot-search-form--has-advanced > .form-group:not(.barefoot-search-form__advanced-trigger),
    .barefoot-search-form-wrap--home > .barefoot-search-form__reset {
        display: none;
    }

    .barefoot-search-form--home .barefoot-search-form__advanced-trigger > button {
        width: 52px;
        min-height: 52px;
        border: 1px solid #c4c7c8;
        background: #fff;
    }
}

/* Keep the rental results at two cards per row across desktop container sizes. */
@media (min-width: 1200px) and (max-width: 1639.98px) {
    #barefootList {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1199.98px) {
    #barefootMapCnt .rental-search-results__content {
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: auto auto;
        width: 100% !important;
        max-width: 100% !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    #barefootMapCnt .rental-search-results__properties-container {
        grid-column: 1;
        grid-row: 2;
    }

    #barefootMapCnt .rental-search-results__properties {
        position: static;
        left: auto;
        width: 100%;
        max-width: 100%;
        padding-right: 0 !important;
    }

    #barefootMapCnt > .rental-search-results__container:not(.container) > .rental-search-results__content {
        margin-right: 0 !important;
    }

    #barefootMapCnt > .rental-search-results__container:not(.container) .rental-search-results__properties {
        grid-column: 1;
        grid-row: 2;
        width: 100%;
        max-width: 100%;
    }

    #barefootMap.rental-search-results__map,
    body.admin-bar #barefootMap.rental-search-results__map {
        grid-column: 1;
        grid-row: 1;
        position: relative !important;
        top: 0 !important;
        height: clamp(420px, 52vw, 560px);
        min-height: 420px;
        align-self: start;
        border-radius: 8px;
    }

    #barefootList {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 899px) {
    .barefoot-search-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .barefoot-search-modal {
        align-items: flex-start;
    }
}

@media (min-width: 900px) and (max-height: 700px) {
    .barefoot-search-modal {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .barefoot-search-modal__header {
        padding: 14px 22px 12px;
    }

    .barefoot-search-modal__header h2 {
        font-size: 24px;
    }

    .barefoot-search-form--modal {
        gap: 11px 12px;
        padding: 14px 22px 18px;
    }

    .barefoot-search-form--modal .form-group > label:not(.sr-only) {
        margin-bottom: 4px;
    }
}

@media (max-width: 575px) {
    #barefootMapCnt > .rental-search-results__container:not(.container) {
        width: calc(100% - 24px);
    }

    .barefoot-search-form-wrap {
        margin-bottom: 24px;
        padding: 12px;
    }

    .barefoot-search-form,
    #barefootList {
        grid-template-columns: minmax(0, 1fr);
    }

    .barefoot-search-modal {
        padding: 10px;
        align-items: flex-start;
    }

    .barefoot-search-modal__dialog {
        width: 100%;
        margin: 0;
    }

    .barefoot-search-modal__header {
        padding: 17px 18px 14px;
    }

    .barefoot-search-modal__header h2 {
        font-size: 24px;
    }

    .barefoot-search-form--modal {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
        padding: 18px;
    }

    .barefoot-search-form--modal .barefoot-search-form__field--name,
    .barefoot-search-modal__checks,
    .barefoot-search-modal__actions {
        grid-column: 1;
    }

    .barefoot-search-modal__checks,
    .barefoot-search-modal__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .barefoot-search-modal__actions .barefoot-search-form__submit,
    .barefoot-search-modal__reset {
        width: 100%;
    }

    #barefootList,
    #barefootList > .rental-property-card,
    #barefootList .rental-property-card__inner {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .rental-property-card__stats {
        white-space: normal;
    }

    .rental-property-card__stats span {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    /* Google Maps otherwise gives the property popup its own horizontal and
     * vertical scroll area on narrow screens, clipping the bottom of the card. */
    #barefootMap .gm-style-iw-c {
        width: min(310px, calc(100vw - 32px)) !important;
        max-width: min(310px, calc(100vw - 32px)) !important;
        max-height: none !important;
        padding: 0 !important;
    }

    #barefootMap .gm-style-iw-d {
        width: 100% !important;
        max-width: 100% !important;
        max-height: none !important;
        overflow: visible !important;
    }

    #barefootMap .barefoot__map-search__map-item {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    #barefootMap.rental-search-results__map,
    body.admin-bar #barefootMap.rental-search-results__map {
        height: 360px;
        min-height: 360px;
    }

    .barefoot-pagination {
        align-items: stretch;
        flex-direction: column;
    }

    .barefoot-pagination__pages {
        justify-content: center;
    }

    .barefoot-pagination__summary {
        text-align: center;
    }

    .barefoot-pagination__button--previous,
    .barefoot-pagination__button--next {
        min-width: 40px;
        font-size: 0;
    }

    .barefoot-pagination__button--previous::before {
        content: "‹";
        font-size: 22px;
    }

    .barefoot-pagination__button--next::before {
        content: "›";
        font-size: 22px;
    }

    .flatpickr-calendar {
        width: 307.875px;
    }
}

/* Barefoot checkout. The shortcode is intentionally self-contained because
 * booking pages may use a theme that does not ship the old Barefoot Sass. */
.barefoot-booking-checkout {
    --bookit-ink: #003349;
    --bookit-text: #3e474c;
    --bookit-muted: #67737a;
    --bookit-border: #d8dfe2;
    --bookit-surface: #f3f5f5;
    --bookit-accent: #ff5959;
    --bookit-action: #fff200;
    box-sizing: border-box;
    width: min(100%, 1240px);
    margin: 32px auto 56px!important;
    padding: 0 24px;
    color: var(--bookit-text);
    font-family: "DM Sans", "Open Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
}

.barefoot-booking-checkout *,
.barefoot-booking-checkout *::before,
.barefoot-booking-checkout *::after {
    box-sizing: border-box;
}

.barefoot-booking-checkout .bookit__season-closed {
    max-width: 760px;
    margin: 32px auto;
    padding: clamp(24px, 4vw, 44px);
    border: 1px solid var(--bookit-border);
    border-radius: 4px;
    background: var(--bookit-surface);
    color: var(--bookit-ink);
    text-align: center;
}

.barefoot-booking-checkout .bookit__season-closed > :first-child {
    margin-top: 0;
}

.barefoot-booking-checkout .bookit__season-closed > :last-child {
    margin-bottom: 0;
}

.barefoot-booking-checkout h2,
.barefoot-booking-checkout h3 {
    color: var(--bookit-ink);
    font-family: inherit;
    font-weight: 700;
    line-height: 1.2;
}

.barefoot-booking-checkout h2 {
    margin: 34px 0 18px;
    font-size: clamp(25px, 3vw, 36px);
}

.barefoot-booking-checkout > h2:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 0;
}

.barefoot-booking-checkout h3 {
    margin: 0 0 16px;
    font-size: clamp(20px, 2vw, 25px);
}

.barefoot-booking-checkout p {
    color: inherit;
}

.barefoot-booking-checkout a {
    color: var(--bookit-ink);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.barefoot-booking-checkout .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}

.barefoot-booking-checkout .row > [class*="col-"] {
    width: 100%;
    min-width: 0;
    padding-right: 10px;
    padding-left: 10px;
}

.barefoot-booking-checkout .col-4 {
    width: 33.333333%;
}

.barefoot-booking-checkout .col-8 {
    width: 66.666667%;
}

.barefoot-booking-checkout .col-12 {
    width: 100%;
}

.barefoot-booking-checkout .form-group {
    min-width: 0;
    margin-bottom: 16px;
}

.barefoot-booking-checkout .form-control {
    display: block;
    width: 100%;
    max-width: 100%;
    min-height: 50px;
    margin: 0;
    padding: 11px 15px;
    border: 1px solid var(--bookit-border);
    border-radius: 2px;
    outline: 0;
    background-color: #fff;
    box-shadow: none;
    color: var(--bookit-text);
    font: inherit;
    line-height: 1.35;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.barefoot-booking-checkout select.form-control {
    padding-right: 44px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23003349' d='M1.41.59 6 5.17 10.59.59 12 2l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px 8px;
    cursor: pointer;
    appearance: none;
}

.barefoot-booking-checkout select.form-control::-ms-expand {
    display: none;
}

.barefoot-booking-checkout .form-control::placeholder {
    color: var(--bookit-muted);
    opacity: 1;
}

.barefoot-booking-checkout .form-control:hover {
    border-color: #aeb9be;
    background-color: #fbfcfc;
}

.barefoot-booking-checkout .form-control:focus {
    border-color: var(--bookit-ink);
    box-shadow: 0 0 0 3px rgba(255, 242, 0, .45);
    background-color: #fff;
}

.barefoot-booking-checkout input[type="checkbox"],
.barefoot-booking-checkout input[type="radio"] {
    width: 18px;
    height: 18px;
    margin: 0 8px 0 0;
    vertical-align: -3px;
    accent-color: var(--bookit-accent);
    cursor: pointer;
}

.barefoot-booking-checkout label {
    color: var(--bookit-text);
    cursor: pointer;
}

.barefoot-booking-checkout .bookit__sms-consent {
    display: flex;
    align-items: flex-start;
    margin: 10px 0 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

.barefoot-booking-checkout .bookit__sms-consent input[type="checkbox"] {
    flex: 0 0 18px;
    margin-top: 2px;
}

.barefoot-booking-checkout .option-group,
.barefoot-booking-checkout .radio {
    margin-top: 8px;
    margin-bottom: 8px;
}

.barefoot-booking-checkout .cc-expiration .d-flex {
    display: flex;
    gap: 8px;
}

.barefoot-booking-checkout #EzicPaytypeA .row > .form-group {
    flex: 1 1 220px;
    padding-right: 10px;
    padding-left: 10px;
}

.barefoot-booking-checkout #EzicPaytypeA select.form-control {
    width: 100% !important;
}

.barefoot-booking-checkout .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 22px;
    border: 1px solid transparent;
    border-radius: 2px;
    box-shadow: none;
    font: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.barefoot-booking-checkout .btn-sm {
    min-height: 42px;
    padding: 9px 18px;
}

.barefoot-booking-checkout .btn-primary {
    border-color: var(--bookit-ink);
    background: #fff;
    color: var(--bookit-ink);
}

.barefoot-booking-checkout .btn-secondary {
    border-color: var(--bookit-action);
    background: var(--bookit-action);
    color: #242424;
}

.barefoot-booking-checkout .btn:hover:not(:disabled),
.barefoot-booking-checkout .btn:focus-visible:not(:disabled) {
    border-color: var(--bookit-ink);
    background: var(--bookit-ink);
    color: #fff;
    transform: translateY(-1px);
}

.barefoot-booking-checkout .btn:disabled {
    opacity: .5;
    cursor: not-allowed;
}

.barefoot-booking-checkout .bookit__step-1__quote,
.barefoot-booking-checkout .bookit__step-1__options,
.barefoot-booking-checkout .bookit__details,
.barefoot-booking-checkout .bookit__step-4__quote,
.barefoot-booking-checkout .bookit__step-5__charges {
    height: 100%;
    padding: clamp(20px, 3vw, 34px);
    border-radius: 4px;
}

.barefoot-booking-checkout .bookit__step-1__quote,
.barefoot-booking-checkout .bookit__details,
.barefoot-booking-checkout .bookit__step-5__charges {
    border: 1px solid var(--bookit-border);
    background: var(--bookit-surface);
    color: var(--bookit-ink);
}

.barefoot-booking-checkout .bookit__step-1__quote .bookit__details,
.barefoot-booking-checkout .bookit__step-5__charges .bookit__details {
    padding: 0;
    border: 0;
    background: transparent;
}

.barefoot-booking-checkout .bookit__review-stack {
    display: flex;
    flex-direction: column;
}

.barefoot-booking-checkout .bookit__review-section {
    width: 100%;
    padding: 20px 0;
    border-top: 1px solid var(--bookit-border);



}

@media (max-width: 576px) {
    .barefoot-booking-checkout .bookit__review-section {
        border-top: none !important;
    }
}

.barefoot-booking-checkout .bookit__review-section:first-child {
    padding-top: 0;
    border-top: 0;
}

.barefoot-booking-checkout .bookit__review-section:last-child {
    padding-bottom: 0;
}

.barefoot-booking-checkout .bookit__step-1__options,
.barefoot-booking-checkout .bookit__step-4__quote {
    background: var(--bookit-ink);
    color: #fff;
}

.barefoot-booking-checkout .bookit__step-1__options h3,
.barefoot-booking-checkout .bookit__step-1__options label,
.barefoot-booking-checkout .bookit__step-1__options p,
.barefoot-booking-checkout .bookit__step-4__quote,
.barefoot-booking-checkout .bookit__step-4__quote strong {
    color: #fff;
}

.barefoot-booking-checkout .bookit__step-1__options .bookit__option-row td {
    vertical-align: middle;
}

.barefoot-booking-checkout .bookit__step-1__options .bookit__option-row label {
    display: inline-flex;
    align-items: center;
    margin: 0;
    line-height: 1.4;
}

.barefoot-booking-checkout .bookit__step-1__options .bookit__option-row input[type="checkbox"] {
    flex: 0 0 18px;
}

.barefoot-booking-checkout .bookit__step-1__options .bookit__option-row a {
    color: inherit;
}

.barefoot-booking-checkout .bookit__step-1__options .bookit__option-row a:hover,
.barefoot-booking-checkout .bookit__step-1__options .bookit__option-row a:focus-visible {
    color: var(--bookit-action);
}

.barefoot-booking-checkout .bookit__table {
    width: 100%;
    border: 0;
    border-collapse: collapse;
    color: inherit;
    font-size: 14px;
    line-height: 1.4;
}

.barefoot-booking-checkout .bookit__table td {
    padding: 6px 0;
    border: 0;
    vertical-align: top;
}

.barefoot-booking-checkout .bookit__table td:first-child {
    padding-right: 14px;
}

.barefoot-booking-checkout .bookit__step-4__quote-row .bookit__table,
.barefoot-booking-checkout .bookit__step-4__quote-row .bookit__table tbody {
    display: block;
}

.barefoot-booking-checkout .bookit__step-4__quote-row .bookit__table tr {
    display: flex;
    width: 100%;
    align-items: baseline;
}

.barefoot-booking-checkout .bookit__step-4__quote-row .bookit__table td:first-child {
    display: flex;
    width: auto;
    min-width: 0;
    flex: 1 1 auto;
    align-items: center;
    padding-right: 10px;
}

.barefoot-booking-checkout .bookit__step-4__quote-row .bookit__table td:last-child {
    width: auto;
    flex: 0 0 auto;
    white-space: nowrap;
}

.barefoot-booking-checkout .bookit__quote-leader {
    flex: 1 1 auto;
    margin: 0 10px;
    border-bottom: 1px dotted currentColor;
}

.barefoot-booking-checkout .bookit__table td[align="right"] {
    text-align: right;
}

.barefoot-booking-checkout .bookit__details .bookit__location-row td:first-child {
    width: 24%;
}

.barefoot-booking-checkout .bookit__details .bookit__location-row td:last-child {
    width: 76%;
    overflow-wrap: anywhere;
}

.barefoot-booking-checkout .bookit__damage-protection td {
    vertical-align: middle;
}

.barefoot-booking-checkout .bookit__damage-protection td:last-child {
    width: 62%;
    text-align: left;
}

.barefoot-booking-checkout .bookit__damage-protection select {
    width: 100%;
    max-width: 100%;
    margin: 0;
    text-align: left;
    min-height: 40px;
    padding-block: 0.5rem;
}

.barefoot-booking-checkout .bookit__table .disclaimer,
.barefoot-booking-checkout .bookit__table .options-details p {
    font-size: 12px;
    line-height: 1.5;
}

.barefoot-booking-checkout .bookit__table .options-details p {
    margin: 5px 0 16px;
    opacity: .88;
}

.barefoot-booking-checkout .bookit__step-4__image {
    height: 100%;
    min-height: 280px;
    overflow: hidden;
    border-radius: 4px;
    background: var(--bookit-surface);
}

.barefoot-booking-checkout .bookit__step-4__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.barefoot-booking-checkout .bookit__step-4__overview > [class*="col-"] {
    display: flex;
}

.barefoot-booking-checkout .bookit__step-4__details,
.barefoot-booking-checkout .bookit__step-4__details > .bookit__details,
.barefoot-booking-checkout .bookit__step-4__image,
.barefoot-booking-checkout .bookit__step-4__quote-row,
.barefoot-booking-checkout .bookit__step-4__quote-row > .bookit__step-4__quote {
    width: 100%;
}

.barefoot-booking-checkout .bookit__step-4__details > .bookit__details {
    height: 100%;
}

.barefoot-booking-checkout .bookit__step-4__customer,
.barefoot-booking-checkout .bookit__step-5__customer-review {
    padding: 24px 14px;
    border: 1px solid var(--bookit-border);
    border-radius: 4px;
    background: #fff;
}

.barefoot-booking-checkout .bookit__step-4__customer .bookit__table tr,
.barefoot-booking-checkout .bookit__step-5__customer-review .bookit__table tr {
    border-bottom: 1px solid #e8ecee;
}

.barefoot-booking-checkout .bookit__step-4__customer .bookit__table {
    line-height: 1.25;
}

.barefoot-booking-checkout .bookit__step-4__customer .bookit__table td {
    padding-top: 4px;
    padding-bottom: 4px;
}

.barefoot-booking-checkout .bookit__terms {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 20px;
    padding: 18px 20px;
    border: 1px solid var(--bookit-border);
    background: var(--bookit-surface);
}

.barefoot-booking-checkout .bookit__terms label {
    margin: 0;
}

.barefoot-booking-checkout .bookit__actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 18px;
}

.barefoot-booking-checkout .alert {
    margin: 0 0 20px;
    padding: 14px 18px;
    border: 1px solid transparent;
    border-radius: 3px;
    text-align: center;
}

.barefoot-booking-checkout .alert-danger,
.barefoot-booking-checkout .error {
    color: #a32323;
}

.barefoot-booking-checkout .alert-danger {
    border-color: #efb5b5;
    background: #fff0f0;
}

.barefoot-booking-checkout .alert-warning,
.barefoot-booking-checkout .alert-info {
    border-color: #e9dc81;
    background: #fffbe1;
    color: #544c0b;
}

.barefoot-booking-checkout .barefoot-payment-note {
    margin: 10px 0 0;
    padding: 10px 12px;
    text-align: left;
    font-size: 14px;
    line-height: 1.35;
}

.barefoot-booking-checkout .error {
    margin: 5px 0 0;
    font-size: 13px;
    line-height: 1.35;
}

.barefoot-booking-checkout .modal-content {
    overflow: hidden;
    border: 0;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 51, 73, .22);
}

.barefoot-booking-checkout .modal {
    display: none;
    position: fixed;
    top: var(--barefoot-fixed-offset, 0);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

.barefoot-booking-checkout .modal.show {
    display: block;
}

.barefoot-booking-checkout .modal-dialog {
    position: relative;
    width: auto;
    max-width: 720px;
    margin: 28px auto;
    pointer-events: none;
}

.barefoot-booking-checkout .modal-content {
    position: relative;
    display: flex;
    width: 100%;
    max-height: calc(100vh - var(--barefoot-fixed-offset, 0px) - 56px);
    flex-direction: column;
    pointer-events: auto;
}

.barefoot-booking-checkout .modal-body {
    overflow-y: auto;
}

.barefoot-booking-checkout .bookit__terms-highlight {
    margin-bottom: 20px;
    padding: 16px 20px;
    border-left: 4px solid #d5ad00;
    border-radius: 3px;
    background: #fff3b0;
    color: var(--bookit-text);
}

.barefoot-booking-checkout .bookit__terms-highlight > :last-child {
    margin-bottom: 0;
}

.barefoot-modal-backdrop {
    position: fixed;
    top: var(--barefoot-fixed-offset, 0);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background: rgba(0, 0, 0, .45);
}

body.barefoot-modal-open {
    overflow: hidden;
}

.barefoot-booking-checkout .modal-header,
.barefoot-booking-checkout .modal-body,
.barefoot-booking-checkout .modal-footer {
    padding: 20px 24px;
}

.barefoot-booking-checkout .modal-header {
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid var(--bookit-border);
}

.barefoot-booking-checkout .modal-title {
    color: var(--bookit-ink);
    font-size: 24px;
    font-weight: 700;
}

.barefoot-booking-checkout .modal-header .close {
    position: relative;
    order: 2;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin: 0 0 0 auto;
    padding: 0;
    float: none;
    border: 1px solid var(--bookit-border);
    border-radius: 50%;
    background: var(--bookit-surface);
    color: var(--bookit-ink);
    font-size: 0;
    line-height: 1;
    text-shadow: none;
    opacity: 1;
    appearance: none;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.barefoot-booking-checkout .modal-header .close::before,
.barefoot-booking-checkout .modal-header .close::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    content: "";
}

.barefoot-booking-checkout .modal-header .close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.barefoot-booking-checkout .modal-header .close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.barefoot-booking-checkout .modal-header .close:hover,
.barefoot-booking-checkout .modal-header .close:focus-visible {
    border-color: var(--bookit-ink);
    background: var(--bookit-ink);
    color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 242, 0, .45);
    outline: 0;
    transform: rotate(90deg);
}

@media (min-width: 576px) {
    .barefoot-booking-checkout .col-sm-6 {
        width: 50%;
    }
}

@media (min-width: 768px) {
    .barefoot-booking-checkout .col-md-4 {
        width: 33.333333%;
    }

    .barefoot-booking-checkout .col-md-6 {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .barefoot-booking-checkout .col-lg-4 {
        width: 33.333333%;
    }

    .barefoot-booking-checkout .col-lg-5 {
        width: 41.666667%;
    }

    .barefoot-booking-checkout .col-lg-7 {
        width: 58.333333%;
    }

    .barefoot-booking-checkout .col-lg-8 {
        width: 66.666667%;
    }

    .barefoot-booking-checkout .col-lg-10 {
        width: 83.333333%;
    }
}

@media (min-width: 1200px) {
    .barefoot-booking-checkout .col-xl-3 {
        width: 25%;
    }

    .barefoot-booking-checkout .col-xl-5 {
        width: 41.666667%;
    }

    .barefoot-booking-checkout .col-xl-7 {
        width: 58.333333%;
    }

    .barefoot-booking-checkout .col-xl-9 {
        width: 75%;
    }
}

@media (max-width: 767px) {
    .barefoot-booking-checkout {
        margin-top: 22px;
        padding: 0 16px;
    }

    .barefoot-booking-checkout > h2:first-child {
        align-items: flex-start;
        font-size: 28px;
    }

    .barefoot-booking-checkout .bookit__step-1__quote,
    .barefoot-booking-checkout .bookit__step-1__options,
    .barefoot-booking-checkout .bookit__details,
    .barefoot-booking-checkout .bookit__step-4__quote,
    .barefoot-booking-checkout .bookit__step-5__charges {
        padding: 20px;
    }

    .barefoot-booking-checkout .bookit__step-4__image {
        min-height: 230px;
    }
}

@media (max-width: 479px) {
    .barefoot-booking-checkout > h2:first-child {
        display: block;
    }

    .barefoot-booking-checkout > h2:first-child .btn {
        margin-top: 12px;
    }

    .barefoot-booking-checkout .bookit__table,
    .barefoot-booking-checkout .bookit__table tbody,
    .barefoot-booking-checkout .bookit__table tr,
    .barefoot-booking-checkout .bookit__table td {
        display: block;
        width: 100%;
    }

    .barefoot-booking-checkout .bookit__table tr {
        padding: 4px 0;
        border-bottom: 1px solid rgba(0, 51, 73, .12);
    }

    .barefoot-booking-checkout .bookit__table td,
    .barefoot-booking-checkout .bookit__table td:first-child,
    .barefoot-booking-checkout .bookit__table td[align="right"] {
        padding: 1px 0;
        text-align: left;
    }

    .barefoot-booking-checkout .bookit__table td:last-child{
        width: 100%;
    }


    .barefoot-booking-checkout .bookit__step-1__options .bookit__table tr {
        border-bottom-color: rgba(255, 255, 255, .2);
    }
}
