.ovarb-loader {
  margin: auto;
  border: 5px solid #EAF0F6;
  border-radius: 50%;
  border-top: 5px solid var(--ovarb-primary-color);
  width: 30px;
  height: 30px;
  animation: spinner 1s linear infinite;
}

@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.ovarb_mt_10 {
  margin-top: 10px !important;
}

.ovarb_underline {
  text-decoration: underline !important;
}

.ovarb_border {
  border: 1px solid var(--ovarb-input-border-color) !important;
}

.ovarb_border_radius {
  border-radius: var(--ovarb-input-border-radius) !important;
}

.ovarb_m_0 {
  margin: 0px !important;
}

.ovarb_p_0 {
  padding: 0px !important;
}

.ovarb_border_collapse {
  border-collapse: collapse;
}

.ovarb_is_shown {
  display: block;
}

/* Customize the label (the container) */
.ovarb_checkbox_label {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  cursor: pointer;
  color: var(--ovarb-text-color);
  line-height: var(--ovarb-text-line-weight);
  font-weight: var(--ovarb-text-font-weight);
  font-size: var(--ovarb-text-font-size);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.ovarb_checkbox_label.ovarb_required:before {
  content: "*";
  position: absolute;
  top: 0;
  right: -10px;
  color: #f44336;
  font-size: 20px;
  vertical-align: middle;
}
.ovarb_checkbox_label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.ovarb_checkbox_label .checkmark {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 25px;
  width: 25px;
  background-color: var(--ovarb-cbr-color);
  border-radius: 2px;
  transition: all 0.3s linear;
}
.ovarb_checkbox_label .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.ovarb_checkbox_label:hover input ~ .checkmark {
  background-color: var(--ovarb-cbr-hover-color);
}
.ovarb_checkbox_label input:checked ~ .checkmark {
  background-color: var(--ovarb-cbr-active-color);
}
.ovarb_checkbox_label input:checked ~ .checkmark:after {
  display: block;
}

/* The container */
.ovarb_radio_label {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  cursor: pointer;
  color: var(--ovarb-text-color);
  line-height: var(--ovarb-text-line-weight);
  font-weight: var(--ovarb-text-font-weight);
  font-size: var(--ovarb-text-font-size);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.ovarb_radio_label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.ovarb_radio_label .checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 25px;
  width: 25px;
  background-color: var(--ovarb-cbr-color);
  border-radius: 50%;
  transition: all 0.3s linear;
}
.ovarb_radio_label .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}
.ovarb_radio_label:hover input ~ .checkmark {
  background: var(--ovarb-cbr-hover-color);
}
.ovarb_radio_label input:checked ~ .checkmark:after {
  display: block;
}
.ovarb_radio_label input:checked ~ .checkmark {
  background: var(--ovarb-cbr-active-color);
}

.ovarb_total_tooltip {
  margin: 0px;
}

body.rtl .ovarb_checkbox_label {
  padding-right: 30px;
  padding-left: 0px;
}
body.rtl .ovarb_checkbox_label.ovarb_required:before {
  left: -10px;
  right: unset;
}
body.rtl .ovarb_checkbox_label .checkmark {
  right: 0px;
  left: unset;
}
body.rtl .ovarb_radio_label {
  padding-right: 30px;
  padding-left: 0px;
}
body.rtl .ovarb_radio_label .checkmark {
  right: 0px;
  left: unset;
}
body.rtl .ovarb_radio_label .ovarb_unchecked {
  left: -20px;
  right: unset !important;
}

.ovarb_booking_tabs_wrapper {
  background: #fff;
  padding: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 10px;
}
.ovarb_booking_tabs_wrapper .ovarb_tabs {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0px;
  overflow: hidden;
  border-radius: var(--ovarb-border-radius);
}
.ovarb_booking_tabs_wrapper .ovarb_tabs.only-one {
  grid-template-columns: auto;
}
.ovarb_booking_tabs_wrapper .ovarb_tabs .ovarb_tab_item a {
  display: block;
  font-size: var(--ovarb-heading-font-size);
  color: var(--ovarb-heading-color);
  width: 100%;
  font-weight: var(--ovarb-heading-font-weight);
  line-height: var(--ovarb-heading-line-weight);
  padding: 20px;
  transition: all 0.3s linear;
  background: var(--ovarb-heading-background-color);
  text-decoration: none;
}
.ovarb_booking_tabs_wrapper .ovarb_tabs .ovarb_tab_item a:focus {
  outline: 0;
}
.ovarb_booking_tabs_wrapper .ovarb_tabs .ovarb_tab_item.is-active a {
  background: var(--ovarb-heading-active-background-color);
  color: var(--ovarb-heading-active-color);
}
.ovarb_booking_tabs_wrapper .ovarb_booking_tab_content {
  display: none;
}
.ovarb_booking_tabs_wrapper .ovarb_booking_tab_content.is-active {
  display: block;
}

.single-product .product-type-ovarb_vehicle {
  overflow: inherit !important;
}

.ovarb_form {
  margin: 0px;
  font-size: 16px;
}
.ovarb_form .ovarb_form_group {
  position: relative;
  margin-top: 10px;
}
.ovarb_form input {
  padding: 10px;
}
.ovarb_form a {
  color: var(--ovarb-primary-color);
  transition: all 0.3s linear;
}
.ovarb_form a:hover {
  color: var(--ovarb-primary-color-hover);
}
.ovarb_form gmp-place-autocomplete {
  border-radius: var(--ovarb-input-border-radius);
}
.ovarb_form .ovarb_form_label {
  position: relative;
  display: inline-block;
  color: var(--ovarb-label-color);
  font-weight: var(--ovarb-label-font-weight);
  font-size: var(--ovarb-label-font-size);
  line-height: var(--ovarb-label-line-weight);
}
.ovarb_form .ovarb_form_label.ovarb_required:before {
  content: "*";
  position: absolute;
  top: 0;
  right: -10px;
  color: #f44336;
  font-size: 20px;
  vertical-align: middle;
}
.ovarb_form .ovarb_form_label i {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 14px;
  color: var(--ovarb-label-color);
}
.ovarb_form .ovarb_select {
  display: block;
  width: 100%;
  height: 40px;
  line-height: 40px;
}
.ovarb_form .ovarb_hidden {
  display: none;
}
.ovarb_form input[name=ovarb_terms] {
  display: none;
}
.ovarb_form .ovarb_same_day_return {
  display: none;
}
.ovarb_form .ovarb_same_day_return.is-active {
  display: inline-block;
}
.ovarb_form .ovarb_vehicle_wrapper, .ovarb_form .ovarb_duration_wrapper, .ovarb_form .ovarb_dropoff_location_wrapper {
  display: none;
}
.ovarb_form .ovarb_vehicle_wrapper.is-active, .ovarb_form .ovarb_duration_wrapper.is-active, .ovarb_form .ovarb_dropoff_location_wrapper.is-active {
  display: block;
}
.ovarb_form .ovarb_vehicle_wrapper.is-loading, .ovarb_form .ovarb_duration_wrapper.is-loading, .ovarb_form .ovarb_dropoff_location_wrapper.is-loading {
  position: relative;
}
.ovarb_form .ovarb_vehicle_wrapper.is-loading:before, .ovarb_form .ovarb_duration_wrapper.is-loading:before, .ovarb_form .ovarb_dropoff_location_wrapper.is-loading:before {
  position: absolute;
  content: "";
  background: #fff;
  opacity: 0.8;
  z-index: 999;
  width: 100%;
  height: 100%;
}
.ovarb_form .ovarb_vehicle_wrapper.is-loading .ovarb-loader, .ovarb_form .ovarb_duration_wrapper.is-loading .ovarb-loader, .ovarb_form .ovarb_dropoff_location_wrapper.is-loading .ovarb-loader {
  display: inline-block;
}
.ovarb_form .ovarb_vehicle_wrapper .ovarb-loader, .ovarb_form .ovarb_duration_wrapper .ovarb-loader, .ovarb_form .ovarb_dropoff_location_wrapper .ovarb-loader {
  display: none;
  z-index: 9999;
  position: absolute;
  left: 50%;
  top: 20px;
}
.ovarb_form .ovarb_input_file_box {
  position: relative;
}
.ovarb_form .ovarb_input_file_box .ovarb_input_file {
  display: none;
}
.ovarb_form .ovarb_input_file_box label {
  position: absolute;
  width: 100%;
  cursor: pointer;
}
.ovarb_form .ovarb_input_file_box .ovarb_file_box {
  display: inline-block;
  width: 100%;
  padding: 0px 10px;
}
.ovarb_form .ovarb_input_file_box .ovarb_file_button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  position: absolute;
  height: 40px;
  top: 0px;
  padding: 5px 10px;
  right: 0px;
  border-top-right-radius: var(--ovarb-input-border-radius);
  border-bottom-right-radius: var(--ovarb-input-border-radius);
  color: var(--ovarb-button-color);
  background-color: var(--ovarb-button-background);
}
.ovarb_form .ovarb_recaptcha_wrapper {
  margin-top: 20px;
}
.ovarb_form .ovarb_recaptcha_wrapper .ovarb_message {
  top: -50%;
  left: 0px;
  transform: translateY(0px);
}
.ovarb_form .ovarb_recaptcha_v3_wrapper .ovarb_message {
  top: -10px;
  left: 0px;
  transform: translateY(0px);
}
.ovarb_form .ovarb_checkbox_group {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.ovarb_form .ovarb_checkbox_group .ovarb_checkbox_label {
  margin-bottom: 0px;
  display: flex;
  align-items: center;
}
.ovarb_form .ovarb_checkbox_group .ovarb_quantity_number_wrap {
  display: none;
}
.ovarb_form .ovarb_checkbox_group .ovarb_quantity_number_wrap.is-active {
  display: block;
}
.ovarb_form .ovarb_radio_group {
  display: flex;
  gap: 30px;
  margin-bottom: 12px;
}
.ovarb_form .ovarb_radio_group .ovarb_radio_label {
  margin-bottom: 0px;
  display: flex;
  align-items: center;
}
.ovarb_form .ovarb_radio_group .ovarb_radio_label .ovarb_unchecked {
  display: none;
  cursor: pointer;
  position: absolute;
  top: 0px;
  right: -20px;
  z-index: 1;
  color: #f44336;
}
.ovarb_form .ovarb_radio_group .ovarb_radio_label .ovarb_unchecked.is-active {
  display: inline-flex;
}
.ovarb_form .ovarb_radio_group .ovarb_quantity_number_wrap {
  display: none;
}
.ovarb_form .ovarb_radio_group .ovarb_quantity_number_wrap.is-active {
  display: block;
}
.ovarb_form .ovarb_select_group {
  display: flex;
  gap: 10px;
}
.ovarb_form .ovarb_select_group .ovarb_select_quantity .ovarb_quantity_number_wrap {
  display: none;
}
.ovarb_form .ovarb_select_group .ovarb_select_quantity .ovarb_quantity_number_wrap.is-active {
  display: block;
}
.ovarb_form .ovarb_form_row {
  display: flex;
}
.ovarb_form .ovarb_form_row .ovarb_col_2 {
  width: 50%;
}
.ovarb_form .ovarb_form_field {
  position: relative;
  margin-top: 5px;
}
.ovarb_form .ovarb_deposit_flex {
  display: flex;
  gap: 10px;
}
.ovarb_form .ovarb_ptp_field, .ovarb_form .ovarb_daily_field, .ovarb_form .ovarb_hourly_field {
  display: none;
}
.ovarb_form .ovarb_ptp_field.is-active, .ovarb_form .ovarb_daily_field.is-active, .ovarb_form .ovarb_hourly_field.is-active {
  display: block;
}
.ovarb_form .ovarb_message {
  display: none;
  position: absolute;
  background: var(--ovarb-message-background-color);
  color: var(--ovarb-message-color);
  padding: 5px 10px;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: var(--ovarb-message-border-radius);
  z-index: 1;
  font-size: var(--ovarb-message-font-size);
  font-style: italic;
}
.ovarb_form .ovarb_message.is-active {
  display: inline-block;
}
.ovarb_form .ovarb_message:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 15px solid var(--ovarb-message-background-color);
  z-index: 1;
}
.ovarb_form .select2-container--default {
  font-size: 16px;
}
.ovarb_form .select2-container--default .select2-selection--single {
  height: var(--ovarb-input-line-height);
  border: 1px solid var(--ovarb-input-border-color);
  border-radius: var(--ovarb-input-border-radius);
  background: var(--ovarb-input-background-color);
}
.ovarb_form .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: var(--ovarb-input-line-height);
  color: var(--ovarb-input-color);
  font-size: var(--ovarb-input-font-size);
}
.ovarb_form .select2-container--default .select2-selection--single .select2-selection__arrow {
  color: var(--ovarb-input-color);
  height: var(--ovarb-input-line-height);
}
.ovarb_form .ovarb_input {
  width: 100%;
  background: #fff;
  height: var(--ovarb-input-line-height);
  box-shadow: none;
  color: var(--ovarb-input-color);
  line-height: var(--ovarb-input-line-height);
  font-weight: var(--ovarb-input-font-weight);
  font-size: var(--ovarb-input-font-size);
  background: var(--ovarb-input-background-color);
}
.ovarb_form .ovarb_input::placeholder {
  color: var(--ovarb-input-placeholder-color);
}
.ovarb_form .ovarb_textarea {
  padding: 10px;
  background: #fff;
  color: var(--ovarb-input-color);
  font-weight: var(--ovarb-input-font-weight);
  font-size: var(--ovarb-input-font-size);
  background: var(--ovarb-input-background-color);
  box-shadow: none;
}
.ovarb_form .ovarb_textarea::placeholder {
  color: var(--ovarb-input-placeholder-color);
}
.ovarb_form .ovarb_icon_datetime {
  position: relative;
}
.ovarb_form .ovarb_icon_datetime:after {
  position: absolute;
  content: "\f133";
  font-family: "Font Awesome 5 Free";
  top: 50%;
  right: 10px;
  font-size: 20px;
  transform: translateY(-50%);
  color: var(--ovarb-input-color);
}
.ovarb_form .ovarb_form_link {
  color: var(--ovarb-primary-color);
}
.ovarb_form .ovarb_form_link:hober {
  color: var(--ovarb-primary-color-hover);
}
.ovarb_form .ovarb_search_pickup_location_wrap, .ovarb_form .ovarb_search_dropoff_location_wrap {
  display: none;
}
.ovarb_form .ovarb_search_pickup_location_wrap.is-active, .ovarb_form .ovarb_search_dropoff_location_wrap.is-active {
  display: block;
}
.ovarb_form .ovarb_vehicle_label_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ovarb_form .ovarb_add_extra_point_wrap {
  display: flex;
  margin-top: 10px !important;
  justify-content: flex-end;
}
.ovarb_form .ovarb_add_extra_point_wrap .ovarb_add_extra_point, .ovarb_form .ovarb_add_extra_point_wrap .ovarb_view_vehicle {
  font-size: 14px;
}
.ovarb_form .ovarb_waypoint_label_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ovarb_form .ovarb_waypoint_wrap {
  display: none;
}
.ovarb_form .ovarb_waypoint_wrap .ovarb_add_waypoint {
  font-size: 14px;
  top: 10px;
  right: 0;
  background: var(--ovarb-button-background);
  color: var(--ovarb-button-color);
  cursor: pointer;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 5px;
  z-index: 9;
}
.ovarb_form .auto-results-wrapper {
  border-color: var(--ovarb-input-border-color);
  border-bottom-left-radius: var(--ovarb-input-border-radius);
  border-bottom-right-radius: var(--ovarb-input-border-radius);
  border-width: var(--ovarb-input-border-width);
}
.ovarb_form .auto-results-wrapper.auto-is-active {
  z-index: 9999;
}
.ovarb_form .ovarb_map_wrapper {
  margin-top: 30px;
  display: none;
}
.ovarb_form .ovarb_map_wrapper.is-active {
  display: block;
}
.ovarb_form .ovarb_map_wrapper .ovarb_map_info {
  display: flex;
  border-bottom: 1px solid var(--ovarb-border-color);
}
.ovarb_form .ovarb_map_wrapper .ovarb_map_info .ovarb_map_col {
  width: 50%;
  padding-left: 30px;
  padding-top: 10px;
  padding-bottom: 5px;
}
.ovarb_form .ovarb_map_wrapper .ovarb_map_info .left {
  border-right: 1px solid var(--ovarb-border-color);
}
.ovarb_form .ovarb_map_wrapper .ovarb_map_info .ovarb_map_label {
  color: var(--ovarb-label-color);
  font-weight: 600;
  margin: 0px;
  font-size: 18px;
}
.ovarb_form .ovarb_map_wrapper .ovarb_map_info .ovarb_map_value {
  margin: 0px;
  color: var(--ovarb-primary-color);
  font-weight: 700;
  font-size: 27px;
}
.ovarb_form .ovarb_waypoint_list {
  margin-left: 0px;
  margin-top: 10px;
  list-style: none;
}
.ovarb_form .ovarb_waypoint_list .ovarb_waypoint_item {
  position: relative;
  padding: 10px 0px 10px 25px;
  margin-bottom: 5px;
  border-bottom: 1px dashed var(--ovarb-border-color);
}
.ovarb_form .ovarb_waypoint_list .ovarb_waypoint_item:before {
  position: absolute;
  content: "\f192";
  font-family: "Font Awesome 5 Free";
  top: 50%;
  left: 0;
  color: var(--ovarb-primary-color);
  transform: translateY(-50%);
}
.ovarb_form .ovarb_waypoint_list .ovarb_waypoint_item .ovarb_remove_waypoint {
  position: absolute;
  top: 0;
  right: 0;
  background: #ff6e6e;
  color: #fff;
  font-size: 14px;
  display: inline-flex;
  width: 20px;
  height: 20px;
  justify-content: center;
  align-items: center;
}
.ovarb_form .ovarb_waypoint_list .ovarb_waypoint_item .ovarb_waypoint_name {
  margin: 0px;
}
.ovarb_form .ovarb_payment_type_wrap {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--ovarb-border-radius);
  overflow: hidden;
}
.ovarb_form .ovarb_payment_type_wrap a {
  display: block;
  font-size: 16px;
  color: var(--ovarb-heading-color);
  background: var(--ovarb-heading-background-color);
  padding: 15px;
  position: relative;
}
.ovarb_form .ovarb_payment_type_wrap a:focus {
  outline: 0;
}
.ovarb_form .ovarb_payment_type_wrap a.is-active {
  background: var(--ovarb-heading-active-background-color);
  color: var(--ovarb-heading-active-color);
}
.ovarb_form .ovarb_total_wrap, .ovarb_form .ovab_deposit_col {
  margin-top: 10px;
}
.ovarb_form .ovarb_total_wrap .ovarb_total_label, .ovarb_form .ovab_deposit_col .ovarb_total_label {
  color: var(--ovarb-label-color);
}
.ovarb_form .ovarb_total_wrap .ovarb_total_value, .ovarb_form .ovab_deposit_col .ovarb_total_value {
  font-size: 20px;
  color: var(--ovarb-primary-color);
  font-weight: 700;
}
.ovarb_form .ovarb_total_wrap .ovarb_total_value .ovarb_fee_items, .ovarb_form .ovab_deposit_col .ovarb_total_value .ovarb_fee_items {
  font-size: 16px;
  font-weight: 600;
}
.ovarb_form .ovarb_deposit_wrap .ovab_deposit_col {
  display: none;
}
.ovarb_form .ovarb_deposit_wrap .ovab_deposit_col.is-active {
  display: block;
}
.ovarb_form .ovarb_terms {
  position: relative;
  margin-top: 15px;
}
.ovarb_form .ovarb_terms .ovarb_term_label {
  margin-bottom: 0px;
}
.ovarb_form .ovarb_round_trip_label {
  margin-bottom: 0px;
}
.ovarb_form .ovarb_btn_submit {
  margin-top: 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--ovarb-button-background);
  color: var(--ovarb-button-color);
  font-size: var(--ovarb-button-font-size);
  font-weight: var(--ovarb-button-font-weight);
  border-radius: var(--ovarb-button-border-radius);
  border-width: var(--ovarb-button-border-width);
  border-color: var(--ovarb-button-border-color);
  transition: all 0.3s linear;
}
.ovarb_form .ovarb_btn_submit:hover {
  color: var(--ovarb-button-color-hover);
  background: var(--ovarb-button-background-hover);
}
.ovarb_form .ovarb_quantity_number_wrap {
  position: relative;
}
.ovarb_form .ovarb_quantity_number_wrap input {
  padding-right: 45px;
}
.ovarb_form .ovarb_quantity_number_wrap .ovarb_button_gr {
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
}
.ovarb_form .ovarb_quantity_number_wrap .ovarb_button_gr .ovarb_btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background: #D9D9D9;
  color: var(--ovarb-primary-color);
  border-radius: 3px;
  cursor: pointer;
}
.ovarb_form .ovarb_quantity_number_wrap .ovarb_button_gr .ovarb_btn i {
  font-size: 14px;
}
.ovarb_form .ovarb_not_available_wrap {
  display: none;
}
.ovarb_form .ovarb_not_available_wrap.is-active {
  display: block;
}
.ovarb_form .ovarb_not_available_wrap p {
  color: #fd6a5f;
  font-size: 17px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 10px;
  font-style: italic;
}

.ovarb_location_surcharge_wrapper .ovarb_pickup_location_surcharge, .ovarb_location_surcharge_wrapper .ovarb_dropoff_location_surcharge {
  margin-top: 10px;
  display: none;
}
.ovarb_location_surcharge_wrapper .ovarb_pickup_location_surcharge.is-active, .ovarb_location_surcharge_wrapper .ovarb_dropoff_location_surcharge.is-active {
  display: block;
}
.ovarb_location_surcharge_wrapper .ovarb_pickup_location_surcharge .ovarb_label, .ovarb_location_surcharge_wrapper .ovarb_dropoff_location_surcharge .ovarb_label {
  color: var(--ovarb-label-color);
}
.ovarb_location_surcharge_wrapper .ovarb_pickup_location_surcharge .ovarb_price, .ovarb_location_surcharge_wrapper .ovarb_dropoff_location_surcharge .ovarb_price {
  font-size: 20px;
  color: var(--ovarb-primary-color);
  font-weight: 700;
}

.ovarb_surcharge_clause {
  display: none;
  margin-top: 10px;
}
.ovarb_surcharge_clause.is-active {
  display: block;
}
.ovarb_surcharge_clause .ovarb_surcharge_title {
  color: var(--ovarb-label-color);
  font-weight: var(--ovarb-label-font-weight);
  font-size: var(--ovarb-label-font-size);
  line-height: var(--ovarb-label-line-weight);
  margin: 0px;
  line-height: 1.5rem;
}
.ovarb_surcharge_clause .ovarb_surcharge_description {
  margin: 0;
}
.ovarb_surcharge_clause .ovarb_surcharge_table {
  width: 50%;
  margin-top: 15px;
  margin-bottom: 0px;
}
.ovarb_surcharge_clause .ovarb_surcharge_table tr, .ovarb_surcharge_clause .ovarb_surcharge_table td, .ovarb_surcharge_clause .ovarb_surcharge_table th {
  background: transparent !important;
}
.ovarb_surcharge_clause .ovarb_surcharge_table th, .ovarb_surcharge_clause .ovarb_surcharge_table td {
  padding: 5px;
  white-space: nowrap;
}
.ovarb_surcharge_clause .ovarb_surcharge_table th {
  padding-left: 0px;
}

.select2-container--default .select2-results__option--highlighted {
  background: var(--ovarb-primary-color) !important;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--highlighted {
  background: var(--ovarb-primary-color) !important;
}

body.rtl .ovarb_form {
  text-align: right;
}
body.rtl .ovarb_form .ovarb_form_label.ovarb_required:before {
  left: -10px;
  right: unset;
}
body.rtl .ovarb_form .ovarb_form_label i {
  left: -30px;
  right: unset;
}
body.rtl .ovarb_form .ovarb_form_group {
  text-align: right;
}
body.rtl .ovarb_form .ovarb_icon_datetime:after {
  left: 10px;
  right: unset;
}
body.rtl .ovarb_form .ovarb_map_wrapper .ovarb_map_info .ovarb_map_col {
  padding-left: 0px;
  padding-right: 30px;
}
body.rtl .ovarb_form .ovarb_map_wrapper .ovarb_map_info .left {
  border-right: 0px;
  border-left: 1px solid var(--ovarb-border-color);
}
body.rtl .ovarb_form .ovarb_payment_type_wrap a {
  text-align: right;
}
body.rtl .ovarb_form .ovarb_deposit_wrap {
  text-align: right;
}
body.rtl .ovarb_form .ovarb_terms {
  text-align: right;
}
body.rtl .ovarb_form .ovarb_quantity_number_wrap input {
  padding-left: 45px;
  padding-right: 10px;
}
body.rtl .ovarb_form .ovarb_quantity_number_wrap .ovarb_button_gr {
  left: 2px;
  right: unset;
}
body.rtl .ovarb_form .ovarb_input_file_box .ovarb_file_button {
  right: unset;
  left: 0px;
  font-size: var(--ovarb-input-font-size);
  border-top-left-radius: var(--ovarb-border-radius);
  border-bottom-left-radius: var(--ovarb-border-radius);
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
body.rtl .ovarb_surcharge_clause .ovarb_surcharge_table th, body.rtl .ovarb_surcharge_clause .ovarb_surcharge_table td {
  text-align: right;
}

.ZebraDialog_Body {
  margin-top: 30px;
}
.ZebraDialog_Body > div {
  padding-top: 0px !important;
}

.ZebraDialog {
  border-radius: 3px;
}

.ovarb_booking_form_modal * {
  box-sizing: border-box !important;
}
.ovarb_booking_form_modal .ZebraDialog_Body {
  padding: 0px;
}

body.rtl .ZebraDialog_Close {
  left: 10px;
  right: unset;
}

.ovarb_accordion {
  margin: 0px;
  list-style: none;
}
.ovarb_accordion .ovarb_card .ovarb_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--ovarb-accordion-background-color);
  color: var(--ovarb-accordion-color);
  padding: 18px;
  cursor: pointer;
  border-bottom: 1px solid #ccc;
}
.ovarb_accordion .ovarb_card .ovarb_header .ovarb_vehicle_name {
  font-size: var(--ovarb-accordion-font-size);
  font-weight: 500;
}
.ovarb_accordion .ovarb_card .ovarb_header .icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ovarb-accordion-color);
}
.ovarb_accordion .ovarb_card .ovarb_content {
  display: none;
}
.ovarb_accordion .ovarb_card .content_inner {
  display: flex;
  padding: 30px 20px;
  gap: 15px;
}
.ovarb_accordion .ovarb_card .content_inner .image {
  width: 35%;
}
.ovarb_accordion .ovarb_card .content_inner .image img {
  display: block;
  width: 250px;
  height: 150px;
  object-fit: cover;
  border-radius: 4px;
  overflow: hidden;
}
@media screen and (max-width: 912px) {
  .ovarb_accordion .ovarb_card .content_inner .image img {
    width: 100%;
  }
}
.ovarb_accordion .ovarb_card .content_inner .info {
  width: 65%;
}
.ovarb_accordion .ovarb_card .content_inner .info .info_list {
  margin: 0px;
}
.ovarb_accordion .ovarb_card .content_inner .info .info_list li {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  margin-right: 28px;
}
.ovarb_accordion .ovarb_card .content_inner .info .info_list li .info_value {
  color: #666;
}
.ovarb_accordion .ovarb_card .content_inner .info .info_list li .label_heading {
  color: var(--ovarb-heading-color);
}
.ovarb_accordion .ovarb_card .content_inner .info .description {
  margin-top: 20px;
  font-size: 16px;
  color: #666;
}

.ovarb_extra_cart dd {
  margin-left: 10px;
  margin-bottom: 0px;
}

.ovarb_tooltip {
  font-size: 14px;
}

.leaflet-routing-container {
  display: none;
}

.auto-results-wrapper {
  z-index: 9999;
  border: 0;
  border-left: 1px solid var(--ovarb-input-border-color);
  border-bottom: 1px solid var(--ovarb-input-border-color);
  border-right: 1px solid var(--ovarb-input-border-color);
  border-bottom-right-radius: var(--ovarb-input-border-radius);
  border-bottom-left-radius: var(--ovarb-input-border-radius);
}