/* Helpers */

.flex-wrapper { display: flex }
.flex-wrapper.wrap { flex-wrap: wrap }
.align-center { align-items: center }
.click-disabled { pointer-events: none !important }
.multiply:before {
    content: 'x';
    padding-right: 5px;
    font-size: small;
}
.flickity-button:focus { box-shadow: none !important }


/* Sticky */

html, body { overflow: visible !important }
#header-space, #footer-outer { overflow-x: hidden }
#top { overflow-x: clip }


/* Mobile Elements */

#booking-cta-mobile,
#booking-container-mobile { display: none }


/* Page Wrapper */

#listing-page-guesty-wrapper {
    display: flex;
    padding: 0 2rem;
    max-width: 1500px;
    margin: 1rem auto 6rem;
}
#listing-page-guesty-wrapper .content-area {
    width: 70%;
    z-index: 1;
}
#listing-page-guesty-wrapper .sidebar-area {
    width: 30%;
    padding-left: 2rem;
    z-index: 2;
}
#listing-page-guesty-wrapper .sidebar-area .sticky-wrap {
    position: sticky;
    top: 3rem;
}


/* Listing Header */

#listing-header { margin-bottom: 2rem }
.header-ncr { margin: 2rem 1rem }
#listing-header .left {
    max-width: fit-content;
    margin-right: 4rem;
}
#listing-header h1 {
    font-size: 65px;
    font-weight: 500;
    line-height: 35px;
    margin-bottom: 0.5rem;
}
#listing-header .subtitle {
    font-family: var(--fontA);
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--colorB);
}
#listing-header .amenities {
    gap: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}
#listing-header .amenities::after {
    display: none;
}
#listing-header .amenities .highlight {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem;
    border: 1px solid var(--colorA);
    border-radius: 6px;
    background-color: var(--colorA);
    color: #fff;
}
#listing-header svg.icon {
    height: 24px;
    width: auto;
    fill: var(--colorB);
}
#listing-header .amenities .highlight .text {
    text-transform: uppercase;
    font-family: var(--fontA);
    font-weight: 400;
    font-size: 1rem;
    margin-left: 0.75rem;
    letter-spacing: 0.75px;
    line-height: 1;
    padding-top: 3px;
}


/* Info Tabs */

#info-tabs .tabs {
    display: flex;
    gap: 1rem;
    margin: 0 0 1rem;
}
#info-tabs .tab {
    background-color: #e7e7e7;
    border-radius: 6px;
    color: var(--colorA);
    display: inline-flex;
    font-family: var(--fontA);
    font-size: 1.25rem;
    font-weight: 500;
    padding: 0.75rem 2rem 0.6rem;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
#info-tabs .tab.active {
    color: #fff;
    background: var(--colorC);
}
#info-tabs .tab-info-container:not(.active) { display: none }
#info-tabs .tab-info-container.active {
    position: relative;
    display: block;
}
#info-tabs .carousel-container:not(.is-fullscreen) {
    height: 600px;
    position: relative;
    overflow: hidden !important;
    border-radius: 5px;
    border-top-left-radius: 0;
}
#info-tabs .tab-info-container:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    border-top-left-radius: 0;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    background: #f3f3f3;
    opacity: 1;
    transition: all 750ms ease;
}
#info-tabs .tab-info-container:after {
    content: "";
    display: block;
    width: 100%;
    height: 80px;
    background: url(/wp-content/uploads/2021/04/logo-v2@2x.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: calc(50% - 40px);
    z-index: 999;
    transition: all 750ms ease;
}
#info-tabs .tab-info-container.active:before,
#info-tabs .tab-info-container.active:after {
    display: none;
}
#info-tabs .tab-info-container.carousel-loaded:before,
#info-tabs .tab-info-container.carousel-loaded:after {
    opacity: 0;
    z-index: 0;
}
#info-tabs .flickity-enabled.is-fullscreen {
    padding: 0;
}
#info-tabs .tab-info-container .flickity-viewport { height: 100% !important }
#info-tabs .tab-info-container .photo {
    opacity: 0.25;
    margin-right: 1rem;
    height: 100%;
    width: auto;
    border-radius: 0px;
    transition: opacity 250ms ease, border-radius 250ms ease;
}
#info-tabs .tab-info-container .photo.is-selected { opacity: 1 }
#info-tabs .tab-info-container .photo.is-selected,
#info-tabs .tab-info-container .photo.is-selected + .photo { border-radius: 10px }
#info-tabs .tab-info-container .flickity-button {
    background: var(--colorC);
    color: #fff;
    border-radius: 5px !important;
    box-shadow: 4px 5px 20px -10px #333;
    z-index: 1 !important;
}
#info-tabs .tab-info-container .flickity-button.next {
    right: 0px;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
#info-tabs .tab-info-container .flickity-button.previous {
    left: 0px;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}
#info-tabs .flickity-prev-next-button .flickity-button-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    transform: translate(calc(-50% + 1px), -50%);
}
#info-tabs .flickity-prev-next-button.next .flickity-button-icon {
    transform: translate(calc(-50% - 1px), -50%);
}
#info-tabs .tab-info-container .thumbnail-nav-container {
    height: 100px;
    margin-top: 0.75rem;
    overflow: hidden !important;
}
#info-tabs .tab-info-container .thumbnail-nav-container .flickity-viewport { height: 100% !important }
#info-tabs .tab-info-container .thumbnail-nav-container .thumbnail-nav-item {
    height: 100% !important;
    border-radius: 5px;
    margin-right: 0.75rem;
    opacity: 0.5;
    transition: opacity 250ms ease;
}
#info-tabs .tab-info-container .thumbnail-nav-container .thumbnail-nav-item.is-nav-selected { opacity: 1 }
#info-tabs .tab-info-container .thumbnail-nav-container:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 175px;
    background: linear-gradient(270deg,rgba(255,255,255,1) 3%,rgba(255,255,255,0) 95%);
}

#youtube-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}
#youtube-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Gallery Fullscreen Lightbox */

.lightbox-open {
    height: 100% !important;
    overflow: hidden !important;
}
.lightbox-open #header-outer,
.lightbox-open #wpadminbar,
.lightbox-open .sidebar-area,
.lightbox-open .thumbnail-nav-container { z-index: 0 !important }
#info-tabs .tab-info-container .carousel-container.is-fullscreen:before {
    content: "";
    background: #000;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
}
#info-tabs .carousel-container.is-fullscreen .flickity-slider {
    display: flex;
    justify-content: center;
    align-items: center;
}
#info-tabs .tab-info-container.active .is-fullscreen .photo {
    display: block;
    height: 95%;
    max-height: 800px;
    margin-right: 1rem !important;
}


/* Details */

#detailed-info { margin: 4rem 0 }
#detailed-info .col { width: 50% }
#detailed-info h2 {
    font-size: 2.75rem;
    font-family: var(--fontA);
    font-weight: 500;
    margin-bottom: 1.5rem;
}
#detailed-info .col.left .sticky {
    position: sticky;
    top: 0.5rem;
}
.ncr-amenities { margin-bottom: 2rem }
#detailed-info .amenity {
    display: inline-flex;
    align-items: center;
    width: calc(50% - 1rem);
    padding: 1rem 1.5rem;
    background: var(--colorA);
    color: #fff;
    font-family: var(--fontA);
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0.5rem 1rem 0.5rem 0;
    border-radius: 5px;
}
#detailed-info .amenity svg.icon {
    width: 35px;
    height: auto;
    margin-right: 15px;
    fill: var(--colorB);
}
#detailed-info .right { text-align: unset }
#detailed-info .right ul,
.amenities-list-ncr  {
    margin-left: 0;
    column-count: 2;
}
#detailed-info .right ul li {
    font-size: 0.9rem;
    list-style-position: inside;
}

.amenity-button {
    color: #486d87;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}


/* Detailed Description */

#detailed-description { margin: 4rem 0 }
#detailed-description.col.right { margin: 0 }
#detailed-description h2 {
    font-size: 2.75rem;
    font-family: var(--fontA);
    font-weight: 500;
    margin-bottom: 1.5rem;
}
#detailed-description h3.subtitle {
    font-family: var(--fontB);
    font-size: 1.3rem;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
    color: var(--colorC);
    letter-spacing: -0.3px;
    margin-bottom: 1.5rem;
}
#detailed-description .expander {
    height: 200px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}
#detailed-description.col.right .expander { height: 350px }
#detailed-description .expander.open,
#detailed-description.col.right .expander.open {
    height: auto;
    overflow: visible;
}
#detailed-description .expander:after {
    content: "";
    display: block;
    width: 100%;
    height: 100px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}
#detailed-description .expander.open:after { opacity: 0 }
#detailed-description .expander p {
    max-width: 750px;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}
#detailed-description .expander-link {
    font-size: 1rem;
    font-weight: 600;
    text-decoration: underline;
}
#detailed-description .expander-link:hover { color: var(--colorC) }


/* Reviews */

#reviews {
    margin: 4rem 0;
    overflow: hidden;
    position: relative;
}
#reviews:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 225px;
    background: linear-gradient(270deg,rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
}
#reviews h2 {
    font-size: 2.75rem;
    font-family: var(--fontA);
    font-weight: 500;
    margin-bottom: 1.5rem;
}
#reviews .reviews-wrapper { position: relative }
#reviews .review {
    padding: 2rem;
    background: #f7f7f7;
    margin-right: 2rem;
    border-radius: 10px;
    width: 450px;
    border: 1px solid #dddddd;
}
#reviews .review blockquote {
    padding: 0;
    font-size: 1rem;
    line-height: 1.3;
    font-family: var(--bodyFont);
    letter-spacing: 0;
}
#reviews .review blockquote:before { border: none }
#reviews .review-author {
    font-family: var(--fontA);
    font-size: 1.75rem;
    font-weight: 400;
}
#reviews .review img.stars {
    height: 20px;
    margin-top: 0.5rem;
}
#reviews .reviews-wrapper button.flickity-button.previous {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    border: none;
    cursor: pointer;
    background: linear-gradient(90deg,rgba(255,255,255,1) 0%,rgba(255,255,255,0) 75%);
    opacity: 0;
    transform: unset;
    transition: 200ms ease;
    border-radius: unset;
    outline: none !important;
}
#reviews .reviews-wrapper button.flickity-button.previous:hover { opacity: 1 }
#reviews .reviews-wrapper button.flickity-button.previous svg {
    width: 25px;
    left: 0;
    top: 0;
    height: 100%;
    fill: var(--colorA);
}
#reviews .reviews-wrapper button.flickity-button.next {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    border: none;
    cursor: pointer;
    transform: unset;
    background: transparent;
    border-radius: unset;
    outline: none !important;
    z-index: 1;
}
#reviews .reviews-wrapper button.flickity-button.next svg {
    width: 25px;
    right: 0;
    top: 0;
    height: 100%;
    fill: var(--colorA);
}


/* General Rules */

#general-rules h2 {
    font-size: 2.75rem;
    font-family: var(--fontA);
    font-weight: 500;
    margin-bottom: 1.5rem;
}
#general-rules .rule {
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid #efefef;
    display: flex;
    align-items: center;
    height: 50px;
    margin-right: 1rem;
}
#general-rules .rule.bold { font-weight: 700 }
#general-rules .rule span {
    display: inline-flex;
    padding: 0.35rem 0.75rem 0.35rem 0.5rem;
    font-weight: 600;
    margin-right: 1rem;
    width: 115px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--colorA);
    border-radius: 6px;
    background-color: var(--colorA);
    color: #fff;
}
#general-rules .rule .icon {
    width: 18px;
    height: 18px;
    margin-right: 0.75rem;
    fill: var(--colorB);
}
#general-rules .right { text-align: unset }


/* Sidebar */

.view-counter {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.25;
}
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}
.view-counter strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
}
.view-counter .icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--colorB);
    fill: #fff;
    flex: 0 0 auto;
    padding: 6px;
    margin: 0 0.75rem 0 0;
}
.view-counter.updated .icon {
    animation: pulse 0.75s infinite;
}


/* Loader */

#booking-sidebar .loader-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 1000000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
}
.loader,
.loader:after {
    border-radius: 50%;
    width: 5em;
    height: 5em;
}
.loader {
    margin: 60px auto;
    font-size: 10px;
    position: relative;
    text-indent: -9999em;
    border-top: 0.6em solid rgba(215, 215, 215, 0.5);
    border-right: 0.6em solid rgba(215, 215, 215, 0.5);
    border-bottom: 0.6em solid rgba(215, 215, 215, 0.5);
    border-left: 0.6em solid #ffffff;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/* Loader - Waiting for booking to complete. */

#listing-page-guesty-wrapper.loading .sidebar-area {
    pointer-events: none;
    opacity: 0.5;
}
#listing-page-guesty-wrapper.loading .content-area::after {
    z-index: 2147483646;
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(204, 204, 204, 0.5);
    backdrop-filter: blur(1px);
}
#listing-page-guesty-wrapper.loading .content-area::before {
    z-index: 2147483647;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: 5px solid #f7f7f7;
    border-top-color: var(--colorB);
    -webkit-animation: loading 2s linear infinite;
    animation: loading 2s linear infinite;
}
@-webkit-keyframes loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* Search Overrides */

#guesty-search-wrapper {
    width: 100%;
    border-radius: 0 !important;
    box-shadow: none !important;
}
#guesty-search-fields {
    flex-wrap: wrap;
    border-radius: 0 !important;
    overflow: visible;
}
#guesty-search-fields .input-container {
    min-width: unset;
    padding: 0.75rem 1.25rem;
}
#guesty-search-fields .input-container.date-container {
    width: 50%;
    border: 1px solid var(--colorA);
}
#guesty-search-fields .input-container.date-container:after { display: none }
#guesty-search-fields .input-container.date-container:nth-child(1) {
    border-top-left-radius: 6px;
    border-right: 0;
}
#guesty-search-fields .input-container.date-container:nth-child(2) { border-top-right-radius: 6px }
#guesty-search-fields .input-container.guest-container {
    width: 100%;
    border: 1px solid var(--colorA) !important;
    border-top: none !important;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

/* Dates Validation */

.input-container.date-container.invalid-dates {
    color: #A62A23;
    border-color: #A62A23 !important;
}
#guesty-warning-message {
    position: relative;
    bottom: unset;
    margin-top: 0.5rem;
}


/* Search Calendar Overrides */

.litepicker {
    right: 0 !important;
    left: unset !important;
    transform: unset !important;
    top: 0 !important;
    border-radius: 16px;
}
.litepicker .container__months .month-item-header div > .month-item-year,
.litepicker .container__months .month-item-header div > .month-item-name {
    font-family: 'Titillium Web', sans-serif;
    font-weight: 600;
    font-size: 1.15rem !important;
    letter-spacing: -0.5px;
}
.litepicker .container__months .month-item-weekdays-row > div {
    color: var(--colorA);
    font-weight: 500;
}
.litepicker .container__days .day-item.is-today {
    background-color: var(--colorB);
    color: var(--litepicker-is-today-color);
}
.litepicker .container__days .day-item.is-today:after { display: none }
.litepicker .container__days > div,
.litepicker .container__days > a {
    padding: 5px 0;
    width: var(--litepicker-day-width);
    max-width: calc(100% / 7) !important;
}
.day-item:after {
    content: attr(data-price);
    display: block;
    font-size: 10px;
    line-height: 1;
    font-weight: 400;
}
.day-item.is-locked {
    background-color: #ededed;
    border-radius: 0 !important;
}
.day-item.is-locked:after { display: none }
.day-item.check-out:after { display: none }


/* Tooltip */

.has-tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
    cursor: pointer;
}
.has-tooltip .tooltip-text {
    visibility: hidden;
    background-color: #333;
    color: #fff;
    text-align: center;
    font-size: 14px !important;
    font-weight: 500;
    padding: 10px;
    border-radius: 6px;
    position: absolute;
    bottom: 130%;
    left: 0;
    z-index: 1;
    white-space: nowrap;
}
.has-tooltip .tooltip-text.tooltip-right {
    padding: 5px 10px !important;
    margin: 0;
    font-size: 0.75rem !important;
    bottom: -25%;
    left: calc(100% + 10px);
}
.has-tooltip:hover .tooltip-text { visibility: visible }
.has-tooltip .tooltip-text::after { /* Bottom Arrow */
    content: " ";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}
.has-tooltip .tooltip-text.tooltip-right:after { /* Left Arrow */
    left: unset;
    top: 50%;
    right: 100%;
    margin-left: 0;
    margin-top: -4px;
    border-color: transparent #333 transparent transparent;
}


/* Booking Sidebar */

#about .side-bar .wpb_wrapper .wpb_wrapper {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
}
#booking-sidebar {
    border-radius: 18px;
    padding: 1.5rem;
    background-color: #fff;
    position: relative;
    z-index: 9999 !important;
    border: 1px solid rgb(221, 221, 221);
    box-shadow: rgb(0 0 0 / 12%) 0px 6px 16px;
    flex: 1 0 auto;
    margin: 0;
}
#booking-sidebar h5 {
    text-align: center;
    font-size: 0.9rem;
    line-height: 1;
    margin: 0.75rem 0 2rem;
}
#booking-sidebar h5.select-guests-prompt,
#booking-sidebar h5.min-nights-prompt {
    color: #e73838;
    font-weight: 600;
    margin: 0.75rem 0 0;
}
#booking-calendar {
    display: flex;
    justify-content: center;
    margin: -1.5rem -1.5rem 0;
}
.booking-breakdown h3 {
    text-align: center;
    font-size: 2rem !important;
}
#booking-sidebar .coupon-removed-prompt {
    text-align: center;
    max-width: 300px;
    margin: 1.5rem auto;
    font-weight: 600;
    color: #e73838;
}
.booking-breakdown .line-item {
    font-size: 14px;
    margin: 0.75rem 0;
    display: flex;
    line-height: 1.15;
    font-weight: 600;
    justify-content: space-between;
    align-items: center;
}
.booking-breakdown .fee.coupon_applied[data-cell="rental-fee"] > span:before {
    content: '$'attr(data-original-price);
    color: #b5b5b5;
    margin-right: 5px;
    text-decoration: line-through;
    font-weight: 500;
}
.booking-breakdown .fee.coupon_applied[data-cell="rental-fee"] > span { color: var(--colorC) }
.booking-breakdown .line-item[data-cell="additional-guest-fee"] p {
    font-size: 1rem !important;
    font-weight: 600;
    color: var(--colorA);
    padding: 0 !important;
    line-height: 1 !important;
}
.booking-breakdown .line-item[data-cell="additional-guest-fee"] p small {
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25;
}
.booking-breakdown .expand-link {
    font-size: 14px;
    color: inherit !important;
}
.booking-breakdown .expand-link svg {
    width: 10px;
    height: auto;
    margin-left: 0.45rem;
    transition: all ease 300ms;
}
.expand-link svg.rotate { transform: rotate(180deg) }
.booking-breakdown [data-cell="total"] {
    font-size: 1.15rem !important;
    font-weight: bold;
    padding-top: 0.5rem;
    border-top: 1px solid var(--colorA);
    margin-bottom: 0 !important;
    height: unset;
}
.booking-breakdown [data-cell="total"] span {
    font-size: 1.15rem !important;
    font-weight: bold;
}
#booking-sidebar .close-btn { cursor: pointer }
#booking-sidebar .cta-btn,
#booking-cta-mobile .cta-btn {
    display: block;
    color: #fff;
    background-color: var(--colorB);
    line-height: 1;
    text-align: center;
    font-weight: 600;
    font-family: var(--fontB);
    font-size: 1.1rem;
    border-radius: 5px;
    margin: 1rem 0 0;
    transition: all 250ms ease;
    padding: 1rem;
    cursor: pointer;
}
#booking-sidebar .cta-btn:hover { background-color: var(--colorA) }
#booking-sidebar .search-btn.cta-btn {
    color: #fff !important;
    background-color: var(--colorA) !important;
}
#booking-sidebar .search-btn.cta-btn:hover {
    background-color: #bfbfbf !important;
    color: #fff !important;
}
#booking-sidebar .select-dates-prompt { margin: 0.75rem 0 0 }
#booking-sidebar .cfar-btn {
    background-color: #4F6F62;
    border: 1px solid var(--colorB);
}
#booking-sidebar .cfar-btn small {
    display: block;
    font-size: 80%;
    font-weight: 400;
    margin: 0.25rem 0 0;
}
.cta-btn.active {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23fff' d='M256 0C115.39 0 0 115.39 0 256s115.39 256 256 256 256-115.39 256-256S396.61 0 256 0Zm-30.98 372.44-112.1-112.1 42.42-42.42 71.65 71.65 143.83-130.75 40.37 44.38-186.17 169.25Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: 0.5rem 50%;
}
.cfar-tooltip {
    margin-top: .05rem;
    display: block;
    text-align: center;
    font-size: .85rem;
    text-decoration: underline;
    cursor: pointer;
}
svg.info-icon.visible-with-dates {
    transform: translateY(1px);
    margin-right: .2rem;
}
/* Sidebar - Details Accordions */

.booking-breakdown .details {
    margin: 0.75rem 0 1rem !important;
}
.booking-breakdown .details > div {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 13px;
    margin: 0 0 0.5rem 0;
    padding: 0 0 0 1.5rem;
    position: relative;
    line-height: 1;
    font-weight: 500;
}
.booking-breakdown .details > div:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    height: 1px;
    width: 0.75rem;
    background-color: var(--colorA);
    opacity: 0.25;
}
.booking-breakdown .details > div:last-child { margin-bottom: 0 }

#subtotal-line { pointer-events: none }
#subtotal-svg { display: none }


/* Sidebar - Addons */

.booking-breakdown .addon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0.75rem;
    margin: 0.75rem -0.75rem;
}
.booking-breakdown .addon p {
    font-size: 14px !important;
    font-weight: 600;
    color: var(--colorA);
    padding: 0 !important;
    line-height: 1 !important;
}
.line-item.addon .info-icon {
    width: 14px;
    height: auto !important;
    transform: translateY(3px);
    margin-left: 2px;
    fill: var(--colorA);
    cursor: pointer;
}
.booking-breakdown .addon p small {
    display: block;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    line-height: 1.25;
    padding-right: 1rem;
    margin: 0.25rem 0 0;
}
.booking-breakdown .addon p small #insurance-copy { font-size: 10px }
.booking-breakdown .addon p small span.has-tooltip {
    display: inline-block;
    border-bottom: 1px dotted black;
}
.booking-breakdown .addon .switch {
    display: inline-flex;
    margin: 0;
    align-items: center;
}
.switch:before {
    content: "Off";
    font-size: 12px;
    margin-right: 5px;
}
.switch:after {
    content: "On";
    font-size: 12px;
    margin-left: 5px;
}
.booking-breakdown .addon .switch input[type=checkbox] {
    height: 0;
    width: 0;
    visibility: hidden;
    margin: 0;
}
.booking-breakdown .addon .switch input[type=checkbox]:checked + label {
    background: var(--colorB);
}
.booking-breakdown .addon .switch input[type=checkbox]:checked + label::after {
    left: calc(100% - 2px);
    transform: translateX(-100%);
}
.booking-breakdown .addon .switch label {
    cursor: pointer;
    width: 36px;
    height: 20px;
    background: grey;
    display: block;
    border-radius: 24px;
    position: relative;
}
.booking-breakdown .addon .switch label::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 16px;
    transition: 0.3s;
}
.booking-breakdown .addon .data-input {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.booking-breakdown .addon .count {
    width: 30px;
    font-size: 1rem;
}
.booking-breakdown .addon .data-input .down,
.booking-breakdown .addon .data-input .up {
    background-color: var(--colorB);
    height: 20px;
    width: 20px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.booking-breakdown .addon .data-input svg {
    width: 10px;
    height: 10px;
    stroke-width: 3px;
}
.booking-breakdown .addon .data-input svg path { stroke: #fff !important }

/* .link-container {
    display: flex;
    flex-direction: column;
} */


/* Coupon Code */

#guesty-coupon-field .expand-link {
    font-size: 14px;
    margin: 1.5rem 0 0.75rem;
    line-height: 1.15;
    display: flex;
    justify-content: center;
    font-weight: 600;
    align-items: center;
    color: inherit !important;
}
#guesty-coupon-field .expand-link svg {
    width: 7px;
    height: auto;
    margin-left: 0.45rem;
    transition: all ease 300ms;
}
#coupon-form form {
    display: flex;
    margin: 1.5rem 0 0 0;
}
#coupon-form .coupon-input { text-transform: uppercase }
#coupon-form .coupon-input::placeholder { text-transform: none !important }
#coupon-form input[type="submit"] {
    margin-left: 1rem;
    border-radius: 4px !important;
    font-family: var(--fontB);
    font-size: 1rem;
    padding: 0 !important;
    width: 150px;
}
#guesty-coupon-field .coupon-form-message {
    font-size: 14px;
    padding-left: 10px;
    font-weight: 600;
    color: var(--colorB);
    margin-top: 6px;
    line-height: 1.3;
}


/* Information Modal - Cancellation/Trip */

body.modal-open {
    height: 100vh !important;
    overflow: hidden !important;
}
body.modal-open .modal-overlay,
body.modal-open .modal-wrapper {
    display: block !important;
}

#guesty-modal-wrapper {
    position: relative;
    z-index: 2147483647 !important;
}
#guesty-modal-wrapper .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
    opacity: 0.6;
}
#guesty-modal-wrapper .modal-wrapper {
    position: fixed;
    top: 25%;
    left: 25%;
    width: 50%;
    height: 50vh;
    background-color: #f7f7f7;
    border-radius: 12px;
    padding: 2rem 3rem;
}
#guesty-modal-wrapper .modal-wrapper[data-modal="trip-insurance"] { height: 350px }
#guesty-modal-wrapper .modal-wrapper .modal-content {
    display: none;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding-right: 1rem;
}
#guesty-modal-wrapper .modal-wrapper .modal-content.active-modal {
    display: flex;
    flex-direction: column;
    padding: 0;
    align-items: center;
    justify-content: center;
}
#guesty-modal-wrapper .modal-wrapper[data-modal="free-cancellation"] .modal-content {
    justify-content: flex-start;
    padding-right: 0.5rem;
}
#guesty-modal-wrapper .modal-wrapper .close-btn {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}
#guesty-modal-wrapper .modal-wrapper .close-btn:hover { background-color: #e5e5e5 }
#guesty-modal-wrapper .modal-wrapper .close-btn svg {
    width: 16px;
    height: 16px;
}
#guesty-modal-wrapper .modal-content h3 {
    font-size: 2.5rem;
    line-height: 1;
    text-align: center;
    padding: 0 !important;
}
#guesty-modal-wrapper .modal-content p {
    font-size: 1rem;
    line-height: 1.3;
    text-align: center;
    padding: 0;
    margin: 0 0 2rem;
}
#guesty-modal-wrapper .modal-content li {
    font-size: 0.9rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}
#guesty-modal-wrapper a {
    font-weight: 600;
}
#guesty-modal-wrapper .modal-content .button-link-wrapper {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
#guesty-modal-wrapper .modal-content .button-link {
    display: block;
    position: relative;
    font-size: 1rem;
    text-align: center;
    line-height: 1;
    font-family: var(--fontB);
    font-weight: 600;
    color: #fff;
    padding: 1rem 40px;
    background-color: var(--colorB);
    border-radius: 6px;
    border: 2px solid var(--colorB);
}
#guesty-modal-wrapper .modal-content .button-link:hover {
    border-color: var(--colorB) !important;
    color: var(--colorB) !important;
    background-color: transparent;
}


/* Booking Pane */

body.booking #booking-pane { display: block !important }
body.booking #listing-page-guesty-wrapper .content-area > div:not(#booking-pane) { display: none !important }
body.booking #booking-sidebar .cta-btn { display: none }


/* Booking Pane */

#booking-pane {
    z-index: 2147483640 !important;
    position: relative;
    background-color: #fff;
}
#booking-pane-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
    padding: 2rem 1rem 0 1rem;
}
#booking-pane .heading {
    display: flex;
    align-items: center;
    margin: 0 0 2.5rem;
}
#booking-pane .heading .close-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: #f7f7f7;
    border-radius: 50%;
    margin: 0 2rem 0 0;
}
#booking-pane .heading h3 {
    margin: 0 !important;
    font-family: var(--fontB);
    font-weight: 600;
    letter-spacing: -1.5px;
    font-size: 2.15rem;
}
#booking-pane-sidebar-container {
    position: sticky;
    top: 3rem;
    box-shadow: none;
}
#booking-pane-sidebar-container #booking-sidebar { width: 450px }


/* Booking Information Form */

#booking-information-form { padding: 0 }
#guesty-booking-information .form-body {
    gap: 2rem;
}
#guesty-booking-information .form-body,
#guesty-booking-information .form-body fieldset {
    display: flex;
    flex-wrap: wrap;
}
#guesty-booking-information .form-body .half {
    width: 50% !important;
    padding-right: 1rem !important;
}
#guesty-booking-information .form-body .full {
    width: 100%;
    padding-right: 1rem;
}
#guesty-booking-information .form-body label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    padding-bottom: 0.25rem !important;
}
#guesty-booking-information .form-body input:not([type="checkbox"])
 {
    border: 1px solid #e1e1e1;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
    line-height: 40px;
}
#guesty-booking-information .form-body input[type="checkbox"] {
	appearance: auto !important
}
#guesty-booking-information .form-body input:focus {
    box-shadow: none !important;
}
#guesty-booking-information .form-body select {
    height: 42px;
    background: #f6f6f6;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    box-shadow: none;
    font-family: var(--fontB);
    font-size: 0.85rem;
    padding: 0 0.5rem;
}
#guesty-booking-information .form-body fieldset { width: 100% }
#guesty-booking-information .form-body fieldset legend {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
#guesty-booking-information .form-body fieldset .wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
#guesty-booking-information .form-body fieldset label {
    font-weight: 300;
    font-size: 0.85rem;
}
#guesty-booking-information .form-body .checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
#booking-information-form input[type=submit] {
    display: block;
    font-family: var(--fontB);
    font-size: 1rem;
    border-radius: 5px !important;
    padding: 0.75rem 2.5rem !important;
    margin: 1.5rem auto !important;
}
#guesty-booking-information .form-body .checkbox input {
    margin: 0 !important;
    height: 24px;
}
#guesty-booking-information .form-body .checkbox label {
    font-weight: 300;
    font-size: 1rem;
    margin-left: 0.5rem;
}
#guesty-booking-information .form-body .checkbox a {
    font-weight: 600;
    color: var(--colorA);
    text-decoration: underline;
}
#guesty-booking-information .form-body .checkbox {
    padding-left: 1rem;
}
#guesty-booking-information .form-body .checkbox:last-child {
    margin-bottom: 1rem;
}
#terms-details {
    font-size: 0.8rem;
    line-height: 1.3;
    padding-left: 3rem;
    max-width: 800px;
    font-style: italic;
}
#terms-details a {
    color: var(--colorA);
    font-weight: 700;
    text-decoration: underline;
}
#booking-information-form .close-booking-form {
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
    padding: 10px;
}


/* Booking Information Validation */

#booking-information-form .failed_validation {
    outline: 2px solid #A62A23 !important;
    outline-offset: -1px;
}
#booking-information-form .failed_validation.ginput_complex { border-radius: 5px !important }
#rental_agreement_guesty.failed_validation { outline: none !important }
#rental_agreement_guesty.failed_validation + label,
#rental_agreement_guesty.failed_validation + label a {
    color: #A62A23 !important;
    font-weight: 600 !important;
}


/* Payment Form */

#booking-information-form h2.title {
    margin: 0 0 1rem !important;
    font-family: var(--fontB);
    font-weight: 600;
    letter-spacing: -1.5px;
    font-size: 2.15rem;
    line-height: 1;
}
#payment-options { padding-top: 2rem }
#payment-options .options {
    display: flex;
    align-items: center;
    gap: 1rem;
}
#payment-options .options .option {
    align-items: center;
    background-color: var(--colorB);
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    display: flex;
    flex: 0 0 auto;
    font-size: 1rem;
    font-weight: 600;
    height: 40px;
    justify-content: center;
    padding: 0 1.5rem;
    text-align: center;
    transition: 250ms ease all;
    width: calc(100% / 3);
}
#payment-options .options .option:hover,
#payment-options .options .option.active { background-color: var(--colorA) }
#payment-options .options .option[data-selection="Affirm"] {
    background-color: #494af5;
}
#payment-options .options .option.fake-btn {
    padding: 0;
    background-color: unset !important;
    color: unset !important;
}
.payment-method { margin-top: 2rem }
.__PrivateStripeElement {
    width: 100%;
}


/* Gift Card Form */

#gift-card-form { display: flex }
#gift-card-form input {
    border: 1px solid #e1e1e1;
    margin-bottom: 0.5rem;
    margin-right: 1rem;
    padding: 0 0.5rem;
    line-height: 45px;
    max-width: 500px;
}
#gift-card-form button {
    height: 47px;
    padding: 0 2rem !important;
    border-radius: 5px !important;
    border: 1px solid var(--colorB);
    font-family: var(--bodyFont);
    font-weight: 600;
}
.payment-method .message {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--colorB);
}
.payment-method .message.error { color: #c84e4e }


/* Gift Card Sidebar Elements */

#booking-sidebar .gift-card-line-item[data-cell="gift-card-applied"] {
    display: flex;
    font-size: 1rem;
    font-weight: 700;
    color: var(--colorB);
    margin: 0.25rem 0;
}
#gift-card-applied { border-bottom: 1px solid #333 }
#booking-sidebar .gift-card-line-item[data-cell="gift-card-applied"] .gift-card-code { margin-left: 5px }
#booking-sidebar .gift-card-line-item[data-cell="gift-card-applied"] .gift-card-amount { margin-left: auto }
#booking-sidebar .gift-card-line-item[data-cell="new-total"] {
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
}


/* Affirm Elements */

.payment-method[data-method="Affirm"] { display: flex }
.payment-method[data-method="Affirm"] .left {
    width: 35%;
    padding-top: 24px;
}
.payment-method[data-method="Affirm"] .left button {
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    cursor: pointer;
}
.payment-method[data-method="Affirm"] .right {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}



/* Credit Card Form */

#card-form { margin: 2rem 0 0 }
#card-element {
    border: 1px solid #d9d9d9;
    padding: 1rem;
    border-radius: 4px;
}
#card-errors {
    margin: 0.5rem 0 0;
    text-align: center;
    line-height: 1;
    font-size: 1rem;
    color: #a40000;
}
#card-form .secure-checkout.badge {
    padding: 1rem 1rem 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
}
#card-form .secure-checkout.badge span {
    font-size: 12px;
    margin-left: 0.75rem;
    color: #676767;
    font-weight: 500;
}
#card-form .secure-checkout svg {
    height: 18px;
    width: 18px;
}
#stripe-submit {
    cursor: pointer;
    display: block;
    color: #fff;
    background-color: var(--colorB);
    line-height: 1;
    text-align: center;
    font-weight: 600;
    font-family: var(--fontB);
    font-size: 1.1rem;
    border-radius: 5px;
    margin: 1rem 0 0;
    transition: all 250ms ease;
    padding: 1rem;
    letter-spacing: -0.5px;
}
#stripe-submit .loader {
    display: none;
    width: 1.25rem;
    height: 1.25rem;
    border-width: 3px;
    margin: 0 auto;
}
#stripe-submit.waiting span { display: none }
#stripe-submit.waiting {
    pointer-events: none !important;
    cursor: none !important;
}
#stripe-submit.waiting .loader {
    display: block;
    pointer-events: none !important;
    cursor: none !important;
}


/* Final Confirmation */

#final-confirmation {
    padding: 5rem 2rem;
    text-align: center;
}
#final-confirmation p.details {
    font-size: 1.25rem;
    text-align: center;
    font-weight: 500;
    max-width: 600px;
    line-height: 1.35;
    margin: 0 auto;
}
body.confirmed #payment-options,
body.confirmed .payment-method,
body.confirmed #guesty-booking-information,
body.confirmed #card-form,
body.confirmed #listing-page-guesty-wrapper .sidebar-area,
body.confirmed #booking-pane-left .heading {
    display: none;
}
body.confirmed #listing-page-guesty-wrapper .content-area {
    width: 100%;
}
body.confirmed #final-confirmation {
    display: block !important;
}


/* Mobile */

@media screen and (max-width: 768px) {

    /* Container */

    .container.main-content { max-width: unset }
    .wpb_row.full-width-content { margin-left: unset }
    .col.span_12 { margin: 0 !important }


    /* Booking Actions */

    body.viewing-details #header-outer,
    body.viewing-details #header-space,
    body.viewing-details #wpadminbar { z-index: 0 !important }

    /* Header */

    #listing-page-guesty-wrapper { flex-direction: column }
    #listing-page-guesty-wrapper .content-area {
        width: 84vw;
        display: flex;
        flex-direction: column;
    }
    #listing-header {
        flex-direction: column;
        padding: 0;
        order: -1;
        margin-bottom: -1rem;
    }
    #listing-header .left {
        max-width: unset;
        margin: 0 0 1rem !important;
    }
    .header-ncr { margin: 1.5rem 0 .5rem 0 }
    #listing-header.header-ncr { margin-bottom: 0 }
    #listing-header .left h1 {
        font-size: 3rem;
        margin: 0;
        padding-top: 1.5rem;
    }
    #listing-page-guesty-wrapper .col.right.amenities {
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        display: block;
        scrollbar-width: none;
    }
    .col.right.amenities::-webkit-scrollbar {
        display: none;
    }
    #listing-page-guesty-wrapper .col.right.amenities .highlight {
        width: calc(44% - 0.5rem);
        justify-content: center;
	      margin-right: 5px;
    }


    /* Tabs */
    #info-tabs { order: -2 }
    #info-tabs .tabs {
        display: flex;
        flex-direction: column;
    }

    #info-tabs .tabs .tab {
        width: 100%;
        border-radius: 5px;
        margin-bottom: 0.5rem;
    }
    #info-tabs .tab-info-container[data-info=photos] {
        height: 250px !important;
        margin-top: 1.5rem;
    }
    #info-tabs .carousel-container:not(.is-fullscreen) {
        height: 100%;
        border-top-left-radius: 5px;
     }
    #info-tabs .tab-info-container .photo {
        height: 100% !important;
        width: auto !important;
    }
    #info-tabs .tab-info-container .is-fullscreen .photo { height: auto !important }
    #info-tabs .tab-info-container .thumbnail-nav-container:after { width: 35px }
    #info-tabs .thumbnail-nav-container[data-info=photos] { display: none }



    /* Detailed Info */

    #detailed-info {
        flex-direction: column;
        margin: 2rem 0;
    }
    #detailed-info h2 { margin-bottom: 0.5rem }
    #detailed-info .col { width: 100% }
    #detailed-info .amenity {
        font-size: 1rem;
        line-height: 1;
        margin: 0.25rem;
        width: calc(50% - 0.5rem);
    }
    #detailed-info .amenity .icon { width: 25px }
    #detailed-info .col.right { margin-top: 2rem }
    #detailed-info .right ul{
        column-count: 1;
        margin-left: 1rem;
    }

    /* Reviews */
    #reviews {
        display: none;
    }

    #reviews:after { display: none }
    #reviews .reviews-wrapper {
        height: 250px;
    }
    #reviews .flickity-viewport {
        height: 100% !important;
    }

    /* Description */

    #detailed-description { margin: 0 }
    #detailed-description h3.subtitle {
        font-size: 1.25rem !important;
        margin-bottom: 1rem;
    }
    #detailed-description .expander-link {
        margin-bottom: 3rem !important;
        display: inline-block;
    }


    /* Rules */

    #general-rules { flex-direction: column }
    #general-rules .rule {
        padding: 1.5rem 0;
        font-size: 0.9rem;
    }
    #general-rules .right { margin-top: 2rem }
    #general-rules .right h2 {margin-bottom: 0 }


    /* Sticky Bottom Bar */

    #booking-cta-mobile {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #fff;
        border-top: 1px solid #dddddd;
        padding: 1rem;
        z-index: 2147483646;
    }
    #booking-cta-mobile .cta-btn { margin: 0 !important }
    #booking-cta-mobile .mobile-nightly-price span {
        font-size: 1.25rem;
        font-weight: 600;
    }
    #booking-cta-mobile .mobile-nightly-price small { font-size: 1rem }
    #booking-cta-mobile .mobile-dates {
        font-size: 1rem;
        text-decoration: underline;
        line-height: 1.2;
    }

    /* Sidebar */

    #listing-page-guesty-wrapper .sidebar-area {
    	z-index: 15;
	}
    #booking-sidebar .close-btn.mobile-only {
        display: block !important;
        position: relative;
        width: 20px;
        height: 20px;
        margin: 0 auto 1.5rem 0;
    }
    #booking-sidebar {
        display: none;
        position: fixed !important;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100%;
        border-radius: 0 !important;
        transition: 500ms ease all;
        z-index: 2147483647 !important;
        overflow: scroll;
    }

    body.confirmed #listing-page-guesty-wrapper .sidebar-area {
        display: block;
    }
    /* Search Overrides */

    #guesty-search-wrapper {
        padding: 0;
        margin: 0 0 1rem;
    }
    #guesty-search-fields { max-width: unset }
    #guesty-search-fields .guest-container {
        border-bottom-left-radius: 6px !important;
        border-bottom-right-radius: 6px !important;
    }
    #booking-sidebar #guesty-search-guests {
        transform: unset !important;
        width: 98%;
        margin: 1rem auto 0;
    }

    /* Calendar Overrides */

    .litepicker, .litepicker .container__months .month-item
    .month-item-weekdays-row { width: 100% }
    .litepicker .container__days .day-item { width: 100% }

    /* Viewing Details */

    body.viewing-details #ajax-content-wrap { padding-bottom: 0 !important }
    body.viewing-details #booking-cta-mobile { display: none !important }
    body.viewing-details #booking-pane { display: block !important }
    body.viewing-details #content { display: none }
    body.viewing-details #booking-sidebar { display: block }
    body.viewing-details #booking-pane-left { display: none }

    /* Booking */

    body.booking #ajax-content-wrap { padding-bottom: 0 !important }
    body.booking #header-space,
    body.booking #header-outer,
    body.booking #top-bar-mobile { display: none !important }
    body.booking #booking-cta-mobile { display: none !important }
    body.booking #booking-pane { display: block !important }
    body.booking #content { display: none }
    body.booking #booking-sidebar { display: block }
    body.booking #booking-sidebar .cta-btn { display: none }
    body.booking #booking-sidebar .checkout-information { display: none }
    body.booking #booking-sidebar .sidebar-wrap { display: none }
    body.calendar-open #booking-pane { display: none }
    body.calendar-open #booking-sidebar { display: block }


    /* Booking Information */

    #booking-pane-wrapper {
        flex-direction: column-reverse;
        padding: 0rem;
        margin-top: 1rem;
    }
    #booking-pane .heading .close-btn {
        margin: 0 1rem 0 0;
        width: 40px;
        height: 40px;
    }
    #booking-pane .heading h3 {
        font-size: 1.5rem !important;
        letter-spacing: -0.5px;
    }
    #booking-pane-sidebar-container {
        width: 100%;
        position: relative;
        top: unset;
        margin: 0 0 3rem;
    }
    body.booking #booking-pane-sidebar-container { display: none }
    #booking-pane #booking-sidebar {
        width: 100%;
        position: relative !important;
        top: unset !important;
        height: unset;
        left: unset;
        box-shadow: none;
        border: none;
        padding: 0;
        overflow: hidden;
    }
    #booking-information-form {
        padding: 0;
        margin-bottom: 12vh;
    }
    #booking-information-form .gfield.checkbox-container { padding: 0 !important }
    #gform_submit_button_4 {
        margin: 0 !important;
        width: 100% !important;
    }

    /* Modals */

    #guesty-modal-wrapper .modal-wrapper {
        left: 5%;
        top: 20%;
        width: 90%;
        height: 60vh !important;
    }
    #guesty-modal-wrapper .modal-content .button-link-wrapper {
        flex-direction: column;
    }
    #guesty-modal-wrapper .modal-content .button-link {
        width: auto;
        margin-bottom: 1.25rem;
    }

    /* Booking Form */

    #guesty-booking-information .form-body { flex-direction: column }
    #guesty-booking-information .form-body .input-wrapper { width: 100% !important }

    /* Gift Card */

    #gift-card-form { flex-direction: column }

    /* Payment form */

    #payment-options .options { flex-direction: column }
    #payment-options .options .option { width: 100% }


    /* Card Form */

    #card-form { padding: 0 }


    /* Affirm */

    #booking-information-form .payment-method[data-method="Affirm"] { flex-direction: column }
    #booking-information-form .payment-method[data-method="Affirm"] .left { width: 100% }


    /* Final Confirmation */

    #final-confirmation { padding: 0 }

}
