body {
  overflow-x: hidden!important;
}
.destination_widget_open {
  border: 1px solid #eee;
  position: absolute;
  right: 0;
  z-index: 9999;
  left: 0;
  width: 300px;
  margin: 15px 0 0 0;
}
.destination_widget_open ul {
  list-style: none;
  margin: 0;
}
.destination_widget_open li {
  display: flex;
  cursor: pointer;
  padding: 8px 10px;
  border-bottom: 1px solid #eee;
  transition: all 0.5s ease-in-out 0s;
  font-size: 13px;
  text-align: left;
}
.destination_widget_open li:hover {
  background: #eee;
}

.visiblity_hidden {
  visibility: hidden;
}

.ends {
  visibility: hidden !important;
}
p:empty {
  display: none;
}
.adults_kids_widget {
  width: 350px;
  position: absolute;
  right: 0;
  z-index: 999;
  display: none;
  margin-top: 15px;
  transition: all 0.3s ease;
  text-transform: capitalize;
}
.adults_kids_widget:not(.d-none) {
  display: block;
}
.adults_kids_widget p {
  font-size: 13px;
}

.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
  width: 50px;
  height: 40px;
}

.custom-footer {
  background: transparent !important;
  border-top: 1px solid #eee !important;
  position: absolute;
  bottom: -37px;
  width: 100%;
  padding: 30px 0 0 0;
}
.custom-footer ul {
  list-style: none;
}
.custom-footer li {
  display: inline-block;
  margin: 0 5px 0 0;
}
.custom-footer li a {
  border: 1px solid #000;
  border-radius: 40px;
  color: #000;
  text-decoration: none;
  transition: all 0.5s ease-in-out 0s;
}
.custom-footer li a:hover {
  background: #fcfcfc;
  color: #4aa4d9;
  border: 1px solid #4aa4d9;
}
.custom-footer li a.active {
  background: #e2f4ff;
  color: #4aa4d9;
  border: 1px solid #4aa4d9;
}

.daterangepicker td.disabled,
.daterangepicker option.disabled {
  text-decoration: none;
}

.information_widget {
  border-top: 1px solid #eee;
}

.slide_toogle .switch {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 20px;
}
.slide_toogle .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slide_toogle .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.slide_toogle .slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.slide_toogle input:checked + .slider {
  background-color: #4aa4d9;
}
.slide_toogle input:focus + .slider {
  box-shadow: 0 0 1px #4aa4d9;
}
.slide_toogle input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.slide_toogle .slider.round {
  border-radius: 34px;
}
.slide_toogle .slider.round:before {
  border-radius: 50%;
}

.custom_radio_widget {
  z-index: 9;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.custom_radio_widget .radio-inline {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.custom_radio_widget .radio-inline input {
  opacity: 0;
  position: absolute;
  z-index: -1;
}
.custom_radio_widget .radio-inline input:checked + .indicator {
  background: #4aa4d9;
  border-color: #4aa4d9;
  box-shadow: inset 0 0 0 4px #fff;
}
.custom_radio_widget .radio-inline input:focus + .indicator {
  outline: 2px solid #ddd;
}
.custom_radio_widget .radio-inline input:disabled + .indicator {
  border-color: #ccc;
  background: #f5f5f5;
  cursor: not-allowed;
}
.custom_radio_widget .radio-inline .indicator {
  width: 18px;
  height: 18px;
  border: 2px solid #888;
  border-radius: 50%;
  margin-right: 8px;
  display: inline-block;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.custom_radio_widget .radio-inline .indicator:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
}

.slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 9;
}
.slider-container .slider-wrapper {
  overflow: hidden;
  width: 600px;
}
.slider-container .slider-wrapper .slider {
  display: flex;
  gap: 10px;
  transition: transform 0.3s ease-in-out;
}
.slider-container .slider-wrapper .card {
  width: 100px;
  height: 100px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  padding: 10px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.5s ease-in-out 0s;
}
.slider-container .slider-wrapper .card:hover {
  background: #eee;
}
.slider-container .slider-wrapper .card .month {
  font-size: 16px;
  font-weight: bold;
  margin-top: 5px;
}
.slider-container .slider-wrapper .card .year {
  font-size: 14px;
  color: #666;
}
.slider-container .slider-btn {
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}
.slider-container .slider-btn:hover {
  background: #4aa4d9;
}
.slider-container .prev-btn {
  position: absolute;
  left: -10px;
  z-index: 9;
}
.slider-container .next-btn {
  position: absolute;
  right: -10px;
}
.slider-container .card_active {
  background: #eaf4ff !important;
  border: 1px solid #4aa4d9 !important;
  color: #4aa4d9 !important;
}
.slider-container .card_active .month {
  color: #4aa4d9 !important;
}
.slider-container .card_active .year {
  color: #4aa4d9 !important;
}

.footer_flexible {
  border-top: 1px solid #eee;
  z-index: 9;
  padding-top: 15px;
  position: absolute !important;
  bottom: auto;
  left: 0;
  width: 100%;
  padding: 15px 20px 0 0;
}

.search_widget {
  background: #094b72;
  border-radius: 5px;
}
.search_widget .input-group .form-control {
  padding: 0;
}
.search_widget .input-group .btn-outline-primary {
  border: 1px solid #ddd;
}
.search_widget .input-group .btn-outline-primary:hover {
  background: #4aa4d9;
}
.search_widget .btn-primary {
  background: #4aa4d9;
  border: 1px solid #4aa4d9;
  padding: 12px 20px;
  border-radius: 5px;
}
.search_widget .btn-primary:hover {
  background: #b4e3ff;
  color: #0b8cd7;
}
.search_widget .btn-primary:focus {
  outline: none;
  background: #4aa4d9;
}
.search_widget .form-control {
  padding: 10px 10px 10px 40px;
}
.search_widget .form-control:focus {
  outline: none;
  box-shadow: none;
}
.search_widget ::-webkit-input-placeholder {
  color: #1a1a1a;
  font-size: 14px;
}
.search_widget ::-moz-placeholder {
  color: #1a1a1a;
  font-size: 14px;
}
.search_widget :-ms-input-placeholder {
  color: #1a1a1a;
  font-size: 14px;
}
.search_widget :-moz-placeholder {
  color: #1a1a1a;
  font-size: 14px;
}

.common_icons_widget {
  position: absolute;
  top: 10px;
  left: 10px;
}

.children_widget .form-control {
  padding: 6px 10px;
  font-size: 13px;
  background: url(../images/select-bg.png) no-repeat right;
}

.other_widet_number {
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}
.other_widet_number .number {
  width: 50px;
  border: none;
}
.other_widet_number .number:focus {
  outline: none;
  box-shadow: none;
}

.common_select {
  font-size: 13px;
  width: 150px;
  margin-top: -5px;
  border-radius: 5px;
  background: url(../images/select-bg.png) no-repeat right;
  border: 1px solid #ddd;
  appearance: none;
  vertical-align: middle;
}
.common_select:focus {
  outline: none;
  box-shadow: none;
}

.daterangepicker td.active, .daterangepicker td.active:hover {
  background-color: #4aa4d9;
}

.btn-outline-primary {
  border: 1px solid #4aa4d9;
  color: #4aa4d9;
}
.btn-outline-primary:hover {
  background: #f6f6f6;
  color: #0b8cd7;
}

.form_main_warp p {
  color: #1b1b1b;
  font-weight: bold;
}
.transparent_bg {
  background: transparent!important;
}
.search-section .search-box .left-part .search-body .form-control {
  font-size: 14px;
}
.children_widget .form-control {
  padding: 6px 10px !important;
  font-size: 13px !important;
  font-weight: normal !important;
  background: url(../images/select-bg.png) no-repeat right;
  border: 1px solid #444 !important;
  text-align: left!important;
  margin: 0 0 5px 0 !important;
}
.children_widget .form-control:focus {
  outline: none;
  box-shadow: none;
}
.guest-detail .form-control:focus {
  outline: none;
  box-shadow: none;
}
.guest-detail textarea {
  resize: none;
}
.common_select_v1 {
  background: url(../images/down_arrow.svg) no-repeat;
  background-position: calc(100% - 6px) center;
}
.heading_title {
  font-size: 14px;
  font-weight: bold;
}
.custom_calendar_v1 {
  background: url(../images/calendar_v2.svg) no-repeat right #fff;
  background-origin: content-box;
}
.ui-state-active, .ui-widget-content .ui-state-active {
  border: 1px solid #157ca0 !important;
  background: #157ca0 !important;
}
.destination_widget_open {
  height: auto;
  max-height: 300px;
  overflow-y: auto;
}
.form-control:focus {
  outline: none;
  box-shadow: none;
}

.airport_widget_open ul {
  list-style: none;
  margin: 0;
}
.airport_widget_open li {
  display: flex;
  cursor: pointer;
  padding: 8px 10px;
  border-bottom: 1px solid #eee;
  transition: all 0.5s ease-in-out 0s;
  font-size: 13px;
  text-align: left;
}
.airport_widget_open li:hover {
  background: #eee;
}
.common_padding_top_v2 {
  padding-top: 150px!important;
}
.breadcrumb_widget {
  border-top: 1px solid #eee;
  padding-bottom: 10px;
}
.details_image_left {
  height: 430px;
  object-fit: cover;
}
.details_image_right {
  height: 215px;
  object-fit: cover;
}
.room_widget_details {  
  width: 250px;
}
.room_widget_details .img-fluid {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.small_img {
  height: 200px;
}
header.inner-page {
  background-color: rgba(0, 0, 0, 0.18);
}
.right_widget .form-control {
  font-size: 14px;
  text-transform: capitalize;
  color: #495057;
}
.header_active {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--color-theme-primary);
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}
.breadcrumb-content h2:empty {
  display:none;
}
.card-price small {
  font-size: 12px;
  font-weight:normal;
}
.leaflet-popup-content {
  margin: 5px !important;
  padding: 0 !important;
}
.hotel-image {
  width: 150px;
  height: auto;
  border-radius: 8px;
}
.hotel-name {
  display: block;
  font-size: 14px;
  font-weight: bold;
  margin-top: 5px;
}
.leaflet-popup-close-button {
  background: #fff!important;
}
.leaflet-container a {
  margin: 5px 0 0 0;
  display: block;
}
.hotel-rating {
  margin: 5px 0;
}
#map, .leaflet-container {
  border: none !important;
  box-shadow: none !important;
}
.leaflet-right .leaflet-control {
  display: none;
}
.menu-part li {
  font-size: 13px;
}
/* .details_page_widget .price-part {
  display: block!important;
}
.details_page_widget .right-part {
  text-align: left!important;
} */
.favrioute_tag {
  color: #000;
  font-size: 20px;
} 
#map {
  height: 400px;
  width: 100%;
}
.ui-datepicker {
  z-index: 999!important;
}

.user_widget.user {
  padding: 5px 12px!important;
}
.user_widget .dropdown-toggle::after {
  display: none;
}
.user_widget li {
  width: 100%!important;
  margin: 0!important;
}
.user_widget .dropdown-item {
  padding: 10px;
  transition: all 0.5 ease-in-out 0;
}
.user_widget .dropdown-item:active {
  background: transparent;
}
.user_widget .dropdown-menu i {
  color: #1a1a1a!important;
  margin: 0 5px 0 0;
  font-size: 14px !important;
  transition: all 0.5 ease-in-out 0;
}
.user_widget .dropdown-item:hover {
  color: var(--color-theme-primary);
}
.user_widget .dropdown-item:hover i {
  color: var(--color-theme-primary)!important;
}
.color_black {
  color: #000;
}
.equal_height {  
  height: 100%;
}
.price_widget {
  text-align: right;
}
.price_widget del {
  color: #d4111e;
}
.btn_small_font {
  font-size: 12px;
}
.card-text {
  color: #000;
}
.review_main {
  width: 30px;
  height: 30px;
  background: var(--color-theme-primary);;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 5px;
  margin: 5px 0 0 0;
}
.top_line_height {
  line-height: 5px;
}
.hotel_list_img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}
.top_btn_margin {
  margin-top: 70px;
}
.favriout_btn {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  transition: all 0.5s ease-in-out;
}
.favriout_btn:hover {
  background: #f1f1f1;
}
.small_icons {
  height: 15px;
  margin: 0 5px 0 0;
}
.svg_small {
  height: 20px;
}
.section-title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 5px;
}
.info-text {
  font-size: 12px;
  color: #6c757d;
  display: flex;
  align-items: center;
}
.info-text i {
  margin-left: 5px;
  font-size: 14px;
}
.option {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.option label {
  display: flex;
  align-items: center;
  font-size: 14px;
}
.option input {
  margin-right: 10px;
}
.disabled-text {
  color: #6c757d;
  font-size: 12px;
}
.disabled {
  color: #adb5bd;
}
.price {
  font-weight: bold;
  font-size: 14px;
}
.divider {
  border-top: 1px solid #ddd;
  margin: 15px 0;
}
.price-info {
  font-size: 24px;
  font-weight: bold;
  line-height: 20px;
}
.small-text {
  font-size: 12px;
  color: #6c757d;
}
.warning-text {
  color: red;
  font-size: 11px;
  margin-top: 5px;
}
.note {
  font-size: 11px;  
  color: #6c757d;
  margin-top: 5px;
}
.border_bottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card_list_details li {
  margin: 0 10px 0 0;
}
.card_list_details p {
  color: #000;
}
.card-img-top {
  height: 280px;  
  object-fit: cover;
}
.details_img {
  height: 400px;
  object-fit: cover;
}
.amenities-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: #eef2f8;
  padding: 20px;
  border-radius: 10px;
}
.amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 14px;
  color: #000;
}
.icon {
  font-size: 20px;
  margin-bottom: 5px;
}
.accessibility li {
  display: list-item;
  line-height: 24px;
}
.accessibility ul {
  margin: 0 0 0 20px;
}
.details_amenities p {
  color: #000;
  padding: 0 0 5px 0;
  margin: 0;
}
.rating_detail {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
.rating-score {
  background-color: var(--color-theme-primary);;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 18px;
  margin-right: 10px;
}
.rating-text {
  color: #000;
}
.reviews {
  font-size: 16px;
  color: #555;
}
.common_li_widget li {
  margin: 0 10px 0 0;
  font-size: 12px;
}
.common_li_widget li i {
  margin: 0 3px 0 0;
}
.hotel_listing_common small {
  color: #595959;
  font-size: 11px;
  font-weight: normal;
}
.hotel_listing_common_v2 small {
  color: #000;
}
.common_li_widget_facility li {
  margin: 0 0 10px 0;
  font-size: 12px;
  font-weight: normal;
  display: block;
  background: url(../images/check_small.svg) no-repeat left;
  padding: 0 0 0 20px;
  color: #000;
}
.home_widget p {
  font-weight: normal!important;
  color: #000!important;
  font-family: inherit;
}
.hotel_details_img {
  height: 250px;
  object-fit: cover;
}
.info_cart {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  text-transform: capitalize;
  font-size: 14px;
}
/* .info_cart span:first-child {
  color: #666;
} */
.info_cart span:last-child {
  font-weight: bold;
  text-align: end;
  text-transform: math-auto;
}
.bullet_widget ul {
  margin: 0 0 0 15px;
}
.bullet_widget li {
  display: revert;
  font-size: 13px;
  padding: 0 0 5px 0;
}
.bullet_widget p {
  color: #000!important;
  font-size: 14px!important;
  line-height: 20px!important;
}
.separate_border {
  background: #ababab;    
}
.total_price_details {
  font-size: 20px;
  line-height: 20px;
}
.bullet_widget small {
  display: block;
  color: rgba(0, 0, 0, 0.5);
}
.price_right {
  text-align: right;
}
.delet_btn {
  background: transparent!important;
  color: #f00;
}
.custom_v2_tooltip {
position: relative;
display: inline-block;
}
.custom_v2_tooltip .tooltiptext {
visibility: hidden;
background-color: black;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px 10px; /* More padding for auto width */
position: absolute;
z-index: 1;
bottom: 115%; /* Adjusted to center */
left: 50%;
transform: translateX(-50%); /* Centering dynamically */
white-space: nowrap; /* Prevents breaking text into new lines */
font-size: 13px;
opacity: 0;
transition: opacity 0.3s;
}
.custom_v2_tooltip .tooltiptext::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
transform: translateX(-50%);
border-width: 5px;
border-style: solid;
border-color: black transparent transparent transparent;
}
.custom_v2_tooltip:hover .tooltiptext {
visibility: visible;
opacity: 1;
}
 .delet_btn {
    background: transparent!important;
    color: #f00;
 }
.common_widget input::-webkit-input-placeholder {
  color: #000;
  font-size: 13px;
}
.common_widget input::-moz-placeholder {
  color: #000;
  font-size: 13px;
}
.common_widget input:-ms-input-placeholder {
  color: #000;
  font-size: 13px;
}
.common_widget input:-moz-placeholder {
  color: #000;
  font-size: 13px;
}
.common_widget .form-control {
  font-size: 13px;
}
.return_flight {
  margin-top: -30px;
}
.autosuggestion_widget_flight {
  width: 356px;
}
.selector_box_flight_counter {
  width: 250px;
}
#panel {  
  display: none;
}
.flight-card {
  background: white;
  width: 100%;
  border-radius: 5px;
}
.small_title_card {
  font-size: 13px;
  font-weight: bold;
}
.beggage_widget p {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 5px 0;
  color: #000;
}
.divider_v2 {
  border-top: 1px solid rgba(0, 0, 0, 0.125);
  margin: 5px 0;
  opacity: 0.1;
}
.common_link {
  font-size: 13px;
  transition: all 0.5s ease-in-out 0s;
}
.common_link:hover {
  text-decoration: underline;
}
.airport-name {
  width: 200px;
}
.non_stop {
  top: -16px!important; 
}
.bound_widget {
  color: #000;
  font-size: 13px;
  padding-left: 15px;
}
.common_price_details {
  width: 100%;
}
.common_price_title {
  font-size: 20px;
  line-height: 20px;
}
.common_price_details small {
  display: block;
  color: #595959;
  font-size: 11px;
  font-weight: normal;
}
.right_price_details {
  position: absolute;
  top: -185px;
  right: 25px;
}
.right_price_single_details {
  margin: 0 10px 0 0;
}
.right_gap {
  padding: 0 10px 0 0;
}
.common_btn {
  width: 170px;
}
.btn_inline_block {
  display: inline-block!important;
}
.view_gap {
  padding-left: 10px;
}
.single_card_top {
  position: absolute;
  top: -118px;
  right: 25px;
}
.single_card_height {
  height: 200px;
}
.card_top {
  margin-top: 40px;
}
.form_flight .form-control {
  font-size: 13px;
}
.each_leg {
  border: 1px solid #eaecf0;
  border-radius: 10px;
}
.view_link {
  text-transform: capitalize;
  font-size: 13px;
  position: relative;
  z-index: 1;
}
.details_bg {
  background: #f9fafb;
  border-radius: 10px;
}
.time_title {
  font-size: 16px;
}    
.flight_info {
  margin: -25px 0 0 15px;
}
.stop_widget_info {
  border-top: 1px solid #e4e7e9;
  border-bottom: 1px solid #e4e7e9;
  color: #4a4e51;
}
.destination_color {
  color: #b1b1b3;
}
.info_color {
  color: #475467;
}
.hr_seprate_border {
  border-top: 1px solid #d0d5dd;
  background-color: transparent;
  opacity: 1;
}
.each_leg i {
  color: var(--color-theme-primary);
}
.flight_title_color {
  color: #344054;
  font-size: 14px;
}
.text-muted {
  color: #98a2b3!important;
} 
.common_title_v2 {
  font-size: 16px;
  padding: 0;
  margin: 0;
  color: #344054;
  word-break: break-all;
}
.flight-details i {
  color: var(--color-theme-primary);
}
.flight_name_width {
  width: 150px;
}
.card_details {
  margin-top: -35px;
  padding-top: 40px !important;
}
.card_top_v2 {
  margin-top: 30px;
}
.common_radius {
  border-radius: 10px;
}
.common_price_title_v2 {
  font-size: 25px;
}
.dis_line_height {
  line-height: 18px;
}
.icons_width {
  width: 16px;
}
.common_bottom_border {
  border-bottom: 1px solid #e2e2e2!important;
}
.accordion-button:focus {
  outline: none;
  box-shadow: none;
}


.common_icons_width {
  width: 15px;
}
.common_location_left {
  margin-left: 20px;
}
.transfer-container {
  max-width: 550px;
  background: white;
}
.transfer-option {
  display: flex;
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
  border: 1px solid transparent;
}
.transfer-option input {
  display: none;
}
.radio-custom {
  width: 16px;
  height: 16px;
  border: 2px solid #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: all 0.3s;
}
.radio-custom::after {
  content: "";
  width: 8px;
  height: 8px;
  background: transparent;
  border-radius: 50%;
  transition: background 0.3s;
}
.transfer-option input:checked + label .radio-custom {
  border-color: var(--color-theme-primary);;
}
.transfer-option input:checked + label .radio-custom::after {
  background: var(--color-theme-primary);;
}
.transfer-option label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-radius: 8px;
  color: #6c757d;
}
.transfer-option input:checked + label {
  color: var(--color-theme-primary);;
  font-weight: bold;
}
.transfer-option input:checked + label .common_icon {
  filter: brightness(0) saturate(100%) invert(72%) sepia(18%) saturate(590%) hue-rotate(160deg) brightness(102%) contrast(94%);
}
.common_icon {
  width: 20px;
  height: 20px;
}
.common_details {
  display: flex;
  align-items: center;
  gap: 15px;
}
.common_details span {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: normal;
}
.text-container {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1; /* Ensures left alignment */
}
.right_icons_width {
  width: 50px;
}
.bullet_width {
  font-size: 10px;
  color: var(--color-theme-primary);
}
.hr_seprate_border_blue {  
  border-top: 1px solid var(--color-theme-primary);
    background-color: transparent;
    opacity: 1;
}
.checkbox_widget {
  width: 100%;
}
.checkbox_widget label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
}
.checkbox_widget input[type="checkbox"] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #bfc6d1;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  margin-right: 10px;
  cursor: pointer;
  vertical-align: middle;
}
.checkbox_widget input[type="checkbox"]:checked {
  background-color: var(--color-theme-primary);
  border-color: var(--color-theme-primary);
}
.checkbox_widget input[type="checkbox"]:checked::after {
  content: '\f00c';
  font-family: FontAwesome;
  font-size: 12px;
  color: white;
  position: absolute;
  left: 1px;
  top: -1px;
}
.checkbox_widget .inline {
  display: flex;
  align-items: center;
  gap: 20px;
}
.bottom_left_gap {
  margin-left: 1.7rem;
}
.little_minus_top {
  margin-top: -15px;
}
.font_medium {
  font-weight: 550;
}
.common_textarea {
  height: 100px;
  resize: none;
}
.common_widget_all input::-webkit-input-placeholder {
  font-size: 13px;
  color: #212529;  
  opacity: 0.6;
}
.common_widget_all input::-moz-placeholder {
  font-size: 13px;
  color: #212529;
  opacity: 0.6;
}
.common_widget_all input:-ms-input-placeholder {
  font-size: 13px;
  color: #212529;  
  opacity: 0.6;
}
.common_widget_all input:-moz-placeholder {
  font-size: 13px;
  color: #212529;  
  opacity: 0.6;
}
.common_widget_all textarea::-webkit-input-placeholder {
  font-size: 13px;
  color: #212529;  
  opacity: 0.6;
}
.common_widget_all textarea::-moz-placeholder {
  font-size: 13px;
  color: #212529;  
  opacity: 0.6;
}
.common_widget_all textarea:-ms-input-placeholder {
  font-size: 13px;
  color: #212529;  
  opacity: 0.6;
}
.common_widget_all textarea:-moz-placeholder {
  font-size: 13px;
  color: #212529;  
  opacity: 0.6;
}
.timeline {
  position: relative;
  padding-left: 20px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 15px;
  bottom: 35px;
  width: 2px;
  background: var(--color-theme-primary);
}
.timeline-item {
  position: relative;
  padding-left: 0;
  margin-bottom: 10px;
}
.timeline-item .timeline-dot {
  position: absolute;
  left: -18px;
  top: 3px;
  width: 10px;
  height: 10px;
  background: var(--color-theme-primary);
  border-radius: 50%;
}
.card-custom {
  background-color: #f8f9fa;  
  display: flex;
  padding: 12px;
  align-items: center;
  font-size: 14px;
  gap: 10px;
}
.price-card {
  background-color: #f8f9fa;  
  display: flex;
  padding: 12px;
  justify-content: space-between;
  font-size: 14px;
}
.timeline h6 {
  font-size: 14px;
}
.small_font_v2 {
  font-size: 13px;
}
.calendar_icons {
  margin: 0 5px 0 0;
  vertical-align: sub;
}
.phone_input {
  display: flex;
  align-items: center; 
  border: 1px solid #ced4da;  
  border-radius: 0.25rem;
  font-size: 14px;
  padding: 5px;
  transition: all 0.5s ease-in-out 0s;
}
.phone_input:focus-within {
  border-color: #86b7fe;
}
.country-code {
  border: none;
  background: transparent;
}
.country-code:focus {
  outline: none;
  border: none;
  background: transparent;
}
.phone_input input {
  border: none;
  outline: none;
  flex: 1;
}
.form-control {
  font-size: 14px;
}
.cab_banner_widget p {
  font-size: 16px;
}
.radio-container {
  display: flex;
  gap: 10px;
  justify-content: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: normal;
  width: 100%;
}
.radio-container input {
  display: none;
}
.radio-container .radio-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 50px;
  border-radius: 8px;
  border: 2px solid #ddd;
  background-color: #f8f9fa;
  font-size: 16px;
  font-weight: bold;
  color: gray;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.radio-container input:checked + .radio-label {
  color: var(--color-theme-primary);;
  border-color: var(--color-theme-primary);;
  background-color: white;
}
.trnsfer_btn {
  height: 46px!important;
  margin-top: 2px;
}
.common_gray_bg {
  background-color: #f8f9fa;
}
.hotel_distance small {
  font-size: 12px;
  margin: -5px 0 0 0;
  color: #77878f;
  z-index: 99;
  position: relative;
}
.custom_outline_btn {
  border: 1px solid  var(--color-theme-primary);
  border-radius: 5px;
  color: var(--color-theme-primary)!important;
  transition: all 0.5s ease-in-out 0s;
  font-size: 14px;
  font-weight: normal;
}
.custom_outline_btn:hover {
  background: var(--color-theme-primary);
  color: #fff!important;
}
.active_cards_widget .slick-slide {
  margin: 0 10px;
}
.active_cards_widget .slick-track {
  display: inline-block;
}
.hotel_details_img_v2 {
  height: 200px;
  object-fit: cover;
}
.active_cards_widget .accordion-button {
  padding: 0;
}
.active_cards_widget .accordion-button:not(.collapsed) {
  background: transparent;
}
.active_cards_widget .accordion-body {
  padding-top: 10px!important;  
}
/* transfer details*/
.common_filter .info-box {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.common_filter .info-value {
  margin-left: auto;
  color: #475467;  
}
.quantity-btn {
  width: 25px;
  height: 25px;
  border: 1px solid #98a2b3;
  background-color: transparent;
  color: #98a2b3;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.quantity-input {
  width: 30px;
  text-align: center;
  border: none;
  color: #98a2b3;
  background: transparent;
}
/* .active_count {
  border: 1px solid #00AEEF;
  background-color: #E6F7FF;
  color: #00AEEF;
} */
.quantity-btn.active_count {
  border: 1px solid #00AEEF;
  background-color: #E6F7FF;
  color: #00AEEF;
  cursor: pointer;
}
.pickup-date-container .pickup-date:focus {
  outline: none;
  box-shadow: none;
}
.time_picker_dropdown {
  border: none;
  padding: 0 5px;
  appearance: none;
  width: auto;
  white-space: nowrap;
  padding: 0 25px 0 0;
} 
.time_picker_dropdown:focus {
  outline: none;
  box-shadow: none;
} 
.pickup-date {
  text-align: right;
  direction: rtl;
  width: 100px !important;
}
.accordion .accordion-body {
  padding: 1rem 0!important;
}
.transfer_price_details {
 width: 200px;
  margin-left: 10px;
  color: #6c757d;
}
.mobile_view_price {
  display:none
}
.common_widget_white:hover img {
  filter: brightness(0) saturate(100%) invert(78%) sepia(28%) saturate(1447%) hue-rotate(168deg) brightness(99%) contrast(92%);
}
.active_cards_widget .info_cart {
  margin-bottom: 10px;
}
.active_cards_widget .price_right {
  line-height: 18px;
}
.cart_widget {
  height: auto;
  max-height: 600px;
  overflow-y: auto;
}
.border_widget {
  border-top: 1px solid #e2e2e2;
}
.active_section {
  padding-top: 20px!important;
  padding-bottom: 20px!important;
}
.active_cards_widget .accordion-button {
  text-align: left;
}
@media all and (max-width:768px) {  
  .common_widget_all .col-sm-6 {
    width: 100%;
  }
  .checkbox_widget .inline {
    display: block;
  }  
  .transfer-container {
    max-width: 100%;
  }
  .little_minus_top {
    margin-top: 0;
  }
.info-box {
  margin: 0 0 5px 0;
}
  .radio-container {
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.radio-container .radio-label {
    width: 100%;
}
  .right_price_details {
    position: static;
    margin-top: 30px;
  }
  .flight_name_width {
    width: 100px;
  }
  .single_card_top {
    position: static;
    margin-top: 30px;
  }
  .single_card_height {
    height: auto;
  }
  .single_card_top .right_side {
    text-align: center;
  }
  .right_price_details .right_side {
    text-align: center;
  }
  .flight-detail-sec .detail-bar .detail-wrap .airport-part {
    width: 100%;
    margin-top: 15px;
  } 
  .common_btn {
    margin: auto !important;
    display: block !important;
  }
  .flight-search .flight-search-detail .form-group label {
    margin-bottom: 5px;
  }
  .hide_sm {
    display: none!important;
  }    
}
@media all and (max-width:991px) {
  .price_right br {
    display: none;
  }
  .selector_box_flight_counter label {
    color: #000!important;
  }
  .flight-search .flight-search-detail {
    position: absolute;
    height: 100%;
    align-items: normal;
  }
  .flight-search .flight-search-detail {
    width: 100%!important;
  }
  .flight-search .flight-search-detail label {
    color: #fff;
  }
  .flight-search-detail .col-sm-2 {
    width: 100%;
  }
  .visiblity_hidden {
    display: none;
  }
  .guest-detail .col-sm-3 {
    width: 50%;
  }
  .guest-detail .col-sm-2 {
    width: 50%;
  }
  .guest-detail .col-sm-4 {
    width: 50%;
  }
  .hotel_details_img {
    height: auto;
  }
  .hotel_details_img_v2 {
    height: auto;
  }
  .details_main .col-sm-6 {
    width: 100%;
  }
  .card-img-top {
    height: auto;  
  }
  .amenities-container {
    grid-template-columns: repeat(3, 1fr);
}
  .details_image_left {
    height: auto;
  }
  .details_image_right {
    height: auto;
  }
  .hotel_list_main .col-sm-6 {
    width: 100%;
  }
  .hotel_list_main .col-md-4 {
    width: 100%;
  }
  .hotel_list_main .col-md-8 {
    width: 100%;
  }
  .hotel_list_main .col-sm-7 {
    width: 100%;
  }
  .hotel_list_main .col-sm-5 {
    width: 100%;
  }
  .hotel_list_main .col-md-10 {
    width: 100%;
  }
  .hotel_list_main .col-md-2 {
    width: 100%;
  }
  .hotel_list_img {
    width: 100%;
  }  
  .price_widget {
    text-align: left;
  }
  .top_line_height {
    line-height: 10px;
  }
  .top_btn_margin {
    margin-top: 20px;
  }
}
@media all and (max-width:600px) {  
  .mobile_view_price {
    display: block!important;
    text-align: left;
    width: 100%;
  }
  .transfer_price_details {
    display: none;
    margin: 10px 0 0 0;
  }
  .common_margin_widget.mb-2 {
    margin: 0;
  }  
  .common_margin_widget {
    margin: 0 0 10px 0;
  }
  .btn_submit_widget {
    margin-top: 10px;
  }
  .timeline .col-sm-10 {
    width: 83.33333%;
  }
  .timeline .col-sm-2 {
    width: 16.66667%;
  }
  .amenities-container {
    grid-template-columns: repeat(2, 1fr);
}
.guest-detail .col-sm-3 {
  width: 100%;
}
.guest-detail .col-sm-2 {
  width: 100%;
}
.guest-detail .col-sm-4 {
  width: 100%;
}
  header .menu .header-right .front-setting select {
    padding: 5px;
    font-size:13px;
    text-align: center;
  }
  header .menu .header-right .user {
    padding: 4px 10px;
  }
  header .menu .header-right .setting {
    display: none;
  }
  header .menu .header-right li + li {
    margin-left: 0;
  }
  .search-section .search-box .left-part .search-body {
    width: 100%!important;
  }
  .destination_widget_open {
    width: 100%;
  }
  .ui-datepicker {
    right: 0;
    margin: auto;
  }
  .adults_kids_widget {
    width: 100%;
  }
  .room_widget_details {  
    width: 100%;
  }
  .room_widget_details .img-fluid {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .search-section .search-box .left-part .search-body:after {
    background: transparent!important;
  }
  .single-section .single-sidebar .price-part .right-part {
    width: auto;
  }
  .icons_responsive {
    margin: -15px 0 15px 0;
  }
  .hotel_icons_responsive {
    margin: -25px 0 5px 0;
    position: absolute;
    right: 0;
  }
  .hotel_list_widget {
    margin: 0 0 10px 0;
  }
  .rating_widget {
    margin: 0 0 10px 0;
  }
}
.loop_border {
    border-bottom: 1px solid #eaecf0;
    padding-bottom: 15px;
}        
.card_shadow {
    box-shadow: 0 0.125rem 0.90rem rgba(0, 0, 0, 0.050) !important;
}
.flight_bg {
    background: #f2f4f7;
    border-radius: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
}
.divder_between {
    width: 30px;
    background: #d0d5dd;
    height: 1px;
}       
.card_width {
    width: 100px;
}
.active_cards_widget_v2 .slick-slide {
    margin: 0 10px 0 0;
}
.common_card_hover .card {
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  color: #475467;
}
.common_card_hover:hover .card {
border: 1px solid var(--color-theme-primary);
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.10);
z-index: 10;
}

@media all and (max-width: 600px) {
    .card_width {
        width: auto;
    }
}
.card_width .heading_title {
  line-height: 20px!important;          
}