@charset "UTF-8";
/* Text meant only for screen readers. */
#showNotice {
  min-width: 250px;
  margin-left: -125px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  font-size: 17px;
}

#showNotice {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}
@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
/*********meeting points***************/
#block_meeting_points_default {
  border-top: 1px solid #aaa;
  margin-bottom: 20px;
}

.meeting_point_default {
  margin: 0;
  border: 1px solid #aaa;
  border-top: 0;
  padding: 5px;
  font-size: 14px;
  font-weight: 500;
}
.meeting_point_default.meeting_point_default_selected {
  background-color: yellowgreen;
  color: #fff;
  box-shadow: 2px 2px 2px #aaa;
}
.meeting_point_default.meeting_point_default_selected a {
  background-color: #fff;
  padding: 2px;
}
.meeting_point_default h4 {
  font-size: 14px;
  line-height: normal;
  margin-bottom: 2px;
}

#google_map_meeting_points, #google_map_address, #google_map_address_with_direction {
  height: 450px;
}

#block_meeting_points h3 {
  margin-bottom: 5px;
}

#meeting_points_result {
  flex-basis: 100%;
  margin: 2px 0;
}
#meeting_points_result .meeting_point {
  flex-basis: 100%;
  margin: 2px 0;
  border: 1px solid #aaa;
  border-radius: 5px;
  padding: 5px;
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
}
#meeting_points_result .meeting_point.meeting_point_selected {
  border-color: yellowgreen;
  border-width: 2px;
}
#meeting_points_result .meeting_point_description {
  flex-basis: 70%;
}

.meeting-points {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
}

.meeting_points_search {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  margin: 5px 0;
  flex-basis: 100%;
  border: 1px solid #aaa;
  border-radius: 5px;
  padding: 5px;
}

.meeting-points .address-autocomplete {
  width: 100%;
  flex-basis: 70%;
  font-size: 14px;
  line-height: normal;
  margin-bottom: 2px;
}
.meeting-points h4 {
  font-size: 14px;
  line-height: normal;
  margin-bottom: 2px;
}
.meeting-points h4 a {
  float: right;
}
.meeting-points button {
  height: min-content;
  padding: 5px 10px;
  line-height: unset;
  font-size: 14px;
  font-weight: 500;
}

#travel_mode_panel, #travel_mode_panel_modal {
  margin: 10px;
  padding: 5px;
  background-color: #fff;
}

#block_address_map_with_direction .address-autocomplete {
  margin-top: 10px;
  padding: 5px;
  background-color: #fff;
  width: 60%;
}

@media (max-width: 500px) {
  .meeting-points, .meeting_points_search {
    justify-content: center;
  }

  .meeting-points .address-autocomplete {
    flex-basis: 100%;
  }

  #meeting_points_result .meeting_point {
    justify-content: center;
  }
  #meeting_points_result .meeting_point_description {
    flex-basis: 100%;
  }
}
/************Booking form*****************/
.booking_form_step_num {
  margin-right: 10px;
  border-radius: 100%;
  background-color: #F7931E;
  color: #fff;
  padding: 4px;
  width: 26px;
  height: 26px;
  display: inline-block;
  line-height: 1em;
  box-sizing: border-box;
  font-size: 16px;
  text-align: center;
  display: none;
}

.booking-form-block {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--e-global-color-border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.booking-form-block.booking-services-block {
  padding-bottom: 30px;
  margin-bottom: 0;
}

.booking_form_type_single_custom .booking-date-block {
  display: block;
}
.booking_form_type_single_custom .booking-form-block .booking_form_input_label {
  float: left;
  padding: 0 8px 0 0;
}

.booking-form-block > div {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-start;
  flex-grow: 1;
}
.booking-form-block > div.booking-date {
  justify-content: flex-end;
}
.booking-form-block input, .booking-form-block select {
  line-height: normal;
  font-size: 14px;
  color: #999999;
}
.booking-form-block > div.booking_meeting_point_line {
  flex-wrap: nowrap;
  align-items: flex-start;
}
.booking-form-block .booking_time_line {
  display: inherit;
}
.booking-form-block input[type=text].booking_date {
  width: 100%;
  padding-left: 66px;
  padding-right: 20px;
  color: #010926;
  background-color: #ffffff;
  border-radius: 8px;
}
.booking-form-block input[type=text].booking_date:hover {
  cursor: pointer;
}
.booking-form-block .booking-date {
  position: relative;
  max-width: 150px;
}
.booking-form-block .booking-date > i {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 22px;
  color: var(--e-global-color-primary);
}
.booking-form-block .booking-date > i:before {
  font-family: "tripay-icon";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  content: "";
}
.booking-form-block .booking-date > * {
  display: inline-block;
}

.submit_group {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.submit_group button {
  width: 100%;
  font-size: 1rem;
  letter-spacing: normal;
  border-radius: 16px;
  background-color: #FFD15D;
  color: #010926;
}
.submit_group button .fa {
  margin-right: 5px;
}
.submit_group button.booking_form_submit i {
  display: none;
  opacity: 0;
  visibility: hidden;
}

#booking_form_block:before, #booking_form_block:after {
  content: "";
  display: table;
  clear: both;
}

.booking_meeting_point_line input {
  float: left;
  margin-right: 5px;
  margin-top: 2px;
}
.booking_meeting_point_line label {
  line-height: 1.3em;
  font-size: 13px;
  display: block;
  margin-bottom: 3px;
}

#booking-guests-result {
  font-size: 14px;
  justify-content: flex-end;
}
#booking-guests-result .select_guests_block {
  display: block;
  margin-bottom: 13px;
  flex-grow: 3;
}
#booking-guests-result input, #booking-guests-result select {
  padding-top: 0;
  padding-bottom: 0;
  line-height: 30px;
}

#total_group {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#total_group .booking_form_input_label {
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  font-size: 16px;
  font-size: 1rem;
  color: var(--e-global-color-secondary);
}

#booking_form_total {
  text-align: right;
}
#booking_form_total .currency_amount {
  font-size: 24px;
}

#error_group {
  display: none;
}
#error_group label {
  color: red;
}
#error_group.show_error {
  display: block;
}

#list_services {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.list_service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
  gap: 4px;
}

.view-list-details {
  position: absolute;
  background-color: #fff;
  z-index: 10;
  top: 0;
  right: 100%;
  left: auto;
  margin-right: 10px;
  width: 100%;
  text-align: left;
  border: 1px solid;
  border-color: var(--e-global-color-border);
  padding: 1rem;
  box-sizing: border-box;
  box-shadow: 0 0 60px rgba(6, 30, 98, 0.08);
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  opacity: 0;
  visibility: hidden;
  -ms-transform: translateX(-1rem);
  -o-transform: translateX(-1rem);
  -moz-transform: translateX(-1rem);
  -webkit-transform: translateX(-1rem);
  transform: translateX(-1rem);
}
@media (max-width: 1024px) {
  .view-list-details {
    right: auto;
    top: 34px;
    left: -20px;
  }
}

@media (min-width: 512px) {
  .list_service h4:hover {
    cursor: help;
  }
  .list_service:before {
    content: "";
    position: absolute;
    z-index: 11;
    width: 12px;
    height: 12px;
    background: #fff;
    display: inline-block;
    transform: rotate(45deg);
    left: -16px;
    top: 18px;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    opacity: 0;
    visibility: hidden;
    margin-left: -1rem;
  }
  .list_service:hover:before {
    opacity: 1;
    visibility: visible;
    margin-left: 0;
  }
  .list_service:hover .view-list-details {
    opacity: 1;
    visibility: visible;
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@media (max-width: 1024px) {
  .list_service:before {
    left: 4px;
    top: 30px;
  }
}
.list_service:last-child {
  border-bottom: none;
}

.list_service_title {
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}
.list_service_title label, .list_service_title h4 {
  font-size: 16px;
  gap: 12px;
  color: #5C626A;
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  line-height: 1.875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.list_service_title label:hover, .list_service_title h4:hover {
  cursor: pointer;
}
.list_service_title .list_service_input {
  margin-right: 0.5em;
}

.list_service_prices {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex-direction: column;
  gap: 8px;
}
.list_service_prices .service_price_line {
  white-space: nowrap;
  text-align: right;
  flex-basis: auto;
  padding: 0;
}
.list_service_prices .service_price_line .currency_amount {
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  font-size: 16px;
  font-size: 1rem;
  color: var(--e-global-color-secondary);
}
.list_service_prices .service_price_line select:not([size]):not([multiple]) {
  width: unset;
  background-color: #ffffff;
  padding: 5px 32px 5px 20px;
}
.list_service_prices .service_price_line label {
  display: inline-block;
  color: var(--e-global-color-lighter);
  padding-right: 5px;
}

/*===============Input select field styles==========*/
div.input_select_sort {
  font-size: 20px;
  margin-right: 5px;
  padding: 10px;
}
div.input_select_sort i:hover {
  color: var(--e-global-color-primary);
}

.input_select_field .input_select_title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.input_select_field .input_select_title_value {
  padding: 5px;
  padding-right: 16px;
}
.input_select_field .input_select_wrapper {
  position: relative;
}
.input_select_field.select_guests_block .currency_amount {
  padding-left: 8px;
}
.input_select_field.select_guests_block .currency_amount_group {
  padding-left: 8px;
}
.input_select_field.select_guests_block .currency_amount_group .currency_amount {
  padding-left: 0;
}
.input_select_field .input_select_input {
  width: 100%;
}
.input_select_field .input_select_wrapper i, .input_select_field .input_select_wrapper svg {
  position: absolute;
  right: 40px;
  top: 50%;
  padding: 0;
  font-size: 0.85em;
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width: 1024px) {
  .input_select_field .input_select_wrapper i, .input_select_field .input_select_wrapper svg {
    right: 20px;
  }
}
.input_select_field:hover, .input_select_field input:hover {
  cursor: pointer;
}
.input_select_field .input_select_list {
  display: none;
  position: absolute;
  box-sizing: border-box;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  border: 1px solid #eaeaea;
  margin-top: 2px;
  background-color: #fff;
  z-index: 100;
  list-style: none;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  max-height: 146px;
  overflow-y: scroll;
  width: 100%;
}
.input_select_field .input_select_list.active {
  display: block;
}
.input_select_field .input_select_list .term_item {
  padding: 7px 20px;
  line-height: 30px;
  margin: 0;
  text-align: left;
  border-bottom: 1px solid;
  border-color: var(--e-global-color-border);
  transition: 0.2s all ease;
}
.input_select_field .input_select_list .term_item:last-child {
  border-bottom: none;
}
.input_select_field .input_select_list .term_item:hover {
  cursor: pointer;
  color: var(--e-global-color-primary);
}
.input_select_field .input_select_list .term_item.term_item_selected {
  color: var(--e-global-color-primary);
}

.input_select_field_booking_time_from .input_select_input, .input_select_field_booking_time_to .input_select_input {
  width: 77px;
  padding-left: 5px;
  padding-right: 5px;
}

/****************block_step_content**************/
.elementor-widget-babe-item-faqs .elementor-widget-container .block_step, .elementor-widget-babe-item-faqs .elementor-widget-container .block_faq, .elementor-widget-babe-item-steps .elementor-widget-container .block_step, .elementor-widget-babe-item-steps .elementor-widget-container .block_faq {
  margin-bottom: 45px;
  position: relative;
}
.elementor-widget-babe-item-faqs .elementor-widget-container .block_step:last-child, .elementor-widget-babe-item-faqs .elementor-widget-container .block_faq:last-child, .elementor-widget-babe-item-steps .elementor-widget-container .block_step:last-child, .elementor-widget-babe-item-steps .elementor-widget-container .block_faq:last-child {
  margin-bottom: 0;
}
.elementor-widget-babe-item-faqs .elementor-widget-container .block_step.block_active:before, .elementor-widget-babe-item-faqs .elementor-widget-container .block_faq.block_active:before, .elementor-widget-babe-item-steps .elementor-widget-container .block_step.block_active:before, .elementor-widget-babe-item-steps .elementor-widget-container .block_faq.block_active:before {
  content: "";
  display: block;
  top: 24px;
  bottom: -45px;
  width: 1px;
  background-color: var(--e-global-color-primary);
  position: absolute;
  z-index: 1;
  left: calc(24px / 2);
}
.elementor-widget-babe-item-faqs .elementor-widget-container .block_step.block_active:last-child:before, .elementor-widget-babe-item-faqs .elementor-widget-container .block_faq.block_active:last-child:before, .elementor-widget-babe-item-steps .elementor-widget-container .block_step.block_active:last-child:before, .elementor-widget-babe-item-steps .elementor-widget-container .block_faq.block_active:last-child:before {
  bottom: 0;
}
.elementor-widget-babe-item-faqs .elementor-widget-container .block_faq.block_active:first-child .step_icon .step_icon_opened, .elementor-widget-babe-item-steps .elementor-widget-container .block_faq.block_active:first-child .step_icon .step_icon_opened {
  display: none;
}
.elementor-widget-babe-item-faqs .elementor-widget-container .block_faq.block_active:first-child .step_icon .step_icon_closed, .elementor-widget-babe-item-steps .elementor-widget-container .block_faq.block_active:first-child .step_icon .step_icon_closed {
  display: block;
}
.elementor-widget-babe-item-faqs .elementor-widget-container .block_faq.block_active:first-child .block_faq_content, .elementor-widget-babe-item-steps .elementor-widget-container .block_faq.block_active:first-child .block_faq_content {
  max-height: 0;
  transition: all 0.5s;
}
.elementor-widget-babe-item-faqs .elementor-widget-container .block_step_title, .elementor-widget-babe-item-faqs .elementor-widget-container .block_faq_title, .elementor-widget-babe-item-steps .elementor-widget-container .block_step_title, .elementor-widget-babe-item-steps .elementor-widget-container .block_faq_title {
  display: flex;
  align-items: flex-start;
  border-radius: 5px;
  line-height: 24px;
  border: none;
  position: relative;
}
.elementor-widget-babe-item-faqs .elementor-widget-container .block_step_title:hover, .elementor-widget-babe-item-faqs .elementor-widget-container .block_faq_title:hover, .elementor-widget-babe-item-steps .elementor-widget-container .block_step_title:hover, .elementor-widget-babe-item-steps .elementor-widget-container .block_faq_title:hover {
  cursor: pointer;
}
.elementor-widget-babe-item-faqs .elementor-widget-container .block_step_title:before, .elementor-widget-babe-item-faqs .elementor-widget-container .block_faq_title:before, .elementor-widget-babe-item-steps .elementor-widget-container .block_step_title:before, .elementor-widget-babe-item-steps .elementor-widget-container .block_faq_title:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-color: transparent;
  border: 1px solid var(--e-global-color-primary);
  border-radius: 50%;
  margin-right: 16px;
}
.elementor-widget-babe-item-faqs .elementor-widget-container .block_step_title .step_title, .elementor-widget-babe-item-faqs .elementor-widget-container .block_faq_title .step_title, .elementor-widget-babe-item-steps .elementor-widget-container .block_step_title .step_title, .elementor-widget-babe-item-steps .elementor-widget-container .block_faq_title .step_title {
  flex: 1;
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
  font-size: 21px;
  font-size: 1.3125rem;
  margin-bottom: 0;
  padding: 0;
  color: var(--e-global-color-secondary);
  text-transform: capitalize;
}
.elementor-widget-babe-item-faqs .elementor-widget-container .block_step_title .step_title span, .elementor-widget-babe-item-faqs .elementor-widget-container .block_faq_title .step_title span, .elementor-widget-babe-item-steps .elementor-widget-container .block_step_title .step_title span, .elementor-widget-babe-item-steps .elementor-widget-container .block_faq_title .step_title span {
  margin-right: 8px;
  color: #969BA1;
}
.elementor-widget-babe-item-faqs .elementor-widget-container .block_active .block_step_title:before, .elementor-widget-babe-item-steps .elementor-widget-container .block_active .block_step_title:before {
  content: "";
  background-color: var(--e-global-color-primary);
  border-color: var(--e-global-color-primary);
}
.elementor-widget-babe-item-faqs .elementor-widget-container .block_active .block_step_title:after, .elementor-widget-babe-item-steps .elementor-widget-container .block_active .block_step_title:after {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background-color: transparent;
  border: 4px solid #ffffff;
  z-index: 1;
  left: 1px;
  top: 1px;
  border-radius: 50%;
  margin-right: 16px;
  position: absolute;
  transition: 0.3s all ease-in-out;
}
.elementor-widget-babe-item-faqs .elementor-widget-container .block_step_content, .elementor-widget-babe-item-faqs .elementor-widget-container .block_faq_content, .elementor-widget-babe-item-steps .elementor-widget-container .block_step_content, .elementor-widget-babe-item-steps .elementor-widget-container .block_faq_content {
  display: block;
  font-size: 16px;
  max-height: 0;
  transition: all 1s;
  overflow: hidden;
  border: none;
  padding: 0;
}
.elementor-widget-babe-item-faqs .elementor-widget-container .block_step_content .content, .elementor-widget-babe-item-faqs .elementor-widget-container .block_faq_content .content, .elementor-widget-babe-item-steps .elementor-widget-container .block_step_content .content, .elementor-widget-babe-item-steps .elementor-widget-container .block_faq_content .content {
  padding-top: 20px;
  padding-left: 46px;
}
.elementor-widget-babe-item-faqs .elementor-widget-container .block_active .block_step_content, .elementor-widget-babe-item-steps .elementor-widget-container .block_active .block_step_content {
  display: block;
  animation-name: height;
  animation-duration: 6s;
  max-height: 1000vh;
  transition: all 1s;
}
.elementor-widget-babe-item-faqs .elementor-widget-container .step_icon, .elementor-widget-babe-item-steps .elementor-widget-container .step_icon {
  font-size: 10px;
  margin-right: 10px;
}
.elementor-widget-babe-item-faqs .elementor-widget-container .step_icon span, .elementor-widget-babe-item-steps .elementor-widget-container .step_icon span {
  float: unset;
  margin: 0;
}
.elementor-widget-babe-item-faqs .elementor-widget-container .step_icon .step_icon_opened, .elementor-widget-babe-item-steps .elementor-widget-container .step_icon .step_icon_opened {
  display: none;
}
.elementor-widget-babe-item-faqs .elementor-widget-container .block_step_title.block_active .step_icon .step_icon_opened, .elementor-widget-babe-item-faqs .elementor-widget-container .block_faq.block_active .step_icon .step_icon_opened, .elementor-widget-babe-item-steps .elementor-widget-container .block_step_title.block_active .step_icon .step_icon_opened, .elementor-widget-babe-item-steps .elementor-widget-container .block_faq.block_active .step_icon .step_icon_opened {
  display: block;
}
.elementor-widget-babe-item-faqs .elementor-widget-container .block_step_title.block_active .step_icon .step_icon_closed, .elementor-widget-babe-item-faqs .elementor-widget-container .block_faq.block_active .step_icon .step_icon_closed, .elementor-widget-babe-item-steps .elementor-widget-container .block_step_title.block_active .step_icon .step_icon_closed, .elementor-widget-babe-item-steps .elementor-widget-container .block_faq.block_active .step_icon .step_icon_closed {
  display: none;
}
.elementor-widget-babe-item-faqs .elementor-widget-container .block_faq.block_active .block_faq_content, .elementor-widget-babe-item-steps .elementor-widget-container .block_faq.block_active .block_faq_content {
  max-height: 1000vh;
  transition: all 2s;
}
@keyframes height {
  from {
    max-height: 0;
  }
  to {
    max-height: 1000vh;
  }
}

#block_services {
  margin-bottom: 20px;
}

.block_service_header, #primary .page .entry-content h4.block_service_header {
  width: 100%;
  text-align: center;
  margin-bottom: 0;
  padding: 5px;
  font-size: 16px;
  font-weight: 700;
}

.block_services_title, .block_services_header {
  display: flex;
  justify-content: space-between;
}

.block_service {
  display: flex;
  justify-content: space-between;
  border-left: 1px solid;
}

.block_services_header {
  border-left: 1px solid;
  border-top: 1px solid;
}

.block_service_prices, .block_services_header_names {
  display: flex;
  justify-content: space-between;
  flex-grow: 2;
}

.block_service_prices > *, .block_services_header_names > *, .block_services_header_padding, .block_service_header {
  border-bottom: 1px solid;
  border-right: 1px solid;
}

.block_service_title {
  flex-basis: 300px;
}
.block_service_title h4 {
  border-bottom: 1px solid;
  border-right: 1px solid;
}

.block_services_header_padding {
  flex-basis: 300px;
}

.block_service_title h4 {
  margin: 0;
  padding: 5px;
}

.service_price_line, .block_service_age_name {
  flex-basis: 100%;
  text-align: center;
  padding: 5px;
}

.service_price_line label {
  display: none;
}

#add_services .block_service_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid;
  border-right: 1px solid;
  padding: 0 5px;
}
#add_services .block_service_title label {
  margin-right: 20px;
}
#add_services .block_service_title h4 {
  border-right: none;
  border-bottom: none;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

#primary .page .entry-content #add_services .block_service_title h4 {
  border-right: none;
  border-bottom: none;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .block_services_header {
    display: none;
  }

  .block_service, .block_service_prices, .block_service_title {
    display: block;
  }

  .service_price_line label {
    display: inline-block;
  }

  .block_service, .block_services_header {
    border-left: none;
    border-bottom: 1px solid;
  }

  .block_service_header, .block_service_title h4, .block_service_prices > * {
    border-right: none;
    border-bottom: none;
  }

  #add_services .block_service_title {
    border-right: none;
    border-bottom: none;
    justify-content: flex-start;
  }
}
/**********block_search_res***************/
.babe_search_results_filters {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 14px;
}
@media (max-width: 1024px) {
  .babe_search_results_filters {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
}
.babe_search_results_filters .ba-result-count {
  margin-right: auto;
  margin-bottom: 0;
  color: var(--e-global-color-lighter);
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  font-size: 16px;
  font-size: 1rem;
}
.babe_search_results_filters .input_select_input {
  border-radius: 80px;
  padding: 10px 40px;
  font-size: 16px;
  font-size: 1rem;
  border: 1px solid #AAA8A8;
}
@media (max-width: 1024px) {
  .babe_search_results_filters .input_select_input {
    padding: 8px 20px;
  }
}
.babe_search_results_filters div.input_select_sort {
  font-size: 18px;
}
.babe_search_results_filters .filter-sort {
  display: flex;
  gap: 30px;
}
@media (max-width: 768px) {
  .babe_search_results_filters .filter-sort {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.babe_search_results_filters .filter-sort .filter, .babe_search_results_filters .filter-sort .sort {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.babe_search_results_filters .filter-sort .filter > span, .babe_search_results_filters .filter-sort .sort > span {
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  color: var(--e-global-color-lighter);
}
@media (max-width: 768px) {
  .babe_search_results_filters .filter-sort .filter > span, .babe_search_results_filters .filter-sort .sort > span {
    display: none;
  }
}
.babe_search_results_filters .filter-sort .filter .input_select_field {
  max-width: 140px;
}
@media (max-width: 1024px) {
  .babe_search_results_filters .filter-sort .filter .input_select_field {
    max-width: 110px;
  }
}
.babe_search_results_filters .filter-sort .sort .input_select_field {
  max-width: 140px;
}
@media (max-width: 1024px) {
  .babe_search_results_filters .filter-sort .sort .input_select_field {
    max-width: 110px;
  }
}

.babe_search_results_inner_grid {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  padding-bottom: 2em;
}

.block_search_res {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 5px;
  line-height: normal;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 5px;
}
.block_search_res > div {
  padding: 5px;
  box-sizing: border-box;
}
.block_search_res .search_res_img {
  flex-basis: 30%;
  line-height: 0;
}
.block_search_res .search_res_img img {
  width: 100%;
}
.block_search_res .search_res_text {
  flex-basis: 70%;
}

@media (max-width: 500px) {
  .block_search_res .search_res_img {
    flex-basis: 100%;
    text-align: center;
  }
  .block_search_res .search_res_img img {
    width: auto;
  }
  .block_search_res .search_res_text {
    flex-basis: 100%;
  }
}
#babe_search_result_refresh {
  z-index: 100;
  position: fixed;
  background-color: #fff;
  opacity: 0.8;
  -moz-opacity: 0.8;
  filter: alpha(opacity=80);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
}
#babe_search_result_refresh .fa, #babe_search_result_refresh .fas, #babe_search_result_refresh .far {
  position: absolute;
  left: 50%;
  margin: 0 0 0 -25px;
  top: 40%;
  color: var(--e-global-color-primary);
}

/********************************************/
#search-box {
  margin-left: auto;
  margin-right: auto;
}

#search_form.babe-search-form {
  margin-bottom: 0 !important;
}
#search_form h3 {
  text-align: center;
  text-transform: uppercase;
  color: inherit;
  margin-bottom: 0;
}
#search_form .search-form-inner {
  display: flex;
  background-color: #fff;
}
#search_form .input-group {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  flex-grow: 1;
}
#search_form .input-group input {
  border: none;
  padding: 5px;
  outline: none;
  background-color: transparent;
  color: inherit;
  line-height: inherit;
  height: auto;
  font-size: initial;
}
#search_form .input-group input:focus {
  border: none;
  padding: 5px;
  outline: none;
  background-color: transparent;
  color: inherit;
  line-height: inherit;
  height: auto;
  font-size: initial;
}
#search_form .input-group .field-search-group {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
  background-color: transparent;
}
#search_form .input-group .field-search-group:not(:last-child) {
  border-right: 1px solid;
  border-color: var(--e-global-color-border);
}
#search_form .input-group .field-search-group .far, #search_form .input-group .field-search-group .fas {
  height: auto;
  font-size: inherit;
}
#search_form .input-group .field-search-group.submit .far, #search_form .input-group .field-search-group.submit .fas {
  font-size: inherit;
}
#search_form .input-group div[data-inputfield] {
  display: none;
}
#search_form .input-group div.is-active[data-inputfield] {
  display: block;
}
#search_form .input-group > div.submit {
  background-color: transparent;
  border: none;
}
#search_form .input-group > div.submit button {
  border: 1px solid transparent;
}
#search_form .input-group label {
  margin-bottom: 0;
}
#search_form .input-group > div.search-date {
  position: relative;
}
#search_form .input-group .search-date .search_date {
  order: 1;
  width: 100%;
  height: auto;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.55;
  color: #969BA1;
  padding: 0;
}
@media (max-width: 1200px) {
  #search_form .input-group .search-date .search_date {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
#search_form .submit .btn-search {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  font-family: var(--e-global-typography-accent-font-family);
  font-weight: var(--e-global-typography-accent-font-weight);
  text-transform: var(--e-global-typography-accent-text-transform);
  font-style: var(--e-global-typography-accent-font-style);
  text-decoration: var(--e-global-typography-accent-text-decoration);
  line-height: var(--e-global-typography-accent-line-height);
  letter-spacing: var(--e-global-typography-accent-letter-spacing);
  font-size: 21px;
  font-size: 1.3125rem;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: capitalize;
  padding: 20px 30px;
}
@media (max-width: 1200px) {
  #search_form .submit .btn-search {
    padding: 1.0625rem 1.25rem;
  }
}
#search_form .submit .btn-search i:before {
  font-size: 28px;
  font-size: 1.75rem;
  color: #FFFFFF;
}
#search_form .submit .btn-search:hover {
  border: none;
}
#search_form .submit .btn-search:hover i:before {
  color: var(--e-global-color-secondary);
}
#search_form input, #search_form select, #search_form .add_input_field {
  font-size: 16px;
}
#search_form .input_select_field_guests .input_select_input {
  width: 56px;
}
#search_form .input_select_field_guests .input_select_title > div {
  flex-basis: auto;
}
#search_form .input_select_field_time_from .input_select_input, #search_form .input_select_field_time_to .input_select_input {
  width: 110px;
}
#search_form .field-group-inner {
  position: relative;
  display: flex;
  padding: 0 40px 0 40px;
  height: 100%;
  align-items: center;
  color: var(--e-global-color-lighter);
}
@media (max-width: 1200px) {
  #search_form .field-group-inner {
    padding: 0 20px 0 20px;
  }
}
#search_form .field-group-inner .search_guests_title {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.55;
  color: #969BA1;
}
@media (max-width: 1200px) {
  #search_form .field-group-inner .search_guests_title {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
#search_form .icon-search {
  color: var(--e-global-color-secondary);
  padding: 16px 10px 16px 10px;
  border-radius: 120px;
  background-color: #F0F3FD;
}
#search_form .field-search {
  flex-grow: 1;
}
#search_form .field-title {
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
  font-size: 21px;
  font-size: 1.3125rem;
  line-height: 1.4;
  text-transform: capitalize;
  letter-spacing: 0;
  margin-bottom: 6px;
  display: block;
}
@media (max-width: 1200px) {
  #search_form .field-title {
    font-size: 16px;
    font-size: 1rem;
  }
}

#search_form_tabs {
  text-align: left;
}
#search_form_tabs .search_form_tab {
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px 4px 0 0;
  padding: 7px 25px;
  margin-right: 4px;
  line-height: 1.4em;
  background-color: #c3c3c3;
  border-bottom: 1px solid #ffffff;
}
#search_form_tabs .search_form_tab:hover {
  cursor: pointer;
  background-color: #f1f1f1;
}
#search_form_tabs .search_form_tab.is-active {
  background-color: #ffffff;
}

.search_form_color_bg #search_form {
  color: #fff;
  border-color: #fff;
}
.search_form_color_bg #search_form input {
  color: #fff;
}
.search_form_color_bg #search_form input::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #fff;
}
.search_form_color_bg #search_form input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #fff;
  opacity: 1;
}
.search_form_color_bg #search_form input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #fff;
  opacity: 1;
}
.search_form_color_bg #search_form input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #fff;
}
.search_form_color_bg #search_form input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #fff;
}
.search_form_color_bg #search_form input::placeholder {
  /* Most modern browsers support this now. */
  color: #fff;
}

#search_form input::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: inherit;
}
#search_form input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: inherit;
  opacity: 1;
}
#search_form input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: inherit;
  opacity: 1;
}
#search_form input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: inherit;
}
#search_form input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: inherit;
}
#search_form input::placeholder {
  /* Most modern browsers support this now. */
  color: inherit;
}
#search_form .input-group .search-date .search_date:hover {
  cursor: pointer;
}
#search_form .input-group select {
  padding: 0;
  background-color: transparent;
  border-color: transparent;
  font-size: 14px;
  color: var(--e-global-color-primary);
}
#search_form .input-group select option {
  background-color: #ffffff;
}
#search_form .input-group select:hover {
  cursor: pointer;
}
#search_form .input-group select .term_item_disabled {
  color: #fff;
}

.btn-primary.btn-search {
  border: none;
  padding: 10px 30px;
  line-height: 1.44;
  font-size: 16px;
  letter-spacing: 0;
}
.btn-primary.btn-search i {
  padding-right: 10px;
}
.btn-primary.btn-search i:before {
  color: #FFFFFF !important;
}
#search_form .input-group .add_input_field {
  position: static;
}

#search_form .advanced-price-content .price-header, #search_form .advanced-taxonomy-block .advanced-header {
  flex: 1 100%;
  font-weight: 700;
}

.search_guests_block.input_select_field .input_select_title {
  width: 140px;
  font-size: 16px;
  flex-wrap: nowrap;
}

#search_form .search_guests_block .input_select_input {
  text-align: right;
  padding: 0 30px 0 0;
}

.search_guests_block.input_select_field i {
  right: 0;
  top: 0;
  padding: 5px 0;
}
.search_guests_block.input_select_field .input_select_list {
  width: 140px;
}
.search_guests_block.input_select_field .input_select_list .term_item {
  text-align: right;
  padding-right: 13px;
}

.input_select_field .input_select_list .term_item {
  background-color: #ffffff;
  border-color: #f7f7f7;
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  color: var(--e-global-color-secondary);
  white-space: nowrap;
}

.add_input_field .add_ids_list .term_item {
  background-color: #ffffff;
  border-color: #f7f7f7;
  border-top-width: 1px;
  border-top-style: solid;
}

.add_input_field .add_ids_list .term_item {
  white-space: nowrap;
}

.add_input_field .add_ids_list .term_item.term_item_selected, .add_input_field .add_ids_list .term_item:hover {
  color: #000000;
}

.input_select_field .input_select_list .term_item:hover, .input_select_field .input_select_list .term_item.term_item_selected {
  color: var(--e-global-color-primary);
}

@media screen and (max-width: 1023px) {
  #search_form .input-group {
    flex-wrap: wrap;
  }
  #search_form .input-group > div.submit {
    text-align: center;
  }
}
@media (max-width: 767px) {
  #search_form .input-group {
    justify-content: center;
  }

  #search_form_tabs {
    text-align: center;
  }
}
#search_form .input_select_field_guests[data-inputfield] {
  display: none;
}
#search_form .input_select_field_guests.is-active[data-inputfield] {
  display: block;
}
#search_form .search_guests_field {
  display: none;
  padding: 0;
  position: static;
}
#search_form .search_guests_field.is-active {
  display: block;
}
#search_form .search_advanced_select_wrapper {
  position: absolute;
  width: 100%;
  text-align: left;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 0 60px rgba(6, 30, 98, 0.08);
  padding: 20px;
  z-index: 7;
  display: none;
  top: 100%;
  left: 0;
  min-width: 225px;
}
#search_form .search_apply_btn {
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
  padding: 10px 20px;
  box-sizing: border-box;
  line-height: initial;
}

.search_advanced_field .add_ids_list {
  display: flex;
  flex-wrap: wrap;
}
.search_advanced_field .add_ids_list .term_item {
  flex: 0 0 50%;
  max-width: 50%;
  margin-bottom: 10px;
}
.search_advanced_field .add_ids_list .term_item:not(.term_item_checkbox) {
  flex-basis: 100%;
}

.search_advanced_select_wrapper .advanced-taxonomy-block .term_item_checkbox {
  flex-basis: 50%;
  max-width: 50%;
  padding: 5px 0;
}

div.input-group .search-keyword-block .search-keyword {
  width: 160px;
}

#search-box.babe-search-box #search_form .search_advanced_field div .search_advanced_select_wrapper .search-keyword-block.search_bar_border_left, .search_advanced_select_wrapper .advanced-taxonomy-block {
  display: none;
}

#search_form .search_advanced_field div .search_advanced_select_wrapper .search-keyword-block.search_bar_border_left.is-active {
  display: block ruby;
}

.search_advanced_select_wrapper .advanced-taxonomy-block.is-active {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: auto;
}
.search_advanced_select_wrapper .slider-content {
  margin-top: 10px;
}

.search_advanced_field .search_advanced_select_wrapper .search-keyword-block {
  margin: 12px 0;
  outline: 1px solid #d8dce1;
  padding: 2px 13px;
}

.search_guests_select_wrapper {
  position: absolute;
  width: 100%;
  text-align: left;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 0 60px rgba(6, 30, 98, 0.08);
  padding: 20px;
  z-index: 7;
  display: none;
  top: 100%;
  left: 0;
  margin: 0;
  border: none;
}
.search_guests_select_wrapper.is-active {
  display: block;
}

.input_select_field.input_select_field_guests:hover {
  cursor: default;
}

.input_select_field_guests {
  margin-bottom: 10px;
  line-height: 36px;
  color: #3b4249;
}

.search_guests_title_value {
  font-size: 14px;
}

.tripay-date-from:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 111;
  cursor: pointer;
}

.search_guests_title {
  cursor: pointer;
  padding: 0;
}

.search_advanced_title:hover {
  cursor: pointer;
}

.search_guests_title > .far, .search_guests_title > .fas {
  padding-right: 2px;
}

.select_guests_value {
  width: 32px;
  height: 36px;
  font-weight: 700;
  padding-right: 12px;
}

.search_guests_plus, .search_guests_minus {
  margin-left: -1px;
  padding: 0;
  width: 40px;
  height: 36px;
  float: right;
  font-weight: 700;
  text-align: center;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  border: 1px solid #54c4d9;
}

.search_guests_plus {
  border-radius: 0 2em 2em 0;
  border-left: none;
}

.search_guests_minus {
  border-radius: 2em 0 0 2em;
  border-right: none;
}

.btn-search-guests-change {
  color: var(--e-global-color-primary);
  border-color: var(--e-global-color-border);
  background-color: transparent;
}
.btn-search-guests-change:focus {
  color: var(--e-global-color-primary);
  border-color: var(--e-global-color-border);
  background-color: transparent;
}
.btn-search-guests-change:hover {
  color: #ffffff;
  background-color: var(--e-global-color-primary);
  border-color: var(--e-global-color-primary);
  cursor: pointer;
}

.search_guests_apply {
  text-align: center;
}

/*======= Search form calendar ==========*/
#search_form .input-group > div.input_select_field_time_from.is-active[data-inputfield], #search_form .input-group > div.input_select_field_time_to.is-active[data-inputfield] {
  display: none;
}

.daterangepicker {
  min-height: auto;
  border-radius: 4px;
  margin-left: -15px;
  border: none;
  box-shadow: 0 0 60px rgba(6, 30, 98, 0.08);
  background-color: #fff;
  margin-top: 20px;
}
.daterangepicker:before, .daterangepicker:after {
  content: "";
  position: static;
  border: none;
  background: none;
  width: 0;
  height: 0;
}
.daterangepicker .input_select_field[data-inputfield] {
  display: none;
}
.daterangepicker .input_select_field.is-active[data-inputfield] {
  display: block;
}
.daterangepicker .input_select_field .input_select_title {
  display: block;
  padding-left: 28px;
  text-align: left;
}
.daterangepicker .input_select_field .input_select_title > div {
  display: inline-block;
}
.daterangepicker .calendar-time .input_select_field .input_select_wrapper {
  width: 96px;
}
.daterangepicker .calendar-time .input_select_field .input_select_input {
  padding: 4px;
  color: #5191FA;
  font-weight: 600;
}
.daterangepicker .input_select_field .input_select_title_value svg {
  position: absolute;
  left: 8px;
  top: 10px;
}
.daterangepicker .drp-buttons {
  text-align: center;
}
.daterangepicker .drp-buttons .btn {
  font-family: var(--e-global-typography-accent-font-family);
  font-weight: var(--e-global-typography-accent-font-weight);
  text-transform: var(--e-global-typography-accent-text-transform);
  font-style: var(--e-global-typography-accent-font-style);
  text-decoration: var(--e-global-typography-accent-text-decoration);
  line-height: var(--e-global-typography-accent-line-height);
  letter-spacing: var(--e-global-typography-accent-letter-spacing);
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding: 1.0625rem 1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  border-radius: 8px;
  background-color: var(--e-global-color-primary);
  white-space: nowrap;
  color: #ffffff;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-transform: capitalize;
  display: inline-block;
  border: none;
  margin: 8px;
  font-size: 14px;
  font-weight: bold;
  padding: 10px 20px !important;
  box-sizing: border-box;
  line-height: initial;
}
.daterangepicker .drp-buttons .btn span {
  position: relative;
  z-index: 2;
}
.daterangepicker .drp-buttons .btn:hover {
  color: #ffffff;
  background-color: var(--e-global-color-accent);
}
.daterangepicker .drp-buttons .btn:hover .elementor-button-icon {
  color: #ffffff;
}
.daterangepicker .drp-buttons .btn.cancelBtn {
  background-color: var(--e-global-color-secondary);
  color: #fff;
}
.daterangepicker .drp-buttons .btn.cancelBtn:hover {
  background-color: var(--e-global-color-primary);
}
.daterangepicker td.active, .daterangepicker td.active:hover {
  background-color: var(--e-global-color-primary);
}
.daterangepicker .table-header .prev, .daterangepicker .table-header .next {
  box-sizing: border-box;
}
.daterangepicker .table-sub-header .day-off-week {
  box-sizing: border-box;
}
.daterangepicker .table-condensed td, .daterangepicker td {
  padding: 0;
  box-sizing: border-box;
}
.daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
  padding: 0;
  box-sizing: border-box;
}
.daterangepicker .table-condensed .td-date .date, .daterangepicker .table-condensed .td-date.has-tooltip .event-tooltip-wrap {
  box-sizing: border-box;
}

.ba-search-shadow {
  box-shadow: 0px 22px 38px -8px #0000000A, 0px 0px 14px 0px #0000000D, 0px 30px 64px -12px #0000000A;
  backdrop-filter: blur(32px);
}

@media (max-width: 567px) {
  .layout-style-1 #search_form .search-form-inner {
    flex-wrap: wrap;
    border-radius: 0;
  }
}
.layout-style-1 #search_form .field-search-group:first-child .field-group-inner {
  padding-left: 0;
}
.layout-style-1 #search_form .input-group.col-1 > div {
  flex: 0 0 100%;
  max-width: 100%;
}
.layout-style-1 #search_form .input-group.col-2 > div {
  flex: 0 0 50%;
  max-width: 50%;
}
@media (max-width: 567px) {
  .layout-style-1 #search_form .input-group.col-2 > div {
    flex: 0 0 100%;
    max-width: 100%;
    border-bottom: 1px solid;
    border-right: none !important;
    border-color: var(--e-global-color-border);
  }
  .layout-style-1 #search_form .input-group.col-2 > div .field-group-inner {
    padding-bottom: 20px !important;
    padding-top: 20px !important;
  }
}
.layout-style-1 #search_form .input-group.col-3 > div {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}
@media (max-width: 567px) {
  .layout-style-1 #search_form .input-group.col-3 > div {
    flex: 0 0 100%;
    max-width: 100%;
    border-bottom: 1px solid;
    border-right: none !important;
    border-color: var(--e-global-color-border);
  }
  .layout-style-1 #search_form .input-group.col-3 > div .field-group-inner {
    padding-bottom: 20px !important;
    padding-top: 20px !important;
  }
}
@media (min-width: 1024px) {
  .layout-style-1 #search_form .input-group.col-4 > div:nth-child(2n+1) {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .layout-style-1 #search_form .input-group.col-4 > div:nth-child(2n) {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
@media (max-width: 1023px) {
  .layout-style-1 #search_form .input-group.col-4 > div {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .layout-style-1 #search_form .input-group.col-4 > div:nth-child(2) {
    border-right: none;
  }
  .layout-style-1 #search_form .input-group.col-4 > div:nth-child(1), .layout-style-1 #search_form .input-group.col-4 > div:nth-child(2) {
    border-bottom: 1px solid;
    border-color: var(--e-global-color-border);
  }
  .layout-style-1 #search_form .input-group.col-4 > div:nth-child(1) .field-group-inner, .layout-style-1 #search_form .input-group.col-4 > div:nth-child(2) .field-group-inner {
    padding-bottom: 10px;
  }
  .layout-style-1 #search_form .input-group.col-4 > div:nth-child(3) .field-group-inner {
    padding-left: 0;
  }
  .layout-style-1 #search_form .input-group.col-4 > div:nth-child(3) .field-group-inner, .layout-style-1 #search_form .input-group.col-4 > div:nth-child(4) .field-group-inner {
    padding-top: 10px;
  }
}
@media (max-width: 567px) {
  .layout-style-1 #search_form .input-group.col-4 > div {
    flex: 0 0 100%;
    max-width: 100%;
    border-bottom: 1px solid;
    border-right: none !important;
    border-color: var(--e-global-color-border);
  }
  .layout-style-1 #search_form .input-group.col-4 > div .field-group-inner {
    padding-bottom: 20px !important;
    padding-top: 20px !important;
    padding-left: 0;
    padding-right: 0;
  }
}
.layout-style-1 #search_form .input-group.col-5 > div {
  flex: 0 0 20%;
  max-width: 20%;
}
@media (max-width: 567px) {
  .layout-style-1 #search_form .input-group.col-5 > div {
    flex: 0 0 100%;
    max-width: 100%;
    border-bottom: 1px solid;
    border-right: none !important;
    border-color: var(--e-global-color-border);
  }
  .layout-style-1 #search_form .input-group.col-5 > div .field-group-inner {
    padding-bottom: 20px !important;
    padding-top: 20px !important;
  }
}
.layout-style-1 #search_form .input-group .field-search-group {
  border-bottom: none;
}
.layout-style-1 #search_form .input-group .field-search-group:not(:last-child) {
  border-right: 1px solid;
  border-color: var(--e-global-color-border);
}
.layout-style-1 #search_form .icon-search {
  font-size: 24px;
  line-height: 1em;
  margin-right: 20px;
}
@media (max-width: 567px) {
  .layout-style-1 #search_form .submit {
    width: 100%;
    flex: 0 0 100%;
  }
}

.layout-style-2 #search_form .search-form-inner {
  flex-wrap: wrap;
}
.layout-style-2 #search_form .input-group .field-search-group {
  border: 2px solid;
  border-color: var(--e-global-color-border);
  border-radius: 5px;
  margin-bottom: 10px;
}
.layout-style-2 #search_form .submit {
  width: 100%;
  flex: 0 0 100%;
}
.layout-style-2 #search_form .submit .btn-search {
  border-radius: 5px;
}
.layout-style-2 #search_form .icon-search {
  font-size: 14px;
  line-height: 1.4em;
  margin-right: 10px;
}
.layout-style-2 #search_form .field-group-inner {
  padding: 15px;
}
.layout-style-2 #search_form .field-title {
  display: none;
}
.layout-style-2 .btn-primary.btn-search {
  font-size: 16px;
  line-height: 1.875em;
  padding: 15px 30px;
}

.elementor-widget-babe-search-form #search_form .search_guests_title_value:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 111;
  cursor: pointer;
}
.elementor-widget-babe-search-form #search_form .search_guests_field {
  width: 100%;
}
.elementor-widget-babe-search-form #search_form .search_guests_field.is-active {
  display: flex;
  align-items: center;
}
.elementor-widget-babe-search-form #search_form .input-group input[type=checkbox] {
  margin-right: 5px;
}
.elementor-widget-babe-search-form #search_form .search_advanced_select_wrapper.is-active {
  display: block;
}
.elementor-widget-babe-search-form #search_form .add_input_field .add_ids_title {
  display: flex;
  padding: 0;
  position: static;
  white-space: inherit;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.55;
  align-items: center;
  justify-content: space-between;
  color: #969BA1;
}
@media (max-width: 1200px) {
  .elementor-widget-babe-search-form #search_form .add_input_field .add_ids_title {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.elementor-widget-babe-search-form #search_form .add_input_field .add_ids_title i {
  right: 20px;
  top: 50%;
  padding: 0;
  transform: translateY(-50%);
}
.elementor-widget-babe-search-form #search_form .add_input_field .add_ids_title:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 111;
}
.elementor-widget-babe-search-form #search_form .add_input_field ul.add_ids_list {
  border: 1px solid;
  border-radius: 0;
  background-color: #fff;
  box-shadow: 0 0 60px rgba(6, 30, 98, 0.08);
  border-color: var(--e-global-color-border);
  width: 100%;
}
.elementor-widget-babe-search-form #search_form .add_input_field ul.add_ids_list li.term_item {
  border: none;
  background-color: #fff;
}
.elementor-widget-babe-search-form #search_form .add_input_field ul.add_ids_list li.term_item:not(.term_item_all) {
  color: var(--e-global-color-lighter);
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
}
.elementor-widget-babe-search-form #search_form .add_input_field ul.add_ids_list li.term_item:hover, .elementor-widget-babe-search-form #search_form .add_input_field ul.add_ids_list li.term_item.term_item_selected {
  background-color: #f4f4f4;
  color: var(--e-global-color-primary);
}
.elementor-widget-babe-search-form #search_form .add_input_field ul.add_ids_list li.term_item_disabled {
  padding: 0 20px;
  color: var(--e-global-color-secondary);
  font-weight: 500;
}
.elementor-widget-babe-search-form #search_form .add_input_field ul.add_ids_list li ul {
  list-style: none;
  margin: 0;
}

/************* AV calendar****/
.cal-month-block {
  display: none;
}
.cal-month-block.cal-month-active {
  display: flex;
  flex-direction: column;
}

.cal-month-block .cal-week-names {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  line-height: normal;
  margin-bottom: 2px;
  order: 2;
}
.cal-month-block .cal-week-name {
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
  font-size: 14px;
  font-size: 0.875rem;
  margin: 0 1px;
  text-align: right;
  width: calc(100% / 7 - 1.8px);
  border-radius: 4px 4px 0 0;
  padding: 13px 15px 13px 15px;
  line-height: 1.3;
  color: var(--e-global-color-text);
  text-transform: uppercase;
  background-color: #F0F3FD;
}
@media (max-width: 567px) {
  .cal-month-block .cal-week-name {
    font-size: 12px;
    font-size: 0.75rem;
    padding: 10px 5px;
    text-align: center;
  }
}
.cal-month-block .cal-week-name:last-child {
  margin-right: 0;
  color: var(--e-global-color-tertiary);
}
.cal-month-block .cal-week-name:first-child {
  margin-left: 0;
}
.cal-month-block .cal-month-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1.5;
  margin-bottom: 1px;
  text-align: center;
  font-weight: 500;
  font-size: 21px;
  font-size: 1.3125rem;
  padding: 13px 6px 6px;
  color: #fff;
  background-color: #002248;
  order: 1;
}
.cal-month-block .cal-month-prev {
  margin-left: 10px;
  float: left;
  font-size: 14px;
  width: 30px;
  text-align: center;
}
.cal-month-block .cal-month-next {
  margin-right: 10px;
  float: right;
  font-size: 14px;
  width: 30px;
  text-align: center;
}
.cal-month-block .cal-month-prev:hover, .cal-month-block .cal-month-next:hover {
  cursor: pointer;
}
.cal-month-block .cal-dates-block {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  line-height: normal;
  margin-bottom: 2px;
  order: 3;
  border-top-color: var(--e-global-color-border);
}
.cal-month-block .cal-cell {
  position: relative;
  flex-basis: calc(100% / 7 - 1.8px);
  box-sizing: border-box;
  text-align: right;
  padding: 12px 12px;
  border-color: #ffffff;
  background-color: #F0F3FD;
  min-height: 80px;
  margin: 0 1px 2px;
}
@media (max-width: 567px) {
  .cal-month-block .cal-cell {
    padding: 5px;
    text-align: center;
  }
}
.cal-month-block .cal-cell:nth-child(7n+1) {
  margin-left: 0;
}
.cal-month-block .cal-cell:nth-child(7n) {
  border-right: none;
  margin-right: 0;
}
.cal-month-block .cal-cell:nth-child(7n) .cal-cell-date {
  color: var(--e-global-color-tertiary);
}
.cal-month-block .cal-cell.cal-cell-invisible {
  border: none;
}
.cal-month-block .cal-cell.cal-cell-empty, .cal-month-block .cal-cell.cal-cell-disabled {
  background-color: #F0F3FD;
}
.cal-month-block .cal-cell.cal-cell-empty:hover {
  background-color: var(--e-global-color-primary);
}
.cal-month-block .cal-cell.cal-cell-empty:hover .cal-cell-date {
  color: #fff;
}
.cal-month-block .cal-cell.cal-cell-active, .cal-month-block .cal-cell.cal-cell-disabled-first, .cal-month-block .cal-cell.cal-cell-disabled-last {
  cursor: pointer;
}
.cal-month-block .cal-cell .cal-cell-date {
  color: #010926;
  margin-bottom: 8px;
}
@media (max-width: 567px) {
  .cal-month-block .cal-cell .cal-cell-date {
    font-size: 12px;
  }
}
.cal-month-block .cal-cell.cal-cell-empty .cal-cell-date {
  color: var(--e-global-color-lighter);
}
.cal-month-block .cal-cell.cal-cell-active .cal-cell-pricefrom {
  color: var(--e-global-color-primary);
}
.cal-month-block .cal-cell.cal-cell-active .cal-cell-pricefrom .currency_amount {
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  font-size: 12px;
  font-size: 0.75rem;
}
.cal-month-block .cal-cell.cal-cell-active.cal-cell-disabled-min {
  background-color: #ffa;
}
.cal-month-block .cal-cell.cal-cell-active:not(.cal-cell-start-day) {
  background-color: var(--e-global-color-secondary);
}
.cal-month-block .cal-cell.cal-cell-active.cal-cell-selected {
  background-color: var(--e-global-color-primary);
}
.cal-month-block .cal-cell.cal-cell-active.cal-cell-selected .cal-cell-pricefrom {
  color: #ffffff;
}
.cal-month-block .cal-cell.cal-cell-disabled-first.cal-cell-selected {
  background-color: var(--e-global-color-secondary);
}
.cal-month-block .cal-cell.cal-cell-active.cal-cell-selected .cal-cell-date {
  color: #fff;
}

.cal-cell-start-day:hover {
  background-color: var(--e-global-color-primary);
}
.cal-cell-start-day:hover .cal-cell-date {
  color: #ffffff !important;
}
.cal-cell-start-day:hover .cal-cell-pricefrom {
  color: #ffffff !important;
}
.cal-cell-start-day:hover .view-rate-details {
  display: block;
  left: 0;
  top: 100%;
}
.cal-cell-start-day:nth-child(7n):hover .view-rate-details {
  right: 0;
  left: auto;
}

.view-rate-details {
  display: none;
  position: absolute;
  background-color: #fff;
  z-index: 10;
  width: 270px;
  text-align: left;
  padding: 30px 20px 30px 30px;
  cursor: initial;
  border: 1px solid;
  border-color: var(--e-global-color-border);
  box-shadow: 0px 0px 60px 0px rgba(6, 30, 98, 0.08);
}
.view-rate-details:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: -5px;
  width: 100%;
  height: 4px;
}
.view-rate-details h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}
.view-rate-details .view-rate-details .rate_weekend_days {
  font-style: italic;
  display: inline-block;
}
.view-rate-details .view-rate-details-item-weekend h4 {
  display: inline-block;
  padding-right: 10px;
}
.view-rate-details .rate_prices_conditional_details {
  margin-left: 24px;
  list-style-position: outside;
}
.view-rate-details .rate_details_label {
  display: block;
}
.view-rate-details .prices_conditional_then {
  color: var(--e-global-color-lighter);
}
.view-rate-details .rate_price_general {
  color: var(--e-global-color-lighter);
  font-size: 0;
  line-height: 0;
}
.view-rate-details .rate_price_general > span {
  font-size: 14px;
  line-height: 20px;
}
.view-rate-details .rate_price_general > span.rate_details_label {
  display: block;
}
.view-rate-details .rate_price_general > span.price_age_value {
  margin-left: 3px;
}
.view-rate-details .rate_price_general > span.price_age_value:after {
  content: "";
  display: block;
}

.elementor-widget-babe-item-calendar .cal-month-block .cal-cell.cal-cell-invisible {
  display: none;
}

/*******************Order details table******************/
.table_order_items_details, table.table_order_items_details {
  border: 1px solid #dfdfdf;
  font-size: 15px;
}

.table_order_items_details > tr {
  border-bottom: none;
  border-right: none;
}
.table_order_items_details > tbody > tr > td, .table_order_items_details > tbody > tr:last-child > td {
  border-bottom: none;
  border-right: none;
}
.table_order_items_details > tbody > tr > td {
  border-bottom: 1px solid #dfdfdf;
}
.table_order_items_details .order_item_service_title {
  font-weight: 700;
}

.table_order_item_row_details, table.table_order_item_row_details {
  border: none;
  margin: 0;
}
.table_order_item_row_details > tbody > tr, table.table_order_item_row_details > tbody > tr {
  border: none;
  margin: 0;
}

.table_order_item_total_price, table.table_order_item_total_price {
  border: none;
  margin: 0;
}
.table_order_item_total_price tr, table.table_order_item_total_price tr {
  border: none;
  margin: 0;
}

.table_order_item_row_details td, table.table_order_item_row_details td {
  padding: 2px 5px;
  border: none;
}

.table_order_items_details td.order_item_info_title {
  font-size: 20px;
}

.order_item_td_label {
  padding-right: 5px;
  font-weight: 700;
}

.order_item_td_value {
  padding-right: 10px;
}

.table_order_item_total_price td, table.table_order_item_total_price td {
  padding: 3px 10px 3px 10px;
}

.table_order_item_total_price td.order_item_total_price, table.table_order_item_total_price td.order_item_total_price {
  color: #f7931e;
  font-weight: 700;
  border: none;
}

td.order_item_row_price {
  padding: 0;
}

.order_item_row_price .order_item_discount_note {
  font-style: italic;
  background-color: #f7931e;
  color: #fff;
  padding: 3px 7px;
  border-radius: 5px;
}

.order_item_age_prices, .order_item_services {
  border: none;
  margin: 0;
  width: auto;
}

table.order_item_age_prices, table.order_item_services {
  border: none;
  margin: 0;
  width: auto;
}

.order_items_row_total {
  text-align: right;
  font-weight: 700;
  color: #777;
  background-color: #f2f2f2;
  padding: 0;
}

table td.order_items_row_total {
  text-align: right;
  font-weight: 700;
  color: #777;
  background-color: #f2f2f2;
  padding: 0;
}
table td.order_items_row_total_amount {
  font-weight: 700;
  font-size: 17px;
  background-color: #f2f2f2;
  padding: 4px;
}
table td.order_items_row_total_amount.order_items_row_due {
  color: #f7931e;
}

.order_items_row_total_label {
  padding-right: 10px;
}

table.order_item_age_prices td {
  padding: 3px;
}

.order_status_draft {
  color: #888;
}

.order_status_av_confirmation {
  border-color: cornflowerblue;
  background-color: gainsboro;
}

.order_status_payment_expected {
  border-color: darkorange;
  background-color: khaki;
}

.order_status_not_available {
  border-color: brown;
  background-color: antiquewhite;
}

.order_status_payment_deferred, .order_status_payment_processing, .order_status_payment_received {
  border-color: forestgreen;
  background-color: aliceblue;
}

/***********Coupon************/
.coupon-form-block {
  display: flex;
  justify-content: space-around;
  align-items: baseline;
  flex-wrap: wrap;
  padding: 20px 20px 0;
  background-color: #f6f6f6;
}

.coupon-form-block-applied {
  text-align: center;
  margin-bottom: 10px;
  padding: 10px;
  background-color: #f3f3f3;
  border: 1px solid #1e73be;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.15;
}

.coupon-form-block > * {
  margin-bottom: 20px;
}
.coupon-form-block .coupon_form_input_label {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.15;
}
#coupon_input_field {
  font-size: 16px;
  font-weight: 500;
  padding: 5px 15px;
}

#coupon_form_submit_loader {
  text-align: center;
  min-width: 50px;
}

/***********************Checkout *****************/
#edit_user_profile .input_group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.checkout_form_input_field {
  position: relative;
}

.checkout_form_input_field_focus {
  color: var(--e-global-color-primary);
  border-color: var(--e-global-color-primary);
}

#checkout_form .input_group > div input:focus, #edit_user_profile .input_group > div input:focus {
  outline: none;
}

#checkout_form label.error {
  color: red;
  display: block;
  margin: 5px 0 0 0;
}
#checkout_form .paypal-payment-description h4 {
  font-weight: normal;
  font-size: 14px;
}
#checkout_form .payment_method_fields img {
  margin-bottom: 10px;
  max-height: 40px;
}
#checkout_form .terms_group, #checkout_form .contact_fields_group {
  margin-bottom: 20px;
}
#checkout_form .payment_details_before_av_check {
  border: 1px solid;
  border-color: var(--e-global-color-primary);
  background-color: aliceblue;
  padding: 20px;
  color: #000;
  font-weight: 500;
}

#stripe-card-element {
  width: 100%;
}

.checkout-wrapper .checkout-title {
  font-size: 30px;
}
.checkout-wrapper .checkout_form_input_field {
  margin-bottom: 20px;
}
.checkout-wrapper .checkout_form_input_field input {
  width: 100%;
  font-size: 14px;
  color: #000;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.checkout-wrapper .amount_group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 30px;
  margin-bottom: 20px;
  border-bottom: 1px solid;
  border-color: var(--e-global-color-border);
}
.checkout-wrapper .checkout_form_amount_label {
  font-size: 14px;
  font-weight: 700;
  margin-right: 1rem;
}
.checkout-wrapper .payment_method_title {
  font-weight: 500;
  cursor: pointer;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background-color: #f6f6f6;
  padding: 10px 15px;
  font-size: 14px;
}
.checkout-wrapper .payment_method_title:not(:last-child) {
  margin-right: 0.5rem;
}
.checkout-wrapper .payment_method_title.tab_active {
  color: var(--e-global-color-primary);
}
.checkout-wrapper .payment_fields_group {
  font-size: 14px;
}
.checkout-wrapper .payment_fields_group .tab_content {
  display: none;
  background: #f6f6f6;
  padding: 1rem;
}
.checkout-wrapper .payment_fields_group .tab_content.tab_active {
  display: block;
}
.checkout-wrapper .checkout_form_terms_check {
  color: #000;
}
.checkout-wrapper .checkout_form_terms_details {
  overflow: auto;
  max-height: 105px;
  padding: 0 1.5rem;
  font-size: 14px;
}
.checkout-wrapper .payment_group {
  margin-bottom: 10px;
}
.checkout-wrapper .payment_titles_group {
  padding: 5px 0;
}
.checkout-wrapper .order_item_info_title a {
  font-size: 20px;
  line-height: 1.5em;
  font-weight: 500;
  color: var(--e-global-color-primary);
}
.checkout-wrapper .order_item_info_title a:hover {
  color: var(--e-global-color-primary);
}
.checkout-wrapper .order_items_row_total_amount,
.checkout-wrapper .table_order_item_total_price td.order_item_total_price,
.checkout-wrapper table.table_order_item_total_price td.order_item_total_price {
  color: var(--e-global-color-primary);
  font-size: 14px;
}
.checkout-wrapper .checkout_form_pay_total {
  color: var(--e-global-color-primary);
}
.checkout-wrapper .checkout_form_pay_total .input-cicrle input[type=radio] + label:before, .checkout-wrapper .checkout_form_pay_total .input-cicrle input[type=checkbox] + label:before {
  height: 16px;
  width: 16px;
}
.checkout-wrapper .checkout_form_pay_total .currency_amount {
  font-size: 18px;
}
.checkout-wrapper .table_order_items_details, .checkout-wrapper table.table_order_items_details {
  border-top: 1px solid;
  border-color: var(--e-global-color-border);
  border-bottom: none;
  border-left: none;
  border-right: none;
}
.checkout-wrapper .table_order_items_details > tbody > tr > td {
  border: none;
}
.checkout-wrapper table td.order_items_row_total {
  font-size: 14px;
  background-color: #f6f6f6;
  color: var(--e-global-color-primary);
}
.checkout-wrapper table td, .checkout-wrapper table th {
  padding-left: 0;
  padding-right: 0;
}
.checkout-wrapper .order_item_td_label {
  font-size: 14px;
}
.checkout-wrapper td.order_item_row_price {
  padding: 1em 0;
}
.checkout-wrapper .order_item_row_image img {
  max-height: 110px;
}
@media (max-width: 767px) {
  .checkout-wrapper .order_item_row_image img {
    display: none;
  }
}
.checkout-wrapper table.table_order_items_details > tbody > tr:first-child {
  border-bottom: 1px solid;
  border-color: var(--e-global-color-border);
}
.checkout-wrapper table.table_order_items_details > tbody > tr:first-child > td {
  padding-top: 2rem;
}
.checkout-wrapper table.table_order_items_details > tbody > tr .order_items_row_total.order_items_row_subtotal,
.checkout-wrapper table.table_order_items_details > tbody > tr .order_items_row_total_amount.order_items_row_subtotal {
  padding-top: 30px !important;
}
.checkout-wrapper table.table_order_items_details > tbody > tr:last-child .order_items_row_total,
.checkout-wrapper table.table_order_items_details > tbody > tr:last-child .order_items_row_total_amount {
  vertical-align: middle;
  padding-bottom: 30px !important;
}
.checkout-wrapper table.table_order_items_details > tbody > tr .order_items_row_total,
.checkout-wrapper table.table_order_items_details > tbody > tr .order_items_row_total_amount {
  vertical-align: middle;
}
.checkout-wrapper .order_item_info_guests .order_item_td_value {
  display: inherit;
}
.checkout-wrapper table td.order_items_row_total_amount.order_items_row_due {
  font-size: 18px;
  line-height: 1.3em;
}

.entry-content .checkout-wrapper table:not(.shop_table) td, .entry-content .checkout-wrapper table:not(.shop_table) th {
  border: none;
}

.checkout-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.checkout-row .checkout-list-item {
  flex: 0 0 100%;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 1024px) {
  .checkout-row .checkout-list-item {
    padding-right: 95px;
    flex: 0 0 66.6667%;
    max-width: 66.6667%;
  }
}
.checkout-row .checkout-info {
  flex: 0 0 100%;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 1024px) {
  .checkout-row .checkout-info {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}

body.elementor-template-full-width .checkout-wrapper {
  margin-top: 5.9973393873em;
  margin-bottom: 2.290779772em;
}
@media (max-width: 768px) {
  body.elementor-template-full-width .checkout-wrapper {
    margin-top: 2.290779772em;
  }
}

/**************Confirm***************/
.babe_admin_order_confirm {
  text-align: center;
  padding: 20px;
}

.babe_button_admin_order {
  display: block;
  text-align: center;
  padding: 20px;
  width: 75%;
  min-width: 300px;
  font-weight: 700;
  font-size: 18px;
  margin-left: auto;
  margin-right: auto;
  background-color: #ff4800;
  color: #ffffff;
}
.babe_button_admin_order:hover, .babe_button_admin_order:focus, .babe_button_admin_order:active {
  text-decoration: none;
  color: #ffffff;
}

.babe_button_admin_order_confirm {
  background-color: #9acd32;
}

.babe_button_admin_order_reject {
  background-color: #F64020;
}

.babe_message_order {
  display: block;
  font-size: 18px;
  border: 1px solid;
  border-color: var(--e-global-color-border);
  padding: 20px;
  color: var(--e-global-color-primary);
  text-align: center;
}

.babe_message_order_confirm {
  border-color: forestgreen;
  background-color: aliceblue;
}

.babe_message_order_reject {
  border-color: brown;
  background-color: antiquewhite;
}

.babe_message_order_status_av_confirmation {
  border-color: cornflowerblue;
  background-color: gainsboro;
}

.babe_message_order_status_payment_expected {
  border-color: darkorange;
  background-color: khaki;
}

.babe_message_order_status_not_available {
  border-color: brown;
  background-color: antiquewhite;
}

.babe_message_order_status_payment_deferred, .babe_message_order_status_payment_processing, .babe_message_order_status_payment_received {
  border: 0;
  color: #7cc566;
  background-color: #f8f8f8;
  padding: 2em 1em;
  margin-bottom: 40px;
}

.babe_order_confirm {
  padding: 20px;
}

.babe_button_order {
  display: block;
  text-align: center;
  padding: 20px;
  width: 75%;
  min-width: 300px;
  font-weight: 700;
  font-size: 18px;
  margin-left: auto;
  margin-right: auto;
  background-color: #ff4800;
  color: #ffffff;
}
.babe_button_order:hover, .babe_button_order:focus, .babe_button_order:active {
  text-decoration: none;
  color: #ffffff;
}

.confirmation-information {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 850px;
  margin: 0 auto;
  margin-bottom: 50px;
}
.confirmation-information > div {
  display: flex;
  flex-direction: column;
  width: 25%;
  text-align: center;
  border-right: 1px solid;
  border-right-color: var(--e-global-color-border);
}
.confirmation-information > div:last-child {
  border-right: none;
}
@media (max-width: 767px) {
  .confirmation-information > div {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid;
    border-bottom-color: var(--e-global-color-border);
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  .confirmation-information > div:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
.confirmation-information div .title {
  font-size: 14px;
  margin-bottom: 3px;
  color: var(--e-global-color-primary);
}
.confirmation-information div .content {
  font-size: 14px;
  color: var(--e-global-color-primary);
}
.confirmation-information div .content .currency_amount {
  font-weight: 400;
}

.order-details-table {
  max-width: 630px;
  margin: 0 auto;
}
.order-details-table .order-heading {
  font-size: 24px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 38px;
}
.order-details-table .order-body {
  display: flex;
  flex-wrap: wrap;
  padding-top: 35px;
  padding-bottom: 25px;
  border-top: 1px solid;
  border-top-color: var(--e-global-color-border);
}
.order-details-table .order-body .order-content {
  width: 85%;
  padding-right: 15px;
}
.order-details-table .order-body .order-content > div {
  margin-bottom: 5px;
}
.order-details-table .order-body .order-content > div .label {
  font-size: 14px;
  font-weight: 700;
  color: var(--e-global-color-primary);
}
.order-details-table .order-body .order-content > div .value {
  font-size: 14px;
  font-weight: 400;
  color: var(--e-global-color-primary);
}
.order-details-table .order-body .order-content > div .value .currency_amount {
  color: var(--e-global-color-primary);
}
.order-details-table .order-body .order-content > div:last-child {
  margin-bottom: 0;
}
.order-details-table .order-body .order-content > div:first-child {
  margin-bottom: 7px;
}
@media (max-width: 767px) {
  .order-details-table .order-body .order-content {
    width: 75%;
  }
}
.order-details-table .order-body .order-price {
  width: 15%;
  text-align: left;
  padding-left: 15px;
}
.order-details-table .order-body .order-price .currency_amount {
  display: inline-block;
  margin-top: 5px;
  font-size: 14px;
  color: var(--e-global-color-primary);
}
@media (max-width: 767px) {
  .order-details-table .order-body .order-price {
    width: 25%;
  }
}
.order-details-table .order-body .title a {
  font-size: 20px;
  font-weight: 500;
  color: var(--e-global-color-primary);
}
.order-details-table .order-body .title a:hover {
  color: var(--e-global-color-primary);
}
.order-details-table .order-body .date-time span.date {
  margin-right: 5px;
}
.order-details-table .order-body .tickets .label {
  margin-bottom: 8px;
  display: block;
}
.order-details-table .order-service .order_item_details {
  display: flex;
  flex-wrap: wrap;
  padding-top: 16px;
  padding-bottom: 16px;
  border-top: 1px solid;
  border-top-color: var(--e-global-color-border);
}
.order-details-table .order-service .order_item_details .details {
  width: 85%;
  padding-right: 15px;
}
.order-details-table .order-service .order_item_details .details .title, .order-details-table .order-service .order_item_details .details .guests {
  font-weight: 700;
  font-size: 14px;
  color: var(--e-global-color-primary);
}
@media (max-width: 767px) {
  .order-details-table .order-service .order_item_details .details {
    width: 75%;
  }
}
.order-details-table .order-service .order_item_details .price {
  width: 15%;
  padding-left: 15px;
  text-align: left;
}
.order-details-table .order-service .order_item_details .price .currency_amount {
  display: inline-block;
  font-size: 14px;
  color: var(--e-global-color-primary);
}
@media (max-width: 767px) {
  .order-details-table .order-service .order_item_details .price {
    width: 25%;
  }
}
.order-details-table .order-total-subtotal {
  background-color: #f6f6f6;
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid;
  border-top-color: var(--e-global-color-border);
}
.order-details-table .order-total-subtotal .order_items_total {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 6px;
}
.order-details-table .order-total-subtotal .order_items_total .label {
  width: 85%;
  text-align: right;
  padding-right: 15px;
  font-weight: 700;
  font-size: 14px;
}
@media (max-width: 767px) {
  .order-details-table .order-total-subtotal .order_items_total .label {
    width: 75%;
  }
}
.order-details-table .order-total-subtotal .order_items_total .amount {
  width: 15%;
  text-align: left;
  padding-left: 15px;
}
.order-details-table .order-total-subtotal .order_items_total .amount .currency_amount {
  font-size: 14px;
  color: var(--e-global-color-primary);
}
@media (max-width: 767px) {
  .order-details-table .order-total-subtotal .order_items_total .amount {
    width: 25%;
  }
}
.order-details-table .order-total-subtotal .order_items_total .amount-total .currency_amount {
  font-size: 18px;
  color: var(--e-global-color-primary);
}

.confirmation-page-default {
  margin-top: 50px;
  margin-bottom: 140px;
}
@media (max-width: 1024px) {
  .confirmation-page-default {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .confirmation-page-default {
    margin-bottom: 60px;
  }
}

/*************Stars**************/
.comment-form-rating {
  margin-bottom: 5px;
  display: none;
}

.comment-form-rating-ul {
  list-style: none;
  padding-left: 10px;
  padding-right: 10px;
  margin: 0;
}
.comment-form-rating-ul li {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.comment-form-rating-criterion {
  margin-right: 15px;
  margin-bottom: 15px;
  min-width: 70px;
  display: inline-block;
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  font-size: 14px;
  font-size: 0.875rem;
  color: var(--e-global-color-lighter);
}

.comment-form-rating-stars {
  display: flex;
  gap: 2px;
}
.comment-form-rating-stars .star {
  font-size: 14px;
  font-size: 0.875rem;
  color: #FFD15D;
}
.comment-form-rating-stars .star .far {
  color: #CCCCCC;
}
.comment-form-rating-stars .star:hover {
  cursor: pointer;
}

.comment-rating-ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  margin-top: -12px;
  margin-bottom: 20px;
}
.comment-rating-ul .comment-rating-stars {
  display: flex;
  gap: 2px;
  font-size: 12px;
}
.comment-rating-ul li {
  margin-right: 50px;
}

.children .comment-rating-ul {
  display: none;
}

.comment-rating-criterion {
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3;
  color: var(--e-global-color-lighter);
  margin-right: 10px;
  margin-bottom: 10px;
  display: block;
}

.comment-total-rating-stars {
  display: none;
}

.comment-rating-stars .star, .comment-total-rating-stars .star {
  color: #FFD15D;
}
.comment-rating-stars .star .far, .comment-total-rating-stars .star .far {
  color: #CCCCCC;
}

.comment-total-rating-value, .post-total-rating-value {
  padding-left: 5px;
  padding-right: 5px;
}
@media (max-width: 567px) {
  .comment-total-rating-value, .post-total-rating-value {
    padding-left: 0;
    padding-right: 0;
  }
}

.post-total-rating {
  position: relative;
}

.post-rating-ul {
  list-style: none;
  padding-left: 0;
  display: none;
  position: absolute;
}

.post-rating-criterion {
  margin-right: 10px;
}

.post-rating-stars .star, .post-total-rating-stars .star {
  color: #FE7C3C;
}

.single-to_book #comments {
  margin: 0 auto;
  max-width: 100%;
}
.single-to_book .comment-form-rating-ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 32px;
  gap: 20px 50px;
  order: 0;
}
.single-to_book #respond {
  padding-top: 10px;
}
.single-to_book #comments .comment-list .comment-body {
  border-radius: 0;
  box-shadow: none;
  padding-right: 0;
  margin-bottom: 0;
}
.single-to_book #comments .comment-list .comment-meta {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .single-to_book #comments .comment-list .comment-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
  }
  .single-to_book #comments .comment-list .comment-meta .comment-date {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .single-to_book #comments .comment-list .comment-meta .comment-date:before {
    content: "-";
  }
}
.single-to_book #comments .comment-list .comment-meta cite, .single-to_book #comments .comment-list .comment-meta .comment-date {
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}
.single-to_book #comments .comment-list .comment-meta .avatar {
  width: 50px;
  left: -70px;
}
.single-to_book .comment-list-wrap .comments-title {
  display: none;
}
.single-to_book .comment-list-wrap #comment-nav-above {
  display: none;
}
.single-to_book .comment-result {
  margin-bottom: 20px;
  color: var(--e-global-color-lighter);
}
.single-to_book #commentform .submit {
  padding: 19px 25px;
  font-size: 16px;
  font-size: 1rem;
  border-radius: 16px;
}

.review-score {
  display: flex;
  align-items: center;
  gap: 100px;
}
@media (max-width: 767px) {
  .review-score {
    flex-wrap: wrap;
  }
}

.rating-value {
  text-align: center;
}

.review-criteria {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
}
.review-criteria .review-item {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.review-criteria .review-item .post-rating-criterion, .review-criteria .review-item .post-rating-value {
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.3;
  color: #ffffff;
}
.review-criteria .review-item .post-rating-value {
  font-family: var(--e-global-typography-primary-font-family);
  font-weight: var(--e-global-typography-primary-font-weight);
  text-transform: var(--e-global-typography-primary-text-transform);
  font-style: var(--e-global-typography-primary-font-style);
  text-decoration: var(--e-global-typography-primary-text-decoration);
  line-height: var(--e-global-typography-primary-line-height);
  letter-spacing: var(--e-global-typography-primary-letter-spacing);
}
.review-criteria .review-item .review-progress {
  width: 100%;
  height: 24px;
  background-color: #F0F3FD;
  border-radius: 142px;
  overflow: hidden;
}
.review-criteria .review-item .review-progress .progress {
  display: flex;
  justify-content: space-between;
  padding: 0 12px;
  height: 100%;
  align-items: center;
  border-radius: 112px;
  background-color: var(--e-global-color-primary);
}

.rating-score {
  font-family: var(--e-global-typography-primary-font-family);
  font-weight: var(--e-global-typography-primary-font-weight);
  text-transform: var(--e-global-typography-primary-text-transform);
  font-style: var(--e-global-typography-primary-font-style);
  text-decoration: var(--e-global-typography-primary-text-decoration);
  line-height: var(--e-global-typography-primary-line-height);
  letter-spacing: var(--e-global-typography-primary-letter-spacing);
  font-size: 51px;
  font-size: 3.1875rem;
  color: var(--e-global-color-primary);
  line-height: 1.3;
}

.ratting-text {
  color: #010926;
  font-family: var(--e-global-typography-primary-font-family);
  font-weight: var(--e-global-typography-primary-font-weight);
  text-transform: var(--e-global-typography-primary-text-transform);
  font-style: var(--e-global-typography-primary-font-style);
  text-decoration: var(--e-global-typography-primary-text-decoration);
  line-height: var(--e-global-typography-primary-line-height);
  letter-spacing: var(--e-global-typography-primary-letter-spacing);
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.rating-vote {
  color: var(--e-global-color-lighter);
  font-size: 14px;
  font-size: 0.875rem;
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
}

#comments .comment-list #respond .comment-form-rating-ul {
  display: none;
}
#comments .comment-list #respond .comment-form-comment {
  max-width: 100%;
  flex: 0 0 100%;
}

.elementor-widget-babe-item-stars .rating-count {
  display: none;
}
.elementor-widget-babe-item-stars .rating-stars-wrapper {
  display: inline-flex;
  align-items: flex-start;
  gap: 5px;
}
@media (max-width: 567px) {
  .elementor-widget-babe-item-stars .post-total-rating-stars {
    align-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }
}
.elementor-widget-babe-item-stars .rating-stars {
  display: none;
  font-size: 12px;
}
.elementor-widget-babe-item-stars .post-total-rating-value {
  font-size: 14px;
  padding: 0;
  color: var(--e-global-color-primary);
}

.elementor-widget-babe-rating-filter .post-total-rating-stars {
  display: flex;
  margin: 14px 0;
  justify-content: space-between;
}
.elementor-widget-babe-rating-filter .post-total-rating-stars:last-child {
  margin-bottom: 0;
}
.elementor-widget-babe-rating-filter .post-total-rating-stars .star {
  color: #000000;
  line-height: 1;
  font-size: 16px;
  font-size: 1rem;
}
.elementor-widget-babe-rating-filter .post-total-rating-stars .star .icon-hidden {
  color: #D9D9D9;
}
.elementor-widget-babe-rating-filter .post-total-rating-stars .rating-count {
  color: var(--e-global-color-lighter);
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  font-size: 14px;
  font-size: 0.875rem;
}
.elementor-widget-babe-rating-filter .rating-stars {
  display: flex;
  gap: 2px;
}

.tripay-no-review {
  margin-bottom: 2em;
  padding: 1em 0;
  border-bottom: 1px solid;
  border-top: 1px solid;
  border-color: var(--e-global-color-border);
}

/*****************Filters*********/
.babe_price_slider_label {
  display: flex;
}

.widget-babe-price-slider {
  display: flex;
  flex-direction: column-reverse;
}
.widget-babe-price-slider .price_slider_amount {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  align-items: center;
}
.widget-babe-price-slider .babe_price_slider_label {
  display: flex;
  align-items: center;
  font-family: var(--e-global-typography-accent-font-family);
  font-weight: var(--e-global-typography-accent-font-weight);
  text-transform: var(--e-global-typography-accent-text-transform);
  font-style: var(--e-global-typography-accent-font-style);
  text-decoration: var(--e-global-typography-accent-text-decoration);
  line-height: var(--e-global-typography-accent-line-height);
  letter-spacing: var(--e-global-typography-accent-letter-spacing);
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0;
  text-transform: capitalize;
  color: var(--e-global-color-secondary);
}
.widget-babe-price-slider .babe_price_slider_label .price_label {
  color: #8b8b8b;
}
.widget-babe-price-slider .babe_price_slider_button button {
  font-family: var(--e-global-typography-accent-font-family);
  font-weight: var(--e-global-typography-accent-font-weight);
  text-transform: var(--e-global-typography-accent-text-transform);
  font-style: var(--e-global-typography-accent-font-style);
  text-decoration: var(--e-global-typography-accent-text-decoration);
  line-height: var(--e-global-typography-accent-line-height);
  letter-spacing: var(--e-global-typography-accent-letter-spacing);
  background-color: transparent;
  border: none;
  padding: 0;
  color: var(--e-global-color-secondary);
  letter-spacing: 0;
  text-transform: capitalize;
  font-size: 16px;
  font-size: 1rem;
  text-decoration: underline;
}
.widget-babe-price-slider .babe_price_slider_button button:hover {
  color: var(--e-global-color-primary);
}

.widgettitle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.widgettitle:after {
  margin-left: 11px;
  font-family: "tripay-icon";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  content: "";
  transition: all ease 0.2s;
  font-size: 16px;
  font-size: 1rem;
  transform: rotate(0deg);
}
.widgettitle.toggled-on:after {
  font-family: "tripay-icon";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  content: "";
}

#babe_range_price {
  display: inline-block;
  width: 100%;
  border: none;
  font-size: 14px;
  color: #000;
  line-height: 1.5em;
  padding: 5px;
}

.babe_price_slider {
  margin-top: 1rem;
}

.elementor-widget-wp-widget-babe_widget_search_filter_terms h5,
.elementor-widget-wp-widget-babe_search_filter_price h5 {
  font-weight: 500;
  line-height: 1.25em;
}

.babe-search-filter-terms .term_item {
  position: relative;
  display: flex;
  align-items: center;
  margin: 16px 0;
  justify-content: space-between;
}
.babe-search-filter-terms .term_item:last-child {
  margin-bottom: 0;
}
.babe-search-filter-terms .term_item > input[type=checkbox] {
  opacity: 0;
  display: none;
}
.babe-search-filter-terms .term_item > input[type=checkbox]:checked + label:before {
  background-color: var(--e-global-color-primary);
  border-color: var(--e-global-color-primary);
  text-indent: 0;
}
.babe-search-filter-terms .term_item > input[type=checkbox]:checked + label:after {
  content: "";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  z-index: 1;
  background-color: transparent;
  border: 3px solid #ffffff;
  position: absolute;
  left: 1px;
  text-indent: -999px;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.babe-search-filter-terms .term_item > input[type=radio] {
  opacity: 0;
  display: none;
}
.babe-search-filter-terms .term_item > input[type=radio]:checked + label:before {
  background-color: var(--e-global-color-primary);
  border-color: var(--e-global-color-primary);
  text-indent: 0;
}
.babe-search-filter-terms .term_item > input[type=radio]:checked + label:after {
  content: "";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  z-index: 1;
  background-color: transparent;
  border: 3px solid #ffffff;
  border-radius: 50%;
  position: absolute;
  left: 1px;
  text-indent: -999px;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.babe-search-filter-terms .term_item > label {
  margin: 0;
  cursor: pointer;
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  color: var(--e-global-color-secondary);
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.babe-search-filter-terms .term_item > label:hover {
  color: var(--e-global-color-primary);
}
.babe-search-filter-terms .term_item > label:hover.radio:before, .babe-search-filter-terms .term_item > label:hover.multicheck:before {
  border-color: var(--e-global-color-primary);
}
.babe-search-filter-terms .term_item > label.radio:before {
  content: "";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid;
  width: 20px;
  height: 20px;
  z-index: 1;
  font-size: 12px;
  color: #fff;
  margin-right: 8px;
  background-color: #fff;
  border-color: var(--e-global-color-border);
  border-radius: 50%;
  text-indent: -999px;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.babe-search-filter-terms .term_item > label.multicheck:before {
  content: "";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid;
  width: 20px;
  height: 20px;
  z-index: 1;
  font-size: 12px;
  color: #fff;
  margin-right: 8px;
  background-color: #fff;
  border-color: var(--e-global-color-border);
  text-indent: -999px;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.babe-search-filter-terms .term_item > span {
  color: var(--e-global-color-lighter);
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  font-size: 14px;
  font-size: 0.875rem;
}

.elementor-widget-babe-rating-filter.layout-style-2 .rating-filter-inner {
  display: flex;
  flex-wrap: wrap;
}
.elementor-widget-babe-rating-filter.layout-style-2 .post-total-rating-stars:not(:last-child) {
  margin-right: 20px;
}

/***************My account***************/
.site-dashboard {
  margin: 0 !important;
}

#my_account_page_wrapper {
  display: block;
  width: auto;
  margin-top: 65px;
}
#my_account_page_wrapper .my_account_my_bookings_table {
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  #my_account_page_wrapper .my_account_my_bookings_table {
    margin-bottom: 0;
  }
}
#my_account_page_wrapper .my_account_my_bookings_table td.my_bookings_table_td_expand {
  padding: 10px 0 0;
}
#my_account_page_wrapper .my_account_my_bookings_table td.my_bookings_table_td_order_num a {
  font-size: 14px;
  font-weight: 400;
}
#my_account_page_wrapper .my_account_my_bookings_table td.my_bookings_table_td_order_num a:not(:hover) {
  color: var(--e-global-color-primary);
}
#my_account_page_wrapper .my_account_my_bookings_table td.order_item_info_title, #my_account_page_wrapper .my_account_my_bookings_table td.order_item_info_dates {
  display: none;
}
#my_account_page_wrapper .my_account_my_bookings_table > thead th {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--e-global-color-secondary);
}
#my_account_page_wrapper .my_account_my_bookings_table > thead th {
  padding: 10px 5px;
}
@media (max-width: 1024px) {
  #my_account_page_wrapper .my_account_my_bookings_table > thead {
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
}
#my_account_page_wrapper .my_account_my_bookings_table > tbody {
  border-bottom: 1px solid;
  border-bottom-color: var(--e-global-color-border);
}
#my_account_page_wrapper .my_account_my_bookings_table > tbody > tr {
  border-top: 1px solid;
  border-color: var(--e-global-color-border);
}
#my_account_page_wrapper .my_account_my_bookings_table > tbody > tr > td {
  padding: 10px 5px;
  vertical-align: top;
  word-break: unset;
}
#my_account_page_wrapper .my_account_my_bookings_table > tbody > tr > td > span.title-mobile {
  display: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  color: var(--e-global-color-primary);
}
@media (max-width: 1024px) {
  #my_account_page_wrapper .my_account_my_bookings_table > tbody > tr > td > span.title-mobile {
    display: inline-block;
    min-width: 100px;
  }
}
#my_account_page_wrapper .my_account_my_bookings_table > tbody > tr > td > a {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 1024px) {
  #my_account_page_wrapper .my_account_my_bookings_table > tbody > tr > td {
    display: flex;
    width: 50%;
    align-items: center;
    justify-content: space-between;
    padding: 5px 15px;
  }
  #my_account_page_wrapper .my_account_my_bookings_table > tbody > tr > td:nth-child(even) {
    padding-right: 0;
  }
  #my_account_page_wrapper .my_account_my_bookings_table > tbody > tr > td:nth-child(odd) {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  #my_account_page_wrapper .my_account_my_bookings_table > tbody > tr > td {
    width: 100%;
    padding: 5px 0;
  }
}
@media (max-width: 1024px) {
  #my_account_page_wrapper .my_account_my_bookings_table > tbody > tr {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 0;
  }
  #my_account_page_wrapper .my_account_my_bookings_table > tbody > tr:nth-child(even) {
    padding: 0;
    border: none;
  }
}
#my_account_page_wrapper .my_account_my_bookings_table .currency_amount {
  color: var(--e-global-color-primary);
}
#my_account_page_wrapper .my_account_my_bookings_table .table_order_items_details,
#my_account_page_wrapper .my_account_my_bookings_table table.table_order_items_details {
  border: none;
}
#my_account_page_wrapper .my_bookings_table_a_expand {
  font-weight: 500;
}
#my_account_page_wrapper .my_bookings_table_a_expand:not(:hover) {
  color: var(--e-global-color-primary);
}
#my_account_page_wrapper .my_bookings_table_a_expand:hover {
  color: var(--e-global-color-primary);
}
#my_account_page_wrapper .my_bookings_table_td_date_to,
#my_account_page_wrapper .my_bookings_table_td_date_from {
  color: var(--e-global-color-primary);
}
#my_account_page_wrapper .order_item_row_image {
  width: 140px;
}
#my_account_page_wrapper .order_item_row_image a {
  padding: 10px;
  display: block;
}
#my_account_page_wrapper .order_item_row_image img {
  max-width: 90px;
}
#my_account_page_wrapper .table_order_items_details > tbody > tr > td {
  padding: 10px;
  vertical-align: middle;
  color: #777;
  background-color: #f2f2f2;
}
#my_account_page_wrapper .order_item_age_prices tbody {
  display: flex;
}
#my_account_page_wrapper .order_item_age_prices tbody > tr:not(:last-child) {
  padding-right: 1rem;
}
#my_account_page_wrapper .table_order_item_row_details .order_item_info_guests {
  display: flex;
  align-items: center;
}
#my_account_page_wrapper .table_customer_details tbody > tr > td {
  padding: 10px;
  vertical-align: middle;
  background-color: #f2f2f2;
}
#my_account_page_wrapper .table_customer_details tbody > tr:not(:last-child) > td {
  border-bottom: 1px solid #dfdfdf;
}
#my_account_page_wrapper .table_customer_details .customer_field_label {
  text-align: right;
}
#my_account_page_wrapper .my_account_all_posts_table thead th {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  color: var(--e-global-color-secondary);
  letter-spacing: 0.1em;
}
#my_account_page_wrapper .my_account_all_posts_table thead th {
  padding: 1rem;
}
#my_account_page_wrapper .my_account_all_posts_table tbody tr {
  border-top: 1px solid;
  border-color: var(--e-global-color-border);
}
#my_account_page_wrapper .my_account_all_posts_table tbody tr td {
  padding: 1rem;
  vertical-align: middle;
}
#my_account_page_wrapper .my_account_all_posts_table .item-thumbnail {
  width: 120px;
}
#my_account_page_wrapper .my_account_all_posts_table .item-title h5 {
  margin: 0;
}
#my_account_page_wrapper .my_account_all_posts_table .item-title a {
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1;
  color: var(--e-global-color-text);
  font-weight: 500;
  text-transform: capitalize;
}
#my_account_page_wrapper .my_account_all_posts_table .item-title a:hover {
  color: var(--e-global-color-primary);
}
#my_account_page_wrapper .my_account_all_posts_table .item-published {
  color: var(--e-global-color-primary);
}
@media (max-width: 1023px) {
  #my_account_page_wrapper .my_account_all_posts_table .item-published {
    display: none;
  }
}
@media (max-width: 1023px) {
  #my_account_page_wrapper .my_account_all_posts_table .head-published {
    display: none;
  }
}
#my_account_page_wrapper .my_account_all_posts_table .head-action,
#my_account_page_wrapper .my_account_all_posts_table .item-action {
  text-align: right;
}
#my_account_page_wrapper .all-post-top-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  align-items: flex-end;
}
#my_account_page_wrapper .all-post-top-meta h2 {
  margin: 0;
}
#my_account_page_wrapper .my_account_no_posts p {
  margin: 0;
  text-align: center;
  font-size: 1.5em;
  color: var(--e-global-color-primary);
}

@media (min-width: 1024px) {
  #my_account_page_wrapper {
    margin-left: 250px;
  }
}
@media (min-width: 783px) {
  .admin-bar .my_account_page_nav_wrapper {
    height: calc(100vh - 97px);
    top: 32px;
  }

  .admin-bar .my_account_page_header_wrapper {
    top: 32px;
  }

  .site-dashboard .my_account_page_content_wrapper {
    min-height: calc(100vh - 97px);
  }
}
@media (max-width: 782px) {
  .admin-bar .my_account_page_nav_wrapper {
    height: calc(100vh - 97px);
    top: 46px;
  }

  .admin-bar .my_account_page_header_wrapper {
    top: 46px;
  }

  .my_account_page_content_wrapper {
    min-height: calc(100vh - 111px);
  }
}
.my_account_page_nav_wrapper {
  background: #1e1e2d;
  color: #a2a3b7;
  width: 250px;
  height: calc(100vh - 65px);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  padding: 0;
  flex-shrink: 1;
  margin-top: 65px;
  z-index: 99999;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -ms-transform: translate(-100%, 0);
  -o-transform: translate(-100%, 0);
  -moz-transform: translate(-100%, 0);
  -webkit-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}
@media (min-width: 1024px) {
  .my_account_page_nav_wrapper {
    transform: none;
  }
}
@media (max-width: 1023px) {
  .my_account_page_nav_wrapper {
    width: 300px;
  }
}
.mobile-nav-active .my_account_page_nav_wrapper {
  transform: none;
}
.my_account_page_nav_wrapper input {
  width: 100%;
  padding-right: 30px;
}
.my_account_page_nav_wrapper input:hover {
  cursor: pointer;
}
.my_account_page_nav_wrapper .my_account_page_nav_selector_i {
  position: absolute;
  right: 0.5em;
  top: 10px;
  padding: 0;
}
.my_account_page_nav_wrapper .my_account_page_nav_selector_i:hover {
  cursor: pointer;
}
.my_account_page_nav_wrapper ul li > span.my_account_nav_item_title {
  text-transform: uppercase;
  color: #fff;
  padding-bottom: 10px;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: bold;
}
.my_account_page_nav_wrapper ul li > span.my_account_nav_item_title i {
  display: none;
}
.my_account_page_nav_wrapper .my_account_nav_item_title {
  font-size: 14px;
  padding: 15px 30px;
  display: block;
  font-weight: 500;
}
.my_account_page_nav_wrapper .my_account_nav_item_title > i {
  opacity: 0.3;
}
.my_account_page_nav_wrapper .my_account_nav_item > a {
  color: #a2a3b7;
}
.my_account_page_nav_wrapper .my_account_nav_item:not(.my_account_nav_item_current):hover > a,
.my_account_page_nav_wrapper .my_account_nav_item_current {
  background-color: #1b1b28;
  border-right: 3px solid;
  border-right-color: var(--e-global-color-primary);
}
.my_account_page_nav_wrapper .my_account_nav_item:not(.my_account_nav_item_current):hover > a span,
.my_account_page_nav_wrapper .my_account_nav_item_current span {
  color: var(--e-global-color-primary);
}
.my_account_page_nav_wrapper .my_account_nav_item:not(.my_account_nav_item_current):hover > a i,
.my_account_page_nav_wrapper .my_account_nav_item_current i {
  color: var(--e-global-color-primary);
  opacity: 0.8;
}
.my_account_page_nav_wrapper .mCSB_inside > .mCSB_container {
  margin-right: 0;
}
.my_account_page_nav_wrapper .mCSB_scrollTools {
  width: 3px;
}
.my_account_page_nav_wrapper .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #fff;
  opacity: 0.6;
}

.dashboard-content-wrapper {
  background: #fff;
  border-radius: 4px;
  padding: 15px;
  -webkit-box-shadow: 0 0 30px 0 rgba(82, 63, 105, 0.05);
  box-shadow: 0 0 30px 0 rgba(82, 63, 105, 0.05);
  border: 0;
}
@media (min-width: 1024px) {
  .dashboard-content-wrapper {
    padding: 30px;
  }
}

.my_account_page_header_wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 11111;
}
.my_account_page_header_wrapper .menu-mobile-nav-button {
  order: inherit;
}

.my_account_page_header_inner {
  padding: 12px 30px;
  background: #fff;
  border-bottom: 1px solid;
  border-bottom-color: var(--e-global-color-border);
}

.button.button-go-back-home {
  border-radius: 50px;
  margin-left: 20px;
  padding: 10px 30px;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}
.button.button-go-back-home i:before {
  font-size: 16px;
  font-size: 1rem;
  color: #FFFFFF;
  margin: 0 10px 0 0;
}

.my_account_page_content_wrapper {
  padding: 40px 0;
  flex-grow: 2;
  flex-shrink: 5;
  background-color: #eef0f8;
  align-self: stretch;
  position: relative;
}
.my_account_page_content_wrapper input[type=text], .my_account_page_content_wrapper input[type=email], .my_account_page_content_wrapper input[type=url], .my_account_page_content_wrapper input[type=password], .my_account_page_content_wrapper input[type=search] {
  background-color: #fff;
  width: 100%;
}
.my_account_page_content_wrapper textarea {
  background-color: #fff;
  width: 100%;
}

#login_error {
  padding: 1rem;
  background-color: #fcf8e3;
  border: 1px solid;
  border-color: var(--e-global-color-border);
  margin: 0;
  flex-basis: 100%;
  border-radius: 5px;
  margin-top: 1rem;
  margin-bottom: 0px !important;
}

#password_reseted {
  padding: 1rem;
  background-color: greenyellow;
  border: 1px solid;
  border-color: var(--e-global-color-border);
  color: #333;
  margin: 0;
  flex-basis: 100%;
}

#babe_login #forgot_url {
  flex-basis: 100%;
  text-align: center;
  padding-top: 0;
}

@media screen and (max-width: 564px) {
  #babe_login div {
    flex-basis: 100%;
  }
}
#lostpassword_reset {
  display: flex;
  flex-wrap: wrap;
}
#lostpassword_reset div {
  flex-grow: 1;
  padding: 1rem;
  flex-basis: 100%;
}

#lostpassword h2 {
  text-align: center;
}

#lostpassword_reset div input, #lostpassword_reset div button {
  width: 100%;
}

.new-username-check-msg, .new-email-check-msg {
  display: none;
  color: #f33;
}

.form-spinner {
  display: none;
  flex-basis: 100%;
  text-align: center;
}

.login_registration,
#login_registration {
  text-align: center;
  margin-bottom: 1.618em;
}

.modal .modal-header {
  align-items: center;
  justify-content: center;
  position: relative;
}
.modal .modal-header .close {
  padding: 0 10px;
  margin: 0;
  position: absolute;
  right: 0;
  top: 0;
  background: transparent;
  color: #000;
  font-size: 30px;
  line-height: 1em;
  display: inline-block;
}
.modal .modal-header .close:hover, .modal .modal-header .close:focus {
  opacity: 1;
  color: var(--e-global-color-primary);
  background-color: transparent;
}

#registration_form {
  display: flex;
  flex-wrap: wrap;
  text-align: left;
}
#registration_form > div {
  flex-grow: 1;
  padding: 1rem;
  flex-basis: 50%;
}
#registration_form > div.statement {
  flex-basis: 100%;
  text-align: center;
  font-weight: 700;
}
#registration_form input[type=submit] {
  border: none;
}
#registration_form .new-submit {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  border-radius: 5px;
}
#registration_form .new-submit .form-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  /* color: #fff; */
  background: rgba(255, 255, 255, 0.8);
  padding: 1rem 3rem;
  min-width: 100%;
  min-height: 100%;
}

@media screen and (max-width: 564px) {
  #registration_form > div {
    flex-basis: 100%;
  }
}
#my_account_page_wrapper .button_link {
  background-color: var(--e-global-color-secondary);
}
#my_account_page_wrapper .button_link:hover {
  background-color: var(--e-global-color-primary);
}

#my_account_page_wrapper .my_account_page_nav_selector {
  width: 100%;
}

.my_account_page_nav_selector, .my_account_page_nav_wrapper .my_account_page_nav_selector_i {
  display: none;
}

.my_account_nav_header {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
  padding: 10px;
}

.my_account_nav_header_avatar img {
  max-width: 64px;
}

.my_account_nav_header_name {
  font-weight: 700;
  font-size: 15px;
}
.my_account_nav_header_name .fa {
  float: right;
  margin-top: 3px;
}

.my_account_nav_header_email {
  font-size: 12px;
}

.my_account_page_nav_list {
  padding: 40px 0;
}

.my_account_nav_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.my_account_nav_item a {
  display: block;
}

/*
.my_account_nav_item_0, .my_account_nav_item_1 {
    border-top: 1px solid #aaa;
}

.my_account_nav_item_0:first-child{
    border-top: none;
}
*/
.my_account_nav_item.my_account_nav_item_with_menu {
  padding-top: 0;
  padding-bottom: 0;
}

.my_account_nav_item_2 .my_account_nav_item_title {
  padding-left: 40px;
}

.my_account_nav_item.my_account_nav_item_with_menu > .my_account_nav_item_title {
  padding: 1rem 0;
  font-weight: 700;
}
.my_account_nav_item.my_account_nav_item_with_menu > .my_account_nav_item_title .my_account_nav_item_icon {
  display: none;
}

.my_account_nav_item_icon {
  width: 26px;
  text-align: left;
}

.my_account_inner_page_block {
  /* border: 1px solid #aaa; */
  margin-bottom: 30px;
}
.my_account_inner_page_block:last-child {
  margin-bottom: 0;
}

.my_account_user_profile {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.my_account_user_profile .my_account_user_info .my_account_user_info_table {
  flex-grow: 1;
}
@media (max-width: 767px) {
  .my_account_user_profile .my_account_user_info .my_account_user_info_table {
    margin-top: 1rem;
  }
}
@media (max-width: 767px) {
  .my_account_user_profile .my_account_user_info .my_account_user_info_table td {
    padding: 10px;
  }
  .my_account_user_profile .my_account_user_info .my_account_user_info_table td.my_account_label {
    padding-left: 0;
  }
  .my_account_user_profile .my_account_user_info .my_account_user_info_table td.my_account_label_profile_value {
    padding-right: 0;
  }
}

@media (max-width: 881px) {
  .my_account_page_nav_list {
    display: block;
    position: static;
    background-color: transparent;
    z-index: 100;
    border: none;
    width: 100%;
    max-height: none;
    overflow-y: initial;
    height: auto;
  }

  .my_account_page_nav_wrapper {
    padding: 0;
    margin: 65px 0 0;
  }
}
.my_bookings_table_a_button {
  margin-top: 5px;
  width: 100%;
}

.my_bookings_table_icon_button, .icon-button {
  font-size: 1.2rem;
  margin: 10px 5px;
  display: inline-block;
}

.my_bookings_table_td_status .my_bookings_table_icon_button {
  font-size: 1.5rem;
}

.my_bookings_table_icon_button.icon-button-confirm {
  color: #9acd32;
}
.my_bookings_table_icon_button.icon-button-reject {
  color: #F64020;
}

.my_account_my_bookings_table ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.my_bookings_table_td_expand {
  display: none !important;
}
.my_bookings_table_td_expand.show_td_expand {
  display: table-cell !important;
  width: 100% !important;
}

@media (max-width: 767px) {
  .my_bookings_table_td_expand table.table_order_items_details tbody {
    display: block;
  }
  .my_bookings_table_td_expand table.table_order_items_details tbody > tr {
    display: flex;
  }
  .my_bookings_table_td_expand table.table_order_items_details tbody > tr:first-child {
    flex-direction: column;
  }
  .my_bookings_table_td_expand table.table_order_items_details tbody > tr:first-child td.order_item_row_image {
    display: block;
  }
  .my_bookings_table_td_expand table.table_order_items_details tbody > tr td {
    width: 100% !important;
  }
  .my_bookings_table_td_expand table.table_order_items_details tbody > tr td.order_item_row_image {
    display: none;
  }
  .my_bookings_table_td_expand table.table_order_items_details tbody td.order_item_info_guests .order_item_td_value {
    padding-right: 0;
  }
}
.my_account_my_bookings_order_status {
  border: none;
  color: var(--e-global-color-primary);
  background: transparent;
}

.my_account_page_content_wrapper .cmb2-postbox .cmb-type-price-details .cmb-th + .cmb-td {
  width: 100%;
  float: none;
}
.my_account_page_content_wrapper #_rate_type {
  margin: 1px;
}
.my_account_page_content_wrapper .set-price-block {
  display: inline-block;
  padding: 5px;
  margin: 5px;
  border: 1px solid #aaa;
  border-radius: 5px;
}
.my_account_page_content_wrapper .set-price-block.hide-block {
  display: none;
}
.my_account_page_content_wrapper .set-price-block h4 {
  margin: 5px;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  line-height: normal;
}

.my_account_page_content_wrapper .set-price-block ul li {
  display: inline-block;
  margin-right: 13px;
}
.my_account_page_content_wrapper .age-prices {
  margin-bottom: 0;
}

#primary .page .entry-content .my_account_page_content_wrapper table.age-prices {
  margin-bottom: 0;
}

.my_account_page_content_wrapper .age-prices td, #primary .page .entry-content .my_account_page_content_wrapper table.age-prices td {
  padding: 5px;
  font-size: 12px;
}

.my_account_page_content_wrapper .cmb2-wrap .age-prices input {
  font-size: 12px;
}
.my_account_page_content_wrapper .set-age-price {
  width: 100px;
}
.my_account_page_content_wrapper #_rate_title {
  width: 200px;
}
.my_account_page_content_wrapper #prices-form {
  margin-top: 20px;
}
.my_account_page_content_wrapper .view-rate-block {
  display: table;
  width: 100%;
}
.my_account_page_content_wrapper .view-rate-title {
  padding: 5px;
  border: 1px solid #aaa;
  border-radius: 5px 5px 0 0;
  border-bottom: none;
  margin-bottom: 1px;
  background-color: khaki;
}
.my_account_page_content_wrapper .view-rate-title:hover {
  cursor: pointer;
}
.my_account_page_content_wrapper .view-rate-title.opened {
  background-color: yellowgreen;
  color: #fff;
}
.my_account_page_content_wrapper .view-rate-details {
  display: none;
  padding: 5px;
  border: 1px solid;
  border-color: var(--e-global-color-border);
  border-top: none;
  margin-bottom: 1px;
  position: relative;
  width: 100%;
}
.my_account_page_content_wrapper .view-rate-details.opened {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}
.my_account_page_content_wrapper .view-rate-details .rate_price_general {
  display: flex;
  font-size: inherit;
  line-height: normal;
  align-items: center;
}
.my_account_page_content_wrapper .view-rate-details .rate_price_general span {
  color: var(--e-global-color-primary);
}
.my_account_page_content_wrapper .view-rate-details .rate_price_general .price_age_title {
  padding: 0 5px 0 10px;
}
.my_account_page_content_wrapper .view-rate-details .rate_price_general .price_age_value {
  padding: 0 10px 0 5px;
}
.my_account_page_content_wrapper .view-rate-dates {
  display: inline-block;
  margin-left: 10px;
}
.my_account_page_content_wrapper .view-rate-details-item h4 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  line-height: normal;
}

.my_account_page_content_wrapper .view-rate-details-item ul li {
  display: inline-block;
  margin-right: 13px;
}
.my_account_page_content_wrapper .view-rate-details-item-del:hover {
  cursor: pointer;
}
.my_account_page_content_wrapper .cmb-th + .cmb-td,
.my_account_page_content_wrapper .cmb-type-group .cmb-th + .cmb-td,
.my_account_page_content_wrapper .cmb2-postbox .cmb-th + .cmb-td {
  padding: 0;
  width: 100%;
}
@media (min-width: 568px) {
  .my_account_page_content_wrapper .cmb-th + .cmb-td,
.my_account_page_content_wrapper .cmb-type-group .cmb-th + .cmb-td,
.my_account_page_content_wrapper .cmb2-postbox .cmb-th + .cmb-td {
    width: 80%;
    float: right;
  }
}
.my_account_page_content_wrapper .cmb-td {
  line-height: 1;
  max-width: 100%;
  padding: 5px 0;
  vertical-align: middle;
}
.my_account_page_content_wrapper .cmb2-checkbox-list, .my_account_page_content_wrapper .cmb2-radio-list {
  list-style: none;
}
.my_account_page_content_wrapper .cmb-td input[type=text] {
  width: auto;
}
.my_account_page_content_wrapper .cmb-td input[type=text].regular-text {
  width: 100%;
}
.my_account_page_content_wrapper .cmb-td input[type=text].autocomplete {
  width: 300px;
}
.my_account_page_content_wrapper .cmb2-id-related-items .cmb-td .related_collapsible {
  background-color: #E9E9E9;
  border: 1px solid #E9E9E9;
  padding: 10px;
  width: 100%;
  text-align: left;
  outline: none;
  font-size: 15px;
  position: relative;
  font-weight: 500;
  color: var(--e-global-color-primary);
}
.my_account_page_content_wrapper .cmb2-id-related-items .cmb-td .related_collapsible.collapsed, .my_account_page_content_wrapper .cmb2-id-related-items .cmb-td .related_collapsible:hover {
  background-color: #d0d0d0;
}
.my_account_page_content_wrapper .cmb2-id-related-items .cmb-td .related_collapsible:after {
  padding-left: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  font-size: 1em;
}
.my_account_page_content_wrapper .cmb2-id-related-items .cmb-td .hide {
  display: none;
}
.my_account_page_content_wrapper .cmb2-id-related-items .cmb-td .content {
  margin-top: 1rem;
}
.my_account_page_content_wrapper .cmb2-postbox .cmb-type-group .cmb2-wrap > .cmb-field-list > .cmb-row,
.my_account_page_content_wrapper .postbox.cmb2-postbox .cmb2-wrap > .cmb-field-list > .cmb-row {
  padding: 0.7em 0;
}
.my_account_page_content_wrapper .cmb-row.cmb-type-tax-children-multicheck {
  padding: 0.7em 0;
}
.my_account_page_content_wrapper .rate_dates > label {
  padding-left: 30px;
}
.my_account_page_content_wrapper .rate-label-units:not(:last-child) {
  margin-right: 30px;
}
.my_account_page_content_wrapper .rate_apply_days,
.my_account_page_content_wrapper .rate_start_days {
  display: flex;
  flex-wrap: wrap;
}
.my_account_page_content_wrapper .rate_apply_days label,
.my_account_page_content_wrapper .rate_start_days label {
  margin-right: 1rem;
}
.my_account_page_content_wrapper .rate_apply_days .cmb2-list li,
.my_account_page_content_wrapper .rate_start_days .cmb2-list li {
  width: auto;
}
.my_account_page_content_wrapper .set-price-conditional h4, .my_account_page_content_wrapper .set-price-general h4 {
  font-size: 1em;
}
.my_account_page_content_wrapper .age-prices td {
  padding: 0;
  font-size: 12px;
  margin-bottom: 9px;
  line-height: 1.3;
  vertical-align: middle;
}
.my_account_page_content_wrapper #rate-price-conditional-generator select {
  width: auto;
  padding: 0 24px 0 8px;
  font-size: 14px;
  min-height: 30px;
}
.my_account_page_content_wrapper #rate-price-conditional-generator input {
  padding: 0 8px;
  min-height: 30px;
}
.my_account_page_content_wrapper #rate-price-conditional-generator .conditional_result_label {
  font-weight: 500;
  margin-top: 10px;
}
@media (min-width: 568px) {
  .my_account_page_content_wrapper .cmb2-list li {
    width: 50%;
  }
}
.my_account_page_content_wrapper .term_item_checkbox input[type=radio],
.my_account_page_content_wrapper .term_item_checkbox input[type=checkbox],
.my_account_page_content_wrapper .cmb2-list li input[type=radio],
.my_account_page_content_wrapper .cmb2-list li input[type=checkbox] {
  opacity: 0;
  display: none;
}
.my_account_page_content_wrapper .term_item_checkbox input[type=radio]:checked + label:before,
.my_account_page_content_wrapper .term_item_checkbox input[type=checkbox]:checked + label:before,
.my_account_page_content_wrapper .cmb2-list li input[type=radio]:checked + label:before,
.my_account_page_content_wrapper .cmb2-list li input[type=checkbox]:checked + label:before {
  background-color: var(--e-global-color-primary);
  border-color: var(--e-global-color-primary);
  text-indent: 0;
}
.my_account_page_content_wrapper .term_item_checkbox input[type=radio] + label,
.my_account_page_content_wrapper .term_item_checkbox input[type=checkbox] + label,
.my_account_page_content_wrapper .cmb2-list li input[type=radio] + label,
.my_account_page_content_wrapper .cmb2-list li input[type=checkbox] + label {
  margin: 0;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.my_account_page_content_wrapper .term_item_checkbox input[type=radio] + label:hover,
.my_account_page_content_wrapper .term_item_checkbox input[type=checkbox] + label:hover,
.my_account_page_content_wrapper .cmb2-list li input[type=radio] + label:hover,
.my_account_page_content_wrapper .cmb2-list li input[type=checkbox] + label:hover {
  color: var(--e-global-color-primary);
}
.my_account_page_content_wrapper .term_item_checkbox input[type=radio] + label:hover:before,
.my_account_page_content_wrapper .term_item_checkbox input[type=checkbox] + label:hover:before,
.my_account_page_content_wrapper .cmb2-list li input[type=radio] + label:hover:before,
.my_account_page_content_wrapper .cmb2-list li input[type=checkbox] + label:hover:before {
  border-color: var(--e-global-color-primary);
}
.my_account_page_content_wrapper .term_item_checkbox input[type=radio] + label:before,
.my_account_page_content_wrapper .term_item_checkbox input[type=checkbox] + label:before,
.my_account_page_content_wrapper .cmb2-list li input[type=radio] + label:before,
.my_account_page_content_wrapper .cmb2-list li input[type=checkbox] + label:before {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 1px solid;
  width: 14px;
  height: 14px;
  z-index: 1;
  font-size: 12px;
  color: #fff;
  margin-right: 0.5rem;
  background-color: #fff;
  border-color: var(--e-global-color-border);
  border-radius: 3px;
  text-indent: -999px;
  overflow: hidden;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.my_account_page_content_wrapper .cmb2-wrap .cmb-row:not(:last-child) {
  margin-bottom: 0.5rem;
}
.my_account_page_content_wrapper .cmb2-postbox .cmb-td, .my_account_page_content_wrapper .cmb-type-group .cmb-td {
  margin-bottom: 0;
  padding: 0;
  line-height: 1.3;
}
.my_account_page_content_wrapper .cmb-row.cmb2-id-tripay-feature-item .cmb-td {
  line-height: 34px;
}
.my_account_page_content_wrapper .cmb-row.cmb-type-price-details .view-rate-details .rate_details_label {
  display: inline;
}
.my_account_page_content_wrapper .cmb-row.cmb-type-price-details .rate_apply_days,
.my_account_page_content_wrapper .cmb-row.cmb-type-price-details .rate_start_days {
  display: inline-block;
  flex-wrap: unset;
  line-height: 1.4;
}
.my_account_page_content_wrapper .set-price-general, .my_account_page_content_wrapper .set-price-from {
  padding: 10px 15px;
}
@media (max-width: 567px) {
  .my_account_page_content_wrapper .cmb2-postbox .cmb-row:not(:last-of-type),
.my_account_page_content_wrapper .cmb2-postbox .cmb-repeatable-group:not(:last-of-type),
.my_account_page_content_wrapper .cmb-type-group .cmb-row:not(:last-of-type),
.my_account_page_content_wrapper .cmb-type-group .cmb-repeatable-group:not(:last-of-type) {
    border-bottom: 1px solid #e9e9e9;
  }
}
@media (max-width: 567px) {
  .my_account_page_content_wrapper .rate_form_inner input {
    margin-bottom: 10px;
  }
}

/*******************others**********/
@media (max-width: 767px) {
  .my_account_page_content_wrapper .page-title {
    font-size: 1.875rem;
  }
}
@media (max-width: 567px) {
  .my_account_page_content_wrapper .page-title {
    font-size: 1.5rem;
  }
}
.my_account_page_content_wrapper .cmb2-wrap .cmb-row select {
  padding: 0 8px;
  border-width: 2px;
  min-height: 36px;
}
.my_account_page_content_wrapper .cmb2-wrap input.cmb2-text-small, .my_account_page_content_wrapper .cmb2-wrap input.cmb2-timepicker {
  width: 100px;
}
.my_account_page_content_wrapper .cmb2-wrap button {
  height: auto;
  line-height: 1;
  margin-right: 5px;
  background-color: transparent;
}
.my_account_page_content_wrapper .cmb2-wrap button:hover {
  background-color: transparent;
}
.my_account_page_content_wrapper .cmb2-wrap button.wp-switch-editor {
  background: #ebebeb;
  color: #666;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.46153846;
  height: 20px;
  margin: 5px 0 0 5px;
  padding: 3px 8px 4px;
  border: 1px solid #e5e5e5;
}
.my_account_page_content_wrapper .cmb2-wrap .tmce-active button.switch-tmce, .my_account_page_content_wrapper .cmb2-wrap .html-active button.switch-html {
  background: #f5f5f5;
  color: #555;
  border-bottom-color: #f5f5f5;
}
.my_account_page_content_wrapper .cmb2-wrap .button, .my_account_page_content_wrapper .cmb2-wrap .button-primary, .my_account_page_content_wrapper .cmb2-wrap .button-secondary {
  display: inline-block;
  text-decoration: none;
  font-size: 13px;
  line-height: 2.15384615;
  margin: 0;
  padding: 4px 10px;
  cursor: pointer;
  border-width: 1px;
  border-style: solid;
  -webkit-appearance: none;
  border-radius: 3px;
  white-space: nowrap;
  box-sizing: border-box;
}
.my_account_page_content_wrapper .cmb2-wrap span.button, .my_account_page_content_wrapper .cmb2-wrap span.button-secondary {
  padding: 0 10px;
}
.my_account_page_content_wrapper .cmb2-wrap .button, .my_account_page_content_wrapper .cmb2-wrap .button-secondary {
  color: #0071a1;
  border-color: #0071a1;
  background: #f3f5f6;
  vertical-align: top;
}
.my_account_page_content_wrapper .cmb2-wrap .button:hover, .my_account_page_content_wrapper .cmb2-wrap .button-secondary:hover {
  background: #f1f1f1;
  border-color: #016087;
  color: #016087;
}
.my_account_page_content_wrapper .cmb2-wrap .button-primary {
  color: #fff;
  background-color: var(--e-global-color-primary);
  border-color: var(--e-global-color-primary);
}
.my_account_page_content_wrapper .cmb2-wrap .button-primary:hover {
  color: #fff;
  background-color: var(--e-global-color-primary);
  border-color: var(--e-global-color-primary);
}
.my_account_page_content_wrapper .cmb-repeatable-group .cmb-shift-rows .dashicons {
  height: auto;
}
.my_account_page_content_wrapper .cmb-remove-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.my_account_page_content_wrapper .cmb-remove-row .move-up, .my_account_page_content_wrapper .cmb-remove-row .move-down, .my_account_page_content_wrapper .cmb-remove-row .cmb-remove-group-row {
  margin: 0 10px 0 0;
}
.my_account_page_content_wrapper .cmb-td input[type=button] {
  height: auto;
  line-height: 1;
  padding: 10px;
  float: left;
}
.my_account_page_content_wrapper .cmb-repeatable-group .cmb-group-description .cmb-th {
  font-size: 1em;
  padding-bottom: 0;
}
.my_account_page_content_wrapper .cmb2-wrap .cmb-row.cmb-repeat .cmb2-metabox-description {
  padding-top: 0;
  padding-bottom: 0;
  color: #000;
  margin-top: 20px;
}
.my_account_page_content_wrapper .cmb-type-group .cmb-repeatable-grouping, .my_account_page_content_wrapper .cmb2-postbox .cmb-repeatable-grouping {
  padding: 0;
}
.my_account_page_content_wrapper .cmb2-media-status .embed-status {
  margin: 0 10px;
}
.my_account_page_content_wrapper .cmb2-media-status .img-status {
  margin-left: 10px;
}
.my_account_page_content_wrapper .cmb2-media-status .img-status img {
  margin: 0 10px;
}
.my_account_page_content_wrapper .cmb2-media-status .img-status .cmb2-remove-file-button {
  top: 0;
}
.my_account_page_content_wrapper .cmb2-metabox button.dashicons-before.dashicons-no-alt.cmb-remove-group-row {
  top: 5px;
}
.my_account_page_content_wrapper .cmb-repeatable-group.repeatable .cmb-group-title {
  font-size: 16px;
  margin: 0;
  line-height: normal;
}
.my_account_page_content_wrapper .cmb2-wrap .cmb-type-row-header {
  margin: 30px 0 10px;
}
.my_account_page_content_wrapper .discount-block {
  display: flex;
  flex-wrap: wrap;
}
.my_account_page_content_wrapper .discount-block > div:not(:last-child) {
  margin-right: 2rem;
  margin-bottom: 0.5rem;
}
.my_account_page_content_wrapper input[type=text], .my_account_page_content_wrapper input[type=password], .my_account_page_content_wrapper input[type=date], .my_account_page_content_wrapper input[type=datetime], .my_account_page_content_wrapper input[type=datetime-local], .my_account_page_content_wrapper input[type=email], .my_account_page_content_wrapper input[type=month], .my_account_page_content_wrapper input[type=number], .my_account_page_content_wrapper input[type=search], .my_account_page_content_wrapper input[type=tel], .my_account_page_content_wrapper input[type=time], .my_account_page_content_wrapper input[type=url], .my_account_page_content_wrapper input[type=week] {
  padding: 0 8px;
  line-height: 2;
  min-height: 30px;
}
.my_account_page_content_wrapper .cmb-th {
  padding: 0 2% 0 0;
  width: 100%;
}
@media (min-width: 568px) {
  .my_account_page_content_wrapper .cmb-th {
    width: 20%;
  }
  .my_account_page_content_wrapper .cmb-th label {
    margin-bottom: 0;
    padding: 0;
  }
}
@media (max-width: 567px) {
  .my_account_page_content_wrapper .cmb-th label {
    margin-bottom: 0;
    padding: 0;
    font-size: 1rem;
  }
}
@media (max-width: 567px) {
  .my_account_page_content_wrapper .cmb2-postbox .cmb-th, .my_account_page_content_wrapper .cmb-type-group .cmb-th {
    width: 100%;
  }
}
.my_account_page_content_wrapper .set-price-from {
  display: block;
}
.my_account_page_content_wrapper .cmb2-before-row-header {
  font-size: 18px;
  padding: 7px 10px;
  background-color: var(--e-global-color-secondary);
}
.my_account_page_content_wrapper input[name=submit-cmb] {
  min-width: 130px;
  margin-left: auto;
  display: inherit;
  margin-top: 1rem;
}
.my_account_page_content_wrapper .cmb-type-tax-children-multicheck .term_item_level_1 + .term_item_level_0 {
  margin-top: 1rem;
}
.my_account_page_content_wrapper .schedule_form .schedule_form_item select {
  width: auto;
  max-width: 100%;
  min-width: 70px;
  margin-top: 0;
}

.media-modal button.media-modal-close {
  padding: 0;
  color: #666;
  background-color: transparent;
  border: none;
}
.media-modal button.media-modal-close:hover, .media-modal button.media-modal-close:active {
  color: #006799;
  background-color: transparent;
  border: none;
}
.media-modal .media-router .media-menu-item {
  background: transparent;
  color: inherit;
}

.my_account_page_content_wrapper .cmb-type-group .cmb-row, .my_account_page_content_wrapper .cmb2-postbox .cmb-row {
  padding: 0;
  margin: 0 0 5px;
}
.my_account_page_content_wrapper .cmb-type-group .cmb-row.cmb-remove-field-row, .my_account_page_content_wrapper .cmb2-postbox .cmb-row.cmb-remove-field-row {
  margin: 5px 0;
}
.my_account_page_content_wrapper .cmb-type-group .cmb-row.cmb-repeat-group-field, .my_account_page_content_wrapper .cmb2-postbox .cmb-row.cmb-repeat-group-field {
  padding: 15px 10px;
  margin-bottom: 0;
}
.my_account_page_content_wrapper .cmb-type-group .cmb-row.cmb-repeat-group-field .cmb-th label, .my_account_page_content_wrapper .cmb2-postbox .cmb-row.cmb-repeat-group-field .cmb-th label {
  margin-bottom: 10px;
  padding: 0;
}
.my_account_page_content_wrapper .av_dates input {
  width: 150px;
}

.cmb-type-group .cmb-row:not(:last-of-type).cmb-group-description {
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.duration_block .duration_select {
  display: inline-block;
}

/*********cmb2-before-row-header***/
.cmb2-before-row-header {
  font-weight: 500;
  font-size: 17px;
  color: #fff;
  padding: 7px;
  background-color: chocolate;
}

.cmb2-row-hidden {
  display: none;
}

.edit-profile-form-block {
  margin-bottom: 1rem;
}
.edit-profile-form-block.edit-profile-avatar {
  text-align: center;
}
.edit-profile-form-block.edit-profile-avatar img {
  margin-bottom: 1.5rem;
}

#my_account_page_wrapper .my_bookings_table_a_button.btn-av-confirm {
  background-color: #9acd32;
  color: #fff;
}
#my_account_page_wrapper .my_bookings_table_a_button.btn-av-reject {
  background-color: #F64020;
  color: #fff;
}
#my_account_page_wrapper .my_bookings_table_a_button.button-disabled {
  display: none;
}

#edit_user_profile .edit-profile-inner {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
#edit_user_profile .edit-profile-avatar {
  flex: 0 0 300px;
  max-width: 300px;
  padding-left: 15px;
  padding-right: 15px;
}
#edit_user_profile .user_profile_fields_group {
  flex: 0 0 calc(80% - 300px);
  max-width: calc(80% - 300px);
  padding-left: 15px;
  padding-right: 15px;
}
#edit_user_profile .checkout-form-block {
  flex: 0 0 48%;
  max-width: 48%;
}
#edit_user_profile .submit_group {
  display: inline-block;
}

.dashboard-content-inner {
  max-width: 300px;
  margin: auto;
}

.my_account_all_posts_table {
  list-style: none;
  margin: 0;
}
.my_account_all_posts_table li a {
  color: var(--e-global-color-primary);
  line-height: 1.875rem;
}
.my_account_all_posts_table li a:hover {
  color: var(--e-global-color-primary);
}
.my_account_all_posts_table li:not(:last-child) {
  margin-bottom: 0.5rem;
}

/****************CMB2**************/
/***********prices*************/
/***************/
.cmb2-postbox .cmb-type-schedule .cmb-th + .cmb-td {
  width: 100%;
  float: none;
}

#schedule_block {
  display: table;
  width: 100%;
}

.schedule_form {
  margin-top: 15px;
  margin-bottom: 15px;
}

.schedule_form_item {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  margin-bottom: 5px;
}

.schedule_day h4, #primary .page .entry-content .schedule_day h4 {
  margin-top: 2px;
  margin-bottom: 3px;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  margin-right: 0.5rem;
}

.schedule_day {
  border-bottom: 1px solid;
  border-color: var(--e-global-color-border);
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}

.schedule_time {
  border-radius: 5px;
  border: 1px solid;
  border-color: var(--e-global-color-border);
  background-color: aliceblue;
  padding: 2px 5px;
  margin-right: 0.5rem;
}
.schedule_time i {
  margin-left: 5px;
}
.schedule_time i:hover {
  cursor: pointer;
}

/*************terms_children_hierarchy**********/
.cmb-type-tax-children-multicheck .term_item {
  font-weight: 700;
  margin: 5px 0;
}
.cmb-type-tax-children-multicheck .term_item.term_item_checkbox {
  font-weight: 500;
}

.add_input_field .add_ids_title {
  display: inline-block;
  padding: 5px 30px 5px 5px;
  position: relative;
  white-space: nowrap;
}
.add_input_field .add_ids_title i {
  position: absolute;
  right: 8px;
  top: 5px;
  padding: 5px 0;
}
.add_input_field .add_ids_title:hover {
  cursor: pointer;
}
.add_input_field .add_ids_list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  border: 1px solid #eaeaea;
  margin-top: 2px;
  background-color: #fff;
  list-style: none;
  width: auto;
  z-index: 999;
  max-height: 250px;
  overflow-y: auto;
}
.add_input_field .add_ids_list.active, .add_input_field .add_ids_list.tripay-active {
  display: block;
}
.add_input_field .add_ids_list .term_item {
  padding: 10px 20px;
  text-align: left;
  border-bottom: 1px solid #eaeaea;
}
.add_input_field .add_ids_list .term_item:last-child {
  border-bottom: none;
}
.add_input_field .add_ids_list .term_item:hover {
  cursor: pointer;
  color: #fff;
}
.add_input_field .add_ids_list .term_item.term_item_selected {
  background-color: #cbcbcb;
  color: #fff;
}
.add_input_field .add_ids_list .term_item[data-id="0"] {
  font-weight: 700;
}
.add_input_field .add_ids_list .term_item[data-id="0"]:before {
  content: "- ";
}
.add_input_field .add_ids_list .term_item[data-id="0"]:after {
  content: " -";
}

/******************Google maps*****/
.address_from_google {
  margin-top: 20px;
}

.google_map_get {
  display: none;
  height: 270px;
}

.google_map {
  height: 240px;
  margin-top: 20px;
}

.google_map_get .autocomplete {
  width: 300px;
  margin-top: 10px;
}
.google_map_get .save_from_google {
  margin-top: 10px;
}

.elementor-widget-babe-item-archive-map,
.google-map-address,
.google-map-address iframe {
  height: 100%;
  overflow: hidden;
}

.map-data-location {
  min-height: 300px;
  height: 100% !important;
}

.elementor-booking-item {
  display: flex;
  flex-direction: column;
}
.elementor-booking-item .babe_items {
  height: 100%;
}

.babe_shortcode_block_inner {
  display: flex;
  padding-bottom: 0;
  row-gap: 50px;
}

.babe_shortcode_block {
  text-align: left;
}

.currency_amount {
  font-weight: 700;
}

.babe_items .item-label {
  position: absolute;
  left: -1px;
  top: -1px;
  font-size: 12px;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px 0 30px 0;
  z-index: 3;
}
.babe_items .item-label.price_discount {
  background-color: var(--e-global-color-tertiary);
}
.babe_items .item-label.price_discount .text {
  margin: 0;
  font-family: var(--e-global-typography-accent-font-family);
  font-weight: var(--e-global-typography-accent-font-weight);
  text-transform: var(--e-global-typography-accent-text-transform);
  font-style: var(--e-global-typography-accent-font-style);
  text-decoration: var(--e-global-typography-accent-text-decoration);
  line-height: var(--e-global-typography-accent-line-height);
  letter-spacing: var(--e-global-typography-accent-letter-spacing);
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: capitalize;
  text-align: right;
}
.babe_items .item-label.price_discount .discount {
  margin: 0;
  font-weight: 700;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.3;
  text-transform: capitalize;
}
.babe_items .post-total-rating-value {
  display: none;
}

.babe_items_1:hover .babe_all_items_item_inner {
  box-shadow: 0 10px 60px 0 rgba(6, 30, 98, 0.1);
}
.babe_items_1 .babe_all_items_item_inner .post-total-rating {
  font-size: 11px;
  line-height: 22px;
  flex-basis: 100%;
}
.babe_items_1 .babe_all_items_item_inner {
  border-radius: 30px;
  background-color: white;
  box-shadow: 0 0 30px 0 rgba(6, 30, 98, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all ease-in-out 0.2s;
}
.babe_items_1 .babe_all_items_item_inner:hover .item-meta-media + .post-total-rating {
  margin-top: -22px;
}
.babe_items_1 .babe_all_items_item_inner:hover .item_img .item-thumb:before {
  opacity: 1;
  visibility: visible;
}
.babe_items_1 .babe_all_items_item_inner:hover .item_img .item-thumb img {
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.babe_items_1 .babe_all_items_item_inner:hover .item_img .tripay_add_to_wishlist {
  opacity: 1;
  visibility: visible;
}
.babe_items_1 .item_img {
  position: relative;
}
.babe_items_1 .item_img .item-thumb {
  position: relative;
  display: block;
  padding-top: 63%;
  border-radius: 30px;
  background-color: var(--e-global-color-primary);
  overflow: hidden;
}
.babe_items_1 .item_img .item-thumb img {
  border-radius: 20px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  object-fit: cover;
  height: 100%;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.babe_items_1 .item_img .item-thumb:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(32, 47, 89, 0.6);
  border-radius: 20px;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 567px) {
  .babe_items_1 .item_img .item-thumb:before {
    background-color: rgba(32, 47, 89, 0.3);
    opacity: 1;
    visibility: visible;
  }
}
.babe_items_1 .item_img .tripay_add_to_wishlist {
  position: absolute;
  right: 30px;
  top: 30px;
  line-height: 1;
  color: #fff;
  font-size: 18px;
  z-index: 3;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 767px) {
  .babe_items_1 .item_img .tripay_add_to_wishlist {
    right: 20px;
  }
}
@media (max-width: 567px) {
  .babe_items_1 .item_img .tripay_add_to_wishlist {
    opacity: 1;
    visibility: visible;
  }
}
.babe_items_1 .item_img .tripay_add_to_wishlist:hover, .babe_items_1 .item_img .tripay_add_to_wishlist.in-wishlist {
  color: var(--e-global-color-primary);
}
.babe_items_1 .item_img .tripay_add_to_wishlist.loading {
  color: #fff !important;
  -ms-animation: spin 2s linear infinite;
  -o-animation: spin 2s linear infinite;
  -moz-animation: spin 2s linear infinite;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
.babe_items_1 .item-meta {
  font-size: 14px;
  margin-top: -27px;
  border-radius: 5px;
  background-color: white;
  box-shadow: 0 0 60px 0 rgba(6, 30, 98, 0.08);
  padding: 13px 19px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 23px;
}
.babe_items_1 .item-meta-left i {
  color: var(--e-global-color-secondary);
}
.babe_items_1 .item-meta-left span {
  color: var(--e-global-color-secondary);
  line-height: 22px;
  display: inline-flex;
  align-items: center;
}
.babe_items_1 .item-location {
  font-size: 14px;
  color: var(--e-global-color-lighter);
  margin-bottom: 20px;
  font-weight: 500;
}
.babe_items_1 .item-location i {
  margin-right: 8px;
}
.babe_items_1 .item-location span {
  vertical-align: middle;
}
.babe_items_1 .item-meta-media,
.babe_items_1 .post-total-rating {
  transition: all ease 0.3s;
}
.babe_items_1 .item-meta-right {
  text-align: right;
  height: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
}
.babe_items_1 .item-meta-right .item-meta-value {
  color: var(--e-global-color-secondary);
}
.babe_items_1 .item-meta-value i {
  margin-right: 5px;
}
.babe_items_1 .item-meta-value span {
  vertical-align: middle;
}
.babe_items_1 .item-meta-value + .item-meta-value {
  margin-left: 10px;
}
.babe_items_1 .read-more-item {
  font-size: 14px;
  font-weight: 700;
  color: var(--e-global-color-secondary);
}
.babe_items_1 .read-more-item i {
  margin-left: 10px;
  color: var(--e-global-color-secondary);
}
.babe_items_1 .read-more-item:hover {
  color: var(--e-global-color-primary);
}
.babe_items_1 .read-more-item:hover i {
  color: var(--e-global-color-primary);
}
.babe_items_1 .item_text {
  padding: 0 30px 25px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  z-index: 1;
}
@media (max-width: 767px) {
  .babe_items_1 .item_text {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.babe_items_1 .item-bottom {
  border-top: 1px solid;
  border-top-color: var(--e-global-color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  margin-top: auto;
}
.babe_items_1 .item_info_price {
  padding: 0;
  margin: 0;
  align-self: center;
  border: none;
  font-weight: 500;
}
.babe_items_1 .item_info_price .item_info_price_old {
  text-decoration: line-through;
  font-size: 14px;
  color: var(--e-global-color-lighter);
}
.babe_items_1 .item_info_price .item_info_before_price {
  margin: 0;
  font-size: 14px;
  display: block;
  color: var(--e-global-color-lighter);
  line-height: 1;
  font-weight: 500;
}
.babe_items_1 .item_info_price .item_info_price_person {
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3;
  color: var(--e-global-color-text);
}
.babe_items_1 .item_info_price .item_info_price_new .currency_amount {
  font-size: 20px;
  margin-right: 5px;
  color: var(--e-global-color-primary);
}
.babe_items_1 .item_info_price_discount {
  display: none;
}
.babe_items_1 .item_title {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 5px;
}
.babe_items_1 .item_title a {
  color: var(--e-global-color-secondary);
}
.babe_items_1 .item_title a:hover {
  color: var(--e-global-color-primary);
}

.babe_items_2 {
  margin-bottom: 30px;
}
.babe_items_2 .babe_all_items_item_inner .post-total-rating {
  font-size: 11px;
  flex-basis: 100%;
}
.babe_items_2 .babe_all_items_item_inner {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background-color: white;
  height: 100%;
  transition: all ease-in-out 0.2s;
}
.babe_items_2 .babe_all_items_item_inner:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: #202f59;
  background: linear-gradient(0deg, var(--secondary) 0%, rgba(32, 47, 89, 0) 100%);
  z-index: 2;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  opacity: 0;
  visibility: hidden;
}
.babe_items_2 .babe_all_items_item_inner:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #202f59;
  background: linear-gradient(0deg, var(--secondary) 0%, rgba(32, 47, 89, 0) 100%);
  z-index: 2;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  height: 35%;
}
.babe_items_2 .babe_all_items_item_inner:hover:before {
  height: 100%;
  opacity: 1;
  visibility: visible;
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.babe_items_2 .babe_all_items_item_inner:hover .item_img .item-thumb img {
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.babe_items_2 .babe_all_items_item_inner:hover .item_img .tripay_add_to_wishlist {
  opacity: 1;
  visibility: visible;
}
.babe_items_2 .item_img {
  position: relative;
}
.babe_items_2 .item_img .item-thumb {
  position: relative;
  display: block;
  padding-top: 85%;
  background-color: var(--e-global-color-primary);
}
.babe_items_2 .item_img .item-thumb:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.babe_items_2 .item_img .item-thumb img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  object-fit: cover;
  height: 100%;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.babe_items_2 .item_img .tripay_add_to_wishlist {
  position: absolute;
  right: 30px;
  top: 30px;
  line-height: 1;
  color: #fff;
  font-size: 18px;
  z-index: 3;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  opacity: 0;
  visibility: hidden;
}
.babe_items_2 .item_img .tripay_add_to_wishlist:hover, .babe_items_2 .item_img .tripay_add_to_wishlist.in-wishlist {
  color: var(--e-global-color-primary);
}
.babe_items_2 .item-hide {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  transition: all ease-in-out 0.2s;
  overflow: hidden;
  font-size: 14px;
}
.babe_items_2 .item-meta-left {
  padding-top: 5px;
}
.babe_items_2 .item-meta-left i {
  color: var(--e-global-color-primary);
}
.babe_items_2 .item-meta-left span {
  color: #fff;
}
.babe_items_2 .item-location {
  width: 100%;
  font-size: 14px;
  color: #fff;
}
.babe_items_2 .item-location i {
  vertical-align: text-bottom;
  margin-right: 5px;
}
.babe_items_2 .item-location span {
  vertical-align: middle;
}
.babe_items_2 .item-meta-media,
.babe_items_2 .post-total-rating {
  transition: all ease 0.3s;
}
.babe_items_2 .item-meta-right {
  padding-top: 5px;
  text-align: right;
  height: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
}
.babe_items_2 .item-meta-right .item-meta-value {
  color: #fff;
}
.babe_items_2 .item-meta-right .item-meta-value:hover {
  color: var(--e-global-color-primary);
}
.babe_items_2 .item-meta-value i {
  margin-right: 5px;
}
.babe_items_2 .item-meta-value span {
  vertical-align: middle;
}
.babe_items_2 .item-meta-value + .item-meta-value {
  margin-left: 10px;
}
.babe_items_2 .item_text {
  padding: 30px 30px 25px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}
.babe_items_2 .item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 10px;
  margin-top: auto;
}
.babe_items_2 .item_info_price {
  padding: 0;
  margin: 0;
  align-self: center;
  border: none;
  font-weight: 500;
  text-align: right;
}
.babe_items_2 .item_info_price .item_info_price_old {
  text-decoration: line-through;
  font-size: 14px;
  display: block;
  color: #fff;
}
.babe_items_2 .item_info_price label {
  margin: 0;
  font-size: 14px;
  display: block;
  color: var(--e-global-color-primary);
  line-height: 1;
  font-weight: 500;
}
.babe_items_2 .item_info_price .item_info_price_new .currency_amount {
  font-size: 20px;
  color: var(--e-global-color-tertiary);
}
.babe_items_2 .item_info_price_discount {
  display: none;
}
.babe_items_2 .item_title {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 5px;
  max-width: 70%;
}
.babe_items_2 .item_title a {
  color: #fff;
}
.babe_items_2 .item_title a:hover {
  color: var(--e-global-color-tertiary);
}

.babe_items_3 .babe_all_items_item_inner {
  border: 1px solid var(--e-global-color-border);
  border-radius: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: 0.5s all ease;
}
.babe_items_3 .item_img {
  position: relative;
}
.babe_items_3 .item_img img {
  border-radius: 30px;
  transform: scale(1.004);
  width: 100%;
}
.babe_items_3 .item-rating {
  display: flex;
  gap: 4px;
  padding: 9px 12px;
  background-color: #ffffff;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1;
  border-radius: 100px;
  align-items: stretch;
}
.babe_items_3 .item-rating i {
  color: #FFD15D;
  font-size: 18px;
  font-size: 1.125rem;
}
.babe_items_3 .item-rating .rating-score {
  font-family: var(--e-global-typography-primary-font-family);
  font-weight: var(--e-global-typography-primary-font-weight);
  text-transform: var(--e-global-typography-primary-text-transform);
  font-style: var(--e-global-typography-primary-font-style);
  text-decoration: var(--e-global-typography-primary-text-decoration);
  line-height: var(--e-global-typography-primary-line-height);
  letter-spacing: var(--e-global-typography-primary-letter-spacing);
  font-size: 16px;
  font-size: 1rem;
  color: var(--e-global-color-text);
  line-height: 1.2;
}
.babe_items_3 .item-rating .rating-count {
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
  font-weight: 300;
  font-size: 16px;
  font-size: 1rem;
  color: var(--e-global-color-lighter);
  line-height: 1.2;
}
.babe_items_3 .item_text {
  padding: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media (max-width: 480px) {
  .babe_items_3 .item_text {
    padding: 20px;
  }
}
.babe_items_3 .item_text .item-title-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 10px;
}
.babe_items_3 .item_text .item-title-wrapper .item_title {
  flex: 1;
  font-family: var(--e-global-typography-accent-font-family);
  font-weight: var(--e-global-typography-accent-font-weight);
  text-transform: var(--e-global-typography-accent-text-transform);
  font-style: var(--e-global-typography-accent-font-style);
  text-decoration: var(--e-global-typography-accent-text-decoration);
  line-height: var(--e-global-typography-accent-line-height);
  letter-spacing: var(--e-global-typography-accent-letter-spacing);
  text-transform: capitalize;
  letter-spacing: 0;
  font-size: 21px;
  font-size: 1.3125rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 480px) {
  .babe_items_3 .item_text .item-title-wrapper .item-meta {
    display: none;
  }
}
.babe_items_3 .item_text .item-title-wrapper .item-meta .item-meta-value {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--e-global-color-lighter);
}
.babe_items_3 .item_text .item-title-wrapper .item-meta .item-meta-value i {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
}
.babe_items_3 .item_text .item-title-wrapper .item-meta .item-meta-value span {
  font-size: 14px;
  font-size: 0.875rem;
}
.babe_items_3 .item_text .item-location {
  margin-top: auto;
}
.babe_items_3 .item_text .item-location i {
  font-size: 16px;
  font-size: 1rem;
  color: var(--e-global-color-primary);
  margin-right: 4px;
}
.babe_items_3 .item_text .item-location span {
  font-size: 14px;
  font-size: 0.875rem;
  color: var(--e-global-color-lighter);
}
.babe_items_3 .item_text .item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 480px) {
  .babe_items_3 .item_text .item-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-top: 10px;
    gap: 10px;
  }
}
.babe_items_3 .item_text .item-bottom .item_info_price {
  display: flex;
  align-items: center;
  gap: 4px;
}
.babe_items_3 .item_text .item-bottom .item_info_price .item_info_before_price {
  display: block;
  margin-top: 10px;
}
.babe_items_3 .item_text .item-bottom .item_info_price .item_info_price_new {
  color: var(--e-global-color-primary);
  font-size: 28px;
  font-size: 1.75rem;
}
.babe_items_3 .item_text .item-bottom .item_info_price .item_info_price_new .currency_amount {
  font-weight: 600;
}
.babe_items_3 .item_text .item-bottom .item_info_price .item_info_price_old {
  text-decoration: line-through;
  color: var(--e-global-color-lighter);
}
.babe_items_3 .item_text .item-bottom .item_info_price .item_info_price_old .currency_amount {
  font-weight: 400;
}
.babe_items_3 .item_text .item-bottom .item_info_price .item_info_price_person {
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3;
  color: var(--e-global-color-text);
}
.babe_items_3 .item_text .item-bottom .read-more-item {
  font-family: var(--e-global-typography-accent-font-family);
  font-weight: var(--e-global-typography-accent-font-weight);
  text-transform: var(--e-global-typography-accent-text-transform);
  font-style: var(--e-global-typography-accent-font-style);
  text-decoration: var(--e-global-typography-accent-text-decoration);
  line-height: var(--e-global-typography-accent-line-height);
  letter-spacing: var(--e-global-typography-accent-letter-spacing);
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding: 1.0625rem 1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  border-radius: 8px;
  background-color: var(--e-global-color-primary);
  white-space: nowrap;
  color: #ffffff;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-transform: capitalize;
  display: inline-block;
  border: none;
  font-family: var(--e-global-typography-accent-font-family);
  font-weight: var(--e-global-typography-accent-font-weight);
  text-transform: var(--e-global-typography-accent-text-transform);
  font-style: var(--e-global-typography-accent-font-style);
  text-decoration: var(--e-global-typography-accent-text-decoration);
  line-height: var(--e-global-typography-accent-line-height);
  letter-spacing: var(--e-global-typography-accent-letter-spacing);
  text-transform: capitalize;
  letter-spacing: 0;
  padding: 14px 20px;
  border-radius: 12px;
  background-color: var(--e-global-color-secondary);
  border: none;
}
.babe_items_3 .item_text .item-bottom .read-more-item span {
  position: relative;
  z-index: 2;
}
.babe_items_3 .item_text .item-bottom .read-more-item:hover {
  color: #ffffff;
  background-color: var(--e-global-color-accent);
}
.babe_items_3 .item_text .item-bottom .read-more-item:hover .elementor-button-icon {
  color: #ffffff;
}
.babe_items_3 .item_text .item-bottom .read-more-item:hover {
  border: none;
  background-color: #FFD15D;
  color: #010926;
}

@media (max-width: 1170px) {
  .ba-items-style-3 .babe_items_3:first-child .item-icons {
    display: none;
  }
}
.babe_items_4 {
  margin-bottom: 30px;
}
.babe_items_4:hover .babe_all_items_item_inner {
  box-shadow: 0 10px 60px 0 rgba(6, 30, 98, 0.1);
}
.babe_items_4 .babe_all_items_item_inner .post-total-rating {
  font-size: 11px;
  line-height: 22px;
  flex-basis: 100%;
}
.babe_items_4 .babe_all_items_item_inner {
  border-radius: 20px;
  background-color: white;
  box-shadow: 0 0 30px 0 rgba(6, 30, 98, 0.08);
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  transition: all ease-in-out 0.2s;
}
.babe_items_4 .babe_all_items_item_inner:hover .item-meta-media + .post-total-rating {
  margin-top: -22px;
}
.babe_items_4 .item_img {
  position: relative;
  width: 300px;
}
@media (max-width: 767px) {
  .babe_items_4 .item_img {
    width: 100%;
  }
}
.babe_items_4 .item_img .item-thumb {
  position: relative;
  display: block;
  height: 100%;
  padding-top: 65%;
  border-radius: 30px;
  background-color: var(--e-global-color-primary);
}
.babe_items_4 .item_img .item-thumb img {
  border-radius: 30px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.babe_items_4 .item_img .tripay_add_to_wishlist {
  position: absolute;
  right: 30px;
  top: 30px;
  line-height: 1;
  color: #fff;
  font-size: 18px;
  z-index: 3;
}
.babe_items_4 .item_img .tripay_add_to_wishlist:hover, .babe_items_4 .item_img .tripay_add_to_wishlist.in-wishlist {
  color: var(--e-global-color-primary);
}
.babe_items_4 .item-meta {
  font-size: 14px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.babe_items_4 .item-location {
  font-size: 14px;
  margin-bottom: 20px;
}
.babe_items_4 .item-location i {
  margin-right: 5px;
}
.babe_items_4 .item-location span {
  vertical-align: middle;
}
.babe_items_4 .item-meta-media,
.babe_items_4 .post-total-rating {
  transition: all ease 0.3s;
}
.babe_items_4 .item-meta-right {
  text-align: right;
  height: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
}
.babe_items_4 .item-meta-value i {
  margin-right: 5px;
}
.babe_items_4 .item-meta-value span {
  vertical-align: middle;
}
.babe_items_4 .item-meta-value + .item-meta-value {
  margin-left: 10px;
}
.babe_items_4 .read-more-item {
  font-size: 14px;
  font-weight: 700;
  color: var(--e-global-color-secondary);
}
.babe_items_4 .read-more-item i {
  margin-left: 10px;
}
.babe_items_4 .read-more-item:hover {
  color: var(--e-global-color-primary);
}
.babe_items_4 .item_text {
  padding: 25px 30px 25px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.babe_items_4 .item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  margin-top: auto;
}
.babe_items_4 .item_info_price {
  padding: 0;
  margin: 0;
  align-self: center;
  border: none;
  font-weight: 500;
}
.babe_items_4 .item_info_price .item_info_price_old {
  text-decoration: line-through;
  font-size: 14px;
  font-size: 0.875rem;
  color: var(--e-global-color-lighter);
}
.babe_items_4 .item_info_price .item_info_price_person {
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3;
  color: var(--e-global-color-text);
}
.babe_items_4 .item_info_price .item_info_price_new .currency_amount {
  font-size: 20px;
  margin-right: 5px;
  color: var(--e-global-color-primary);
}
.babe_items_4 .item_info_price_discount {
  display: none;
}
.babe_items_4 .item_title {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 5px;
  margin-top: 10px;
}
.babe_items_4 .item_title a {
  color: var(--e-global-color-secondary);
}
.babe_items_4 .item_title a:hover {
  color: var(--e-global-color-primary);
}

.babe_items_5 .babe_all_items_item_inner {
  border-radius: 30px;
  height: 100%;
  display: flex;
  transition: 0.5s all ease;
}
@media (max-width: 680px) {
  .babe_items_5 .babe_all_items_item_inner {
    flex-direction: column;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  }
}
.babe_items_5 .item_img {
  position: relative;
  max-width: 400px;
}
@media (max-width: 1024px) {
  .babe_items_5 .item_img {
    max-width: 300px;
  }
}
@media (max-width: 680px) {
  .babe_items_5 .item_img {
    max-width: 100%;
  }
}
.babe_items_5 .item_img img {
  border-radius: 30px;
}
@media (max-width: 1024px) {
  .babe_items_5 .item_img img {
    height: 100%;
    object-fit: cover;
  }
}
.babe_items_5 .item-rating {
  display: flex;
  gap: 4px;
  padding: 9px 12px;
  background-color: #ffffff;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1;
  border-radius: 100px;
  align-items: stretch;
}
.babe_items_5 .item-rating i {
  color: #FFD15D;
  font-size: 16px;
  font-size: 1rem;
}
.babe_items_5 .item-rating .rating-score {
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
  font-size: 16px;
  font-size: 1rem;
  color: var(--e-global-color-text);
  line-height: 1.2;
}
.babe_items_5 .item-rating .rating-count {
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
  font-weight: 300;
  font-size: 16px;
  font-size: 1rem;
  color: var(--e-global-color-lighter);
  line-height: 1.2;
}
.babe_items_5 .item_text {
  padding: 0 0 0 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
}
@media (max-width: 680px) {
  .babe_items_5 .item_text {
    padding: 20px;
  }
}
.babe_items_5 .item_text .item-title-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 10px;
}
.babe_items_5 .item_text .item-title-wrapper .item_title {
  flex: 1;
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
  text-transform: capitalize;
  letter-spacing: 0;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 768px) {
  .babe_items_5 .item_text .item-title-wrapper .item_title {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .babe_items_5 .item_text .item-title-wrapper .item-meta {
    display: none;
  }
}
.babe_items_5 .item_text .item-title-wrapper .item-meta .item-meta-value {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--e-global-color-lighter);
}
.babe_items_5 .item_text .item-title-wrapper .item-meta .item-meta-value i {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
}
.babe_items_5 .item_text .item-title-wrapper .item-meta .item-meta-value span {
  font-size: 14px;
  font-size: 0.875rem;
}
.babe_items_5 .item_text .item-location {
  margin-bottom: 16px;
}
.babe_items_5 .item_text .item-location i {
  font-size: 16px;
  font-size: 1rem;
  color: var(--e-global-color-primary);
  margin-right: 4px;
}
.babe_items_5 .item_text .item-location span {
  font-size: 14px;
  font-size: 0.875rem;
  color: var(--e-global-color-lighter);
}
.babe_items_5 .item_text .item_description {
  margin-bottom: 20px;
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  color: var(--e-global-color-text);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 768px) {
  .babe_items_5 .item_text .item_description {
    margin-bottom: 10px;
    -webkit-line-clamp: 2;
  }
}
.babe_items_5 .item_text .item_description p {
  margin-bottom: 0;
}
.babe_items_5 .item_text .item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .babe_items_5 .item_text .item-bottom {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
  }
}
.babe_items_5 .item_text .item-bottom .item_info_price {
  display: flex;
  align-items: center;
  gap: 4px;
}
.babe_items_5 .item_text .item-bottom .item_info_price .item_info_before_price {
  display: block;
  margin-top: 10px;
}
.babe_items_5 .item_text .item-bottom .item_info_price .item_info_price_new {
  color: var(--e-global-color-primary);
  font-size: 28px;
  font-size: 1.75rem;
}
.babe_items_5 .item_text .item-bottom .item_info_price .item_info_price_new .currency_amount {
  font-weight: 600;
}
.babe_items_5 .item_text .item-bottom .item_info_price .item_info_price_old {
  text-decoration: line-through;
  color: var(--e-global-color-lighter);
}
.babe_items_5 .item_text .item-bottom .item_info_price .item_info_price_old .currency_amount {
  font-weight: 400;
}
.babe_items_5 .item_text .item-bottom .item_info_price .item_info_price_person {
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3;
  color: var(--e-global-color-text);
}
.babe_items_5 .item_text .item-bottom .read-more-item {
  font-family: var(--e-global-typography-accent-font-family);
  font-weight: var(--e-global-typography-accent-font-weight);
  text-transform: var(--e-global-typography-accent-text-transform);
  font-style: var(--e-global-typography-accent-font-style);
  text-decoration: var(--e-global-typography-accent-text-decoration);
  line-height: var(--e-global-typography-accent-line-height);
  letter-spacing: var(--e-global-typography-accent-letter-spacing);
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding: 1.0625rem 1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  border-radius: 8px;
  background-color: var(--e-global-color-primary);
  white-space: nowrap;
  color: #ffffff;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-transform: capitalize;
  display: inline-block;
  border: none;
  font-family: var(--e-global-typography-accent-font-family);
  font-weight: var(--e-global-typography-accent-font-weight);
  text-transform: var(--e-global-typography-accent-text-transform);
  font-style: var(--e-global-typography-accent-font-style);
  text-decoration: var(--e-global-typography-accent-text-decoration);
  line-height: var(--e-global-typography-accent-line-height);
  letter-spacing: var(--e-global-typography-accent-letter-spacing);
  text-transform: capitalize;
  letter-spacing: 0;
  padding: 12px 20px;
  border-radius: 12px;
  background-color: var(--e-global-color-secondary);
  border: none;
}
.babe_items_5 .item_text .item-bottom .read-more-item span {
  position: relative;
  z-index: 2;
}
.babe_items_5 .item_text .item-bottom .read-more-item:hover {
  color: #ffffff;
  background-color: var(--e-global-color-accent);
}
.babe_items_5 .item_text .item-bottom .read-more-item:hover .elementor-button-icon {
  color: #ffffff;
}
.babe_items_5 .item_text .item-bottom .read-more-item:hover {
  border: none;
  background-color: #FFD15D;
  color: #010926;
}

.babe_items_6 .babe_all_items_item_inner {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid;
  border-color: var(--e-global-color-border);
}
.babe_items_6 .babe_all_items_item_inner .item_img {
  width: 100px;
  flex: 0 0 100px;
}
.babe_items_6 .babe_all_items_item_inner .item_img .item-thumb {
  position: relative;
  display: block;
  padding-top: 80%;
  border-radius: 10px;
}
.babe_items_6 .babe_all_items_item_inner .item_img .item-thumb img {
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.babe_items_6 .babe_all_items_item_inner .item_text {
  padding-left: 20px;
}
.babe_items_6 .babe_all_items_item_inner .item_title {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
}
.babe_items_6 .babe_all_items_item_inner .item_title a {
  color: var(--e-global-color-primary);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 1.5em;
}
.babe_items_6 .babe_all_items_item_inner .item_title a:hover {
  color: var(--e-global-color-primary);
}
.babe_items_6 .babe_all_items_item_inner .item_info_price {
  margin-top: 5px;
  margin-bottom: 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 26px;
  border-bottom: none;
}
.babe_items_6 .babe_all_items_item_inner .item_info_price .item_info_price_new {
  color: var(--e-global-color-primary);
}
.babe_items_6 .babe_all_items_item_inner .item_info_price .item_info_price_old {
  text-decoration: line-through;
  font-size: 14px;
  color: var(--e-global-color-primary);
}
.babe_items_6:last-child .babe_all_items_item_inner {
  border-bottom: none;
}

.babe_items_7 {
  margin-bottom: 30px;
}
.babe_items_7:hover .babe_all_items_item_inner {
  box-shadow: 0 10px 60px 0 rgba(6, 30, 98, 0.1);
}
.babe_items_7 .babe_all_items_item_inner .post-total-rating {
  font-size: 11px;
  line-height: 22px;
  flex-basis: 100%;
}
.babe_items_7 .babe_all_items_item_inner .post-total-rating .star {
  font-size: 11px;
}
.babe_items_7 .babe_all_items_item_inner {
  border-radius: 20px;
  background-color: white;
  box-shadow: 0 0 30px 0 rgba(6, 30, 98, 0.08);
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  transition: all ease-in-out 0.2s;
}
.babe_items_7 .babe_all_items_item_inner:hover .item-meta-media + .post-total-rating {
  margin-top: -22px;
}
.babe_items_7 .item_img {
  position: relative;
  width: 300px;
}
@media (max-width: 767px) {
  .babe_items_7 .item_img {
    width: 100%;
  }
}
.babe_items_7 .item_img .item-thumb {
  position: relative;
  display: block;
  height: 100%;
  padding-top: 130%;
  border-radius: 20px;
  background-color: var(--e-global-color-primary);
}
.babe_items_7 .item_img .item-thumb img {
  border-radius: 20px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.babe_items_7 .item_img .tripay_add_to_wishlist {
  position: absolute;
  right: 30px;
  top: 30px;
  line-height: 1;
  color: #fff;
  font-size: 18px;
  z-index: 3;
}
.babe_items_7 .item_img .tripay_add_to_wishlist:hover, .babe_items_7 .item_img .tripay_add_to_wishlist.in-wishlist {
  color: var(--e-global-color-primary);
}
.babe_items_7 .item-meta {
  font-size: 14px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 13px;
  margin-bottom: 19px;
  border-bottom: 1px solid var(--border);
}
.babe_items_7 .item-meta-left i {
  color: var(--e-global-color-primary);
}
.babe_items_7 .item-meta-left span {
  color: var(--e-global-color-primary);
}
.babe_items_7 .item-location {
  font-size: 14px;
  color: var(--e-global-color-primary);
  margin-bottom: 20px;
}
.babe_items_7 .item-location i {
  margin-right: 5px;
}
.babe_items_7 .item-location span {
  vertical-align: middle;
}
.babe_items_7 .item-meta-media,
.babe_items_7 .post-total-rating {
  transition: all ease 0.3s;
}
.babe_items_7 .item-meta-right {
  text-align: right;
  height: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
}
.babe_items_7 .item-meta-right .item-meta-value {
  color: var(--e-global-color-primary);
}
.babe_items_7 .item-meta-right .item-meta-value:hover {
  color: var(--e-global-color-primary);
}
.babe_items_7 .item-meta-value i {
  margin-right: 5px;
}
.babe_items_7 .item-meta-value span {
  vertical-align: middle;
}
.babe_items_7 .item-meta-value + .item-meta-value {
  margin-left: 10px;
}
.babe_items_7 .read-more-item {
  font-size: 14px;
  font-weight: 700;
  color: var(--e-global-color-secondary);
}
.babe_items_7 .read-more-item i {
  margin-left: 10px;
  color: var(--e-global-color-primary);
}
.babe_items_7 .read-more-item:hover {
  color: var(--e-global-color-primary);
}
.babe_items_7 .item_text {
  padding: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.babe_items_7 .item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  margin-top: auto;
  border-top: 1px solid var(--border);
}
.babe_items_7 .item_info_price {
  padding: 0;
  margin: 0;
  align-self: center;
  border: none;
  font-weight: 500;
}
.babe_items_7 .item_info_price .item_info_price_old {
  text-decoration: line-through;
  font-size: 14px;
  color: var(--e-global-color-primary);
}
.babe_items_7 .item_info_price label {
  margin: 0;
  font-size: 14px;
  display: block;
  color: var(--e-global-color-primary);
  line-height: 1;
  font-weight: 500;
}
.babe_items_7 .item_info_price .item_info_price_new .currency_amount {
  font-size: 20px;
  margin-right: 5px;
  color: var(--e-global-color-primary);
}
.babe_items_7 .item_info_price_discount {
  display: none;
}
.babe_items_7 .item_title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 8px;
}
.babe_items_7 .item_title a {
  color: var(--e-global-color-primary);
}
.babe_items_7 .item_title a:hover {
  color: var(--e-global-color-primary);
}

.babe_items_8 {
  margin-bottom: 30px;
}
.babe_items_8 .babe_all_items_item_inner .post-total-rating {
  font-size: 11px;
  flex-basis: 100%;
}
.babe_items_8 .babe_all_items_item_inner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background-color: white;
  height: 100%;
  transition: all ease-in-out 0.2s;
}
.babe_items_8 .babe_all_items_item_inner:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: #202f59;
  background: linear-gradient(0deg, var(--secondary) 0%, rgba(32, 47, 89, 0) 100%);
  z-index: 2;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  opacity: 0;
  visibility: hidden;
}
.babe_items_8 .babe_all_items_item_inner:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #202f59;
  background: linear-gradient(180deg, rgba(32, 47, 89, 0) 19.79%, #202F59 86.46%);
  z-index: 2;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  height: 90%;
}
.babe_items_8 .babe_all_items_item_inner:hover:before {
  height: 100%;
  opacity: 1;
  visibility: visible;
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.babe_items_8 .babe_all_items_item_inner:hover .item_img .item-thumb img {
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.babe_items_8 .babe_all_items_item_inner:hover .item_img .tripay_add_to_wishlist {
  opacity: 1;
  visibility: visible;
}
.babe_items_8 .item_img {
  position: relative;
}
.babe_items_8 .item_img .item-thumb {
  position: relative;
  display: block;
  padding-top: 133%;
  background-color: var(--e-global-color-primary);
}
.babe_items_8 .item_img .item-thumb:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.babe_items_8 .item_img .item-thumb img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  object-fit: cover;
  height: 100%;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.babe_items_8 .item_img .tripay_add_to_wishlist {
  position: absolute;
  right: 30px;
  top: 30px;
  line-height: 1;
  color: #fff;
  font-size: 18px;
  z-index: 3;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  opacity: 0;
  visibility: hidden;
}
.babe_items_8 .item_img .tripay_add_to_wishlist:hover, .babe_items_8 .item_img .tripay_add_to_wishlist.in-wishlist {
  color: var(--e-global-color-primary);
}
.babe_items_8 .item-hide {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  transition: all ease-in-out 0.2s;
  overflow: hidden;
  font-size: 14px;
}
.babe_items_8 .item-meta-left {
  padding-top: 5px;
}
.babe_items_8 .item-meta-left i {
  color: var(--e-global-color-primary);
}
.babe_items_8 .item-meta-left span {
  color: #fff;
}
.babe_items_8 .item-location {
  width: 100%;
  font-size: 14px;
  color: #fff;
}
.babe_items_8 .item-location i {
  vertical-align: text-bottom;
  margin-right: 5px;
}
.babe_items_8 .item-location span {
  vertical-align: middle;
}
.babe_items_8 .item-meta-media,
.babe_items_8 .post-total-rating {
  transition: all ease 0.3s;
}
.babe_items_8 .item-meta-right {
  padding-top: 5px;
  text-align: right;
  height: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
}
.babe_items_8 .item-meta-right .item-meta-value {
  color: #fff;
}
.babe_items_8 .item-meta-right .item-meta-value:hover {
  color: var(--e-global-color-primary);
}
.babe_items_8 .item-meta-value i {
  margin-right: 5px;
}
.babe_items_8 .item-meta-value span {
  vertical-align: middle;
}
.babe_items_8 .item-meta-value + .item-meta-value {
  margin-left: 10px;
}
.babe_items_8 .item_text {
  padding: 30px 30px 34px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}
.babe_items_8 .item-bottom {
  padding-top: 10px;
  margin-top: auto;
}
.babe_items_8 .item_info_price {
  padding: 0;
  margin: 0;
  align-self: center;
  border: none;
  font-weight: 500;
}
.babe_items_8 .item_info_price .item_info_price_old {
  text-decoration: line-through;
  font-size: 14px;
  display: block;
  color: #fff;
}
.babe_items_8 .item_info_price label {
  margin: 0;
  font-size: 14px;
  display: block;
  color: var(--e-global-color-primary);
  font-weight: 500;
}
.babe_items_8 .item_info_price .item_info_price_new .currency_amount {
  font-size: 20px;
  color: var(--e-global-color-primary);
}
.babe_items_8 .item_info_price_discount {
  display: none;
}
.babe_items_8 .item_title {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 5px;
  max-width: 90%;
}
.babe_items_8 .item_title a {
  color: #fff;
}
.babe_items_8 .item_title a:hover {
  color: var(--e-global-color-primary);
}

.tripay-carousel-items .babe_shortcode_block_inner {
  display: none;
}
.tripay-carousel-items .babe_shortcode_block_inner.slick-initialized {
  display: block;
}
.tripay-carousel-items .babe_items {
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 0;
}
.tripay-carousel-items .babe_items .babe_all_items_item_inner {
  box-shadow: 0 0 15px 0 rgba(6, 30, 98, 0.08);
}
.tripay-carousel-items.tripay-carousel-visibility .slick-list {
  overflow: visible;
}
.tripay-carousel-items.tripay-carousel-visibility .slick-slide {
  transition: all ease 0.1s;
}
.tripay-carousel-items.tripay-carousel-visibility .slick-slide:not(.slick-active) {
  opacity: 0;
}
.tripay-carousel-items.tripay-carousel-visibility .slick-slide.slick-active ~ .slick-slide {
  opacity: 1;
}

.layout-carousel-2 .tripay-carousel-items .slick-list {
  overflow: visible;
}

@media (min-width: 1024px) {
  .babe_shortcode_block_inner .slick-prev {
    left: -100px;
  }
}
@media (min-width: 1024px) {
  .babe_shortcode_block_inner .slick-next {
    right: -100px;
  }
}

@keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/***************Slideshow***************/
.booking_single_gallery .slick-slide img {
  width: 100%;
}
.booking_single_gallery .slick-prev:hover:before,
.booking_single_gallery .slick-next:hover:before {
  opacity: 1;
}
.booking_single_gallery .slick-prev {
  left: 60px;
}
@media (max-width: 767px) {
  .booking_single_gallery .slick-prev {
    left: 30px;
  }
}
.booking_single_gallery .slick-next {
  right: 60px;
}
@media (max-width: 767px) {
  .booking_single_gallery .slick-next {
    right: 30px;
  }
}

.booking_single_thumbnails .last ~ .thumbnail-inner {
  display: none !important;
}
.booking_single_thumbnails .thumbnail-inner {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.booking_single_thumbnails .thumbnail-inner:last-child:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
  border-radius: 12px;
}
.booking_single_thumbnails .count {
  position: absolute;
  top: 0;
  left: 0;
  color: white;
  z-index: 2;
  font-size: 24px;
  font-weight: 400;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  content: "";
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slideshow-tab-container .tab-content {
  display: block;
}
.slideshow-tab-container .gallery {
  margin-bottom: 0;
}

.booking_tab_gallery {
  z-index: 11;
  position: absolute;
  bottom: 12px;
  right: 12px;
}

.tablist_gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 0;
  gap: 12px 12px;
  margin: 0;
}
.tablist_gallery li {
  list-style: none;
  text-align: center;
  position: relative;
}
@media (max-width: 991px) {
  .tablist_gallery li {
    margin-bottom: 10px;
    margin-right: 10px;
  }
}
@media (max-width: 567px) {
  .tablist_gallery li {
    margin-right: 5px;
  }
}
.tablist_gallery li span {
  display: inline-block;
  vertical-align: middle;
}
.tablist_gallery li i {
  margin-right: 4px;
}
.tablist_gallery li a {
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  color: var(--e-global-color-secondary);
  background-color: #FFFFFF;
  border-radius: 12px;
  text-transform: capitalize;
  z-index: 2;
  cursor: pointer;
  display: block;
  padding: 17px 20px;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tablist_gallery li.active {
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tablist_gallery li.active a {
  color: #fff;
  background-color: var(--e-global-color-primary);
}
.tablist_gallery li:hover a {
  color: #fff;
  background-color: var(--e-global-color-primary);
  box-shadow: 0 0 60px rgba(6, 30, 98, 0.08);
}
.tablist_gallery li:hover.active a {
  color: #fff;
  background-color: var(--e-global-color-primary);
}

.booking_single_gallery {
  position: relative;
}
.booking_single_gallery .gallery-view-full {
  position: absolute;
  right: 25px;
  bottom: 30px;
  z-index: 1;
}
@media (max-width: 567px) {
  .booking_single_gallery .gallery-view-full {
    right: 20px;
    bottom: 15px;
  }
}
.booking_single_gallery .gallery-view-full i {
  color: #000;
  background: white;
  height: 50px;
  width: 50px;
  border-radius: 100%;
  display: block;
  text-align: center;
  line-height: 50px;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 567px) {
  .booking_single_gallery .gallery-view-full i {
    height: 30px;
    width: 30px;
    line-height: 30px;
  }
}
.booking_single_gallery .gallery-view-full i:hover {
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: var(--e-global-color-primary);
  color: white;
}

.mfp-iframe-holder button.mfp-close {
  font-size: 1.5rem;
}
.mfp-iframe-holder button.mfp-close:hover, .mfp-iframe-holder button.mfp-close:focus, .mfp-iframe-holder button.mfp-close:active {
  background-color: transparent;
}

.elementor-widget-babe-item-slideshow .has_overlay .gallery-wrap {
  background-color: #000;
}
.elementor-widget-babe-item-slideshow .has_overlay .slick-slide img {
  opacity: 0.6;
}

.slideshow-style-1 .booking_single_gallery .gallery-wrap {
  padding: 0;
  background-color: #000;
}
.slideshow-style-1 .slick-slide img {
  max-height: 600px;
  object-fit: cover;
  border-radius: 0;
  opacity: 0.6;
}

.slideshow-style-2 .elementor-slideshow-wrap {
  --s-column: 5;
  display: grid;
  grid-template-columns: repeat(var(--s-column), 1fr);
  grid-auto-rows: minmax(100px, auto);
  gap: 12px;
  position: relative;
}
.slideshow-style-2 .elementor-slideshow-wrap .elementor-slideshow-item {
  position: relative;
}
.slideshow-style-2 .elementor-slideshow-wrap .elementor-slideshow-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.slideshow-style-2 .elementor-slideshow-wrap .elementor-slideshow-item img {
  width: 100%;
  border-radius: 20px;
}
.slideshow-style-2 .elementor-slideshow-wrap .elementor-slideshow-item .see-all {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 17px 20px;
}
@media (max-width: 768px) {
  .slideshow-style-2 .elementor-slideshow-wrap .elementor-slideshow-item .see-all {
    display: none;
  }
}
.slideshow-style-2 .see-all {
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  color: var(--e-global-color-secondary);
  background-color: #FFFFFF;
  border-radius: 12px;
  text-transform: capitalize;
  z-index: 2;
  cursor: pointer;
}
.slideshow-style-2 .see-all.btn-tablet {
  background-color: transparent;
  text-decoration: underline;
  padding: 10px 0;
  margin-top: 10px;
  display: inline-block;
  float: right;
}
@media (min-width: 769px) {
  .slideshow-style-2 .see-all.btn-tablet {
    display: none;
  }
}

.slideshow-style-3 .swiper-button-prev, .slideshow-style-3 .swiper-button-next {
  color: #ffffff;
}
.slideshow-style-3 .gallery-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.slideshow-style-3 .booking_single_gallery {
  flex: 0 0 calc(100%);
  width: calc(100%);
  overflow: hidden;
}
.slideshow-style-3 .booking_single_gallery .gallery-item {
  width: 100%;
}
.slideshow-style-3 .tripay-carousel {
  width: 100%;
  height: 100%;
}
.slideshow-style-3 .tripay-carousel img {
  max-width: unset;
  width: 100%;
  border-radius: 30px;
}
.slideshow-style-3 .booking_single_thumbnails {
  flex: 0 0 100%;
  width: 100%;
  flex-direction: row;
  margin-top: 10px;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: auto auto auto auto;
  overflow: hidden;
}
@media (max-width: 768px) {
  .slideshow-style-3 .booking_single_thumbnails {
    margin-bottom: 12px;
  }
}
.slideshow-style-3 .booking_single_thumbnails .thumbnail-inner {
  height: calc(175px);
  overflow: hidden;
  opacity: 0.75;
}
@media (max-width: 425px) {
  .slideshow-style-3 .booking_single_thumbnails .thumbnail-inner {
    height: 100px;
  }
}
.slideshow-style-3 .booking_single_thumbnails .thumbnail-inner img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
@media (max-width: 567px) {
  .slideshow-style-3 .booking_single_thumbnails .thumbnail-inner img {
    position: unset;
  }
}
@media (max-width: 768px) {
  .slideshow-style-3 .booking_single_thumbnails .thumbnail-inner .see-all {
    display: none;
  }
}
.slideshow-style-3 .booking_single_thumbnails .swiper-slide-thumb-active {
  opacity: 1;
}
.slideshow-style-3 .booking_single_thumbnails .see-all {
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 19px 20px;
  color: var(--e-global-color-secondary);
  background-color: #FFFFFF;
  border-radius: 12px;
  text-transform: capitalize;
  z-index: 2;
  cursor: pointer;
}
.slideshow-style-3 .booking_single_thumbnails .see-all.btn-tablet {
  background-color: transparent;
  text-decoration: underline;
  padding: 10px 0;
  margin-top: 10px;
}
@media (min-width: 769px) {
  .slideshow-style-3 .booking_single_thumbnails .see-all.btn-tablet {
    display: none;
  }
}
.slideshow-style-3 .slick-vertical .slick-slide {
  border: none;
}
.slideshow-style-3 .slick-vertical .slick-slide > div {
  display: flex;
}
.slideshow-style-3 .slick-slide img {
  max-height: 520px;
  object-fit: cover;
}

.elementor-widget-babe-item-slideshow .elementor-widget-inner {
  position: relative;
}
.elementor-widget-babe-item-slideshow .elementor-widget-inner:before, .elementor-widget-babe-item-slideshow .elementor-widget-inner:after {
  content: "";
  display: table;
  clear: both;
}

.elementor-widget-babe-booking-form {
  /* COMMON RADIO AND CHECKBOX STYLES  */
}
.elementor-widget-babe-booking-form .elementor-widget-inner {
  background-color: #F0F3FD;
  padding: 40px;
  border-radius: 30px;
  border: 1px solid var(--e-global-color-border);
}
.elementor-widget-babe-booking-form .babe_post_content_title {
  position: relative;
  font-size: 18px;
  line-height: 30px;
  padding: 20px 0;
  margin-bottom: 20px;
  text-align: left;
}
.elementor-widget-babe-booking-form .babe_post_content_title:before {
  content: "";
  position: absolute;
  top: 0;
  left: -5px;
  right: -5px;
  height: 5px;
  background-color: var(--e-global-color-primary);
  border-bottom-left-radius: 2em;
  border-bottom-right-radius: 2em;
}
.elementor-widget-babe-booking-form .babe_post_content_title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -40px;
  right: -40px;
  border-bottom: 1px solid;
  border-color: var(--e-global-color-border);
}
.elementor-widget-babe-booking-form .babe_post_content_price {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 30px;
}
.elementor-widget-babe-booking-form .babe_post_content_price .item_info_before_price {
  display: block;
  margin-top: 10px;
}
.elementor-widget-babe-booking-form .babe_post_content_price .item_info_price_new {
  color: var(--e-global-color-primary);
  font-size: 38px;
  font-size: 2.375rem;
}
.elementor-widget-babe-booking-form .babe_post_content_price .item_info_price_new .currency_amount {
  font-family: var(--e-global-typography-accent-font-family);
  font-weight: var(--e-global-typography-accent-font-weight);
  text-transform: var(--e-global-typography-accent-text-transform);
  font-style: var(--e-global-typography-accent-font-style);
  text-decoration: var(--e-global-typography-accent-text-decoration);
  line-height: var(--e-global-typography-accent-line-height);
  letter-spacing: var(--e-global-typography-accent-letter-spacing);
  letter-spacing: 0;
  text-transform: capitalize;
}
.elementor-widget-babe-booking-form .babe_post_content_price .item_info_price_old {
  text-decoration: line-through;
  color: var(--e-global-color-lighter);
  font-size: 20px;
  font-size: 1.25rem;
}
.elementor-widget-babe-booking-form .babe_post_content_price .item_info_price_old .currency_amount {
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  letter-spacing: 0;
  text-transform: capitalize;
}
.elementor-widget-babe-booking-form .babe_post_content_price .item_info_price_person {
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--e-global-color-text);
}
.elementor-widget-babe-booking-form form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.elementor-widget-babe-booking-form .booking-form-block {
  border-color: var(--e-global-color-border);
}
.elementor-widget-babe-booking-form .booking-form-block .booking_form_input_label {
  font-weight: 500;
  color: #000;
}
.elementor-widget-babe-booking-form .booking-date-block {
  border-bottom: none;
  margin-bottom: 12px;
  padding: 0;
}
.elementor-widget-babe-booking-form .booking-date-block .booking_form_input_label {
  display: none;
}
.elementor-widget-babe-booking-form .booking-date-block .booking-date {
  max-width: 100%;
}
.elementor-widget-babe-booking-form .booking-times-block {
  padding-bottom: 17px;
  margin: 0;
  border-bottom: 1px solid var(--e-global-color-border);
}
.elementor-widget-babe-booking-form .booking-times-block .booking_form_input_label {
  color: #5C626A;
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
}
.elementor-widget-babe-booking-form .booking-times-block .booking-date-times {
  margin-left: 40px;
  gap: 10px;
}
.elementor-widget-babe-booking-form .booking-guests-block {
  padding-top: 25px;
  padding-bottom: 13px;
  margin-bottom: 0;
}
.elementor-widget-babe-booking-form .booking-guests-block .booking_form_input_label {
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
  font-size: 21px;
  font-size: 1.3125rem;
  color: var(--e-global-color-text);
  margin-bottom: 6px;
}
.elementor-widget-babe-booking-form .booking-guests-block .input_select_field .input_select_title_value {
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.875;
  color: #343A51;
  padding: 0;
}
.elementor-widget-babe-booking-form .booking-guests-block .input_select_field .input_select_title_value .currency_amount {
  font-family: var(--e-global-typography-accent-font-family);
  font-weight: var(--e-global-typography-accent-font-weight);
  text-transform: var(--e-global-typography-accent-text-transform);
  font-style: var(--e-global-typography-accent-font-style);
  text-decoration: var(--e-global-typography-accent-text-decoration);
  line-height: var(--e-global-typography-accent-line-height);
  letter-spacing: var(--e-global-typography-accent-letter-spacing);
  letter-spacing: 0;
  text-transform: capitalize;
  color: #010926;
}
.elementor-widget-babe-booking-form .booking-guests-block .input_select_field .input_select_wrapper {
  max-width: 96px;
}
.elementor-widget-babe-booking-form .booking-guests-block .input_select_field .input_select_wrapper .input_select_input {
  background-color: #ffffff;
  border: none;
  border-radius: 3px;
  color: #969BA1;
}
.elementor-widget-babe-booking-form .booking-guests-block .input_select_field .input_select_wrapper i {
  position: absolute;
  right: 16px;
  top: 50%;
  padding: 0;
  font-size: 10px;
  font-size: 0.625rem;
  transform: translateY(-50%);
}
.elementor-widget-babe-booking-form .booking-services-block .booking_form_input_label {
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
  font-size: 21px;
  font-size: 1.3125rem;
  color: var(--e-global-color-text);
  margin-bottom: 11px;
  padding-top: 20px;
  text-transform: capitalize;
}
.elementor-widget-babe-booking-form .booking-services-block .booking_services_inner {
  width: 100%;
}
.elementor-widget-babe-booking-form .booking-services-block .booking_services_inner .list_service_details {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 32px;
}
.elementor-widget-babe-booking-form .booking-services-block .booking_services_inner .list_service_details .service_price_line {
  display: flex;
  justify-content: space-between;
  padding: 0;
}
.elementor-widget-babe-booking-form .booking-services-block .booking_services_inner .list_service_details .service_price_line label {
  color: #969BA1;
  font-size: 16px;
  font-size: 1rem;
  display: block;
}
.elementor-widget-babe-booking-form .booking-services-block .booking_services_inner .list_service_details .service_price_line .currency_amount {
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  font-size: 16px;
  font-size: 1rem;
  color: var(--e-global-color-secondary);
}
.elementor-widget-babe-booking-form .input_select_field .input_select_list {
  border-color: var(--e-global-color-border);
}
.elementor-widget-babe-booking-form #booking_form_total .currency_amount {
  font-size: 21px;
  font-size: 1.3125rem;
  line-height: 1em;
  color: var(--e-global-color-primary);
  font-weight: 500;
}
.elementor-widget-babe-booking-form .booking_time_line input[type=radio] {
  /* Hide original inputs */
  opacity: 0;
  display: none;
}
.elementor-widget-babe-booking-form .booking_time_line input[type=radio]:checked + label:before {
  border-color: var(--e-global-color-primary);
}
.elementor-widget-babe-booking-form .booking_time_line input[type=radio]:checked + label:after {
  -ms-transform: translateY(-50%) scale(1);
  -o-transform: translateY(-50%) scale(1);
  -moz-transform: translateY(-50%) scale(1);
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
  opacity: 1;
}
.elementor-widget-babe-booking-form .booking_time_line input[type=radio] + label {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 16px;
  color: #5C626A;
}
.elementor-widget-babe-booking-form .booking_time_line input[type=radio] + label:hover:before {
  border-color: var(--e-global-color-primary);
}
.elementor-widget-babe-booking-form .booking_time_line input[type=radio] + label:before {
  height: 20px;
  width: 20px;
  margin-right: 5px;
  content: " ";
  display: inline-block;
  vertical-align: baseline;
  border: 1px solid;
  border-radius: 50%;
  border-color: var(--e-global-color-border);
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.elementor-widget-babe-booking-form .booking_time_line input[type=radio] + label:after {
  height: 10px;
  width: 10px;
  margin-right: 5px;
  content: " ";
  display: inline-block;
  vertical-align: baseline;
  position: absolute;
  left: 5px;
  top: 50%;
  border-radius: 50%;
  background-color: var(--e-global-color-primary);
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -ms-transform: translateY(-50%) scale(0);
  -o-transform: translateY(-50%) scale(0);
  -moz-transform: translateY(-50%) scale(0);
  -webkit-transform: translateY(-50%) scale(0);
  transform: translateY(-50%) scale(0);
  opacity: 0;
}

.ui-widget.ui-widget-content.ui-slider {
  border: none;
  background-color: #e6e6e6;
}
.ui-widget.ui-widget-content.ui-slider.ui-slider-horizontal {
  height: 4px;
  border-radius: 5px;
}
.ui-widget.ui-widget-content .ui-widget-header {
  background-color: var(--e-global-color-secondary);
  border-color: var(--e-global-color-secondary);
  color: #fff;
}
.ui-widget.ui-widget-content .ui-widget-header.ui-slider-range {
  background-color: var(--e-global-color-primary);
  border-color: var(--e-global-color-primary);
}

.ui-widget-content .ui-slider-handle.ui-state-default,
.ui-widget-header .ui-slider-handle.ui-state-default {
  font-size: 14px;
  color: #000;
  background-color: #fff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: none;
  box-shadow: 0 0 9px rgba(6, 30, 98, 0.08);
}
.ui-widget-content .ui-slider-handle.ui-state-default:hover,
.ui-widget-header .ui-slider-handle.ui-state-default:hover {
  color: var(--e-global-color-primary);
}
.ui-widget-content .ui-slider-handle.ui-state-default:before,
.ui-widget-header .ui-slider-handle.ui-state-default:before {
  content: "";
  width: 17px;
  height: 17px;
  position: absolute;
  left: 53%;
  top: 30%;
  border-radius: 50%;
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  border: 2px solid var(--e-global-color-primary);
}

.ui-slider-horizontal .ui-slider-handle {
  top: -7px;
  margin-left: 0;
}
.ui-slider-horizontal .ui-slider-handle:last-child {
  margin-left: -18px;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border-color: var(--e-global-color-primary);
  background-color: var(--e-global-color-primary);
  color: #fff;
}
.ui-state-active:hover,
.ui-widget-content .ui-state-active:hover,
.ui-widget-header .ui-state-active:hover,
a.ui-button:active:hover,
.ui-button:active:hover,
.ui-button.ui-state-active:hover:hover {
  color: #fff;
}
.ui-state-active:before,
.ui-widget-content .ui-state-active:before,
.ui-widget-header .ui-state-active:before,
a.ui-button:active:before,
.ui-button:active:before,
.ui-button.ui-state-active:hover:before {
  background-color: #fff;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: 1;
}
.ui-state-disabled .ui-state-default,
.ui-widget-content .ui-state-disabled .ui-state-default,
.ui-widget-header .ui-state-disabled .ui-state-default {
  background-color: #f5f5f5;
  border-color: #f5f5f5;
  color: #cccccc;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  background-color: transparent !important;
  cursor: pointer;
  border: none !important;
  color: #fff;
}
/**
 * Wishlist
 */
.wishlist-wrap .wishlist {
  display: flex;
  align-items: center;
}
.wishlist-wrap .wishlist .tripay-icon-spinner {
  opacity: 0;
  display: none;
  animation: remove_spin 1s linear infinite;
}
.wishlist-wrap .loading .tripay-icon {
  opacity: 0;
  display: none;
}
.wishlist-wrap .loading .tripay-icon-spinner {
  opacity: 1;
  display: inline-block;
}

.ba-wishlist-container .wishlist-ba-header,
.ba-wishlist-container .ba-wishlist-book {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid;
  border-bottom-color: var(--e-global-color-border);
}
@media (max-width: 767px) {
  .ba-wishlist-container .wishlist-ba-header:first-child,
.ba-wishlist-container .ba-wishlist-book:first-child {
    border-top: 1px solid;
    border-top-color: var(--e-global-color-border);
  }
}
.ba-wishlist-container .wishlist-ba-header .ba-remove,
.ba-wishlist-container .ba-wishlist-book .ba-remove {
  width: 8%;
}
.ba-wishlist-container .wishlist-ba-header .ba-thumbnail,
.ba-wishlist-container .ba-wishlist-book .ba-thumbnail {
  width: 12%;
}
@media (max-width: 1024px) {
  .ba-wishlist-container .wishlist-ba-header .ba-thumbnail,
.ba-wishlist-container .ba-wishlist-book .ba-thumbnail {
    width: 15%;
  }
}
@media (max-width: 767px) {
  .ba-wishlist-container .wishlist-ba-header .ba-thumbnail,
.ba-wishlist-container .ba-wishlist-book .ba-thumbnail {
    width: 92%;
  }
}
.ba-wishlist-container .wishlist-ba-header .ba-name,
.ba-wishlist-container .ba-wishlist-book .ba-name {
  width: 40%;
}
@media (max-width: 1024px) {
  .ba-wishlist-container .wishlist-ba-header .ba-name,
.ba-wishlist-container .ba-wishlist-book .ba-name {
    width: 37%;
  }
}
@media (max-width: 767px) {
  .ba-wishlist-container .wishlist-ba-header .ba-name,
.ba-wishlist-container .ba-wishlist-book .ba-name {
    width: 100%;
  }
}
.ba-wishlist-container .wishlist-ba-header .ba-price,
.ba-wishlist-container .ba-wishlist-book .ba-price {
  width: 15%;
}
@media (max-width: 767px) {
  .ba-wishlist-container .wishlist-ba-header .ba-price,
.ba-wishlist-container .ba-wishlist-book .ba-price {
    width: 100%;
  }
}
.ba-wishlist-container .wishlist-ba-header .ba-button,
.ba-wishlist-container .ba-wishlist-book .ba-button {
  width: 25%;
}
@media (max-width: 767px) {
  .ba-wishlist-container .wishlist-ba-header .ba-button,
.ba-wishlist-container .ba-wishlist-book .ba-button {
    width: 100%;
  }
}
.ba-wishlist-container .wishlist-ba-header {
  padding-top: 30px;
  padding-bottom: 30px;
}
.ba-wishlist-container .wishlist-ba-header .ba-thumbnail, .ba-wishlist-container .wishlist-ba-header .ba-price {
  color: var(--e-global-color-text);
  font-family: var(--e-global-typography-primary-font-family);
  font-weight: var(--e-global-typography-primary-font-weight);
  text-transform: var(--e-global-typography-primary-text-transform);
  font-style: var(--e-global-typography-primary-font-style);
  text-decoration: var(--e-global-typography-primary-text-decoration);
  line-height: var(--e-global-typography-primary-line-height);
  letter-spacing: var(--e-global-typography-primary-letter-spacing);
  font-size: 20px;
  font-size: 1.25rem;
}
@media (max-width: 767px) {
  .ba-wishlist-container .wishlist-ba-header {
    display: none;
  }
}
.ba-wishlist-container .wishlist-ba-body .ba-remove {
  text-align: left;
}
@media (max-width: 767px) {
  .ba-wishlist-container .wishlist-ba-body .ba-remove {
    text-align: left;
    margin-bottom: 1em;
  }
}
.ba-wishlist-container .wishlist-ba-body .ba-remove .tripay-wishlist-remove {
  font-size: 20px;
  color: var(--e-global-color-secondary);
}
.ba-wishlist-container .wishlist-ba-body .ba-remove .tripay-wishlist-remove:hover {
  color: var(--e-global-color-primary);
}
.ba-wishlist-container .wishlist-ba-body .ba-remove .tripay-wishlist-remove .tripay-icon-spinner {
  opacity: 0;
  display: none;
  animation: remove_spin 1s linear infinite;
}
.ba-wishlist-container .wishlist-ba-body .ba-remove .tripay-wishlist-remove.loading .tripay-icon-spinner {
  opacity: 1;
  display: inline-block;
}
.ba-wishlist-container .wishlist-ba-body .ba-remove .tripay-wishlist-remove.loading .tripay-icon {
  opacity: 0;
  display: none;
}
.ba-wishlist-container .wishlist-ba-body .ba-wishlist-book {
  padding-top: 30px;
  padding-bottom: 30px;
}
.ba-wishlist-container .wishlist-ba-body .ba-thumbnail img {
  max-width: 100px;
  border-radius: 6px;
}
@media (max-width: 767px) {
  .ba-wishlist-container .wishlist-ba-body .ba-thumbnail img {
    max-width: 160px;
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  .ba-wishlist-container .wishlist-ba-body .ba-thumbnail {
    margin-bottom: 1em;
  }
}
.ba-wishlist-container .wishlist-ba-body .ba-button {
  text-align: right;
}
.ba-wishlist-container .wishlist-ba-body .ba-name {
  padding-right: 15px;
}
@media (max-width: 767px) {
  .ba-wishlist-container .wishlist-ba-body .ba-name {
    padding-right: 0;
  }
}
.ba-wishlist-container .wishlist-ba-body .ba-name a {
  color: var(--e-global-color-text);
}
.ba-wishlist-container .wishlist-ba-body .ba-name a:hover {
  color: var(--e-global-color-primary);
}
.ba-wishlist-container .wishlist-ba-body .ba-name .name-title {
  display: none;
}
@media (max-width: 767px) {
  .ba-wishlist-container .wishlist-ba-body .ba-name {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 1em;
  }
  .ba-wishlist-container .wishlist-ba-body .ba-name .name-title {
    display: inline-block;
    padding-right: 30px;
    color: var(--e-global-color-text);
    font-weight: 700;
  }
  .ba-wishlist-container .wishlist-ba-body .ba-name > a {
    text-align: right;
    font-size: 14px;
  }
}
.ba-wishlist-container .wishlist-ba-body .ba-price .item_info_price {
  margin-bottom: 0;
  border: none;
}
@media (max-width: 767px) {
  .ba-wishlist-container .wishlist-ba-body .ba-price .item_info_price {
    text-align: right;
  }
}
.ba-wishlist-container .wishlist-ba-body .ba-price .item_info_price label {
  display: block;
  font-size: 14px;
  color: var(--e-global-color-lighter);
}
.ba-wishlist-container .wishlist-ba-body .ba-price .item_info_price_from {
  font-size: 20px;
  line-height: 24px;
  margin-right: 5px;
  color: var(--e-global-color-text);
}
.ba-wishlist-container .wishlist-ba-body .ba-price .item_info_price_from .currency_amount {
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
}
.ba-wishlist-container .wishlist-ba-body .ba-price .item_info_price_from_discount {
  margin: 0;
  text-decoration: line-through;
  font-size: 14px;
  color: var(--e-global-color-lighter);
}
.ba-wishlist-container .wishlist-ba-body .ba-price .item_info_price_from_save, .ba-wishlist-container .wishlist-ba-body .ba-price .item_info_discount_expired {
  display: block;
  font-weight: 400;
  font-size: 14px;
  color: var(--e-global-color-lighter);
}
.ba-wishlist-container .wishlist-ba-body .ba-price .title-price {
  display: none;
}
@media (max-width: 767px) {
  .ba-wishlist-container .wishlist-ba-body .ba-price {
    margin-bottom: 1em;
  }
  .ba-wishlist-container .wishlist-ba-body .ba-price .price-from {
    display: flex;
    align-items: end;
    justify-content: space-between;
  }
  .ba-wishlist-container .wishlist-ba-body .ba-price .price-from .title-price {
    display: inline-block;
    padding-right: 30px;
    color: var(--e-global-color-text);
    font-weight: 700;
  }
}
.ba-wishlist-container .wishlist-ba-body .ba-button .btn-book {
  padding: 0.785rem 2rem;
}
.ba-wishlist-container .wishlist-ba-body .ba-button .btn-book i {
  margin-left: 10px;
}
.ba-wishlist-container .wishlist-ba-body .ba-button .button-content {
  letter-spacing: 0;
}

.elementor-widget-ba-wishlist .nav-links ul.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding-top: 60px;
  text-align: center;
}
@media (max-width: 1023px) {
  .elementor-widget-ba-wishlist .nav-links ul.page-numbers {
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  .elementor-widget-ba-wishlist .nav-links ul.page-numbers {
    padding-top: 30px;
  }
}
.elementor-widget-ba-wishlist .nav-links li {
  margin-right: 5px;
}
.elementor-widget-ba-wishlist .nav-links li:last-child {
  margin-right: 0;
}
.elementor-widget-ba-wishlist .nav-links li .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 24px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--e-global-color-lighter);
}
.elementor-widget-ba-wishlist .nav-links li .page-numbers:hover {
  color: var(--e-global-color-primary);
}
.elementor-widget-ba-wishlist .nav-links li .page-numbers.current {
  color: #fff;
  background-color: var(--e-global-color-primary);
}
.elementor-widget-ba-wishlist .nav-links li .prev, .elementor-widget-ba-wishlist .nav-links li .next {
  width: unset;
  height: 30px;
  border-radius: 0;
  color: var(--e-global-color-text);
}
.elementor-widget-ba-wishlist .nav-links li .prev i {
  margin-right: 7px;
}
.elementor-widget-ba-wishlist .nav-links li .next i {
  margin-left: 7px;
}

table.wishlist-table thead {
  border-bottom: 1px solid;
  border-bottom-color: var(--e-global-color-border);
}
table.wishlist-table tbody tr {
  border-bottom: 1px solid;
  border-bottom-color: var(--e-global-color-border);
}
table.wishlist-table tbody td {
  vertical-align: middle;
}

#showNotice {
  min-width: 250px;
  margin-left: -125px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  font-size: 17px;
}

#showNotice {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}
@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
.tooltipster-base .tooltipster-box {
  background-color: #fff;
  box-shadow: 0 0 60px rgba(6, 30, 98, 0.08);
  border-radius: 5px;
  font-size: 14px;
}
.tooltipster-base .tooltipster-content {
  padding: 0.5rem 1rem;
}
.tooltipster-base.tooltipster-sidetip .tooltipster-arrow-border {
  border-top: 10px solid #fff;
  border-bottom: 10px solid #fff;
}

@keyframes remove_spin {
  0% {
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.tripay-wishlist-remove {
  position: relative;
}
.tripay-wishlist-remove .spinner {
  max-width: 30px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.tripay-wishlist-remove.loading .tripay-icon-times, .tripay-wishlist-remove.loading i {
  opacity: 0;
}
.tripay-wishlist-remove.loading .spinner {
  opacity: 1;
}

.elementor-widget-container .babe-section-title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5em;
  margin-bottom: 0;
}

.meta-field-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.meta-field-inner .item-meta-value {
  color: var(--e-global-color-primary);
}
.meta-field-inner .item_icon {
  font-size: 30px;
  color: var(--e-global-color-primary);
  line-height: 1em;
  margin-right: 20px;
}
@media (max-width: 567px) {
  .meta-field-inner .item_icon {
    display: none;
  }
}
.meta-field-inner .item_info {
  flex-grow: 1;
}
.meta-field-inner a:not(:hover) {
  color: inherit;
}

.elementor-widget-babe-item-included .elementor-list-items {
  list-style: none;
  margin: 0;
  padding: 0;
}
.elementor-widget-babe-item-included .item_icon {
  color: var(--e-global-color-primary);
  display: inline-block;
}

.elementor-widget-babe-item-taxonomy .elementor-list-items {
  list-style: none;
  margin: 0;
  padding: 0;
}
.elementor-widget-babe-item-taxonomy .item_icon {
  color: var(--e-global-color-primary);
  display: inline-block;
}

.elementor-widget-taxonomy-item .title-tours {
  text-transform: capitalize;
}
.elementor-widget-taxonomy-item .tripay-location-item-1 .location-item, .elementor-widget-taxonomy-item .tripay-location-item-4 .location-item {
  position: relative;
  text-align: center;
}
.elementor-widget-taxonomy-item .tripay-location-item-1 .location-item a, .elementor-widget-taxonomy-item .tripay-location-item-4 .location-item a {
  display: flex;
}
.elementor-widget-taxonomy-item .tripay-location-item-1 .content-location, .elementor-widget-taxonomy-item .tripay-location-item-4 .content-location {
  position: absolute;
  bottom: 27px;
  left: 30px;
}
.elementor-widget-taxonomy-item .tripay-location-item-1 .content-location .taxonomy-infor, .elementor-widget-taxonomy-item .tripay-location-item-4 .content-location .taxonomy-infor {
  width: fit-content;
}
.elementor-widget-taxonomy-item .tripay-location-item-1 .title-location:hover .thumbnail-location:after, .elementor-widget-taxonomy-item .tripay-location-item-4 .title-location:hover .thumbnail-location:after {
  opacity: 0.3;
  transform: scale(1.1);
  transition: all 0.5s ease;
}
.elementor-widget-taxonomy-item .tripay-location-item-1 .title-location:hover .thumbnail-location img, .elementor-widget-taxonomy-item .tripay-location-item-4 .title-location:hover .thumbnail-location img {
  transform: scale(1.05);
  transition: all 0.5s ease;
}
.elementor-widget-taxonomy-item .tripay-location-item-1 .thumbnail-location, .elementor-widget-taxonomy-item .tripay-location-item-4 .thumbnail-location {
  display: inline-block;
  position: relative;
  border-radius: 20px;
  width: 100%;
}
.elementor-widget-taxonomy-item .tripay-location-item-1 .thumbnail-location img, .elementor-widget-taxonomy-item .tripay-location-item-4 .thumbnail-location img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
}
.elementor-widget-taxonomy-item .tripay-location-item-1 .thumbnail-location:after, .elementor-widget-taxonomy-item .tripay-location-item-4 .thumbnail-location:after {
  content: "";
  display: inline-block;
  position: absolute;
  border-radius: 20px;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 1;
  transition: all 0.5s ease;
  background: linear-gradient(178.42deg, rgba(0, 0, 0, 0) 49.82%, rgba(0, 0, 0, 0.5) 103.27%);
}
.elementor-widget-taxonomy-item .tripay-location-item-1 .thumbnail-location img, .elementor-widget-taxonomy-item .tripay-location-item-4 .thumbnail-location img {
  transition: all 0.5s ease;
}
.elementor-widget-taxonomy-item .tripay-location-item-1 .content-tours, .elementor-widget-taxonomy-item .tripay-location-item-4 .content-tours {
  display: flex;
  color: #ffffff;
}
.elementor-widget-taxonomy-item .tripay-location-item-1 .content-tours i, .elementor-widget-taxonomy-item .tripay-location-item-4 .content-tours i {
  font-size: 32px;
  margin-right: 8px;
}
.elementor-widget-taxonomy-item .tripay-location-item-1 .content-tours .title-tours, .elementor-widget-taxonomy-item .tripay-location-item-4 .content-tours .title-tours {
  font-weight: 600;
  font-size: 28px;
  margin: 0;
}
.elementor-widget-taxonomy-item .tripay-location-item-1 .location-count, .elementor-widget-taxonomy-item .tripay-location-item-4 .location-count {
  display: inline-block;
  padding: 8px 12px;
  color: #010926;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.14em;
  border-radius: 78px;
  background: #FFD15D;
  margin-bottom: 5px;
}
.elementor-widget-taxonomy-item .tripay-location-item-3 .thumbnail-location img {
  width: 100%;
  object-fit: cover;
}
.elementor-widget-taxonomy-item .tripay-location-item-3 video {
  display: flex;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}
.elementor-widget-taxonomy-item .tripay-location-item-3 .content-location {
  position: absolute;
  top: 30px;
  left: 30px;
}
.elementor-widget-taxonomy-item .tripay-location-item-3 .content-tours {
  padding: 11px 20px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: transparent !important;
}
.elementor-widget-taxonomy-item .tripay-location-item-3 .content-tours i, .elementor-widget-taxonomy-item .tripay-location-item-3 .content-tours span {
  position: relative;
  z-index: 1;
}
.elementor-widget-taxonomy-item .tripay-location-item-3 .content-tours i {
  font-size: 24px;
  margin-right: 8px;
  color: #fff;
  position: relative;
  z-index: 1;
}
.elementor-widget-taxonomy-item .tripay-location-item-3 .content-tours .title-tours {
  position: relative;
  z-index: 1;
  font-weight: 500;
  font-size: 21px;
  font-size: 1.3125rem;
  line-height: 1.4em;
  color: #FFF;
}
.elementor-widget-taxonomy-item .tripay-location-item-3 .content-tours:after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-filter: blur(4px);
  filter: blur(4px);
  background: rgba(0, 0, 0, 0.7);
}
.elementor-widget-taxonomy-item .tripay-location-item-2 .title-location:hover .thumbnail-location img {
  transform: scale(1.05);
  transition: all 0.5s ease;
}
.elementor-widget-taxonomy-item .tripay-location-item-2 .thumbnail-location {
  position: relative;
  border-radius: 30px;
  margin-bottom: 24px;
  overflow: hidden;
}
.elementor-widget-taxonomy-item .tripay-location-item-2 .thumbnail-location img {
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}
.elementor-widget-taxonomy-item .tripay-location-item-2 .content-tours {
  display: flex;
  align-items: center;
}
.elementor-widget-taxonomy-item .tripay-location-item-2 i {
  margin-right: 4px;
  color: #808492;
  font-size: 21px;
}
.elementor-widget-taxonomy-item .tripay-location-item-2 .taxonomy-infor {
  width: fit-content;
}
.elementor-widget-taxonomy-item .tripay-location-item-2 .title-tours {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 400;
  line-height: 1.4em;
  color: var(--e-global-color-lighter);
  margin: 0;
}
.elementor-widget-taxonomy-item .tripay-location-item-2 .location-count {
  display: inline-block;
  padding: 8px 12px;
  color: #010926;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.14em;
  border-radius: 78px;
  background: #FFD15D;
  margin-top: 8px;
}
.elementor-widget-taxonomy-item .tripay-location-item-4 .thumbnail-location {
  overflow: hidden;
}
.elementor-widget-taxonomy-item .tripay-location-item-4 .thumbnail-location:after {
  content: none;
}
.elementor-widget-taxonomy-item .tripay-location-item-4 .content-tours {
  padding: 11px 20px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.7);
}
.elementor-widget-taxonomy-item .tripay-location-item-4 .content-tours i, .elementor-widget-taxonomy-item .tripay-location-item-4 .content-tours span {
  position: relative;
  z-index: 1;
}
.elementor-widget-taxonomy-item .tripay-location-item-4 .content-tours i {
  font-size: 24px;
  margin-right: 8px;
}
.elementor-widget-taxonomy-item .tripay-location-item-4 .content-tours .title-tours {
  font-weight: 500;
  font-size: 21px;
  font-size: 1.3125rem;
  line-height: 1.4em;
}

.elementor-widget-taxonomy-array .elementor-taxonomy-array-wrapper {
  --gap: 10px;
  display: flex;
  grid-column-gap: var(--gap);
  grid-row-gap: var(--gap);
  flex-wrap: wrap;
}
.elementor-widget-taxonomy-array .title-location {
  position: relative;
  display: flex;
  height: 100%;
  align-items: flex-end;
  padding: 20px;
}
.elementor-widget-taxonomy-array .content-location {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: flex-end;
}
.elementor-widget-taxonomy-array .button-taxonomy {
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 1;
  visibility: visible;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: relative;
  background: var(--e-global-color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
}
.elementor-widget-taxonomy-array .button-taxonomy:hover {
  background: var(--e-global-color-highlight);
}
.elementor-widget-taxonomy-array .button-taxonomy:before {
  font-family: "tripay-icon";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  content: "";
  color: #FFFFFF;
}
.elementor-widget-taxonomy-array .thumbnail-location {
  position: absolute;
  overflow: hidden;
  border-radius: 30px;
  display: inline-block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.elementor-widget-taxonomy-array .thumbnail-location img {
  border-radius: 30px;
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.elementor-widget-taxonomy-array .title-tours {
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #ffffff;
  margin-bottom: 0;
}
.elementor-widget-taxonomy-array .content-tours {
  padding: 17.5px 20px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #FFFFFF;
}
.elementor-widget-taxonomy-array .content-tours .title-tours {
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.375em;
  color: #010926;
}
.elementor-widget-taxonomy-array .location-array {
  width: calc(50% - calc(var(--gap) / 2));
  height: 500px;
  position: relative;
  padding: 0;
  max-width: 100%;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
@media (max-width: 425px) {
  .elementor-widget-taxonomy-array .location-array {
    height: 350px;
    width: 100%;
  }
}
.elementor-widget-taxonomy-array .location-array.active, .elementor-widget-taxonomy-array .location-array:hover {
  flex-grow: 2.1;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .elementor-widget-taxonomy-array .elementor-taxonomy-array-wrapper {
    flex-wrap: nowrap;
  }
  .elementor-widget-taxonomy-array .location-array {
    height: 583px;
    -webkit-flex: 1;
    -webkit-box-flex: 1;
    flex: 1;
    width: auto;
  }
  .elementor-widget-taxonomy-array .location-array.active .button-taxonomy, .elementor-widget-taxonomy-array .location-array:hover .button-taxonomy {
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 1;
    visibility: visible;
  }
  .elementor-widget-taxonomy-array .button-taxonomy {
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
  }
}

.elementor-widget-babe-taxonomies-list .location-list {
  margin-bottom: 10px;
}
.elementor-widget-babe-taxonomies-list .location-list .location-content {
  font-size: 16px;
  font-weight: 500;
}
.elementor-widget-babe-taxonomies-list .location-list .location-content:hover .title-tour, .elementor-widget-babe-taxonomies-list .location-list .location-content:hover .count-count {
  color: var(--e-global-color-primary);
}
.elementor-widget-babe-taxonomies-list .location-list .title-tour {
  color: var(--e-global-color-primary);
}
.elementor-widget-babe-taxonomies-list .location-list .count-count {
  color: var(--e-global-color-primary);
  font-weight: 400;
}

.elementor-widget-babe-taxonomies .item-inner {
  position: relative;
  display: block;
  margin-bottom: 30px;
}
.elementor-widget-babe-taxonomies .item-inner:hover .thumbnail-location img {
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.elementor-widget-babe-taxonomies .item-inner:hover .thumbnail-location:before {
  height: 100%;
  opacity: 1;
  visibility: visible;
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.elementor-widget-babe-taxonomies .item-inner:hover .content-location:after {
  bottom: -5px;
}
.elementor-widget-babe-taxonomies .thumbnail-location {
  height: 430px;
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 20px;
}
.elementor-widget-babe-taxonomies .thumbnail-location img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.elementor-widget-babe-taxonomies .thumbnail-location:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: #202f59;
  background: linear-gradient(0deg, var(--secondary) 0%, rgba(32, 47, 89, 0) 100%);
  z-index: 2;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  opacity: 0;
  visibility: hidden;
}
.elementor-widget-babe-taxonomies .thumbnail-location:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #202f59;
  background: linear-gradient(0deg, var(--secondary) 0%, rgba(32, 47, 89, 0) 100%);
  z-index: 2;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  height: 35%;
}
.elementor-widget-babe-taxonomies .content-location {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
}
.elementor-widget-babe-taxonomies .content-location:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 30px;
  right: 30px;
  background-color: var(--e-global-color-primary);
  border-radius: 2em;
  height: 10px;
  -ms-transition: all 0.25s ease 0.1s;
  -o-transition: all 0.25s ease 0.1s;
  -moz-transition: all 0.25s ease 0.1s;
  -webkit-transition: all 0.25s ease 0.1s;
  transition: all 0.25s ease 0.1s;
}
.elementor-widget-babe-taxonomies .location-name {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 30px;
  color: #fff;
  word-break: break-all;
}
.elementor-widget-babe-taxonomies .location-count {
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
  color: #fff;
}
.elementor-widget-babe-taxonomies.layout-carousel-2 .tripay-carousel-items .slick-list {
  overflow: visible;
}
.elementor-widget-babe-taxonomies.layout-carousel-2 .tripay-carousel-items [data-slick-index="-1"] {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.elementor-widget-babe-gallery .elementor-gallery-image {
  --g-column: 5;
  display: grid;
  grid-template-columns: repeat(var(--g-column), 1fr);
  grid-auto-rows: minmax(100px, auto);
  gap: 12px;
}
.elementor-widget-babe-gallery .elementor-gallery-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.4s ease, filter 0.4s ease, opacity 0.4s ease;
}
.elementor-widget-babe-gallery .elementor-gallery-image .elementor-gallery-item {
  overflow: hidden;
  border-radius: 20px;
}
.elementor-widget-babe-gallery .elementor-gallery-image .elementor-gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.elementor-widget-babe-gallery .elementor-gallery-image .elementor-gallery-item:hover img {
  filter: brightness(90%);
  opacity: 0.9;
}
@media (max-width: 1024px) {
  .elementor-widget-babe-gallery .elementor-gallery-image {
    grid-template-columns: repeat(3, 1fr);
  }
  .elementor-widget-babe-gallery .elementor-gallery-image .elementor-gallery-item:first-child {
    grid-column: span 3;
    grid-row: span 1;
  }
}
@media (max-width: 768px) {
  .elementor-widget-babe-gallery .elementor-gallery-image {
    grid-template-columns: repeat(2, 1fr);
  }
  .elementor-widget-babe-gallery .elementor-gallery-image .elementor-gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
}
@media (max-width: 480px) {
  .elementor-widget-babe-gallery .elementor-gallery-image {
    grid-template-columns: 1fr;
  }
  .elementor-widget-babe-gallery .elementor-gallery-image .elementor-gallery-item {
    height: 300px;
  }
  .elementor-widget-babe-gallery .elementor-gallery-image .elementor-gallery-item:first-child {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.elementor-widget-babe-item-price-from .item_info_price {
  border: none;
  display: flex;
  align-items: center;
  gap: 2px;
}
.elementor-widget-babe-item-price-from .item_info_price_from {
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--e-global-color-primary);
}
.elementor-widget-babe-item-price-from .item_info_price {
  padding: 0;
  margin: 0;
  align-self: center;
  border: none;
  font-weight: 500;
}
.elementor-widget-babe-item-price-from .item_info_price .item_info_price_old {
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
  text-decoration: line-through;
  font-size: 18px;
  font-size: 1.125rem;
  color: var(--e-global-color-lighter);
}
.elementor-widget-babe-item-price-from .item_info_price .item_info_price_new .currency_amount {
  font-family: var(--e-global-typography-primary-font-family);
  font-weight: var(--e-global-typography-primary-font-weight);
  text-transform: var(--e-global-typography-primary-text-transform);
  font-style: var(--e-global-typography-primary-font-style);
  text-decoration: var(--e-global-typography-primary-text-decoration);
  line-height: var(--e-global-typography-primary-line-height);
  letter-spacing: var(--e-global-typography-primary-letter-spacing);
  font-size: 28px;
  font-size: 1.75rem;
  color: var(--e-global-color-primary);
}
.elementor-widget-babe-item-price-from .item_info_price .item_info_price_person {
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  font-size: 12px;
  font-size: 0.75rem;
  color: var(--e-global-color-text);
}

.tripay-single-content ul {
  list-style: none;
  margin-left: 1.5em;
}
.tripay-single-content ul li {
  margin-bottom: 0.5rem;
}
.tripay-single-content ul li:before {
  content: "•";
  color: var(--e-global-color-primary);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.tripay-single-address {
  display: flex;
  align-items: center;
  align-content: center;
}
.tripay-single-address i {
  margin-right: 0.5em;
}

.single-to_book #comments .comment-form p.logged-in-as, .single-to_book #comments .comment-form p.comment-notes {
  margin-bottom: 20px;
}

.elementor-widget-babe-item-additional .elementor-widget-container .block_info {
  overflow: hidden;
  margin-bottom: 30px;
}
.elementor-widget-babe-item-additional .elementor-widget-container .block_info:last-child {
  margin-bottom: 0;
}
.elementor-widget-babe-item-additional .elementor-widget-container .block_info:first-child .block_info_content {
  max-height: 1000vh;
  transition: all 2s;
}
.elementor-widget-babe-item-additional .elementor-widget-container .block_info:first-child .block_info_content.block_active {
  max-height: 0;
  transition: all 0.5s;
}
.elementor-widget-babe-item-additional .elementor-widget-container .block_info:first-child .step_icon .step_icon_opened {
  display: block;
}
.elementor-widget-babe-item-additional .elementor-widget-container .block_info:first-child .step_icon .step_icon_closed {
  display: none;
}
.elementor-widget-babe-item-additional .elementor-widget-container .block_info:first-child .block_info_title.block_active .step_icon .step_icon_opened {
  display: none;
}
.elementor-widget-babe-item-additional .elementor-widget-container .block_info:first-child .block_info_title.block_active .step_icon .step_icon_closed {
  display: block;
}
.elementor-widget-babe-item-additional .elementor-widget-container .block_info_title {
  display: flex;
  align-items: center;
  border-radius: 5px;
  padding: 18px 20px;
  line-height: 24px;
  border: none;
  background-color: var(--e-global-color-secondary);
  color: #fff;
  -ms-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  -moz-transition: color 0.3s ease-in-out;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.elementor-widget-babe-item-additional .elementor-widget-container .block_info_title:hover {
  cursor: pointer;
  background-color: var(--e-global-color-primary);
}
.elementor-widget-babe-item-additional .elementor-widget-container .block_info_title.block_active {
  border-radius: 5px 5px 0 0;
}
.elementor-widget-babe-item-additional .elementor-widget-container .block_info_title span {
  margin-right: 0.5rem;
}
.elementor-widget-babe-item-additional .elementor-widget-container .block_info_title .info_title {
  flex: 1;
  font-size: 16px;
  margin-bottom: 0;
  padding: 0;
  color: #fff;
}
.elementor-widget-babe-item-additional .elementor-widget-container .block_info_title span {
  margin-right: 8px;
  line-height: 24px;
}
.elementor-widget-babe-item-additional .elementor-widget-container .block_info_content {
  display: block;
  font-size: 16px;
  max-height: 0;
  transition: all 1s;
  border: none;
  padding: 0;
}
.elementor-widget-babe-item-additional .elementor-widget-container .block_info_content .content {
  padding-top: 30px;
}
.elementor-widget-babe-item-additional .elementor-widget-container .block_info_content.block_active {
  display: block;
  max-height: 1000vh;
  transition: all 2s;
}
.elementor-widget-babe-item-additional .elementor-widget-container .info_icon {
  font-size: 10px;
  margin-right: 10px;
}
.elementor-widget-babe-item-additional .elementor-widget-container .info_icon span {
  float: unset;
  margin: 0;
}
.elementor-widget-babe-item-additional .elementor-widget-container .info_icon .info_icon_opened {
  display: none;
}
.elementor-widget-babe-item-additional .elementor-widget-container .block_info_title.block_active .info_icon .info_icon_opened {
  display: block;
}
.elementor-widget-babe-item-additional .elementor-widget-container .block_info_title.block_active .info_icon .info_icon_closed {
  display: none;
}

.elementor-widget-babe-archive-info .elementor-widget-inner {
  margin: 0;
  border-radius: 20px;
  border-collapse: collapse;
  border-style: hidden;
  box-shadow: 0 0 0 1px var(--e-global-color-border);
  overflow-x: auto;
}
.elementor-widget-babe-archive-info table {
  margin: 0;
}
.elementor-widget-babe-archive-info .taxonomy-info-item {
  line-height: 49px;
  margin: 0 30px;
  display: flex;
}
@media (max-width: 568px) {
  .elementor-widget-babe-archive-info .taxonomy-info-item {
    flex-direction: column;
    align-items: center;
  }
}
.elementor-widget-babe-archive-info .taxonomy-info-item td {
  padding: 0;
}
.elementor-widget-babe-archive-info .taxonomy-info-item td.item-content {
  padding-left: 45px;
  color: #969BA1;
}
@media (max-width: 568px) {
  .elementor-widget-babe-archive-info .taxonomy-info-item td.item-content {
    padding-left: 0;
  }
}
.elementor-widget-babe-archive-info .taxonomy-info-item:not(:last-child) {
  border-bottom: 1px solid;
  border-color: var(--e-global-color-border);
}
.elementor-widget-babe-archive-info .taxonomy-info-item:first-child td {
  padding-top: 15px;
}
@media (max-width: 568px) {
  .elementor-widget-babe-archive-info .taxonomy-info-item:first-child td {
    padding: 0;
  }
}
.elementor-widget-babe-archive-info .taxonomy-info-item:last-child td {
  padding-bottom: 15px;
}
@media (max-width: 568px) {
  .elementor-widget-babe-archive-info .taxonomy-info-item:last-child td {
    padding: 0;
  }
}
.elementor-widget-babe-archive-info .item-label {
  min-width: 242px;
  color: #000;
  border-right: 1px solid var(--e-global-color-border);
}
@media (max-width: 568px) {
  .elementor-widget-babe-archive-info .item-label {
    border: none;
    text-align: center;
  }
}

.my_account_page_content_wrapper.login_register_page, .my_account_page_content_wrapper.login_page {
  padding: 0;
  min-height: unset;
  background-color: transparent;
}

.login_register_page {
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .login_register_page {
    margin-bottom: 20px;
  }
}

.my_account_page_content_wrapper #login_form,
.my_account_page_content_wrapper .tripay-form-popup,
.login_register_page #login_form,
.login_register_page .tripay-form-popup {
  max-width: 500px;
  padding: 50px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  background-color: #eef0f8;
}
.my_account_page_content_wrapper #login_registration,
.my_account_page_content_wrapper .login_registration,
.login_register_page #login_registration,
.login_register_page .login_registration {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 470px;
  margin: auto;
}
.my_account_page_content_wrapper #login_registration h3,
.my_account_page_content_wrapper .login_registration h3,
.login_register_page #login_registration h3,
.login_register_page .login_registration h3 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
  margin-right: 5px;
}
.my_account_page_content_wrapper #babe_login,
.login_register_page #babe_login {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.my_account_page_content_wrapper #babe_login > div,
.login_register_page #babe_login > div {
  flex-grow: 1;
  flex-basis: 100%;
  margin-bottom: 1em;
}
.my_account_page_content_wrapper #babe_login label,
.login_register_page #babe_login label {
  display: block;
  margin-bottom: 0.5em;
  color: var(--e-global-color-primary);
}
.my_account_page_content_wrapper #babe_login .login_submit,
.login_register_page #babe_login .login_submit {
  flex-basis: 100%;
  margin-bottom: 0;
  margin-top: 10px;
}
.my_account_page_content_wrapper #babe_login .login_submit input[type=submit],
.login_register_page #babe_login .login_submit input[type=submit] {
  width: 100%;
}
.my_account_page_content_wrapper #babe_login #forgot_url,
.login_register_page #babe_login #forgot_url {
  flex-basis: 100%;
  text-align: right;
  padding-top: 0;
  margin-bottom: 0;
  margin-top: 10px;
  font-size: 14px;
}
.my_account_page_content_wrapper #babe_login #forgot_url a:not(:hover),
.login_register_page #babe_login #forgot_url a:not(:hover) {
  color: var(--e-global-color-primary);
}
.my_account_page_content_wrapper .login_submit, .my_account_page_content_wrapper .new-submit, .my_account_page_content_wrapper #login_form > h3, .my_account_page_content_wrapper .tripay-login-title,
.login_register_page .login_submit,
.login_register_page .new-submit,
.login_register_page #login_form > h3,
.login_register_page .tripay-login-title {
  text-align: center;
  font-size: 2em;
}

#login_form .login_registration {
  margin-top: 30px;
}

/*# sourceMappingURL=booking.css.map */
