@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body {
    font-family: "Open Sans", serif !important;
}

.ui-widget {
    font-family: "Open Sans", serif !important;
}

:root {
    --primary-color: #3DB8C5FF;
    --text-dark: #323232FF;
    --text-light: #767676FF;
    --text-white: #fff;
    --border-color: #DEDEDEFF;
    --border: #eeeeee;
    --gray: #F1F2F2FF;
    --border-light: #dddddd;
    --border-dark: #222222;
}

.container-fluid {
    padding: 0 40px !important;
}

/* a {
    color: var(--text-dark) !important;
    text-decoration: none !important;
} */

/* Hide number input arrows in Chrome, Safari, Edge, and Opera */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Hide number input arrows in Firefox */
input[type=number] {
    -moz-appearance: textfield;
}


#propertydrilldown {
    .pdtitle {
        display: flex;
        justify-content: space-between;
        align-items: center;

        h5 {
            color: var(--text-dark);
            font-size: 26px;
            font-weight: 600;
        }

        .pdright {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;

            span {
                font-size: 14px;
                font-weight: 500;

                a {
                    color: var(--text-dark);
                    text-decoration: underline;
                    margin-left: 3px;
                }
            }
        }
    }

    .pdgallery {
        margin: 15px 0;
        position: relative;

        .galleryhalf1 {
            padding-right: 0 !important;

            img {
                width: 100%;
                height: 300px !important;
                height: 100%;
                object-fit: cover;
                object-position: top;
                border-radius: 20px 0 0 20px;
            }
        }

        .galleryhalf2 {
            .row {
                display: flex;
                row-gap: 10px;
                flex-wrap: wrap;
            }

            .col-sm-6 {
                display: flex;
                padding-right: 0 !important;
            }

            img {
                width: 100%;
                height: 145px;
                object-fit: cover;
                object-position: center;
            }

            .top-right {
                border-radius: 0 20px 0 0;
            }

            .bottom-right {
                border-radius: 0 0 20px 0;
            }

        }
    }

    .calendarui {
        h4 {
            color: var(--text-dark);
            font-size: 20px;
            font-weight: 700;
        }

        p {
            color: var(--text-light);
            font-size: 16px;
            font-weight: 500;
        }

        .datepicker-container {
            display: flex;
            justify-content: start;
            padding: 20px 0;
        }

        .ui-datepicker-inline {
            width: 60em !important;

        }



        .ui-widget-header {
            border: none !important;
            background: none !important;
            color: var(--text-dark) !important;
        }

        .ui-datepicker th {
            font-weight: 600 !important;
        }

        .ui-datepicker .ui-datepicker-title {
            margin: 0 0.3em 0.8em 0em !important;
        }

        .ui-datepicker .ui-datepicker-prev span {
            display: none !important;
        }

        .ui-datepicker .ui-datepicker-next span {
            display: none !important;
        }


        /* .ui-widget.ui-widget-content {
            border: none !important;
            background: none !important;
          } */

        .ui-state-default,
        .ui-widget-content .ui-state-default {
            border: none !important;
            background: none !important;
            width: 45px;
            height: 45px;
            font-size: 14px;
            font-weight: 700 !important;
            color: var(--text-dark);
        }

        .ui-state-default,
        .ui-widget-content .ui-state-default:hover {
            border: 1px solid var(--text-dark) !important;
            border-radius: 5550px;

        }


        .ui-datepicker .ui-datepicker-prev:before {
            content: "\2039" !important;
            font-size: 24px !important;
            margin-bottom: 10px !important;
        }



        .ui-datepicker .ui-datepicker-next:before {
            content: "›" !important;
            font-size: 24px !important;
            margin-bottom: px !important;
        }

        .ui-datepicker .ui-datepicker-prev-hover {
            right: 0px !important;
        }

        .ui-datepicker .ui-datepicker-next-hover {
            right: 0px !important;
        }

        .ui-datepicker .ui-datepicker-prev-hover {
            top: 0px !important;
        }

        .ui-datepicker .ui-datepicker-next-hover {
            top: 0px !important;
        }

        /* .ui-datepicker .ui-datepicker-next:hover:before {
            content: "\203A";
            font-size: 24px !important;
          } */

        .ui-button:hover,
        .ui-button:focus {
            background: none !important;
            border: none !important;
            font-weight: 600 !important;
            font-size: 24px !important;

        }

        .ui-state-hover,
        .ui-widget-content .ui-state-hover,
        .ui-widget-header .ui-state-hover {
            background: none !important;
            border: none !important;
            font-weight: 600 !important;


        }

        .ui-datepicker .ui-datepicker-prev {
            width: 0.5em !important;
            height: 0.5em !important;
        }

        .ui-state-hover,
        .ui-widget-content .ui-state-hover,
        .ui-widget-header .ui-state-hover {
            font-weight: 600 !important;
        }

        .ui-datepicker .ui-datepicker-prev:hover {
            background: none !important;
            border: none !important;
        }

        .ui-datepicker td a {
            display: flex !important;
            justify-content: center !important;
            align-items: center !important;
        }

        .ui-datepicker td.in-range a {
            background-color: var(--border) !important;
            color: var(--text-dark) !important;
            border-radius: 500px;
        }

        /* Highlight Start & End Dates */
        .ui-datepicker td.start-date a,
        .ui-datepicker td.end-date a {
            background: black !important;
            color: white !important;
            border-radius: 50%;
        }

        .ui-datepicker td.start-date a,
        .ui-datepicker td.end-date a {
            background: var(--text-dark) !important;
            color: white !important;
            border-radius: 100px;
            width: 45px;
            height: 45px;
        }

        .ui-widget-content {
            color: var(--text-light) !important;
            font-weight: 400 !important;
            font-size: 14px !important;
        }

        .ui-widget-content {
            border: none !important;
        }

        .ui-state-disabled,
        .ui-widget-content .ui-state-disabled {
            .ui-state-default {
                display: flex;
                justify-content: center;
                align-items: center;
            }
        }

        .ui-datepicker td {
            padding: 10px 1px !important;
        }

        .cleardates {
            display: flex;
            justify-content: space-between;

            .keyboard {
                width: 42px;
                height: 42px;
                background-color: transparent;
                display: flex;
                justify-content: center;
                align-items: center;
                border-radius: 50px;
            }



            .clear {
                width: 100px;
                height: 36px;
                background-color: transparent;
                display: flex;
                justify-content: center;
                align-items: center;
                border-radius: 5px;
            }

            .keyboard:hover,
            .clear:hover {
                background-color: #f7f7f7;
            }

            a {
                text-decoration: underline;
                color: var(--text-dark);
                font-weight: 500;
            }

            img {
                width: 24px;
                background-color: transparent;
                border-radius: 50px;
            }
        }
    }

    .showallphoto {
        position: absolute;
        background: var(--text-white);
        padding: 3px 12px;
        border-radius: 8px;
        border: 1px solid var(--border-light);
        right: 1%;
        bottom: 7%;

        h5 {
            color: var(--text-dark);
            font-size: 16px;
            font-weight: 500;
            padding-top: 1px;
        }

        span {
            margin-right: 10px;
        }
    }

    .pddetail {
        h5 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-dark);
        }


        .pddesc {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 16px;
            font-weight: 500;
            color: var(--text-dark);

        }


        .pddesc p:not(:first-child)::before {
            content: "• ";
            color: var(--text-dark);
        }

        .guestfavourite {
            border: 1px solid var(--border-light);
            border-radius: 10px;
            padding: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 15px;
            margin-top: 30px;
        }


        .guest {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;



            /* Ensure button has proper padding */
            #guestBtn {
                text-align: left;
                /* Align text to the left */
                padding: 10px 15px;
                border: 1px solid #ccc;
                background-color: white;
            }

            /* Chevron styling */
            #dropdownIcon {
                font-size: 14px;
                padding: 2px;
            }

            /* Prevent overlap */
            .pull-left {
                float: left;
            }

            .pull-right {
                float: right;
            }


        }

        .guestcontent {

            h5 {
                font-size: 16px;
                font-weight: 600;
                color: var(--text-dark);
                max-width: 260px;
                line-height: 24px;
            }
        }

        h6 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-dark);
            line-height: 24px;
            margin: 0;
        }

        .reviewborder {
            border: 1px solid var(--border-color);
            height: 30px;
        }

        .review {
            a {
                color: var(--text-dark);
                font-weight: 600;
                text-decoration: underline;

                h6 {
                    margin-bottom: 0;
                }

            }
        }


        .star {
            a {
                h6 {
                    margin-bottom: 0;
                    text-decoration: none !important;
                }

                color: var(--text-dark);
                font-weight: 600;
            }

            a:hover {
                text-decoration: none !important;

            }

            .fa {
                font-size: 12px;
            }
        }
    }
}

.host {
    padding: 24px 0 0 0;
    display: flex;
    align-items: start;
    gap: 15px;

    img {
        border-radius: 500px;
        width: 40px;
        height: 40px;
        object-fit: cover;
    }

    .hostby {

        h5 {
            color: var(--text-dark);
            font-weight: 600;
            font-size: 16px;
            margin: 0 0 4px 0;
        }

        p {
            margin-bottom: 0;
        }
    }

}

.host-border {
    border: 0.5px solid var(--border-color);
    margin: 35px 0 35px 0;
}

.features {

    .features-list {
        display: flex;
        gap: 10px;
        align-items: start;
        margin-bottom: 25px;

        img {
            width: 24px;
            height: 24px;
        }
    }

    .feature-name {
        h5 {
            font-size: 16px;
            color: var(--text-dark);
            font-weight: 600;
            margin: 0 0 5px 0;
        }
    }
}

.aboutthisplace {
    h5 {
        font-size: 22px;
        font-weight: 700;
        padding-bottom: 15px;
        color: var(--text-dark);
    }

    p {
        font-size: 15px;
        font-weight: 500;
        color: var(--text-dark);
    }

    a {
        margin-top: 25px;
        text-decoration: underline;
        font-size: 15px;
        color: var(--text-dark);
        font-weight: 600;

        i {
            padding-left: 5px;
        }
    }
}

.wheresleep {
    margin-bottom: 25px;

    h5 {
        font-size: 22px;
        color: var(--text-dark);
        font-weight: 700;
        padding-bottom: 15px;
    }


    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

    h6 {
        font-size: 16px;
        color: var(--text-dark);
        font-weight: 600;
        margin-top: 16px;

    }

    p {
        font-size: 14px;
        color: var(--text-dark);
        font-weight: 400;
        margin-bottom: 0;

    }

}

.offers {
    margin-bottom: 25px;

    .btn-outline {
        background-color: transparent;
        border: 1px solid var(--border-dark);
        font-size: 16px;
        color: var(--text-dark);
        font-weight: 600;
        padding: 8px 16px;
        border-radius: 10px;
    }

    .btn-outline:hover,
    .btn-outline:focus {
        background-color: #f7f7f7;
        outline: 0;
        box-shadow: none;
    }

    h5 {
        font-size: 22px;
        color: var(--text-dark);
        font-weight: 700;
        padding-bottom: 15px;
    }


    .offerdetail {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 25px;

        img {
            width: 24px;
            height: 24px;
        }
    }


    p {
        font-size: 16px;
        color: var(--text-dark);
        font-weight: 500;
        margin-bottom: 0;

    }
}

.pricesection {
    border: 1px solid rgb(221, 221, 221);
    border-radius: 12px;
    padding: 24px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 6px 16px;
}

.pricedetail {
    h5 {
        font-size: 20px;
        font-weight: 600;
        color: var(--text-dark);
    }

    span {
        font-size: 16px;
        font-weight: 500;
        color: var(--text-dark);
        margin-left: 5px;
    }

    .check-availability {
        .date-availability {
            background-color: transparent !important;
            border: 1px solid var(--border-light);
            padding: 8px 12px;
            border-radius: 5px 5px 0 0;

            .row {
                display: flex;
                align-items: center;
            }

            .col-sm-6 {
                position: relative;
                text-align: left;
            }

            .col-sm-6:first-child {
                border-right: 1px solid #ccc;
                /* Adjust color and thickness */
            }


            a {
                text-decoration: none;
            }

            .checkin,
            .checkout {
                margin-bottom: 0;

                label {
                    font-size: 12px;
                    font-weight: 600;
                    color: var(--text-dark);
                }

                p {
                    margin: 0;
                    color: var(--text-light);
                    text-align: left;
                }
            }




        }

        .date-availability:hover {
            border: 1px solid var(--border-dark);
            border-radius: 5px;
        }
    }

    .guest-availability {
        .form-group {
            margin-bottom: 0;
        }

        .guest {
            position: relative;
            background-color: transparent !important;
            border: 1px solid var(--border-light);
            padding: 8px 12px;
            border-radius: 0 0 5px 5px;
        }

        .guest:hover {
            border: 1px solid var(--border-dark);
            border-radius: 5px;
        }

        label {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-dark);
        }

        .btn-default {
            background-color: transparent !important;
            border: none;
            font-size: 16px;
            color: var(--text-dark);
            font-weight: 600;
            padding: 0;
            border-radius: 0 0 5px 5px;

            span {
                margin-left: 0;
                font-size: 14px;
            }
        }

        .btn-default:hover {
            background-color: transparent !important;
            border: none;
            font-size: 16px;
            color: var(--text-dark);
            font-weight: 600;
            border-radius: 5px;
        }

        .btn-default:hover,
        .btn-default:focus {
            background-color: #f7f7f7;
            outline: 0;
            box-shadow: none;
        }

        .guest-dropdown-container {
            position: absolute;
            width: 100%;
            background: #fff;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
            z-index: 10;
            border-radius: 5px;
            display: none;
            padding: 20px;
            /* Hide initially */
            top: 110%;
            left: 0%;
        }

        p {
            text-align: left;
            font-size: 13px;
            margin-top: 15px;
        }

        .collapse.in {
            display: block;
            /* Show when expanded */
        }


        .searchbar {
            position: relative;
            background-color: white;
            box-shadow: 0px 8px 17px #171a1f26, 0px 0px 2px #171a1f1F;
            border-radius: 800px;
            transition: background-color 0.3s ease;
        }

        .nav-justified {
            margin-bottom: 20px !important;
        }

        /* Active Tab Styling */
        /* .nav-pills>li.active a {
            background-color: #F1F2F2FF !important;
            color: var(--text-dark) !important;
            border-radius: 2500px !important;
          } */



        .form-control {
            background-color: transparent;
            border: none !important;
            box-shadow: none !important;
            padding: 0px !important;
            font-size: 16px !important;
            font-weight: 600;
        }

        .adult {
            h4 {
                font-size: 16px;
                font-weight: 700;
                color: var(--text-dark);
                margin-bottom: 0px;
            }

            h6 {
                font-size: 14px;
                color: var(--text-light);
                margin-top: 6px;
            }

            a {
                text-decoration: underline !important;
            }
        }

        a {
            color: var(--text-dark);

        }


        .addguestcount {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .adultcount {
            display: flex !important;
            align-items: center;

            .btn {
                background-color: transparent !important;
                /* border: 1px solid var(--text-light) !important;
              border-radius: 1000px; */
                padding: 0 4px !important;
            }

            .btn:focus {
                /* outline: thin dotted; */
                outline: 0 !important;
                outline-offset: 0 !important;
            }

            .btn:focus {
                box-shadow: none !important;
            }

            .minus,
            .plus {
                img {
                    width: 28px;
                    height: auto;
                }
            }

        }

        .searchbarborder {
            border: 1px solid var(--border);
            margin: 10px 0;
        }

        #numInput::-webkit-outer-spin-button,
        #numInput::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        #numInput {
            -moz-appearance: textfield;
        }

        .addguest button {
            margin-left: 10px;
        }

        .addguest i {
            margin-right: 10px;
        }

        .addguesttab {
            padding: 20px 24px;
            width: 450px;
            margin: 0 0 0 auto;
            border-radius: 20px;
            background: #FFFFFFFF;
            /* white */
            border-radius: 30px;
            box-shadow: 0px 8px 17px #171a1f26, 0px 0px 2px #171a1f1F;
        }

    }


    .btn-primary {
        background-color: var(--primary-color);
        border: none;
        width: 100%;
        padding: 12px 20px;
        border-radius: 10px;
        font-size: 18px;
        font-weight: 600;
        margin-top: 20px;
    }

    .btn-primary:hover {
        background-color: var(--primary-color);
        border: none;
        width: 100%;
        padding: 12px 20px;
        border-radius: 10px;
        font-size: 18px;
        font-weight: 600;
        margin-top: 20px;
    }

    .btn-primary:active,
    .btn-primary:focus {
        background-color: var(--primary-color) !important;
        border: none !important;
        width: 100%;
        padding: 12px 20px;
        border-radius: 10px;
        font-size: 18px;
        font-weight: 600;
        margin-top: 20px;
        outline: none !important;
        box-shadow: none !important;
    }

    p {
        text-align: center;
        margin-top: 10px;
        font-weight: 500;
        color: var(--text-dark);
        font-size: 15px;
    }

    .pricegroup {
        margin: 20px 0;

        .pricelist {
            display: flex;
            align-items: center;
            justify-content: space-between;

            a {
                text-decoration: underline;
                font-weight: 600;
                color: var(--text-dark);
                font-size: 16px;
            }

            p {
                font-weight: 600;
                color: var(--text-dark);
                font-size: 16px;
            }
        }

        .priceborder {
            border: 1px solid var(--border-color);
            margin: 15px 0;
        }

        .totalprice {
            display: flex;
            align-items: center;
            justify-content: space-between;

            h6,
            p {
                color: var(--text-dark);
                font-size: 16px;
                font-weight: 700;
                margin-bottom: 5px;
            }
        }
    }
}

.rarefind {
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 15px 20px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;

    .content {
        h6 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        p {
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 5px;
        }
    }
}

.reportlisting {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    gap: 10px;

    a {
        text-decoration: underline;
        margin-bottom: 0;
        color: var(--text-light);
        font-size: 16px;
        font-weight: 600;
    }
}



.rating-review {
    .row>div {
        border-right: 1px solid #ccc;
        /* Adjust color as needed */
        padding: 0 30px;
        /* Add spacing to avoid text touching the border */
    }

    .row>div:last-child {
        border-right: none;
        /* Remove border from the last column */
    }

    h5 {
        font-size: 18px;
        font-weight: 600;
        margin-top: 10px;
    }

    .features {
        h5 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-dark);
        }

        h4 {
            font-size: 20px;
            font-weight: 600;

        }

        img {
            width: 32px;
            height: 32px;
            margin-top: 25px;
        }
    }

    .rating {
        display: flex;
        justify-content: center;
        gap: 20px;
        align-items: center;

        h1 {
            font-size: 100px;
            font-weight: 700;
            margin: 0;
        }



    }
}

.guestfavourite {
    margin-bottom: 45px;

    h5 {
        font-size: 24px;
        font-weight: 700;
        margin: 25px 0 15px 0;
    }

    p {
        font-size: 16px;
        font-weight: 500;
        color: var(--text-dark);
        width: 30%;
        margin: 0 auto;
    }

    span {
        font-weight: 700;
        color: var(--border-dark);
    }
}


.overallrating {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}


.ratingprogress {
    display: flex;
    align-items: center;
    gap: 10px;

    .progress {
        height: 10px;
        width: 100%;
        margin-bottom: 0;
        overflow: hidden;
        background-color: #f5f5f5;
        border-radius: 4px;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .progress-bar {
        background-color: var(--text-dark) !important;
    }
}

.cleanliness {
    .title {
        p {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-dark);
        }

        h6 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-dark);
        }
    }

    img {
        width: 32px;
        height: 32px;
    }
}


.user-review {
    .user-detail {
        display: flex;
        align-items: center;
        gap: 10px;

        img {
            width: 48px;
            height: 48px;
            object-fit: cover;
            border-radius: 500px;
        }
    }
}

.user-review {
    .review-list {
        margin-bottom: 45px;
    }

    .user-detail {
        .user-name {
            h6 {
                font-size: 16px;
                font-weight: 700;
                color: var(--text-dark);
                margin-bottom: 5px;

            }

            p {
                font-size: 14px;
                font-weight: 500;
                color: var(--text-dark);
                margin-bottom: 5px;
            }
        }
    }

    .star {
        display: flex;
        gap: 20px;
        align-items: center;

        img {
            width: 12px;
        }

        p {
            margin-bottom: 0;
        }
    }

    .days {
        h6 {
            color: var(--text-dark);
            font-size: 16px;
            font-weight: 600;
        }
    }

    .stay,
    .days {
        display: flex;
        align-items: center;
    }

    .dot {
        width: 3px;
        height: 3px;
        background-color: var(--text-dark);
        border-radius: 50%;
        margin-right: 3px;
    }


    .stay {
        p {
            color: var(--text-dark);
            font-size: 15px;
            font-weight: 600;
        }
    }

    .comment {
        p {
            color: var(--text-dark);
            font-size: 15px;
            font-weight: 500;
            margin: 7px 0;
            line-height: 150%;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }
    }

    .review-expand {
        color: var(--text-dark);
        font-size: 15px;
        font-weight: 600;
        text-decoration: underline;
    }
}

.review-works {
    a {
        color: var(--text-dark);
        text-decoration: underline;
        font-weight: 700;
        font-size: 14px;
    }
}

.whereyou {
    h5 {
        color: var(--text-dark);
        font-weight: 700;
        font-size: 20px;
    }

    p {
        color: var(--text-dark);
        font-weight: 600;
        font-size: 16px;
        margin-bottom: 20px;
    }
}

.meetyourhost {
    h6 {
        color: var(--text-dark);
        font-weight: 700;
        font-size: 20px;
        margin-bottom: 25px;
    }

    .hostsection {
        background-color: #fff;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        border-radius: 25px;
        padding: 25px 25px;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        vertical-align: middle;

        h5 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        p {
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 5px;
        }
    }

    .hostbg {
        position: relative;
        display: inline-block;
        width: 100px;
        /* Adjust as needed */
        height: 100px;
        /* Adjust as needed */
    }

    .hostimage img {
        width: 104px;
        height: 104px;
        border-radius: 50%;
        /* If you want a circular image */
        object-fit: cover;
    }

    .hostverifybadge {
        position: absolute;
        bottom: -4px;
        right: -6px;
        width: 32px;
        height: 32px;
        background-color: var(--primary-color);
        border-radius: 100px;
        display: flex;
        justify-content: center;
        align-items: center;

    }

    .hostverifybadge img {
        width: 16px;
        height: 16px;
    }

    .hostdesc {
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 10px;
        margin-top: 20px;

        img {
            width: 20px;
        }

        p {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0;
        }

        a {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0;
            text-decoration: underline;
        }
    }

    .co-host {
        .btn-warning {
            background-color: #222222 !important;
            border: none !important;
            padding: 15px 25px;
            border-radius: 10px;
            margin-top: 25px;
            font-size: 16px;
            font-weight: 600;
        }

        h5 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .cohostimg {
            display: flex;
            justify-content: start;
            gap: 15px;
            align-items: center;

            p {
                font-size: 15px;
                font-weight: 700;
                color: var(--text-dark);
            }
        }

        img {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            object-fit: cover;
        }


    }

    .co-hostimg {
        display: flex;
        align-items: center;
        gap: 10px;

        img {
            width: 32px;
            height: auto;
        }

        p {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-dark);
            margin-bottom: 0;
        }
    }

}

.thingstoknow {
    h4 {
        font-size: 20px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 10px;
    }

    h5 {
        font-size: 18px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 10px;
    }

    p {
        font-size: 16px;
        font-weight: 500;
        color: var(--text-dark);
        margin-bottom: 20px;
    }

    a {
        font-size: 15px;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 0;
        text-decoration: underline;
    }
}

/* .date-availability {
    position: relative;
}

.checkcollapse {
    position: absolute;
    background: rgb(255, 255, 255) !important;
    border-radius: 16px !important;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 6px 20px !important;
    padding: 24px 32px 16px !important;
    position: absolute !important;
    top: 63px !important;
    right: 0 !important;
    width: 661px !important;
    z-index: 10 !important;
    min-height: 460px !important;

 
} */