:root {
    --eshb-primary-color: #ab8965;
    --eshb-secondary-color: #fff5ed;
    --eshb-territory-color: #70533a;
    --eshb-success-color: #1ec734;
    --eshb-danger-color: #e41749;
    --eshb-dark-color: #181818;
    --eshb-text-color: #212529;
    --eshb-white-color: #fff;
    --eshb-border-color: #ab8965;

    --eshb-booked-bg-color: #bebcbb;
    --eshb-active-bg-color: var(--eshb-primary-color);
    --eshb-inrange-bg-color: var(--eshb-dark-color);

    --eshb-booked-color: var(--eshb-dark-color);
    --eshb-active-color: var(--eshb-white-color);
    --eshb-inrange-color: var(--eshb-white-color);

    --eshb-title-font: "Marcellus", Helvetica, Arial, sans-serif;
    --eshb-title-font-weight: "Marcellus", Helvetica, Arial, sans-serif;
    --eshb-body-font: "Jost", Helvetica, Arial, sans-serif;
}

@import 'carousel';
@import '../../includes/widgets/room-grid/css/room-grid';
@import '../../includes/widgets/room-slider/css/room-slider';

@font-face {
    font-family: "Jost";
    src: url('../fonts/Jost-VariableFont_wght.ttf');
}

@font-face {
    font-family: "Marcellus";
    src: url('../fonts/Marcellus-Regular.ttf');
}

.daterangepicker {

    /* Bootstrap Table Styles */
    &.dropdown-menu {
        z-index: 10000;
    }

    .calendar-table {
        border: none;
    }

    .daterangepicker_input {
        display: none;
    }

    .range_inputs {
        button {
            padding: 5px 20px;
            cursor: pointer;
            width: auto;

            &.applyBtn {
                background-color: var(--eshb-primary-color);
                border: 1px solid var(--eshb-primary-color);
                color: var(--eshb-white-color);

                &:hover {
                    background-color: transparent;
                    color: var(--eshb-text-color);
                    border: 1px solid var(--eshb-primary-color);
                }
            }

            &.cancelBtn {
                background-color: transparent;
                color: var(--eshb-text-color);
                border: 1px solid var(--eshb-primary-color);

                &:hover {
                    color: var(--eshb-white-color);
                    background-color: var(--eshb-primary-color);
                    border: 1px solid var(--eshb-primary-color);
                }
            }
        }

        &.disabled {
            button {
                background-color: gray;
                opacity: 0.4;
            }
        }
    }

    table {
        width: 100%;
        margin-bottom: 1rem;
        color: var(--eshb-text-color);
        border-collapse: collapse;
        border: none !important;
    }

    table th,
    table td {
        vertical-align: top;
        padding: 3px;
        background: transparent;
        border-radius: 0px !important;
    }

    th.available {
        &:hover {
            background-color: var(--eshb-active-bg-color) !important;
            color: var(--eshb-active-color) !important;
        }
    }

    thead:first-child tr:first-child th {
        border-block-start: unset;
    }

    table {
        tr {
            display: block;
            margin-top: 8px;
        }
    }

    td {
        text-decoration: none !important;
        border: none;

        &:hover {
            background-color: var(--eshb-active-bg-color) !important;
            color: var(--eshb-active-color) !important;
        }

        // Booked date styling
        &.booked-date {
            color: var(--eshb-booked-color) !important;
            background-color: var(--eshb-booked-bg-color) !important;

            &.active {
                color: var(--eshb-booked-color) !important;
                background-color: var(--eshb-booked-bg-color) !important;
            }

            &:hover {
                background-color: transparent;
            }


        }

        // Checked-in booked
        &.checked-in-date {
            background-image: linear-gradient(135deg, transparent 50%, var(--eshb-booked-bg-color) 50%);
            color: var(--eshb-booked-color) !important;
            font-style: italic;

            &.active,
            &:hover {
                background-color: var(--eshb-active-bg-color) !important;
                background-image: linear-gradient(135deg, transparent 50%, var(--eshb-booked-bg-color) 50%);
                color: var(--eshb-active-color) !important;
            }
        }

        // Checked-out date
        &.checked-out-date {
            background-image: linear-gradient(135deg, var(--eshb-booked-bg-color) 50%, transparent 50%);
            font-style: italic;
        }

        // Holiday styling
        &.holiday-date {
            color: rgb(255, 0, 0) !important;

            &:hover {
                background-color: transparent;
            }
        }

        &.start-date.active {
            background-color: var(--eshb-active-bg-color) !important;
            color: var(--eshb-active-color) !important;
        }

        &.end-date.active,
        &.end-date.active:hover {
            background-color: var(--eshb-active-bg-color) !important;
            color: var(--eshb-active-color) !important;
        }



        // Date range
        &.in-range {
            background-color: var(--eshb-inrange-bg-color) !important;
            color: var(--eshb-active-color) !important;
        }

        &.reserved-date,
        &.reserved-date.available {
            background-color: var(--eshb-reserved-bg-color) !important;
            color: var(--eshb-reserved-color) !important;
            cursor: not-allowed !important;
        }

        &.reserved-date:hover {
            background-color: var(--eshb-reserved-bg-color) !important;
            color: var(--eshb-reserved-color) !important;
        }
    }
}

.accomodation-gallery {
    .swiper-slide {
        overflow: hidden;
    }
}

.eshb-day-wise-pricing-table-container {
    margin-top: 60px;
    margin-bottom: 60px;

    @media (max-width: 767px) {
        padding-inline: 15px;
    }

    h3.eshb-day-wise-pricing-table-title {
        margin-bottom: 10px;
    }

    .eshb-day-wise-pricing-table-wrapper {
        overflow: auto;

        table {
            margin: 0;
        }

        &.style-one {
            background-color: #f6f6f6;
        }
    }
}

.single-eshb_accomodation {
    svg {
        width: 20px;
        height: auto;
    }
}

.eshb-details-page {
    width: 100%;
    clear: both;

    svg {
        width: 20px;
        height: auto;
    }

    .eshb-container {
        padding-top: 140px;
        padding-bottom: 140px;

        @media only screen and (max-width: 767px) {
            padding-top: 60px;
            padding-bottom: 60px;
        }
    }

    h3.eshb-day-wise-pricing-table-title {
        font-weight: 300;
    }

    .accomodation-video {
        position: relative;
        height: 0;
        overflow: hidden;
        max-width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;

        iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        &.eshb-self-hosted-video {
            @media only screen and (max-width: 767px) {
                height: auto !important;
            }
        }

        video {
            object-fit: cover;

            @media only screen and (max-width: 767px) {
                height: auto;
            }
        }
    }

    .gallery-wrapper {
        .wp-post-image {
            width: 100%;
        }
    }

    .basic-information-list {
        display: flex;
        align-items: center;
        column-gap: 1.5rem;
        flex-wrap: wrap;
        margin-bottom: 26px;

        .info {
            margin-bottom: 0;
            display: flex;
            align-items: center;
            gap: 4px;

            .info-icon {
                color: var(--eshb-primary-color);
                font-size: 18px;
            }

            img.info-icon {
                height: 18px;
            }
        }
    }

    .eshb-archive-wrapper {
        position: relative;

        &.related-accomodations {
            padding-top: 120px;
        }
    }

    &.eshb-disabled-booking {
        .eshb-container {
            .eshb-row {
                display: block;
            }

            #eshb-contents,
            #eshb-aside {
                width: 100% !important;
            }
        }

    }

    .eshb-check-in-out-times-area {
        margin-top: 40px;
        margin-bottom: 40px;

        .eshb-check-in-out-times-title {
            font-weight: 300;
            font-size: 26px;
            margin-bottom: 10px;
        }

        p {
            margin-bottom: 0;
        }
    }

    &.style-two {
        .contents-container {
            padding-top: 53px;
            padding-bottom: 100px;
        }

        h3.excerpt {
            font-weight: 300;
            padding: 40px 0;
        }

        .minimal-booking {

            .eshb-row {
                gap: 0;
            }

            .left-col {
                background-color: var(--eshb-primary-color);
                height: 138px;
                align-content: center;
                padding: 0 20px;

                h2 {
                    color: var(--eshb-white-color);
                }
            }

            .right-col {
                background-color: var(--eshb-territory-color);
                height: 138px;
                align-content: center;
                padding: 0 20px;

                .btn-main {
                    background-color: transparent;
                    border: solid 1px rgba(255, 255, 255, .35);
                    padding: 7px 25px;
                    color: var(--eshb-white-color);

                    &:hover {
                        color: var(--eshb-white-color);
                        box-shadow: 2px 2px 20px 0px rgba(29, 29, 31, 0.5);
                    }
                }
            }
        }

        .basic-information-list .info {
            flex: 0 0 auto;
            width: calc(25% - 1.56rem);

            @media (max-width: 767px) {
                width: auto;
                margin-bottom: 15px;
            }

            .info-icon {
                font-size: 40px;
            }

            .info-title {
                margin-left: 30px;
                font-weight: 500;
                color: var(--eshb-text-color);
            }
        }

        .related-accomodations {
            background: var(--eshb-secondary-color);
            padding: 80px 40px 130px 40px;

            .easy-hotel-heading {
                text-align: center;

                .easy-related-subtitle {
                    font-weight: 500;
                    color: var(--eshb-text-color);
                }

                margin-bottom: 30px;
            }
        }

        .accomodation-gallery {
            .swiper-slide {
                padding: 0 15px;
                overflow: hidden;
            }
        }

        .eshb-day-wise-pricing-table-container {
            margin-top: 70px;
            margin-bottom: 70px;
        }

    }
}



.justify-content-center {
    justify-content: center !important;
}

.eshb-row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x))
}

@media (min-width: 992px) {
    .eshb-col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
}

@media (min-width: 768px) {
    .eshb-col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

.eshb-text-center {
    text-align: center !important;
}

.eshb-text-light {
    color: #fff;
}

.eshb-p-4 {
    padding: 1.5rem !important;
}

.eshb-h-100 {
    height: 100% !important;
}

.eshb-mb-0 {
    margin-bottom: 0 !important;
}

nav.eshb-pagination {
    margin-top: 50px;

    @media (max-width: 1200px) {
        padding: 0 15px;
    }

    ul.pagination-list {
        display: flex;
        list-style: none;
        gap: 5px;
        margin: 0;
        padding: 0;

        li {

            a,
            span {
                background: var(--eshb-primary-color);
                color: var(--eshb-white-color);
                border-radius: 3px;
                padding: 12px 20px;
                text-decoration: none;

                &.current,
                &:hover {
                    background: var(--eshb-dark-color);
                }
            }
        }
    }
}

.no-customize-support {
    .eshb-container.eshb-archive-wrapper {
        padding-top: 0;
        padding-bottom: 0;
    }
}

.no-customize-support .eshb-container {
    max-width: 100%;
}

.eshb-container {
    max-width: 1200px;
    margin: auto;
    width: 100%;

    .eshb-row {
        display: flex;
        justify-content: space-between;
        gap: 40px;
        margin-left: 0;
        margin-right: 0;

        @media (max-width: 1024px) {
            flex-wrap: wrap;
        }
    }

    #eshb-contents {
        width: 58.33333333%;

        @media (max-width: 1200px) {
            padding: 0 15px;
        }

        @media (max-width: 1024px) {
            width: 100%;
            max-width: -webkit-fill-available
        }

        &.full-width {
            width: 100%;
        }
    }

    #eshb-aside {
        width: 41.66666667%;
        display: flex;
        justify-content: end;

        @media (max-width: 1200px) {
            padding: 0 15px;
        }

        @media (max-width: 1024px) {
            width: 100%;
        }

        &.full-width {
            width: 100%;
        }
    }
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 30%, 0);
        transform: translate3d(0, 30%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

/* de-number begin */
.de-number {
    margin-top: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.d-minus,
.d-plus {
    cursor: pointer;
    font-size: 24px;
    line-height: 24px;
    width: 36px;
    height: 36px;
    line-height: 32px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE 10 and IE 11 */
    user-select: none;
    /* Standard syntax */
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
}

.d-minus:active,
.d-plus:active {
    background: var(--eshb-white-color);
    color: #000;
}

.de-number input {
    width: 40px !important;
    text-align: center;
    font-size: 20px;
    border: none;
    padding: 3px !important;
    background: none;
    border: 1px solid;
}

.de-number .d-minus {
    position: relative;
    font-size: 0;

    &:before {
        content: "";
        position: absolute;
        left: 50%;
        height: 2px;
        background: currentColor;
        width: 10px;
        transform: translate(-50%, -50%);
        top: 50%;
        z-index: 999;
        opacity: 1;
    }
}

.eshb-search {
    width: 100%;

    .eshb-search-form {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;

        .eshb-form-group {
            flex: 0 0 auto;
            width: 25%;
            text-align: center;

            .innner-group {
                display: flex;
                align-items: center;

                .eshb-form-group {
                    width: 100%;
                }
            }

            @media (max-width: 767px) {
                width: 100% !important;
            }

            &.form-title-wrapper {
                text-align: left !important;
                display: none;
            }
        }

        @media (max-width: 767px) {
            flex-wrap: wrap;
            flex-direction: column;
            row-gap: 20px;
        }

        .eshb-form-submit-btn {
            margin-top: 40px;
        }

        &.eshb-has-calendar-icon {
            .date-pickers-wrapper {

                input,
                textarea {
                    padding: 10px 40px 10px 10px;
                }
            }


            .eshb-input-wrapper {
                position: relative;
            }

            .eshb-calendar-icon {
                position: absolute;
                top: 48%;
                right: 50px;
                transform: translateY(-50%);
                cursor: pointer;
                color: var(--eshb-white-color);

                @media (max-width: 991px) {
                    right: 10px;
                }

                @media (max-width: 767px) {
                    right: 40%;
                }
            }
        }

    }

    background-color: var(--eshb-dark-color);

    .eshb-search-form {
        .submition-wrapper {
            .eshb-form-submit-btn {
                display: inline-block;
                font-family: var(--eshb-body-font);
                text-align: center;
                color: var(--eshb-white-color);
                outline: 0;
                font-weight: 500;
                text-transform: uppercase;
                text-decoration: none;
                padding: 8px 20px;
                font-size: 12px;
                letter-spacing: 2px;
                border: none;
                border-radius: 0;
                background: var(--eshb-primary-color);
                margin-top: 0;
                line-height: 1.7em;
                width: auto;
                cursor: pointer;
            }
        }

        .eshb-form-group {
            width: auto;
            padding: 30px 0;

            @media (max-width: 767px) {
                padding: 10px 0;
            }

            &.dates-wrapper {
                width: 37%;
                display: flex;
                align-items: center;

                .eshb-form-group {
                    width: 50%;
                    padding: 0;

                    @media (max-width: 767px) {
                        padding: 5px 0;
                    }
                }

                @media (max-width: 767px) {
                    flex-direction: column;
                }
            }

            &.submition-wrapper {
                width: 23%;
            }

            .field-label {
                font-family: var(--eshb-title-font);
                font-size: 14px;
                margin: 0;
                margin-bottom: .25rem;
                color: var(--eshb-primary-color);
                font-weight: var(--eshb-title-font-weight);
            }

            .form-control {
                margin-bottom: 0;
                padding: .375rem .75rem;
                font-size: 20px;
                font-weight: 400;
                line-height: 1.5;
                background-clip: padding-box;
                border: none;
                appearance: none;
                transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
                background: none;
                color: var(--eshb-white-color);
                text-align: center;
                max-width: -webkit-fill-available;

                &:focus {
                    outline: none;
                    box-shadow: none;
                }
            }

            .d-minus,
            .d-plus {
                background: var(--eshb-primary-color);
                color: var(--eshb-white-color);
            }

            .de-number {
                input {
                    color: var(--eshb-white-color);
                    border: none;
                    display: inline-block;
                    margin-bottom: 0;
                }

            }
        }

        p.err-msg {
            color: red;
            display: none;
            width: 100%;
            text-align: center;
        }
    }

}

.archive-search-warpper {
    margin-bottom: 50px;
}

.eshb-item-grid {
    width: 100%;
    display: grid;
    gap: 20px;
    font-family: var(--eshb-body-font);

    @media (max-width: 1199px) {
        padding: 0 15px;
    }

    @media (max-width: 767px) {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .col-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    @media (min-width: 992px) {
        .col-lg-6 {
            flex: 0 0 auto;
            width: 50% !important;
        }
    }

    @media (min-width: 992px) {
        .pe-lg-5 {
            padding-right: 3rem !important;
        }
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%;
    }


    .container {
        max-width: 1200px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: auto;
    }

    .grid-item {
        position: relative;

        .overflow-hidden {
            overflow: hidden;
        }

        .item-inner {
            background-size: cover;
            background-repeat: no-repeat;
            visibility: visible;
            animation-name: fadeInUp;
            animation-duration: .8s;
            animation-fill-mode: both;
            transition: .5s;
            outline: none;
            overflow: hidden;

            .accomodation-rating {
                display: flex;
                justify-content: center;
                align-items: center;

                .eshb-star-rating {
                    font-size: 16px;
                }
            }

            .thumbnail {
                max-width: 100%;
                height: auto;
                width: -webkit-fill-available;
            }

            .pricing-info {
                opacity: 0;
                z-index: 4;
                margin-top: 40px;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                transition: .5s;
                position: absolute;
                color: var(--eshb-white-color);
                text-align: center;

                .label {
                    font-size: 14px;
                    margin-bottom: 10px;
                }

                .price {
                    font-size: 40px;
                    line-height: 1;
                    margin-bottom: 1.5rem;
                    margin-top: 0;
                    color: var(--eshb-white-color);
                    display: flex;
                    align-items: end;
                    width: max-content;
                    margin-inline: auto;
                }

                .details-btn {
                    color: var(--eshb-white-color);
                    border: solid 1px rgba(255, 255, 255, .35);
                    display: inline-block;
                    text-align: center;
                    outline: 0;
                    font-weight: 500;
                    text-transform: uppercase;
                    text-decoration: none;
                    padding: 0 20px;
                    font-size: 12px;
                    letter-spacing: 2px;
                    border-radius: 0;
                    min-height: 37px;
                    line-height: 37px;
                    font-family: var(--eshb-body-font);
                    width: max-content;
                }
            }

            .hover-bg-one {
                position: absolute;
                z-index: 2;
                opacity: 0;
                background: var(--eshb-primary-color);
                background-size: cover;
                background-repeat: no-repeat;
                height: 100% !important;
                width: 100% !important;
                top: 0 !important;
                transition: .5s;
            }

            .details-info {
                position: absolute;
                transition: .5s;
                z-index: 2;
                color: var(--eshb-white-color);
                opacity: 1;
                bottom: 0 !important;
                margin-bottom: 1rem;
                text-align: center !important;
                width: 100%;

                .title,
                .p-title {
                    margin-bottom: 0;
                    font-size: 26px;
                    line-height: 1.4em;
                    color: var(--eshb-white-color);
                }

                .capacities {
                    font-size: 14px;

                    .capacity {
                        margin-right: .5rem !important;
                        margin-left: .5rem !important;
                    }
                }
            }

            .hover-bg-two {
                position: absolute;
                background: linear-gradient(180deg, #ab896500 0%, var(--eshb-primary-color) 100%);
                height: 40%;
                width: 100% !important;
                background-size: cover;
                background-repeat: no-repeat;
                bottom: 0 !important;
                transition: .5s;
            }

            &:hover {
                .pricing-info {
                    margin-top: 0;
                    opacity: 1;
                }

                .hover-bg-one {
                    opacity: 1;
                }

                .details-info {
                    opacity: 0;
                }
            }
        }
    }
}

.eshb-price {
    del {
        margin-right: 10px;
    }
}

.eshb-booking {
    .eshb-booking-form {
        background-color: var(--eshb-white-color);
        padding: 35px 45px 35px;
        border: 1px solid var(--eshb-border-color);
        transition: opacity 0.3s;
        max-width: -webkit-fill-available;

        @media (max-width: 767px) {
            padding: 30px 15px;
            width: 100%;
            max-width: -webkit-fill-available;
        }

        h3 {
            font-size: 26px;

            &.field-label {
                margin-top: 0;
                margin-bottom: 20px;
            }
        }

        .label-checkbox,
        .eshb-time-slot {
            position: relative;
            display: flex;
            align-items: center;

            input[type="checkbox"],
            input[type="radio"] {
                position: absolute;
                top: 50%;
                left: 0;
                transform: translateY(-50%);
                opacity: 0;
                width: 17px;
                height: 17px;
                cursor: pointer;
            }

            input[type="checkbox"]:checked+.eshb-styled-checkbox:after,
            input[type="radio"]:checked+.eshb-styled-checkbox:after {
                opacity: 1;
            }

            .eshb-styled-checkbox {
                position: relative;
                width: 17px;
                min-width: 17px;
                height: 17px;
                border: 1px solid var(--eshb-primary-color);
                pointer-events: none;
            }

            .eshb-styled-checkbox:after {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                display: block;
                width: 8px;
                height: 8px;
                background: var(--eshb-primary-color);
                content: "";
                opacity: 0;
            }
        }

        .form-control {
            background-color: transparent;
            display: block;
            width: 100%;
            max-width: -webkit-fill-available;
        }

        .form-control:focus {
            background-color: transparent;
        }

        .eshb-error-input {
            border-color: red !important;
        }

        .eshb-form-groups {
            display: grid;
            margin: 10px 0;
            grid-template-columns: repeat(2, 1fr);
            column-gap: 10px;
            justify-content: center;

            .eshb-form-group {
                text-align: center;
                padding: 10px;

                .booking-date-picker {
                    margin-bottom: 0;
                    position: relative;
                    z-index: 2;
                    cursor: pointer;
                }
            }

        }

        .time-slots-wrapper {
            display: contents;

            .field-label {
                display: none;
                text-align: center;
            }

            .eshb-form-group {
                display: contents;
            }

            &.has-time-slots {
                display: block;

                .field-label {
                    display: block;
                }

                .empty-slot-msg {
                    display: none;
                }
            }

            .eshb-form-group {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                flex-direction: column;
                align-items: center;
            }

            .eshb-time-slot {
                display: flex !important;
                margin: 0;

                .eshb-times {
                    display: flex;
                    align-items: center;
                    gap: 10px;

                    input {
                        padding: 0;
                        border: none;
                        line-height: normal;

                        &::-webkit-calendar-picker-indicator {

                            filter: brightness(0) invert(1);
                            cursor: pointer;
                            //background: url(../img/clock-icon.svg);

                        }
                    }
                }
            }

            .time-err-msg {
                text-align: center;
            }
        }

        .date-err-msg {
            padding: 10px;
            margin-bottom: 0 !important;
            text-align: center;
        }

        p.err-msg {
            color: red;
        }

        .eshb-form-group {
            margin-bottom: 20px;
            position: relative;

            p.capacity-status {
                margin: 8px 0 0 0;
                font-size: 13px;
            }

            .d-minus,
            .d-plus {
                background-color: var(--eshb-primary-color);
                border-color: var(--eshb-primary-color);
                color: var(--eshb-white-color);
            }

            .de-number {
                input {
                    border: none;
                    outline: none;
                    background: none;
                    margin-bottom: 0;
                }
            }

            label {
                color: var(--eshb-dark-color);
                font-size: 14px;
            }

            .eshb-input-wrapper {
                position: relative;
            }

            input,
            textarea {
                border-radius: 0;
                padding: 10px 10px;
                border: 1px solid var(--eshb-primary-color);
                text-align: center;
            }

            h6.field-label {
                margin-top: 0;
                margin-bottom: 5px;
                font-size: 14px;
            }

            &.form-title-wrapper {
                display: flex;
                align-items: center;
                justify-content: space-between;
                margin-bottom: 20px;

                .form-title {
                    margin-top: 0;
                    margin-bottom: 0;
                }

                .pricing {
                    .base-price {
                        font-weight: 600;
                        font-size: 20px;
                        margin: 0;
                        display: inline-block;
                    }
                }
            }

            .eshb-form-submit-btn {
                background-color: var(--eshb-primary-color);
                border-color: var(--eshb-primary-color);
                color: var(--eshb-white-color);
                font-size: 14px;
                width: 100%;
                display: flex;
                justify-content: center;
                gap: 20px;
                align-items: center;
                padding: 10px 20px;
                cursor: pointer;

                &:hover {
                    background-color: var(--eshb-dark-color);
                    border-color: var(--eshb-dark-color);
                }

                &:disabled {
                    opacity: 0.5;
                    cursor: not-allowed;
                }
            }

            &.extra-services-wrapper {
                margin-bottom: 20px;

                .service-list {
                    margin: 0;
                    padding: 0;
                    list-style: none;

                    .service-item {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        position: relative;
                        margin-bottom: 10px;

                        label {
                            display: flex;
                            align-items: center;
                            gap: 5px;
                            cursor: pointer;
                            font-weight: 400;

                            .service-name {
                                position: relative;
                                display: flex;
                                align-items: center;
                            }

                        }

                        .price-quantity {
                            display: flex;
                            align-items: center;
                            gap: 5px;

                            .price {
                                text-transform: capitalize;
                                font-size: 14px;
                            }

                            .service-quantity-selector {
                                &.show-dropdown {
                                    margin-left: 10px;
                                    text-align: center;
                                    display: flex;
                                    align-items: center;
                                    justify-content: space-around;
                                    border: 1px solid var(--eshb-border-color);
                                    padding: 15px 10px;
                                    position: absolute;
                                    background: var(--eshb-white-color);
                                    box-shadow: 0px 0px 2px 2px #bfbbbb21;
                                    width: 180px;
                                    right: 0;
                                    z-index: 2;
                                }

                                .de-number {
                                    margin-top: 0;
                                    display: flex;
                                    align-items: center;
                                    justify-content: space-around;
                                    width: 100%;

                                    .d-minus,
                                    .d-plus {
                                        display: none;
                                    }

                                    span.quantity-wrapper {
                                        display: flex;
                                        align-items: center;
                                        border: 1px solid var(--eshb-border-color);
                                    }

                                    input {
                                        border: none;
                                        outline: none;
                                        width: 25px;
                                        font-size: 17px;
                                        margin-bottom: 0;
                                        height: 20px;
                                    }
                                }

                                &.show-dropdown {
                                    position: absolute;

                                    &::before {
                                        content: '';
                                        position: absolute;
                                        top: 20px;
                                        right: -7px;
                                        border-top: 7px solid transparent;
                                        border-bottom: 7px solid transparent;
                                        border-left: 7px solid var(--eshb-primary-color);
                                    }

                                    span.quantity-wrapper {
                                        border: none;
                                        gap: 10px;

                                        input {
                                            width: 50px;
                                        }

                                        .dropdown-arrow {
                                            display: none;
                                        }

                                    }

                                    .d-minus,
                                    .d-plus {
                                        display: inline-block;
                                    }
                                }
                            }
                        }
                    }
                }
            }

            &.cost-calculator-wrapper {
                .total-cost-label {
                    display: flex;
                    justify-content: space-between;

                    .eshb-booking-value {
                        display: inline;
                    }
                }

                .pricing-values {
                    display: none;
                }

                .eshb-booking-total-discounted-pricing {
                    display: none;
                    border-top: 1px dashed;
                    padding-top: 15px;
                }

                &.has-discounted-price {
                    .eshb-booking-total-pricing {
                        font-size: 16px;
                    }

                    .eshb-booking-total-discounted-pricing {
                        display: flex;
                        font-size: 26px;
                    }
                }
            }

            .staying-type-list {
                margin: 0;

                li {
                    list-style: none;

                    label {
                        display: flex;
                    }
                }
            }
        }

        &.eshb-has-calendar-icon {

            .date-pickers-wrapper {

                input,
                textarea {
                    padding: 10px 40px 10px 10px;
                    text-align: left;
                }
            }

            .eshb-calendar-icon {
                position: absolute;
                top: 50%;
                right: 13px;
                transform: translateY(-50%);
                cursor: pointer;
                font-size: 14px;
            }
        }

        .eshb-form-err {
            display: none;
            margin-bottom: 0;

            .status {
                line-height: 1.2;
                display: none;
                min-height: 52px;
                padding: 12px 22px 12px 0;
                color: var(--eshb-text-color);
                align-items: center;
                gap: 7px;

                .status-icon {
                    height: 25px;
                    width: 25px;
                    padding: 7px;
                    border-radius: 50%;
                    background: var(--eshb-white-color);
                    display: flex;
                    align-items: center;
                    justify-content: center;

                    img {
                        height: 16px;
                        width: auto;
                    }
                }
            }


        }

        .eshb-booking-form-customer-details {
            border-top: 1px solid var(--eshb-border-color);
            padding-top: 20px;

            .eshb-booking-form-customer-details-col {
                display: flex;
                gap: 30px;

                .eshb-form-group {
                    width: 50%;
                    gap: 20px;
                    display: flex;
                    flex-direction: column;

                    input,
                    textarea {
                        border: 1px solid var(--eshb-border-color);
                        text-align: start;
                    }

                    textarea {
                        height: calc(100% - 20px);
                    }
                }
            }
        }

        &.style-two {
            background-color: var(--eshb-dark-color);
            color: var(--eshb-white-color);

            .eshb-form-group {

                h3,
                h4,
                h5,
                h6,
                input,
                textarea {
                    color: var(--eshb-white-color);
                }
            }

            .eshb-form-groups {
                .eshb-form-group {
                    margin-bottom: 0;
                    padding: 10px;

                    .d-minus,
                    .d-plus {
                        width: 36px;
                        height: 36px;
                    }
                }
            }

            label {
                color: var(--eshb-white-color);
            }

            .eshb-form-group {
                margin-bottom: 20px;

                .de-number {
                    input {
                        color: var(--eshb-white-color);
                    }
                }

                #booking-date-picker {
                    background: transparent;
                    border: 1px solid var(--eshb-white-color);
                }

                h6.field-label {
                    margin-bottom: 5px;
                }

                &.form-title-wrapper {
                    .form-title {
                        margin-bottom: 0;
                    }

                    .pricing {
                        padding: 0;

                        .base-price {
                            font-weight: 600;
                            font-size: 20px;
                            margin: 0;
                            display: inline-block;
                        }
                    }
                }

                .eshb-form-submit-btn {
                    text-transform: uppercase;

                    &:hover {
                        background-color: var(--eshb-primary-color);
                        border-color: var(--eshb-primary-color);
                    }
                }

                &.extra-services-wrapper {
                    margin-top: 20px;
                    margin-bottom: 25px;

                    .service-list {
                        .service-item {
                            .price-quantity {
                                .price {
                                    color: var(--eshb-primary-color);
                                }

                                .service-quantity-selector {
                                    .de-number {
                                        margin-top: 0;
                                        display: flex;
                                        align-items: center;
                                        justify-content: space-around;

                                        .d-minus,
                                        .d-plus {
                                            padding: 3px 5px 3px 3px;
                                            display: none;
                                        }

                                        span.quantity-wrapper {
                                            display: flex;
                                            align-items: center;
                                            border: 1px solid var(--eshb-border-color);
                                        }

                                        input {
                                            border: none;
                                            outline: none;
                                            width: 25px;
                                            font-size: 17px;
                                            margin-bottom: 0;
                                        }
                                    }

                                    &.show-dropdown {
                                        background: var(--eshb-dark-color);

                                        .d-minus,
                                        .d-plus {
                                            display: inline;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }


            }

            .eshb-form-err {
                .status {
                    color: var(--eshb-white-color);
                }
            }
        }

        &[data-pricing-periodicity="per_hour"] {
            width: 100%;

            .date-pickers-wrapper {
                grid-template-columns: 100%;

                .end-date-pickers-wrapper {
                    display: none;
                }
            }
        }
    }
}

div#easy-hotel-booking-modal {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 9999;

    .easy-hotel-booking-overlay {
        position: fixed;
        z-index: 8888;
        width: 100%;
        height: 100%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        background: #00000096;
    }

    .easy-hotel-booking-modal-body {
        display: block;
        margin: auto;
        width: 600px;
        z-index: 9999;
        position: relative;
        background: var(--eshb-white-color);
        border-radius: 5px 5px 5px 5px;
        top: 60px;

        @media (max-width: 567px) {
            width: 90%;
        }

        .easy-hotel-booking-modal-content {
            border-radius: 5px 5px 5px 5px;
        }

        .easy-hotel-booking-modal-closer {
            position: absolute;
            right: -10px;
            top: -10px;
            background: red;
            border: 1px solid #ededed;
            color: var(--eshb-white-color);
            cursor: pointer;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4px;
        }

        .eshb-booking .eshb-booking-form {
            width: auto;
            height: calc(100vh - 80px);
            overflow-y: auto;
        }
    }
}

.woocommerce-uses-block-theme {
    .eshb-checkout-cart-table {
        width: 100%;
        float: none;
        margin-right: 0;
        clear: none;
        margin-bottom: 24px;
    }
}

// cart blocking notice
#eshb-cart-block-notice {
    position: fixed;
    left: 0;
    right: 0;
    box-sizing: border-box;
    background-color: var(--eshb-primary-color);
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    z-index: 100000;
    font-size: 14px;
    font-weight: 600;

    &.eshb-cart-block-notice--inline {
        position: relative !important;
        border: none;

        &::before {
            display: none;
        }
    }
}

// Calendar Legend
.eshb-calendar-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding: 10px 0;
    margin-bottom: 8px;

    .eshb-legend-item {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 12px;
        color: inherit;
    }

    .eshb-legend-swatch {
        display: inline-block;
        width: 18px;
        height: 18px;
        border-radius: 3px;
        border: 1px solid rgba(0, 0, 0, 0.15);
        flex-shrink: 0;

        &.eshb-legend-available {
            background-color: #fff;
        }

        &.eshb-legend-selected {
            background-color: var(--eshb-active-bg-color, #ab8965);
            border-color: var(--eshb-active-bg-color, #ab8965);
        }

        &.eshb-legend-inrange {
            background-color: var(--eshb-inrange-bg-color, #181818);
            border-color: var(--eshb-inrange-bg-color, #181818);
        }

        &.eshb-legend-booked {
            background-color: var(--eshb-booked-bg-color, #bebcbb);
            border-color: var(--eshb-booked-bg-color, #bebcbb);
        }

        &.eshb-legend-checkin {
            background-image: linear-gradient(135deg, transparent 50%, var(--eshb-booked-bg-color, #bebcbb) 50%);
        }

        &.eshb-legend-checkout {
            background-image: linear-gradient(135deg, var(--eshb-booked-bg-color, #bebcbb) 50%, transparent 50%);
        }

        &.eshb-legend-holiday {
            background-color: #fff;
            border-color: rgb(255, 0, 0);
            box-shadow: inset 0 0 0 2px rgba(255, 0, 0, 0.25);
        }

        &.eshb-legend-reserved {
            background-color: var(--eshb-territory-color, #720eec);
            border-color: var(--eshb-territory-color, #720eec);
        }
    }
}

.eshb-availability-calendars-area {
    margin-top: 40px;
    z-index: 2;
    position: relative;

    @media (max-width: 567px) {
        margin-bottom: 200px;
    }

    .calendar-title {
        font-weight: 300;
        font-size: 26px;
        margin-bottom: 30px;
    }

    .eshb-availability-calendars {
        position: relative;

        @media (max-width: 1024px) {
            height: 580px;
        }

        @media (max-width: 768px) {
            height: 650px;

            .daterangepicker.show-calendar {
                width: 100%;
                max-width: -webkit-fill-available;
            }
        }

        .daterangepicker.show-calendar {
            display: block !important;
            position: relative;
            left: 0 !important;
            top: 0 !important;
            width: max-content;
        }

        .ranges {
            display: block;
        }
    }

    .eshb-availability-calendars-err {
        color: var(--eshb-danger-color);
    }

    .eshb-calendar-msg {
        margin-bottom: 0;
    }
}

.elementor-widget-container {
    .eshb-availability-calendars-area {
        margin-top: 0;

        .daterangepicker {
            width: 100%;

            .calendar {
                width: 49%;

                @media (max-width: 576px) {
                    width: auto;
                }
            }
        }
    }
}

.related-accomodations {
    .easy-hotel-heading {
        text-align: center;

        .easy-related-subtitle {
            font-weight: 500;
            color: var(--eshb-text-color);
        }

        margin-bottom: 30px;
    }

    .grid-item .item-inner {
        line-height: 0;

        .details-info {
            line-height: 1.7;
        }
    }

    .eshb-item-grid .grid-item .item-inner .pricing-info {
        line-height: 1.7;
    }

    .nav-btn {
        display: none;
    }
}

.eshb-single-title {
    margin-top: 0;
    font-size: 52px;
    margin-bottom: 20px;
    line-height: 1.1em;
}

body.woocommerce-cart {
    li.wc-block-components-product-details__save {
        border: 1px solid;
        border-radius: 4px;
        display: inline-block;
        font-size: .75em;
        font-weight: 600;
        padding: 0 .66em;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .wp-block-product-new {

        .wc-block-grid__product-price.price,
        .wp-block-button {
            display: none;
        }
    }

    .wc-block-cart-item__quantity .wc-block-components-quantity-selector {
        display: none;
    }

    table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__wrap>* {
        margin-bottom: 5px;
    }
}

a.wc-block-components-button.wp-element-button,
.woocommerce-checkout .place-order .button {
    background: var(--eshb-primary-color);
    color: var(--eshb-white-color);
}

@media (min-width: 922px) {

    .woocommerce.woocommerce-checkout form #customer_details.col2-set,
    .woocommerce-page.woocommerce-checkout form #customer_details.col2-set {
        width: 100% !important;
        float: none;
        margin-right: 0;
    }
}

@media (min-width: 922px) {

    .woocommerce.woocommerce-checkout form #order_review,
    .woocommerce.woocommerce-checkout form #order_review_heading,
    .woocommerce-page.woocommerce-checkout form #order_review,
    .woocommerce-page.woocommerce-checkout form #order_review_heading {
        width: 100% !important;
        float: none;
        margin-right: 0;
        clear: right;
    }
}

// custom css for checkout page

.woocommerce-checkout {

    h1,
    h2,
    h3 {
        color: var(--eshb-dark-color);
        font-weight: 600;
        margin-bottom: 10px;
    }

    h3 {
        font-size: 20px;
        border: none !important;
        padding-bottom: 10px !important;
    }

    .woocommerce-form-coupon-toggle {
        display: none;
    }

    form.checkout {
        display: grid;


        .eshb-checkout-cart-table {
            border: 1px solid var(--eshb-border-color) !important;
            border-radius: 12px !important;
            padding: 20px;
            margin-bottom: 45px;

            table {
                border: none;
            }

            tr {
                td {
                    border-right: none;

                    &:nth-child(3) {
                        text-align: right !important;
                        padding-right: 0 !important;
                    }
                }
            }


            thead {
                th {
                    padding: 10px 0px !important;

                    &:nth-child(3) {
                        text-align: right !important;
                        padding-right: 0 !important;
                    }
                }
            }
        }

        // Left + Right Sections
        .col2-set,
        #order_review {
            background: var(--eshb-white-color);
            border: 1px solid var(--eshb-border-color) !important;
            border-radius: 12px !important;
            padding: 20px !important;
            margin-bottom: 45px;

            .col-1,
            .col-2 {
                width: 100%;
            }
        }

        // FORM FIELDS
        .form-row {
            margin-bottom: 16px;

            label {
                display: block;
                font-size: 13px;
                color: var(--eshb-text-color);
                margin-bottom: 6px;
            }

            input,
            select,
            .select2-container .select2-selection--single,
            textarea {
                width: 100%;
                padding: 12px 14px;
                border: 1px solid var(--eshb-border-color);
                border-radius: 10px;
                background: var(--eshb-white-color);
                color: var(--eshb-text-color);
                transition: all 0.25s ease;

                &:focus {
                    border-color: var(--eshb-primary-color);
                    box-shadow: 0 0 0 2px rgba(171, 137, 101, 0.15);
                    outline: none;
                }
            }
        }

        // ORDER TABLE
        table.shop_table {
            width: 100%;
            border-collapse: collapse;
            border: none;

            thead {
                th {
                    text-align: left;
                    font-size: 13px;
                    color: var(--eshb-territory-color);
                    padding-bottom: 10px;
                    border: none;
                    border-bottom: 1px solid var(--eshb-border-color);
                    background: transparent;

                    &.eshb-product-quantity {
                        text-align: right !important;
                    }

                    &:last-child {
                        text-align: right;
                        padding-right: 0 !important;
                    }
                }
            }

            tbody {
                tr {
                    td {
                        padding: 12px 0;
                        border: none;
                        border-bottom: 1px solid var(--eshb-border-color);
                        font-size: 14px;
                        color: var(--eshb-text-color);
                        background: transparent;

                        &:last-child {
                            text-align: right !important;
                            padding-right: 0 !important;
                        }

                        .eshb-cart-qty-input {
                            width: 60px !important;
                            padding: 4px 6px !important;
                            border: 1px solid #ccc !important;
                            border-radius: 3px !important;
                            text-align: center !important;
                            height: 30px;
                        }
                    }

                    &:last-child td {
                        border-bottom: none;
                    }

                    .product-name {
                        font-weight: 500;
                    }

                    .product-total {
                        text-align: right;
                        font-weight: 500;
                    }
                }
            }

            tfoot {
                tr {

                    td,
                    th {
                        padding: 10px 0;
                        font-size: 14px;
                        border-top: none;
                        border-left: none;
                        border-right: none;

                        &:nth-last-child(1) {
                            text-align: right;
                            padding-right: 0 !important;
                        }
                    }

                    &.order-total {
                        td {
                            font-size: 16px;
                            font-weight: 600;
                            color: var(--eshb-primary-color);
                        }
                    }
                }
            }
        }

        // PAYMENT METHODS
        #payment {
            background: transparent;
            margin-top: 20px;

            .wc_payment_methods {
                padding: 0;
                border-bottom: none !important;

                .wc_payment_method {
                    border: 1px solid var(--eshb-border-color);
                    border-radius: 10px;
                    padding: 12px;
                    margin-bottom: 10px;
                    transition: all 0.25s ease;

                    &:hover {
                        border-color: var(--eshb-primary-color);
                        background: var(--eshb-secondary-color);
                    }

                    input[type="radio"] {
                        margin-right: 8px;
                    }

                    label {
                        font-weight: 500;
                        color: var(--eshb-dark-color);
                    }

                    .payment_box {
                        margin-top: 10px;
                        font-size: 13px;
                        color: var(--eshb-text-color);
                    }
                }
            }

            .place-order {
                padding: 0;
            }
        }

        // PLACE ORDER BUTTON
        #place_order {
            width: 100%;
            margin-top: 15px;
            padding: 14px;
            border: none;
            border-radius: 12px;
            background: var(--eshb-primary-color);
            color: var(--eshb-white-color);
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s ease;

            &:hover {
                background: var(--eshb-territory-color);
                transform: translateY(-1px);
            }

            &:active {
                transform: scale(0.98);
            }
        }

        // ACTIONS ROW (Add more + Coupon)
        .eshb-order-review-actions {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 16px;

            &__left {
                display: flex;
                align-items: center;

                .eshb-add-more-btn {
                    white-space: nowrap;
                }
            }

            &__right {
                flex-shrink: 0;
            }
        }

        // COUPON
        .eshb-order-review-actions {
            display: flex;
            align-items: center;
            justify-content: space-between;

            .eshb-add-more-btn {
                border-radius: 10px;
                padding: 12px 14px;
                background-color: var(--eshb-primary-color);
                color: var(--eshb-white-color);
            }

            .eshb-coupon-wrap {
                width: fit-content;
                margin-left: auto;

                p.eshb-coupon-toggle {
                    text-align: right;
                }

                .eshb-coupon-fields .form-row {
                    display: flex;
                    align-items: center;

                    .eshb-coupon-code {
                        width: 250px;
                        max-width: 100%;
                        margin-right: 10px;
                    }

                    button.eshb-apply-coupon {
                        border-radius: 10px;
                        padding: 12px 14px;
                        background-color: var(--eshb-primary-color);
                        color: var(--eshb-white-color);
                    }
                }
            }
        }




    }

    // NOTICES
    .woocommerce-error,
    .woocommerce-message,
    .woocommerce-info {
        padding: 12px 40px 16px;
        border-radius: 10px;
        margin-bottom: 20px;
        font-size: 14px;

        &.woocommerce-error {
            background: rgba(228, 23, 73, 0.1);
            color: var(--eshb-danger-color);
        }

        &.woocommerce-message {
            background: rgba(30, 199, 52, 0.1);
            color: var(--eshb-success-color);
        }

        &.woocommerce-info {
            background: var(--eshb-secondary-color);
            color: var(--eshb-territory-color);
        }
    }
}

body.rtl {
    .eshb-availability-calendars-area .eshb-availability-calendars .daterangepicker {
        left: auto !important;
        right: 0 !important;
    }
}

// surecart csss
#searchResult {
    background: #ab8965 !important;
}

// bricks css
.brxe-eshb-availability-calendar {
    @media (min-width: 564px) {
        .daterangepicker {
            width: max-content;
        }
    }
}

.brxe-eshb-room-slider {
    position: relative;
}

// widget room basic info 
.elementor-widget-eshb-room-basic-info .eshb-basic-information-wrapper {
    .basic-information-list {
        margin: 0;
        display: flex;
    }

    .price {
        display: flex;
        align-items: flex-end;
        margin: 0;
        gap: 5px;
    }
}

.elementor-widget-eshb-room-grid {
    width: 100%;
}

.eshb-cart-qty-input {
    width: 60px;
    padding: 4px 6px;
    border: 1px solid #ccc;
    border-radius: 3px;
    text-align: center;
}

.woocommerce-checkout-review-order-table {

    th.eshb-product-quantity,
    td.eshb-product-quantity {
        text-align: center;
        width: 80px;
    }
}