/* 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 */


/* rooms */
#room_details_section {
    padding: 6rem 0;
}

.booking-list {
    background-color: #cfe2ff;
    padding: 40px 20px;
    border-radius: 3px;
    /*box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;*/
border:1px solid lightgrey;
}

.room_details_form input,
.room_details_form select {
    width: 100%;
    /*padding: 20px 10px;*/
    border-radius: 8px;
    border: none;
    /* height: 45px; */
    font-size: 18px;
    /*box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;*/
}

#guestTrigger {
    /*box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;*/
}


.room_details_form label {
    font-size: 13px;
    font-weight: 600;
    color: grey;
}

.guest-dropdown {
    display: none;
    position: absolute;
    background-color: #fff;
    border: 1px solid lightgray;
    padding: 18px;
    border-radius: 3px;
    width: 100%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    /* top: 2rem; */
}

.guest-row {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e8e7e7;
    padding-bottom: 12px;
}

.guest-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.guest-row button {
    width: 40px;
    height: 40px;
    border: 1px solid lightgray;
    background: #fff;
    margin: 0 10px;
}

.room-details-content {
    padding-top: 1.5rem;
}

.room-details-content p {
    font-size: 18px;
    color: var(--grey_color);
}

.discount_div_form {
    text-align: center;
    margin-top: 0;
}

.discount_div_form button {
    background-color: #000;
    width: 100%;
    padding: 15px 10px;
    line-height: 25px;
    font-size: 19px;
    border-radius: 3px;
}

.price_span_white {
    color: #fff;
}

.room-details-amenities h4 {
    font-size: 30px;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.room-amenities-item ul {
    padding: 0;
    list-style-type: none;
}

.room-amenities-item ul li .bi-check2 {
    color: var(--theme-gold);
    font-size: 24px;
    margin-right: 10px;
}

.room-amenities-item ul li {
    display: flex;
    border-bottom: 1px solid #efefef;
    font-size: 13px;
    font-weight: 100;
    padding: 10px 0 0px 0;
}


.gallery-thumbs .swiper-slide img,
.gallery-top .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.gallery-thumbs {
    height: 100px;
    box-sizing: border-box
}

.gallery-thumbs .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: .4;
    cursor: pointer;
    border-radius: 10px;
}

.gallery-top {
    width: 100%;
    height: 400px;
    margin-bottom: 10px
}



.swiper {
    position: relative;
}

.swiper-button-next2,
.swiper-button-prev2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 25px;
    color: #000;
    z-index: 10;
    cursor: pointer;
}

.swiper-button-next2 {
    right: 10px;
}

.swiper-button-prev2 {
    left: 10px;
}

.swiper-button-next2::after {
    content: '›';
    font-size: 75px;
    text-shadow: 1px 1px 4px #fff;
}

.swiper-button-prev2::after {
    content: '‹';
    font-size: 75px;
    text-shadow: 1px 1px 4px #fff;
}


.modal-body p {
    font-size: 18px;
    color: var(--grey_color);
}

.gol_gtr_btn {
    background-color: var(--theme-gold);
    border-radius: 5px;
    padding: 8px 12px;
    border: 1px solid var(--theme-gold);
    color: #fff;
    font-size: 18px;
}

.border_gtl_btn {
    border-radius: 5px;
    font-size: 18px;
    padding: 8px 12px;
    border: 1px solid var(--grey_color);
}

/* rooms */