img {
  max-width: 100%;
}


.hotel_search_box {
  padding: 30px 0;
}

.hotel_result_main {
  background: #f0f4ff;
  padding: 30px 0;
}
.hotel_result_main .heading {
  font-size: 25px;
  font-weight: 600;
  padding-bottom: 20px;
}

.hotel_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.hotel_filters {
  width: 23%;
}
.hotel_filters .title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.filter_box {
  padding: 15px;
  background: #fff;
  margin-bottom: 20px;
}
.filter_box label {
  font-size: 14px;
  font-weight: 500;
  display: block;
  padding-bottom: 8px;
}
.filter_box input {
  width: 100%;
  border: 1px solid #ddd;
  padding: 9px 12px;
}

.filter_price_box {
  padding: 15px;
  background: #fff;
  margin-bottom: 20px;
  border: 1px solid #ddd;
}

.select_room_star li {
  padding: 8px 0;
}
.select_room_star label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.select_room_star .star_icons {
  margin-left: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.select_room_star .star_icons img {
  margin: 0 1px;
}
.select_room_star input {
  margin-top: -1px;
}
.select_room_star span {
  font-size: 13px;
  vertical-align: middle;
  display: inline-block;
  margin-left: 5px;
  font-weight: 500;
}

.hotel_detail_row {
  width: 75%;
}

.high_low_select {
  background: #fff;
  text-align: right;
  padding: 8px 15px;
}
.high_low_select select {
  width: 198px;
  height: 40px;
  padding: 0 15px;
  cursor: pointer;
  border: 1px solid #ddd;
}

.hotel_booking_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #fff;
  margin-top: 20px;
}
.hotel_booking_info .left_box {
  width: 78%;
  border-right: 1px solid #ddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.hotel_booking_info figure {
  width: 40%;
  line-height: 0;
  background-image: url(../images/home/Image_not_available.png);
    background-size: contain;
}
.hotel_booking_info figure img {
  width: 100%;
  height: 150px;
  min-height: 150px;
}
.hotel_booking_info .text_info {
  width: 60%;
  padding: 15px;
}
.hotel_booking_info .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-weight: 600;
}
.hotel_booking_info small {
  padding: 5px;
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
  display: inline-block;
  background: #fe9508;
  margin-right: 5px;
}
.hotel_booking_info .icons {
  padding: 10px 0;
}
.hotel_booking_info p {
  font-size: 14px;
  font-weight: 500;
}
.hotel_booking_info p img {
  vertical-align: middle;
  margin-right: 5px;
}
.hotel_booking_info .right_box {
  width: 22%;
  text-align: right;
  padding: 25px 15px 15px;
}
.hotel_booking_info span {
  font-weight: 500;
}
.hotel_booking_info strong {
  display: block;
  font-size: 25px;
  font-weight: 600;
  padding-bottom: 5px;
}

.room_select_btn {
  display: inline-block;
  background: #0094D9;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 0 8px 0 8px; font-family: "Poppins", sans-serif;
}

.result_filters {
  display: none;
}

@media (max-width: 767px) {
  .hotel_search_box {
    padding-left: 15px;
    padding-right: 15px;
  }
  .result_filters {
    display: inline-block;
    font-size: 17px;
    font-weight: 500;
    background: #fe9508;
    color: #fff;
    padding: 8px 20px;
    letter-spacing: 1px;
    border-radius: 7px 0 7px 0;
    margin-bottom: 15px;
    cursor: pointer;
  }
  .result_filters img {
    vertical-align: middle;
  }
  .hotel_result_main .heading {
    font-size: 21px;
  }
  .hotel_filters {
    width: 85%;
    position: absolute;
    z-index: 9;
    left: -100%;
    bottom: 0;
    top: 0;
    right: 0;
    background: #f0f4ff;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    overflow-y: scroll;
    padding-bottom: 30px;
  }
  .hotel_filters.active {
    left: 0;
  }
  .hotel_detail_row {
    width: 100%;
  }
  .hotel_booking_info .left_box, .hotel_booking_info .right_box, .hotel_booking_info figure, .hotel_booking_info .text_info {
    width: 100%;
  }
  .hotel_booking_info figure img {
    height: 220px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .hotel_booking_info .text_info {
    border-bottom: 1px solid #ddd;
  }
  .hotel_booking_info .right_box {
    text-align: center;
    padding-top: 15px;
  }
}

.filter_box {
  padding: 5px 15px;
  background: #fff;
  margin-bottom: 20px;
}
.filter_box .del_filter_bu{
  font-size: 19px;
    background-color: #0094d9;
    color: white;
    padding: 5px 5px 0px 5px;
    border-radius: 10px;
}