/* Slider test*/
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }



.hotel_title {
  font-size: 18px;
  font-weight: bold;
  color: #0b8cd7;
} 
.right_side {
  text-align: right;
}
.common_bg {
  background: #000;
  color: #fff;
  border-radius: 3px;
  font-size: 12px;
}





.custom_area_tooltip ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
}
.custom_area_tooltip li {
  position: relative;
  cursor: pointer;
  font-size: 13px;
}

/* Tooltip styling */
.custom_tooltip {
  position: absolute;
  bottom: 100%; /* Position above the text */
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 10;  
}

/* Tooltip arrow */
.custom_tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
}

/* Show tooltip on hover */
.custom_area_tooltip li:hover .custom_tooltip {
  visibility: visible;
  opacity: 1;
}
.discription_widget li a {
  text-decoration: underline;
}
.left_side {
  border-left: 1px solid #ddd;
}
.left_side p {
  padding: 0;
  margin: 0;
  color: #000;
  font-size: 12px;  
}
.red_color {
  color: #d4111e;
}
.price_details small {
  display: block;
  color: #595959;
}
.cross_price {
  color: #d4111e;
    text-decoration: line-through;
    font-size: 12px;
}
.price_title {
  font-size: 16px;
  font-weight: bold;
}
.price_details .btn-primary {
  border-radius: 5px;
  text-transform: capitalize;
  font-size: 14px;
  background: #0b8cd7;
}
.gree_color {
  color: #008234;
}
.green_ul_widget li {
  font-size: 12px;
}
.hotel_listing .col-sm-4 {
  width: 30.33333%;
}
.hotel_listing .col-sm-5 {
  width: 44.66667%;
}
.left_title_widget {
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
  padding: 10px;
}
.left_title_widget .hotel_title_left {
  font-size: 15px;
  margin: 0;
  font-weight: bold;
}
.right_position_text .form-check {
  justify-content: space-between;
}
.common_title {
  font-size: 16px;
  padding: 0;
  margin: 0;
  color: #000;
  word-break: break-all;
  font-weight: bold;
}
.review_widget {
  line-height: 0.5!important;
  margin-right: -10px;
    margin-top: -5px;
}
.review_btn {
  border-radius: 5px;
}
.common_widget_btn .btn-primary {
  background: #003b95;
  border: none;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-top-right-radius: 6px !important;
  border-bottom-left-radius: 6px !important;
}
.common_widget_btn .btn-primary:focus {
  outline: none;
  box-shadow: none;
}
.favriout_btn {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px 15px 0 0;
  transition: all 0.5s ease-in-out 0s;
}
.favriout_btn:hover {
  background: #eee;
}

/* Tooltip styling */
.favriout_btn .save_text {
  position: absolute;
  bottom: 100%; /* Position above the button */
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  visibility: hidden;
  opacity: 0;
  white-space: nowrap;
  z-index: 10;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Tooltip arrow */
.favriout_btn .save_text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
}

/* Show tooltip on hover */
.favriout_btn:hover .save_text {
  visibility: visible;
  opacity: 1;
}
.notification_widget {
  background: #fff;
  border: 1px solid #ddd;
}
.close_alert_btn {
  margin: 7px 10px 0 0 !important;
}
.notification_widget .alert {
  margin: 0;
}
.hotels_details_widget p {
  margin: 0 0 20px 0;
  padding: 0;
  color: #000;
}
.hotels_details_widget p small {
  margin: 0 0 20px 0;
  padding: 0;
  color: #444;
}
.highlighted_area {
  background: #f0f6ff;
  border-radius: 5px;
}
.common_title_v2 {
  font-size: 14px;
  padding: 0;
  margin: 10px 0;
}
.price_card span {
  font-size: 13px;
}
.details_gallery_img {
  width: 100%;
  height: 358px!important;
  object-fit: cover;
}
.details_gallery_img_right {
  width: 100%;
  height: 175px!important;
  object-fit: cover;
}
.details_gallery_img_thumnail {
  width: 100%;
  height: 120px!important;
  object-fit: cover;
}
.detailer_banner .card {
  height: 100%;
}
.btn-primary {
  background: #4aa4d9!important;
  text-transform: capitalize!important;
  border: none!important;
  transition: all 0.5s ease-in-out 0s;
}
.btn-primary:hover {
  background: #2e8dc5!important;
  text-transform: capitalize!important;
  border: none!important;
}
.green_color {
  color:#008234;
}
.discription_room_type {
  margin: 10px 0;
}
.table_feature_text {
  font-size: 12px;
}
.table small {
  color: rgba(0, 0, 0, 0.5);
}
.table {
  font-size: 13px;
}
.table a {
  color: #4aa4d9;
}
.table li {
  font-size: 13px;
}
.table_title {
  font-size: 16px;
  text-decoration: underline;
  color: #4aa4d9;
}
.table th {
  background: #4aa4d9!important;
  color: #fff;
}
.hotel_listing .img-fluid {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.common_padding {
  padding: 2em 0 2em 0 !important;
}
.single_padding {
  padding-top: 10em!important;
}
.overlay_widget {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.more_title {
  font-size: 18px;
  color: #fff;
  text-decoration: underline;
  font-weight: bold;
}
.more_title:hover {
  color: #fff;
  text-decoration: underline;
}
@media all and (max-width:991px) {
  body {
    overflow-x: hidden;
  }  
  .hotel_listing .img-fluid {
    height: auto!important;
    margin: 0 0 15px 0;
  }
  .hotel_listing .col-sm-4 {
    width: 100%;
  }
  .hotel_listing .col-sm-5 {
    width: 100%;
  }
  .hotel_listing .col-sm-3 {
    width: 100%;
  }
  .right_side {
    text-align: left;
  }

  .search_widget .col-sm-4 {
    width: 100%;
    margin-bottom: 10px;
  }
  .search_widget .col-sm-3 {
    width: 100%;
    margin-bottom: 10px;
  }
  .search_widget .col-sm-2 {
    width: 100%;
  }
  .daterange_widget .tabs .tab {
    width: auto!important;
  }
  .daterangepicker .drp-calendar {
    max-width: 100%!important;
  }
  .daterange_widget {
    width: 100%!important;
    /* height: 100ch!important; */
  }
  .custom-footer li {
    display: block;
  }
  .custom-footer li a {
    display: block;
    margin: 0 0 10px 10px;
  }
  .custom-footer {
    border-top: none!important;
    background: #fff !important;
    padding: 10px;
  }
  .daterangepicker {
    width: auto!important;
  }
  .form_main_warp {
    min-height: auto!important;
  }
  .detailer_banner .col-sm-8 {
    width: 100%;
  }
  .detailer_banner .col-sm-4 {
    width: 100%;
  }
  .review_widget_area {
    text-align: right;
    margin: 10px 0 0 0;
  }
  iframe {
    width: 100%!important;
  }
  .details_gallery_img {
    height: auto!important;
    margin: 0 0 15px 0;
  }
  .details_gallery_img_right {
    height: auto!important;
    margin: 0 0 15px 0;
  }
  .facilities_details .col-sm-3 {
    width: 50%;
  }
  .hotels_details_widget .col-sm-8 {
    width: 100%;
  }
  .hotels_details_widget .col-sm-4 {
    width: 100%;
  }
  .common_table_widget {
    overflow-x: scroll;
  }
}
@media all and (max-width:600px) {
  .close_alert_btn {
    top: 18px!important;
  }
  .details_gallery_img {
    height: auto!important;
    margin: 0 0 5px 0;
  }
  .details_gallery_img_right {
    height: auto!important;
    margin: 0 0 5px 0;
  }
  .details_gallery_img_thumnail {
    height: auto!important;
    margin: 0 0 5px 0;
  }
  .facilities_details .col-sm-3 {
    width: 100%;
  }
}
.daterange_widget {
  width: 600px;
  height: auto; /* Dynamic height adjustment */
  z-index: 9;
  position: absolute !important;
  overflow: hidden; /* Prevent scrollbars */
  display: none; /* Initially hidden */
  transition: height 0.3s ease-in-out; /* Smooth transitions */
}
.daterange_widget .tabs .tab {
  padding: 4px 20px!important;
}
.list-img .img-fluid {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 5px;
}
.adult_widget_guest {
  position: absolute;
  z-index: 1050;
  background: white;
  border: 1px solid #ccc;  
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 10px;
  width: 238px;
  bottom: auto;
  margin: 20px 0 0 0;
  left: 0;
  right: 0;
}
.counter_form {
  height: 34px!important;
}
.ui-state-default, .ui-widget-content .ui-state-default {
  border: 1px solid #e7e7e7!important;
    background: #fff!important;
    text-align: center!important;
}
.ui-widget-header {
  border: 1px solid #fff!important;
  background: #fff!important;
}
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
  border: 1px solid #4fc1e9!important;
    background: #4fc1e9!important;
    color: #fff!important;
}
.small_font {
  font-size: 12px!important;
  font-weight: normal!important;
}
.select_common {
  border: 1px solid #ddd;
  border-radius: 5px;
}
.custom_calendar {
  background: url(../images/calendar.svg) no-repeat right;
  background-origin: content-box;
}