body {
    font-family: 'Manrope' !important;
    color: #000000;
}

.haway-meta-items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.haway-meta-items .haway-meta-item {
    margin-right: 35px;
    display: flex;
    align-items: center;
    color: #666666;
    font-size: 14px;
    font-weight: 400;
}

.haway-single-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
}

.haway-meta-item i {
    padding-right: 10px;
}

.haway-icon-beds::after,
.haway-icon-baths::after,
.haway-icon-persons::after,
.haway-icon-area:after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-size: contain;
    /* ensures image fits */
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;/
}

.haway-icon-beds::after {
    background-image: url('../images/beds.png');
}

.haway-icon-baths::after {
    background-image: url('../images/baths.png');
}

.haway-icon-persons::after {
    background-image: url('../images/persons.png');
}

.haway-icon-area:after {
    background-image: url('../images/sq.png');
}

.haway-single-left {
    flex: 1 1 65%;
    width: 50%;

}

.haway-single-right {
    flex: 1 1 30%;
    position: relative;
}

.booking-form {
    position: sticky;
    top: 100px;
    background: #fff;
    padding: 25px;
    border: 1px solid #ddd;
    background: #FFFFFF;
    box-shadow: 0px 0px 20px 0px #0000001A;
}

.booking-form h3 {
    margin-top: 0;
    font-size: 22px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 20px;
}

.booking-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.booking-form input,
.booking-form button {
    padding: 10px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

.booking-form input {
    color: #000 !important;
    border: 1px solid #0073AA;
}

.booking-form button {
    background: #0073AA;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    padding: 13px 25px;
    width: 100%;
    transition: all 0.3s ease;
    text-align: center;
    border-radius: 0;
}

.booking-form button:hover {
    background-color: #005a8d;
}

.hostaway-listings-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    gap: 16px;
    box-sizing: border-box;
}

.hostaway-listing-card {
    width: calc(33.3333% - 12px);
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background: #fff;
    transition: transform 0.2s ease;
    margin-bottom: 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.hostaway-listing-card:hover {
    transform: translateY(-5px);
}

.hostaway-card-image img {
    width: 100%;
    height: 200px !important;
    object-fit: cover;
    display: block;
}

.hostaway-card-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hostaway-card-content h3 {
    margin: 0 0 10px;
    font-size: 22px;
    color: #000000;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 34px;
    font-family: "Manrope", sans-serif;
}

.hostaway-card-content p {
    margin: 0;
    font-size: 14px;
    color: #000000;
    font-weight: 500;
    margin-bottom: 22px;
    padding-left: 25px;
    position: relative;
}

.hostaway-card-content p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/location.png);
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
}

ul.listing-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 0 20px;
    margin: 0;
    list-style: none;
    justify-content: space-between;
    list-style-type: disc;
}

ul.listing-amenities li {
    flex: 0 0 25%;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    padding: 0;
    position: relative;
}

ul.listing-amenities li.amenity_exist:before {
    position: absolute;
    content: "";
    top: 3px;
    left: 0;
    background-image: url(../images/check.png);
    height: 20px;
    width: 20px;
    background-size: contain;
    background-repeat: no-repeat;
}

ul.listing-amenities li.amenity_notexist:before {
    position: absolute;
    content: "";
    top: 3px;
    left: 0;
    background-image: url(../images/close.png);
    height: 20px;
    width: 20px;
    background-size: contain;
    background-repeat: no-repeat;
}

.amenities-outer h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin: 16px 0;
}

.haway-cal-month-block {
    display: none;
}

#haway-calendar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    border: 0;
}


.haway-cal-month-block.haway-cal-month-active {
    display: flex;
    flex-direction: column;
}

.haway-cal-month-block .haway-cal-month-bar {
    order: -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 1px;
    text-align: center;
    padding: 17px 5px;
    color: #000000;
}

.haway-cal-month-block .haway-cal-week-names {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    line-height: normal;
}

.haway-cal-month-block .haway-cal-week-name {
    text-align: center;
    width: 100%;
    padding: 7px 2px;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    color: #3C3C4399;
    font-weight: 400;
}


.haway-cal-month-block .haway-cal-cell .cal-cell-date {
    color: #333333 !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    display: block;
    line-height: 1.2;
}

.haway-cal-cell-active {
    cursor: pointer;
}

.haway-cal-cell-active .haway-cal-cell-date,.haway-cal-checkout-enabled .haway-cal-cell-date{
    color: #000000 !important;
}
.haway-cal-cell-selected .haway-cal-cell-price,.haway-cal-checkin .haway-cal-cell-price{
    color: #fff !important;
}
.haway-cal-cell-selected .haway-cal-cell-date,.haway-cal-checkin .haway-cal-cell-date{
    text-decoration-line:none !important;
    color: #fff !important;
}
.haway-cal-cell.haway-cal-cell-selected,.haway-cal-checkin{
    border: 1px solid #0073AA;
    background: #0073AA;
}

body .haway-cal-checkin.haway-cal-checkout-disabled .haway-cal-cell-date{
    color: #ffffff !important;
}
.haway-cal-checkout-enabled{
    cursor: pointer;
}
.haway-cal-checkout-enabled .haway-cal-cell-date{
    text-decoration-line: none !important;
}
.haway-cal-cell-price {
    font-size: 14px;
    font-weight: 500;
    color: #0073aa;
}

.haway-cal-month-block .haway-cal-dates-block {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    line-height: normal;
    margin-bottom: 2px;
}

.haway-cal-month-block .haway-cal-cell {
    position: relative;
    flex-basis: 14.2857%;
    box-sizing: border-box;
    text-align: center;
    padding: 0px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
}

.haway-cal-month-prev,
.haway-cal-month-next {
    cursor: pointer;
}

.haway-cal-month-prev:before,
.haway-cal-month-next:before {
    content: '';
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    width: 16px;
    height: 16px;
}

.haway-cal-month-prev:before {
    background-image: url('../images/back.png');
    margin-left: 15px;
}

.haway-cal-month-next:before {
    background-image: url('../images/next.png');
    margin-right: 15px;
}

.error-message {
    color: red;
    font-size: 13px;
    margin-top: 4px;
}

.reservation_info_title {
    font-weight: 700;
    color: #000;
    font-size: 24px;
    padding: 0px;
}

.reservation_info_dates {
    display: grid;
    grid-template-columns: auto 1fr;
    padding: 0px;
}

.reservation_info_label {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    padding-right: 10px;
}

.reservation_total_price {
    font-size: 22px;
    color: #000;
    font-weight: 500;
}

.reservation_form {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    padding: 50px;
    background-color: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
}

/* .booking-form .reservation_input input{
    border: 1px solid #0073AA;
} */

.reservation_input {
    position: relative;
}

.reservation_input label {
    font-size: 16px;
    color: #000;
    font-weight: 500;
}

.reservation_input label .required {
    color: red;
    font-weight: bold;
    margin-left: 3px;
}

.booking-form input::placeholder {
    color: #000;
}

.booking-form .reservation_input_field,
.booking-form .reservation_select_field {
    padding: 15px 20px;
    width: 100%;
    font-size: 14px;
    line-height: 22px;
    color: #000;
    transition: all 0.2s ease;
    border: 1px solid #0073AA;
    margin-bottom: 12px;
}

.booking-form .reservation_input_field::placeholder,
.booking-form .reservation_select_field::placeholder {
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.booking-form .reservation_input_field:focus,
.booking-form .reservation_select_field:focus {
    border: 1px solid #0073AA;
    outline: none;
}

.reservation_select_field {
    color: #000 !important;
    background-color: #fff;
    max-width: 100%;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    background-position: calc(100% - 10px) center;
    background-repeat: no-repeat;
    background-size: 16px 12px;
    border-radius: 0;
    padding: 12px 10px;
}

.reservation_submit_container {
    text-align: center;
}

.span.errors {
    color: red;
    font-size: 14px;
}

.slider {
    width: 100%;
    margin: 20px auto;
}

.slick-slide {
    margin: 0px 5px;
}

.slick-slide img {
    width: 100%;
    height: 500px !important;
    object-fit: cover;

}

.slick-prev:before,
.slick-next:before {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    background-color: #0073aa;
    border-radius: 50%;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.reservation_select_field {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url('../images/down-arrow.png') no-repeat right -2px center;
    background-size: 39px;
    cursor: pointer;
}

.slick-prev {
    left: -27px;
    z-index: 1;
}

.slick-next {
    right: 12px;
    z-index: 1;
}

.slick-slide {
    transition: all ease-in-out .3s;
    opacity: .2;
}

.slick-active {
    opacity: .5;
}

.slick-current {
    opacity: 1;
}

.listing-description h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333333;
    margin: 10px 0;
}

.listing-description p {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    margin-top: 30px;
}

.haway-single-card .listing-title {
    font-size: 30px;
    font-weight: 500;
    color: #000000;
    padding: 0;
    margin: 0;
    margin-bottom: 15px;
}

.amenities-outer {
    margin-top: 20px;
    border-bottom: 1px solid #F0FAFF;
    padding-bottom: 20px;
}

.listing-description {
    border-bottom: 1px solid #F0FAFF;
    padding-bottom: 20px;
}


.amenities-outer button img {
    width: 35px;
    height: 35px;
    object-fit: cover;
}

.listing-amenities li {
    display: list-item;
}

.listing-amenities li.hidden {
    display: none;
}

.listing-description p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.listing-description.expanded p {
    -webkit-line-clamp: unset;
}

/* #toggle-description {
    margin-top: 10px;
    border: none;
    background: none;
    color: #333333;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
} */

#toggle-description img {
    width: 35px;
    height: 35px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

#toggle-description.expanded img {
    transform: rotate(180deg);
}

.listing-calendar h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333333;
    margin-top: 50px;
}

.hostaway-pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 16px;
}

.hostaway-pagination a {
    font-size: 16px;
    font-weight: 400;
    color: #707070;
    border: 1px solid #F2F2F2;
    border-radius: 4px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F2F2F2;
    transition: all 0.3s ease;

}

.hostaway-pagination a.active {
    background-color: #0073aa;
    color: #fff;
    border: 1px solid #0073aa;
}

.hostaway-pagination a:hover {
    background-color: #0073aa;
    color: #fff;
    border: 1px solid #0073aa;
}

div#reservation_response:empty {
    display: none;
}

div#reservation_response {
    font-size: 16px;
    background: #0073aa;
    color: #fff;
    padding: 10px;
    margin-bottom: 10px;
}

.hostaway-listing-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
    justify-content: space-between;
}

.hostaway-listing-amenities li {
    box-sizing: border-box;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    padding-left: 25px;
    position: relative;
}

.hostaway-listing-amenities li:nth-child(1)::after,
.hostaway-listing-amenities li:nth-child(2)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -28px;
    transform: translate(-50%, -50%);
    background-color: #D9D9D9;
    width: 1.5px;
    height: 100%;
}


.hostaway-listing-amenities li span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hostaway-listing-amenities li span img {
    width: 20px;
    height: 20px;
    object-fit: cover;
}

.hostaway-listing-amenities li span span {
    font-size: 14px;
    font-weight: 400;
    color: #949494;
}

.hostaway_bed_icon,
.hostaway_bath_icon,
.hostaway_person_icon,
.hostaway_sq_icon {
    position: relative;
}

.hostaway_bed_icon::before,
.hostaway_bath_icon::before,
.hostaway_person_icon::before,
.hostaway_sq_icon::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    background-image: url('../images/beds.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
}

.hostaway_sq_icon:nth-child(4)::before {
    top: 1px;
    height: 16px;
    width: 16px;
}

.hostaway_bath_icon::before {
    background-image: url(../images/baths.png);
}

.hostaway_person_icon::before {
    background-image: url(../images/persons.png);
}

.hostaway_sq_icon::before {
    background-image: url(../images/sq.png);
}

.hostaway-card-content a.hostaway-listing-book-btn {
    background-color: #ffffff;
    border: 1px solid #0073AA;
    color: #0073AA;
    padding: 13px 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    margin-top: 30px;
    transition: all 0.3s ease;
    margin-top: auto;
    text-align: center;
    text-decoration: none;
}

.hostaway-card-content a.hostaway-listing-book-btn:hover {
    background-color: #0073AA;
    color: #ffffff;
    border: 1px solid #0073AA;

}

/* CSS-based arrow icon and toggle functionality */
.arrow-icon {
    display: inline-block;
    background-image: url('../images/down-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 0;
    transition: transform 0.3s ease;
    height: 25px;
    width: 25px;
}

button.expanded .arrow-icon {
    transform: rotate(180deg);
}

/* Hide amenities after 15th item */
.listing-amenities li.hidden {
    display: none;
}

/* Amenities list styling */
.listing-amenities {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.listing-amenities li {
    padding: 8px 0;
}

.listing-amenities li:last-child {
    border-bottom: none;
}

/* Button styling */
#toggle-amenities,
#toggle-description {
    background: none;
    border: none;
    color: #000000;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    padding: 8px 0;
    display: flex;
    align-items: center;
    text-decoration: underline;
}

#toggle-amenities:hover,
#toggle-description:hover {
    color: #707070;
}

.listing-description p {
    max-height: 100px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.listing-description.expanded p {
    max-height: none;
}

.hostaway-listing-location {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hostaway-listing-location img {
    width: 20px;
    height: 20px;
    object-fit: cover;
}

.hostaway-listing-location span {
    font-size: 14px;
    font-weight: 400;
    color: #949494;
}

#price_breakdown {
    margin-top: 20px;
}

#price_breakdown div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 8px;
}

#price_breakdown div label,
#price_breakdown div span {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
}

#price_breakdown div:last-child span,
#price_breakdown div:last-child label {
    font-weight: 400;
    color: #000000;
    font-size: 16px;
    font-family: "Manrope", sans-serif;
}

.grid_view_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 40px 0;
}

.grid_view_wrapper .result_count {
    font-size: 14px;
    font-weight: 400;
    color: #949494;
}

.grid_view_wrapper .sort_by {
    display: flex;
    align-items: center;
    gap: 40px;
}

.grid_view_wrapper .sort_by svg {
    width: 20px;
    height: 20px;
    object-fit: cover;
    cursor: pointer;
}

.grid_view_wrapper .sort_by .grid_view_icon {
    position: relative;
}

.grid_view_wrapper .sort_by .list_view_icon.active svg path,
.grid_view_wrapper .sort_by .grid_view_icon.active svg path{
    fill: #000000;
}



.hostaway-listings-wrapper.list-view{
    flex-direction: column;
}

.hostaway-listings-wrapper.list-view .hostaway-listing-card{
    width: 100%;
    flex-direction: row;
    border-radius: 0;
}
.hostaway-listings-wrapper.list-view .hostaway-card-image {
    flex: 0 0 35%;
}

.hostaway-listings-wrapper.list-view .hostaway-card-content a.hostaway-listing-book-btn{
    width: fit-content;
    padding: 8px 25px;
}

.hostaway-listings-wrapper.list-view .hostaway-card-content{
    flex: unset;
    padding: 15px 30px 40px;
}

.hostaway-listings-wrapper.list-view .hostaway-card-image img{
    height: 250px !important;
}

.hostaway-listings-wrapper.list-view .hostaway-card-content p{
    margin-top: 20px;
}
.hostaway-listings-wrapper.list-view .hostaway-card-content h3{
    margin: 10px 0;
}

.hostaway-card-content h3 a{
    text-decoration: none;
}

.hostaway-listings-wrapper.list-view .hostaway-listing-amenities{gap: 35px;}

.hostaway-listings-wrapper.list-view .hostaway-listing-amenities li:nth-child(1)::after, .hostaway-listing-amenities li:nth-child(2)::after, .hostaway-listing-amenities li:nth-child(3)::after{
    content: '';
    position: absolute;
    top: 50%;
    right: -17px;
    transform: translate(-50%, -50%);
    background-color: #D9D9D9;
    width: 1.5px;
    height: 100%;
}


.grid_view_wrapper .sort_by .grid_view_icon::after {
    position: absolute;
    content: '';
    top: 13px;
    right: -21px;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 1.5px;
    background-color: #9F9F9F;
    z-index: 1;
}

.haway-cal-month-bar .hidden {
    opacity: 0;
}

.reservation-info-outer h3 {
    font-size: 22px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 20px;
}

.reservation-info-outer .reservation-info-items h4 {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    margin: 0;
    margin-bottom: 10px;
}

.reservation-info-outer .reservation-info-items h4 span {
    font-size: 16px;
    font-weight: 500;
    color: #666666;
    margin-left: 10px;
}

.reservation-info-outer .house-rules-outer h5{
    font-size: 16px;    
    font-weight: 500;
    color: #000000;
    margin: 20px 0;
}

.reservation-info-outer .house-rules-outer ul{
    padding: 0 20px;
}


.reservation-info-outer .house-rules-outer ul li{
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 5px;
}

.reservation-info-outer .house-rules-outer ul li span{
    font-size: 14px;
    font-weight: 500;
    color: #666666;
}

.reservation-info-outer .cancellation-policy-outer h5{
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    margin: 20px 0 10px;
}

.reservation-info-outer .cancellation-policy-outer p{
    font-size: 14px;
    font-weight: 500;
    color: #666666;
    background: #FFF0F0;
    padding: 7px 35px;
    position: relative;
}

.reservation-info-outer .cancellation-policy-outer p::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 17px;
    transform: translate(-50%, -50%);
    background-image: url(../images/cancellation.png);
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
}

.stay-note{
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    background: #F0FAFF;
    padding: 8px 35px;
    margin-top: 20px;
    width: fit-content;
    position: relative;
}

.stay-note::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translate(-50%, -50%);
    background-image: url(../images/reservation.png);
    width: 14px;
    height: 14px;
    background-size: contain;
    background-repeat: no-repeat;
}
.haway-cal-month-block .haway-cal-cell.haway-cal-cell-disabled .haway-cal-cell-date,.haway-cal-checkout-disabled .haway-cal-cell-date {
    text-decoration-line: line-through;
    color: #666666;
}

.haway-cal-month-block .haway-cal-checkout-disabled{
    cursor: auto;

}

.haway-cal-month-block .haway-cal-checkout-disabled .haway-cal-cell-date{
    color: #666666 !important;
}

.haway-cal-month-block .haway-cal-checkout-disabled

.haway-cal-month-block .haway-cal-cell.haway-cal-cell-disabled .haway-cal-cell-price.haway-cal-checkout-disabled .haway-cal-cell-price{
    color: #666666;
    text-decoration-line: line-through;
}
/* media query start here  */
@media screen and (max-width: 1199px) and (min-width: 768px) {
    .hostaway-listing-card {
        width: calc(33.3333% - 12px);
    }

    .hostaway-listings-wrapper {
        justify-content: center;
    }
}

@media screen and (max-width: 992px) {
    .haway-single-wrapper {
        flex-direction: column;
    }

    .haway-single-left {
        width: 100%;
    }

    .grid_view_wrapper{
        padding: 40px 20px;
    }

    .haway-single-right {
        width: 100%;
    }

    .haway-meta-items {
        gap: 16px;
    }

    .hostaway-listings-wrapper.list-view .hostaway-listing-card{
        display: grid;
        grid-template-columns: 1fr 2fr;
    }

    .hostaway-listings-wrapper.list-view .hostaway-card-image img{
        height: 100% !important;
        
    }

    .hostaway-listings-wrapper.list-view .hostaway-listing-amenities {
        gap: 10px;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .hostaway-listings-wrapper.list-view .hostaway-listing-amenities li:nth-child(1)::after, .hostaway-listing-amenities li:nth-child(2)::after, .hostaway-listing-amenities li:nth-child(3)::after{
        display: none;
    }

    .hostaway-listing-amenities{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .hostaway-listing-amenities li:nth-child(1)::after, .hostaway-listing-amenities li:nth-child(2)::after{
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .hostaway-listing-card {
        width: calc(50% - 12px);
    }

    .hostaway-listings-wrapper {
        justify-content: center;
    }

    .slick-next{
        right: 27px;
    }
    .slick-prev {
        left: 4px;
    }
    .slick-prev:before, .slick-next:before{
        height: 42px;
        width: 42px;
    }

    .grid_view_wrapper{
        padding: 0 20px;
    }

}

@media screen and (max-width: 575px) {
    .hostaway-listing-card {
        width: 100%;
    }

    #haway-calendar{
        grid-template-columns: 1fr;
    }

    ul.listing-amenities{
      gap: 10px;
    }

    .booking-form .reservation_input_field, .booking-form .reservation_select_field{
      padding: 10px;
    }

    ul.listing-amenities li{
        flex: 0 0 48%;
    }

    .hostaway-pagination {
        margin-top: 10px;
    }
    .hostaway-listings-wrapper.list-view .hostaway-card-content a.hostaway-listing-book-btn {
        width: 100%;
        padding: 5px 10px;
        font-size: 14px;
    }

    .hostaway-card-content h3{
        font-size: 18px;
    }

    .hostaway-listings-wrapper.list-view .hostaway-card-content h3{
        margin: 0 0 10px;
    }

    .hostaway-listings-wrapper.list-view .hostaway-card-content p{
        margin-top: 0;
        margin-bottom: 10px;
    }

    .hostaway_bed_icon::before, .hostaway_bath_icon::before, .hostaway_person_icon::before, .hostaway_sq_icon::before {
        top: 5px;
        width: 14px;
        height: 14px;
    }
    .hostaway-card-content p::before {
        top: 6px;
        width: 14px;
        height: 14px;
    }

    .hostaway-card-content a.hostaway-listing-book-btn{
        width: 100%;
        padding: 5px 10px;
        font-size: 14px;
    }

    .slick-slide img{
        height: 400px !important;
    }
}

@media screen and (max-width: 767px) {
    .ui-widget.ui-widget-content {
    min-width: calc(100vw - 72px);
}
}