/* rooms_banner_section */
.rooms_banner_section {
    position: relative;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 55vh;
}

.rooms_banner_section::after {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.rooms_banner_section .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rooms_banner_section h1 {
    color: #fff;
    font-size: 60px;
    font-weight: 600;
}

/* rooms_banner_section */

/* container */
.sidebar_box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

/* heading */
.sidebar_title {
    font-size: 20px;
    margin-bottom: 15px;
}

/* section */
.sidebar_section {
    margin-bottom: 20px;
}

.sidebar_section_title {
    font-size: 15px;
    margin-bottom: 10px;
}

/* checkbox + radio */
.sidebar_label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    cursor: pointer;
    font-size: 14px;
}

.sidebar_input {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* price inputs */
.sidebar_input_box {
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 8px;
    border-radius: 6px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 14px;
}

.sidebar_input_box:focus {
    border-color: #000;
}

/* hover effect */
.sidebar_label:hover {
    color: #000;
}

/* SLIDER */
.custom_slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.custom_slider_track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.custom_slide {
    min-width: 100%;
}

/* IMAGE FIX */
.custom_slide img {
    width: 100%;
    /* height: 260px; */
    object-fit: cover;
    border-radius: 15px;
}

/* ================= MOBILE ================= */


.vmp_card {
    border: 1px solid lightgrey;
    border-radius: 12px;
    display: flex;
    background-color: #fff;
    font-family: system-ui;
}

.part_1 {
    width: 30%;
    border-radius: 12px 0 0 12px;
    overflow: hidden;
}

.part_1 img {
    width: 100%;
    height: 310px;
}

.part_2 {
    border-right: 1px solid lightgray;
    width: 45%;
    padding: 18px;
}

.part_2_img_div {
    text-align: center;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.p2id_img p {
    /* border: 1px solid; */
    font-size: 11px;
    font-family: system-ui;
}

.part_2_img_div .p2id_img img {
    width: 40px;
    border: 1px solid lightgray;
    border-radius: 100%;
    padding: 7px;
}

.part_2p1,
.part_2p2,
.part_2p3 {
    font-weight: 600;
    font-size: 16px;
    font-family: system-ui;
}

.part_2p2 span img {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.vmp_bottom {
    /* border: 1px solid; */
}

.vmp_bottom p {
    font-size: 14px;
    font-weight: 600;
    padding: 10px;
    font-family: system-ui;
}

.vmpc {
    background-color: #f1f1f1;
    border-radius: 12px;
}

.p3bestprice {
    color: #219653;
    font-size: 14px;
    font-weight: 600;
    font-family: system-ui;
}

.p3mainprice {
    font-size: 23px;
    color: #219653;
    font-weight: 600;
    font-family: system-ui;
}

.p3div .p31 {
    margin-bottom: 0px;
    font-family: system-ui;
}

.p3deleteprice {}

.p3saveprice {
    background-color: rgb(255 200 80 / 10%);
    color: #ffb81c;
    padding: 3px 5px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 5px;
    font-family: system-ui;
}

.p33 {
    background-color: #f7f9fb;
    padding: 9px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 5px;
    font-family: system-ui;
}

.p32 {
    margin-bottom: 5px;
    font-family: system-ui;
}

.p34 {
    font-size: 12px;
    color: #929292;
    margin-bottom: 5px;
    font-family: system-ui;
}

.p3btn {
    background-color: #000;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    font-family: system-ui;
}

.part_3 {
    width: 25%;
    display: flex;
    padding: 20px;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: center;
    font-family: system-ui;
}

.rating_spn {
    font-size: 18px;
    font-weight: 600;
    font-family: system-ui;
}

.fa-star {
    color: #ffb81c;
}

.part_3rating {
    /* border: 1px solid; */
}

.p3div {
    width: 100%;
    text-align: center;
}

.nodataavail {
    height: 500px;
    align-content: end;
}

@media (max-width: 992px) {
    .vmp_card {
        flex-direction: column;
    }

    .part_1,
    .part_2,
    .part_3 {
        width: 100%;
    }

    .part_1 img {
        height: 250px;
        border-radius: 12px 12px 0 0;
    }

    .part_2 {
        border-right: none;
        border-bottom: 1px solid lightgray;
    }

    .part_3 {
        justify-content: space-between;
        flex-direction: row;
        align-items: center;
    }

    .p3div {
        text-align: right;
    }
}

@media (max-width: 767.9px) {

    .nodataavail {
        height: unset;
        align-content: center;
    }

    .part_2_img_div {
        flex-wrap: wrap;
        justify-content: center;
    }

    .p2id_img {
        width: 30%;
        text-align: center;
    }

    .part_3 {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .p3div {
        width: 100%;
        text-align: left;
    }

    .p3btn {
        width: 100%;
    }
}