Modern Events Calendar Lite - Version 6.1.6

Version Description

17 November 2021 = - Added: Amount Per Date option for fees (pro) - Improved: The speed of MEC page in some sections - Improved: MEC security - Fixed: Some issues in fee calculation (pro) - Fixed: Some issues in google map assets inclusion (pro) - Fixed: An issue regarding block editor compatibility - Fixed: The %%ticket_time%% placeholder (pro) - Fixed: Displaying event status in email notifications (pro) - Fixed: Sending verification email when event is added from backend with verified status (pro) - Fixed: Saving new organizer added from Frontend Event Submission - Fixed: The issue of opening unwanted links in modal in list skin when modal popup is enabled - Fixed: The end date of custom days events - Fixed: Some PHP notices

Download this release

Release Info

Developer webnus
Plugin Icon 128x128 Modern Events Calendar Lite
Version 6.1.6
Comparing to
See all releases

Code changes from version 6.1.5 to 6.1.6

app/core/src/Events/Event.php CHANGED
@@ -144,7 +144,7 @@ class Event extends PostBase {
144
 
145
  $rendered = $render->data($event_id);
146
 
147
- $dates = $render->dates($event_id, NULL, 1, date('Y-m-d', strtotime('Yesterday')));
148
 
149
  if(empty($dates)){
150
 
144
 
145
  $rendered = $render->data($event_id);
146
 
147
+ $dates = $render->dates($event_id, NULL, 6, date('Y-m-d', strtotime('Yesterday')));
148
 
149
  if(empty($dates)){
150
 
app/core/src/SingleBuilder/Widgets/EventCancellationReason/EventCancellationReason.php CHANGED
@@ -48,7 +48,7 @@ class EventCancellationReason extends WidgetBase {
48
  }
49
 
50
  $display_reason = get_post_meta( $event_id , 'mec_display_cancellation_reason_in_single_page', true);
51
- if ( !$display_reason ) {
52
 
53
  $html = '<div class="mec-content-notification"><p>'
54
  .'<span>'. __('This widget is displayed if cancellation reason is set. In order for the widget in this page to be displayed correctly, please set cancellation reason for your last event.', 'modern-events-calendar-lite').'</span>'
48
  }
49
 
50
  $display_reason = get_post_meta( $event_id , 'mec_display_cancellation_reason_in_single_page', true);
51
+ if ( !$display_reason && $this->is_editor_mode() ) {
52
 
53
  $html = '<div class="mec-content-notification"><p>'
54
  .'<span>'. __('This widget is displayed if cancellation reason is set. In order for the widget in this page to be displayed correctly, please set cancellation reason for your last event.', 'modern-events-calendar-lite').'</span>'
app/core/src/SingleBuilder/Widgets/EventDate/EventDate.php CHANGED
@@ -29,10 +29,13 @@ class EventDate extends WidgetBase {
29
  $settings = $this->settings;
30
  $event_detail = $this->get_event_detail($event_id);
31
 
32
- $start_timestamp = isset($event_detail->date['start']) ? $event_detail->date['start'] : array();
33
- $end_timestamp = isset($event_detail->date['end']) ? $event_detail->date['end'] : array();
 
 
 
34
  $date_format = isset($settings['single_date_format1']) ? $settings['single_date_format1'] : get_option( 'date_format' );
35
- $date_label = Base::get_main()->date_label( $start_timestamp, $end_timestamp, $date_format );
36
 
37
  $html = '';
38
 
29
  $settings = $this->settings;
30
  $event_detail = $this->get_event_detail($event_id);
31
 
32
+ $occurrence = isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : '';
33
+ $start_datetime = !trim($occurrence) && isset($event_detail->date['start']) ? $event_detail->date['start'] : array( 'date' => $occurrence );
34
+ $occurrence_end_date = trim($occurrence) ? Base::get_main()->get_end_date_by_occurrence($event_detail->data->ID, $start_datetime['date']) : '';
35
+ $end_datetime = isset($event_detail->date['end']) ? $event_detail->date['end'] : array( 'date' => $occurrence_end_date );
36
+
37
  $date_format = isset($settings['single_date_format1']) ? $settings['single_date_format1'] : get_option( 'date_format' );
38
+ $date_label = Base::get_main()->date_label( $start_datetime, $end_datetime, $date_format );
39
 
40
  $html = '';
41
 
app/features/events.php CHANGED
@@ -2473,6 +2473,7 @@ class MEC_feature_events extends MEC_base
2473
  <select name="mec[fees][<?php echo $i; ?>][type]">
2474
  <option value="percent" <?php echo((isset($fee['type']) and $fee['type'] == 'percent') ? 'selected="selected"' : ''); ?>><?php _e('Percent', 'modern-events-calendar-lite'); ?></option>
2475
  <option value="amount" <?php echo((isset($fee['type']) and $fee['type'] == 'amount') ? 'selected="selected"' : ''); ?>><?php _e('Amount (Per Ticket)', 'modern-events-calendar-lite'); ?></option>
 
2476
  <option value="amount_per_booking" <?php echo((isset($fee['type']) and $fee['type'] == 'amount_per_booking') ? 'selected="selected"' : ''); ?>><?php _e('Amount (Per Booking)', 'modern-events-calendar-lite'); ?></option>
2477
  </select>
2478
  </span>
@@ -2509,6 +2510,7 @@ class MEC_feature_events extends MEC_base
2509
  <select name="mec[fees][:i:][type]">
2510
  <option value="percent"><?php _e('Percent', 'modern-events-calendar-lite'); ?></option>
2511
  <option value="amount"><?php _e('Amount (Per Ticket)', 'modern-events-calendar-lite'); ?></option>
 
2512
  <option value="amount_per_booking"><?php _e('Amount (Per Booking)', 'modern-events-calendar-lite'); ?></option>
2513
  </select>
2514
  </span>
2473
  <select name="mec[fees][<?php echo $i; ?>][type]">
2474
  <option value="percent" <?php echo((isset($fee['type']) and $fee['type'] == 'percent') ? 'selected="selected"' : ''); ?>><?php _e('Percent', 'modern-events-calendar-lite'); ?></option>
2475
  <option value="amount" <?php echo((isset($fee['type']) and $fee['type'] == 'amount') ? 'selected="selected"' : ''); ?>><?php _e('Amount (Per Ticket)', 'modern-events-calendar-lite'); ?></option>
2476
+ <option value="amount_per_date" <?php echo ((isset($fee['type']) and $fee['type'] == 'amount_per_date') ? 'selected="selected"' : ''); ?>><?php _e('Amount (Per Date)', 'modern-events-calendar-lite'); ?></option>
2477
  <option value="amount_per_booking" <?php echo((isset($fee['type']) and $fee['type'] == 'amount_per_booking') ? 'selected="selected"' : ''); ?>><?php _e('Amount (Per Booking)', 'modern-events-calendar-lite'); ?></option>
2478
  </select>
2479
  </span>
2510
  <select name="mec[fees][:i:][type]">
2511
  <option value="percent"><?php _e('Percent', 'modern-events-calendar-lite'); ?></option>
2512
  <option value="amount"><?php _e('Amount (Per Ticket)', 'modern-events-calendar-lite'); ?></option>
2513
+ <option value="amount_per_date"><?php _e('Amount (Per Date)', 'modern-events-calendar-lite'); ?></option>
2514
  <option value="amount_per_booking"><?php _e('Amount (Per Booking)', 'modern-events-calendar-lite'); ?></option>
2515
  </select>
2516
  </span>
app/features/fes/form.php CHANGED
@@ -1094,7 +1094,7 @@ $this->factory->params('footer', $javascript);
1094
  <?php if(isset($this->settings['fes_agreement']) and $this->settings['fes_agreement']): ?>
1095
  <label>
1096
  <input type="hidden" name="mec[agreement]" value="0">
1097
- <input type="checkbox" name="mec[agreement]" value="1" <?php echo (isset($this->settings['fes_agreement_checked']) and $this->settings['fes_agreement_checked']) ? 'checked="checked"' : ''; ?>>
1098
 
1099
  <?php if(isset($this->settings['fes_agreement_page']) and $this->settings['fes_agreement_page']): ?>
1100
  <span><?php echo sprintf(esc_html__('I accept the %s in order to submit an event.', 'modern-events-calendar-lite'), '<a href="'.get_permalink($this->settings['fes_agreement_page']).'" target="_blank">'.esc_html__('Privacy Policy', 'modern-events-calendar-lite').'</a>'); ?> <span class="mec-required">*</span></span>
1094
  <?php if(isset($this->settings['fes_agreement']) and $this->settings['fes_agreement']): ?>
1095
  <label>
1096
  <input type="hidden" name="mec[agreement]" value="0">
1097
+ <input type="checkbox" name="mec[agreement]" required value="1" <?php echo (isset($this->settings['fes_agreement_checked']) and $this->settings['fes_agreement_checked']) ? 'checked="checked"' : ''; ?>>
1098
 
1099
  <?php if(isset($this->settings['fes_agreement_page']) and $this->settings['fes_agreement_page']): ?>
1100
  <span><?php echo sprintf(esc_html__('I accept the %s in order to submit an event.', 'modern-events-calendar-lite'), '<a href="'.get_permalink($this->settings['fes_agreement_page']).'" target="_blank">'.esc_html__('Privacy Policy', 'modern-events-calendar-lite').'</a>'); ?> <span class="mec-required">*</span></span>
app/features/mec/booking.php CHANGED
@@ -603,6 +603,7 @@ $gateways_options = $this->main->get_gateways_options();
603
  <select name="mec[settings][fees][<?php echo $i; ?>][type]">
604
  <option value="percent" <?php echo ((isset($fee['type']) and $fee['type'] == 'percent') ? 'selected="selected"' : ''); ?>><?php _e('Percent', 'modern-events-calendar-lite'); ?></option>
605
  <option value="amount" <?php echo ((isset($fee['type']) and $fee['type'] == 'amount') ? 'selected="selected"' : ''); ?>><?php _e('Amount (Per Ticket)', 'modern-events-calendar-lite'); ?></option>
 
606
  <option value="amount_per_booking" <?php echo ((isset($fee['type']) and $fee['type'] == 'amount_per_booking') ? 'selected="selected"' : ''); ?>><?php _e('Amount (Per Booking)', 'modern-events-calendar-lite'); ?></option>
607
  </select>
608
  </span>
@@ -632,6 +633,7 @@ $gateways_options = $this->main->get_gateways_options();
632
  <select name="mec[settings][fees][:i:][type]">
633
  <option value="percent"><?php _e('Percent', 'modern-events-calendar-lite'); ?></option>
634
  <option value="amount"><?php _e('Amount (Per Ticket)', 'modern-events-calendar-lite'); ?></option>
 
635
  <option value="amount_per_booking"><?php _e('Amount (Per Booking)', 'modern-events-calendar-lite'); ?></option>
636
  </select>
637
  </span>
603
  <select name="mec[settings][fees][<?php echo $i; ?>][type]">
604
  <option value="percent" <?php echo ((isset($fee['type']) and $fee['type'] == 'percent') ? 'selected="selected"' : ''); ?>><?php _e('Percent', 'modern-events-calendar-lite'); ?></option>
605
  <option value="amount" <?php echo ((isset($fee['type']) and $fee['type'] == 'amount') ? 'selected="selected"' : ''); ?>><?php _e('Amount (Per Ticket)', 'modern-events-calendar-lite'); ?></option>
606
+ <option value="amount_per_date" <?php echo ((isset($fee['type']) and $fee['type'] == 'amount_per_date') ? 'selected="selected"' : ''); ?>><?php _e('Amount (Per Date)', 'modern-events-calendar-lite'); ?></option>
607
  <option value="amount_per_booking" <?php echo ((isset($fee['type']) and $fee['type'] == 'amount_per_booking') ? 'selected="selected"' : ''); ?>><?php _e('Amount (Per Booking)', 'modern-events-calendar-lite'); ?></option>
608
  </select>
609
  </span>
633
  <select name="mec[settings][fees][:i:][type]">
634
  <option value="percent"><?php _e('Percent', 'modern-events-calendar-lite'); ?></option>
635
  <option value="amount"><?php _e('Amount (Per Ticket)', 'modern-events-calendar-lite'); ?></option>
636
+ <option value="amount_per_date"><?php _e('Amount (Per Date)', 'modern-events-calendar-lite'); ?></option>
637
  <option value="amount_per_booking"><?php _e('Amount (Per Booking)', 'modern-events-calendar-lite'); ?></option>
638
  </select>
639
  </span>
app/features/mec/integrations.php CHANGED
@@ -313,18 +313,6 @@ $pages = get_pages();
313
  </label>
314
  </div>
315
  <div id="mec_bp_container_toggle" class="<?php if((isset($settings['bp_status']) and !$settings['bp_status']) or !isset($settings['bp_status'])) echo 'mec-util-hidden'; ?>">
316
- <div class="mec-form-row">
317
- <label class="mec-col-3" for="mec_settings_bp_datetime_format"><?php esc_html_e('DateTime Format', 'modern-events-calendar-lite'); ?></label>
318
- <div class="mec-col-9">
319
- <input type="text" id="mec_settings_bp_datetime_format" name="mec[settings][bp_datetime_format]" value="<?php echo ((isset($settings['bp_datetime_format']) and trim($settings['bp_datetime_format']) != '') ? $settings['bp_datetime_format'] : 'M d Y'); ?>" />
320
- </div>
321
- </div>
322
- <div class="mec-form-row">
323
- <label>
324
- <input type="hidden" name="mec[settings][bp_hide_group_events]" value="0" />
325
- <input value="1" type="checkbox" name="mec[settings][bp_hide_group_events]" <?php if(isset($settings['bp_hide_group_events']) and $settings['bp_hide_group_events']) echo 'checked="checked"'; ?> /> <?php esc_html_e('Hide group events', 'modern-events-calendar-lite'); ?>
326
- </label>
327
- </div>
328
  <div class="mec-form-row">
329
  <label>
330
  <input type="hidden" name="mec[settings][bp_show_]" value="0" />
@@ -349,32 +337,6 @@ $pages = get_pages();
349
  <input value="1" type="checkbox" name="mec[settings][bp_profile_menu]" <?php if(isset($settings['bp_profile_menu']) and $settings['bp_profile_menu']) echo 'checked="checked"'; ?> /> <?php _e('Add events menu to user profile', 'modern-events-calendar-lite'); ?>
350
  </label>
351
  </div>
352
-
353
- <div class="mec-form-row">
354
- <div class="mec-col-3">
355
- <label for="mec_bp_event_submission_roles"><?php _e('Event submission roles', 'modern-events-calendar-lite'); ?></label>
356
- </div>
357
- <div class="mec-col-9">
358
- <?php
359
- $selected_roles = isset($settings['bp_event_submission_roles']) ? $settings['bp_event_submission_roles'] : array();
360
- global $wp_roles;
361
- $roles = $wp_roles->get_names();
362
- ?>
363
- <select id="mec_bp_event_submission_roles" class="mec-notification-dropdown-select2" name="mec[settings][bp_event_submission_roles][]" multiple="multiple">
364
- <?php foreach($roles as $role_key => $role_name): ?>
365
- <option value="<?php echo esc_attr($role_key); ?>" <?php echo (is_array($selected_roles) and in_array(trim($role_key), $selected_roles)) ? 'selected="selected"' : ''; ?>><?php echo $role_name; ?></option>
366
- <?php endforeach; ?>
367
- </select>
368
-
369
- <span class="mec-tooltip">
370
- <div class="box left">
371
- <h5 class="title"><?php _e('Event submission roles', 'modern-events-calendar-lite'); ?></h5>
372
- <div class="content"><p><?php esc_attr_e('Select roles that have access to submission events', 'modern-events-calendar-lite'); ?></p></div>
373
- </div>
374
- <i title="" class="dashicons-before dashicons-editor-help"></i>
375
- </span>
376
- </div>
377
- </div>
378
  </div>
379
  </div>
380
  <div id="learndash_options" class="mec-options-fields">
313
  </label>
314
  </div>
315
  <div id="mec_bp_container_toggle" class="<?php if((isset($settings['bp_status']) and !$settings['bp_status']) or !isset($settings['bp_status'])) echo 'mec-util-hidden'; ?>">
 
 
 
 
 
 
 
 
 
 
 
 
316
  <div class="mec-form-row">
317
  <label>
318
  <input type="hidden" name="mec[settings][bp_show_]" value="0" />
337
  <input value="1" type="checkbox" name="mec[settings][bp_profile_menu]" <?php if(isset($settings['bp_profile_menu']) and $settings['bp_profile_menu']) echo 'checked="checked"'; ?> /> <?php _e('Add events menu to user profile', 'modern-events-calendar-lite'); ?>
338
  </label>
339
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
340
  </div>
341
  </div>
342
  <div id="learndash_options" class="mec-options-fields">
app/features/organizers.php CHANGED
@@ -268,6 +268,9 @@ class MEC_feature_organizers extends MEC_base
268
  {
269
  $additional_organizers_status = false;
270
  $organizers = array();
 
 
 
271
  }
272
  ?>
273
  <div class="mec-meta-box-fields mec-event-tab-content" id="mec-organizer">
@@ -372,6 +375,9 @@ class MEC_feature_organizers extends MEC_base
372
  // If this is an autosave, our form has not been submitted, so we don't want to do anything.
373
  if(defined('DOING_AUTOSAVE') and DOING_AUTOSAVE) return false;
374
 
 
 
 
375
  // Get Modern Events Calendar Data
376
  $_mec = isset($_POST['mec']) ? $_POST['mec'] : array();
377
 
268
  {
269
  $additional_organizers_status = false;
270
  $organizers = array();
271
+
272
+ // Display Saved Organizer for Current Event in FES
273
+ if($post->ID and $organizer_id and $organizer_id != 1) $organizers[] = get_term($organizer_id);
274
  }
275
  ?>
276
  <div class="mec-meta-box-fields mec-event-tab-content" id="mec-organizer">
375
  // If this is an autosave, our form has not been submitted, so we don't want to do anything.
376
  if(defined('DOING_AUTOSAVE') and DOING_AUTOSAVE) return false;
377
 
378
+ $action = (isset($_POST['action']) ? $_POST['action'] : '');
379
+ if($action === 'mec_fes_form') return false;
380
+
381
  // Get Modern Events Calendar Data
382
  $_mec = isset($_POST['mec']) ? $_POST['mec'] : array();
383
 
app/features/profile.php CHANGED
@@ -36,7 +36,7 @@ class MEC_feature_profile extends MEC_base
36
  {
37
  // Import MEC Factory
38
  $this->factory = $this->getFactory();
39
-
40
  // Import MEC Main
41
  $this->main = $this->getMain();
42
 
@@ -46,7 +46,7 @@ class MEC_feature_profile extends MEC_base
46
  // Booking Post Type
47
  $this->PT = $this->main->get_book_post_type();
48
  }
49
-
50
  /**
51
  * Initialize profile feature
52
  * @author Webnus <info@webnus.biz>
@@ -79,7 +79,7 @@ class MEC_feature_profile extends MEC_base
79
  }
80
 
81
  // Needs Pro
82
- if(!$this->getPRO() or true)
83
  {
84
  // Show message
85
  $message = sprintf(__('To use this feature you should upgrade to %s first.', 'modern-events-calendar-lite'), '<a href="'.$this->main->get_pro_link().'" target="_blank">'.__('MEC Pro', 'modern-events-calendar-lite').'</a>');
36
  {
37
  // Import MEC Factory
38
  $this->factory = $this->getFactory();
39
+
40
  // Import MEC Main
41
  $this->main = $this->getMain();
42
 
46
  // Booking Post Type
47
  $this->PT = $this->main->get_book_post_type();
48
  }
49
+
50
  /**
51
  * Initialize profile feature
52
  * @author Webnus <info@webnus.biz>
79
  }
80
 
81
  // Needs Pro
82
+ if(!$this->getPRO())
83
  {
84
  // Show message
85
  $message = sprintf(__('To use this feature you should upgrade to %s first.', 'modern-events-calendar-lite'), '<a href="'.$this->main->get_pro_link().'" target="_blank">'.__('MEC Pro', 'modern-events-calendar-lite').'</a>');
app/libraries/book.php CHANGED
@@ -47,7 +47,6 @@ class MEC_book extends MEC_base
47
  $dates_count = count($other_dates) + 1;
48
 
49
  $total_tickets_amount = 0;
50
- $total_tickets_count = 0;
51
  $total_variations_amount = 0;
52
  $total_fee_amount = 0;
53
 
@@ -58,6 +57,7 @@ class MEC_book extends MEC_base
58
  for($c = 1; $c <= $dates_count; $c++)
59
  {
60
  $date_tickets_amount = 0;
 
61
  $date_variations_amount = 0;
62
  $date_fee_amount = 0;
63
 
@@ -66,7 +66,7 @@ class MEC_book extends MEC_base
66
  if(!$count) continue;
67
  if(!isset($event_tickets[$ticket_id])) continue;
68
 
69
- $total_tickets_count += $count;
70
 
71
  $t_price = (isset($event_tickets[$ticket_id]) and isset($event_tickets[$ticket_id]['price'])) ? $this->get_ticket_price($event_tickets[$ticket_id], current_time('Y-m-d'), $event_id) : 0;
72
  if(!is_numeric($t_price)) $t_price = 0;
@@ -88,7 +88,9 @@ class MEC_book extends MEC_base
88
  $variation_count = isset($booked_variations[$key]) ? $booked_variations[$key] : 0;
89
  if(!$variation_count or ($variation_count and $variation_count < 0)) continue;
90
 
91
- $variation_amount = $ticket_variation['price']*$variation_count;
 
 
92
  $variation_title = $ticket_variation['title'].' ('.$variation_count.')';
93
 
94
  // Add To Total
@@ -121,9 +123,10 @@ class MEC_book extends MEC_base
121
  $fee_amount = 0;
122
  if(!is_numeric($key)) continue;
123
 
124
- if($fee['type'] == 'percent') $fee_amount += (($total_tickets_amount+$total_variations_amount)*$fee['amount'])/100;
125
- elseif($fee['type'] == 'amount') $fee_amount += ($total_tickets_count*$fee['amount']);
126
- elseif($fee['type'] == 'amount_per_booking') $fee_amount += $fee['amount'];
 
127
 
128
  // Add to Total
129
  $date_fee_amount += $fee_amount;
@@ -137,6 +140,32 @@ class MEC_book extends MEC_base
137
  $total_fee_amount += $date_fee_amount;
138
  }
139
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
140
  // Ticket Details
141
  $details[] = array('amount'=>$total_tickets_amount, 'description'=>sprintf(__('%s Price', 'modern-events-calendar-lite'), $this->main->m('tickets', __('Tickets', 'modern-events-calendar-lite'))), 'type'=>'tickets');
142
 
@@ -928,6 +957,9 @@ class MEC_book extends MEC_base
928
  $price_details = $transaction['price_details']['details'];
929
  $total_tickets_count = count($transaction['tickets']);
930
 
 
 
 
931
  $total_fee_amount = 0;
932
  $taxable = 0;
933
  $total_discount = 0;
@@ -964,8 +996,9 @@ class MEC_book extends MEC_base
964
  {
965
  $fee_amount = 0;
966
 
967
- if($fee_item['fee_type'] == 'percent') $fee_amount += ($taxable*$fee_item['fee_amount'])/100;
968
- elseif($fee_item['fee_type'] == 'amount') $fee_amount += ($total_tickets_count*$fee_item['fee_amount']);
 
969
  elseif($fee_item['fee_type'] == 'amount_per_booking') $fee_amount += $fee_item['fee_amount'];
970
 
971
  $total_fee_amount += $fee_amount;
47
  $dates_count = count($other_dates) + 1;
48
 
49
  $total_tickets_amount = 0;
 
50
  $total_variations_amount = 0;
51
  $total_fee_amount = 0;
52
 
57
  for($c = 1; $c <= $dates_count; $c++)
58
  {
59
  $date_tickets_amount = 0;
60
+ $date_tickets_count = 0;
61
  $date_variations_amount = 0;
62
  $date_fee_amount = 0;
63
 
66
  if(!$count) continue;
67
  if(!isset($event_tickets[$ticket_id])) continue;
68
 
69
+ $date_tickets_count += $count;
70
 
71
  $t_price = (isset($event_tickets[$ticket_id]) and isset($event_tickets[$ticket_id]['price'])) ? $this->get_ticket_price($event_tickets[$ticket_id], current_time('Y-m-d'), $event_id) : 0;
72
  if(!is_numeric($t_price)) $t_price = 0;
88
  $variation_count = isset($booked_variations[$key]) ? $booked_variations[$key] : 0;
89
  if(!$variation_count or ($variation_count and $variation_count < 0)) continue;
90
 
91
+ $v_price = (isset($ticket_variation['price']) and trim($ticket_variation['price']) != '') ? $ticket_variation['price'] : 0;
92
+
93
+ $variation_amount = $v_price*$variation_count;
94
  $variation_title = $ticket_variation['title'].' ('.$variation_count.')';
95
 
96
  // Add To Total
123
  $fee_amount = 0;
124
  if(!is_numeric($key)) continue;
125
 
126
+ if($fee['type'] == 'percent') $fee_amount += (($total_tickets_amount + $total_variations_amount) * $fee['amount'])/100;
127
+ elseif($fee['type'] == 'amount') $fee_amount += ($date_tickets_count * $fee['amount']);
128
+ elseif($fee['type'] == 'amount_per_date') $fee_amount += $fee['amount'];
129
+ else continue;
130
 
131
  // Add to Total
132
  $date_fee_amount += $fee_amount;
140
  $total_fee_amount += $date_fee_amount;
141
  }
142
 
143
+ // Fees module is enabled
144
+ if($apply_fees and isset($this->settings['taxes_fees_status']) and $this->settings['taxes_fees_status'])
145
+ {
146
+ $fees = $this->get_fees($event_id);
147
+ $per_booking_fee_amount = 0;
148
+
149
+ // Fee Per Booking
150
+ foreach($fees as $key=>$fee)
151
+ {
152
+ $fee_amount = 0;
153
+ if(!is_numeric($key)) continue;
154
+
155
+ if($fee['type'] == 'amount_per_booking') $fee_amount += $fee['amount'];
156
+ else continue;
157
+
158
+ // Add to Total
159
+ $per_booking_fee_amount += $fee_amount;
160
+
161
+ // Price Details
162
+ if(!isset($fee_details[$key])) $fee_details[$key] = array('amount'=>$fee_amount, 'description'=>__($fee['title'], 'modern-events-calendar-lite'), 'type'=>'fee', 'fee_type'=>$fee['type'], 'fee_amount'=>$fee['amount']);
163
+ else $fee_details[$key]['amount'] += $fee_amount;
164
+ }
165
+
166
+ $total_fee_amount += $per_booking_fee_amount;
167
+ }
168
+
169
  // Ticket Details
170
  $details[] = array('amount'=>$total_tickets_amount, 'description'=>sprintf(__('%s Price', 'modern-events-calendar-lite'), $this->main->m('tickets', __('Tickets', 'modern-events-calendar-lite'))), 'type'=>'tickets');
171
 
957
  $price_details = $transaction['price_details']['details'];
958
  $total_tickets_count = count($transaction['tickets']);
959
 
960
+ $other_dates = (isset($transaction['other_dates']) and is_array($transaction['other_dates'])) ? $transaction['other_dates'] : array();
961
+ $dates_count = count($other_dates) + 1;
962
+
963
  $total_fee_amount = 0;
964
  $taxable = 0;
965
  $total_discount = 0;
996
  {
997
  $fee_amount = 0;
998
 
999
+ if($fee_item['fee_type'] == 'percent') $fee_amount += ($taxable * $fee_item['fee_amount']) / 100;
1000
+ elseif($fee_item['fee_type'] == 'amount') $fee_amount += ($total_tickets_count * $fee_item['fee_amount']);
1001
+ elseif($fee_item['fee_type'] == 'amount_per_date') $fee_amount += ($dates_count * $fee_item['fee_amount']);
1002
  elseif($fee_item['fee_type'] == 'amount_per_booking') $fee_amount += $fee_item['fee_amount'];
1003
 
1004
  $total_fee_amount += $fee_amount;
app/libraries/factory.php CHANGED
@@ -143,7 +143,7 @@ class MEC_factory extends MEC_base
143
  $this->filter('request', array($this->main, 'filter_request'));
144
 
145
  // Block Editor Category
146
- if(function_exists('register_block_type')) $this->filter('block_categories', array($this->main, 'add_custom_block_cateogry'), 9999);
147
 
148
  // Add Taxonomy etc to filters
149
  $this->filter('mec_vyear_atts', array($this->main, 'add_search_filters'));
@@ -343,7 +343,7 @@ class MEC_factory extends MEC_base
343
  if(class_exists('ET_Builder_Element')) $this->main->load_isotope_assets();
344
 
345
  include_once(ABSPATH.'wp-admin/includes/plugin.php');
346
- if(is_plugin_active('elementor/elementor.php' ) && \Elementor\Plugin::$instance->preview->is_preview_mode()) $this->main->load_isotope_assets();
347
 
348
  wp_enqueue_script('mec-typekit-script', $this->main->asset('js/jquery.typewatch.js'), array(), $this->main->get_version(), true);
349
  wp_enqueue_script('featherlight', $this->main->asset('packages/featherlight/featherlight.js'), array(), $this->main->get_version(), true);
143
  $this->filter('request', array($this->main, 'filter_request'));
144
 
145
  // Block Editor Category
146
+ if(function_exists('register_block_type')) $this->filter('block_categories_all', array($this->main, 'add_custom_block_cateogry'), 9999);
147
 
148
  // Add Taxonomy etc to filters
149
  $this->filter('mec_vyear_atts', array($this->main, 'add_search_filters'));
343
  if(class_exists('ET_Builder_Element')) $this->main->load_isotope_assets();
344
 
345
  include_once(ABSPATH.'wp-admin/includes/plugin.php');
346
+ if(is_plugin_active('elementor/elementor.php') && class_exists('\Elementor\Plugin') && \Elementor\Plugin::$instance->preview->is_preview_mode()) $this->main->load_isotope_assets();
347
 
348
  wp_enqueue_script('mec-typekit-script', $this->main->asset('js/jquery.typewatch.js'), array(), $this->main->get_version(), true);
349
  wp_enqueue_script('featherlight', $this->main->asset('packages/featherlight/featherlight.js'), array(), $this->main->get_version(), true);
app/libraries/main.php CHANGED
@@ -377,7 +377,7 @@ class MEC_main extends MEC_base
377
  'slider'=>__('Slider View', 'modern-events-calendar-lite'),
378
  'timeline'=>__('Timeline View', 'modern-events-calendar-lite'),
379
  'tile'=>__('Tile View', 'modern-events-calendar-lite'),
380
- //'general_calendar'=>__('General Calendar', 'modern-events-calendar-lite'),
381
  );
382
 
383
  return apply_filters('mec_calendar_skins', $skins);
@@ -2290,7 +2290,7 @@ class MEC_main extends MEC_base
2290
  array('skin'=>'grid', 'name'=>__('Grid View', 'modern-events-calendar-lite')),
2291
  array('skin'=>'agenda', 'name'=>__('Agenda View', 'modern-events-calendar-lite')),
2292
  array('skin'=>'map', 'name'=>__('Map View', 'modern-events-calendar-lite')),
2293
- //array('skin'=>'general_calendar', 'name'=>__('General Calendar', 'modern-events-calendar-lite')),
2294
  array('skin'=>'custom', 'name'=>__('Custom Shortcode', 'modern-events-calendar-lite')),
2295
  );
2296
 
@@ -2316,7 +2316,7 @@ class MEC_main extends MEC_base
2316
  array('skin'=>'grid', 'name'=>__('Grid View', 'modern-events-calendar-lite')),
2317
  array('skin'=>'agenda', 'name'=>__('Agenda View', 'modern-events-calendar-lite')),
2318
  array('skin'=>'map', 'name'=>__('Map View', 'modern-events-calendar-lite')),
2319
- //array('skin'=>'general_calendar', 'name'=>__('General Calendar', 'modern-events-calendar-lite')),
2320
  array('skin'=>'custom', 'name'=>__('Custom Shortcode', 'modern-events-calendar-lite')),
2321
  );
2322
 
@@ -4149,7 +4149,7 @@ class MEC_main extends MEC_base
4149
  $currency_settings = get_post_meta( $event_id,'mec_currency',true );
4150
 
4151
  $thousand_separator = isset($currency_settings['thousand_separator']) ? $currency_settings['thousand_separator'] : '';
4152
- $decimal_separator = isset($currency_settings['decimal_separator']) ? $currency_settings['decimal_separator'] : '';
4153
  if( isset($currency_settings['currency_symptom']) && !empty( $currency_settings['currency_symptom'] ) ){
4154
 
4155
  $currency = $currency_settings['currency_symptom'];
@@ -6989,10 +6989,12 @@ class MEC_main extends MEC_base
6989
  return (defined('DOING_AJAX') && DOING_AJAX);
6990
  }
6991
 
6992
- public function load_sed_assets()
6993
  {
 
 
6994
  // Load Map assets
6995
- $this->load_map_assets();
6996
 
6997
  // Include FlipCount library
6998
  wp_enqueue_script('mec-flipcount-script', $this->asset('js/flipcount.js'));
377
  'slider'=>__('Slider View', 'modern-events-calendar-lite'),
378
  'timeline'=>__('Timeline View', 'modern-events-calendar-lite'),
379
  'tile'=>__('Tile View', 'modern-events-calendar-lite'),
380
+ // 'general_calendar'=>__('General Calendar', 'modern-events-calendar-lite'),
381
  );
382
 
383
  return apply_filters('mec_calendar_skins', $skins);
2290
  array('skin'=>'grid', 'name'=>__('Grid View', 'modern-events-calendar-lite')),
2291
  array('skin'=>'agenda', 'name'=>__('Agenda View', 'modern-events-calendar-lite')),
2292
  array('skin'=>'map', 'name'=>__('Map View', 'modern-events-calendar-lite')),
2293
+ // array('skin'=>'general_calendar', 'name'=>__('General Calendar', 'modern-events-calendar-lite')),
2294
  array('skin'=>'custom', 'name'=>__('Custom Shortcode', 'modern-events-calendar-lite')),
2295
  );
2296
 
2316
  array('skin'=>'grid', 'name'=>__('Grid View', 'modern-events-calendar-lite')),
2317
  array('skin'=>'agenda', 'name'=>__('Agenda View', 'modern-events-calendar-lite')),
2318
  array('skin'=>'map', 'name'=>__('Map View', 'modern-events-calendar-lite')),
2319
+ // array('skin'=>'general_calendar', 'name'=>__('General Calendar', 'modern-events-calendar-lite')),
2320
  array('skin'=>'custom', 'name'=>__('Custom Shortcode', 'modern-events-calendar-lite')),
2321
  );
2322
 
4149
  $currency_settings = get_post_meta( $event_id,'mec_currency',true );
4150
 
4151
  $thousand_separator = isset($currency_settings['thousand_separator']) ? $currency_settings['thousand_separator'] : '';
4152
+ $decimal_separator = isset($currency_settings['decimal_separator']) ? $currency_settings['decimal_separator'] : false;
4153
  if( isset($currency_settings['currency_symptom']) && !empty( $currency_settings['currency_symptom'] ) ){
4154
 
4155
  $currency = $currency_settings['currency_symptom'];
6989
  return (defined('DOING_AJAX') && DOING_AJAX);
6990
  }
6991
 
6992
+ public function load_sed_assets($settings = array())
6993
  {
6994
+ if(!is_array($settings) or (is_array($settings) and !count($settings))) $settings = $this->get_settings();
6995
+
6996
  // Load Map assets
6997
+ if(isset($settings['google_maps_status']) and $settings['google_maps_status']) $this->load_map_assets();
6998
 
6999
  // Include FlipCount library
7000
  wp_enqueue_script('mec-flipcount-script', $this->asset('js/flipcount.js'));
app/libraries/notifications.php CHANGED
@@ -56,6 +56,9 @@ class MEC_notifications extends MEC_base
56
  $booker = $this->u->booking($book_id);
57
  if(!isset($booker->user_email)) return false;
58
 
 
 
 
59
  $price = get_post_meta($book_id, 'mec_price', true);
60
 
61
  // Event ID
@@ -300,6 +303,13 @@ class MEC_notifications extends MEC_base
300
  // Don't send the confirmation email
301
  if($mode == 'auto' and !$send_in_automode) return false;
302
 
 
 
 
 
 
 
 
303
  // Event ID
304
  $event_id = get_post_meta($book_id, 'mec_event_id', true);
305
 
@@ -1013,9 +1023,11 @@ class MEC_notifications extends MEC_base
1013
  $message = str_replace('%%event_start_date%%', $this->main->date_i18n($date_format, strtotime(get_post_meta($event_id, 'mec_start_date', true))), $message);
1014
  $message = str_replace('%%event_end_date%%', $this->main->date_i18n($date_format, strtotime(get_post_meta($event_id, 'mec_end_date', true))), $message);
1015
  $message = str_replace('%%event_timezone%%', $this->main->get_timezone($event_id), $message);
1016
- $message = str_replace('%%event_status%%', $status, $message);
1017
  $message = str_replace('%%event_note%%', get_post_meta($event_id, 'mec_note', true), $message);
1018
 
 
 
 
1019
  // Data Fields
1020
  $event_fields = $this->main->get_event_fields();
1021
  $event_fields_data = get_post_meta($event_id, 'mec_fields', true);
@@ -1179,9 +1191,11 @@ class MEC_notifications extends MEC_base
1179
  $message = str_replace('%%event_start_date%%', $this->main->date_i18n($date_format, $mec_start_date), $message);
1180
  $message = str_replace('%%event_end_date%%', $this->main->date_i18n($date_format, $mec_end_date), $message);
1181
  $message = str_replace('%%event_timezone%%', $this->main->get_timezone($post->ID), $message);
1182
- $message = str_replace('%%event_status%%', $status, $message);
1183
  $message = str_replace('%%event_note%%', get_post_meta($post->ID, 'mec_note', true), $message);
1184
 
 
 
 
1185
  // Data Fields
1186
  $event_fields = $this->main->get_event_fields();
1187
 
@@ -1893,8 +1907,10 @@ class MEC_notifications extends MEC_base
1893
  // Private Description
1894
  $private_description_status = (!isset($this->settings['booking_private_description']) or (isset($this->settings['booking_private_description']) and $this->settings['booking_private_description'])) ? true : false;
1895
 
1896
- $message = str_replace('%%ticket_name%%', implode(',', $ticket_names), $message);
1897
  $message = str_replace('%%ticket_time%%', implode(',', $ticket_times), $message);
 
 
1898
  $message = str_replace('%%ticket_private_description%%', ($private_description_status ? implode(',', $ticket_private_descriptions) : ''), $message);
1899
 
1900
  $ticket_name_time = '';
56
  $booker = $this->u->booking($book_id);
57
  if(!isset($booker->user_email)) return false;
58
 
59
+ $verification_status = get_post_meta($book_id, 'mec_verified', true);
60
+ if($verification_status == 1) return false; // Already Verified
61
+
62
  $price = get_post_meta($book_id, 'mec_price', true);
63
 
64
  // Event ID
303
  // Don't send the confirmation email
304
  if($mode == 'auto' and !$send_in_automode) return false;
305
 
306
+ $timestamp = time();
307
+
308
+ $last_confirmation_email = get_post_meta($book_id, 'mec_last_confirmation_email', true);
309
+ if($last_confirmation_email and is_numeric($last_confirmation_email) and ($timestamp - $last_confirmation_email) < 10) return false;
310
+
311
+ update_post_meta($book_id, 'mec_last_confirmation_email', $timestamp);
312
+
313
  // Event ID
314
  $event_id = get_post_meta($book_id, 'mec_event_id', true);
315
 
1023
  $message = str_replace('%%event_start_date%%', $this->main->date_i18n($date_format, strtotime(get_post_meta($event_id, 'mec_start_date', true))), $message);
1024
  $message = str_replace('%%event_end_date%%', $this->main->date_i18n($date_format, strtotime(get_post_meta($event_id, 'mec_end_date', true))), $message);
1025
  $message = str_replace('%%event_timezone%%', $this->main->get_timezone($event_id), $message);
 
1026
  $message = str_replace('%%event_note%%', get_post_meta($event_id, 'mec_note', true), $message);
1027
 
1028
+ $status_obj = get_post_status_object($status);
1029
+ $message = str_replace('%%event_status%%', (($status_obj and isset($status_obj->label)) ? $status_obj->label : $status), $message);
1030
+
1031
  // Data Fields
1032
  $event_fields = $this->main->get_event_fields();
1033
  $event_fields_data = get_post_meta($event_id, 'mec_fields', true);
1191
  $message = str_replace('%%event_start_date%%', $this->main->date_i18n($date_format, $mec_start_date), $message);
1192
  $message = str_replace('%%event_end_date%%', $this->main->date_i18n($date_format, $mec_end_date), $message);
1193
  $message = str_replace('%%event_timezone%%', $this->main->get_timezone($post->ID), $message);
 
1194
  $message = str_replace('%%event_note%%', get_post_meta($post->ID, 'mec_note', true), $message);
1195
 
1196
+ $status_obj = get_post_status_object($status);
1197
+ $message = str_replace('%%event_status%%', (($status_obj and isset($status_obj->label)) ? $status_obj->label : $status), $message);
1198
+
1199
  // Data Fields
1200
  $event_fields = $this->main->get_event_fields();
1201
 
1907
  // Private Description
1908
  $private_description_status = (!isset($this->settings['booking_private_description']) or (isset($this->settings['booking_private_description']) and $this->settings['booking_private_description'])) ? true : false;
1909
 
1910
+ $ticket_times = array_unique($ticket_times);
1911
  $message = str_replace('%%ticket_time%%', implode(',', $ticket_times), $message);
1912
+
1913
+ $message = str_replace('%%ticket_name%%', implode(',', $ticket_names), $message);
1914
  $message = str_replace('%%ticket_private_description%%', ($private_description_status ? implode(',', $ticket_private_descriptions) : ''), $message);
1915
 
1916
  $ticket_name_time = '';
app/libraries/skins.php CHANGED
@@ -281,7 +281,7 @@ class MEC_skins extends MEC_base
281
  }
282
 
283
  // Include needed assets for loading single event details page
284
- if($this->sed_method) $this->main->load_sed_assets();
285
 
286
  ob_start();
287
  include $this->get_tpl_path();
@@ -1289,7 +1289,7 @@ class MEC_skins extends MEC_base
1289
  $option = in_array($this->skin, $skins) ? '<option class="mec-none-item" value="none" selected="selected">'.$item.'</option>' : '';
1290
 
1291
  $output .= '<div class="mec-date-search"><input type="hidden" id="mec-filter-none" value="'.$item.'">';
1292
- $display_label == 1 ? $output .='<label for="mec_sf_category_'.$this->id.'">'.$label.': </label>' : null;
1293
  $output .= '<i class="mec-sl-calendar"></i>
1294
  <select id="mec_sf_month_'.$this->id.'">
1295
  <option value="">'.__('Select Month','modern-events-calendar-lite').'</option>';
281
  }
282
 
283
  // Include needed assets for loading single event details page
284
+ if(in_array($this->sed_method, array('m1'))) $this->main->load_sed_assets($this->settings);
285
 
286
  ob_start();
287
  include $this->get_tpl_path();
1289
  $option = in_array($this->skin, $skins) ? '<option class="mec-none-item" value="none" selected="selected">'.$item.'</option>' : '';
1290
 
1291
  $output .= '<div class="mec-date-search"><input type="hidden" id="mec-filter-none" value="'.$item.'">';
1292
+ $display_label == 1 ? $output .='<label for="mec_sf_month_'.$this->id.'">'.$label.': </label>' : null;
1293
  $output .= '<i class="mec-sl-calendar"></i>
1294
  <select id="mec_sf_month_'.$this->id.'">
1295
  <option value="">'.__('Select Month','modern-events-calendar-lite').'</option>';
app/libraries/walker.php CHANGED
@@ -91,9 +91,10 @@ class MEC_walker extends Walker
91
  $args['selected_cats'] = !empty($args['selected_cats']) ? array_map('intval', $args['selected_cats']) : array();
92
 
93
  $is_selected = in_array($category->term_id, $args['selected_cats'], true);
 
94
  $is_disabled = !empty($args['disabled']);
95
 
96
- $output .= "\n<option value='{$category->term_id}' id='{$taxonomy}-{$this->mec_id}-{$category->term_id}'$class>" .
97
  esc_html__(apply_filters('the_category', $category->name, '', '')) . '</option>';
98
  }
99
 
@@ -118,20 +119,20 @@ class MEC_walker extends Walker
118
  if ( ! $element ) {
119
  return;
120
  }
121
-
122
  $id_field = $this->db_fields['id'];
123
  $id = $element->$id_field;
124
-
125
  // Display this element.
126
  $this->has_children = ! empty( $children_elements[ $id ] );
127
  if ( isset( $args[0] ) && is_array( $args[0] ) ) {
128
  $args[0]['has_children'] = $this->has_children; // Back-compat.
129
  }
130
-
131
-
132
-
133
  $this->start_el( $output, $element, $depth, ...array_values( $args ) );
134
-
135
  // End this element.
136
  $this->end_el( $output, $element, $depth, ...array_values( $args ) );
137
  }
@@ -142,14 +143,14 @@ class MEC_walker extends Walker
142
  if ( $max_depth < -1 || empty( $elements ) ) {
143
  return $output;
144
  }
145
-
146
  $parent_field = $this->db_fields['parent'];
147
-
148
  foreach ( $elements as $e ) {
149
  $this->display_element( $e, $empty_array, 1, 0, $args, $output );
150
  }
151
  $output .= '</select>';
152
-
153
  return $output;
154
 
155
  }
91
  $args['selected_cats'] = !empty($args['selected_cats']) ? array_map('intval', $args['selected_cats']) : array();
92
 
93
  $is_selected = in_array($category->term_id, $args['selected_cats'], true);
94
+ $selected = selected( $is_selected, true, false );
95
  $is_disabled = !empty($args['disabled']);
96
 
97
+ $output .= "\n<option value='{$category->term_id}' id='{$taxonomy}-{$this->mec_id}-{$category->term_id}'$class $selected >" .
98
  esc_html__(apply_filters('the_category', $category->name, '', '')) . '</option>';
99
  }
100
 
119
  if ( ! $element ) {
120
  return;
121
  }
122
+
123
  $id_field = $this->db_fields['id'];
124
  $id = $element->$id_field;
125
+
126
  // Display this element.
127
  $this->has_children = ! empty( $children_elements[ $id ] );
128
  if ( isset( $args[0] ) && is_array( $args[0] ) ) {
129
  $args[0]['has_children'] = $this->has_children; // Back-compat.
130
  }
131
+
132
+
133
+
134
  $this->start_el( $output, $element, $depth, ...array_values( $args ) );
135
+
136
  // End this element.
137
  $this->end_el( $output, $element, $depth, ...array_values( $args ) );
138
  }
143
  if ( $max_depth < -1 || empty( $elements ) ) {
144
  return $output;
145
  }
146
+
147
  $parent_field = $this->db_fields['parent'];
148
+
149
  foreach ( $elements as $e ) {
150
  $this->display_element( $e, $empty_array, 1, 0, $args, $output );
151
  }
152
  $output .= '</select>';
153
+
154
  return $output;
155
 
156
  }
app/skins/general_calendar.php CHANGED
@@ -90,8 +90,6 @@ class MEC_skin_general_calendar extends MEC_skins
90
 
91
  // Fetch the events
92
  $upcoming_events = $this->get_events($startParam, $endParam,$categories,$multiCategories,$location,$organizer,$speaker,$label,$tag,$cost_min,$cost_max,$is_category_page,$cat_id,$show_only_one_occurrence,$filter_category,$filter_location,$filter_organizer,$filter_label,$filter_tag,$filter_author);
93
-
94
- $upcoming_events_test = $this->get_events('2021-01-01', '2021-12-28');
95
  $localtime = isset($this->skin_options['include_local_time']) ? $this->skin_options['include_local_time'] : false;
96
  $events = [];
97
  foreach($upcoming_events as $date => $content)
@@ -107,12 +105,13 @@ class MEC_skin_general_calendar extends MEC_skins
107
  }
108
  endif;
109
  $labels = '';
110
- if (isset($event->data->labels) && !empty($event->data->labels)) {
111
  foreach($event->data->labels as $label)
112
  {
113
  $labels .= '<span class="mec-general-calendar-label" style="background-color:'.$label['color'].';">' . trim($label['name']) . '</span>';
114
  }
115
  }
 
116
  $location_id = $this->main->get_master_location_id($event);
117
  $event_title = $event->data->title;
118
  $event_link = $this->main->get_event_date_permalink($event, $event->date['start']['date']);
@@ -137,9 +136,9 @@ class MEC_skin_general_calendar extends MEC_skins
137
  $event_a['localtime']= $localtime;
138
  $event_a['location']= $loc;
139
  $event_a['start_date']= date_i18n( get_option( 'date_format' ), $event_date_start_str );
140
- $event_a['start_time']= $event->date['start']['hour'] . ':' . $event->date['start']['minutes'] . ' ' . $event->date['start']['ampm'];
141
  $event_a['end_date']= date_i18n( get_option( 'date_format' ), $event_date_end_str );
142
- $event_a['end_time']= $event->date['end']['hour'] . ':' . $event->date['end']['minutes'] . ' ' . $event->date['end']['ampm'];
143
  $event_a['startDateStr']= strtotime($event_a['start_date']);
144
  $event_a['endDateStr']= strtotime($event_a['end_date']);
145
  $event_a['startDay']= date_i18n( "l", $event_date_start_str );
@@ -444,7 +443,7 @@ class MEC_skin_general_calendar extends MEC_skins
444
  $term = get_term_by('id', $filter_tag, apply_filters('mec_taxonomy_tag', ''));
445
  if($term) $mec_tag_query = $term->slug;
446
  }
447
-
448
 
449
 
450
  // Meta Query
@@ -488,13 +487,14 @@ class MEC_skin_general_calendar extends MEC_skins
488
  {
489
  // No Event
490
  if(!is_array($IDs) or (is_array($IDs) and !count($IDs))) continue;
 
491
 
492
  // Check Finish Date
493
  if(isset($this->maximum_date) and strtotime($date) > strtotime($this->maximum_date)) break;
494
 
495
  // Include Available Events
496
  $this->args['post__in'] = $IDs;
497
-
498
  // Count of events per day
499
  $IDs_count = array_count_values($IDs);
500
 
@@ -516,10 +516,11 @@ class MEC_skin_general_calendar extends MEC_skins
516
  if($query->have_posts())
517
  {
518
  if(!isset($events[$date])) $events[$date] = array();
519
-
 
520
  // Day Events
521
  $d = array();
522
-
523
  // The Loop
524
  while($query->have_posts())
525
  {
@@ -538,6 +539,7 @@ class MEC_skin_general_calendar extends MEC_skins
538
  $ID_count = isset($IDs_count[$ID]) ? $IDs_count[$ID] : 1;
539
  for($i = 1; $i <= $ID_count; $i++)
540
  {
 
541
  $rendered = $this->render->data($ID);
542
 
543
  $data = new stdClass();
@@ -549,8 +551,8 @@ class MEC_skin_general_calendar extends MEC_skins
549
  'start'=>array('date'=>$date),
550
  'end'=>array('date'=>$this->main->get_end_date($date, $rendered))
551
  );
552
-
553
  $d[] = $this->render->after_render($data, $this, $i);
 
554
  $found++;
555
  }
556
 
@@ -571,8 +573,9 @@ class MEC_skin_general_calendar extends MEC_skins
571
 
572
  usort($d, array($this, 'sort_day_events'));
573
  $events[$date] = $d;
574
- }
575
 
 
 
576
  // Restore original Post Data
577
  wp_reset_postdata();
578
  $i++;
@@ -584,10 +587,9 @@ class MEC_skin_general_calendar extends MEC_skins
584
  // Next Offset
585
  $this->next_offset = $found + ((isset($date) and $this->start_date === $date) ? $this->offset : 0);
586
  }
587
-
588
  // Set found events
589
  $this->found = $found;
590
-
591
  return $events;
592
  }
593
 
90
 
91
  // Fetch the events
92
  $upcoming_events = $this->get_events($startParam, $endParam,$categories,$multiCategories,$location,$organizer,$speaker,$label,$tag,$cost_min,$cost_max,$is_category_page,$cat_id,$show_only_one_occurrence,$filter_category,$filter_location,$filter_organizer,$filter_label,$filter_tag,$filter_author);
 
 
93
  $localtime = isset($this->skin_options['include_local_time']) ? $this->skin_options['include_local_time'] : false;
94
  $events = [];
95
  foreach($upcoming_events as $date => $content)
105
  }
106
  endif;
107
  $labels = '';
108
+ if (isset($event->data->labels) && !empty($event->data->labels) && $display_label) {
109
  foreach($event->data->labels as $label)
110
  {
111
  $labels .= '<span class="mec-general-calendar-label" style="background-color:'.$label['color'].';">' . trim($label['name']) . '</span>';
112
  }
113
  }
114
+
115
  $location_id = $this->main->get_master_location_id($event);
116
  $event_title = $event->data->title;
117
  $event_link = $this->main->get_event_date_permalink($event, $event->date['start']['date']);
136
  $event_a['localtime']= $localtime;
137
  $event_a['location']= $loc;
138
  $event_a['start_date']= date_i18n( get_option( 'date_format' ), $event_date_start_str );
139
+ $event_a['start_time']= $event->date['start']['hour'] ? $event->date['start']['hour'] . ':' . $event->date['start']['minutes'] . ' ' . $event->date['start']['ampm'] : (strlen($event->data->meta['mec_date']['start']['hour']) != 1 ? $event->data->meta['mec_date']['start']['hour'] : '0' . $event->data->meta['mec_date']['start']['hour']) . ':' . (strlen($event->data->meta['mec_date']['start']['minutes']) != 1 ? $event->data->meta['mec_date']['start']['minutes'] : '0' . $event->data->meta['mec_date']['start']['minutes']) . ' ' . $event->data->meta['mec_date']['start']['ampm'];
140
  $event_a['end_date']= date_i18n( get_option( 'date_format' ), $event_date_end_str );
141
+ $event_a['end_time']= $event->date['end']['hour'] ? $event->date['end']['hour'] . ':' . $event->date['end']['minutes'] . ' ' . $event->date['end']['ampm'] : (strlen($event->data->meta['mec_date']['end']['hour']) != 1 ? $event->data->meta['mec_date']['end']['hour'] : '0' . $event->data->meta['mec_date']['end']['hour']) . ':' . (strlen($event->data->meta['mec_date']['end']['minutes']) != 1 ? $event->data->meta['mec_date']['end']['minutes'] : '0' . $event->data->meta['mec_date']['end']['minutes']) . ' ' . $event->data->meta['mec_date']['end']['ampm'];
142
  $event_a['startDateStr']= strtotime($event_a['start_date']);
143
  $event_a['endDateStr']= strtotime($event_a['end_date']);
144
  $event_a['startDay']= date_i18n( "l", $event_date_start_str );
443
  $term = get_term_by('id', $filter_tag, apply_filters('mec_taxonomy_tag', ''));
444
  if($term) $mec_tag_query = $term->slug;
445
  }
446
+
447
 
448
 
449
  // Meta Query
487
  {
488
  // No Event
489
  if(!is_array($IDs) or (is_array($IDs) and !count($IDs))) continue;
490
+
491
 
492
  // Check Finish Date
493
  if(isset($this->maximum_date) and strtotime($date) > strtotime($this->maximum_date)) break;
494
 
495
  // Include Available Events
496
  $this->args['post__in'] = $IDs;
497
+
498
  // Count of events per day
499
  $IDs_count = array_count_values($IDs);
500
 
516
  if($query->have_posts())
517
  {
518
  if(!isset($events[$date])) $events[$date] = array();
519
+
520
+
521
  // Day Events
522
  $d = array();
523
+
524
  // The Loop
525
  while($query->have_posts())
526
  {
539
  $ID_count = isset($IDs_count[$ID]) ? $IDs_count[$ID] : 1;
540
  for($i = 1; $i <= $ID_count; $i++)
541
  {
542
+
543
  $rendered = $this->render->data($ID);
544
 
545
  $data = new stdClass();
551
  'start'=>array('date'=>$date),
552
  'end'=>array('date'=>$this->main->get_end_date($date, $rendered))
553
  );
 
554
  $d[] = $this->render->after_render($data, $this, $i);
555
+
556
  $found++;
557
  }
558
 
573
 
574
  usort($d, array($this, 'sort_day_events'));
575
  $events[$date] = $d;
 
576
 
577
+ }
578
+
579
  // Restore original Post Data
580
  wp_reset_postdata();
581
  $i++;
587
  // Next Offset
588
  $this->next_offset = $found + ((isset($date) and $this->start_date === $date) ? $this->offset : 0);
589
  }
590
+
591
  // Set found events
592
  $this->found = $found;
 
593
  return $events;
594
  }
595
 
app/skins/general_calendar/tpl.php CHANGED
@@ -40,20 +40,23 @@ if ($is_category_page) {
40
  }
41
  $week_start_day = (int) get_option( 'start_of_week' );
42
 
43
- // Search Options
44
- function mec_general_calendar_find_event($sf_options, $find_filter) {
45
- if ($find_filter == 'find') {
46
- if (($sf_options['category']['type'] != '0' && !is_null($sf_options['category']['type'])) || ($sf_options['location']['type'] != '0' && !is_null($sf_options['location']['type'])) || ($sf_options['organizer']['type'] != '0' && !is_null($sf_options['organizer']['type'])) || ($sf_options['speaker']['type'] != '0' && !is_null($sf_options['speaker']['type'])) || ($sf_options['tag']['type'] != '0' && !is_null($sf_options['tag']['type'])) || ($sf_options['label']['type'] != '0' && !is_null($sf_options['label']['type'])) || ($sf_options['event_cost']['type'] != '0' && !is_null($sf_options['event_cost']['type'])) || ($sf_options['text_search']['type'] != '0' && !is_null($sf_options['text_search']['type'])) || ($sf_options['address_search']['type'] != '0' && !is_null($sf_options['address_search']['type'])) ) {
47
- return true;
48
- } else {
49
- return false;
 
 
 
50
  }
51
- }
52
- if ($find_filter == 'filter') {
53
- if (($sf_options['category']['type'] != '0' && !is_null($sf_options['category']['type'])) || ($sf_options['location']['type'] != '0' && !is_null($sf_options['location']['type'])) || ($sf_options['organizer']['type'] != '0' && !is_null($sf_options['organizer']['type'])) || ($sf_options['speaker']['type'] != '0' && !is_null($sf_options['speaker']['type'])) || ($sf_options['tag']['type'] != '0' && !is_null($sf_options['tag']['type'])) || ($sf_options['label']['type'] != '0' && !is_null($sf_options['label']['type'])) || ($sf_options['event_cost']['type'] != '0' && !is_null($sf_options['event_cost']['type'])) || ($sf_options['address_search']['type'] != '0' && !is_null($sf_options['address_search']['type'])) ) {
54
- return true;
55
- } else {
56
- return false;
57
  }
58
  }
59
  }
@@ -158,6 +161,7 @@ function mec_general_calendar_find_event($sf_options, $find_filter) {
158
  <?php endif; ?>
159
  },
160
  eventDidMount: function(info) {
 
161
  var searchField = jQuery(".mec-gCalendar-search-text");
162
  if (searchField.length > 0) {
163
  var searchTerms = jQuery(".mec-gCalendar-search-text").val();
@@ -310,6 +314,8 @@ function mec_general_calendar_find_event($sf_options, $find_filter) {
310
  calendar.gotoDate(jQuery('#mec-gCalendar-month-filter').val())
311
  }
312
  }});
 
 
313
  <?php } ?>
314
  jQuery(".mec-searchbar-category-wrap").find('select').on('change', function(e){
315
  e.preventDefault();
40
  }
41
  $week_start_day = (int) get_option( 'start_of_week' );
42
 
43
+ if( !function_exists( 'mec_general_calendar_find_event' ) ){
44
+
45
+ // Search Options
46
+ function mec_general_calendar_find_event($sf_options, $find_filter) {
47
+ if ($find_filter == 'find') {
48
+ if (($sf_options['category']['type'] != '0' && !is_null($sf_options['category']['type'])) || ($sf_options['location']['type'] != '0' && !is_null($sf_options['location']['type'])) || ($sf_options['organizer']['type'] != '0' && !is_null($sf_options['organizer']['type'])) || ($sf_options['speaker']['type'] != '0' && !is_null($sf_options['speaker']['type'])) || ($sf_options['tag']['type'] != '0' && !is_null($sf_options['tag']['type'])) || ($sf_options['label']['type'] != '0' && !is_null($sf_options['label']['type'])) || ($sf_options['event_cost']['type'] != '0' && !is_null($sf_options['event_cost']['type'])) || ($sf_options['text_search']['type'] != '0' && !is_null($sf_options['text_search']['type'])) || ($sf_options['address_search']['type'] != '0' && !is_null($sf_options['address_search']['type'])) ) {
49
+ return true;
50
+ } else {
51
+ return false;
52
+ }
53
  }
54
+ if ($find_filter == 'filter') {
55
+ if (($sf_options['category']['type'] != '0' && !is_null($sf_options['category']['type'])) || ($sf_options['location']['type'] != '0' && !is_null($sf_options['location']['type'])) || ($sf_options['organizer']['type'] != '0' && !is_null($sf_options['organizer']['type'])) || ($sf_options['speaker']['type'] != '0' && !is_null($sf_options['speaker']['type'])) || ($sf_options['tag']['type'] != '0' && !is_null($sf_options['tag']['type'])) || ($sf_options['label']['type'] != '0' && !is_null($sf_options['label']['type'])) || ($sf_options['event_cost']['type'] != '0' && !is_null($sf_options['event_cost']['type'])) || ($sf_options['address_search']['type'] != '0' && !is_null($sf_options['address_search']['type'])) ) {
56
+ return true;
57
+ } else {
58
+ return false;
59
+ }
60
  }
61
  }
62
  }
161
  <?php endif; ?>
162
  },
163
  eventDidMount: function(info) {
164
+ console.log(info);
165
  var searchField = jQuery(".mec-gCalendar-search-text");
166
  if (searchField.length > 0) {
167
  var searchTerms = jQuery(".mec-gCalendar-search-text").val();
314
  calendar.gotoDate(jQuery('#mec-gCalendar-month-filter').val())
315
  }
316
  }});
317
+
318
+ jQuery("#MonthPicker_mec-gCalendar-month-filter").appendTo(".fc-header-toolbar");
319
  <?php } ?>
320
  jQuery(".mec-searchbar-category-wrap").find('select').on('change', function(e){
321
  e.preventDefault();
assets/css/frontend.css CHANGED
@@ -20209,7 +20209,7 @@ span.mec-booking-field-required {
20209
  }
20210
 
20211
  .mec-gCalendar .fc-header-toolbar .fc-toolbar-chunk,
20212
- .mec-gCalendar .fc-header-toolbar .fc-toolbar-chunk>div {
20213
  display: flex;
20214
  align-items: center;
20215
  }
@@ -20223,6 +20223,7 @@ span.mec-booking-field-required {
20223
  "Segoe UI",
20224
  Roboto,
20225
  sans-serif;
 
20226
  }
20227
 
20228
  .mec-gCalendar h2.fc-toolbar-title {
@@ -20230,6 +20231,7 @@ span.mec-booking-field-required {
20230
  font-weight: 600;
20231
  line-height: 20px;
20232
  margin-right: 20px;
 
20233
  }
20234
 
20235
  .mec-gCalendar h2.fc-toolbar-title i {
@@ -20470,11 +20472,12 @@ div#MonthPicker_mec-gCalendar-month-filter .month-picker-year-table .month-picke
20470
  }
20471
 
20472
  div#MonthPicker_mec-gCalendar-month-filter {
20473
- top: 259px !important;
20474
  width: 210px;
20475
- border: 1px solid #E3E4E5;
20476
  border-radius: 7px;
20477
  padding: 0 15px 0;
 
20478
  }
20479
 
20480
  div#MonthPicker_mec-gCalendar-month-filter table.month-picker-year-table tbody>tr:nth-child(odd)>td,
20209
  }
20210
 
20211
  .mec-gCalendar .fc-header-toolbar .fc-toolbar-chunk,
20212
+ .mec-gCalendar .fc-header-toolbar .fc-toolbar-chunk>div:not(#MonthPicker_mec-gCalendar-month-filter) {
20213
  display: flex;
20214
  align-items: center;
20215
  }
20223
  "Segoe UI",
20224
  Roboto,
20225
  sans-serif;
20226
+ position: relative;
20227
  }
20228
 
20229
  .mec-gCalendar h2.fc-toolbar-title {
20231
  font-weight: 600;
20232
  line-height: 20px;
20233
  margin-right: 20px;
20234
+ position: relative;
20235
  }
20236
 
20237
  .mec-gCalendar h2.fc-toolbar-title i {
20472
  }
20473
 
20474
  div#MonthPicker_mec-gCalendar-month-filter {
20475
+ top: 100% !important;
20476
  width: 210px;
20477
+ border: 1px solid #e3e4e5;
20478
  border-radius: 7px;
20479
  padding: 0 15px 0;
20480
+ left: 1.7% !important;
20481
  }
20482
 
20483
  div#MonthPicker_mec-gCalendar-month-filter table.month-picker-year-table tbody>tr:nth-child(odd)>td,
assets/css/frontend.min.css CHANGED
@@ -1 +1 @@
1
- .mec-wrap{position:relative}.entry-content .mec-wrap h1,.entry-content .mec-wrap h2,.entry-content .mec-wrap h3,.entry-content .mec-wrap h4,.entry-content .mec-wrap h5,.entry-content .mec-wrap h6,.mec-wrap h1,.mec-wrap h2,.mec-wrap h3,.mec-wrap h4,.mec-wrap h5,.mec-wrap h6{color:#171c24;font-weight:300;font-style:inherit;letter-spacing:normal;clear:none}.mec-wrap h1{font-size:50px;line-height:1.16;margin-bottom:12px;letter-spacing:-1px}.mec-wrap h2{font-size:36px;line-height:1.14;margin-bottom:10px}.mec-wrap h3{font-size:28px;line-height:1.2;margin-bottom:8px}.mec-wrap h4{font-size:24px;line-height:1.2;margin-bottom:10px}.mec-wrap h5{font-size:18px;line-height:1.3;margin-bottom:7px}.mec-wrap h6{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-wrap .subheader{color:#849098}.mec-wrap h1 strong{font-weight:700}.mec-wrap p{margin:0 0 20px 0;color:#616161;font-size:14px;line-height:1.8}.mec-wrap .mec-event-article .mec-color-hover{box-shadow:none;border:none}.mec-wrap abbr,.mec-wrap acronym{cursor:auto;border:none}.entry-content .mec-wrap a{box-shadow:none}.mec-wrap .button,.mec-wrap a.button:not(.owl-dot),.mec-wrap button:not(.owl-dot):not(.gm-control-active),.mec-wrap input[type=button],.mec-wrap input[type=reset],.mec-wrap input[type=submit]{position:relative;border:none;border-radius:2px;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#24ca4f;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease}.mec-wrap .button:hover,.mec-wrap a.button:hover,.mec-wrap button:hover,.mec-wrap input[type=button]:hover,.mec-wrap input[type=reset]:hover,.mec-wrap input[type=submit]:hover{background:#222;color:#fff}.mec-wrap #mec_woo_add_to_cart_btn_r{min-width:155px;margin-top:5px;border-radius:2px;box-shadow:0 2px 1px rgba(0,0,0,.08);float:left;text-align:center}.mec-booking-form-container button{display:block}.vertical-space,.vertical-space1,.vertical-space2,.vertical-space3,.vertical-space4,.vertical-space5{display:block;width:100%;margin:0;clear:both;border:0 none;height:20px}.vertical-space2{height:40px}.vertical-space3{height:60px}.vertical-space4{height:80px}.vertical-space5{height:100px}@media only screen and (max-width:479px){.vertical-space,.vertical-space1{height:8px}.vertical-space2{height:14px}.vertical-space3{height:28px}.vertical-space4{height:40px}.vertical-space5{height:60px}}@media only screen and (max-width:960px){.vertical-space,.vertical-space1{height:12px}.vertical-space2{height:18px}.vertical-space3{height:36px}.vertical-space4{height:50px}.vertical-space5{height:80px}}.mec-wrap abbr{cursor:auto;border-bottom:0}@-webkit-keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}.mec-wrap{font:14px/25px;font-weight:400;color:#626262}.mec-wrap .mec-events a{border-bottom:none}.mec-wrap .mec-container a{box-shadow:none}.mec-event-content p{font-weight:300}.mec-wrap .mec-clear:after,.mec-wrap .mec-clear:before{content:" ";display:table}.mec-wrap .mec-clear:after{clear:both}.mec-events-button{background:#fff;padding:12px 34px;font-size:13px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;margin-right:10px;transition:.3s}.mec-wrap .mec-events-button:hover{color:#fff}.mec-no-event{display:none}#mec-active-current{display:block}.current-hide #mec-active-current{display:none!important}.mec-event-grid-classic .mec-event-article{position:relative;border:2px solid #e3e3e3;box-shadow:0 2px 0 0 rgba(0,0,0,.016);margin-bottom:30px;max-width:none}.mec-event-grid-classic .mec-event-content{background:#fff;color:#767676;padding:0 20px 5px;text-align:center;min-height:125px}.mec-event-grid-classic .mec-event-title{color:#202020;margin:10px 0;font-weight:700;font-size:20px;letter-spacing:1px;text-transform:uppercase}.mec-event-grid-classic .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-classic .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;color:#fff;padding:3px 20px;margin:0 -20px 20px -20px;text-align:center}.widget_mec_mec_widget .mec-event-grid-classic .mec-event-date{margin:0}.mec-event-grid-classic .mec-event-content p{font-size:15px;color:#8a8a8a}.mec-event-grid-classic .mec-event-detail{display:none}.mec-event-grid-classic img{margin-bottom:0;width:100%}.mec-event-footer{position:relative;border-top:1px solid #efefef;padding:20px;min-height:80px;margin:0;background:#fafafa}.mec-event-sharing-wrap{left:15px;position:absolute;list-style:none;margin:0;padding-left:0}.mec-event-sharing-wrap .mec-event-sharing{position:absolute;padding:8px 0 2px;left:-6px;bottom:54px;margin:0;margin-top:6px;border-radius:5px;width:50px;visibility:hidden;opacity:0;border:1px solid #e2e2e2;background:#fff;box-shadow:0 0 9px 0 rgba(0,0,0,.06);z-index:99;-webkit-transition:all .18s ease;transition:all .18s ease}.mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-sharing-wrap .mec-event-sharing:before{content:"";display:block;position:absolute;bottom:-10px;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-event-sharing-wrap .mec-event-sharing:before{bottom:-21px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-sharing-wrap .mec-event-sharing:after{bottom:-19px;border-color:#fff transparent transparent transparent}.mec-event-sharing-wrap:hover .mec-event-sharing{opacity:1;visibility:visible}.mec-event-sharing-wrap li{text-align:center;border:0;display:block;margin-right:2px;overflow:hidden;margin:0 auto 6px;width:38px}.mec-event-sharing-wrap li.mec-event-share{height:38px}.mec-event-sharing-wrap:hover>li{cursor:pointer;background-color:#40d9f1}.mec-event-sharing-wrap:hover li a{color:#fff}.mec-event-sharing-wrap>li:first-of-type{border:1px solid #d9d9d9}.mec-event-sharing-wrap li a,.mec-event-sharing-wrap:hover li ul li a{border:none;color:#767676;display:block}.mec-event-sharing-wrap li i{width:36px;height:36px;display:table-cell;vertical-align:middle}.mec-event-sharing-wrap li svg{height:16px}.mec-event-sharing-wrap .mec-event-sharing li a{display:block}.mec-event-sharing-wrap .mec-event-sharing li:hover a{color:#40d9f1}.mec-event-sharing .mec-event-share:hover .event-sharing-icon{background:#40d9f1;border-width:0 1px 0;cursor:pointer}.mec-event-sharing .mec-event-map{border-width:1px 0 1px}.mec-event-footer .mec-booking-button{box-shadow:none;transition:all .21s ease;font-size:11px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:1px solid #e8e8e8;position:absolute;top:20px;right:15px;padding:0 16px;line-height:37px;height:38px}.mec-event-footer .mec-booking-button:hover{background:#191919;color:#fff;border-color:#191919}@media only screen and (max-width:960px){.mec-event-grid-classic{margin-bottom:30px}}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:36px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:5px 0;width:100%;position:absolute;top:15px;padding:0}.mec-skin-grid-container.mec-widget{padding-top:18px}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:20px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:0;width:100%;position:absolute;top:0;padding:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav div{position:absolute;background:#fff;line-height:0;width:34px;height:26px;padding:6px;text-align:center;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;text-align:center;box-shadow:0 2px 0 0 rgba(0,0,0,.028);transition:all .33s ease}.mec-skin-grid-container .mec-categories{padding:0}.mec-skin-grid-container .mec-categories li{list-style:none}.mec-skin-grid-container .mec-categories li a{color:#000;line-height:24px;text-align:left;transition:all .23s ease;-webkit-transition:all .23s ease}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-next{right:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-prev{left:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-sharing{display:none}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer{text-align:center}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer .mec-booking-button{position:static;padding:11px 16px}.widget .mec-event-footer ul.mec-event-sharing-wrap li a.mec-event-share-icon{padding:0}@media screen and (min-width:56.875em){.mec-widget .mec-month-container dl{margin-bottom:0}}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-footer{text-align:right}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap{left:5px;padding-left:5px}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap .mec-event-sharing{left:0}.mec-widget .mec-event-sharing-wrap .mec-event-sharing{position:absolute;top:auto;bottom:52px;margin:0;margin-top:0;border-radius:5px}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:after{top:auto;bottom:-17px;border-color:#fff transparent transparent transparent}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-18px;border-color:#e2e2e2 transparent transparent transparent}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav button{position:absolute;background:#fff;padding:6px;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;box-shadow:0 2px 0 0 rgba(0,0,0,.028)}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav button:hover{background:#40d9f1;border-color:#40d9f1}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav button:hover i{color:#fff}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-booking-button{width:40%;float:right;color:#202020;height:36px;line-height:14px;font-size:12px;width:auto}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-booking-button:hover{color:#fff}.mec-widget .mec-event-list-modern .col-md-2.col-sm-2,.mec-widget .mec-event-list-modern .col-md-6.col-sm-6{padding:0;width:100%;display:block;position:unset}.mec-widget .mec-event-list-modern .col-md-4.col-sm-4 .mec-booking-button{width:80%;height:46px;line-height:22px;padding:11px 20px;float:right}.mec-widget .mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{top:auto;bottom:5%}@media (max-width:480px){.mec-widget .mec-event-list-modern .col-md-4.col-sm-4{padding:0}.mec-widget .mec-event-list-modern .col-md-4.col-sm-4 .mec-booking-button{width:100%}}.mec-widget .mec-event-list-modern .mec-month-divider{margin:30px 0 10px 0}.mec-widget .mec-event-list-minimal .mec-event-date span{font-size:12px}.mec-widget .mec-event-list-minimal .mec-event-date:after{height:29px}.mec-widget .mec-event-list-minimal .col-md-3,.mec-widget .mec-event-list-minimal .col-md-9{display:block;width:100%;text-align:left}.mec-widget .mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{position:relative}.mec-widget .mec-event-list-modern .col-md-4.col-sm-4 .mec-booking-button{width:100%;text-align:center}.mec-widget .mec-event-list-minimal .mec-event-date:first-child{margin-right:24px}.mec-event-grid-clean{margin-bottom:10px;max-width:none}.mec-event-grid-clean .mec-event-article{margin-bottom:30px;position:relative;border:1px solid #e2e2e2;text-align:center;padding:15px 15px 0;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-clean .mec-event-content{background:#fff;color:#767676;padding:25px 16px 0;text-align:left}.mec-event-grid-clean .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:21px;text-transform:capitalize}.mec-event-grid-clean .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-clean .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;background-color:#40d9f1;color:#fff;padding:3px 0;margin:0;text-align:center}.mec-event-grid-clean .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-clean img{margin-bottom:0;width:100%}.mec-event-grid-clean .event-grid-t2-head{margin-bottom:10px;color:#fff;padding:9px 14px 6px;text-align:left}.mec-event-grid-clean .event-grid-t2-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-clean .event-grid-t2-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-clean .event-grid-t2-head .mec-event-detail{font-size:12px}.mec-event-grid-clean .event-grid-t2-head .mec-categories li a{margin-bottom:10px;color:#fff}.mec-event-grid-clean .event-grid-t2-head .mec-categories li a:hover{color:#000}.mec-event-grid-clean .mec-event-sharing-wrap{left:0;padding-left:0}.mec-event-grid-clean .mec-event-footer{position:relative;border-top:2px solid;padding:20px 0;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-clean .mec-event-footer .mec-booking-button{right:0}.mec-event-grid-clean .row{margin-bottom:30px}.mec-event-grid-modern{margin-bottom:10px;max-width:none}.mec-event-grid-modern .mec-event-article{position:relative;border:1px solid #e2e2e2;text-align:center;margin-bottom:30px;padding:45px 15px 10px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-modern .mec-event-content{background:#fff;color:#767676;padding:35px 15px 10px;text-align:left}.mec-event-grid-modern .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:24px;text-transform:none;letter-spacing:-1px}.mec-event-grid-modern .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-modern .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-modern img{margin-bottom:0;width:100%}.mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:9px 14px 6px;text-align:left}.mec-event-grid-modern .event-grid-modern-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-modern .event-grid-modern-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-modern .event-grid-modern-head .mec-event-detail{font-size:12px}.mec-event-grid-modern .event-grid-modern-head .mec-event-day{margin-top:9px;color:silver;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-event-grid-modern .mec-event-footer{position:relative;height:90px;padding:20px 0;border:none;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-modern .mec-event-footer .mec-booking-button{right:auto;left:0}.mec-event-grid-modern .mec-event-sharing-wrap{left:auto;right:0;padding-left:0}.mec-event-grid-modern .mec-event-sharing{left:auto;right:-6px}.mec-event-grid-modern .mec-event-sharing-wrap li{border-radius:55px}.mec-event-grid-modern .row{margin-bottom:0}@media only screen and (max-width:479px){.mec-event-grid-modern .mec-event-article{padding-bottom:30px}.mec-event-grid-modern .mec-event-sharing{top:60px;left:0;right:auto}.mec-event-grid-modern .mec-event-footer .mec-booking-button{top:0}}span.mec-event-title-soldout{font-size:8px;font-weight:700;letter-spacing:.5px;text-transform:uppercase;background:#e63360;color:#fff;padding:3px 8px;line-height:1;border-radius:15px;white-space:nowrap;vertical-align:middle}.mec-event-grid-colorful .mec-event-article{min-height:400px;border:none;box-shadow:none;background:#40d9f1;padding-top:25px;margin:0;color:#fff}.mec-event-grid-colorful .mec-event-content{background:0 0}.mec-event-grid-colorful .event-grid-modern-head,.mec-event-grid-colorful .event-grid-modern-head .mec-event-date,.mec-event-grid-colorful .event-grid-modern-head .mec-event-day,.mec-event-grid-colorful .mec-event-content p,.mec-event-grid-colorful .mec-event-sharing-wrap>li>a,.mec-event-grid-colorful .mec-event-title a{color:#fff}.mec-event-grid-colorful .mec-event-footer .mec-booking-button{border:none}.mec-event-grid-colorful .mec-event-sharing-wrap>li{border-color:#fff}.mec-event-grid-colorful .mec-event-sharing-wrap:hover>li{background:#333;border-color:#333}.mec-event-grid-colorful .mec-event-title a.mec-color-hover:hover{color:#fff;text-decoration:underline}.mec-event-grid-colorful .mec-event-title .event-color{display:none}.mec-event-grid-colorful div[class^=col-md-]{padding:0 1px 1px 0;margin:0}.mec-event-grid-colorful .mec-event-article .mec-time-details{color:#fff}@media only screen and (min-width:768px){.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-day{font-size:26px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-month{font-size:15px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-date{font-size:50px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-title{font-size:21px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-content p{font-size:13px}}@media only screen and (min-width:768px) and (max-width:1200px){.mec-wrap.mec-sm959.mec-event-grid-colorful div[class^=col-md-]{width:50%}}.mec-event-list-minimal .mec-event-article{border-bottom:1px solid #efefef;padding:24px 0 16px}.mec-event-list-minimal .mec-wrap .col-md-9{padding:0}.mec-event-list-minimal .mec-event-date{position:relative;float:left;margin-right:30px;color:#fff;width:52px;padding:6px 4px 3px;text-align:center;text-transform:uppercase;border-radius:3px}.mec-event-list-minimal .mec-event-date{min-width:52px;width:fit-content}.mec-event-list-minimal .mec-event-date:nth-child(2){margin:0 30px 0 -20px}.mec-event-list-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px}.mec-event-list-minimal .mec-event-date:after{display:block;content:"";position:absolute;width:50px;left:1px;top:1px;height:34px;background:rgba(255,255,255,.1);box-shadow:0 4px 4px rgba(0,0,0,.02)}.mec-event-list-minimal .mec-event-date:after{width:100%}.mec-event-list-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;font-size:18px;text-transform:uppercase;letter-spacing:0;padding-top:10px}.mec-event-list-minimal .mec-event-detail,.mec-event-list-minimal .mec-time-details{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a}.mec-event-list-minimal .btn-wrapper{text-align:right;padding-right:0;padding-top:6px}.mec-event-list-minimal .btn-wrapper .mec-detail-button{border-bottom:0;margin-bottom:14px;margin-right:0;box-shadow:none}.mec-event-list-minimal a.mec-detail-button{text-align:center;display:inline-block;background:#ededed;color:#191919;padding:12px;border-radius:2px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2px;transition:all .24s ease}.mec-event-list-minimal a.mec-detail-button:hover{background:#292929;color:#fff}.vc_col-sm-4 .mec-event-list-minimal .mec-event-date,.vc_col-sm-6 .mec-event-list-minimal .mec-event-date{margin-right:12px}.vc_col-sm-4 .mec-event-list-minimal .mec-event-title,.vc_col-sm-6 .mec-event-list-minimal .mec-event-title{font-size:15px;letter-spacing:2px}@media only screen and (min-width:480px) and (max-width:767px){.mec-event-list-minimal .btn-wrapper{padding-left:0}.mec-event-list-minimal .mec-event-date{margin-right:10px}}@media only screen and (max-width:767px){.mec-event-list-minimal .btn-wrapper .mec-detail-button{display:block;text-align:center;margin:0;margin-top:16px;padding:8px}.mec-event-list-minimal .btn-wrapper{margin:12px 0}}@media only screen and (max-width:479px){.mec-event-list-minimal .mec-event-date{float:none;width:100%;margin-bottom:8px}.mec-event-list-minimal .mec-event-date span{display:inline;padding-right:25px;margin-right:7px;font-size:inherit}.mec-event-list-minimal .mec-event-date:after{width:45%;box-shadow:4px 0 4px rgba(0,0,0,.02)}.mec-event-list-minimal .btn-wrapper{text-align:center;padding-left:0}.mec-event-list-minimal{text-align:center}.mec-event-list-minimal .mec-event-detail{margin-bottom:10px}}.mec-wrap .mec-event-list-modern .mec-event-title{margin-top:0;margin-bottom:10px}.mec-event-list-modern .mec-event-article{border-bottom:1px solid #efefef;padding:30px 0 10px}.mec-event-list-modern .mec-event-article:last-child{border-bottom:none}.mec-event-list-modern .mec-event-title a{color:#191919;transition:all .24s ease;box-shadow:none}.mec-event-list-modern .mec-event-date{text-transform:uppercase;padding:10px 0}.mec-event-list-modern .mec-event-date .event-d{font-size:48px;display:table-cell;padding:10px 0 0}.mec-event-list-modern .mec-event-date .event-d.mec-multiple-dates{font-size:20px;padding:0}.mec-event-list-modern .mec-event-date.mec-multiple-date-event:first-child{padding:10px 0 6px 0;position:relative;width:fit-content}.mec-event-list-modern .mec-event-date.mec-multiple-date-event:first-child:after{content:"";position:absolute;bottom:0;left:0;width:100%;height:1px;background:silver}.mec-event-list-modern .mec-event-date.mec-multiple-date-event:last-child{padding:5px 0 10px 0}.mec-event-list-modern .mec-event-date.mec-multiple-date-event .event-d{font-size:20px;padding:0}.mec-event-list-modern .mec-event-date.mec-multiple-date-event .event-da{font-size:20px;margin:0}.mec-event-list-modern .mec-event-date .event-f{font-size:13px;display:table-cell;vertical-align:middle;padding-left:7px;font-weight:500;letter-spacing:3px;color:#777}.mec-event-list-modern .mec-event-detail{font-weight:300;color:#8a8a8a}.mec-event-list-modern .mec-event-detail .mec-time-details{display:inline}.mec-event-list-modern .mec-event-date .event-da{margin-top:9px;color:silver;font-size:28px;font-weight:100;text-transform:uppercase;letter-spacing:-1px;text-align:left}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{border-radius:1px;letter-spacing:2px;border:1px solid #e6e6e6;color:#333;background-color:#fff;padding:13px 20px;font-weight:700;font-size:11px;box-shadow:0 2px 0 0 rgba(0,0,0,.016);transition:all .28s ease}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover{border-color:#222;background:#222;color:#fff}.mec-event-list-modern .mec-event-title{font-weight:700;font-size:20px;text-transform:uppercase;letter-spacing:1px}.mec-event-list-modern .mec-event-detail{color:#9a9a9a;font-size:15px;font-weight:300;line-height:25px}.mec-event-list-modern .mec-btn-wrapper{text-align:right;padding:10px 0;text-transform:uppercase}.mec-event-list-modern .mec-event-sharing{position:relative;margin:10px 0;padding-left:0}.mec-event-list-modern .mec-event-sharing>li{display:inline-block;border:none;border-radius:50%;margin-right:3px}.mec-event-list-modern .mec-event-sharing .telegram{min-width:36px;min-height:36px;line-height:36px;padding:9px 1px 10px;border-radius:60px}.mec-event-list-modern .mec-event-sharing>li .telegram{padding-top:8px;padding-bottom:9px;border-radius:50%;border:1px solid #ddd}.mec-event-list-modern .mec-event-sharing .telegram .svg-inline--fa.fa-telegram.fa-w-16{width:3.246rem;padding:2px 10px 0 10px;margin-bottom:-2px}.mec-event-list-modern .mec-event-sharing .telegram .svg-inline--fa.fa-telegram.fa-w-16 path{fill:#767676}.mec-event-list-modern .mec-event-sharing li:hover .telegram{background-color:#40d9f1}.mec-event-list-modern .mec-event-sharing li:hover .telegram .svg-inline--fa.fa-telegram.fa-w-16 path{fill:#fff}.mec-event-list-modern .mec-event-sharing>li:hover{display:inline-block}.mec-event-list-modern .mec-event-sharing>li:hover a i{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-event-list-modern .mec-event-sharing>li i{width:36px;display:inline-block;line-height:35px;color:#767676;text-align:center;border-radius:50%;border:1px solid #ddd;font-size:14px}.mec-event-list-modern .mec-event-sharing .mec-event-share:hover .mec-event-sharing-icon{background:#40d9f1;border-color:#40d9f1;cursor:pointer;border-radius:50%}.mec-event-list-modern .mec-event-sharing li:hover a i{background:#40d9f1}@media only screen and (min-width:768px){.mec-event-list-modern .mec-event-article{position:relative;min-height:160px;overflow:hidden}.mec-event-list-modern .col-md-2.col-sm-2{width:210px;position:absolute;left:0;top:20px;padding:0}.mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{width:180px;padding:0;position:absolute;right:0;top:30%}.mec-event-list-modern .col-md-6.col-sm-6{width:100%;padding-left:225px;padding-right:195px}}@media only screen and (max-width:767px){.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{letter-spacing:1px;border:1px solid #e1e1e1;padding:8px 16px}.mec-event-list-modern .mec-btn-wrapper{padding:0 0 12px}.mec-event-list-modern .mec-event-sharing{margin-bottom:0}}.mec-event-grid-minimal .mec-event-article{margin:15px 0;min-height:80px;display:table}.mec-event-grid-minimal .event-detail-wrap{display:table-cell;vertical-align:middle}.mec-event-grid-minimal .mec-event-date{width:70px;float:left;margin-right:20px;padding:12px 16px 10px;text-align:center;text-transform:uppercase;border-radius:4px;border:1px solid #e6e6e6;transition:all .37s ease-in-out;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px;color:#2a2a2a;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:16px;text-transform:uppercase;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title a{color:#191919;transition:color .3s ease}.mec-event-grid-minimal .mec-event-detail,.mec-event-grid-minimal .mec-time-details{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;margin-bottom:5px}.mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-grid-minimal .mec-event-date:hover span{color:#fff}.mec-wrap .mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-list-classic .mec-event-article{padding:12px 0;margin-bottom:20px}.mec-event-list-classic .mec-event-image{float:left;width:86px;margin-right:20px}.mec-event-list-classic .mec-event-date,.mec-event-list-classic .mec-event-time{font-weight:400;font-size:13px;letter-spacing:0;line-height:18px;text-align:left;display:initial;margin-right:12px}.mec-event-list-classic .mec-event-time .mec-time-details,.mec-event-list-classic .mec-event-time i{display:inline;margin-right:3px}.mec-event-list-classic .mec-event-date span{font-weight:500;margin-bottom:6px}.mec-event-list-classic .mec-event-title{font-size:15px;margin:10px 0 12px;font-weight:700;text-transform:uppercase}.mec-event-list-classic .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-list-classic .mec-event-detail{color:#777;font-weight:400;line-height:12px;font-size:12px;overflow:hidden}.mec-event-list-classic a.magicmore{padding:10px 16px;color:#fff;background:#222;letter-spacing:2px;font-size:11px}.mec-event-list-classic a.magicmore:after{content:"";display:none}.mec-event-list-classic a.magicmore:hover{color:#40d9f1}.mec-event-grid-simple .mec-event-article{position:relative;margin-bottom:30px}.mec-event-grid-simple .mec-event-article:after{border-right:1px solid #e6e6e6;height:60px;position:absolute;top:50%;margin-top:-30px;right:-1px}.mec-event-grid-simple .row div:last-child .mec-event-article:after{border:none}.mec-event-grid-simple .row{margin:15px 0 30px;text-align:center}.mec-event-grid-simple .mec-event-date{padding:0;margin:0;text-transform:capitalize;font-size:12px;font-weight:700}.mec-event-grid-simple .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:15px;padding-top:5px;padding-left:5px;padding-right:5px;text-transform:uppercase;transition:color .37s ease}.mec-event-grid-simple .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-grid-simple .mec-event-detail{font-weight:400;line-height:1;letter-spacing:0;font-size:13px;color:#777}.mec-event-grid-simple:hover .mec-event-title{color:#40d9f1}.mec-event-grid-simple:hover .mec-event-date{background:0 0}.event-last:after{display:none}@media only screen and (max-width:767px){.mec-event-grid-simple .mec-event-article{padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid #eee}.mec-event-grid-simple .mec-event-article:after{border:none}}.mec-event-grid-novel .mec-event-article{position:relative;margin-bottom:30px;padding:60px 5% 60px 7%;border:1px solid rgba(255,255,255,.12);border-radius:10px;background-color:#0050fd;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease;z-index:1}.mec-event-grid-novel .mec-event-article .novel-grad-bg{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:10px;opacity:0;z-index:-1;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}.mec-event-grid-novel .mec-event-article:hover{-webkit-box-shadow:0 13px 36px 0 rgba(0,0,0,.23);box-shadow:0 13px 36px 0 rgba(0,0,0,.23);border-color:transparent}.mec-event-grid-novel .mec-event-article:hover .novel-grad-bg{background-image:-webkit-gradient(linear,left top,right top,from(#262e32),to(#0e1015));background-image:-webkit-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:-o-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:linear-gradient(90deg,#262e32 0,#0e1015 100%);opacity:1}.mec-event-grid-novel .mec-event-image{float:left;width:150px;height:150px}.mec-event-grid-novel .mec-event-image img{width:150px;height:150px;border-radius:50%}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:200px}.mec-event-grid-novel .mec-event-content h4{position:relative;margin-bottom:10px;display:inline-block}.mec-event-grid-novel .mec-event-content h4 a{font-size:24px;line-height:35px;color:#fafcff}.mec-event-grid-novel .mec-event-content h4.mec-gCalendar-search-text-wrap input[type=text]before{content:"";position:absolute;top:8px;left:-30px;width:17px;height:17px;background:#5cd0ed;opacity:.4;border-radius:50%;padding-right:5px}.mec-event-grid-novel .mec-event-content h4::after{content:"";position:absolute;top:12px;left:-26px;width:9px;height:9px;background:#5cd0ed;border-radius:50%}.mec-skin-grid-container .mec-event-grid-novel .mec-categories li a{color:#fff}.mec-event-grid-novel .mec-event-address,.mec-event-grid-novel .mec-event-detail,.mec-event-grid-novel .mec-event-month,.mec-event-grid-novel .mec-local-time-details{position:relative;padding-left:35px;font-size:15px;line-height:30px;color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-address::before,.mec-event-grid-novel .mec-event-detail::before,.mec-event-grid-novel .mec-event-month::before,.mec-event-grid-novel .mec-local-time-details:before{position:absolute;top:6px;left:6px;font-size:17px;font-family:simple-line-icons;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}.mec-event-grid-novel .mec-local-time-details::before{content:"\e007"}.mec-event-grid-novel .mec-event-month::before{content:"\e075"}.mec-event-grid-novel .mec-event-detail::before{content:"\e081"}.mec-event-grid-novel .mec-event-address::before{content:"\e096"}.mec-event-grid-novel .mec-event-footer{clear:both;padding:20px 0;border-top:none;background:0 0}.mec-event-grid-novel .mec-event-footer .mec-booking-button{right:auto;left:0;height:42px;width:148px;padding:0 20px;font-size:14px;font-weight:400;line-height:42px;text-align:center;color:#fff;background:0 0;border-color:rgba(255,255,255,.1);border-radius:50px}.mec-event-grid-novel .mec-event-footer .mec-booking-button:hover{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap{left:175px;cursor:pointer;padding-left:0}.mec-event-grid-novel .mec-event-sharing-wrap>li{border-color:rgba(255,255,255,.1);border-radius:50%}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing{top:-5px;left:0;padding:5px 10px 2px 50px;min-width:150px;width:inherit;height:37px;background-color:rgba(255,255,255,.1);-webkit-box-shadow:none;box-shadow:none;border:none;border-radius:50px}.mec-event-grid-novel .mec-event-sharing-wrap:hover>li{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::after,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::before{display:none}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon,.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li i{display:inline}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a{padding:0 10px}.mec-event-grid-novel .mec-event-sharing-wrap>li a{color:#fff}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a{color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a:hover{color:#fff}@media only screen and (max-width:1200px){.mec-event-grid-novel .row .col-md-6.col-sm-6{width:100%;float:none}.mec-event-grid-novel .mec-event-image{float:none;margin-top:-20px;margin-bottom:20px}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:20px}.mec-event-grid-novel .mec-event-footer{margin-top:30px}}@media only screen and (max-width:767px){.mec-event-grid-novel .mec-event-footer{margin-top:0;padding-top:30px;margin-bottom:24px}.mec-event-grid-novel .mec-event-footer .mec-booking-button{display:block;position:relative}.mec-event-grid-novel .mec-event-sharing-wrap{left:0;bottom:-55px;padding-left:0}.mec-event-grid-novel .mec-event-content h4 a{font-size:20px;line-height:1.3}}.mec-event-grid-novel .mec-event-sharing-wrap{padding-left:0}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing{width:fit-content;z-index:999999}@media (min-width:1280px){.mec-event-grid-novel .col-md-4.col-sm-4 .mec-event-article img{width:100px;height:100px}.mec-event-grid-novel .col-md-4.col-sm-4 .mec-event-detail-wrap{margin-left:150px}}@media (min-width:760px) and (max-width:1024px){.mec-event-grid-novel .col-md-4.col-sm-4{width:100%}.mec-event-grid-novel .mec-event-image{float:left}.mec-event-grid-novel .col-md-4.col-sm-4 .mec-event-article img{width:100px;height:100px}}.mec-event-cover-modern{position:relative}.mec-event-cover-modern .mec-event-cover-a{background:0 0;position:absolute;color:#fff;bottom:0;left:0;text-decoration:none}.mec-event-cover-modern .mec-event-cover-a .mec-event-overlay{transition:all .5s;opacity:.8;width:100%;height:100%;position:absolute}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-overlay{opacity:1}.mec-event-cover-modern .mec-event-detail{padding:40px;position:relative}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-tag{color:#333;transition:all .5s}.mec-event-cover-modern .mec-event-cover-a .mec-event-title:hover{text-decoration:underline}.mec-event-cover-modern .mec-event-tag{background:#fff;display:inline-block;padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px}.mec-event-cover-modern .mec-event-date{text-transform:uppercase;font-size:17px;font-weight:300}.mec-event-cover-modern .mec-event-title{color:#fff;text-transform:uppercase;font-size:40px;font-weight:700;margin:6px 0}.mec-event-cover-modern .mec-event-place{font-weight:400;font-size:18px}@media only screen and (max-width:767px){.mec-event-cover-modern .mec-event-cover-a{width:100%}}.mec-event-cover-classic{position:relative;overflow:hidden;background:#fff;padding:6px;border:1px solid #e8e8e8}.mec-event-cover-classic .mec-event-overlay{position:absolute;left:6px;right:6px;bottom:6px;top:6px;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-cover-classic:hover .mec-event-overlay{background-color:rgba(36,36,36,.6)}.mec-event-cover-classic .mec-event-content{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out}.mec-event-cover-classic .mec-event-date{font-size:14px;text-transform:uppercase;font-weight:400;line-height:1.6;text-align:left}.mec-event-cover-classic .mec-event-date span{display:block;font-weight:700;font-size:16px}.mec-event-cover-classic .mec-event-title{color:#fff;margin:20px 0 38px;font-size:24px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-cover-classic .mec-btn-wrapper{text-align:left}.mec-event-cover-classic .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-cover-classic .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:12px 20px;letter-spacing:3px;font-size:12px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-cover-classic .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-cover-classic .mec-event-image img{min-width:100%}@media only screen and (max-width:960px){.mec-event-cover-classic .mec-event-content{padding:20px}.mec-event-cover-classic .mec-event-button{font-size:11px;padding:7px 10px;letter-spacing:1px}.mec-event-cover-classic .mec-event-title{font-size:19px;margin:15px 0 25px}.mec-event-cover-classic .mec-event-date{font-size:12px}}@media only screen and (max-width:767px){.mec-event-cover-classic{margin-bottom:30px}}@media only screen and (max-width:479px){.mec-event-cover-classic .mec-event-content{padding:15px;font-size:15px}.mec-event-cover-classic .mec-event-title{font-size:15px;margin:10px 0}.mec-event-cover-classic .mec-event-button{font-size:10px;padding:6px;letter-spacing:1px}.mec-event-cover-classic .mec-event-icon{padding:10px}}.mec-load-more-wrap{text-align:center;display:block;width:100%;padding-top:20px;text-align:center;position:relative}.mec-load-more-button{box-shadow:none;transition:all .21s ease;font-size:12px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:2px solid #e8e8e8;border-radius:50px;padding:0 28px;margin-bottom:20px;cursor:pointer;line-height:40px;height:42px;display:inline-block}.mec-load-more-button:hover{background:#191919;color:#fff;border-color:#191919}.mec-load-more-loading{content:url("../img/ajax-loader.gif");cursor:wait;background:0 0;border-style:none}.mec-load-more-loading:hover{background:0 0}.mec-modal-preloader,.mec-month-navigator-loading{width:100%;height:100%;background:no-repeat rgba(255,255,255,.88) url("../img/ajax-loader.gif") center;border-style:none;position:absolute;left:0;right:0;bottom:0;top:0;z-index:9}.mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:1024px}.mec-calendar-side .mec-calendar-table{min-height:450px}.mec-skin-weekly-view-events-container.mec-month-navigator-loading{margin-top:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-skin-daily-view-events-container.mec-month-navigator-loading{margin-top:0}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar-side .mec-calendar-table{min-height:1px}}@media only screen and (max-width:479px){.mec-calendar-side .mec-calendar-table{min-height:1px}}.mec-event-cover-clean{position:relative;border:1px solid #e6e6e6;padding:8px}.mec-event-cover-clean .mec-event-overlay{height:100%;background-color:rgba(36,36,36,.4);position:absolute;width:100%;left:0;border:8px solid #fff;top:0;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-content{color:#fff;position:absolute;bottom:20px;padding:40px 60px;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-title{color:#fff;font-weight:700;margin:46px 0 19px;font-size:29px;text-transform:uppercase;text-shadow:0 0 1px rgba(0,0,0,.5)}.mec-event-cover-clean .mec-event-title a{color:#fff;transition:all .5s;text-decoration:none;outline:0;border:none;box-shadow:none}.mec-event-cover-clean .mec-event-title a:hover{text-decoration:underline}.mec-event-cover-clean .mec-event-date{position:absolute;top:-20px;right:60px;color:#fff;width:60px;padding:14px 10px;z-index:1}.mec-event-cover-clean .mec-event-date div{text-align:center;text-transform:uppercase;letter-spacing:1px;line-height:16px}.mec-event-cover-clean .mec-event-date .dday{padding-bottom:15px;border-bottom:1px solid rgba(255,255,255,.5);margin-bottom:13px;font-size:24px}.mec-event-cover-clean .mec-event-date .dmonth{letter-spacing:2px}.mec-event-cover-clean .mec-event-place{font-size:18px}.mec-event-cover-clean .mec-event-image img{width:100%}@media only screen and (max-width:768px){.mec-event-cover-clean .mec-event-content{padding:20px;bottom:5px}.mec-event-cover-clean .mec-event-title{font-size:23px}.mec-event-cover-clean .mec-event-date{right:20px;padding:10px;width:50px}}@media only screen and (max-width:479px){.mec-event-cover-clean .mec-event-content{padding:10px}.mec-event-cover-clean .mec-event-title{font-size:19px;padding-right:25px}.mec-event-cover-clean .mec-event-date{right:-20px;top:-10px}.mec-event-cover-clean .mec-event-detail{font-size:12px}}.mec-month-divider{text-align:center;margin:60px 0 40px 0}.widget .mec-month-divider{margin:10px 0}.mec-month-divider span{text-transform:uppercase;font-size:22px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-month-divider span:before{border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-30px;left:50%;width:60px}.widget .mec-month-divider span{font-size:13px}.mec-event-list-standard .mec-events-pagination{margin-top:60px;border-top:4px solid #ebebeb;min-height:80px;padding-top:20px}.mec-event-list-standard .mec-events-pagination .mec-events-pag-previous{float:left;margin-left:0}.mec-event-list-standard .mec-events-pagination .mec-events-pag-next{float:right;margin-right:0}.mec-event-list-standard .mec-event-article{position:relative;display:block;margin-bottom:25px;border:1px solid #e9e9e9;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-list-standard .mec-topsec{display:table;width:100%}.mec-event-list-standard .col-md-3.mec-event-image-wrap{padding-left:0}.mec-event-list-standard .mec-event-content{padding-top:15px;padding-right:30px}.mec-event-list-standard .mec-event-title{font-size:29px;font-weight:700;letter-spacing:-1px;margin:0 0 10px}.mec-event-list-standard .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-list-standard .mec-col-table-c{display:table-cell;height:100%;vertical-align:middle;float:none!important}.mec-event-list-standard .mec-col-table-c.mec-event-meta-wrap{padding-top:15px}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{vertical-align:top}.mec-topsec .mec-event-image{line-height:1px}.mec-topsec .mec-event-image a{display:block}.mec-event-list-standard .mec-event-meta-wrap{border-left:1px solid #eee}.mec-event-list-standard .mec-time-details{text-transform:uppercase;font-size:11px;font-weight:300;padding-top:0;text-align:left;padding-left:30px}.mec-event-list-standard .mec-event-meta .mec-event-address{font-style:normal;letter-spacing:0;font-size:12px;font-weight:300;margin:0 12px 0 0}.mec-event-list-standard .mec-event-meta span.mec-event-d,.mec-event-list-standard .mec-event-meta span.mec-event-m{font-size:17px;font-weight:700;padding-right:6px;color:#444;text-transform:uppercase}.mec-event-list-standard .mec-date-details,.mec-event-list-standard .mec-local-time-details,.mec-event-list-standard .mec-time-details,.mec-event-list-standard .mec-venue-details{position:relative;padding-left:28px;margin-bottom:10px}.mec-event-list-standard .mec-date-details:before,.mec-event-list-standard .mec-local-time-details:before,.mec-event-list-standard .mec-time-details:before,.mec-event-list-standard .mec-venue-details:before{content:"\f041";font-family:fontawesome;position:absolute;left:6px;font-size:15px}.mec-event-list-standard .mec-date-details:before{content:"\f073"}.mec-event-list-standard .mec-time-details:before{content:"\f017"}.mec-event-list-standard .mec-local-time-details:before{content:"\f0ac"}.mec-event-list-standard .mec-local-time-details .mec-local-title{display:block}.mec-event-list-standard .mec-local-time-details .mec-local-date,.mec-event-list-standard .mec-local-time-details .mec-local-time{font-style:normal;letter-spacing:0;font-size:11px;color:#8a8a8a;font-weight:300;line-height:1.6}.mec-event-list-minimal .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-meta-wrap .mec-price-details{margin-bottom:10px}.mec-price-details i{margin-right:4px;vertical-align:text-top}.mec-event-meta-wrap .mec-event-meta .mec-price-details i:before{font-size:15px}.mec-event-list-standard .mec-price-details{text-transform:uppercase;font-size:11px;font-weight:300}.mec-event-list-standard .mec-price-details i{margin-left:6px}.mec-month-side .mec-price-details{margin-left:2px}.mec-event-article .mec-price-details i,.mec-month-side .mec-price-details i,.tooltipster-sidetip.tooltipster-shadow:not(.uael-tooltipster-active) .tooltipster-content .mec-price-details i{padding-top:4px;vertical-align:unset}.mec-event-list-standard ul.mec-categories{position:relative;padding-left:28px;margin-bottom:10px}.mec-event-list-standard ul.mec-categories li.mec-category a:before{font-size:16px!important;content:"\f105";position:absolute;font-family:fontawesome;left:8px;font-size:15px}@media only screen and (max-width:960px){.mec-event-list-standard .mec-topsec{display:block}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:block;width:40%}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{display:block;min-height:230px}.mec-event-list-standard .mec-event-meta-wrap{display:block;border-left:none;border-top:1px solid #eee;width:100%;float:none;padding-top:20px}}@media only screen and (min-width:480px) and (max-width:960px){.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:table-cell}}@media only screen and (max-width:479px){.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap img{float:none;width:100%;padding:0}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{padding:10px 10px 10px 30px}}.mec-localtime-details{color:#777;font-weight:400;line-height:12px;font-size:12px}.mec-localtime-details .mec-localdate,.mec-localtime-details .mec-localtime,.mec-localtime-details .mec-localtitle{display:inline-block}.mec-localtime-details .mec-start-date-label{padding-right:5px}.mec-localtime-details .mec-localtime{padding-left:5px}.mec-event-list-minimal .mec-localtime-details{display:inline-flex;font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;padding-left:9px}.mec-event-grid-classic .mec-localtime-details,.mec-event-grid-clean .mec-localtime-details{color:#fff;font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:-.02em;color:#fff;padding:0 0;line-height:18px;margin-top:-3px}.mec-event-grid-clean .mec-localtime-details,.mec-event-grid-colorful .mec-localtime-details,.tooltipster-box .mec-localtime-details{line-height:22px;padding-top:10px}.mec-event-grid-colorful .mec-localtime-details{color:#fff}.mec-event-grid-classic .mec-localtime-details{text-align:center}.mec-event-grid-minimal .mec-localtime-details{line-height:22px}.mec-wrap .mec-yearly-view-wrap .mec-localtime-wrap i{display:inline-block;margin-left:-1px}.mec-timetable-t2-content .mec-local-time-details{padding-left:19px}.mec-timetable-t2-content .mec-local-time-details{position:relative}.mec-timetable-t2-content .mec-local-time-details:before{content:"\e007";font-family:simple-line-icons;position:absolute;font-size:12px;margin-right:4px;left:0}.mec-masonry .mec-masonry-col6 .mec-localtime-details{margin-top:10px;line-height:21px}.mec-masonry .mec-masonry-col6 .mec-localtime-details i{height:auto}.mec-event-cover-classic .mec-localtime-details{color:#fff;margin-top:12px}.mec-event-cover-classic .mec-localtime-details i{padding-right:8px}.mec-event-cover-clean .mec-localtime-details{color:#fff;margin-bottom:20px}.mec-event-cover-modern .mec-localtime-details{color:#fff;margin:10px 0;font-weight:400;font-size:18px}.mec-event-countdown-style1 .mec-localtime-details,.mec-event-countdown-style2 .mec-localtime-details,.mec-event-countdown-style3 .mec-localtime-details{color:#fff;padding:8px 5px 0;font-size:14px;line-height:25px}.mec-event-countdown-style1 .mec-localtime-details{text-align:center}.mec-event-hover-carousel-type4 .mec-localtime-details{display:block;color:#fff;font-size:11px}.mec-event-footer-carousel-type3 .mec-localtime-details .mec-localdate,.mec-event-footer-carousel-type3 .mec-localtime-details .mec-localtime,.mec-event-footer-carousel-type3 .mec-localtime-details .mec-localtitle,.mec-event-footer-carousel-type3 .mec-localtime-details span{display:inline-flex;line-height:20px;text-align:left;margin:0!important;font-size:12px;color:#777;line-height:28px}.mec-owl-crousel-skin-type1 .mec-localtime-details{margin-top:-7px;margin-bottom:12px}.mec-wrap .mec-slider-t5 .mec-localtime-details{margin-top:14px;line-height:20px}.mec-wrap .mec-slider-t5 .mec-localtime-details i{font-size:18px;height:20px}.mec-timeline-event-local-time{background:rgba(64,217,241,.11);display:inline-block;padding:7px 20px 11px;border-radius:20px;line-height:1.24}.mec-timeline-event-local-time .mec-localtime-details{font-size:13px;font-weight:500;vertical-align:middle;margin-left:6px;color:inherit;line-height:24px}.mec-timeline-event-local-time .mec-localtime-details i{font-size:17px;vertical-align:middle;margin-left:-7px;padding-right:3px}.mec-booking-modal{background-color:#e6f7ff}.mec-booking-modal .mec-booking-shortcode .mec-book-form-gateway-label input[type=radio]:before{top:-1px}.mec-modal-booking-button{box-shadow:none;transition:all .21s ease;font-size:11px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:1px solid #e8e8e8;padding:12px 16px;line-height:37px;height:38px;margin:12px 0}.mec-modal-booking-button:hover{background:#191919;color:#fff;border-color:#191919}.mec-modal-booking-button.mec-mb-icon i{font-size:14px}.mec-event-list-classic .mec-modal-booking-button{height:0;line-height:1;margin:7px 0 0;display:inline-table;letter-spacing:0;padding:12px 14px}.mec-event-grid-novel ul.mec-categories{position:relative;line-height:30px;font-size:15px}.mec-event-grid-novel ul.mec-categories li.mec-category a{padding-left:35px;color:rgba(255,255,255,.4);line-height:30px;font-size:15px}.mec-event-grid-novel ul.mec-categories li.mec-category a:before{font-size:16px!important;content:"\f105";position:absolute;font-family:fontawesome;left:8px;font-size:15px;color:rgba(255,255,255,.4)}.mec-calendar-events-side .mec-modal-booking-button,.mec-event-container-classic .mec-modal-booking-button,.mec-event-grid-minimal .mec-modal-booking-button,.mec-event-list-minimal .mec-modal-booking-button,.mec-timetable-t2-col .mec-modal-booking-button{margin:0;color:#282828;font-size:12px;transition:all .5s ease;-webkit-transition:all .5s ease;position:relative;padding:0 0 0 24px;background:0 0;text-align:left;display:inline;border:0;font-weight:700}.mec-timetable-t2-col .mec-modal-booking-button{color:#fff;padding-left:19px}.mec-timetable-t2-col .mec-modal-booking-button:hover{color:#282828}.mec-event-list-minimal .mec-modal-booking-button{margin:0 4px 0 84px}.mec-calendar-events-side .mec-modal-booking-button:before,.mec-event-container-classic .mec-modal-booking-button:before,.mec-event-grid-minimal .mec-modal-booking-button:before,.mec-event-list-minimal .mec-modal-booking-button:before{content:"";position:absolute;background:#7a7272;width:18px;height:1px;left:0;top:45%;transition:all .1s ease;-webkit-transition:all .1s ease}.mec-skin-carousel-container .mec-modal-booking-button{line-height:70px}.mec-event-list-modern .mec-modal-booking-button.mec-mb-icon{border-radius:1px;letter-spacing:2px;border:1px solid #e6e6e6;color:#333;background-color:#fff;padding:13px 12px 13px 14px;font-weight:700;box-shadow:0 2px 0 0 rgba(0,0,0,.016);transition:all .28s ease;line-height:unset}.mec-event-list-modern .mec-modal-booking-button.mec-mb-icon:hover{border-color:#222;background:#222;color:#fff}.mec-event-footer .mec-modal-booking-button,.mec-skin-carousel-container .mec-event-footer-carousel-type2 .mec-modal-booking-button{position:absolute;top:20px;right:125px;margin:0;padding:0 16px;line-height:37px}.mec-skin-carousel-container .mec-event-footer-carousel-type2 .mec-modal-booking-button{top:0;line-height:41px;height:41px;right:121px}.mec-skin-carousel-container .mec-event-footer-carousel-type3 .mec-modal-booking-button{line-height:18px;font-size:12px;letter-spacing:0;float:right;height:41px;margin:0 12px 0 0}.mec-skin-carousel-container .mec-owl-crousel-skin-type4 .mec-modal-booking-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none;margin:0 0 0 12px}.mec-skin-carousel-container .mec-owl-crousel-skin-type4 .mec-modal-booking-button:hover{color:#191919;background-color:#fff;border:2px #fff solid}.mec-event-grid-modern .mec-event-footer .mec-modal-booking-button{right:auto;left:110px}.mec-event-grid-simple .mec-modal-booking-button,.mec-events-agenda .mec-modal-booking-button{margin:0;font-size:12px;transition:all .5s ease;-webkit-transition:all .5s ease;position:relative;padding:0;background:0 0;text-align:left;display:inline;border:0;font-weight:700}.mec-events-agenda .mec-modal-booking-button{display:block;height:unset;padding-left:173px;line-height:14px;margin-bottom:7px}.mec-yearly-view-wrap .mec-modal-booking-button{margin:0;padding-left:14px;text-transform:capitalize}.mec-event-grid-novel .mec-event-footer .mec-modal-booking-button.mec-mb-icon{right:auto;left:238px;width:36px;height:36px;display:table-cell;vertical-align:middle;padding:0 10px;border-color:rgba(255,255,255,.1);background-color:rgba(0,0,0,0);color:#fff;border-radius:36px}.mec-event-grid-novel .mec-event-footer .mec-modal-booking-button.mec-mb-icon:hover{background-color:rgba(255,255,255,.1)}.mec-event-grid-simple .mec-modal-booking-button:hover,.mec-events-agenda .mec-modal-booking-button:hover,.mec-events-yearlu .mec-modal-booking-button:hover{color:#191919}.mec-event-masonry .mec-event-footer .mec-modal-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05);right:auto;left:155px}.mec-timeline-event .mec-modal-booking-button{position:absolute;top:0;right:0;display:inline-block;padding:7px 20px 7px;line-height:22px;height:unset;border:unset;text-transform:capitalize;font-weight:500;font-size:13px;letter-spacing:0;margin:0;border-radius:0 0 0 10px}.mec-timeline-event .mec-modal-booking-button:hover{background:#191919;color:#fff}.mec-skin-daily-view-events-container .mec-modal-booking-button,.mec-weekly-view-dates-events .mec-event-article .mec-modal-booking-button{position:absolute;top:50%;transform:translateY(-50%);right:15px;line-height:26px;height:49px;border:unset;text-align:center;display:inline-block;background:#ededed;color:#191919;padding:12px;border-radius:2px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2px;transition:all .24s ease;margin:0}.mec-skin-daily-view-events-container .mec-modal-booking-button:hover,.mec-weekly-view-dates-events .mec-event-article .mec-modal-booking-button:hover{background:#292929;color:#fff}@media (max-width:1023px){.mec-skin-daily-view-events-container .mec-modal-booking-button,.mec-weekly-view-dates-events .mec-event-article .mec-modal-booking-button{position:relative;top:unset;transform:unset;margin:14px 16px 0;padding:8px;line-height:20px;height:35px}}@media (max-width:768px){.featherlight .featherlight-inner{width:100%}.mec-events-agenda .mec-modal-booking-button{padding:0}}@media (max-width:480px){.mec-booking-modal .mec-events-meta-group-booking-shortcode{padding:20px}.mec-booking-modal .mec-booking-shortcode .mec-book-reg-field-mec_email,.mec-booking-modal .mec-booking-shortcode .mec-book-reg-field-name{width:100%}.mec-booking-modal .mec-booking-shortcode button#mec-book-form-btn-step-2{margin-left:20px}.mec-booking-modal .mec-booking-shortcode .mec-click-pay button[type=submit]{bottom:22px}.mec-calendar-events-side .mec-modal-booking-button:before,.mec-event-container-classic .mec-modal-booking-button:before,.mec-event-grid-minimal .mec-modal-booking-button:before,.mec-event-list-minimal .mec-modal-booking-button:before{display:none}.mec-calendar-events-side .mec-modal-booking-button,.mec-event-container-classic .mec-modal-booking-button,.mec-event-grid-minimal .mec-modal-booking-button,.mec-event-list-minimal .mec-modal-booking-button,.mec-timetable-t2-col .mec-modal-booking-button{margin:0;padding:0}.mec-event-grid-modern .mec-event-footer .mec-booking-button{top:20px}}.mec-wrap .mec-events-cal-links{margin-bottom:0}.mec-single-event #mec-wrap{padding:0;margin-top:35px}.mec-wrap .mec-single-title,.single-mec-events .mec-wrap.mec-no-access-error h1{margin-top:0;margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-event-content{padding:40px 0 30px;margin-bottom:10px}.mec-single-event .mec-events-meta-group-booking,.mec-single-event .mec-frontbox{margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-wrap #main-content{overflow:hidden;padding-top:35px}.mec-single-event .mec-map-get-direction-address-cnt{position:relative}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address{width:100%;height:46px;padding:13px 10px;margin-bottom:0;background:#fcfcfc;border:1px solid #e0e0e0;border-radius:0;box-shadow:inset 0 2px 5px rgba(0,0,0,.081)}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address:focus{color:#444;background:#fff;border-color:#b0b0b0;box-shadow:0 0 3px rgba(0,0,0,.2)}.mec-single-event .mec-map-get-direction-btn-cnt input{width:100%}.mec-single-event .mec-map-get-direction-reset{position:absolute;z-index:2;top:5px;right:10px;font-size:11px;cursor:pointer}.mec-events-meta-group-tags{margin-top:20px}.mec-events-meta-group-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-events-meta-group-tags a:hover{text-decoration:underline;background:#f9f9f9}.mec-local-time-details li{list-style:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative;border:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details ul{margin:0;padding-left:35px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3{border:none;padding-left:15px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3:before{display:none}.mec-single-event.mec-single-modern i.mec-sl-speedometer{display:none}.mec-single-modern .mec-local-time-details.mec-frontbox i{display:none}.mec-single-event .mec-events-meta-group-booking{padding-bottom:30px}.mec-single-event .mec-events-meta-group-booking ul{list-style:none;margin-left:0;padding-left:0}.mec-single-event .mec-events-meta-group-booking ul li{padding:0;list-style:none;margin-top:40px}.mec-single-event .mec-events-meta-group-booking h4{margin-bottom:20px;font-size:23px;font-weight:700}.mec-single-event .mec-events-meta-group-booking li h4{font-size:19px}.mec-single-event .mec-events-meta-group-booking button,.mec-single-event .mec-events-meta-group-booking input{border-radius:0;margin-bottom:6px}.mec-single-event .mec-events-meta-group-booking button{min-width:155px;margin-top:5px;margin-left:10px;border-radius:2px;box-shadow:0 2px 1px rgba(0,0,0,.08)}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-back-button{background:#c4cace;float:left}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-back-button:hover{background:#000}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-next-button{float:left;margin-left:0}button#mec-book-form-back-btn-step-3{float:none}.mec-next-occ-booking,.mec-next-occ-booking-p{padding-left:15px}.mec-events-meta-group-booking .mec-next-occ-booking,.mec-events-meta-group-booking .mec-next-occ-booking-p{padding:0;font-size:12px;letter-spacing:0;margin:3px 0;padding:5px 1em 3px 0}.mec-book-username-password-wrapper{padding:0 15px}.lity-container .mec-next-occ-booking,.lity-container .mec-next-occ-booking-p{padding-left:0}.mec-single-event .mec-events-meta-group-booking .mec-click-pay{max-width:350px}.mec-single-event .mec-events-meta-group-booking .mec-click-pay #mec_woo_add_to_cart_btn_r,.mec-single-event .mec-events-meta-group-booking .mec-click-pay button.mec-book-form-next-button{float:right}.mec-single-event .mec-events-meta-group-booking .mec-click-pay #mec_woo_add_to_cart_btn_r:hover,.mec-single-event .mec-events-meta-group-booking .mec-click-pay button.mec-book-form-next-button:hover{background:#000}.lity-container .mec-click-pay{max-width:400px}.lity-container .mec-book-form-btn-wrap button.mec-book-form-next-button,.lity-container .mec-click-pay #mec_woo_add_to_cart_btn_r{float:right}.lity-container button.mec-book-form-next-button{float:right}.lity-container .mec-click-pay #mec_woo_add_to_cart_btn_r:hover,.lity-container .mec-click-pay button.mec-book-form-next-button:hover{background:#000}.mec-single-event .mec-events-meta-group-booking .mec-click-next{float:right;position:relative;width:calc(100% - 186px)}.lity-container .mec-click-next{float:right;position:relative;width:calc(100% - 186px)}.mec-single-event .mec-book-form-coupon button{margin-left:0}.mec-single-event .mec-book-form-gateway-checkout button{margin-left:0}.mec-single-event .mec-single-event .mec-book-form-gateway-checkout button{margin-right:20px}.lity-content .mec-book-form-back-button{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px;background:#c4cace}.lity-content .mec-book-form-back-button:hover{background:#000}.lity-content button#mec-book-form-back-btn-step-3{float:none}.lity-content .mec-book-form-next-button{float:left}.lity-content .mec-book-bfixed-fields-container{list-style:none;padding-left:0}.mec-single-event .mec-book-first,.mec-single-event .mec-book-form-gateways,.mec-single-event .mec-book-form-price,.mec-single-event .mec-event-tickets-list,.mec-single-event form.mec-click-next{padding-left:0;padding-right:0}.mec-single-event label.mec-fill-attendees{margin-left:0}.mec-wrap .mec-events-meta-group-booking #mec-book-form-back-btn-step-2,.mec-wrap .mec-events-meta-group-booking #mec-book-form-back-btn-step-3,.mec-wrap .mec-events-meta-group-booking #mec-book-form-btn-step-1{margin-left:0}.mec-wrap .mec-booking-form-container .col-md-12{padding-left:0}.mec-wrap .mec-events-meta-group-booking .mec-wrap-checkout.row{margin:0}.mec-wrap .mec-wrap-checkout .mec-book-form-gateways .mec-book-form-gateway-label{padding-left:3px}.mec-wrap p.mec-gateway-comment{margin-top:20px}.mec-single-event .mec-events-meta-group-booking .mec-event-ticket-available{display:block;margin-bottom:20px;margin-top:-17px;font-size:11px;color:#8a8a8a}.mec-single-event .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.mec-single-event .mec-events-meta-group-booking form{margin:0}.mec-single-event .mec-events-meta-group-booking h5 span,.mec-single-event .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;display:block;clear:none;padding:5px 1em 3px 0}.mec-single-event .mec-events-meta-group-booking h5 span{display:inline-block}.mec-single-event .mec-events-meta-group-booking h5 span.mec-ticket-variation-name{padding-right:5px;text-transform:capitalize}.mec-single-event .mec-events-meta-group-booking input::-webkit-input-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input:-moz-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:330px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}.wbmec-mandatory{padding-left:5px;font-size:14px}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input,.mec-single-event .mec-events-meta-group-booking .mec-red-notification select,.mec-single-event .mec-events-meta-group-booking .mec-red-notification textarea{border:1px solid #ff3c3c!important}.lity .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.lity .mec-events-meta-group-booking .mec-red-notification input[type=radio],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=radio]{outline:1px solid #ff3c3c!important}.lity .mec-book-ticket-container .mec-red-notification input,.lity .mec-book-ticket-container .mec-red-notification select,.lity .mec-book-ticket-container .mec-red-notification textarea{border:1px solid #ff3c3c!important}.mec-booking .woocommerce-notices-wrapper .woocommerce-message{color:#0dbf52;background-color:#cef7ce;margin:0;padding-top:1rem;line-height:2.9rem;border:0}.mec-booking .woocommerce-notices-wrapper .woocommerce-message a{margin:0}@media only screen and (max-width:479px){.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{width:100%}}.mec-single-event .mec-events-meta-group-booking input[type=date]:focus,.mec-single-event .mec-events-meta-group-booking input[type=email]:focus,.mec-single-event .mec-events-meta-group-booking input[type=number]:focus,.mec-single-event .mec-events-meta-group-booking input[type=password]:focus,.mec-single-event .mec-events-meta-group-booking input[type=tel]:focus,.mec-single-event .mec-events-meta-group-booking input[type=text]:focus,.mec-single-event .mec-events-meta-group-booking select:focus,.mec-single-event .mec-events-meta-group-booking textarea:focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-single-event .mec-events-meta-group-booking input[type=radio]{margin-right:6px;margin-top:5px;min-height:20px;clear:none;margin:0 0 0 2px}.lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:18px;height:18px;margin:-1px 0 0 -3px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}.lity-container .mec-events-meta-group-booking input[type=radio]:checked:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.lity-container .mec-events-meta-group-booking input[type=radio],.mec-single-event .mec-events-meta-group-booking input[type=radio]{min-height:0;margin:0;margin-right:6px}.mec-single-event .mec-events-meta-group-booking input[type=checkbox]{float:left}.lity-container .mec-events-meta-group-booking .mec_book_first_for_all,.mec-single-event .mec-events-meta-group-booking .mec_book_first_for_all{display:none}.mec-events-meta-group-booking ul.mec-book-price-details{list-style:none;border:1px solid #eee;padding:0;overflow:hidden}.mec-events-meta-group-booking ul.mec-book-price-details li{font-size:15px;color:#a9a9a9;list-style:none;padding:13px 18px;margin:0;float:left;border-right:1px solid #eee}.mec-events-meta-group-booking ul.mec-book-price-details li:last-child{border-right:none}.mec-events-meta-group-booking ul.mec-book-price-details li span.mec-book-price-detail-amount{font-weight:700;font-size:21px;color:#222;display:contents}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label{height:14px;width:14px;background-color:transparent;border:1px solid #d4d4d4;position:relative;display:inline-block;-moz-transition:border-color ease .2s;-o-transition:border-color ease .2s;-webkit-transition:border-color ease .2s;transition:border-color ease .2s;cursor:pointer;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);vertical-align:middle;margin-right:3px;margin-top:-2px}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label{border-color:#008aff;box-shadow:0 2px 14px -3px #008aff}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{position:absolute;height:0;width:1px;background-color:#008aff;display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:"";-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{top:8px;left:7px;box-shadow:0 0 0 2px #fff;-moz-transform:rotate(-145deg);-ms-transform:rotate(-145deg);-o-transform:rotate(-145deg);-webkit-transform:rotate(-145deg);transform:rotate(-145deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before{height:12px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after{top:6px;left:3px;-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after{-moz-animation:dothabottomcheck 80ms ease 0s forwards;-o-animation:dothabottomcheck 80ms ease 0s forwards;-webkit-animation:dothabottomcheck 80ms ease 0s forwards;animation:dothabottomcheck 80ms ease 0s forwards;height:4px}.mec-single-event .mec-events-meta-group-booking button[type=submit]:after,.mec-single-event a.button:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.mec-single-event .mec-events-meta-group-booking button[type=submit].loading:after,.mec-single-event a.button.loading:after{display:inline-block}.mec-single-event .mec-event-export-module{display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{display:table;width:100%}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{display:table-cell}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li:last-child{text-align:right}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a:hover{color:#fff}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{padding-left:0;margin:15px 5px}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting{padding-left:0;margin:0}.mec-ticket-price{margin-left:10px;font-size:13px;font-weight:300}.mec-book-reg-field-checkbox label,.mec-book-reg-field-radio label{line-height:1.36}.mec-book-reg-field-checkbox input[type=checkbox],.mec-book-reg-field-radio input[type=radio]{float:left;margin-right:5px!important}.mec-ticket-available-spots .mec-event-ticket-description,.mec-ticket-available-spots .mec-event-ticket-price{font-size:11px}.mec-book-ticket-container .mec-reg-mandatory:nth-child(2) label:after,.mec-book-ticket-container .mec-reg-mandatory:nth-child(3) label:after,.mec-book-ticket-container .wbmec-mandatory{content:"";color:red;width:50px;height:50px;font-size:14px;padding-left:5px}@media only screen and (max-width:767px){.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{width:100%;min-height:40px;margin-bottom:15px;text-align:center;float:none;display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a{width:100%;padding-left:0;padding-right:0;text-align:center;display:block;font-size:12px}}.mec-single-event .mec-events-meta-group{margin-bottom:0}@media only screen and (max-width:767px){.mec-single-event .mec-events-meta-group-booking{margin-bottom:30px}}.mec-single-event .mec-event-meta dt,.mec-single-event .mec-event-meta h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-event .mec-event-meta h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-single-event .mec-event-meta .mec-events-event-categories a,.mec-single-event .mec-event-meta dd{font-size:14px;color:#8d8d8d}.mec-single-event .mec-event-meta .mec-location dd.author{color:#3c3b3b}.mec-single-event .mec-event-meta dd{margin:0;padding-left:35px}.mec-single-event .mec-event-meta dd.mec-events-event-categories{min-height:35px;line-height:35px}@media only screen and (max-width:480px){.single-mec-events .lity-container{width:100%}.single-mec-events .lity-content .mec-events-meta-group-booking{padding:20px;width:85%;margin:0 auto}}.mec-single-event .mec-event-meta dd.mec-events-event-categories:first-of-type{padding-top:5px}.mec-single-event .mec-event-meta dd.mec-events-event-categories:last-of-type{border-bottom:0}.mec-single-event .mec-event-meta dd a{color:#8d8d8d;transition:all .2s ease;-ms-word-wrap:break-word;word-wrap:break-word}.mec-single-event .mec-event-meta dd a i:before{font-size:16px!important}.mec-single-event .mec-event-meta dd a i{margin-right:8px}.mec-single-event .mec-event-meta dl{margin-bottom:0}.mec-single-event .mec-event-meta .mec-events-event-cost{font-size:18px}.mec-single-event .mec-event-meta .mec-events-address{color:#a9a9a9;margin-bottom:20px}.mec-single-event .mec-event-meta .mec-events-meta-group-venue .author{margin-bottom:0;color:#8d8d8d;font-size:13px}.mec-single-event .mec-events-event-image{margin-bottom:0}.mec-single-event h2.mec-single-event-title{margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-booking-button{border-bottom:none;letter-spacing:.5px;line-height:48px;height:76px;transition:all .5s ease;color:#fff;padding:16px;display:block;text-align:center;font-size:16px;border-radius:2px;box-shadow:0 1px 2px rgba(0,0,0,.15)}.mec-single-event .mec-booking-button:hover{background-color:#101010!important}.mec-single-event .mec-event-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-single-event .mec-event-tags:before{font-size:24px;color:#303030;margin-right:5px;content:"\f02c";font-family:fontawesome}.mec-single-event .mec-event-tags{padding-top:13px}.mec-single-event .mec-event-sharing{margin:30px 0 10px}.mec-region.mec-events-abbr,.mec-single-event .mec-street-address{font-style:normal;font-size:13px}.mec-events-meta-group.mec-events-meta-group-venue:before,.mec-single-event-date:before,.mec-single-event-time:before{color:#40d9f1}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-event-social h3{text-transform:uppercase;font-size:15px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-single-event .mec-social-single:before{padding:13px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:39px}.mec-single-event .mec-event-social .event-sharing{margin-top:30px}.mec-single-event .mec-event-social ul{list-style:none;margin-left:0;padding:0}.mec-single-event .mec-event-social li.mec-event-social-icon{display:inline-block}.mec-single-event .mec-event-social li.mec-event-social-icon a{display:inline-block;color:#fff;width:40px;height:40px;padding:9px;font-size:16px;margin-right:5px;margin-bottom:5px}.mec-single-event .mec-event-social a.facebook{background:#3b5996}.mec-single-event .mec-event-social a.facebook:hover{background:#28385c}.mec-single-event .mec-event-social a.twitter{background:#00acee}.mec-single-event .mec-event-social a.twitter:hover{background:#0087bd}.mec-single-event .mec-event-social a.vimeo{background:#0dadd6}.mec-single-event .mec-event-social a.vimeo:hover{background:#0a85a3}.mec-single-event .mec-event-social a.dribble{background:#d53e68}.mec-single-event .mec-event-social a.dribble:hover{background:#bf4c78}.mec-single-event .mec-event-social a.youtube{background:#cb322c}.mec-single-event .mec-event-social a.youtube:hover{background:#992622}.mec-single-event .mec-event-social a.pinterest{background:#cb2027}.mec-single-event .mec-event-social a.pinterest:hover{background:#99181d}.mec-single-event .mec-event-social a.google{background:#c3391c}.mec-single-event .mec-event-social a.google:hover{background:#99181f}.mec-single-event .mec-event-social a.linkedin{background:#0073b2}.mec-single-event .mec-event-social a.linkedin:hover{background:#005380}.mec-single-event .mec-event-social a.email{background:#ff5d5e}.mec-single-event .mec-event-social a.email:hover{background:#cc4949}.mec-single-event .mec-event-social a.vk{background:#5b88bd}.mec-single-event .mec-event-social a.vk:hover{background:#3d608a}.mec-single-event .mec-event-social a.tumblr{background:#34465d}.mec-single-event .mec-event-social a.tumblr:hover{background:#273649}.mec-single-event .mec-event-social a.telegram{background:#08c}.mec-single-event .mec-event-social a.telegram:hover{background:#1076be}.mec-single-event .mec-event-social a.whatsapp{background:#25d366}.mec-single-event .mec-event-social a.whatsapp:hover{background:#23ac55}.mec-single-event .mec-event-social a.flipboard{background:#e12828}.mec-single-event .mec-event-social a.flipboard:hover{background:#af1e1e}.mec-single-event .mec-event-social a.pocket{background:#ef4056}.mec-single-event .mec-event-social a.pocket:hover{background:#8d1717}.mec-single-event .mec-event-social a.reddit{background:#ff5700}.mec-single-event .mec-event-social a.reddit:hover{background:#c94909}.mec-single-event .mec-event-social a.flipboard svg,.mec-single-event .mec-event-social a.telegram svg{height:16px}.mec-single-event .mec-event-social li.mec-event-social-icon a svg{display:unset}.mec-single-event .mec-event-social a.rss{background:#f29a1d}.mec-single-event .mec-event-social a.rss:hover{background:#cc7400}.mec-single-event .mec-event-social a.instagram{background:#457399}.mec-single-event .mec-event-social a.instagram:hover{background:#2e4d66}.mec-single-event .mec-event-social a.linkedin{background:#457399}.mec-single-event .mec-event-social a.linkedin:hover{background:#2e4d66}.mec-single-event .mec-event-social a.other-social{background:#ff5d5e}.mec-single-event .mec-event-social a.other-social:hover{background:#cc4949}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4,.mec-single-event .mec-frontbox-title,.mec-single-event .mec-wrap-checkout h4{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4:before,.mec-single-event .mec-frontbox-title:before,.mec-single-event .mec-wrap-checkout h4:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:47%!important;margin-right:12px;margin-top:5px;display:inline-block!important}@media (max-width:768px){.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:100%!important;margin-right:0;display:block!important}}.mec-single-event .mec-booking .mec-booking-dates-checkboxes{margin-bottom:22px}.lity-content .mec-events-meta-group-booking .mec-booking-dates-checkboxes label,.mec-single-event .mec-booking .mec-booking-dates-checkboxes label{margin-bottom:3px;line-height:1.1}.lity-content .mec-events-meta-group-booking .mec-booking-dates-checkboxes label{display:flex}.lity-content .mec-events-meta-group-booking .mec-booking-dates-checkboxes input[type=checkbox],.mec-booking input[type=checkbox],.mec-single-event .mec-events-meta-group-booking .mec-booking-dates-checkboxes input[type=checkbox]{width:17px;height:17px;min-height:unset;border-radius:3px;margin-top:-2px;margin-right:7px!important;margin-bottom:0!important}.lity-content .mec-events-meta-group-booking .mec-booking-dates-checkboxes input[type=checkbox]{margin-top:-1px}.mec-events-meta-group-booking-shortcode .mec-booking-dates-checkboxes label{display:flex}.mec-events-meta-group-booking-shortcode .mec-booking-dates-checkboxes input[type=checkbox]{margin-top:1px}.mec-event-meta i:before{font-size:20px;vertical-align:middle}.mec-event-meta .mec-single-event-additional-organizers i:before,.mec-event-meta .mec-single-event-organizer i:before{font-size:14px;vertical-align:baseline}#mec-wrap .mec-events-day-time-slot .mec-events-content{float:left;width:33%;padding:0 15px}#mec-wrap .mec-events-day-time-slot .mec-events-event-image{padding-left:0}#mec-events-content .mec-events-abbr{color:#8d8d8d;font-size:14px}.mec-single-event .mec-events-content{margin-bottom:30px}.mec-single-event .mec-organizer-url a{word-wrap:break-word}.mec-single-event #headline{margin:0 0 10px}.mec-single-event #headline h2{padding:0}.mec-single-event .mec-events-meta-group.mec-events-meta-group-gmap .mec-events-venue-map{margin-top:0;padding:8px;border:1px solid #e5e5e5;border-radius:7px}#mec-events-gmap-0{height:325px!important}.mec-events-list .mec-events-day-time-slot .mec-events-event-meta{width:33%;float:left;padding:40px;height:auto;margin:0}.mec-events-day-time-slot .mec-events-content.description.entry-summary{font-size:15px;font-weight:300;color:#8d8d8d}.mec-events-day-time-slot .type-mec_events h2{font-size:28px;padding-bottom:20px}.mec-events-day .mec-events-day-time-slot .type-mec_events{margin:0}.mec-events-day .mec-events-day-time-slot h5{background-color:#8d8d8d}.mec-single-event .mec-event-meta .mec-single-event-additional-organizers .mec-events-single-section-title,.mec-single-event .mec-event-meta .mec-single-event-organizer .mec-events-single-section-title,.mec-single-event .mec-events-meta-date h3{padding-left:0;margin:10px;display:inline-block}.mec-single-event .mec-events-meta-date h3{width:100%}.mec-single-event .mec-events-event-image{border:0}.mec-single-event .mec-events-venue-map{padding:0}.mec-event-cost,.mec-event-more-info,.mec-event-website,.mec-events-meta-date,.mec-single-event-additional-organizers,.mec-single-event-category,.mec-single-event-date,.mec-single-event-label,.mec-single-event-location,.mec-single-event-organizer,.mec-single-event-time{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative}.mec-single-event .mec-events-meta-date dd,.mec-single-event .mec-single-event-additional-organizers dd,.mec-single-event .mec-single-event-organizer dd{padding-left:0;margin-bottom:10px}.mec-single-event .mec-event-meta dd.mec-organizer-email a,.mec-single-event .mec-events-meta-date dd span,.mec-single-event .mec-single-event-additional-organizers dd span,.mec-single-event .mec-single-event-organizer dd span{display:block;padding-left:41px;color:#8d8d8d}.mec-single-event .mec-events-meta-date i,.mec-single-event .mec-single-event-additional-organizers i,.mec-single-event .mec-single-event-organizer i{margin-right:10px;margin-left:12px}.mec-events-meta-group.mec-events-meta-group-venue dl{margin-bottom:0}address.mec-events-address{line-height:19px;font-style:normal;font-size:12px}.mec-single-event .mec-event-content dt{margin-top:5px}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer{margin-bottom:15px;padding-bottom:5px;border-bottom:1px solid #e4e4e4}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer:last-child{margin-bottom:0;padding-bottom:0;border:none}.mec-event-category-color{width:9px;height:9px;display:inline-block;vertical-align:middle;margin:0 0 0 4px;border-radius:9px}.mec-event-schedule-content{border-left:4px solid #f0f0f0;padding-top:10px;margin-top:30px;margin-left:25px;margin-bottom:20px;color:#8a8a8a}.mec-event-schedule-content dl{padding-left:24px;font-size:12px;position:relative;margin-bottom:35px}.mec-event-schedule-content dl:before{content:"";display:block;position:absolute;left:0;top:4px;width:20px;height:0;border-top:4px solid #f0f0f0}.mec-event-schedule-content dl dt{margin:0 0 10px;line-height:1.16}.mec-event-schedule-content dl dt.mec-schedule-title{font-size:13px;color:#5a5a5a;font-weight:700}.mec-event-schedule-content dl dt.mec-schedule-description{font-weight:300}.mec-event-schedule-content .mec-schedule-speakers{background:#f7f7f7;padding:10px}.mec-wrap .mec-event-schedule-content h6{font-size:13px;color:#5a5a5a;font-weight:700;display:inline-block}.mec-wrap .mec-event-schedule-content a{font-weight:400;color:#5a5a5a;transition:all .1s ease}.single-mec-events .mec-speakers-details ul{padding:0;margin-left:0}.mec-single-event .mec-speakers-details ul li{list-style:none;background:#f7f7f7;padding:5px 5px 18px 5px;margin-top:14px}.mec-single-event .mec-speakers-details ul li a{-webkit-transition:.2s all ease;transition:.2s all ease}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a img{float:left;border-radius:50%;transition:.2s all ease;border:2px solid transparent;width:68px;height:68px}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a:hover img{border-color:#40d9f1}.mec-single-event .mec-speakers-details ul li .mec-speaker-name{display:inline-block;margin-top:10px;font-size:15px;line-height:1.8;text-transform:capitalize;font-weight:700;padding-left:8px}.mec-single-event .mec-speakers-details ul li .mec-speaker-job-title{display:block;font-size:12px;margin-top:-1px;padding-left:75px;color:#888}.mec-single-event-location img,.mec-single-event-organizer img{margin-bottom:10px;width:100%}.mec-qrcode-details{text-align:center}.mec-time-comment{font-size:11px}.mec-wrap .mec-attendees-list-details p{font-weight:300;margin:20px 0 0 0;color:#8d8d8d}.mec-wrap .mec-attendees-list-details li{list-style:none;display:block;margin-top:15px}.mec-wrap .mec-attendees-list-details li .mec-attendee-avatar{display:inline-block}.mec-wrap .mec-attendees-list-details li .mec-attendee-profile-link{display:inline-block;vertical-align:top;margin-left:10px}.mec-attendees-list-details ul{margin-bottom:0}.mec-attendees-list-details .mec-attendee-profile-link a{color:#8d8d8d;display:block}.mec-attendees-list-details .mec-attendee-profile-link span{display:inline-block;color:#000;vertical-align:middle;cursor:pointer}.mec-attendees-list-details span.mec-attendee-profile-ticket-number{border-radius:50px;width:20px;height:20px;font-size:12px;text-align:center;color:#fff;margin-right:4px;line-height:20px}#wrap .mec-attendees-list-details span.mec-attendee-profile-ticket-number{line-height:19px}.mec-attendees-list-details .mec-attendee-profile-link span i{vertical-align:middle;font-size:9px;font-weight:700;margin-left:5px}.mec-attendees-list-details .mec-attendees-toggle{border:1px solid #e6e6e6;background:#fafafa;padding:15px 15px 0;border-radius:3px;margin:12px 0 20px 52px;position:relative;font-size:13px;box-shadow:0 3px 1px 0 rgba(0,0,0,.02)}.mec-attendees-list-details .mec-attendees-toggle:after,.mec-attendees-list-details .mec-attendees-toggle:before{content:"";display:block;position:absolute;left:50px;width:0;height:0;border-style:solid;border-width:10px}.mec-attendees-list-details .mec-attendees-toggle:after{top:-20px;border-color:transparent transparent #fafafa transparent}.mec-attendees-list-details .mec-attendees-toggle:before{top:-21px;border-color:transparent transparent #e1e1e1 transparent}.mec-attendees-list-details .mec-attendees-toggle .mec-attendees-item{padding-bottom:15px}.mec-attendees-list-details .mec-attendee-avatar img{border-radius:3px}.mec-attendee-avatar-sec{float:left;width:50px;margin-right:12px}.mec-attendee-profile-name-sec,.mec-attendee-profile-ticket-sec{float:left;width:calc(100% - 62px);margin-top:3px}.mec-calendar{margin-bottom:20px;border:1px solid #e8e8e8;width:100%;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-calendar .mec-calendar-topsec{display:table;background:#fff}.mec-calendar .mec-calendar-topsec .mec-calendar-events-sec{display:none}.mec-calendar .mec-calendar-side{width:590px;display:table-cell;padding:40px;position:relative;text-align:center;box-shadow:0 1px 5px 6px rgba(0,0,0,.005) inset}.mec-calendar .mec-calendar-events-side{display:table-cell;height:100%;border-left:1px solid #efefef;padding:40px;width:100%}.mec-calendar .mec-calendar-events-side .mec-table-side-day{width:46px;height:46px;margin:0 auto 20px;position:relative;text-align:center;line-height:46px;border:1px solid #40d9f1;border-radius:50%;font-size:12px;font-weight:600;padding:0}.mec-calendar .mec-calendar-events-side .mec-table-side-title{text-align:center;font-size:11px;text-transform:uppercase;letter-spacing:3px;margin-bottom:14px}.mec-calendar .mec-calendar-header{position:relative;width:560px;margin-top:8px;margin-bottom:16px}.mec-calendar .mec-calendar-header h2{text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-calendar .mec-event-footer{width:auto;min-height:60px}.mec-calendar dl{display:table;margin:0;border:none;padding:0;table-layout:fixed}.mec-calendar dt{display:table-cell;transition:all .66s ease;color:#4d4d4d;background:#fff;border-radius:44px;font-size:14px;width:80px;height:80px;line-height:80px;text-align:center}.excerpt-wrap .mec-wrap dt,.nv-content-wrap .mec-wrap dt{display:table-cell}.mec-calendar .mec-calendar-table .mec-no-event{display:none}.mec-calendar .mec-calendar-table-head dt{font-weight:700;text-transform:uppercase;font-size:15px}.mec-calendar .mec-calendar-row dt:hover{background:#f4f4f4}.mec-calendar .mec-table-nullday{color:#cacaca}.mec-calendar.mec-box-calendar .mec-table-nullday:last-child{border-right:1px solid #eaeaea}.mec-calendar .mec-next-month:hover,.mec-calendar .mec-prev-month:hover{background:#f4f4f4}.mec-calendar .mec-selected-day,.mec-calendar .mec-selected-day:hover{background:#40d9f1;color:#fff}.mec-calendar .mec-selected-day a{color:#fff}.mec-calendar .mec-has-event{position:relative}.mec-calendar .mec-calendar-row dt.mec-has-event:hover{background:#40d9f1}.mec-calendar .mec-has-event a{cursor:pointer;display:block;width:100%;height:100%;border-radius:50%;color:#4d4d4d;transition:all .25s ease;text-decoration:none;box-shadow:none}.mec-calendar .mec-calendar-row dt.mec-has-event.mec-selected-day a,.mec-calendar .mec-calendar-row dt.mec-has-event:hover a{color:#fff}.mec-calendar .mec-has-event:after{background-color:#40d9f1;border-radius:50%;display:block;content:"";width:8px;height:8px;bottom:14px;left:50%;margin:-4px 0 0 -4px;position:absolute;transition:all .25s ease}.mec-calendar .mec-calendar-row dt.mec-has-event:hover:after{background-color:#fff}.mec-calendar .mec-has-event.mec-selected-day:after{display:none}.mec-calendar .mec-event-article{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease}.mec-calendar .mec-event-article:hover{background-color:#fafafa}.mec-calendar .mec-event-article .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-calendar .mec-event-article .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-calendar .mec-event-article .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-calendar .mec-event-article .mec-event-title a:hover{color:#40d9f1}.mec-calendar .mec-event-article .mec-event-image,.mec-calendar .mec-event-list-classic .mec-event-image img{width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-detail,.mec-calendar .mec-event-article .mec-localtime-details div{font-size:13px;line-height:1.3;color:#9a9a9a;margin-bottom:0}.mec-calendar .mec-calendar-side .mec-next-month,.mec-calendar .mec-calendar-side .mec-previous-month{cursor:pointer;position:absolute;top:0;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;color:#a9a9a9;font-size:12px;letter-spacing:1px;text-transform:uppercase;padding-left:10px;padding-right:10px;border:1px solid #efefef;border-top:none;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease}.mec-calendar .mec-calendar-side .mec-next-month i,.mec-calendar .mec-calendar-side .mec-previous-month i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-calendar .mec-calendar-side .mec-previous-month:hover{background-color:#f9f9f9;color:#40d9f1}.mec-calendar .mec-calendar-side .mec-previous-month{left:0;border-bottom-right-radius:6px;border-left:none}.mec-calendar .mec-calendar-side .mec-next-month{right:0;border-bottom-left-radius:6px;border-right:none}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-side{width:370px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-header{position:relative;width:350px;margin-top:30px;margin-bottom:20px;padding-top:20px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) dt{width:50px;height:50px;line-height:50px}.mec-wrap.mec-sm959 .mec-calendar.mec-event-calendar-classic dl dt{height:110px}}@media only screen and (max-width:1200px){.mec-calendar .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-calendar .mec-calendar-side{width:370px}.mec-calendar .mec-calendar-header{position:relative;width:350px;margin-top:30px}.mec-calendar dt{width:50px;height:50px;line-height:50px}}@media only screen and (max-width:767px){.mec-calendar .mec-calendar-header h2{font-size:18px}.mec-calendar .mec-calendar-topsec{width:100%}.mec-calendar .mec-calendar-side{width:100%;display:block;padding:30px}.mec-calendar .mec-calendar-header{width:auto}.mec-calendar .mec-calendar-events-side{width:100%;display:block;height:100%;border-left:none;border-top:1px solid #efefef;padding:20px}.mec-calendar dl{width:100%}.mec-calendar dt{width:14%;height:60px;line-height:60px;border-radius:50px}}@media only screen and (max-width:479px){.mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-calendar .mec-calendar-header h2{font-size:16px;margin-top:33px}.mec-calendar dt{height:38px;line-height:38px}.mec-calendar .mec-event-list-classic .mec-event-detail,.mec-calendar .mec-event-list-classic .mec-event-title{font-size:12px}.mec-calendar .mec-event-list-classic .mec-event-time{font-size:10px}}.mec-box-calendar.mec-calendar .mec-has-event a,.mec-box-calendar.mec-calendar dt{border-radius:0}.mec-box-calendar.mec-calendar .mec-calendar-header{margin-top:2px;margin-bottom:30px}.mec-box-calendar.mec-calendar dt{border-bottom:1px solid #eaeaea;border-left:1px solid #eaeaea}.mec-box-calendar.mec-calendar dl dt:last-child{border-right:1px solid #eaeaea}.mec-box-calendar.mec-calendar .mec-calendar-table-head dt{border-top:1px solid #eaeaea;background-color:#f8f8f8}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{background-color:#f4f4f4}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{border-radius:2px;top:40px;border:1px solid #eee;height:30px;line-height:30px;z-index:1}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:40px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:40px}.mec-box-calendar.mec-calendar .mec-calendar-side{box-shadow:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side{border:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side .mec-table-side-day{border-radius:2px}.mec-box-calendar.mec-calendar h4.mec-month-label{position:relative;width:560px;margin-top:2px;margin-bottom:30px;text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-widget .mec-box-calendar.mec-calendar h4.mec-month-label{width:100%;margin-top:8px;font-size:13px}@media only screen and (max-width:1200px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:42px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:42px}.mec-calendar .mec-calendar-header h2{font-size:17px;margin-top:7px}}@media only screen and (max-width:767px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:28px;font-size:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:30px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:30px}.mec-calendar .mec-calendar-header h2{font-size:15px}}@media only screen and (max-width:479px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:16px;font-size:0px;padding:4px 0;text-align:center;min-width:33px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:10px}.mec-box-calendar.mec-calendar .mec-calendar-header h2{font-size:12px;margin-top:15px}.mec-box-calendar.mec-calendar .mec-event-image{margin-right:12px}}.mec-calendar.mec-event-calendar-classic,.mec-calendar.mec-event-calendar-classic .mec-calendar-side{border:none;padding:0;width:100%;height:100%;box-shadow:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-calendar.mec-event-calendar-classic .mec-calendar-header,.mec-calendar.mec-event-calendar-classic dl{width:100%}.mec-calendar.mec-event-calendar-classic dl dt{width:15%;height:136px;line-height:1.2;text-align:left;padding:5px 7px;position:relative}.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{height:30px!important}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{top:0}.mec-calendar.mec-event-calendar-classic .mec-has-event:after{bottom:auto;top:24px;left:7px;margin:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{left:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month{right:0}.mec-next-month a,.mec-previous-month a{pointer-events:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{text-align:left;background:#fafafa;border:1px solid #eaeaea;border-top:none;padding:10px 20px}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{display:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-event-article:hover{background-color:#fcfcfc}.mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover{color:#40d9f1;font-weight:700;background:#fafafa;border-bottom:none}.mec-wrap .mec-calendar.mec-event-calendar-classic:not(.mec-event-container-simple) .mec-selected-day:hover{color:#fff!important}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day,.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{display:inline-block;margin:0;margin-bottom:15px;font-weight:700}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day{margin-left:4px}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event a{color:#4d4d4d}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event:not(.mec-selected-day):hover a{color:#fff}@media only screen and (max-width:1200px){.mec-calendar.mec-event-calendar-classic dl dt{height:100px}}@media only screen and (max-width:767px){.mec-calendar.mec-event-calendar-classic dl dt{height:40px}}@media only screen and (max-width:479px){.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{padding:10px}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-header h2{font-size:13px;margin-top:8px}}.mec-calendar .mec-event-article.mec-single-event-novel{padding:4px 8px;min-height:25px;margin:0 -4px;border-radius:0}.mec-calendar .mec-event-article.mec-single-event-novel h4{margin:0;font-size:10px;line-height:18px}.mec-calendar.mec-event-container-novel dl dt{padding:3px}.mec-calendar.mec-event-calendar-classic .mec-calendar-novel-selected-day{display:inline-block;padding:4px;margin-left:1px}.mec-wrap .mec-calendar.mec-event-container-novel .mec-selected-day:hover{color:#fff!important}.mec-calendar.mec-event-calendar-classic .mec-selected-day .mec-calendar-novel-selected-day{color:#fff}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-selected-day,.mec-calendar.mec-event-calendar-classic.mec-event-container-novel dt.mec-selected-day:hover{border-bottom:1px solid #eaeaea}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-calendar-side .mec-calendar-table{min-height:auto}.mec-single-event-novel.light h4{color:#000!important}.mec-single-event-novel.dark h4{color:#fff!important}@media only screen and (max-width:768px){.mec-calendar .mec-event-article.mec-single-event-novel{padding:0;min-height:5px}.mec-calendar .mec-event-article.mec-single-event-novel h4{display:block;font-size:9px}}.mec-event-container-simple .event-single-content-simple{display:none}.mec-event-calendar-classic.mec-event-container-simple .mec-calendar-side .mec-calendar-table{min-height:unset}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:13px;font-weight:500;margin:0;color:#444}.mec-event-container-simple .mec-monthly-tooltip h4:hover{text-decoration:underline;color:#111}.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple{border-bottom:1px dashed #e3e3e3;padding:10px 2px;display:block}.mec-calendar.mec-event-container-simple dl dt.mec-calendar-day{font-size:30px;color:#000}.mec-calendar.mec-event-container-simple .mec-calendar-row dt:hover{background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-row dt,.mec-calendar.mec-event-container-simple .mec-calendar-row dt:last-child,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt:last-child{border-width:2px}.mec-calendar.mec-event-container-simple dl dt.mec-selected-day,.mec-calendar.mec-event-container-simple dl dt.mec-selected-day:hover{border-bottom:2px solid #40d9f1;background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt{line-height:36px}@media (max-width:768px){.mec-calendar.mec-event-container-simple{overflow-x:scroll}.mec-calendar.mec-event-container-simple .mec-calendar-side{min-width:100%}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:12px}.mec-event-container-simple .mec-calendar-side{min-width:600px!important;overflow-x:scroll}}.mec-wrap.colorskin-custom .mec-calendar.mec-event-container-simple .mec-selected-day:hover{background:#f4f4f4}.mec-event-container-simple .mec-calendar-day .mec-monthly-tooltip.event-single-link-simple:last-of-type{border:none}.mec-tooltip-event-title{font-size:16px;font-weight:700;color:#000;margin-bottom:2px}.mec-tooltip-event-time,.tooltipster-sidetip.tooltipster-shadow:not(.uael-tooltipster-active) .tooltipster-content .mec-price-details{font-size:12px;color:#888;margin-bottom:8px;margin-top:5px}.tooltipster-sidetip.tooltipster-shadow:not(.uael-tooltipster-active) .tooltipster-content{padding:17px}.mec-tooltip-event-content{clear:both}.mec-tooltip-event-featured{float:left;margin-right:13px;margin-bottom:1px}.mec-tooltip-event-featured img{max-width:120px}.mec-tooltip-event-desc{font-size:14px;color:#444;line-height:18px}.mec-tooltip-event-desc p{font-size:13px;line-height:1.4;margin-bottom:10px}.tooltipster-sidetip.tooltipster-shadow:not(.uael-tooltipster-active) .tooltipster-box{border-radius:3px!important;border:1px solid #e2e3e4!important;background:#fff!important;box-shadow:0 -1px 30px -2px rgba(0,0,0,.15)!important}.tooltipster-box .mec-tooltip-event-desc{margin-bottom:12px}.tooltipster-sidetip:not(.uael-tooltipster-active) .tooltipster-arrow{overflow:visible!important}.tooltipster-sidetip.tooltipster-shadow:not(.uael-tooltipster-active) .tooltipster-arrow-border{border-width:12px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right:not(.uael-tooltipster-active) .tooltipster-arrow-border{border-right-color:#e2e3e4!important}.tooltipster-sidetip:not(.uael-tooltipster-active) .tooltipster-arrow-border{left:-12px!important;z-index:9999999999!important}.tooltipster-sidetip.tooltipster-shadow:not(.uael-tooltipster-active) .tooltipster-arrow-background{display:block!important}.tooltipster-sidetip:not(.uael-tooltipster-active) .tooltipster-arrow-background{border-width:11px!important;z-index:99999999999!important}.tooltipster-sidetip.tooltipster-right:not(.uael-tooltipster-active) .tooltipster-arrow-background{left:-9px!important;top:1px!important;border-right-color:#fff!important}.tooltipster-sidetip.tooltipster-top:not(.uael-tooltipster-active) .tooltipster-arrow-background{border-top-color:#fff!important;left:0!important;top:-1px!important}.tooltipster-sidetip.tooltipster-top:not(.uael-tooltipster-active) .tooltipster-arrow-border{left:-1px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-top:not(.uael-tooltipster-active) .tooltipster-arrow-border{border-top-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom:not(.uael-tooltipster-active) .tooltipster-arrow-border{left:-1px!important;top:-11px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom:not(.uael-tooltipster-active) .tooltipster-arrow-border{border-bottom-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-bottom:not(.uael-tooltipster-active) .tooltipster-arrow-background{top:-9px!important;border-bottom-color:#fff!important}.tooltipster-sidetip.tooltipster-left:not(.uael-tooltipster-active) .tooltipster-arrow-background{border-left-color:#fff!important;left:-2px!important;top:0!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left:not(.uael-tooltipster-active) .tooltipster-arrow-border{border-left-color:#e2e3e4!important;left:-1px!important;top:-1px!important}@media (max-width:780px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{word-break:break-all;font-size:13px}}@media (max-width:320px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{font-size:10px}}.mec-calendar.mec-calendar-daily .mec-calendar-day-events .mec-event-article{padding-left:15px;padding-right:15px;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month{text-align:center;background-color:#fff;border-bottom:2px solid #f4f4f4;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{color:#444;font-size:18px;line-height:1.2;padding:15px 0 11px;margin:0;font-weight:700;letter-spacing:1px;text-transform:uppercase;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-top{text-align:center;padding:10px 0;position:relative;background-color:#fafafa}.mec-calendar.mec-calendar-daily .mec-next-month,.mec-calendar.mec-calendar-daily .mec-previous-month{position:absolute;top:50%;left:50%;margin-top:-25px;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;border:1px solid #e2e2e2;border-radius:50px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month i,.mec-calendar.mec-calendar-daily .mec-previous-month i{font-size:14px;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-calendar.mec-calendar-daily .mec-previous-month:hover{border-color:#d0d0d0;color:#444;box-shadow:0 2px 5px 0 rgba(0,0,0,.075)}.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-150px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:100px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month{min-height:28px;height:28px;line-height:28px;width:28px;margin-top:-14px;border-radius:3px}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2,.mec-calendar.mec-calendar-daily .mec-calendar-d-top h3{margin-top:9px;color:#b9b9b9;font-size:30px;font-weight:100;text-transform:uppercase;margin-bottom:12px;line-height:1}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2{font-size:81px;color:#444;margin-bottom:10px;line-height:1.1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table{overflow:hidden;background:#fff;min-height:60px;border-top:1px solid #e6e6e6;border-bottom:2px solid #f3f3f3;padding:0 50px;position:relative}@media only screen and (min-width:479px){.mec-calendar.mec-calendar-daily .mec-calendar-d-table{padding:0 55px}}.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl{width:1310px;display:block}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{display:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl.mec-weekly-view-week-active{display:flex}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt{display:block;background:#fff;width:42px;height:60px;line-height:60px;text-align:center;float:left;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6;border-radius:0}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day:hover,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt:hover{background:#fafafa;box-shadow:0 2px 5px 0 rgba(0,0,0,.065) inset;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day{cursor:default;background:#fff;color:#c1c1c1;line-height:59px;text-align:center;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event{cursor:pointer;font-weight:700;color:#4a4a4a}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-daily-view-day-active,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt.mec-table-d-current{font-size:18px;font-weight:700;background:#fafafa;color:#40d9f1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev{float:none;font-size:14px;width:55px;position:absolute;top:0;left:0;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next{left:auto;right:0;border-left:1px solid #e6e6e6;border-right:none}.mec-calendar.mec-calendar-daily .mec-today-container .mec-today-count{font-size:12px;color:#888;text-align:center}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}}.widget .mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}.widget .mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.widget .mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-util-hidden{display:none}.mec-daily-view-date-events,.mec-weekly-view-date-events{list-style:none;margin:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table{padding:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{width:calc(100% - 1px)}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt{width:100%;height:70px;line-height:normal;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover{background:#fff;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:last-child{border-right:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:12px;font-weight:700;text-transform:uppercase;display:block;margin:15px 0 6px}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-prev{display:none}ul.mec-weekly-view-dates-events,ul.mec-weekly-view-dates-events li{padding:0;margin:0;line-height:initial}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-previous-month{margin-left:0;left:12px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-next-month{margin-left:0;left:auto;right:12px}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}}.widget .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}.mec-week-events-container .mec-weekly-view-dates-events li.mec-no-event-found{list-style:none!important}li.mec-no-event-found .mec-event-title{text-align:center}.mec-widget .mec-calendar{max-width:100%}.mec-widget .mec-calendar dl dt,.mec-wrap.mec-sm959.mec-widget .mec-calendar.mec-event-calendar-classic dl dt{height:40px}.mec-widget .mec-calendar .mec-calendar-events-sec{padding:10px}.mec-widget .mec-calendar .mec-calendar-header h2{font-size:13px;margin-top:8px}.mec-widget .mec-calendar .mec-event-list-classic .mec-event-image{margin-right:12px}.mec-widget .mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-widget .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{font-size:14px}.mec-widget .mec-calendar .mec-event-article .mec-event-image{margin-right:11px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-header{margin-bottom:20px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{font-size:0px;padding:4px 0;text-align:center;min-width:33px}.mec-widget .mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-widget .mec-event-list-classic{margin-bottom:8px;padding:8px 0}.mec-widget .mec-event-list-classic .mec-event-article{margin-bottom:0;padding:10px 0;position:relative;min-height:86px;padding-left:80px}.mec-widget .mec-event-list-classic .mec-event-date{font-size:10px;line-height:14px;text-transform:uppercase}.mec-widget .mec-event-list-classic .mec-event-title{font-size:13px}.mec-widget .mec-event-list-classic .mec-event-detail{font-size:11px}.mec-widget .mec-event-list-classic .mec-event-image{width:68px;position:absolute;left:0}.mec-event-list-classic .mec-event-image img{width:100%}.mec-widget .mec-event-list-classic .mec-event-detail{overflow:visible}.event-color{width:14px;display:inline-block;height:14px;margin-left:5px;border-radius:50%}.mec-map-lightbox-wp{width:580px;padding:15px 15px 0;background-color:#fff}.mec-map-view-event-detail.mec-event-detail{width:580px;background-color:#e9e9e9;padding:8px 15px}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-article{padding:0 0 15px;margin:0}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-image{width:70px;margin-right:15px}.mec-marker-infowindow-wp{padding:10px}.mec-marker-infowindow-wp .mec-marker-infowindow-count{width:60px;height:60px;display:block;text-align:center;line-height:60px;border:1px solid #40d9f1;border-radius:50%;font-size:32px;color:#40d9f1;float:left;margin-right:11px}.mec-marker-infowindow-wp .mec-marker-infowindow-content{overflow:hidden;padding-top:6px}.mec-marker-infowindow-wp .mec-marker-infowindow-content span{display:block;color:#222}.mec-marker-infowindow-wp .mec-marker-infowindow-content span:first-child{font-size:15px;font-weight:700}.mec-marker-wrap{display:inline-block;width:35px;height:35px;margin:15px 0 0 4px;border-radius:50% 50% 50% 0;background:#00cae9;animation-name:mec-map-bounce;animation-fill-mode:both;animation-duration:1s;border:3px solid #fff;cursor:pointer}.mec-marker-wrap .mec-marker{margin-top:5px;display:block;-webkit-transform:rotate(45deg);transform:rotate(45deg);text-align:center;color:#fff;font-size:17px}.mec-marker-wrap .mec-marker-pulse-wrap{-webkit-transform:rotate(45deg);transform:rotate(45deg);display:inline-block;margin-left:-11px;margin-top:0}.mec-marker-wrap .mec-marker-pulse{display:inline-block;background:#c5c5c5;border-radius:50%;height:14px;width:14px;-webkit-transform:rotateX(55deg);transform:rotateX(55deg);z-index:-2}.mec-marker-wrap .mec-marker-pulse:after{content:"";border-radius:50%;height:40px;width:40px;position:absolute;margin:-13px 0 0 -13px;animation:pulsate 1s ease-out;animation-iteration-count:infinite;opacity:0;box-shadow:0 0 1px 2px #00cae9;animation-delay:1.1s}@keyframes pulsate{0%{transform:scale(.1,.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2,1.2);opacity:0}}@keyframes mec-map-bounce{0%{opacity:0;transform:translateY(-2000px) rotate(-45deg)}60%{opacity:1;transform:translateY(30px) rotate(-45deg)}80%{transform:translateY(-10px) rotate(-45deg)}100%{transform:translateY(0) rotate(-45deg)}}.mec-skin-grid-container .mec-skin-map-container,.mec-skin-list-container .mec-skin-map-container{margin-bottom:20px}.mec-single-event{margin-top:10px}.mec-single-event .mec-events-meta-group-countdown{color:#c9c9c9;text-align:center;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-events-meta-group-countdown .countdown-w{text-align:center;font-size:36px;margin:0 auto;padding:40px 0 0;position:relative;display:table;table-layout:fixed}.mec-events-meta-group-countdown .countdown-w .icon-w{font-size:24px}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:15px;font-weight:300;letter-spacing:1px;text-transform:uppercase;position:relative}.mec-events-meta-group-countdown .countdown-w .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px;width:190px;font-size:72px;transition:all .3s ease-in-out;line-height:1.2}.mec-events-meta-group-countdown .countdown-w .block-w.done-w{border:0 none}.mec-events-meta-group-countdown .countdown-w .block-w li{font-size:50px}.mec-events-meta-group-countdown .countdown-w span{padding:24px 0 20px}.mec-events-meta-group-countdown .countdown-w .div-d{display:none}.mec-events-meta-group-countdown .countdown-w .countdown-message{display:none}.mec-events-meta-group-countdown .countdown-w .block-w i{display:none}#countdown{list-style:none;margin-bottom:0;margin-top:0;margin-left:0;padding-left:0}.mec-events-meta-group-countdown .mec-end-counts h3{display:inherit;text-align:center;font-size:16px;right:50%}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:23px}@media (min-width:481px) and (max-width:768px){.mec-events-meta-group-countdown .countdown-w{padding:0}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:12px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:34px}}@media (min-width:320px) and (max-width:480px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:10px}.mec-events-meta-group-countdown .countdown-w span{font-size:28px}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:16px}}@media (max-width:320px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:9px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:22px}}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px;font-size:13px}.info-msg{color:#059;background-color:#bef}.mec-success{color:#0dbf52;background-color:#cef7ce}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c!important;background-color:#ffbaba}.mec-fes-form,.mec-fes-list{background:#f8feff;padding:30px 3%;color:#798f96}.mec-fes-list .mec-fes-list-top-actions,.mec-fes-list ul{margin:0 auto 15px;max-width:960px;list-style:none;padding-left:40px}.mec-fes-form-cntt .dashicons-editor-help{display:none}.mec-fes-list ul li *{text-decoration:none!important}.mec-fes-list ul li{padding:20px 15px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal}.mec-fes-list ul li a{box-shadow:none;color:#181818}.mec-fes-list ul li a:hover{color:#40d9f1}.mec-fes-list ul li .mec-event-title{font-size:17px;font-weight:600;width:calc(100% - 250px);display:inline-block}@media (max-width:680px){.mec-fes-list ul li .mec-event-title{width:100%;font-size:13px;margin:0 0 20px 0;display:block}.mec-fes-list ul li{padding:10px 12px 40px}}@media (max-width:480px){.mec-fes-list .mec-fes-list-top-actions,.mec-fes-list ul{padding-left:0}}.mec-fes-form .mec-required{color:#ff3c3c}.mec-fes-list .mec-event-status{color:#fff!important;border-color:transparent!important}.mec-fes-form .mec-book-confirmed,.mec-fes-list .mec-book-confirmed{background:#50d477!important}.mec-fes-form .mec-book-pending,.mec-fes-list .mec-book-pending{background:#fcbe69!important}.mec-fes-form .mec-book-rejected,.mec-fes-list .mec-book-rejected{background:#fe686a!important}.mec-fes-form .mec-book-other,.mec-fes-list .mec-book-other{background:#40d9f1!important}.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view{font-size:11px;padding:0;border:0;background:#f7f8f9;float:right;margin-left:5px;border-radius:2px;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export a,.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view a{padding:4px 8px;display:inline-block;border:1px solid #e7e8e9;border-radius:2px;color:#789;position:relative}@media (max-width:600px){.mec-fes-list ul li .mec-fes-event-export a,.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view a{font-size:10px}}.mec-fes-list ul li .mec-fes-event-remove:hover{cursor:pointer;background:#f96f8a;border-color:#f96f8a;color:#fff}.mec-fes-list ul li .mec-fes-event-export a:hover,.mec-fes-list ul li .mec-fes-event-view a:hover{background:#40d9f1;color:#fff;border-color:#40d9f1}.mec-fes-form-top-actions a,.mec-fes-list-top-actions a,.single-mec-events .pmpro_content_message a,.single-mec-events .pmpro_content_message a:link{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-bottom:20px!important;margin-right:10px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;text-decoration:unset}.mec-fes-form-top-actions a:hover,.mec-fes-list-top-actions a:hover,.single-mec-events .pmpro_content_message a:hover,.single-mec-events .pmpro_content_message a:hover:link{background:#222;color:#fff}.mec-fes-list-top-actions a{font-weight:600;text-transform:capitalize}.mec-fes-form-top-actions a:before{content:"";border:solid #fff;border-width:0 2px 2px 0;display:inline-block;padding:6px;margin-right:5px;vertical-align:sub;transform:rotate(135deg);-webkit-transform:rotate(135deg)}.mec-fes-form .mec-form-row,.mec-fes-list .mec-form-row{margin-bottom:10px;clear:both}.mec-fes-form label{font-size:13px;display:block;color:#798f96;font-weight:400;padding:0 0 4px 2px}.mec-fes-form input+label{padding-top:8px;padding-left:3px;margin:0;display:inline-block;vertical-align:top}#wrap .mec-fes-form input+label{padding-top:0}.mec-fes-form .post-status{float:right!important;margin:0 5px;color:#fff;padding:0 10px;border-radius:12px;font-style:italic;font-size:18px}.mec-fes-form #mec-event-data input[type=date],.mec-fes-form input[type=email],.mec-fes-form input[type=number],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form input[type=url],.mec-fes-form select,.mec-fes-form textarea{min-width:inherit;width:auto;display:inline;min-height:30px;font-size:13px;padding:10px;margin-bottom:20px;clear:both;background:#fff;border:1px solid #cfeff5;box-shadow:0 2px 5px rgba(207,239,245,.38) inset;border-radius:3px;height:40px;max-width:280px;color:#798f96;font-family:inherit}#mec_fes_form input[type=date]::-webkit-calendar-picker-indicator,.lity-content #mec_fes_form input[type=date]::-webkit-calendar-picker-indicator,.lity-content .mec-events-meta-group-booking input[type=date]::-webkit-calendar-picker-indicator,.mec-single-event .mec-events-meta-group-booking input[type=date]::-webkit-calendar-picker-indicator{background:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ1IDc5LjE2MzQ5OSwgMjAxOC8wOC8xMy0xNjo0MDoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjA0QjQ2N0QwQjQ4MzExRUE4RDdFREZDRTUxMUVERTM5IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjA0QjQ2N0QxQjQ4MzExRUE4RDdFREZDRTUxMUVERTM5Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MDRCNDY3Q0VCNDgzMTFFQThEN0VERkNFNTExRURFMzkiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MDRCNDY3Q0ZCNDgzMTFFQThEN0VERkNFNTExRURFMzkiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6WW71PAAAGIklEQVR42qRXS28bVRQ+586Mx3ZC1DSpVFojRU2CqMIGiSKxAVoUduzoDjYIlhU/Av4AYsdjRXfkD0Cjom6QqIqEqEhRo1aRkkZpkpY6j7GduQ++c2dsj1+BlInGztxvzj3nfudpPlM/otc2W2QjJmU0rZ0uUytUpBxNnN9p/FYhctF0+XUi2nPGkX7WJOfwxNRzqXxtbfI4eUvm7xY1o4iiI0d/vFiisL2BgTAz0yvbCRnLhP0uNEtqrgUseZRcwPPvJewaldSA8o48vo+Tj0U+CnrkOgZwvkEzEmGm1PF9fzK5Y3U/YlllsjRUv19zXl7571HyAjooc/kmYerpcmPO0Mfa0SyxEtji44ynOjPuayjecd7M46/MQOdGyIs9ThnzMLD0XRrwIdeetmoLm41fWiG95Ar792tydLLrOPkAlpW027hbG3+T37lf/5EtvYcXUuhfBjWp9wHRBO63c5lbEkQj2B92uaHy4l2EAQ66GFgbmiD4id/9q661ooAtf8rsvmUEilAHEqcgtJvvNq3YPTkJA8PksT9ZFxD8+4my9pvAOqOMxIMoJHfPZoJkJNiYat3duOac6hxt1N3GR8lnt0O623s+c2CVZEGaZ8Oks1mElvxu7hGYaQjpHLpH3q/YFQE7Oh5Y6gFTaHhAXlasxmoWpZO5L9Ow4DTv+UBZBAkWNO+CqhkbSOzaXWWyzY+n3WcACdVscnklz5CHYsmv1L/RyUJ/cs7zdT3Ey8pTgw/QgNNuS4XjNMvffwvBNmwDH+pdeZ3J+1qDdW15vS0iBhjZWzF9ge8HWl7zNLluYhP/9/jvFANXyL+ufF4jZvOCZsK8isp77+sixf10n7QQjJT39bBtjzdA5chtLG61n7kgk6UvDy29z4HL4c/ifkN0hYV+cA3Bc7stKAfossgSSF06+3HOu8QovE8eThDlv4pu1TbUOpqySDNUKMSDQRIo6QgVRHbFcID1mCITUGgNKLI9uBbcCC59xUi+DsiHBq0XOLb3utqOUYV+LglH9XJASRAsRNqt4xHVj59Exqw3AlrYi0PaiwNqBKoX12Y9iQSP/GkD4xZC0yt/GPFCvZzhUBoMtmPftRwMEEtpupy2auzadLraXtlNoXLhKQYLbjrWRx0cXNf24wxPSmWw5aZPNXSNOi5ytXqZpjTwSqs3PsJi0I61LG29EFG9GtyaeqgvxU17TrAkDjbvnq/eKcTYrbcemi5eHoI/OLgUt7r4n+cqd04llmZ3mjBSDQ4kYtERLLz4OKGt0xGKA9+RgiSGSRV7+UlCVvka72lEvHRx04vLGW2f/PzTBk3VtddRrGlhMXVaIdME5sLJ3ZQOTPQBNqj58uzcxsXtZEkqmQ7IB9ihLeA2x6FQqyG4cRuvbh8uNZSigzBCALhBBtrjkwjjQItQ+kPXWY6eBuEi/lmOlC8kvTh38ZLH3QC+y+GiIl4OqbeZ9RggQZgcVIXe1ep48jPkz/oGw7x1yoytIq1o59AH1Wp1rNHBSXA9tip87zYyvFzpx8dXLVTvqySvhUMNsN6+1ERrrNQVQs57H4K6cR35GrapffICb16RpO7glOHrrQyvjHXxQHB0/j1ugV0LpcFwAzS4n6hiZoIvEp2znwcSigfGJhxpMmseLc0dvFjcvRuLvdEdNyl2+0DOALwE863TM/jnJqhfQa6v4AfJzUNOZ/aVlhqIUpoO4PuU4XFsqFrSM866m9hxBXSvWPx/wHpGqA96Vfa5AH9HnMjYNI96dbkwaVzcCw/nAK+xHzp4Hp89eD04nENzX6v4cYrnrVWXXQF/Fh7MQfWasmogCNsmaT+qwD0g4gYsuYqnWlboeKMUumUr86LycxdwdRUb+zQTvAzcgL0jLXFkbkQUX5UKyFTE2bvZD0a5B8SAUu6dPf+7AInssja2VPSZRud2Ni/NKse5M2VQqkO4BxSzZLmV8Wwpa8S9OHsK3X6+Lc7F/JidOwvkc7z3FbIgzd7smy1c35TEg7NGrg6Ucs88UsCliOLHH1+Td8HYFl++W//QxfT9iSee/3lJWy5X6aMwtK3rTVWJUU4/g4GzdLLp73ku8cEDxNmXUZhc/0eAAQAVgX0RHvvILQAAAABJRU5ErkJggg==");background-position:center;background-size:cover;width:10px;height:12px;display:block}.mec-fes-form input{background:#fff!important;border-radius:3px!important}.mec-fes-form textarea{height:80px}.mec-fes-form input::-webkit-input-placeholder{color:#798f96}.mec-fes-form input::-moz-placeholder{color:#798f96}.mec-fes-form input:-ms-input-placeholder{color:#798f96}.mec-fes-form input:-moz-placeholder{color:#798f96}#mec-excerpt .mec-form-row .widefat{max-width:100%}#mec_more_info_target{width:100%}@media only screen and (min-width:961px){.mec-fes-form #mec-event-data input[type=date],.mec-fes-form #mec-event-data select,.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form input[type=url],.mec-fes-form textarea{width:100%;display:inline-block}}@media only screen and (max-width:768px){.mec-fes-form #mec-event-data input[type=date],.mec-fes-form #mec-event-data select,.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form input[type=url],.mec-fes-form textarea{width:100%}}.mec-fes-form input[type=text]#mec_fes_title{padding:5px 10px;min-height:32px;height:50px;background:#fff!important;max-width:100%;font-size:19px;font-weight:400}.mec-fes-form input[type=checkbox],.mec-fes-form input[type=radio]{display:inline!important;float:left;margin:5px 5px 0 0}.mec-fes-form input[type=email]:focus,.mec-fes-form input[type=number]:focus,.mec-fes-form input[type=password]:focus,.mec-fes-form input[type=tel]:focus,.mec-fes-form input[type=text]:focus,.mec-fes-form input[type=url]:focus,.mec-fes-form select:focus,.mec-fes-form textarea:focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-form-row .mec-color{cursor:pointer}.mec-form-row.mec-available-color-row span{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-form-row.mec-available-color-row span:first-of-type{margin-left:0}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline}.mec-fes-form-cntt .dashicons-editor-help{display:block}.mec-fes-form .mec-tooltip:hover:after,.mec-fes-form .mec-tooltip:hover:before{display:none}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline-flex;bottom:7px}.mec-fes-form .mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-fes-form .mec-tooltip .box p,.mec-fes-form .mec-tooltip .box p{color:#fff!important;font-size:14px;line-height:1.3;margin:0}.mec-fes-form .mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-fes-form .mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-fes-form .mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:20px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-fes-form .mec-tooltip .box p a,.mec-fes-form .mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-fes-form .mec-tooltip .box a:hover{color:#f90}.mec-fes-form .mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-fes-form .mec-tooltip .box:before{display:block;content:""!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-fes-form .mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-fes-form .mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-fes-form .mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-fes-form .mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-fes-form .mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-fes-form .mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}.mec-fes-form .mec-tooltip{display:inline-block;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-fes-form .mec-tooltip:last-child{margin-right:0}.mec-fes-form .mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-fes-form .mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-fes-form .mec-tooltip .dashicons-before:before{font-size:24px;color:#008aff;line-height:37px}.mec-fes-form .mec-tooltip a:focus{box-shadow:none}.mec-form-row .bootstrap_unvalid{display:block;border:2px solid red;position:relative;display:inline-block;border-bottom:1px dotted #000}.mec-fes-form .mec-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.mec-fes-form .mec-tooltip .content p a{display:none}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt,.mec-fes-form .mec-fes-form-sdbr{width:68%;float:left;padding-right:20px}.mec-fes-form .mec-fes-form-sdbr{width:32%;padding-right:0;padding-left:20px}.mec-fes-submit-mobile{display:none}}.mec-fes-form .mec-meta-box-fields{padding:0 20px 20px;border:1px solid #cfeff5;margin-bottom:20px!important;box-shadow:0 2px 6px -3px #cfeff5;border-radius:3px;background:#fff}.mec-fes-form .mec-meta-box-fields h4{margin:0 -20px;font-size:15px;font-weight:600;letter-spacing:0;color:#40d9f1;text-transform:capitalize;padding:15px 20px;background:#ecfcff;margin-bottom:20px}.mec-fes-sub-button{width:100%}.mec-available-color-row span.color-selected{border:3px solid #fff;box-sizing:content-box;box-shadow:0 0 0 2px #40d9f1,0 2px 8px -1px #40d9f1}.mec-fes-loading:before{content:url("../img/ajax-loader.gif");background:0 0;border-style:none;display:block;margin-left:47%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:190px;margin-right:1.4%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-1,.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-2{width:120px;margin-right:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].widefat{width:100%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row{border-bottom:none;padding-bottom:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-6{width:39%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button{margin-right:0;padding:9px 26px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button.mec-add-hourly-schedule-button{font-size:12px;height:30px;line-height:25px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row .description{display:inline-block;border-left:1px dashed #bfcacc;margin-left:12px;line-height:28px;padding-left:12px;margin-top:5px;font-style:italic}@media only screen and (max-width:768px){.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:100%!important}}#mec_fes_form_message{max-width:838px;margin:10px auto;display:block!important;text-align:center}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list .mec-booking-attendees-tooltip{position:relative}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list strong,.post-type-mec-books .attendees strong{line-height:26px;padding-left:26px}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list .mec-booking-attendees-tooltip:before{position:absolute;content:"\e001";font-family:simple-line-icons;margin:12px 0;top:-30px;left:0;font-size:18px;line-height:12px;color:#40d9f1;padding:0 60px 5px 0}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list .mec-booking-attendees-tooltip ul{position:absolute;min-width:300px;max-width:600px;display:inline-block;left:60px;top:50%;transform:translateY(-50%);background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;z-index:9999999;box-sizing:border-box;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s;padding:23px 20px 20px 20px;border-radius:8px;margin-top:-13px}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list .mec-booking-attendees-tooltip ul:before{display:block;content:""!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list .mec-booking-attendees-tooltip:hover ul{visibility:visible;opacity:1}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list .mec-booking-attendees-tooltip ul li{list-style:none}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list .mec-booking-attendees-tooltip ul a{color:#40d9f1;margin-bottom:14px;margin-left:0;font-weight:400;font-size:14px;letter-spacing:.5px;position:relative;text-decoration:none;display:block;width:max-content}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list .mec-booking-attendees-tooltip ul li:last-child a{margin-bottom:0}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list{margin:0}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list .w-clearfix:first-child{background:#fff;border-bottom:1px solid #cfeff5}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list .w-clearfix:first-child div span{line-height:1;font-weight:600;font-size:13px}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list .w-clearfix{display:flex;background:#f8feff;padding:10px;text-align:left}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list .w-clearfix .w-col-xs-3{width:25%;word-wrap:break-word}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list .w-clearfix .w-col-xs-3:first-child{width:45%}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list .w-clearfix .w-col-xs-3:nth-child(2){width:15%}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list .w-clearfix .w-col-xs-3:nth-child(3){width:25%}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list .w-clearfix .w-col-xs-3:nth-child(4){width:20%}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list .w-clearfix:not(:first-child) .w-col-xs-3{font-size:13px;display:block;color:#798f96;font-weight:400;padding:0}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list .w-clearfix .w-col-xs-3 a{text-decoration:unset}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list .w-clearfix:nth-child(odd){background:#fff}.mec-wrap .mec-totalcal-box{position:relative;border:1px solid #efefef;padding:20px 5px;margin:0 0 20px;background:#fafafa;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012);min-height:78px}.mec-wrap .mec-totalcal-box i{float:left;margin:0;width:36px;height:36px;background:#fff;border:1px solid #efefef;text-align:center;padding:10px 0;font-size:15px;color:#888}.mec-checkboxes-search .mec-searchbar-category-wrap,.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-wrap .mec-totalcal-box input,.mec-wrap .mec-totalcal-box select{width:auto;min-height:36px;height:36px;line-height:36px;background:#fff;font-size:13px;color:#777;border:1px solid #efefef;margin:0 0 0 -1px;float:left;padding:0 5px}.mec-there-labels .mec-totalcal-view{margin-top:28px}.mec-wrap .mec-totalcal-box input[type=submit]{cursor:pointer;padding:0 16px;text-transform:uppercase;font-size:11px;transition:all .21s ease}.mec-wrap .mec-totalcal-box input[type=submit]:hover{background:#222;color:#fff}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{display:inline-block;text-transform:uppercase;font-size:11px;padding:0 12px;cursor:pointer}.mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover{color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view{text-align:right;float:right}.mec-wrap .mec-totalcal-box input[type=search]{width:calc(100% - 36px)}.mec-there-reset-button .mec-totalcal-box{padding-bottom:48px}.mec-wrap .mec-totalcal-box .mec-search-reset-button .mec-button{position:absolute;margin:0;bottom:0;right:0;padding:9px 25px;border-radius:2px 0 0 0;background:#fff;color:#767676;border-top:1px solid;border-left:1px solid;border-color:#e8e8e8;overflow:hidden}.mec-wrap .mec-totalcal-box .mec-search-reset-button .mec-button:hover{background:#000;color:#fff;border-color:#000}.mec-full-calendar-wrap .mec-search-form .col-md-7{padding:0}.mec-wrap .mec-date-search .mec-col-3,.mec-wrap .mec-minmax-event-cost .mec-minmax-price{width:calc(50% - 17px)}.mec-wrap .mec-text-address-search.with-mec-cost{width:calc(100% - 356px)}.mec-wrap .mec-minmax-event-cost{display:block;float:left;width:50%;margin-left:10px}.mec-wrap .mec-minmax-event-cost.with-mec-address{display:block;width:336px;max-width:50%;float:right;margin-left:0;margin-right:10px}.mec-wrap .mec-checkboxes-search{margin-left:10px;margin-right:10px;display:table-caption}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap{width:calc(100% - 36px)!important;max-width:calc(100% - 36px)!important;padding:0;position:relative;line-height:inherit;height:auto}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap select{line-height:20px}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap .select2-container.select2-container--default{width:calc(100% - 36px)!important}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap input[type=search]{width:calc(100% - 36px)!important;min-height:30px;margin:0}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap .select2-container .select2-selection--multiple ul,.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap .select2-container.select2-container--default{height:auto;overflow:unset}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap .select2-container .select2-selection--multiple ul{display:block}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap .select2-container .select2-selection--multiple{border:unset;width:100%;height:0!important;border-radius:0}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap .select2-container .select2-selection--multiple ul li{line-height:12px!important;max-height:20px!important;width:auto;margin-right:5px;margin-top:5px}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap .select2-container .select2-selection--multiple .select2-selection__choice{letter-spacing:0;color:#777;text-transform:capitalize;padding:4px 6px;background-color:#efefef;border-radius:2px;border:0;cursor:default;float:left;margin-right:5px;margin-top:5px;margin-bottom:5px;font-size:11px;text-transform:uppercase}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap .select2-container .select2-selection--multiple .select2-selection__choice__remove{color:#777}@media only screen and (min-width:961px) and (max-width:1200px){.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-3,.mec-wrap .mec-totalcal-box .col-md-4,.mec-wrap .mec-totalcal-box .col-md-5{width:100%;float:none;clear:both;overflow:hidden}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-4,.mec-full-calendar-wrap .mec-search-form .col-md-5{display:block;max-width:100%;padding:0;margin:0 0 10px 0}.mec-full-calendar-wrap .mec-search-form .col-md-3{padding-bottom:10px!important}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap .select2-container .select2-selection--multiple .select2-selection__choice{display:block;max-width:100%;white-space:break-spaces;max-height:unset!important;height:auto!important}}@media only screen and (min-width:768px) and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-4{position:relative;width:initial}.mec-wrap .mec-totalcal-box .col-md-5{padding-bottom:0}.mec-full-calendar-wrap .mec-search-form .col-md-5{margin-top:20px}.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:767px){.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}.mec-wrap .mec-totalcal-box .col-md-4{padding-bottom:0}.mec-wrap .mec-minmax-event-cost.with-mec-address,.mec-wrap .mec-text-address-search.with-mec-cost{width:100%;float:left}.mec-wrap .mec-minmax-event-cost.with-mec-address{max-width:calc(100% - 20px);margin:0 10px 20px 10px}.mec-wrap .mec-minmax-event-cost .mec-minmax-price{width:calc(50% - 17px)}}@media only screen and (max-width:479px){.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 8px;font-size:10px}.mec-wrap .mec-totalcal-box input[type=submit]{padding:0 10px;font-size:10px}}@media only screen and (min-width:961px){.mec-wrap .mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5,.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-3{padding-bottom:20px;clear:both;overflow:hidden}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5{right:10px;width:initial}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-4{padding-bottom:0;width:100%}}@media (min-width:961px) and (max-width:1200px){.mec-full-calendar-wrap .mec-totalcal-box{padding:15px 10px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 10px}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-address-search,.mec-search-form .mec-text-input-search{padding:0 4px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4,.mec-full-calendar-wrap .mec-totalcal-box .col-md-5{padding-bottom:20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{min-width:calc(30% - 10px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3:last-child select{min-width:calc(50% - 19px)}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:9px;text-align:center}}@media only screen and (max-width:1200px){.post-type-archive-mec-events .mec-totalcal-box .col-md-3,.post-type-archive-mec-events .mec-totalcal-box .col-md-4{width:100%;padding:0}.post-type-archive-mec-events .mec-totalcal-box select:last-child{min-width:auto}.post-type-archive-mec-events .mec-totalcal-box .col-md-5{position:relative;float:right;max-width:100%;left:0;top:20px;width:100%!important;display:block;clear:both}.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view{max-width:100%;width:100%}.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view span{width:20.1%;font-size:10px}}@media only screen and (max-width:960px){.post-type-archive-mec-events .mec-totalcal-box .col-md-5{top:10px}}@media only screen and (max-width:760px){.post-type-archive-mec-events .mec-totalcal-box .col-md-5{top:0!important}}@media only screen and (max-width:480px){.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view span{font-size:8px}}@media (min-width:1201px) and (max-width:1280px){.mec-full-calendar-wrap .mec-totalcal-view span{font-size:9px;padding:0 10px}}@media (min-width:761px) and (max-width:1200px){.mec-full-calendar-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{width:33.3333%;display:block;float:left}.mec-full-calendar-wrap .mec-search-form .col-md-4 .mec-text-input-search{padding:0;margin-bottom:20px}.mec-full-calendar-wrap .mec-search-form .col-md-3{width:100%}.mec-full-calendar-wrap .mec-search-form .mec-date-search select:last-child{min-width:70px;width:70px}.mec-full-calendar-wrap .mec-search-form .col-md-5{float:right;padding:0 0 10px 0}.mec-full-calendar-wrap .mec-totalcal-view span{font-size:11px}}@media (max-width:760px){.mec-full-calendar-wrap .mec-search-form .col-md-3{width:100%}.mec-full-calendar-wrap .mec-search-form .mec-date-search select:last-child{min-width:70px;width:70px}.mec-full-calendar-wrap .mec-search-form .col-md-5{float:right;padding:0 0 10px 0}.mec-full-calendar-wrap .mec-totalcal-view span{font-size:11px}}@media (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px);margin-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-left:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:100%}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:14.3%;text-align:center;font-size:10px;margin-right:-1px}}@media (max-width:780px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{width:calc(50% - 18px)!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:unset;padding-right:0}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-4,.mec-full-calendar-wrap .mec-search-form .col-md-5{margin:0;padding:0}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 7px;margin-top:20px}}@media (max-width:480px){.mec-full-calendar-wrap .mec-totalcal-box{padding:15px 10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:13.5%;text-align:center;font-size:11px}}@media (max-width:411px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:12%;font-size:10px}}@media (max-width:320px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:22.5%;font-size:11px}}.mec-totalcalview-selected:hover{color:#fff!important}.mec-search-form{padding:20px 10px}.mec-search-form .mec-dropdown-wrap{display:table;width:100%}.mec-search-form .mec-date-input-search,.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search,.mec-search-form .mec-time-input-search{padding:0 10px;float:left}.mec-search-form .mec-date-search,.mec-search-form .mec-time-picker-search,.mec-search-form .mec-totalcal-view{padding:0 10px}.mec-search-form .mec-text-input-search{width:100%}.mec-search-form .mec-full-calendar-search-ends .mec-text-input-search{width:50%}.mec-search-form .mec-date-search,.mec-search-form .mec-time-picker-search{width:50%;float:left}.mec-search-form .mec-date-search.with-mec-time-picker,.mec-search-form .mec-time-picker-search.with-mec-date-search{width:25%;float:left}.mec-search-form .mec-tab-loader.col-md-6 .mec-totalcal-view{padding:0}.mec-wrap .mec-search-form .with-mec-date-search .mec-timepicker-end,.mec-wrap .mec-search-form .with-mec-date-search .mec-timepicker-start{width:calc(50% - 17px)}.mec-search-form .mec-full-calendar-search-ends .mec-text-input-search.col-md-12,.mec-search-form .mec-minmax-event-cost,.mec-search-form .mec-text-address-search{min-height:55px}.mec-search-form .mec-full-calendar-search-ends .mec-text-input-search.col-md-12,.mec-widget .mec-search-form .mec-date-search,.mec-widget .mec-search-form .mec-text-input-search{width:100%}.mec-search-form .mec-full-calendar-search-ends .mec-text-input-search.col-md-12{padding:0 10px}.mec-search-form .mec-minmax-event-cost,.mec-search-form .mec-text-address-search,.mec-widget .mec-search-form .mec-text-input-search{margin-top:10px}.mec-search-form .mec-date-search{clear:left}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:table-cell;float:none}.mec-widget .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block}.mec-checkboxes-search .mec-searchbar-category-wrap,.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{width:calc(100% - 36px);margin-bottom:10px}.mec-wrap .mec-search-form .mec-minmax-price input,.mec-wrap .mec-search-form .mec-text-address-search input,.mec-wrap .mec-search-form .mec-text-input-search input{margin-bottom:10px}.mec-wrap .mec-totalcal-box label{display:block;line-height:1.8;margin-bottom:4px;font-size:13px;color:#9a9a9a}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}@media only screen and (max-width:781px){.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{width:100%;float:none}.mec-search-form .mec-date-search{min-height:55px}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:50%;float:left}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3{margin-bottom:0;padding-bottom:0!important}}@media only screen and (max-width:479px){.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:100%;float:none}}@media only screen and (min-width:961px) and (max-width:1200px){.post-type-archive-mec-events .mec-totalcal-box .col-md-3,.post-type-archive-mec-events .mec-totalcal-box .col-md-4,.post-type-archive-mec-events .mec-totalcal-box .col-md-5{max-width:100%;width:100%}.post-type-archive-mec-events .mec-totalcal-box .col-md-4{padding:0 10px}.post-type-archive-mec-events .mec-totalcal-box .col-md-4 .mec-text-input-search{margin:0}.post-type-archive-mec-events .mec-totalcal-box .col-md-5{margin-bottom:20px;padding:0 10px 10px 10px}}@media only screen and (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-4,.post-type-archive-mec-events .mec-totalcal-box .col-md-4{padding:0 10px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{margin-bottom:0}.post-type-archive-mec-events .mec-totalcal-box .col-md-4 .mec-text-input-search{margin:0}.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view{padding-right:15px}.mec-full-calendar-wrap .mec-search-form .col-md-5{margin-bottom:0}.post-type-archive-mec-events .mec-totalcal-box .col-md-5{padding:0}}@media only screen and (max-width:780px){.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view span{margin-top:10px;margin-bottom:10px}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{margin-top:0}}@media only screen and (max-width:760px){.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view span{margin-top:20px;margin-bottom:0}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{margin-top:20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4,.post-type-archive-mec-events .mec-totalcal-box .col-md-4{padding:0}}@media only screen and (max-width:1200px){.post-type-archive-mec-events .mec-full-calendar-wrap .mec-totalcal-view span{width:14.333%;font-size:8px}}@media only screen and (min-width:320px) and (max-width:960px){.post-type-archive-mec-events .mec-search-form .col-md-5 span{width:20%!important}}.mec-search-form .mec-text-address-search{float:left;width:100%;padding:0 10px}@media (max-width:960px){.mec-search-form .mec-dropdown-search{margin-bottom:10px}.mec-wrap .mec-minmax-event-cost.with-mec-address,.mec-wrap .mec-text-address-search.with-mec-cost{margin-top:0}.mec-search-form .mec-date-search.with-mec-time-picker,.mec-search-form .mec-time-picker-search.with-mec-date-search{width:50%;margin-bottom:20px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin:0}.mec-full-calendar-wrap .mec-tab-loader{width:100%;display:block;float:unset;padding:0 0 0 10px}}@media (max-width:780px){.mec-full-calendar-wrap .mec-totalcal-box{padding:10px}.mec-search-form .mec-date-search.with-mec-time-picker,.mec-search-form .mec-time-picker-search.with-mec-date-search{margin:20px 0;height:auto}.mec-search-form .mec-date-search{min-height:unset}}@media (max-width:480px){.mec-search-form .mec-date-search.with-mec-time-picker,.mec-search-form .mec-time-picker-search.with-mec-date-search{width:100%}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:12%;text-align:center;font-size:9px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-search-form .mec-date-search.with-mec-time-picker,.mec-search-form .mec-full-calendar-search-ends .mec-text-input-search,.mec-search-form .mec-minmax-event-cost,.mec-search-form .mec-text-address-search,.mec-search-form .mec-time-picker-search.with-mec-date-search,.mec-wrap .mec-minmax-event-cost.with-mec-address{margin-bottom:0;margin-top:10px;min-height:auto}.mec-wrap .mec-minmax-event-cost.with-mec-address{margin-bottom:10px}.mec-wrap.mec-widget .mec-minmax-event-cost.with-mec-address,.mec-wrap.mec-widget .mec-search-form .mec-time-picker-search.with-mec-date-search,.mec-wrap.mec-widget .mec-text-address-search.with-mec-cost{display:block!important;width:100%!important;max-width:100%!important}.mec-wrap.mec-widget .mec-minmax-event-cost.with-mec-address{float:left!important;max-width:calc(100% - 20px)!important;margin:0 0 0 10px!important}.mec-wrap.mec-widget .mec-search-form .mec-time-picker-search.with-mec-date-search{margin-top:20px!important}.mec-wrap.mec-widget .mec-search-form .mec-text-input-search{padding:10px!important}}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.mec-owl-theme .owl-dots .owl-dot{border:none}.event-carousel-type1-head .mec-event-image{position:relative;min-height:150px;overflow:hidden}.event-carousel-type1-head .mec-event-image img{width:100%}.mec-event-carousel-content .mec-event-carousel-title a{transition:all .2s ease}.event-carousel-type1-head .mec-event-date-carousel{position:absolute;top:25px;left:1px;font-size:41px;width:160px;color:#fff;font-weight:500;background-color:#40d9f1;padding-left:14px;height:97px;line-height:2.3;padding-right:85px}.event-carousel-type1-head .mec-event-date-carousel:after{content:"";position:absolute;display:inline-block;z-index:-1;bottom:-13px;left:5px;width:0;border-width:13px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.event-carousel-type1-head .mec-event-date-info{font-size:12px;font-weight:300;position:absolute;top:27px;left:75px}.event-carousel-type1-head .mec-event-date-info-year{font-size:12px;font-weight:300;position:absolute;top:45px;left:75px}.mec-event-carousel-content{border:1px solid #e8e8e8;border-top:none;margin-top:-5px;padding:34px 9px 11px 37px}.mec-event-carousel-content .mec-event-carousel-title a{font-size:23px;font-weight:500;color:#000;letter-spacing:-1px}.mec-event-carousel-content p{font-size:14px;color:#7a7272;font-weight:300}.mec-owl-crousel-skin-type1 .owl-item .mec-event-article{padding:0 19px}.mec-event-carousel-type1 .owl-page.active span{background-color:#00aeef;height:14px;width:14px}.mec-event-carousel-type1 .mec-event-carousel-content{margin-bottom:15px;box-shadow:0 1px 2px rgba(0,0,0,.04);transition:all .27s ease}.mec-event-carousel-type1 .mec-event-carousel-content:hover{box-shadow:0 0 35px rgba(0,0,0,.07)}.mec-skin-carousel-container .mec-multiple-event .mec-event-date-carousel{width:255px}.mec-skin-carousel-container .mec-multiple-event .event-carousel-type1-head .mec-event-date-info,.mec-skin-carousel-container .mec-multiple-event .event-carousel-type1-head .mec-event-date-info-year{left:175px}.mec-skin-carousel-container .mec-time-details,.mec-skin-carousel-container .mec-time-details span{font-size:11px;font-weight:400;line-height:1.9;letter-spacing:0;color:#000;border-radius:2px;white-space:nowrap}.mec-event-carousel-type4 .mec-time-details,.mec-event-carousel-type4 .mec-time-details span{color:#fff}.mec-skin-carousel-container .mec-time-details span{margin:0;display:inline-block}@media only screen and (min-width:768px) and (max-width:1000px),(min-width:270px) and (max-width:448px){.event-carousel-type1-head .mec-event-date-carousel{font-size:25px;line-height:2.5;padding-right:70px;height:64px;width:120px}.event-carousel-type1-head .mec-event-date-carousel:after{left:7px}.event-carousel-type1-head .mec-event-date-info{font-size:10px;top:13px;left:55px}.event-carousel-type1-head .mec-event-date-info-year{font-size:10px;top:25px;left:55px}.event-carousel-type1-head .mec-event-date-carousel:after{top:48px}}.event-carousel-type2-head{background:#fff;border:1px solid #e6e6e6}.event-carousel-type2-head .mec-event-carousel-content-type2{margin-top:15px;min-height:182px}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-date-info{font-size:15px;color:#9a9a9a;font-weight:300}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-carousel-content-type2 .mec-event-carousel-title a{color:inherit}.mec-event-carousel-type2 .event-carousel-type2-head .mec-event-carousel-content-type2 p{font-size:16px;font-weight:300;color:#444}.event-carousel-type2-head .mec-event-footer-carousel-type2{margin-top:33px;position:relative}.mec-event-carousel-type2 .mec-event-footer-carousel-type2 .mec-event-sharing-wrap{padding-left:0;left:0}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-event-sharing-wrap>li{border:none;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button{border:1px solid #e4e4e4;float:right;padding:7px 23px 7px;font-size:12px;text-transform:uppercase;color:#707070;font-weight:500;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button:hover{color:#fff}.mec-event-article .event-carousel-type2-head{padding:10%;margin-right:-1px}.mec-event-carousel-type2 .mec-owl-carousel .owl-wrapper-outer{border-right:1px solid #e6e6e6}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button{line-height:25px;height:41px;margin-right:0}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-modal-booking-button{margin-right:20px}.mec-wrap .mec-event-carousel-type2 .owl-next,.mec-wrap .mec-event-carousel-type2 .owl-prev,.mec-wrap .mec-event-carousel-type3 .owl-next,.mec-wrap .mec-event-carousel-type3 .owl-prev,.mec-wrap .mec-event-carousel-type4 .owl-next,.mec-wrap .mec-event-carousel-type4 .owl-prev{transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:47%;background-color:transparent!important;position:absolute!important}.mec-event-carousel-type2 .owl-next{right:-60px}.mec-event-carousel-type2 .owl-prev{left:-60px}.mec-event-carousel-type2 .owl-next i,.mec-event-carousel-type2 .owl-prev i,.mec-event-carousel-type3 .owl-next i,.mec-event-carousel-type3 .owl-prev i,.mec-event-carousel-type4 .owl-next i,.mec-event-carousel-type4 .owl-prev i{font-size:40px;color:#282828}.mec-event-carousel-type2 .owl-next i:hover,.mec-event-carousel-type2 .owl-prev i:hover,.mec-event-carousel-type3 .owl-next i:hover,.mec-event-carousel-type3 .owl-prev i:hover{color:#000;cursor:pointer}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}@media only screen and (min-width:320px) and (max-width:768px){.mec-event-carousel-type2 .owl-next,.mec-event-carousel-type2 .owl-prev,.mec-event-carousel-type3 .owl-next,.mec-event-carousel-type3 .owl-prev,.mec-event-carousel-type4 .owl-next,.mec-event-carousel-type4 .owl-prev{position:initial;top:100%}}.mec-event-carousel-type3 .mec-event-article{margin:0 10px}.event-carousel-type3-head .mec-event-image,.event-carousel-type3-head .mec-event-image img{width:100%;height:auto}.event-carousel-type3-head .mec-event-footer-carousel-type3{background:#fff;display:inline-block;width:calc(100% - 40px);margin-top:-74px;position:relative;margin-left:20px;margin-right:20px;margin-bottom:6px;padding:8% 11%;box-shadow:0 2px 10px -2px rgba(0,0,0,.2)}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button{border:1px solid #e4e4e4;text-transform:uppercase;float:right;padding:7px 23px 7px;font-size:12px;color:#707070;font-weight:500}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button:hover{color:#fff}.mec-event-footer-carousel-type3 span{font-size:15px;color:#9a9a9a;font-weight:300;display:block;margin-top:30px}.mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:29px;font-weight:700}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-footer-carousel-type3 .mec-event-carousel-title a{color:inherit}.event-carousel-type3-head .mec-event-footer-carousel-type3 p{font-size:16px;font-weight:300;color:#444!important;margin-bottom:36px}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button{line-height:25px;height:41px}.mec-event-carousel-type3 .owl-next{right:-70px}.mec-event-carousel-type3 .owl-prev{left:-70px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap{left:11%}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}.event-carousel-type3-head .mec-end-date-label{display:inline;margin-left:2px}.event-carousel-type4-head.clearfix{position:relative;overflow:hidden;background:#fff}.event-carousel-type4-head .mec-event-overlay{position:absolute;left:0;right:0;bottom:0;top:0;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-hover-carousel-type4{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out;opacity:0;visibility:hidden}.mec-event-carousel-type4 .mec-event-article{margin:0 10px}.mec-event-carousel-type4 .mec-event-article:hover .mec-event-hover-carousel-type4{opacity:1;visibility:visible}.mec-event-hover-carousel-type4 .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-hover-carousel-type4 .mec-event-date{font-size:11px;text-transform:uppercase;font-weight:400;line-height:1.6;text-align:left}.mec-event-hover-carousel-type4 .mec-event-date span{display:block;font-weight:700;font-size:14px}.mec-event-hover-carousel-type4 .mec-event-title{color:#fff;margin:20px 0 38px;font-size:16px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-hover-carousel-type4 .mec-btn-wrapper{text-align:left}.mec-event-hover-carousel-type4 .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-hover-carousel-type4 .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-carousel-type4 .owl-next{right:-70px}.mec-event-carousel-type4 .owl-prev{left:-70px}.mec-carousel-type4-head{margin-bottom:25px}.mec-carousel-type4-head-title{padding:0 11px;text-align:left;font-weight:700;font-size:20px;color:#000}.mec-carousel-type4-head-link{text-align:right;padding:0 11px}.mec-carousel-type4-head-link a{background:#222;color:#fff;padding:10px 38px;transition:all .3s ease}.mec-carousel-type4-head-link a:hover,.mec-carousel-type4-head-link a:visited{color:#fff}@media (max-width:960px){.mec-event-carousel-type4 .owl-stage{left:-50px}}.mec-wrap .mec-event-countdown-style1{color:#fff;padding:0!important;display:table;background:#437df9}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1{z-index:5;padding:50px 1% 50px 4%;display:table-cell;float:none;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2{background-color:rgba(0,0,0,.05);height:100%;padding-top:0;display:table-cell;float:none;position:relative;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{background-color:#f8f8f8;display:table-cell;float:none;text-align:center;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style1 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{content:"";position:absolute;display:inline-block;z-index:1;top:50%;margin-top:-11px;right:-24px;width:0;border-width:12px;border-style:solid;border-color:transparent transparent transparent #4077ed}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style1 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto}.mec-event-countdown-style1 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style1 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (min-width:1200px){.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%}}@media (max-width:960px){.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%;transform:rotate(90deg)}}@media (max-width:480px){.mec-event-countdown-style1 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{padding:10px 5px;min-width:50px;margin:3px 1px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:8px}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{display:inline}}.mec-wrap .mec-event-countdown-style2{color:#fff;padding:30px 0;background:#437df9;max-width:600px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part3{width:100%;float:none;vertical-align:middle;padding:50px 10% 50px 10%}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2{padding-top:12%;padding-bottom:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style2 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date-place{text-align:left;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 8px}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#222;background:#fff;transition:all .24s ease}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button:hover{background:#222;color:#fff}.mec-event-countdown-style2 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0}.mec-event-countdown-style2 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style2 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (max-width:767px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:80px;padding:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:26px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:11px}}@media only screen and (max-width:479px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:40px;padding:15px 10px;margin:2px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:20px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:9px}}@media (max-width:380px){.mec-event-countdown-style2 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{padding:10px 4px;margin:4px 1px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:7px}}.mec-wrap .mec-event-countdown-style3{color:#fff;padding:0;background:#282828;display:table;width:100%}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1{width:68%;padding:50px 1% 50px 4%;vertical-align:middle;display:table-cell;position:relative}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:32%;display:table-cell;position:relative;padding-bottom:0;padding-top:0}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 img{width:100%;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{font-weight:300;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{color:#fff;font-size:36px;letter-spacing:-2px;font-weight:700;line-height:1;margin-top:-10px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style3 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style3 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto;position:absolute;top:40px;right:20px}.mec-event-countdown-style3 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style3 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:11px;color:#888;margin:8px 0 0;line-height:1}.mec-event-countdown-style3 .mec-event-date{width:176px;height:96px;background:#40d9f1;color:#fff;font-size:13px;position:absolute;left:-27px;top:146px}.mec-event-countdown-style3 .mec-event-date:after{content:"";position:absolute;display:inline-block;z-index:1;bottom:-18px;left:8px;width:0;border-width:19px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:50px;position:absolute;top:3px;left:12px;letter-spacing:-3px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:80px;top:26px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:80px;top:45px}.mec-event-countdown-style3 .mec-event-countdown-part-details{padding-top:35px;margin-bottom:50px;min-height:100px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-title{font-size:17px;color:#fff;line-height:1.4;padding-right:20px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link{color:#fff;font-size:12px;position:relative;padding-left:22px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link:before{content:"";display:inline-block;width:18px;border-top:1px solid #fff;position:absolute;left:0;top:8px}.mec-event-countdown-style3 .mec-event-title-link{position:absolute;left:190px;top:152px}.event-carousel-type1-head .mec-event-date-carousel:before,.mec-event-countdown-style3 .mec-event-date:before{content:"";position:absolute;left:0;bottom:0;z-index:2;width:100%;height:96px;display:inline-block;box-shadow:0 5px 5px rgba(0,0,0,.12);background:0 0}@media only screen and (min-width:960px){.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown li{padding:10px}.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:31px}}@media (max-width:959px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:100%;display:block}.mec-event-countdown-style3 .mec-event-title-link{top:190px}.mec-event-countdown-style3 .mec-event-countdown{top:96px}.mec-event-countdown-style3 .mec-event-date{left:0;top:190px}.mec-event-countdown-style3 .mec-event-date:after{display:none}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{display:inline}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:150px}}@media (max-width:767px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:26px;letter-spacing:-1px}.mec-event-countdown-style3 .mec-event-title-link{left:130px}.mec-event-countdown-style3 .mec-event-date{width:120px;font-size:10px;height:63px}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:36px;top:20px;left:4px;letter-spacing:-2px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:52px;top:12px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:52px;top:28px}}@media (max-width:380px){.mec-event-countdown-style3 .mec-event-title-link{left:10px;top:260px}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:300px}.mec-event-countdown-style3 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:10px 5px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:8px}}.mec-slider-t1-wrap{width:100%;padding:60px 90px;background:#f7f7f7;min-height:560px;position:relative}.mec-slider-t1{height:500px;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t1 .mec-event-article{position:relative;height:500px}.mec-slider-t1 .mec-slider-t1-img{position:relative;background-size:cover!important;background-position:center!important;width:50%;height:100%;float:right;margin:0;overflow:hidden}.mec-slider-t1 .mec-slider-t1-content{width:50%;float:left;height:100%;background:#fff;padding:6%}.mec-slider-t1-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t1-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:54px;height:54px;line-height:48px;border-radius:0;text-align:center;background:#fff;box-shadow:0 2px 11px 0 rgba(0,0,0,.045);transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-27px;cursor:pointer}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 29px 0 rgba(0,0,0,.095)}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:12px;color:#282828;transition:all .21s ease}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{font-size:13px;color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t1{margin:0 auto;max-width:900px}}@media only screen and (max-width:960px){.mec-slider-t1 .mec-slider-t1-content,.mec-slider-t1 .mec-slider-t1-img{width:100%;float:none}.mec-slider-t1 .mec-slider-t1-img{height:300px}.mec-slider-t1,.mec-slider-t1 .mec-event-article{height:auto}}@media only screen and (max-width:768px){.mec-slider-t1-wrap{padding:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:10px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}}@media only screen and (max-width:479px){.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t2-wrap{width:100%;padding:0;background:#fff;min-height:600px;position:relative}.mec-slider-t2 .mec-event-article{height:600px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t2 .mec-slider-t2-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:70%;height:100%;margin:0;overflow:hidden}.mec-slider-t2 .mec-slider-t2-content{width:50%;position:absolute;right:0;top:60px;bottom:60px;padding:5%}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern *{color:#fff}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-content,.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t2-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:84px;cursor:pointer}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}.mec-wrap.colorskin-custom .mec-slider-t2 .mec-event-article .mec-event-date.mec-color{color:#fff}@media only screen and (min-width:961px){.mec-slider-t2{margin:0 auto;max-width:1200px}}@media only screen and (max-width:960px){.mec-slider-t2 .mec-slider-t2-content,.mec-slider-t2 .mec-slider-t2-img{width:100%;float:none;position:static}.mec-slider-t2 .mec-slider-t2-img{height:300px}.mec-slider-t2 .mec-event-article{height:auto}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px}}@media only screen and (max-width:479px){.mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:22px}}.mec-slider-t3-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t3 .mec-event-article{height:700px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t3 .mec-slider-t3-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;opacity:.68;z-index:1}.mec-slider-t3 .mec-slider-t3-content{width:50%;height:auto;vertical-align:middle;display:table;position:absolute;left:0;top:50%;transform:translateY(-50%);bottom:0;padding:0 2% 0 7%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t3 .mec-slider-t3-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-content,.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-slider-t3-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t3-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{border-color:#40d9f1}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-22px;cursor:pointer}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next{right:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:50px;font-weight:300}.mec-slider-t3-content.mec-event-grid-modern .mec-event-description{font-size:19px}}@media only screen and (max-width:767px){.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}}@media only screen and (max-width:479px){.mec-slider-t3 .mec-slider-t3-content{width:100%}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t4-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t4 .mec-event-article{height:700px;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t4 .mec-slider-t4-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;z-index:1}.mec-slider-t4 .mec-slider-t4-content{width:auto;max-width:700px;background:rgba(37,37,37,.94)!important;height:auto;vertical-align:middle;display:table;position:absolute;left:8%;top:19%;padding:3%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t4 .mec-slider-t4-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-content,.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:13px;padding:0 42px;line-height:49px;height:50px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t4-content.mec-event-grid-modern .mec-slider-t4-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next{right:60px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{right:112px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:767px){.mec-slider-t4 .mec-slider-t4-content{width:100%;left:0;top:auto;bottom:0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t5-wrap{width:auto;max-width:570px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-slider-t5{height:auto;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t5 .mec-event-article{position:relative;height:auto}.mec-slider-t5 .mec-slider-t5-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:300px;float:none;margin:0;overflow:hidden}.mec-slider-t5 .mec-slider-t5-content{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-slider-t5 .mec-events-content p{margin-bottom:20px}.mec-slider-t5-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t5 .mec-slider-t5-col6{width:50%;float:left;height:100%}.mec-slider-t5 .mec-slider-t5-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-slider-t5 .mec-slider-t5-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-slider-t5 .mec-slider-t5-col6 address{font-size:12px;margin-bottom:0}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t5-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:768px){.mec-slider-t5 .mec-slider-t5-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-single-modern .mec-events-event-image{text-align:center}.mec-single-modern .mec-events-event-image img{width:100%}.mec-single-modern .mec-single-event-bar{background-color:#f7f7f7;margin:20px 0 0;padding:15px;display:table;width:100%}.mec-single-modern .mec-single-event-bar>div{display:table-cell}.mec-single-modern .mec-single-event-bar>div i{font-size:20px;vertical-align:middle}.mec-single-modern .mec-single-event-bar>div .mec-time-comment{font-size:12px;color:#999}.mec-single-modern .mec-single-event-bar>div h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-modern .mec-single-event-bar>div dd{font-size:14px;color:#8d8d8d;padding-left:34px;margin-bottom:0}.mec-single-modern .col-md-4 .mec-frontbox{margin-top:-50px;margin-bottom:70px;padding:20px;border:none;background:#f7f7f7;box-shadow:none}.mec-single-modern .col-md-4.mec-no-image .mec-frontbox{margin-top:20px}.mec-next-occurrence ul{padding-left:0;margin-left:0}.mec-next-occurrence li{list-style:none}@media only screen and (min-width:960px){.mec-single-modern .col-md-4 .mec-frontbox{margin-left:20px}}@media only screen and (max-width:960px){.mec-single-modern .mec-single-event-bar>div{display:block}}.lity-content>div{overflow:auto}.mec-next-event-details li{list-style:none;margin-top:20px}.mec-next-event-details h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-next-event-details abbr{display:block;padding-left:0;color:#8d8d8d}.mec-next-event-details i{margin-right:10px;margin-left:12px}.mec-next-event-details i:before{color:#40d9f1}.mec-next-event-details a{text-align:center;display:block;background:#fff;padding:6px 0;font-size:11px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;transition:.3s}.mec-single-modal.mec-single-modern .mec-single-title{text-align:center;padding:15px 10px 0}.admin-bar .mec-single-modal.mec-single-modern .mec-single-title{padding-top:40px}.mec-single-modal.mec-single-modern .mec-single-event-bar{padding:5px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div dd{font-size:13px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div h3{font-size:15px}@media only screen and (min-width:960px){.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-left:0}}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-top:10px;margin-bottom:10px}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox.mec-event-meta{padding:0}@media(min-width:961px){.mec-single-event.mec-sticky{position:relative}.mec-single-event.mec-sticky .col-md-4{position:-webkit-sticky;position:sticky;top:120px}.mec-single-modern.mec-sticky .col-md-4{top:170px}.single-mec-events .mec-sticky .col-md-8>div:last-child{margin-bottom:30px}.single-mec-events .mec-single-modern.mec-sticky .col-md-8>div:last-child{margin-bottom:70px}}.mec-single-modal .mec-event-meta dd.mec-organizer-email a,.mec-single-modal .mec-event-meta dd.mec-organizer-url a{font-size:12px;display:block}.mec-organizer-description p{padding-left:12px}.mec-modal-wrap{max-width:60vw;max-height:90vh!important;background:#fff;box-shadow:0 1px 55px rgba(0,0,0,.5);overflow-x:hidden!important}@media (max-width:1023px){.mec-modal-wrap{max-width:80vw}}.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li,.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a.mec-events-button{display:block;text-align:center}.mec-holding-status-expired{color:#d8000c}.mec-holding-status-ongoing{color:#0dbf52}body .featherlight{z-index:999999!important}body .featherlight .featherlight-content{background:0 0;overflow:unset;z-index:9999}body .featherlight .featherlight-close-icon{position:fixed;top:40px;right:40px;background:0 0;color:#fff;border:1px solid #fff;border-radius:0}body .featherlight .featherlight-close-icon:hover{background:#fff;color:#000;border:1px solid #000}@media (max-width:320px){.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{padding:15px 12%}}@media (max-width:414px){.mec-wrap span.flip-clock-divider{width:30px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 7%}}@media (max-width:480px){body .featherlight .featherlight-content{width:95%}.mec-wrap span.flip-clock-divider{width:7px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 1%}body .featherlight .featherlight-close-icon{color:#000;border-color:#000}}@media (max-width:1366px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 15px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:48px}}@media (max-width:1280px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:14px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 10px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:38px}}@media (min-width:961px) and (max-width:1024px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:7px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 5px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:14px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul li a div{font-size:30px}}@media (max-width:640px){body .mec-modal-wrap .mec-single-modal.featherlight-close-icon{top:14px;right:14px}}@media (max-width:480px){.featherlight .featherlight-content,body .mec-modal-wrap{max-width:100%}body .mec-modal-wrap.flip-clock-divider .flip-clock-label{display:block}}@media (max-width:414px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 65px}body .featherlight-content .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 2px 20px 2px!important}body .featherlight-content .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:3px!important}}@media (max-width:375px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 45px}}@media (max-width:320px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 40px}}.mec-single-event-bar dd{margin-left:0}.mec-events-toggle{max-width:960px;margin-left:auto;margin-right:auto}.mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;margin-bottom:15px;box-shadow:0 10px 15px #f3f3f3}.mec-events-toggle .mec-toggle-item-inner{cursor:pointer;position:relative;padding:30px 60px 30px 15px;background:#fff;transition:all .3s ease;min-height:100px;display:table;width:100%;border-collapse:separate}.mec-events-toggle .mec-toggle-item-inner:hover{background:#fbfbfb}.mec-toggle-item-col{width:200px;border-right:1px solid #e3e3e3;margin-right:15px;display:table-cell;padding-right:5px}.mec-toggle-item-col .mec-event-date{font-size:38px;line-height:40px;float:left;margin-right:8px}.mec-toggle-item-col .mec-event-month,.mec-toggle-item-col .mec-time-details{text-transform:uppercase;font-size:12px;line-height:14px;padding-top:4px;font-weight:700}.mec-toggle-item-col .mec-event-detail{font-size:10px}.mec-toggle-item-col .mec-event-day{margin-top:9px;color:silver;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-events-toggle .mec-toggle-title{color:#000;font-size:23px;font-weight:600;margin-bottom:0;transition:all .3s ease;display:table-cell;text-align:left;max-width:calc(100% - 200px);padding-left:15px;vertical-align:middle}.mec-events-toggle .mec-toggle-item-inner span.event-color{width:5px;height:100%;position:absolute;left:-1px;top:0;bottom:0;border-radius:0;margin:0}.mec-events-toggle .mec-toggle-item-inner i{position:absolute;font-size:30px;right:25px;top:50%;transform:translate(0,-50%);cursor:pointer}.mec-events-toggle .mec-toggle-item.is-open i.mec-sl-plus:before{content:"\e615"}.mec-events-toggle .mec-toggle-item.is-open .mec-toggle-title{background:#f8f8f8;cursor:pointer}.mec-events-toggle .mec-toggle-content{border-top:1px solid #e4e4e4}.mec-events-toggle .mec-toggle-content .mec-modal-wrap{margin:0;max-width:100%;box-shadow:none}.mec-events-toggle .mec-toggle-content .mec-modal-wrap .mec-single-event{margin:0}.mec-events-toggle .mec-toggle-content .mec-single-event-bar,.mec-events-toggle .mec-toggle-content h1.mec-single-title{display:none}.mec-events-toggle .media-links a{margin-bottom:0}.mec-events-toggle .mec-toggle-content .mec-toggle-meta{margin-bottom:14px}.mec-events-toggle #mec_speakers_details.mec-frontbox{padding:0;margin:0}.mec-events-toggle .mec-toggle-item h3.mec-speakers{border:none;text-align:left}.mec-events-toggle .mec-toggle-item h3.mec-speakers:before{content:"\e063";font-family:simple-line-icons;border:none;position:relative;display:inline-block;left:unset;bottom:unset;font-size:22px;font-weight:400;padding:0 11px 0 28px;vertical-align:middle}@media only screen and (max-width:767px){.mec-toggle-item-inner .mec-toggle-item-col{float:none;width:100%;border-right:none;margin-bottom:5px;display:block;max-width:100%;padding-left:15px}.mec-events-toggle .mec-toggle-title{display:block;width:100%;max-width:100%}}.mec-events-agenda-wrap{margin:10px 0;border:1px solid #e9e9e9;padding-left:20px;box-shadow:0 2px 2px rgba(0,0,0,.03)}.mec-events-agenda{padding:0;border-bottom:1px solid #e9e9e9;overflow:hidden}.mec-agenda-date-wrap{width:210px;padding-top:15px;float:left;font-size:13px}.mec-agenda-date-wrap i,.mec-agenda-event i{font-size:11px;color:#aaa;margin-right:4px;margin-left:1px}.mec-agenda-event i{vertical-align:middle;margin-right:1px}.mec-agenda-events-wrap{float:left;width:calc(100% - 210px);background:#f9f9f9;padding:15px}.mec-agenda-time{font-size:11px;color:#707070;padding-right:10px;width:138px;display:inline-block}.mec-agenda-event-title{position:relative;padding-left:14px}.mec-agenda-event-title a{font-size:14px;font-weight:600;color:#333}.mec-agenda-event-title span.event-color{width:9px;height:9px;position:absolute;left:0;top:4px;margin:0}.mec-agenda-date-wrap span.mec-agenda-day{color:#aaa;font-size:12px}@media only screen and (max-width:767px){.mec-agenda-date-wrap,.mec-agenda-events-wrap{float:none;width:100%}.mec-events-agenda span.mec-agenda-event-title{display:block;width:100%}.mec-agenda-event-title span.event-color{top:7px}.mec-agenda-event-title a{font-size:13px}}.mec-yearly-view-wrap{margin:0 0 15px;border:1px solid #e6e6e6;box-shadow:0 2px 4px rgba(0,0,0,.04);border-bottom-width:4px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{max-width:100%;width:232px;padding:10px;background:#fff;margin:10px;display:inline-block}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{transition:none;height:30px;width:30px;line-height:30px;border-radius:0;font-size:12px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-calendar-events-sec{padding:10px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-has-event:after{width:4px;height:4px;bottom:3px;margin-left:-2px}.mec-yearly-view-wrap .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-head dl dt{background:#f9f9f9;font-size:13px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-title{text-align:center;font-size:15px;font-weight:700;color:#222;margin-top:-5px;padding-bottom:5px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{min-height:200px;width:538px;overflow:hidden;float:left;background:#f8f8f8;padding:15px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{min-height:200px;width:calc(100% - 538px);float:left;padding:0 0 0 20px;overflow:hidden}.mec-yearly-view-wrap .mec-yearly-title-sec{position:relative;padding:15px;text-align:center;border-bottom:1px solid #e6e6e6;box-shadow:0 1px 3px rgba(0,0,0,.02)}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:30px;line-height:40px;color:#333;margin:0;font-weight:700}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{position:absolute;top:50%;margin-top:-15px;min-width:30px;height:30px;line-height:30px;padding:0 8px;text-align:center;background:#fff;color:#666;font-size:14px;border:1px solid #eee;border-radius:2px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{right:auto;left:20px;padding-right:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year{left:auto;right:20px;padding-left:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year i,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-yearly-view-wrap .mec-events-agenda.mec-selected{box-shadow:-10px 0 0 0 #fffcf2,0 -1px 0 #fbebb6;background:#fffcf2;border-color:#fbebb6;color:#f9af29}.mec-yearly-agenda-sec span.mec-event-label-captions.mec-fc-style{right:0;top:0}@media only screen and (max-width:959px){.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:268px;padding:10px 5px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{width:calc(100% - 268px);padding:0 0 0 10px}}@media only screen and (max-width:767px){.mec-yearly-view-wrap .mec-yearly-agenda-sec,.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:100%;float:none}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{width:auto}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{width:14.2%}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:25px}}.mec-yearly-view-wrap .mec-agenda-event i,.mec-yearly-view-wrap .mec-agenda-time{display:none}@media only screen and (min-width:768px){.mec-yearly-view-wrap .mec-events-agenda-wrap{margin-top:0;border:none;padding-left:0;box-shadow:none}.mec-yearly-view-wrap .mec-agenda-date-wrap{width:174px;font-size:11px;padding-top:10px}.mec-yearly-view-wrap .mec-agenda-events-wrap{width:calc(100% - 174px);padding:10px}.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:13px}.mec-yearly-view-wrap .mec-agenda-event-title span.event-color{width:8px;height:8px}.mec-yearly-view-wrap .mec-agenda-date-wrap span.mec-agenda-day{font-size:11px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{box-shadow:-2px 0 5px rgba(0,0,0,.03) inset}}@media only screen and (max-width:1200px){.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:12px;padding-right:6px}}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table{padding-bottom:10px;border-bottom:none}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt:hover{cursor:pointer}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event,.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event:hover{color:#bbb;cursor:default}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active{background:#40d9f1;color:#fff;position:relative}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active:after{content:"";position:absolute;display:block;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#40d9f1 transparent transparent transparent}.mec-timetable-events-list{padding:10px 20px;border:none;margin:0}.mec-timetable-events-list .mec-timetable-event{padding:10px 0;border-bottom:1px dashed #ddd}.mec-timetable-events-list .mec-timetable-event:last-child{border:none}.mec-timetable-event .mec-timetable-event-span{font-size:12px;color:#444;padding-right:30px;line-height:22px}.mec-timetable-events-list .mec-timetable-event i{font-size:13px;color:#aaa;margin-right:3px;vertical-align:baseline}.mec-timetable-event .mec-timetable-event-span a{color:#333}.mec-timetable-event .mec-timetable-event-time{font-size:11px}.mec-timetable-event .mec-timetable-event-time i{vertical-align:text-bottom}.mec-timetable-event .mec-timetable-event-title{font-size:13px}.mec-timetable-event .mec-timetable-event-title .event-color{width:10px;height:10px}.mec-timetable-events-list .mec-timetable-event.mec-util-hidden{display:none}.mec-timetable-events-list.mec-util-hidden{display:none}@media only screen and (min-width:768px){.mec-timetable-events-list{display:table;width:100%;margin:10px 0 20px}.mec-timetable-events-list .mec-timetable-event{display:table-row;padding:0;border:none;background:#fff}.mec-timetable-events-list .mec-timetable-event:hover{background:#fafafa}.mec-timetable-event .mec-timetable-event-span{display:table-cell;padding:10px 15px;border-bottom:1px solid #ebebeb}.mec-timetable-events-list .mec-timetable-event:last-child .mec-timetable-event-span{border-bottom:none}}@media only screen and (max-width:767px){.mec-timetable-event .mec-timetable-event-title{display:block;width:100%;padding:5px 0 10px;font-weight:700}}.mec-timetable-t2-wrap{border:1px solid #e6e6e6;background:#fafafa;padding:0 15px 15px;display:-webkit-box;box-shadow:0 3px 2px 0 rgba(0,0,0,.012)}.mec-timetable-t2-col{width:20%;float:left;min-height:20px;padding-right:1px;background:0 0}.mec-ttt2-title{background:#fafafa;color:#333;font-size:13px;font-weight:600;text-transform:uppercase;letter-spacing:1px;text-align:center;padding:25px 10px 10px;margin-bottom:1px}.mec-timetable-t2-col .mec-event-article{position:relative}.mec-timetable-t2-col .mec-event-article .event-color{position:absolute;width:auto;height:auto;left:0;right:0;top:0;bottom:0;margin:0;z-index:1;border-radius:2px}.mec-timetable-t2-content{position:relative;z-index:2;color:#fff;padding:15px 15px 20px;text-align:left;height:185px;margin-bottom:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title{line-height:22px;margin-bottom:13px;white-space:nowrap;padding-right:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title a{color:#fff;font-size:15px;font-weight:600;white-space:pre-line;overflow:hidden}.mec-timetable-t2-content div{color:#fff;font-size:11px;font-weight:400;line-height:19px;white-space:nowrap}.mec-timetable-t2-content div i{font-size:12px;margin-right:4px}@media only screen and (max-width:960px){.mec-timetable-t2-col{width:100%;float:none}}@media (min-width:961px){.mec-timetable-col-7{width:14.28%}.mec-timetable-col-6{width:16.6666%}}.mec-timetable-t3-wrap td{position:relative;padding:0}.mec-timetable-t3-wrap td a{width:100%;display:block;min-height:110px}.mec-weather-box{padding:15px 0}.mec-weather-head{min-height:90px;padding:5px 0;clear:both;overflow:hidden;margin-bottom:25px;border-radius:10px;background:#238af5;position:relative}.mec-weather-icon-box{float:left;width:80px;height:80px;border-radius:10px;overflow:hidden;background:#238af5}.mec-weather-icon{width:80px;height:80px;display:inline-block;border-radius:10px}.mec-weather-summary{float:left;width:calc(100% - 80px);padding-left:10px;margin:10px 0;height:60px}.mec-weather-summary-report{font-size:15px;color:rgba(255,255,255,.68);margin-bottom:6px}.mec-weather-summary-temp{font-weight:300;color:#fff;font-size:29px;line-height:1}.degrees-mode{background:rgba(0,0,0,.2);cursor:pointer;font-weight:300;font-size:18px;padding:4px 5px;line-height:1;color:#fff;position:absolute;border-radius:8px;bottom:16px;left:16px}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras div{line-height:20px;height:20px}.mec-weather-extras span{color:rgba(255,255,255,.68);font-size:12px;text-transform:uppercase}.mec-weather-extras var{font-size:11px;letter-spacing:.4px}.mec-weather-icon.clear-day,.mec-weather-icon.clear-night{background-image:url(../img/mec-weather-icon-01.png)}.mec-weather-icon.partly-sunny-day,.mec-weather-icon.partly-sunny-night{background-image:url(../img/mec-weather-icon-02.png)}.mec-weather-icon.partly-cloudy-day,.mec-weather-icon.partly-cloudy-night{background-image:url(../img/mec-weather-icon-03.png)}.mec-weather-icon.cloudy,.mec-weather-icon.fog,.mec-weather-icon.wind{background-image:url(../img/mec-weather-icon-04.png)}.mec-weather-icon.thunderstorm{background-image:url(../img/mec-weather-icon-05.png)}.mec-weather-icon.rain{background-image:url(../img/mec-weather-icon-06.png)}.mec-weather-icon.hail,.mec-weather-icon.sleet,.mec-weather-icon.snow{background-image:url(../img/mec-weather-icon-07.png)}.mec-av-spot-wrap{width:auto;max-width:1200px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-av-spot{height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-av-spot .mec-event-article{position:relative;height:auto}.mec-av-spot .mec-av-spot-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:330px;float:none;margin:0;overflow:hidden}.mec-av-spot .mec-av-spot-content,.mec-av-spot .mec-av-spot-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-av-spot .mec-av-spot-head{background:#222;color:#fff;min-height:80px}.mec-av-spot .mec-av-spot-head .mec-av-spot-box{padding-top:25px;font-size:13px;color:#ddd}.mec-av-spot .mec-av-spot-head .mec-av-spot-box span{color:#40d9f1;font-size:40px;font-weight:700;font-style:italic}.mec-av-spot .mec-av-spot-head .mec-event-countdown{text-align:center;padding-top:10px;display:table;table-layout:fixed;margin:0 auto;float:right}.mec-av-spot .mec-av-spot-head .mec-event-countdown li{display:table-cell;padding:10px 20px;position:relative;height:60px}.mec-av-spot .mec-av-spot-head .mec-event-countdown p{margin-bottom:0}.mec-av-spot .mec-events-content p{margin-bottom:20px}.mec-av-spot-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-av-spot .mec-av-spot-col6{width:50%;float:left;height:100%}.mec-av-spot .mec-av-spot-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-av-spot .mec-av-spot-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-av-spot .mec-av-spot-col6 address{font-size:12px;margin-bottom:0}.mec-av-spot-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-av-spot-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:768px){.mec-av-spot .mec-av-spot-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-events-masonry-wrap{display:block;width:auto}.mec-masonry-item-wrap{width:calc(33.33% - 30px);padding:0;margin:0 15px 30px;min-height:10px;position:relative;float:left}.mec-events-masonry-cats{padding:10px;margin-bottom:25px;text-align:center;clear:both;list-style:none outside none}.mec-events-masonry-cats a{border-radius:2px;padding:6px 12px;font-size:13px;line-height:1.2;color:#333;font-weight:400;margin-top:0!important;text-align:center;display:inline-block;width:auto;border:2px solid transparent;transition:all .2s ease}.mec-events-masonry-cats a:hover{border-color:#40d9f1;color:#333}.mec-events-masonry-cats a.mec-masonry-cat-selected{border:2px solid #40d9f1;color:#40d9f1}.mec-masonry{background:#f7f7f7;height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-masonry .mec-event-article{position:relative;height:auto}.mec-masonry .mec-masonry-img{position:relative;width:100%;height:auto;float:none;margin:0;overflow:hidden}.mec-masonry .mec-masonry-img img{width:100%}.mec-masonry .mec-masonry-content,.mec-masonry .mec-masonry-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-masonry .mec-events-content p{margin-bottom:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head{min-height:79px;margin-bottom:10px;padding:14px 5%;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-masonry-content.mec-event-grid-modern .mec-event-content{padding-top:20px}@media (max-width:480px){.mec-masonry-content.mec-event-grid-modern .mec-labels-normal{display:block}}.mec-masonry-content.mec-event-grid-modern .mec-event-footer{height:auto}.mec-masonry .mec-masonry-col6 .mec-event-date{font-size:52px;letter-spacing:-2px;line-height:41px;vertical-align:top}.mec-masonry .mec-masonry-col6{width:50%;float:left;height:100%}.mec-masonry .mec-masonry-col6 i{font-size:24px;float:left;margin-right:7px;height:50px}.mec-masonry .mec-masonry-col6 .mec-event-month,.mec-masonry .mec-masonry-col6 h6{text-transform:capitalize;font-size:15px;padding:4px 0;display:inline;color:#444}.mec-masonry .mec-masonry-col6 .mec-event-detail,.mec-masonry .mec-masonry-col6 address{font-size:11px;margin-bottom:0}.mec-masonry-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-masonry-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:960px){.mec-masonry-item-wrap{width:calc(50% - 30px)}}@media only screen and (max-width:768px){.mec-masonry .mec-masonry-col6{width:100%;margin:10px 0}.mec-masonry-item-wrap{width:calc(100% - 30px)}}@media only screen and (max-width:479px){.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-wrap.mec-skin-masonry-container .mec-load-more-wrap{position:unset}.btn-wrapper{text-align:center}.countdown-wrapper .btn-wrapper{padding-top:10px;padding-right:0}.countdown-wrapper h5.countdown-message{letter-spacing:5px;font-weight:500;font-size:18px}.blox.dar .countdown-wrapper p,.countdown-wrapper p{color:#888}.countdown-wrapper a.button.black{float:right;margin-right:0}.mec-wrap .threedaydigits .days .flip-clock-label{right:-100px}@media only screen and (min-width:320px) and (max-width:767px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{left:0;font-weight:300}.mec-wrap span.flip-clock-divider{width:12px}}@media only screen and (min-width:320px) and (max-width:480px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}.mec-wrap span.flip-clock-divider:first-child{width:0}.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 18%}}@media screen and (min-width:960px) and (max-width:1200px){.mec-wrap .threedaydigits ul{height:50px;width:47px}}@media screen and (min-width:480px) and (max-width:768px){.mec-wrap .threedaydigits ul{height:48px;width:26px!important}.mec-wrap .threedaydigits .flip-clock-label{font-size:8px;left:-8px}}@media screen and (min-width:320px) and (max-width:480px){.mec-wrap .threedaydigits ul{height:48px;width:22px!important}}.mec-wrap .flip-clock-wrapper *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.mec-wrap .flip-clock-wrapper a{cursor:pointer;text-decoration:none;color:#ccc}.mec-wrap .flip-clock-wrapper a:hover{color:#fff}.mec-wrap .flip-clock-wrapper ul{list-style:none}.flip-clock-wrapper.clearfix:after,.mec-wrap .flip-clock-wrapper.clearfix:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper.clearfix:after{clear:both}.mec-wrap .flip-clock-wrapper{font:normal 11px "helvetica neue",helvetica,sans-serif;-webkit-user-select:none}.mec-wrap .flip-clock-meridium{background:0 0!important;box-shadow:0 0 0!important;font-size:36px!important}.mec-wrap .flip-clock-meridium a{color:#313333}.mec-wrap .flip-clock-wrapper{text-align:center;position:relative;display:inline-block;padding-bottom:10px}.flip-clock-wrapper:after,.mec-wrap .flip-clock-wrapper:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper:after{clear:both}.mec-wrap .flip-clock-wrapper ul{position:relative;float:left;margin:2px;width:50px;height:50px;font-size:80px;font-weight:700;line-height:87px;border-radius:3px;background:rgba(0,0,0,.21)}.mec-wrap .flip-clock-wrapper ul li{z-index:1;position:absolute;left:0;top:0;width:100%;height:100%;line-height:54px;text-decoration:none!important}.mec-wrap .flip-clock-wrapper ul li:first-child{z-index:2}.mec-wrap .flip-clock-wrapper ul li a{display:block;height:100%;-webkit-perspective:200px;-moz-perspective:200px;perspective:200px;margin:0!important;overflow:visible!important;cursor:default!important}.mec-wrap .flip-clock-wrapper ul li a div{z-index:1;position:absolute;left:0;width:100%;height:50%;font-size:80px;overflow:hidden;outline:1px solid transparent}.mec-wrap .flip-clock-wrapper ul li a div .shadow{position:absolute;width:100%;height:100%;z-index:2}.mec-wrap .flip-clock-wrapper ul li a div.up{-webkit-transform-origin:50% 100%;-moz-transform-origin:50% 100%;-ms-transform-origin:50% 100%;-o-transform-origin:50% 100%;transform-origin:50% 100%;top:0}.mec-wrap .flip-clock-wrapper ul li a div.up:after{content:"";position:absolute;top:24px;left:0;z-index:5;width:100%;height:3px;background-color:rgba(0,0,0,.12)}.mec-wrap .flip-clock-wrapper ul li a div.down{-webkit-transform-origin:50% 0;-moz-transform-origin:50% 0;-ms-transform-origin:50% 0;-o-transform-origin:50% 0;transform-origin:50% 0;bottom:0;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.mec-wrap .flip-clock-wrapper ul li a div div.inn{position:absolute;left:0;z-index:1;width:100%;height:200%;color:#fff;text-shadow:0 0 2px rgba(0,0,0,.25);text-align:center;background-color:#40d9f1;border-radius:3px;font-size:48px}.mec-wrap .flip-clock-wrapper ul li a div.up div.inn{top:0}.mec-wrap .flip-clock-wrapper ul li a div.down div.inn{bottom:0}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-before{z-index:3}.mec-wrap .flip-clock-wrapper .flip{box-shadow:0 2px 5px rgba(0,0,0,.17)}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-active{-webkit-animation:asd .5s .5s linear both;-moz-animation:asd .5s .5s linear both;animation:asd .5s .5s linear both;z-index:5}.mec-wrap .flip-clock-divider{float:left;display:inline-block;position:relative;width:18px;height:62px}.mec-wrap .flip-clock-divider:first-child{width:0}.mec-wrap .flip-clock-dot{display:none;background:#323434;width:10px;height:10px;position:absolute;border-radius:50%;box-shadow:0 0 5px rgba(0,0,0,.5);left:5px}.mec-wrap .flip-clock-divider .flip-clock-label{position:absolute;bottom:-1.5em;right:-71px;color:#101010;font-weight:700;text-shadow:none;text-transform:uppercase}.mec-wrap .blox.dark .flip-clock-divider .flip-clock-label{color:#8a8a8a}.mec-wrap .flip-clock-divider.seconds .flip-clock-label{right:-82px}.mec-wrap .flip-clock-dot.top{top:30px}.mec-wrap .flip-clock-dot.bottom{bottom:30px}@-webkit-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-moz-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-o-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}.flip-clock-wrapper ul.play li.flip-clock-active .down{z-index:2;-webkit-animation:turn .5s .5s linear both;-moz-animation:turn .5s .5s linear both;animation:turn .5s .5s linear both}@-webkit-keyframes turn{0%{-webkit-transform:rotatex(90deg)}100%{-webkit-transform:rotatex(0)}}@-moz-keyframes turn{0%{-moz-transform:rotatex(90deg)}100%{-moz-transform:rotatex(0)}}@-o-keyframes turn{0%{-o-transform:rotatex(90deg)}100%{-o-transform:rotatex(0)}}@keyframes turn{0%{transform:rotatex(90deg)}100%{transform:rotatex(0)}}.flip-clock-wrapper ul.play li.flip-clock-before .up{z-index:2;-webkit-animation:turn2 .5s linear both;-moz-animation:turn2 .5s linear both;animation:turn2 .5s linear both}@-webkit-keyframes turn2{0%{-webkit-transform:rotatex(0)}100%{-webkit-transform:rotatex(-90deg)}}@-moz-keyframes turn2{0%{-moz-transform:rotatex(0)}100%{-moz-transform:rotatex(-90deg)}}@-o-keyframes turn2{0%{-o-transform:rotatex(0)}100%{-o-transform:rotatex(-90deg)}}@keyframes turn2{0%{transform:rotatex(0)}100%{transform:rotatex(-90deg)}}.flip-clock-wrapper ul li.flip-clock-active{z-index:3}.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .3s linear both}.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .2s linear both}@-webkit-keyframes show{0%{opacity:0}100%{opacity:1}}@-moz-keyframes show{0%{opacity:0}100%{opacity:1}}@-o-keyframes show{0%{opacity:0}100%{opacity:1}}@keyframes show{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes hide{0%{opacity:1}100%{opacity:0}}@-moz-keyframes hide{0%{opacity:1}100%{opacity:0}}@-o-keyframes hide{0%{opacity:1}100%{opacity:0}}@keyframes hide{0%{opacity:1}100%{opacity:0}}@font-face{font-family:simple-line-icons;src:url("../fonts/Simple-Line-Icons.eot?v=2.3.1");src:url("../fonts/Simple-Line-Icons.eot?v=2.3.1#iefix") format("embedded-opentype"),url("../fonts/Simple-Line-Icons.woff2?v=2.3.1") format("woff2"),url("../fonts/Simple-Line-Icons.woff?v=2.3.1") format("woff"),url("../fonts/Simple-Line-Icons.ttf?v=2.3.1") format("truetype"),url("../fonts/Simple-Line-Icons.svg?v=2.3.1#simple-line-icons") format("svg");font-weight:400;font-style:normal}[class*=mec-sl-]{font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mec-sl-facebook:before{content:"\e00b"}.mec-sl-twitter:before{content:"\e009"}.mec-sl-google-plus:before{content:"\e60d"}.mec-sl-angle-left:before{content:"\e605"}.mec-sl-angle-right:before{content:"\e606"}.mec-sl-calendar:before{content:"\e075"}.mec-sl-clock-o:before{content:"\e081"}.mec-sl-home:before{content:"\e069"}.mec-sl-phone:before{content:"\e600"}.mec-sl-envelope:before{content:"\e086"}.mec-sl-sitemap:before{content:"\e037"}.mec-sl-map-marker:before{content:"\e096"}.mec-sl-floder:before{content:"\e089"}.mec-sl-wallet:before{content:"\e02a"}.mec-color,.mec-color-before :before,.mec-color-hover:hover,.mec-wrap .mec-color,.mec-wrap .mec-color-before :before,.mec-wrap .mec-color-hover:hover{color:#40d9f1}.mec-bg-color,.mec-bg-color-hover:hover,.mec-wrap .mec-bg-color,.mec-wrap .mec-bg-color-hover:hover{background-color:#40d9f1}.mec-box-marker,.mec-vip-content-notice{box-shadow:5px 0 0 #40d9f1 inset;padding:5px 10px}.mec-border-color,.mec-border-color-hover:hover,.mec-wrap .mec-border-color,.mec-wrap .mec-border-color-hover:hover{border-color:#40d9f1}.mec-toggle-month-divider.mec-skin-list-events-container{border:1px solid #e8e8e8;margin-bottom:30px;background:#f8f8f8;box-shadow:0 2px 18px -1px rgba(0,0,0,.1);border-radius:2px}.mec-toggle-month-divider .mec-month-divider{margin:0;text-align:left;background:#fff;position:relative;cursor:pointer;border-top:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider span{padding:20px;border-bottom:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider i{position:absolute;right:20px;top:24px;font-size:20px;cursor:pointer}.mec-toggle-month-divider .mec-month-divider span:before{display:none}.mec-toggle-month-divider .mec-month-divider+article{margin-top:20px}.mec-toggle-month-divider .mec-wrap .mec-month-divider:first-of-type{border-top:none}.mec-toggle-month-divider .mec-event-list-accordion .mec-month-divider:not(:first-of-type)~article{display:none}.mec-skin-list-events-container:not(.mec-toggle-month-divider) .mec-month-divider i{display:none}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-month{display:inline-block;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-date{font-size:14px;line-height:14px;float:none;display:inline-block;margin-right:0;font-weight:700}.mec-events-toggle .mec-toogle-inner-month-divider.mec-toggle-item-inner{padding:20px 60px 30px 15px}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{float:left;clear:right;width:100px;margin-right:20px;margin-left:10px}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-detail{margin-top:-6px}.mec-toogle-inner-month-divider .mec-toggle-item-col{float:none;width:100%;margin-top:10px;display:block;border:none}.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:19px;display:block;padding-top:10px}@media only screen and (max-width:768px){.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:14px;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col{margin-top:0}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{width:70px}}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-custom,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured{overflow:hidden;position:relative}.mec-event-label-captions{z-index:1;position:absolute;top:20px;right:-37px;font-size:11px;letter-spacing:1px;text-transform:uppercase;background:#04de78;padding:2px 40px;color:#fff;-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:.5s cubic-bezier(.25, .5, .06, .85);transition:.5s cubic-bezier(.25, .5, .06, .85);list-style:none;text-align:center}.mec-box-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-event-label-captions{display:none}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before{background:#de0404}.mec-daily-view-date-events article:before,ul.mec-weekly-view-dates-events article:before{padding:7px 40px!important;top:27px!important}.mec-event-grid-classic article .mec-fc-style,.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style,.mec-timeline-event .mec-fc-style,.mec-timetable-wrap article .mec-fc-style,.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article.mec-event-cover-modern .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{font-size:9px;letter-spacing:.5px;text-transform:uppercase;background:#04de78;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px}.mec-timeline-event.mec-label-canceled .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-modern.mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-minimal article .mec-fc-style:before,.mec-event-grid-simple article .mec-fc-style:before,.mec-timeline-event .mec-fc-style:before,.mec-timetable-wrap article .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article .mec-fc-style:before,.mec-wrap .mec-event-list-modern article .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style:before{width:0;height:0;border-top:4px solid transparent!important;border-right:5px solid;border-bottom:4px solid transparent;margin:0;top:50%;left:-5px;transform:translateY(-4.5px);position:absolute;content:"";color:var(--background-color)}.mec-timeline-event.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-event-grid-classic article.mec-label-canceled:before,.mec-event-grid-classic article.mec-label-featured:before,.mec-event-grid-minimal article.mec-label-canceled:before,.mec-event-grid-minimal article.mec-label-featured:before,.mec-event-grid-simple article.mec-label-canceled:before,.mec-event-grid-simple article.mec-label-featured:before,.mec-timetable-wrap article.mec-label-canceled:before,.mec-timetable-wrap article.mec-label-featured:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled:before,.mec-wrap .mec-event-list-accordion article.mec-label-featured:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled:before,.mec-wrap .mec-event-list-modern article.mec-label-featured:before{display:none}.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{top:-1px;right:-3px;font-size:11px;white-space:nowrap}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style:before,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-canceled:before,.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-featured:before{-ms-transform:none;-webkit-transform:none;transform:none;-webkit-transition:none;transition:none;top:271px;right:0}.mec-timetable-wrap article .mec-fc-style{top:-2px;font-size:10px;right:0}.mec-wrap article.mec-event-cover-modern .mec-fc-style{padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px;display:inline-block;border-radius:2px;-ms-transform:rotate(0);-webkit-transform:rotate(0);transform:rotate(0);right:0;top:0}.mec-skin-grid-events-container .mec-wrap .mec-event-grid-clean .mec-event-article:before{-ms-transform:none;-webkit-transform:none;transform:none!important;-webkit-transition:none;transition:none;top:22px!important;right:22px!important;padding:0 10px!important}.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style{top:-4px;font-size:10px;margin-left:10px;right:0}.mec-event-grid-classic article .mec-fc-style{padding:5px 20px;font-size:12px;margin-top:8px;display:inline-block}.mec-load-month-link{color:#a9a9a9;font-size:12px;font-weight:400;letter-spacing:1px;text-transform:uppercase;text-decoration:unset;transition:all .33s ease}ul.mec-categories{padding:0}ul.mec-categories li.mec-category{list-style:none}ul.mec-categories li.mec-category a{font-weight:400;color:#626262;font-size:13px;text-align:left;transition:all .23s ease;-webkit-transition:all .23s ease}.mec-wrap [id^=mec_skin_events_] .mec-event-data-fields{display:inline-block;width:20px;height:20px;position:relative;cursor:pointer;margin:0 4px;background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAABmJLR0QA/wD/AP+gvaeTAAAD90lEQVRoge2ZzWscZRjAf8/OJpUkQrF6SJMcNB+zobVdk8WCWEwqBEou0kMKtkgPHoRUD54VFMQ/wJBYhJ6MoGvFg3rQQ7dQFJVN09RANl9UkrgRbVrFuDZpZh4PSWqYmd2Z2a8Ize+0+7zPO/N7dt7l/RjYY48HGynHRZKqRltm7mmBXo1It9jEEBqBhq2UVYSswrTYmraVVFdn248iYpd675IK+GluruXehg4KchZoCtl9SVRHJcrw0fb2pWIdiirg2uzsY2LLOyjngNpib77FOujFdd1481hn50rYzqELGJ+afxGxh0AeCdvXhxURBuNm2ydhOgUuIJ1O1xgN+0eAl0OrhUDgwp3lxVd7e3s3Aub7k05n64yG3CXgZEl2QVG+sv6uG0gkDub8UiN+CZu/fBXlAYR+oz6XTKVSUb9U3wK2hk315LcR+vc3Nr/nn1aA8cz8GdDR8lmFR9DT8Vh7Mn97Hn6YmjpQKzUZ4NGKmAVnxRIrljDNW16NeYdQbaTmXXZfHuCAYUffytfo+QQmZmebbUvmKX2SKhdrIlZr3DR/cTZ4PgHL4jz/H3mAfUp00KvBVYCqRgQ5U3mnkKi+lFQ1nGFXAeOZuWNAc1WkwtHUMXOz2xl0FSDQWx2f8NjoCWfM4z8giWrIFIMorifgnqojdKDeF7Asi69TVxm7MYkIdB85TF/PcQzDqGjeNoqa/gWoNuab3765cpUr331//3vq283PJ5/vqWjeNgKNzpjXEGpwxzZJT0zuSmwHDzsDvou5nYjHg4l4xMqdVwiPAnQ1X3L3kcOuWNfRJyuet4O/nAH3f0BkGcVzu9jXcxyAsRuT9wX6nnu24nnbKCy7dJ2Ba9Nzn4lyKu9VdhX59KlY68DOiHsis3WsekLhEHC5uQqwlcvV0QmPitvNNYRUNTI+Pf+zQEt1tAKzEDdbH3ee5rmHkIgdUf2oel4BEUa9jiI95wGJMgysV1wqOGuCNeLV4FnA5lmlXqysU3BE+MBrNwaF9sTWQ28Av1fMKjgra/a9t/M15i3g0KGW2yq8Vhmn4Cj6SqFD34JroS6z7WOBC+XXCoYIQ12x9kuFcnwXczNm63mUz8unFRDRL+9kF1/3TQtyrXQ6W2fU55II/aWb+aPIF3fra08/09Lyj19uoOV0InEw98eviy+Avl+6XmFEGPpzeeFUEHko4gXH9czsgCLDlP/U7jdFB/3GvJNQGxqAeKw9WWvtM1EZBtbC9ncicFeEIWO9JhZWfqt/8Vyfnm5SooOqeraItdMC8KGyMdIVi2WLdSjLa1ZVjUzM3EzY6AlRuhU1BW36b3+tqyBLIDMCaRUuxzueGCvHa9Y99njQ+RcbkGTacAW/agAAAABJRU5ErkJggg==");background-position:center center;background-size:cover}.mec-wrap [id^=mec_skin_events_] .mec-event-data-fields .mec-data-fields-tooltip{position:absolute;width:340px;bottom:24px;left:calc(50% - 170px);background:#fff;border-radius:5px;border:1px solid #535a6121;box-shadow:0 4px 45px -8px #444b5061;visibility:hidden;opacity:0;transition:opacity .18s ease,transform .18s ease,visibility .25s ease;transform:scale(.9);z-index:99}.mec-wrap [id^=mec_skin_events_] .mec-event-data-fields:hover .mec-data-fields-tooltip{visibility:visible;opacity:1;transform:scale(1)}.mec-wrap [id^=mec_skin_events_] .mec-event-data-fields .mec-data-fields-tooltip:before{display:block;content:"";position:absolute;width:12px;height:12px;left:calc(50% - 12px);top:100%;transform:translate(50%,-50%) rotate(-45deg);background-color:#fff;box-shadow:0 8px 9px -4px #535a61;z-index:0}.mec-wrap [id^=mec_skin_events_] .mec-event-data-fields .mec-data-fields-tooltip .mec-data-fields-tooltip-box{overflow:hidden;border-radius:11px;padding:12px 0}.mec-wrap [id^=mec_skin_events_] .mec-event-data-fields .mec-data-fields-tooltip .mec-data-fields-tooltip-box ul{width:100%;height:200px;overflow-y:scroll;padding:9px 15px;text-align:left}.mec-wrap [id^=mec_skin_events_] .mec-event-data-fields .mec-data-fields-tooltip .mec-data-fields-tooltip-box ul::-webkit-scrollbar-track{background-color:#fafafa}.mec-wrap [id^=mec_skin_events_] .mec-event-data-fields .mec-data-fields-tooltip .mec-data-fields-tooltip-box ul::-webkit-scrollbar{width:4px;background-color:#fafafa}.mec-wrap [id^=mec_skin_events_] .mec-event-data-fields .mec-data-fields-tooltip .mec-data-fields-tooltip-box ul::-webkit-scrollbar-thumb{background-color:#40d9f1;border-radius:4px}.mec-wrap [id^=mec_skin_events_] .mec-event-data-fields .mec-data-fields-tooltip .mec-data-fields-tooltip-box ul .mec-event-data-field-item{display:block;width:100%;text-transform:none;margin:0 0 8px 0;color:#616263;font-size:13px;line-height:1.5;font-weight:400;padding-bottom:8px;border-bottom:1px dashed #e1e2e3}.mec-wrap [id^=mec_skin_events_] .mec-event-data-fields .mec-data-fields-tooltip .mec-data-fields-tooltip-box ul .mec-event-data-field-item:last-child{border-bottom:none}.mec-wrap [id^=mec_skin_events_] .mec-data-fields-tooltip .mec-data-fields-tooltip-box ul .mec-event-data-field-item a{color:#40d9f1;font-size:13px;line-height:1.5;font-weight:400}.mec-wrap [id^=mec_skin_events_] .mec-data-fields-tooltip .mec-data-fields-tooltip-box ul .mec-event-data-field-item a:hover{color:#000}.mec-wrap .mec-custom-data .mec-timetable-t2-content,.mec-wrap .mec-custom-data .mec-timetable-t2-content .mec-event-title,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-custom-data.mec-label-canceled,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-custom-data.mec-label-featured{overflow:visible!important}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-custom-data.mec-label-canceled .mec-event-label-captions,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-custom-data.mec-label-featured .mec-event-label-captions{-ms-transform:rotate(0);-webkit-transform:rotate(0);transform:rotate(0);width:fit-content;top:7px;right:7px;padding:2px 5px;border-radius:4px}@media(min-width:768px){.mec-wrap [id^=mec_skin_events_] .mec-event-list-standard .mec-label-canceled .mec-event-data-fields .mec-data-fields-tooltip,.mec-wrap [id^=mec_skin_events_] .mec-event-list-standard .mec-label-custom .mec-event-data-fields .mec-data-fields-tooltip,.mec-wrap [id^=mec_skin_events_] .mec-event-list-standard .mec-label-featured .mec-event-data-fields .mec-data-fields-tooltip{bottom:calc(50% - 110px);left:30px}.mec-wrap [id^=mec_skin_events_] .mec-event-list-standard .mec-label-canceled .mec-event-data-fields .mec-data-fields-tooltip:before,.mec-wrap [id^=mec_skin_events_] .mec-event-list-standard .mec-label-custom .mec-event-data-fields .mec-data-fields-tooltip:before,.mec-wrap [id^=mec_skin_events_] .mec-event-list-standard .mec-label-featured .mec-event-data-fields .mec-data-fields-tooltip:before{left:-10px;top:calc(100% - 110px);box-shadow:-8px -5px 9px -4px #535a61}}.mec-hourly-schedule-speaker-info{background:#fff;padding:30px;border:1px solid #e6e6e6;max-width:740px;width:740px;margin-left:-110px}.mec-hourly-schedule-speaker-thumbnail{float:left;max-width:30%;width:30%}.mec-hourly-schedule-speaker-name{font-weight:700;font-size:26px;line-height:1.2;color:#333;text-transform:uppercase}.mec-hourly-schedule-speaker-details{float:left;width:69%;padding-left:25px}.mec-hourly-schedule-speaker-job-title{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-hourly-schedule-speaker-description{font-size:14px;font-weight:400;color:#6d7683;line-height:1.7;text-align:left}.mec-hourly-schedule-speaker-contact-information a i{color:#6b6b6b;background:#ebebeb;line-height:29px;margin:9px 7px 9px 0;width:30px;height:30px;display:inline-block;text-align:center;transition:all .2s ease;font-size:15px;cursor:pointer;border-radius:3px}.mec-hourly-schedule-speaker-contact-information a i:hover{background:#222;color:#fff}@media only screen and (max-width:479px){.mec-hourly-schedule-speaker-thumbnail{float:none;max-width:none;margin-right:0;margin-bottom:15px;width:100%}.mec-hourly-schedule-speaker-thumbnail img{width:100%}.mec-hourly-schedule-speaker-details{padding-left:0}.mec-hourly-schedule-speaker-info{width:90%;margin:0 auto}}.mec-profile .mec-profile-bookings{border:2px solid #e6e6e6;text-align:center}.mec-profile .mec-profile-bookings tbody tr:first-child{background:#f7f7f7;font-weight:700;text-transform:capitalize}.mec-profile .mec-profile-bookings tbody tr{border-bottom:1px solid #e6e6e6;font-size:14px}.mec-profile .mec-profile-bookings tbody tr td{border:1px solid #e6e6e6;padding:10px;text-align:center;word-break:initial}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:53%;text-align:left}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8) i{color:#fe686a}.mec-profile .mec-event-status{padding:5px 10px;color:#fff;border-radius:2px;font-size:12px;line-height:12px;letter-spacing:.4px}.mec-profile .mec-event-status.mec-book-confirmed{background:#50d477}.mec-profile .mec-event-status.mec-book-pending{background:#fcbe69}.mec-profile .mec-event-status.mec-book-rejected{background:#fe686a}.mec-profile .mec-event-date{font-size:12px;color:#888}.mec-event-date,.mec-event-status{text-align:center}.mec-event-date .mec-tooltip,.mec-event-status .mec-tooltip{position:relative;width:fit-content;margin:auto}.mec-profile i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{min-width:250px;max-width:300px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal;opacity:0;visibility:hidden;display:none}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:13px;letter-spacing:1.1px;font-weight:500}.mec-event-date .mec-tooltip:hover .box:after,.mec-event-status .mec-tooltip:hover .box:after{content:"";position:absolute;width:12px;height:12px;left:calc(50% - 12px);bottom:-12px;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-event-status .mec-tooltip .box{min-width:100px}.mec-event-status.mec-book-confirmed .mec-tooltip .box,.mec-event-status.mec-book-confirmed .mec-tooltip:hover .box:after{background-color:#50d477}.mec-event-status.mec-book-rejected .mec-tooltip .box,.mec-event-status.mec-book-rejected .mec-tooltip:hover .box:after{background-color:#fe686a}.mec-event-status.mec-book-pending .mec-tooltip .box,.mec-event-status.mec-book-pending .mec-tooltip:hover .box:after{background-color:#fcbe69}.mec-event-date .mec-tooltip:hover .box,.mec-event-status .mec-tooltip:hover .box{opacity:1;visibility:visible;display:block}.mec-profile .mec-event-status{padding:0}.mec-profile .mec-booking-number-of-attendees{font-size:13px;color:#888}.mec-profile .mec-booking-number-of-attendees i,.mec-profile .mec-profile-bookings-view-invoice i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-booking-attendees{background:#fff;padding:10px}.mec-booking-attendees{width:850px;text-align:center}.mec-booking-attendees-wrapper{border:2px solid #e6e6e6;font-size:14px}.mec-booking-attendees-head{display:table;width:100%;background:#f7f7f7;border-bottom:1px solid #e6e6e6;font-weight:700}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{vertical-align:middle;display:table-cell;padding:7px;border-right:1px solid #e6e6e6;font-size:12px}.mec-booking-attendees-head-content{display:table;width:100%;border-bottom:1px solid #e6e6e6}.mec-booking-attendees-wrapper .mec-booking-attendees-head-content:last-child{border:none}.mec-booking-attendees-head span:nth-child(1),.mec-booking-attendees-head-content>span:nth-child(1){width:4%}.mec-booking-attendees-head span:nth-child(2),.mec-booking-attendees-head-content>span:nth-child(2){width:20%}.mec-booking-attendees-head span:nth-child(3),.mec-booking-attendees-head-content>span:nth-child(3){width:24%}.mec-booking-attendees-head span:nth-child(4),.mec-booking-attendees-head-content>span:nth-child(4){width:26%}.mec-booking-attendees-head span:nth-child(5),.mec-booking-attendees-head-content>span:nth-child(5){width:26%}@media only screen and (max-width:759px){.mec-booking-attendees{width:470px}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{word-break:break-all}}@media (max-width:1366px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:6%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:40%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:8%}}@media (max-width:1024px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:30%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:15%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:10%}}@media (max-width:780px){.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:12px}.mec-event-date .mec-tooltip .box{min-width:200px}.mec-event-status .mec-tooltip .box{min-width:90px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}.mec-profile .mec-profile-bookings tbody tr{font-size:12px}}@media (max-width:480px){.mec-profile .mec-booking-number-of-attendees,.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:8px!important}.mec-profile .mec-profile-bookings tbody tr td{padding:3px}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:19%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:18%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:13%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:13%}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:8px}.mec-event-date .mec-tooltip .box{min-width:75px}.mec-event-status .mec-tooltip .box{min-width:70px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}}.mec-woo-booking-checkout{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;border-radius:0;margin-bottom:6px;min-width:170px;margin-top:5px;text-align:center}.mec-woo-booking-checkout:hover{background:#222;color:#fff}.mec-woo-booking-checkout:focus,.mec-woo-booking-checkout:visited{color:#fff}.single-mec-events .lity-container{max-width:480px;width:480px}.lity-content .mec-events-meta-group-booking{width:100%;padding:20px 50px;background:#fff}.lity-content .mec-events-meta-group-booking .mec-booking form>h4{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center;line-height:1.2;margin-bottom:10px}.lity-content .mec-events-meta-group-booking .mec-booking form>h4:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available,.lity-content .mec-events-meta-group-booking .mec-event-ticket-name,.lity-content .mec-events-meta-group-booking .mec-event-ticket-price,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-name,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-price,.lity-content .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;clear:none;padding:5px 1em 3px 0;display:inline-block}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available{margin-bottom:12px}.lity-content .mec-events-meta-group-booking select{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}.lity-content .mec-events-meta-group-booking input[type=email]{color:#888;border:1px solid #e1e1e1;font-size:14px;display:block;width:100%;outline:0}.lity-content .mec-events-meta-group-booking input{margin-bottom:10px!important}.lity-content .mec-book-ticket-variation h5{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:0;clear:none;padding:5px 1em 3px 0;display:inline-block;text-transform:capitalize}.lity-content ul.mec-book-tickets-container{padding:0}.lity-content .mec-events-meta-group-booking input[type=email],.lity-content .mec-events-meta-group-booking input[type=number],.lity-content .mec-events-meta-group-booking input[type=text]{outline:0;display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;margin-bottom:2px!important}.lity-container .mec-click-pay #mec_woo_add_to_cart_btn_r,.lity-content button[type=submit]{position:relative;border:none;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px}.lity-content button[type=submit]:hover{background:#222}.lity-content .mec-book-tickets-container li{list-style:none}.lity-content .mec-events-meta-group-booking #mec_book_payment_form h4,.lity-content .mec-events-meta-group-booking li h4{font-size:19px;font-weight:700}.lity-content .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li{width:50%}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li:nth-child(even){border:none}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li span{display:block}.lity-content .mec-events-meta-group-booking button[type=submit]:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.lity-content .mec-events-meta-group-booking button[type=submit].loading:after{display:inline-block}@media only screen and (max-width:480px){.lity-content .mec-events-meta-group-booking{padding:20px;width:340px;margin:0 auto}}@media (max-width:480px){.single-mec-events .lity-container{max-width:440px;width:440px;margin:0 auto!important}}@media (max-width:411px){.single-mec-events .lity-container{max-width:380px;width:380px}}@media (max-width:375px){.single-mec-events .lity-container{max-width:350px;width:350px}}@media (max-width:320px){.single-mec-events .lity-container{max-width:300px;width:300px}}.mec-events-meta-group-booking{position:relative}.mec-cover-loader:after{content:"";position:absolute;top:0;right:0;left:0;bottom:0;background:rgba(255,255,255,.5);z-index:99999}.mec-loader{background:rgba(0,0,0,0);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:9}.mec-loader,.mec-loader:after{border-radius:50%;width:5em;height:5em;z-index:999999999999}.mec-loader{font-size:10px;text-indent:-9999em;border-top:.5em solid rgba(0,0,0,.2);border-right:.5em solid rgba(0,0,0,.2);border-bottom:.5em solid rgba(0,0,0,.2);border-left:.5em solid #fff;-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear}@-webkit-keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.mec-google-recaptcha{margin:0 0 20px 16px}.mec-wrap *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap :after,.mec-wrap :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap .clearfix:after,.mec-wrap .clearfix:before{content:"\0020";display:block;overflow:hidden;visibility:hidden;width:0;height:0}.mec-wrap .clearfix:after{clear:both}.mec-wrap .clearfix{zoom:1}.mec-wrap .clear,.mec-wrap .clr{clear:both;display:block;overflow:hidden;visibility:hidden}.mec-wrap .clr{visibility:visible;overflow:visible}.mec-container [class*=col-] img{max-width:100%}.mec-container{margin-right:auto;margin-left:auto;padding-left:10px;padding-right:10px}.mec-container:after,.mec-container:before{content:" ";display:table}.mec-container:after{clear:both}@media only screen and (max-width:479px){.mec-container{width:300px}}@media only screen and (min-width:480px) and (max-width:767px){.mec-container{width:420px}}@media only screen and (min-width:768px) and (max-width:960px){.mec-container{width:768px}}@media only screen and (min-width:961px){.mec-container{width:960px}}@media only screen and (min-width:1200px){.mec-container{width:1196px;padding-left:15px;padding-right:15px}}@media only screen and (min-width:1921px){.mec-container{max-width:1690px}}.mec-wrap .row{margin-left:-10px;margin-right:-10px}.mec-wrap .row:after,.mec-wrap .row:before{content:" ";display:table}.mec-wrap .row:after{clear:both}.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{position:relative;min-height:1px;padding-left:10px;padding-right:10px}@media only screen and (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{padding-left:15px;padding-right:15px}.mec-wrap .row{margin-left:-15px;margin-right:-15px}}.mec-container [class*=col-].alpha{padding-left:0}.mec-container [class*=col-].omega{padding-right:0}.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{float:left}.mec-wrap .col-xs-12{width:100%}.mec-wrap .col-xs-11{width:91.66666666666666%}.mec-wrap .col-xs-10{width:83.33333333333334%}.mec-wrap .col-xs-9{width:75%}.mec-wrap .col-xs-8{width:66.66666666666666%}.mec-wrap .col-xs-7{width:58.333333333333336%}.mec-wrap .col-xs-6{width:50%}.mec-wrap .col-xs-5{width:41.66666666666667%}.mec-wrap .col-xs-4{width:33.33333333333333%}.mec-wrap .col-xs-3{width:25%}.mec-wrap .col-xs-2{width:16.666666666666664%}.mec-wrap .col-xs-1{width:8.333333333333332%}@media (min-width:768px){.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9{float:left}.mec-wrap .col-sm-12{width:100%}.mec-wrap .col-sm-11{width:91.66666666666666%}.mec-wrap .col-sm-10{width:83.33333333333334%}.mec-wrap .col-sm-9{width:75%}.mec-wrap .col-sm-8{width:66.66666666666666%}.mec-wrap .col-sm-7{width:58.333333333333336%}.mec-wrap .col-sm-6{width:50%}.mec-wrap .col-sm-5{width:41.66666666666667%}.mec-wrap .col-sm-4{width:33.33333333333333%}.mec-wrap .col-sm-3{width:25%}.mec-wrap .col-sm-2{width:16.666666666666664%}.mec-wrap .col-sm-1{width:8.333333333333332%}}@media (min-width:961px){.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9{float:left}.mec-wrap .col-md-12{width:100%}.mec-wrap .col-md-11{width:91.66666666666666%}.mec-wrap .col-md-10{width:83.33333333333334%}.mec-wrap .col-md-9{width:75%}.mec-wrap .col-md-8{width:66.66666666666666%}.mec-wrap .col-md-7{width:58.333333333333336%}.mec-wrap .col-md-6{width:50%}.mec-wrap .col-md-5{width:41.66666666666667%}.mec-wrap .col-md-4{width:33.33333333333333%}.mec-wrap .col-md-3{width:25%}.mec-wrap .col-md-2{width:16.666666666666664%}.mec-wrap .col-md-1{width:8.333333333333332%}}@media (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9{float:left}.mec-wrap .col-lg-12{width:100%}.mec-wrap .col-lg-11{width:91.66666666666666%}.mec-wrap .col-lg-10{width:83.33333333333334%}.mec-wrap .col-lg-9{width:75%}.mec-wrap .col-lg-8{width:66.66666666666666%}.mec-wrap .col-lg-7{width:58.333333333333336%}.mec-wrap .col-lg-6{width:50%}.mec-wrap .col-lg-5{width:41.66666666666667%}.mec-wrap .col-lg-4{width:33.33333333333333%}.mec-wrap .col-lg-3{width:25%}.mec-wrap .col-lg-2{width:16.666666666666664%}.mec-wrap .col-lg-1{width:8.333333333333332%}}#mec_woo_add_to_cart_btn{min-width:170px;margin-top:5px;text-align:center}.mec-breadcrumbs{border-radius:2px;padding:9px 15px 6px;font-size:11px;color:#8d8d8d;letter-spacing:0;text-transform:none;font-weight:500;margin:auto 15px 33px 15px;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.025)}.mec-breadcrumbs-modern{margin:auto 0 33px 0}.mec-breadcrumbs a{color:#000;padding-left:4px}.mec-breadcrumbs a:hover{text-decoration:underline}.mec-breadcrumbs i{font-size:8px;margin:0 0 0 4px}.mec-breadcrumbs .container{padding-left:20px}.mec-content-notification a{margin-left:5px}.mec-content-notification{background:#f7f7f7;padding:10px 10px 10px;border:1px solid #e8e8e8}.mec-content-notification p{margin-bottom:0}.mec-fes-form #mec-advanced-wraper div:first-child>ul{border:1px solid #cfeff5;width:auto;box-shadow:0 1px 4px -2px #cfeff5;display:block;margin:5px 0 10px;padding:5px 0;border-radius:2px}.mec-fes-form #mec-advanced-wraper div:first-child>ul:last-of-type{margin-bottom:35px}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #cfeff5}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li.mec-active,.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li:hover{background:#40d9f1!important;box-shadow:0 1px 9px -3px #40d9f1;color:#fff!important}.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:83%}.mec-search-bar-wrap .mec-search-form .mec-ajax-search-result .mec-text-input-search{width:100%;float:none}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 84%);margin-left:11px;background:#40d9f1;color:#fff;font-weight:400}.mec-text-input-search+input#mec-search-bar-input{margin-left:-3px}.mec-search-bar-wrap input#mec-search-bar-input:hover{background:#000}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box input{float:none}@media (max-width:768px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{display:inline-block}}@media (max-width:480px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:64%}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 67%)}}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box{overflow:visible}.mec-ajax-search-result{position:relative}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]{width:calc(100% - 36px)}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]:focus{border-color:#efefef}div#mec-ajax-search-result-wrap{position:absolute;top:100%;opacity:0;visibility:hidden;width:calc(100% - 2px);min-height:50px;left:0;right:0;padding:0 10px;z-index:9999;transition:all .3s ease}.mec-ajax-search-result-events{background:#fff;padding:10px 20px;border:1px solid #efefef;border-top:none}.mec-ajax-search-result-events article:first-of-type{border:none}article.mec-search-bar-result{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease;clear:both}.mec-search-bar-result .mec-event-list-search-bar-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-search-bar-result .mec-event-list-search-bar-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-search-bar-result .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-search-bar-result .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-search-bar-result .mec-event-time i{color:#40d9f1;float:none;width:unset;height:unset;font-size:inherit;margin-right:3px;border:none;padding:0}.mec-search-bar-result .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-search-bar-result .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-search-bar-result .mec-event-detail{font-size:13px;line-height:1.3;color:#9a9a9a;margin-bottom:0}.mec-wrap.mec-modern-search-bar .mec-totalcal-box{background:rgba(255,255,255,.87);border:none;padding:35px;border-radius:3px;box-shadow:0 3px 13px rgba(0,0,0,.4);position:relative}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=search],.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=text]{height:58px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;width:100%;padding-left:45px;padding-right:13px;font-size:16px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box .mec-text-input-search i{position:absolute;background:0 0;border:none;font-size:21px;left:15px;top:calc(50% - 19px);color:#40d9f1}.mec-wrap.mec-modern-search-bar .mec-text-input-search{position:relative;height:58px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=submit]{height:58px;border:none;border-radius:2px;background:#fc4a1a;font-size:17px;font-weight:700!important}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{height:45px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;padding-right:13px;font-size:16px;border-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap i{height:45px;background:#ffff;border-radius:2px 0 0 2px;box-shadow:none;border:1px solid #ccc;font-size:15px;padding-top:14px;border-right:0;color:#40d9f1;margin-right:-1px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap{min-height:64px}@media (max-width:768px){.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:70%}.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:calc(100% - 72%)}}@media (max-width:480px){.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:92%;padding:0 10px;position:relative;display:block;margin-left:11px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:100%;margin-bottom:20px}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:10px}}.mec-wrap .mec-related-events-wrap{margin-left:0;margin-right:0}.mec-related-events{margin-right:-15px;margin-left:-15px}@media(max-width:980px){.mec-related-events{margin-right:-10px;margin-left:-10px}}.mec-related-events-wrap{margin-top:50px}.mec-related-events-wrap h3.mec-rec-events-title:before{content:"";background:#2c2f34;width:46px;height:4px;position:absolute;top:59px;left:0}.mec-related-events-wrap h3.mec-rec-events-title{font-size:21px;font-weight:600;padding:17px 0;margin-bottom:28px;text-transform:uppercase;border-bottom:1px solid #e8e8e8;position:relative}.mec-related-event-post figure{margin:0}.mec-related-event-post figure img{width:100%}.mec-related-event-content{background-color:#fff;margin:-27px 30px 15px;position:relative;max-width:90%;padding:13px 21px 16px 19px}.mec-related-event-content h5 a{font-size:16px;color:#121212;font-weight:600;transition:all .3s ease}@media(max-width:480px){.mec-wrap .mec-related-events .mec-related-event-post{padding-right:15px;padding-left:15px}}.mec-next-previous-events{width:100%;height:104px;display:block;padding:0}.mec-next-previous-events li{list-style:none;width:50%;display:inline-block;margin:40px 0 40px}.mec-next-previous-events li:last-child{text-align:right;float:right}.mec-next-previous-events li a{padding:9px 14px 9px 14px;border:1px solid #000;transition:.3s}.mec-wrap .mec-next-previous-events li a:hover{color:#fff}.mec-previous-event{float:left;text-align:left}.mec-next-event ul{padding-left:0}.mec-next-previous-events .mec-previous-event i{padding-right:20px}.mec-next-previous-events .mec-next-event i{padding-left:20px}.mec-next-multiple ul{padding:0}.mec-next-multiple ul li a{display:block;position:relative;padding:11px 14px 9px;z-index:9}.mec-next-multiple ul .mec-date,.mec-next-multiple ul .mec-time{display:inline-block}.mec-next-multiple ul .mec-time{width:40%}.mec-next-multiple ul .mec-date{width:60%}.mec-next-multiple ul .mec-date{float:left;text-align:left}.mec-next-multiple ul .mec-time{text-align:right;position:relative;z-index:-1}.mec-next-multiple ul .mec-time dd{margin:0;padding:0}.mec-next-multiple ul .mec-date .mec-end-date-label,.mec-next-multiple ul .mec-date .mec-start-date-label,.mec-next-multiple ul .mec-time .mec-events-abbr{font-size:11px;line-height:24px}@media (max-width:1280px){.mec-next-multiple ul li a{padding:7px 9px 5px}.mec-next-multiple ul .mec-date .mec-start-date-label,.mec-next-multiple ul .mec-time .mec-events-abbr{font-size:12px}}@media (max-width:480px){.mec-next-previous-events li{list-style:none;width:100%;display:block;margin:10px 0;float:unset}.mec-next-previous-events li a{width:100%;max-width:100%;float:unset;display:block;text-align:center;font-size:16px}}.mec-fes-form-cntt #mec-organizer-payments ul{list-style:none;background:0 0;margin:0;padding-left:0}.mec-fes-form-cntt #mec-organizer-payments ul li h4{background:0 0;letter-spacing:.2px;display:inline-block;padding-left:0!important;padding-bottom:10px!important;margin:0;margin-bottom:1px;letter-spacing:1px;text-transform:capitalize;padding-top:1px}.mec-fes-form-cntt #mec-organizer-payments ul>li{width:100%;display:inline-block;vertical-align:top;padding:0;margin:0}.mec-fes-form #mec_gateway_options_form_stripe_connection_button{padding:9px 13px!important}#mec-login-form.mec-login-form{width:100%;background:#fff;padding:20px;margin:0 auto;text-align:center;position:relative}#mec-login-form.mec-login-form .mec-login-input{display:block;width:286px;margin:0 auto;margin-bottom:12px}#mec-login-form.mec-login-form .mec-login-forgotpassword{display:inline-block}.mec-login-forgotpassword a{color:#000}#mec-login-form.mec-login-form .mec-login-submit{float:right;text-align:right;width:49%;padding-right:2px}#mec-login-form.mec-login-form .mec-login-input input{border:none;box-shadow:none;background:#fff;color:#ccc;border-left:1px solid #e6e6e6;padding:0;height:100%;background-image:none!important;padding-left:10px;padding-right:0;width:222px;margin-left:0;clear:none;float:left}#mec-login-form.mec-login-form .mec-login-input label{border:1px solid #e6e6e6;height:52px;display:inline-block;padding:0;border-radius:3px;overflow:hidden;box-shadow:0 2px 4px rgba(0,0,0,.04)}#mec-login-form.mec-login-form .mec-login-input label i{padding:15px 13px 17px 16px;vertical-align:middle;font-size:20px;width:50px;color:#c5cad0;background:#fafafa;margin-right:0;float:left}#mec-login-form.mec-login-form .mec-login-forgotpassword{float:left;width:49%;text-align:left;padding-top:10px;font-size:13px;padding-left:2px}#mec-login-form.mec-login-form button{width:120px;height:44px;border:none;color:#fff;border-radius:3px;font-size:12px;font-weight:700;letter-spacing:1px;text-transform:uppercase;transition:all .22s ease;margin:0;min-width:unset}.mec-login-form button{box-shadow:0 4px 22px -7px #40d9f1;background-color:#40d9f1}#mec-login-form.mec-login-form button:hover{background:#222;box-shadow:0 3px 14px -4px #333}#mec-login-form.mec-login-form .mec-login-form-footer{width:286px;margin:0 auto;margin-top:20px;clear:both;position:relative;display:block;min-height:50px}#mec-login-form.mec-login-form .mec-ajax-login-loading{position:absolute;background:#ffffffc2;left:0;right:0;top:0;bottom:0}#mec-login-form.mec-login-form .lds-ripple{position:absolute;width:64px;height:64px;top:calc(50% - 23px);left:calc(50% - 23px)}#mec-login-form.mec-login-form .lds-ripple div{position:absolute;border:4px solid #40d9f1;opacity:1;border-radius:50%;animation:lds-ripple 1.2s cubic-bezier(0,.2,.1,.8) infinite}#mec-login-form.mec-login-form .lds-ripple div:nth-child(2){animation-delay:-.5s}#mec-login-form.mec-login-form .mec-ajax-login-loading-text{position:absolute;min-width:200px;top:calc(50% - 18px);left:calc(50% - 124px);color:#fff;padding:10px 22px;border-radius:3px;background:#fff;height:47px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong{color:#3fcc60}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong:before{content:"";position:absolute;top:8px;left:1px;border-right:2px solid #3fcc60;border-bottom:2px solid #3acb5c;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:8px;height:14px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:after{content:"";position:absolute;top:14px;left:5px;border-bottom:2px solid #ff5d39;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:14px;height:4px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong{color:#ff5d39}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:before{border-color:#ff5d39;border-bottom:none}@keyframes lds-ripple{0%{top:28px;left:28px;width:0;height:0;opacity:1}100%{top:-1px;left:-1px;width:58px;height:58px;opacity:0}}.mec-book-form-gateway-checkout [id*=mec_do_transaction_stripe_] .mec-form-row:first-child{margin-bottom:20px}.mec-events-meta-group-booking .StripeElement{box-sizing:border-box;height:40px;padding:10px 12px;border:1px solid transparent;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]{box-sizing:border-box;height:40px;padding:10px 12px;border:0!important;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1!important;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff!important}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]:focus{outline:0}.mec-events-meta-group-booking .StripeElement--focus{box-shadow:0 1px 3px 0 #cfd7df}.mec-events-meta-group-booking .StripeElement--invalid{border-color:#fa755a}.mec-events-meta-group-booking .StripeElement--webkit-autofill{background-color:#fefde5!important}.mec-booking-tab-content .button,.mec-booking-tab-content .mec-bfixed-field-add-option,.mec-booking-tab-content .mec-reg-field-add-option,.mec-fes-form .mec-form-row .button:not(.wp-color-result),.mec-fes-form input[type=file],ul#mec_bfixed_form_fields li .mec_bfixed_field_remove,ul#mec_orgz_form_row li .mec-additional-organizer-remove,ul#mec_reg_form_fields li .mec_reg_field_remove{height:40px;margin-top:1px;text-decoration:none;font-size:14px;line-height:34px!important;margin:0;padding:0 15px 1px!important;text-transform:none;letter-spacing:0;font-weight:600;color:#40d9f1;background:#fff;border-radius:3px;margin-right:8px;border:2px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5}.mec-fes-form .mec-additional-organizers .select2-container{margin-bottom:0}.mec-booking-tab-content .button:hover,.mec-booking-tab-content .mec-bfixed-field-add-option:hover,.mec-booking-tab-content .mec-reg-field-add-option:hover,.mec-fes-form .mec-form-row .button:not(.wp-color-result):hover{background:#40d9f1;color:#fff;border-color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1}.mec-fes-form .mec-form-row input+button.button{vertical-align:top}.mec-fes-form .mec-form-row .quicktags-toolbar input.button.button-small{border-width:1px;padding:0 7px;color:#80c6d2;font-weight:400;margin:1px;transform:none}.mec-fes-form input[type=file]{max-width:166px;text-align:center;height:44px;transition:all .2s ease;border-radius:5px!important;border:2px dashed #b8e9f3}.mec-fes-form input[type=file]:hover{box-shadow:0 2px 16px -3px #cfeff5}.mec-fes-form input[type=file]::-webkit-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form input[type=file]::-moz-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form .mec-meta-box-fields>label{padding:0}#mec_bfixed_form_fields li,#mec_orgz_form_row li,#mec_reg_form_fields li{list-style:none}ul#mec_bfixed_form_fields,ul#mec_orgz_form_row,ul#mec_reg_form_fields{padding:0;margin:0}ul#mec_bfixed_form_fields li,ul#mec_orgz_form_row li,ul#mec_reg_form_fields li{background:#f8feff;margin:6px -20px;padding:15px 25px 10px;width:auto;font-size:13px;border-top:1px solid #e8fafd;border-bottom:1px solid #e8fafd;position:relative}ul#mec_bfixed_form_fields li .mec_bfixed_field_remove,ul#mec_orgz_form_row li .mec-additional-organizer-remove,ul#mec_reg_form_fields li .mec_reg_field_remove{position:absolute;right:10px;top:10px;margin:0;padding:6px 8px!important;font-size:11px;line-height:12px!important;min-height:10px;height:auto;display:block;cursor:pointer;color:#ea6485;border-color:#ffd2dd;letter-spacing:.4px}ul#mec_bfixed_form_fields li .mec_bfixed_field_remove:hover,ul#mec_orgz_form_row li .mec-additional-organizer-remove:hover,ul#mec_reg_form_fields li .mec_reg_field_remove:hover{background:#ea6485;color:#fff;border-color:#ea6485;box-shadow:0 2px 6px -3px #ea6485}#mec_bfixed_form_fields input[type=checkbox],#mec_bfixed_form_fields input[type=radio],#mec_reg_form_fields input[type=checkbox],#mec_reg_form_fields input[type=radio],.mec-form-row input[type=checkbox],.mec-form-row input[type=radio]{background-color:#fff;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block!important;vertical-align:middle;float:none;transition:all .18s ease;outline:0;margin:1px 4px 4px 0;text-align:left;cursor:pointer;-webkit-appearance:none;-moz-appearance:none}#mec_bfixed_form_fields input[type=checkbox]:focus,#mec_bfixed_form_fields input[type=radio]:focus,#mec_reg_form_fields input[type=checkbox]:focus,#mec_reg_form_fields input[type=radio]:focus,.mec-form-row input[type=checkbox]:focus,.mec-form-row input[type=radio]:focus{outline:0}#mec_bfixed_form_fields input[type=radio],#mec_reg_form_fields input[type=radio],.mec-form-row input[type=radio]{-webkit-appearance:none;border-radius:20px!important;min-width:20px;min-height:20px;margin:0 0 4px 0;vertical-align:middle}#mec_bfixed_form_fields input[type=checkbox]:hover,#mec_bfixed_form_fields input[type=radio]:hover,#mec_reg_form_fields input[type=checkbox]:hover,#mec_reg_form_fields input[type=radio]:hover,.mec-form-row input[type=checkbox]:hover,.mec-form-row input[type=radio]:hover{border-color:#40d9f1}#mec_bfixed_form_fields input[type=checkbox]:checked,#mec_bfixed_form_fields input[type=radio]:checked,#mec_reg_form_fields input[type=checkbox]:checked,#mec_reg_form_fields input[type=radio]:checked,.mec-fes-form .mec-form-row input[type=checkbox]:checked,.mec-fes-form .mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1;border-color:#40d9f1;background:#40d9f1!important;border-radius:2px;position:relative}.mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1,inset 0 0 0 3px #fff!important}#mec_bfixed_form_fields input[type=checkbox]:checked::before,#mec_reg_form_fields input[type=checkbox]:checked::before,.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:5px;margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);transform-origin:0% 100%;color:#fff;transition:all .2s ease;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards}@keyframes checkbox-check{0%{width:0;height:0;border-color:#fff;transform:translate3d(0,0,0) rotate(45deg)}33%{width:6px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:6px;height:12px;border-color:#fff;transform:translate3d(0,-12px,0) rotate(45deg)}}#wrap #mec-event-data input[type=radio]{position:relative}#wrap #mec-event-data input[type=radio]:empty::before{display:none}#mec_bfixed_form_field_types .button,#mec_reg_form_field_types .button{position:relative;outline:0;border-radius:50px;padding:2px 21px 2px 31px!important;line-height:1;font-size:11px;font-weight:600;color:#40d9f1;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_fes_location_remove_image_button,#mec_fes_organizer_remove_image_button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button,#mec_meta_box_tickets_form [id^=mec_ticket_row] button,#mec_reg_form_field_types .button.red{color:#ea6485;box-shadow:0 2px 6px -3px #ea6485;background:#fff;border-color:#ffd2dd}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_reg_form_field_types .button.red:hover{background:#ea6485;color:#fff}#mec_bfixed_form_field_types .button:before,#mec_reg_form_field_types .button:before{position:absolute;left:12px;color:#40d9f1;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_reg_form_field_types .button.red:before{color:#ea6485}#mec_bfixed_form_field_types .button:hover:before,#mec_reg_form_field_types .button.red:hover:before,#mec_reg_form_field_types .button:hover:before{color:#fff}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_price_per_dates_container .button:hover,#mec_reg_form_field_types .button.red:hover{color:#fff;border:2px solid #ea6485}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button],#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]{color:#ea6485;border-color:#ffd2dd}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button]:hover,#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}#mec_fees_list [id^=mec_remove_fee_button],#mec_meta_box_ticket_variations_form .mec-form-row [id^=mec_remove_ticket_variation_button]{margin-left:14px!important}#mec_meta_box_hourly_schedule_days .mec-add-hourly-schedule-button{line-height:10px!important}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button{color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button:hover,#mec_reg_form_field_types .button:hover{color:#fff;border:2px solid #40d9f1;background:#40d9f1}.mec-fes-form #mec_bfixed_form_fields span.mec_bfixed_field_sort,.mec-fes-form #mec_orgz_form_row span.mec-additional-organizer-sort,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_sort{font-size:0;color:#fff;padding-left:20px}.mec-fes-form #mec_bfixed_form_fields .mec_bfixed_field_option_sort,.mec-fes-form #mec_orgz_form_row span.mec-additional-organizer-sort,.mec-fes-form #mec_reg_form_fields .mec_reg_field_options,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_option_sort{font-size:0}.mec-fes-form #mec_bfixed_form_fields span.mec_bfixed_field_option_sort:before,.mec-fes-form #mec_bfixed_form_fields span.mec_bfixed_field_sort:before,.mec-fes-form #mec_orgz_form_row span.mec-additional-organizer-sort:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_option_sort:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_options:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_sort:before{position:absolute;left:px;top:12px;width:80px;height:20px;display:block;cursor:move;font-family:simple-line-icons;content:"\e023";font-size:18px;color:#888}.mec-fes-form #mec_bfixed_form_fields span.mec_bfixed_field_option_sort:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_option_sort:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_options:before{font-size:13px;left:2px;top:26px;width:14px;height:14px}.mec-fes-form #mec_bfixed_form_fields .mec_bfixed_field_options,.mec-fes-form #mec_reg_form_fields .mec_reg_field_options{margin-top:20px}.mec-fes-form #mec_fes_form #mec_bfixed_form_fields .mec_bfixed_notification_placeholder{font-size:0}.mec-form-row input+span.mec-tooltip,.mec-form-row select+span.mec-tooltip{bottom:10px}.mec-form-row label+span.mec-tooltip{bottom:8px}.mec-form-row textarea+span.mec-tooltip{bottom:auto;vertical-align:top;top:12px}.mec-form-row span+span.mec-tooltip{bottom:0;vertical-align:middle}.mec-form-row .mec-col-8 input[type=text],.mec-form-row .mec-col-8 select,.mec-form-row .mec-col-8 span.mec-archive-skins{vertical-align:top}.mec-form-row input:disabled{opacity:.6;background:#f6f6f6}.mec-form-row p{font-size:12px!important;line-height:18px!important;color:#97b2bb!important}.mec-form-row p.description{font-style:italic}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12)}table.ui-datepicker-calendar{margin-bottom:0}.ui-datepicker-calendar th{font-weight:700;color:#4a4b4c}.ui-datepicker-calendar td,.ui-datepicker-calendar th,.ui-datepicker-calendar tr{border:none}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;display:inline-block;border-radius:2px;padding:2px 10px;margin:5px 3px;width:auto;min-height:20px;height:26px;border:1px solid #e3e3e3;box-shadow:inset 0 1px 3px rgba(0,0,0,.04)}.ui-datepicker.ui-widget table{border-spacing:2px;border:none}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#9a9b9c;font-weight:600;width:30px;height:30px;line-height:30px;display:inline-block;border-radius:33px;padding:0;background:#fff;transition:all .2s ease}.ui-datepicker.ui-widget td a.ui-state-active,.ui-datepicker.ui-widget td a:hover{background:#40d9f1;color:#fff}.ui-datepicker.ui-widget .ui-datepicker-next,.ui-datepicker.ui-widget .ui-datepicker-prev{color:#40d9f1;width:30px;height:30px;line-height:30px;display:inline-block;text-align:center;border-radius:33px;background:#ecfcff;transition:all .2s ease}.ui-datepicker.ui-widget .ui-datepicker-next:hover,.ui-datepicker.ui-widget .ui-datepicker-prev:hover{background:#fff;box-shadow:0 0 7px -3px rgba(0,0,0,.4)}.mec-fes-form .mec-tooltip .dashicons-before:before{color:#40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button{border-radius:3px;background:#40d9f1;color:#fff;height:54px;font-size:17px;font-weight:700;box-shadow:0 2px 8px -4px #40d9f1;display:block;transition:all .28s ease;text-transform:uppercase;margin:20px 0 0;padding:14px 20px;border:0;cursor:pointer;text-align:center;letter-spacing:.1em;line-height:1}.mec-fes-form button[type=submit].mec-fes-sub-button:hover{box-shadow:0 2px 12px -2px #40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button:focus{margin-bottom:-2px;background:#1dc2dc}.mec-fes-form .mec-title span.mec-dashicons{color:#40d9f1;float:left;margin-right:5px}.mec-fes-form .mec-tooltip .box h5{padding:14px 2px}#mec_fes_form,.mec-fes-form-top-actions{max-width:838px;margin:0 auto}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt{width:calc(100% - 300px);float:left;padding-right:20px;max-width:538px;display:block}.mec-fes-form .mec-fes-form-sdbr{width:300px}}.mec-fes-form .quicktags-toolbar,.mec-fes-form div.mce-toolbar-grp{background:#ecfcff;border-bottom:1px solid #cfeff5;box-shadow:0 1px 0 1px #cfeff5}.mec-fes-form .quicktags-toolbar{margin-right:-1px;border-top:1px solid #cfeff5}.mec-fes-form div.mce-statusbar{border-top-color:#cfeff5}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-listbox{border:1px solid #cfeff5;border-radius:3px}.mec-fes-form .mce-tinymce.mce-container.mce-panel{border:1px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5;border-radius:2px 0 2px 2px}.mec-fes-form .wp-editor-tools .wp-media-buttons{transform:translateY(-6px);margin-top:-6px}.mec-fes-form .wp-editor-tabs{padding-right:0;margin-right:-2px}.mec-fes-form .wp-editor-tabs .wp-switch-editor{border-radius:3px 3px 0 0;border-color:#cfeff5;background:#fff;color:#96b8bd;border-bottom:1px solid #ecfcff}.mec-fes-form .html-active .switch-html,.mec-fes-form .tmce-active .switch-tmce,.mec-fes-form .wp-editor-tabs .wp-switch-editor:active{background:#ecfcff;color:#40d9f1}.mec-fes-form .wp-editor-container,.mec-fes-form div.mce-edit-area.mce-panel{border:none;box-shadow:none}.mec-fes-form .wp-editor-container textarea.wp-editor-area{max-width:100%}.mec-fes-form .mce-toolbar .mce-listbox button{font-size:12px;line-height:22px;color:#798f96}.mec-fes-form .mce-toolbar .mce-ico{color:#627f88}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active,.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn:active,.mec-fes-form .qt-dfw.active{background:#fff;border-color:#40d9f1;box-shadow:inset 0 2px 6px -3px rgba(106,231,255,.7)}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active .mce-ico{color:#40d9f1}body .mce-menu .mce-menu-item.mce-active.mce-menu-item-normal,body .mce-menu .mce-menu-item.mce-selected,body .mce-menu .mce-menu-item:focus,body .mce-menu .mce-menu-item:hover,body.mce-menu .mce-menu-item.mce-active.mce-menu-item-preview{background:#40d9f1;color:#fff}.mec-fes-form .mec-not-in-days-day{display:inline-block;padding:4px 32px 4px 15px;border-radius:33px;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;background:#fbfeff;color:#40d9f1;vertical-align:top}.mec-fes-form .mec-not-in-days-remove{display:inline-block;padding:0 1px 0 0;margin-left:-30px;vertical-align:sub;background:#ff918a;color:#fff;font-family:cursive;width:21px;height:21px;line-height:17px;text-align:center;border-radius:20px;cursor:pointer}.mec-fes-list ul li .mec-event-status{float:left;margin-right:10px;margin-left:0;font-size:11px;font-weight:400;letter-spacing:.3px;border-radius:3px;padding:4px 8px}.mec-fes-form .post-status.mec-book-confirmed:before,.mec-fes-list ul li .mec-event-status.mec-book-confirmed:before{content:"";margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);color:#fff;width:6px;height:12px;float:left;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before,.mec-fes-list ul li .mec-fes-event-remove:before,.mec-fes-list ul li .mec-fes-event-view a:before,.mec-fes-list-top-actions a:before{content:"\e054";font-family:simple-line-icons;font-size:13px;vertical-align:middle}.mec-fes-list ul li .mec-fes-event-view a:before{content:"\e087"}.mec-fes-list-top-actions a:before{content:"\e095";font-weight:400;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before{content:"\e083"}.mec-fes-form .post-status{border-radius:20px}.mec-fes-form .post-status.mec-book-confirmed:before{height:20px;width:9px;margin:3px 10px}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker-calendar th{height:auto;padding:0}.ui-datepicker .ui-datepicker-calendar td a,.ui-datepicker-calendar th{font-size:14px;line-height:30px}.mec-fes-form .description{font-size:16px}.mec-fes-form input[type=file]{text-align:left}.mec-fes-export-wrapper{width:640px;background:#f8feff;padding:40px 25px}.mec-fes-export-wrapper .mec-fes-btn-date{font-size:16px;line-height:44px;overflow:hidden}.mec-fes-export-wrapper .date-messgae{font-family:sans-serif;padding:2px 18px}.mec-fes-list ul li .mec-event-export-csv,.mec-fes-list ul li .mec-event-export-excel{font-size:12px;border:1px solid #40d9f1;padding:1px 4px;background:rgba(141,229,243,.18);border-radius:4px;color:#40d9f1;font-family:sans-serif;cursor:pointer;display:inline-block;height:26px;line-height:22px}.mec-export-badge{font-size:11px;color:#40d9f1;width:auto;height:24px;line-height:25px;display:inline-block;padding:0 8px;text-align:center;border-radius:3px;background:#ecfcff;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export{font-size:11px;background:#f7f7f7;float:right;margin-left:5px}.mec-fes-list ul li .mec-fes-event-export:hover{cursor:pointer;background:#90f0e0;border-color:#4dc8cc}.mec-fes-export-wrapper ul{padding:0;width:100%;text-align:center}.mec-fes-export-wrapper ul li{list-style:none;display:inline-block;width:30%;padding:10px 15px 10px 32px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal;margin-right:10px;position:relative;cursor:pointer;font-size:13px;line-height:1;transition:all .2s ease}.mec-fes-export-wrapper ul li:nth-child(3n+0){margin-right:0}.mec-fes-export-wrapper ul li:hover{box-shadow:0 2px 16px -1px #c6e8ef}.mec-fes-export-wrapper ul li:before{content:"";position:absolute;display:inline-block;background:#fff;width:15px;height:15px;margin:-1px 0 0 5px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%;left:9px;top:calc(50% - 7px)}.mec-fes-export-wrapper ul li.fes-export-date-active{color:#40d9f1}.mec-fes-export-wrapper ul li.fes-export-date-active:before{width:15px;height:15px;border:6px solid #40d9f1;background:#fff;box-shadow:0 3px 16px -3px #40d9f1}.mec-fes-btn-export{margin-left:15px;margin-top:12px}.mec-fes-btn-export span{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-right:4px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;cursor:pointer;margin-left:6px}.mec-fes-btn-export span:hover{background:#222}.mec-event-export-excel:before,span.mec-event-export-csv:before{content:"\e083";font-family:simple-line-icons;font-size:13px;vertical-align:middle;margin-right:7px;margin-top:-1px;display:inline-block}.mec-fes-list .wn-p-t-right{min-width:170px;max-width:200px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;visibility:hidden;opacity:0;transition:opacity .23s;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal}.mec-fes-list .mec-fes-event-export:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-remove:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-view:hover .wn-p-t-right{visibility:visible;opacity:1}.mec-fes-list .wn-p-t-right i{position:absolute!important;top:100%;right:50%;margin-top:-6px!important;margin-right:-6px!important;width:12px;height:24px;overflow:hidden;transform:rotate(-90deg)}.mec-fes-list .wn-p-t-right i:after{content:"";position:absolute;width:12px;height:12px;left:0;top:50%;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-fes-form .select2-container{min-height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;border-radius:2px;border:1px solid #ddd;box-shadow:inset 0 1px 6px rgba(0,0,0,.07);background-color:#fff;color:#32373c;outline:0;transition:50ms border-color ease-in-out;min-width:200px;font-size:14px}.mec-fes-form .select2-selection{border:none;background:0 0;padding-top:2px;width:100%;height:100%}.mec-fes-form .select2-container--default.select2-container--focus .select2-selection{border:none!important;outline:0}.mec-fes-form .select2-container--default .select2-selection--single .select2-selection__arrow{top:5px;right:4px}.select2-results{font-size:14px}.mec-fes-category-children,.mec-fes-category-children .mec-fes-category-children{padding-left:24px}.mec-timeline-events-container{margin-left:19px;padding-top:20px;padding-bottom:9px}.mec-events-timeline-wrap{position:relative;display:block;overflow:visible;padding-left:95px}.mec-events-timeline-wrap:before{width:1px;content:"";height:100%;position:absolute;background:#b8f5ff;left:95px}.mec-timeline-month-divider+.mec-timeline-events-container{padding-top:110px}.mec-timeline-right-content{float:right;width:300px}.mec-timeline-left-content{float:left;width:calc(100% - 300px);padding-left:15px;padding-right:15px;position:relative}.mec-timeline-month-divider{position:absolute;display:block;background:#fff;right:calc(100% - 95px);left:0;width:190px;text-align:center;border:1px solid #b8f5ff;border-radius:50px;font-size:15px;padding:12px 27px;color:#40d9f1}.mec-timeline-event-date{position:relative}.mec-timeline-events-container .mec-timeline-event-date:before{content:"";width:11px;height:11px;position:absolute;background:#40d9f1;border-radius:50px;top:8px;left:-24px;z-index:9}.mec-timeline-events-container .mec-timeline-event-date:after{content:"";width:21px;height:21px;position:absolute;background:rgba(64,217,241,.3);border-radius:50px;top:3px;left:-29px}.mec-timeline-event-date{float:left;width:17%;margin-top:27px}.mec-timeline-event-content{float:left;width:82%;background:#fff;box-shadow:0 10px 30px 0 rgba(0,0,0,.1);border-radius:10px;overflow:visible;position:relative}.mec-timeline-main-content{padding:23px 30px}.mec-timeline-main-content h4{margin-bottom:15px}.mec-timeline-main-content h4 a{font-size:25px;font-weight:700;color:#000;line-height:33px;text-decoration:none}.mec-timeline-main-content p{font-size:15px;color:#515151;line-height:24px;margin-bottom:36px}a.mec-timeline-readmore{width:100%;display:block;text-align:center;color:#fff;text-decoration:none;line-height:52px;font-size:17px;font-weight:700;-webkit-transition:all .2s ease;transition:all .2s ease;border-radius:0 0 10px 10px}a.mec-timeline-readmore:hover{background:#222;color:#fff}.mec-timeline-event-time .mec-time-details{display:inline-block;margin-left:7px;font-size:13px;line-height:13px;font-weight:500}.mec-timeline-event-time i{vertical-align:middle}.mec-timeline-event-time{background:rgba(64,217,241,.11);display:inline-block;padding:4px 20px 8px;border-radius:50px}.mec-timeline-event-location address{font-style:normal;margin-bottom:0}.mec-timeline-event-location address span{font-size:13px;font-weight:500;vertical-align:middle;margin-left:6px}.mec-timeline-event-location address i{font-size:17px;vertical-align:middle}.mec-timeline-event-location{background:rgba(64,217,241,.11);display:inline-block;padding:7px 20px 11px;border-radius:20px;line-height:1.24}.mec-timeline-event-details+.mec-timeline-event-details{margin-top:12px}.mec-timeline-event-content .col-md-4{padding:0}.mec-timeline-event-content:after{content:"";display:block;position:absolute;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-timeline-event-content:after{top:30px;border-color:transparent #fff transparent transparent;left:-10px}.mec-timeline-event-image img{border-radius:0 10px 0 0;width:100%}.mec-timeline-event-image a{display:block;line-height:0}a.mec-timeline-readmore i{vertical-align:middle;margin-left:10px;font-size:9px}.mec-wrap .mec-timeline-event-content a.mec-timeline-readmore:hover{background:#444}@media (min-width:1024px){.mec-timeline-event{margin:50px 0}}@media (max-width:1023px){.mec-timeline-event{margin:25px 0}.mec-events-timeline-wrap{padding-left:20px}.mec-events-timeline-wrap:before{left:20px}}@media (max-width:1200px) and (min-width:992px){.mec-timeline-event-content{width:81%}.mec-timeline-event-date{width:18%}}@media (max-width:992px){.mec-timeline-left-content,.mec-timeline-right-content{float:none;width:100%;text-align:center}.mec-timeline-right-content .mec-timeline-event-image{text-align:center}.mec-timeline-right-content .mec-timeline-event-image img{max-width:300px;border-radius:10px;margin-top:35px}}@media (max-width:440px){.mec-timeline-right-content .mec-timeline-event-image img{margin-top:0}}@media (max-width:320px){.mec-timeline-event-content,.mec-timeline-event-date{float:none;width:100%}.mec-timeline-event-date{margin-bottom:8px}.mec-timeline-event-content:after{display:none}.mec-timeline-main-content{padding:23px 0}.mec-timeline-main-content p{font-size:13px}.mec-timeline-main-content h4 a{font-size:23px;line-height:24px}.mec-time-details span{font-size:11px}.mec-timeline-event-location address span{font-size:12px}a.mec-timeline-readmore{line-height:44px;font-size:14px}}.mec-timeline-event-image img{margin-bottom:-7px;border-radius:0 10px 10px 0}.mec-timeline-event-image a img{margin-bottom:0;border-radius:0 10px 0 0}.mec-event-tile-view article.mec-tile-item{height:400px;margin:15px 0;border-radius:22px;padding:35px 25px;position:relative;color:#fff;background-size:cover!important;background-position:center!important;box-shadow:0 2px 9px rgba(0,0,0,.25);transition:all .22s ease}.mec-event-tile-view article.mec-tile-item:hover{cursor:pointer;box-shadow:0 4px 19px rgba(0,0,0,.5)}.mec-event-tile-view article.mec-tile-item div{position:relative;z-index:3}.mec-event-tile-view article.mec-tile-item:after,.mec-event-tile-view article.mec-tile-item:before{position:absolute;background:-moz-linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:-webkit-gradient(left top,right top,color-stop(0,rgba(0,0,0,.35)),color-stop(65%,rgba(0,0,0,.48)),color-stop(100%,rgba(0,0,0,.72)));background:-webkit-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);content:"";left:0;right:0;bottom:0;top:0;width:100%;height:100%;display:block;border-radius:22px;z-index:1}.mec-event-tile-view article.mec-tile-item:after{background-color:inherit;background-image:none;top:35px;bottom:auto;height:40px;border-radius:0 3px 3px 0;width:97px;z-index:2;box-shadow:2px 1px 7px rgba(0,0,0,.1)}.mec-event-tile-view article.mec-tile-item .event-tile-view-head{padding:8px 3px;font-size:16px;font-weight:700;margin-bottom:50px;text-transform:uppercase}.mec-event-tile-view article.mec-tile-item .event-tile-view-head>div{display:inline}.mec-event-tile-view article.mec-tile-item .mec-event-time{color:#d6d6d6;font-size:15px;font-weight:400;line-height:1;padding-top:4px;position:absolute;right:1px;top:10px}.mec-event-tile-view article.mec-tile-item .mec-event-time i{vertical-align:baseline;font-size:14px;float:left}.mec-event-tile-view article.mec-tile-item i{margin-right:5px}.mec-event-tile-view article.mec-tile-item .mec-event-title{color:#fff;font-weight:700;font-size:23px;padding-top:12px}.mec-event-tile-view article.mec-tile-item .mec-event-title a{color:#fff}.mec-event-tile-view article.mec-tile-item .mec-event-title a:hover{text-decoration:underline}.mec-event-tile-view article.mec-tile-item .mec-event-content{position:absolute;height:100%;bottom:0;left:0;right:0}.mec-event-tile-view article.mec-tile-item .mec-tile-into-content-link{position:absolute;content:"";top:0;right:0;left:0;bottom:0;background:0 0}.mec-tile-event-content{position:absolute!important;bottom:25px;left:25px;right:25px}.mec-event-tile-view article.mec-label-canceled:before,.mec-event-tile-view article.mec-label-featured:before{height:auto}.mec-skin-tile-month-navigator-container{position:relative;text-align:center;font-size:12px;height:80px;background:#f7f7f7;padding:28px;border-radius:11px;margin-bottom:20px}.mec-skin-tile-month-navigator-container:after,.mec-skin-tile-month-navigator-container:before{content:"";display:block;position:absolute;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-skin-tile-month-navigator-container:after{bottom:-20px;border-color:#f7f7f7 transparent transparent transparent}.mec-skin-tile-month-navigator-container:before{bottom:-21px;border-color:#fff transparent transparent transparent}@media only screen and (max-width:480px){.mec-skin-tile-month-navigator-container{height:110px;padding-top:68px}}.mec-skin-tile-month-navigator-container h2{font-size:23px;font-weight:700}.mec-skin-tile-month-navigator-container .mec-next-month,.mec-skin-tile-month-navigator-container .mec-previous-month{position:absolute;top:28px;left:20px;cursor:pointer;padding:3px 12px;line-height:23px;background:#fff;border-radius:32px;box-shadow:0 1px 3px rgba(0,0,0,.02);transition:all .22s ease}.mec-skin-tile-month-navigator-container .mec-next-month{left:auto;right:20px}.mec-skin-tile-month-navigator-container .mec-next-month:hover,.mec-skin-tile-month-navigator-container .mec-previous-month:hover{box-shadow:0 2px 5px rgba(0,0,0,.1);color:#000}.mec-wrap .mec-event-tile-view article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view article.mec-label-featured:before{position:absolute;bottom:auto;text-align:center;right:auto;font-size:10px}.mec-event-tile-view article.mec-tile-item .mec-tile-overlay{position:absolute;background:-moz-linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:-webkit-gradient(left top,right top,color-stop(0,rgba(0,0,0,.35)),color-stop(65%,rgba(0,0,0,.48)),color-stop(100%,rgba(0,0,0,.72)));background:-webkit-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);content:"";left:0;right:0;bottom:0;top:0;width:100%;height:100%;display:block;border-radius:22px;z-index:1}.mec-wrap .mec-event-tile-view .col-md-3 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-3 article.mec-label-featured:before{top:12px;left:103px;z-index:9}.mec-wrap .mec-event-tile-view .col-md-4 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-4 article.mec-label-featured:before{top:18px;left:125px}.mec-wrap .mec-event-tile-view .col-md-6 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-6 article.mec-label-featured:before{top:20px;left:200px}@media (max-width:960px){.mec-wrap .mec-event-tile-view .col-sm-3{width:50%}}@media (max-width:480px){.mec-wrap .mec-event-tile-view .col-sm-3{width:100%}}.mec-event-tile-view article.mec-tile-item.tile-multipleday-event:after{width:165px}.mec-event-tile-view .col-md-6.col-sm-6 article.mec-label-canceled:before{top:100px;left:140px}.mec-event-tile-view .col-md-4.col-sm-4 article.mec-label-canceled:before{top:20px;left:140px}@media (min-width:761px) and (max-width:1200px){.mec-event-tile-view .col-md-3.col-sm-3{width:50%}.mec-event-tile-view .col-md-6.col-sm-6 article.mec-label-canceled:before{top:80px;left:90px}.mec-event-tile-view .col-md-4.col-sm-4 article.mec-label-canceled:before{top:40px;left:70px}.mec-event-tile-view .col-md-3.col-sm-3 article.mec-label-canceled:before{top:90px;left:110px}}@media (min-width:761px) and (max-width:1024px){.mec-event-tile-view .col-md-4.col-sm-4{width:50%}.mec-event-tile-view .col-md-4.col-sm-4:nth-child(1n+3){width:100%}}@media (max-width:760px){.mec-event-tile-view .col-md-3.col-sm-3{width:100%}.mec-event-tile-view .col-md-4.col-sm-4{width:100%}}@media (max-width:480px){.mec-event-tile-view .col-md-6.col-sm-6 article.mec-label-canceled:before{top:100px;left:80px}}.mec-calendar .mec-event-article .mec-event-date{font-size:12px;text-align:left}.mec-event-detailed-time{display:flex}.mec-event-detailed-time i{width:15px;padding-top:7px}.mec-ongoing-normal-label{background-color:#40d9f1}.mec-expired-normal-label{background-color:#000}.mec-wrap .mec-cancellation-reason span,.mec-wrap .mec-labels-normal .mec-label-normal{position:relative;top:-3px;font-size:11px;font-weight:300;margin-left:10px;line-height:1.9;letter-spacing:1px;color:#fff;padding:2px 7px;border-radius:2px;white-space:nowrap}.mec-agenda-event-title .mec-labels-normal .mec-label-normal,.mec-timetable-event .mec-labels-normal .mec-label-normal,.tooltipster-box .mec-labels-normal .mec-label-normal{font-size:9px;letter-spacing:.5px;text-transform:uppercase;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px;top:0}.mec-av-spot .mec-labels-normal .mec-label-normal,.mec-event-countdown-part1 .mec-labels-normal .mec-label-normal,.mec-event-countdown-part2 .mec-labels-normal .mec-label-normal,.mec-event-cover-modern .mec-labels-normal .mec-label-normal,.mec-masonry-content .mec-labels-normal .mec-label-normal,.mec-owl-carousel:not(.mec-slider-t1) .mec-labels-normal .mec-label-normal,.mec-tile-item .mec-labels-normal .mec-label-normal,.mec-timeline-event .mec-labels-normal .mec-label-normal,.tooltipster-box .mec-labels-normal .mec-label-normal{margin:0 5px 0 0}.mec-event-countdown-style3 .mec-labels-normal .mec-label-normal{margin:0 0 0 5px}.mec-event-footer-carousel-type3 .mec-labels-normal .mec-label-normal{display:inline}.mec-event-carousel-type4 .mec-fc-style{display:none}.mec-event-carousel-type4 .mec-labels-normal{top:-20px;position:relative}.mec-wrap .mec-cancellation-reason{display:inline-block}.mec-wrap .mec-cancellation-reason span{line-height:1.3;background:#eb3450;text-transform:none;display:inline-block;white-space:nowrap}.mec-wrap .mec-event-list-accordion .mec-cancellation-reason span,.mec-wrap .mec-event-list-accordion .mec-labels-normal .mec-label-normal{top:7px}.mec-agenda-event-title .mec-cancellation-reason span,.mec-timetable-event .mec-cancellation-reason span,.tooltipster-box .mec-cancellation-reason span{font-size:9px;letter-spacing:.5px;text-transform:uppercase;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px;top:0}.mec-wrap .mec-event-container-novel .mec-cancellation-reason span,.mec-wrap .mec-event-container-novel .mec-labels-normal .mec-label-normal{white-space:inherit;margin-left:0}.mec-wrap .mec-event-container-simple .mec-cancellation-reason span,.mec-wrap .mec-event-container-simple .mec-labels-normal .mec-label-normal{top:-12px;white-space:inherit;margin-left:0}.mec-av-spot .mec-cancellation-reason span,.mec-event-countdown-part1 .mec-cancellation-reason span,.mec-event-countdown-part2 .mec-cancellation-reason span,.mec-event-cover-modern .mec-cancellation-reason span,.mec-masonry-content .mec-cancellation-reason span,.mec-owl-carousel:not(.mec-slider-t1) .mec-cancellation-reason span,.mec-tile-item .mec-cancellation-reason span,.mec-timeline-event .mec-cancellation-reason span,.tooltipster-box .mec-cancellation-reason span{margin:0 5px 0 0}.mec-owl-carousel .mec-event-footer-carousel-type3 span.mec-event-title-soldout,.mec-owl-carousel .mec-event-footer-carousel-type3 span.mec-few-tickets{display:inline}.mec-owl-carousel .mec-event-footer-carousel-type3 span.mec-labels-normal,.mec-owl-carousel .mec-event-footer-carousel-type3 span.soldout{margin-top:0;color:#fff;display:unset}.mec-wrap .mec-single-event .mec-cancellation-reason span{margin:0;padding:6px 12px;font-size:14px;font-weight:700;white-space:normal;word-break:break-word}.featherlight-content .mec-cancellation-reason{display:block;width:100%;text-align:center;margin-top:20px;margin-bottom:-10px}.mec-event-data-fields{margin-bottom:30px}.mec-event-data-fields ul.mec-event-data-field-items{overflow:hidden;padding-top:10px;padding-left:0}.mec-event-data-fields .mec-event-data-field-item{list-style:none;margin-bottom:10px;border-bottom:1px dashed #e1e2e3;padding-bottom:8px;width:50%;float:left}.mec-event-data-fields .mec-event-data-field-item .mec-event-data-field-value{margin:0 0 8px 0;color:#616263;font-size:13px;line-height:1.5}.mec-event-data-fields .mec-event-data-field-item:last-child{border:none;width:100%}.mec-event-data-fields .mec-event-data-field-item .mec-event-data-field-name{text-transform:none;font-size:13px;font-weight:600;padding-bottom:5px;color:#313131;width:100%;padding-bottom:10px;position:relative;letter-spacing:-.2px}@media (max-width:768px){.mec-event-data-fields .mec-event-data-field-item{width:100%}}.mec-wrap .col-md-4 .mec-event-data-fields .mec-event-data-field-item{width:100%;display:block}.mec-shortcode-organizers{overflow:hidden;margin-top:7px;font-weight:400;line-height:19px;font-size:12px}.mec-event-list-minimal .mec-shortcode-organizers{margin-top:6px}.mec-shortcode-organizers i{color:#777}.mec-shortcode-organizers .mec-organizers{display:inline-block;list-style:none;padding:0 0 0 3px;vertical-align:top}.mec-organizer-item a{color:#777}.mec-event-list-standard .mec-shortcode-organizers .mec-sl-user:before{position:absolute;left:6px;font-size:15px;line-height:26px}.mec-organizer-item a{font:14px/25px sans-serif;font-weight:400;color:#626262}.mec-shortcode-organizers{position:relative;padding-left:28px;margin-bottom:10px}.mec-skin-grid-container .mec-organizers,.mec-skin-grid-container .mec-shortcode-organizers{padding:0;margin:0}.mec-skin-grid-container .mec-shortcode-organizers i{display:none}.mec-skin-grid-container .mec-event-grid-clean .mec-shortcode-organizers a,.mec-skin-grid-container .mec-event-grid-clean .mec-shortcode-organizers a:hover,.mec-skin-grid-container .mec-event-grid-colorful .mec-shortcode-organizers a,.mec-skin-grid-container .mec-event-grid-colorful .mec-shortcode-organizers a:hover{color:#fff;font-size:12px}.mec-skin-grid-container .mec-event-grid-clean .mec-shortcode-organizers a:hover,.mec-skin-grid-container .mec-event-grid-colorful .mec-shortcode-organizers a:hover{text-decoration:underline}.mec-skin-grid-container .mec-event-grid-minimal .mec-shortcode-organizers{margin-top:12px}.mec-skin-grid-container .mec-event-grid-novel .mec-shortcode-organizers{position:relative}.mec-skin-grid-container .mec-event-grid-novel .mec-shortcode-organizers i{display:block;color:rgba(255,255,255,.4)}.mec-skin-grid-container .mec-event-grid-novel .mec-shortcode-organizers i:before{position:absolute;top:6px;left:6px;font-size:17px;font-family:simple-line-icons;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}.mec-skin-grid-container .mec-event-grid-novel .mec-shortcode-organizers a{padding-left:35px;font-size:15px;line-height:30px;color:rgba(255,255,255,.4)}.mec-skin-grid-container .mec-event-grid-novel .mec-shortcode-organizers a:hover{color:#fff}.mec-calendar-daily .mec-shortcode-organizers,.mec-calendar-daily .mec-shortcode-organizers .mec-organizers{padding:0}.mec-calendar-daily .mec-shortcode-organizers i{display:none}.mec-calendar-daily .mec-organizer-item a{font-size:13px;line-height:1.3;color:#9a9a9a;margin-bottom:0}.mec-events-masonry-wrap .mec-shortcode-organizers i{display:none}.mec-events-masonry-wrap .mec-shortcode-organizers,.mec-events-masonry-wrap .mec-shortcode-organizers .mec-organizers{padding:0}.mec-events-timeline-wrap .mec-shortcode-organizers{width:fit-content;display:inline-block;padding:4px 20px 8px;border-radius:50px}.mec-events-timeline-wrap .mec-organizer-item,.mec-events-timeline-wrap .mec-shortcode-organizers .mec-organizers{margin:0;display:inline-block;padding-right:7px}.mec-events-timeline-wrap .mec-shortcode-organizers i{line-height:24px;margin-right:7px}.mec-events-timeline-wrap .mec-organizer-item:after{content:","}.mec-events-timeline-wrap .mec-organizer-item:last-child:after{content:"";padding:0}.mec-events-timeline-wrap .mec-organizer-item a,.mec-events-timeline-wrap .mec-organizer-item:after{font-weight:500}.mec-events-timeline-wrap .mec-organizer-item a:hover{text-decoration:underline}.mec-event-tile-view .mec-shortcode-organizers,.mec-event-tile-view .mec-shortcode-organizers .mec-organizers{padding:0}.mec-event-tile-view .mec-shortcode-organizers i{line-height:24px}.mec-event-tile-view .mec-shortcode-organizers .mec-organizers a,.mec-event-tile-view .mec-shortcode-organizers i{color:#fff}.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-modal-preloader,.mec-dark-mode .mec-month-navigator-loading{background-color:rgba(40,40,40,.88)}.mec-dark-mode .event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button,.mec-dark-mode .mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt,.mec-dark-mode .mec-calendar .mec-calendar-row dt:hover,.mec-dark-mode .mec-event-footer .mec-booking-button,.mec-dark-mode .mec-event-grid-classic .mec-event-content,.mec-dark-mode .mec-event-schedule-content .mec-schedule-speakers,.mec-dark-mode .mec-events-meta-group-tags a:hover,.mec-dark-mode .mec-events-toggle .mec-toggle-content .mec-modal-wrap,.mec-dark-mode .mec-fes-form .mec-meta-box-fields,.mec-dark-mode .mec-hourly-schedule-speaker-contact-information a i,.mec-dark-mode .mec-map-view-event-detail.mec-event-detail,.mec-dark-mode .mec-modal-wrap,.mec-dark-mode .mec-next-event-details a,.mec-dark-mode .mec-single-event .mec-event-exporting .mec-export-details a:hover,.mec-dark-mode .mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-dark-mode .mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev,.mec-dark-mode .mec-timetable-events-list .mec-timetable-event,.mec-dark-mode .mec-wrap .button,.mec-dark-mode .mec-wrap a.button:not(.owl-dot):hover,.mec-dark-mode .mec-wrap button:not(.owl-dot):hover,.mec-dark-mode .mec-wrap input[type=button]:hover,.mec-dark-mode .mec-wrap input[type=reset]:hover,.mec-dark-mode .mec-wrap input[type=submit]:hover{background-color:#1f1f1f;color:#d2d2d2}.mec-dark-mode .mec-modal-wrap::-webkit-scrollbar{width:12px}.mec-dark-mode .mec-modal-wrap::-webkit-scrollbar-track{background:#000}.mec-dark-mode .mec-modal-wrap::-webkit-scrollbar-thumb{background-color:#333;border-radius:20px;border:2px solid #000}.mec-dark-mode .mec-modal-preloader,.mec-dark-mode .mec-month-navigator-loading{background-color:#1f1f1f}.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table,.mec-dark-mode .mec-skin-tile-month-navigator-container{background:#282828}.mec-dark-mode .mec-skin-tile-month-navigator-container:after{border-color:#282828 transparent transparent transparent}.mec-dark-mode .mec-event-grid-novel .mec-event-article,body.mec-dark-mode .mec-single-modern .mec-single-event-bar{background-color:#282828;color:#d2d2d2}.mec-dark-mode .event-carousel-type2-head,.mec-dark-mode .mec-box-calendar.mec-calendar .mec-calendar-table-head dt,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-next-month,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-previous-month,.mec-dark-mode .mec-calendar .mec-event-article:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-previous-month,.mec-dark-mode .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-event-article:hover,.mec-dark-mode .mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-dark-mode .mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover,.mec-dark-mode .mec-calendar.mec-yearly-calendar .mec-calendar-table-head dl dt,.mec-dark-mode .mec-event-carousel-content,.mec-dark-mode .mec-event-cost,.mec-dark-mode .mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button,.mec-dark-mode .mec-event-footer,.mec-dark-mode .mec-event-grid-classic .mec-event-content .mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button,.mec-dark-mode .mec-event-list-standard .mec-topsec,.mec-dark-mode .mec-event-more-info,.mec-dark-mode .mec-event-website,.mec-dark-mode .mec-events-agenda-wrap,.mec-dark-mode .mec-events-meta-date,.mec-dark-mode .mec-events-meta-group-tags a,.mec-dark-mode .mec-events-toggle .mec-toggle-item-inner,.mec-dark-mode .mec-fes-form,.mec-dark-mode .mec-fes-form input[type=email],.mec-dark-mode .mec-fes-form input[type=number],.mec-dark-mode .mec-fes-form input[type=password],.mec-dark-mode .mec-fes-form input[type=tel],.mec-dark-mode .mec-fes-form input[type=text],.mec-dark-mode .mec-fes-form select,.mec-dark-mode .mec-fes-form textarea,.mec-dark-mode .mec-fes-list,.mec-dark-mode .mec-hourly-schedule-speaker-info,.mec-dark-mode .mec-load-more-button,.mec-dark-mode .mec-map-lightbox-wp,.mec-dark-mode .mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-related-event-content,.mec-dark-mode .mec-single-event .mec-event-exporting .mec-export-details a,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=date],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=email],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=number],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=password],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=text],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking select,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking textarea,.mec-dark-mode .mec-single-event .mec-events-meta-group-countdown,.mec-dark-mode .mec-single-event .mec-frontbox,.mec-dark-mode .mec-single-event .mec-speakers-details ul li,.mec-dark-mode .mec-single-event-additional-organizers,.mec-dark-mode .mec-single-event-category,.mec-dark-mode .mec-single-event-date,.mec-dark-mode .mec-single-event-label,.mec-dark-mode .mec-single-event-location,.mec-dark-mode .mec-single-event-organizer,.mec-dark-mode .mec-single-event-time,.mec-dark-mode .mec-single-modern .col-md-4 .mec-frontbox,.mec-dark-mode .mec-slider-t1-wrap,.mec-dark-mode .mec-timetable-events-list .mec-timetable-event,.mec-dark-mode .mec-timetable-t2-wrap,.mec-dark-mode .mec-ttt2-title,.mec-dark-mode .mec-wrap .mec-event-countdown-style1,.mec-dark-mode .mec-wrap .mec-event-countdown-style2,.mec-dark-mode .mec-wrap .mec-totalcal-box,.mec-dark-mode .mec-wrap .mec-totalcal-box i,.mec-dark-mode .mec-wrap .mec-totalcal-box input,.mec-dark-mode .mec-wrap .mec-totalcal-box select,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year:hover,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year:hover,.mec-dark-mode.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-dark-mode.mec-wrap .mec-totalcal-box i,.mec-dark-mode.mec-wrap .mec-totalcal-box input,.mec-dark-mode.mec-wrap .mec-totalcal-box select{background-color:#282828}.mec-dark-mode .event-carousel-type2-head,.mec-dark-mode .event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button,.mec-dark-mode .mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-dark-mode .mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month,.mec-dark-mode .mec-box-calendar.mec-calendar .mec-calendar-table-head dt,.mec-dark-mode .mec-box-calendar.mec-calendar dt,.mec-dark-mode .mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt,.mec-dark-mode .mec-breadcrumbs,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-next-month,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-previous-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev .mec-calendar.mec-calendar-daily .mec-calendar-a-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-previous-month,.mec-dark-mode .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec,.mec-dark-mode .mec-event-carousel-content,.mec-dark-mode .mec-event-footer,.mec-dark-mode .mec-event-footer .mec-booking-button,.mec-dark-mode .mec-event-list-minimal .mec-event-article,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button,.mec-dark-mode .mec-event-list-modern .mec-event-article,.mec-dark-mode .mec-event-list-standard .mec-event-article,.mec-dark-mode .mec-event-list-standard .mec-event-meta-wrap,.mec-dark-mode .mec-event-list-standard .mec-topsec,.mec-dark-mode .mec-event-schedule-content,.mec-dark-mode .mec-event-schedule-content dl:before,.mec-dark-mode .mec-events-agenda-wrap,.mec-dark-mode .mec-events-meta-group-booking ul.mec-book-price-details,.mec-dark-mode .mec-events-meta-group-booking ul.mec-book-price-details li,.mec-dark-mode .mec-events-meta-group-tags a,.mec-dark-mode .mec-events-toggle .mec-toggle-content,.mec-dark-mode .mec-events-toggle .mec-toggle-item,.mec-dark-mode .mec-events-toggle .mec-toggle-item-inner,.mec-dark-mode .mec-fes-form .mec-meta-box-fields,.mec-dark-mode .mec-fes-form input[type=email],.mec-dark-mode .mec-fes-form input[type=number],.mec-dark-mode .mec-fes-form input[type=password],.mec-dark-mode .mec-fes-form input[type=tel],.mec-dark-mode .mec-fes-form input[type=text],.mec-dark-mode .mec-fes-form select,.mec-dark-mode .mec-fes-form textarea,.mec-dark-mode .mec-hourly-schedule-speaker-info,.mec-dark-mode .mec-load-more-button,.mec-dark-mode .mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-next-event-details a,.mec-dark-mode .mec-related-events-wrap h3.mec-rec-events-title,.mec-dark-mode .mec-single-event .mec-event-exporting .mec-export-details a:hover,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking form>h4,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=date],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=email],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=number],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=password],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=text],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking select,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking textarea,.mec-dark-mode .mec-single-event .mec-events-meta-group-countdown,.mec-dark-mode .mec-single-event .mec-frontbox,.mec-dark-mode .mec-single-event .mec-frontbox-title,.mec-dark-mode .mec-timetable-t2-wrap,.mec-dark-mode .mec-wrap .mec-totalcal-box,.mec-dark-mode .mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-dark-mode .mec-wrap .mec-totalcal-box i,.mec-dark-mode .mec-wrap .mec-totalcal-box input,.mec-dark-mode .mec-wrap .mec-totalcal-box select,.mec-dark-mode .mec-yearly-view-wrap,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec{border-color:#353535}.mec-dark-mode .entry-content .mec-wrap h1,.mec-dark-mode .entry-content .mec-wrap h2,.mec-dark-mode .entry-content .mec-wrap h3,.mec-dark-mode .entry-content .mec-wrap h4,.mec-dark-mode .entry-content .mec-wrap h5,.mec-dark-mode .entry-content .mec-wrap h6,.mec-dark-mode .mec-breadcrumbs a,.mec-dark-mode .mec-calendar .mec-event-article .mec-event-title a,.mec-dark-mode .mec-calendar dt,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event,.mec-dark-mode .mec-calendar.mec-event-container-simple dl dt.mec-calendar-day,.mec-dark-mode .mec-event-carousel-content .mec-event-carousel-title a,.mec-dark-mode .mec-event-content p,.mec-dark-mode .mec-event-grid-classic .mec-event-title a,.mec-dark-mode .mec-event-grid-clean .mec-event-title a,.mec-dark-mode .mec-event-grid-minimal .mec-event-date span,.mec-dark-mode .mec-event-grid-minimal .mec-event-title a,.mec-dark-mode .mec-event-grid-modern .mec-event-title a,.mec-dark-mode .mec-event-grid-simple .mec-event-title a,.mec-dark-mode .mec-event-list-classic .mec-event-title a,.mec-dark-mode .mec-event-list-minimal .mec-event-title a,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button,.mec-dark-mode .mec-event-list-standard .mec-event-title a,.mec-dark-mode .mec-events-meta-group-booking ul.mec-book-price-details li,.mec-dark-mode .mec-events-meta-group-booking ul.mec-book-price-details li span.mec-book-price-detail-amount,.mec-dark-mode .mec-events-meta-group-tags a,.mec-dark-mode .mec-events-toggle .mec-toggle-item-inner i,.mec-dark-mode .mec-fes-form,.mec-dark-mode .mec-fes-form input[type=email],.mec-dark-mode .mec-fes-form input[type=number],.mec-dark-mode .mec-fes-form input[type=password],.mec-dark-mode .mec-fes-form input[type=tel],.mec-dark-mode .mec-fes-form input[type=text],.mec-dark-mode .mec-fes-form label,.mec-dark-mode .mec-fes-form select,.mec-dark-mode .mec-fes-form textarea,.mec-dark-mode .mec-fes-list,.mec-dark-mode .mec-hourly-schedule-speaker-contact-information a i,.mec-dark-mode .mec-hourly-schedule-speaker-description,.mec-dark-mode .mec-hourly-schedule-speaker-name,.mec-dark-mode .mec-load-more-button,.mec-dark-mode .mec-next-event-details abbr,.mec-dark-mode .mec-related-event-content h5 a,.mec-dark-mode .mec-related-event-content span,.mec-dark-mode .mec-single-event .mec-event-meta dt,.mec-dark-mode .mec-single-event .mec-event-meta h3,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking form>h4,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking h5 span,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=date],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=email],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=number],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=password],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=text],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking label,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking select,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking textarea,.mec-dark-mode .mec-single-event .mec-frontbox-title,.mec-dark-mode .mec-single-event .mec-speakers-details ul li .mec-speaker-job-title,.mec-dark-mode .mec-single-modern .mec-single-event-bar>div h3,.mec-dark-mode .mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-dark-mode .mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i,.mec-dark-mode .mec-timeline-main-content h4 a,.mec-dark-mode .mec-timetable-event .mec-timetable-event-time,.mec-dark-mode .mec-timetable-events-list .mec-timetable-event span a,.mec-dark-mode .mec-tooltip-event-title,.mec-dark-mode .mec-ttt2-title,.mec-dark-mode .mec-wrap,.mec-dark-mode .mec-wrap .mec-event-list-modern .mec-event-title a,.mec-dark-mode .mec-wrap .mec-event-schedule-content a,.mec-dark-mode .mec-wrap .mec-single-title,.mec-dark-mode .mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-dark-mode .mec-wrap .mec-totalcal-box input,.mec-dark-mode .mec-wrap .mec-totalcal-box select,.mec-dark-mode .mec-wrap h1,.mec-dark-mode .mec-wrap h2,.mec-dark-mode .mec-wrap h3,.mec-dark-mode .mec-wrap h4,.mec-dark-mode .mec-wrap h5,.mec-dark-mode .mec-wrap h6,.mec-dark-mode .mec-wrap p{color:#d2d2d2}.mec-dark-mode .mec-breadcrumbs a:hover,.mec-dark-mode .mec-calendar .mec-event-article .mec-event-title a:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event:hover,.mec-dark-mode .mec-event-footer .mec-booking-button:hover,.mec-dark-mode .mec-event-grid-classic .mec-event-title a:hover,.mec-dark-mode .mec-event-grid-minimal .mec-event-date:hover,.mec-dark-mode .mec-event-grid-minimal .mec-event-title a:hover,.mec-dark-mode .mec-event-list-classic .mec-event-title a:hover,.mec-dark-mode .mec-event-list-minimal .mec-event-title a:hover,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button:hover,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover,.mec-dark-mode .mec-event-list-standard .mec-event-title a:hover,.mec-dark-mode .mec-single-event .mec-event-meta dd a:hover,.mec-dark-mode .mec-wrap .mec-event-list-modern .mec-event-title a:hover,.mec-dark-mode .mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover,.mec-dark-mode .mec-wrap a:hover{color:#fff}.mec-dark-mode .mec-fes-form .mec-attendees-wrapper .mec-attendees-list .w-clearfix:first-child{border-color:#333!important}.mec-dark-mode .mec-fes-form .mec-attendees-wrapper .mec-attendees-list .w-clearfix:nth-child(odd){background:#1f1f1f!important}.mec-dark-mode .mec-fes-form .mec-attendees-wrapper .mec-attendees-list .w-clearfix{background:#282828!important}.mec-dark-mode .lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-dark-mode .mec-related-events-wrap h3.mec-rec-events-title:before,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=radio]:before{background-color:#c4cace}.mec-dark-mode .lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-dark-mode .mec-month-divider span,.mec-dark-mode .mec-related-events-wrap h3.mec-rec-events-title:before,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=radio]:before{border-color:#313131}.mec-dark-mode .event-carousel-type3-head .mec-event-footer-carousel-type3,.mec-dark-mode .mec-agenda-events-wrap,.mec-dark-mode .mec-av-spot .mec-av-spot-content,.mec-dark-mode .mec-av-spot .mec-av-spot-head,.mec-dark-mode .mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-previous-month:hover,.mec-dark-mode .mec-calendar .mec-calendar-topsec,.mec-dark-mode .mec-calendar .mec-event-article:hover,.mec-dark-mode .mec-calendar dt,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-top,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-previous-month:hover,.mec-dark-mode .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover,.mec-dark-mode .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec,.mec-dark-mode .mec-event-cover-classic,.mec-dark-mode .mec-event-footer .mec-booking-button:hover,.mec-dark-mode .mec-event-grid-clean .mec-event-article,.mec-dark-mode .mec-event-grid-clean .mec-event-content,.mec-dark-mode .mec-event-grid-modern .mec-event-article,.mec-dark-mode .mec-event-grid-modern .mec-event-content,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button:hover,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover,.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing,.mec-dark-mode .mec-events-toggle .mec-toggle-item-inner:hover,.mec-dark-mode .mec-hourly-schedule-speaker-contact-information a:hover i,.mec-dark-mode .mec-masonry .mec-masonry-content,.mec-dark-mode .mec-masonry .mec-masonry-head,.mec-dark-mode .mec-slider-t1 .mec-slider-t1-content,.mec-dark-mode .mec-slider-t5 .mec-slider-t5-content,.mec-dark-mode .mec-slider-t5-wrap,.mec-dark-mode .mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-timeline-event-content,.mec-dark-mode .mec-timeline-month-divider,.mec-dark-mode .mec-timetable-events-list .mec-timetable-event:hover,.mec-dark-mode .mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3,.mec-dark-mode .mec-wrap .mec-totalcal-box,.mec-dark-mode .mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-calendar-sec,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year,.mec-dark-mode .tooltipster-sidetip:not(.uael-tooltipster-active) .tooltipster-content{background:#191919}.mec-dark-mode .event-carousel-type3-head .mec-event-footer-carousel-type3,.mec-dark-mode .event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button,.mec-dark-mode .mec-av-spot,.mec-dark-mode .mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-box-calendar.mec-calendar dl dt:last-child,.mec-dark-mode .mec-calendar,.mec-dark-mode .mec-calendar .mec-event-article,.mec-dark-mode .mec-calendar.mec-box-calendar .mec-table-nullday:last-child,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-previous-month:hover,.mec-dark-mode .mec-event-cover-classic,.mec-dark-mode .mec-event-cover-clean,.mec-dark-mode .mec-event-grid-classic .mec-event-article,.mec-dark-mode .mec-event-grid-clean .mec-event-article,.mec-dark-mode .mec-event-grid-modern .mec-event-article,.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing,.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing:after,.mec-dark-mode .mec-event-sharing-wrap>li:first-of-type,.mec-dark-mode .mec-events-agenda,.mec-dark-mode .mec-fes-form .mec-meta-box-fields,.mec-dark-mode .mec-masonry,.mec-dark-mode .mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-timeline-month-divider,.mec-dark-mode .mec-wrap .mec-totalcal-box,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{border-color:#353535}.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing:after{border-color:#191919 transparent transparent transparent}.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing:before{border-color:#353535 transparent transparent transparent}.mec-dark-mode .mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text],.mec-dark-mode .mec-events-meta-group-booking .StripeElement,.mec-dark-mode .mec-wrap .mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=email],.mec-dark-mode .mec-wrap .mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]{background:#999!important;border:1px solid #353535!important;box-shadow:none!important;color:#353535!important}.mec-dark-mode .CardField CardField--ltr .__PrivateStripeElement .InputContainer input{color:#d2d2d2!important}.mec-dark-mode .mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;box-shadow:0 10px 15px #282828}.mec-dark-mode .mec-agenda-events-wrap .mec-event-grid-colorful .mec-event-content{background-color:transparent}.mec-dark-mode .mec-calendar .mec-calendar-side{box-shadow:0 1px 5px 6px rgba(255,255,255,.005) inset}.mec-dark-mode .tooltipster-sidetip.tooltipster-shadow:not(.uael-tooltipster-active) .tooltipster-box{border:1px solid #282828!important}.mec-dark-mode .mec-timeline-event-content:after{border-color:transparent #191919 transparent transparent}.mec-dark-mode .mec-fes-form .mec-meta-box-fields{box-shadow:0 2px 6px -3px #353535}.mec-dark-mode .mec-fes-form .mec-meta-box-fields h4{color:#d2d2d2;background:#000}.mec-dark-mode .mec-fes-form input[type=email],.mec-dark-mode .mec-fes-form input[type=number],.mec-dark-mode .mec-fes-form input[type=password],.mec-dark-mode .mec-fes-form input[type=tel],.mec-dark-mode .mec-fes-form input[type=text],.mec-dark-mode .mec-fes-form select,.mec-dark-mode .mec-fes-form textarea{box-shadow:0 2px 5px rgba(0,0,0,.38) inset}.mec-dark-mode .mec-fes-form input{background:#353535!important;color:#d2d2d2!important}.mec-dark-mode .mec-booking-tab-content .button:hover,.mec-dark-mode .mec-booking-tab-content .mec-reg-field-add-option:hover,.mec-dark-mode .mec-fes-form .mec-form-row .button:not(.wp-color-result):hover{background:#353535;color:#d2d2d2;border-color:#353535;box-shadow:0 2px 6px -3px #353535}.mec-dark-mode .mec-booking-tab-content .button,.mec-dark-mode .mec-booking-tab-content .mec-reg-field-add-option,.mec-dark-mode .mec-fes-form .mec-form-row .button:not(.wp-color-result),.mec-dark-mode .mec-fes-form input[type=file],.mec-dark-mode ul#mec_orgz_form_row li .mec-additional-organizer-remove,.mec-dark-mode ul#mec_reg_form_fields li .mec_reg_field_remove{color:#d2d2d2;background:#282828;border:2px solid #353535;box-shadow:0 2px 6px -3px #353535}.mec-dark-mode #mec_reg_form_fields input[type=checkbox],.mec-dark-mode #mec_reg_form_fields input[type=radio],.mec-dark-mode .mec-form-row input[type=checkbox],.mec-dark-mode .mec-form-row input[type=radio]{background-color:#000;border:1px solid #353535;box-shadow:0 1px 3px -1px #353535}.mec-dark-mode .mec-fes-form .select2-container{border:1px solid #353535;background-color:#282828;color:#d2d2d2}.mec-dark-mode ul#mec_bfixed_form_fields li,.mec-dark-mode ul#mec_orgz_form_row li,.mec-dark-mode ul#mec_reg_form_fields li{background:#000;border-color:#000}.mec-dark-mode #mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button{background:#000;border-color:#2d2d2d;box-shadow:0 2px 6px -3px #2d2d2d}.mec-dark-mode #mec_reg_form_field_types .button.red{background:#2d2d2d;border-color:#2d2d2d;box-shadow:0 2px 6px -3px #2d2d2d}.mec-dark-mode #mec_bfixed_form_field_types .button,.mec-dark-mode #mec_reg_form_field_types .button{color:#d2d2d2;box-shadow:0 2px 6px -3px #2d2d2d;border-color:#2d2d2d}.mec-dark-mode #mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button:hover,.mec-dark-mode #mec_reg_form_field_types .button:hover{background:#000}.mec-dark-mode ul#mec_bfixed_form_fields li .mec_bfixed_field_remove,.mec-dark-mode ul#mec_orgz_form_row li .mec-additional-organizer-remove,.mec-dark-mode ul#mec_reg_form_fields li .mec_reg_field_remove{background:#282828}.mec-dark-mode #mec_taxes_fees_container_toggle [id^=mec_remove_fee_button]:hover,.mec-dark-mode #mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]:hover,.mec-dark-mode ul#mec_bfixed_form_fields li .mec_bfixed_field_remove:hover,.mec-dark-mode ul#mec_orgz_form_row li .mec-additional-organizer-remove:hover,.mec-dark-mode ul#mec_reg_form_fields li .mec_reg_field_remove:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}.mec-events-meta-group-booking-shortcode{background-color:#e6f7ff;padding:40px;position:relative}.mec-events-meta-group-booking-shortcode h4{margin-bottom:20px}.mec-booking-shortcode .mec-event-tickets-list.mec-sell-all-occurrences{width:100%}.mec-booking-shortcode .mec-book-reg-field-mec_email{width:48%;display:inline-block;margin-right:30px}.mec-booking-shortcode .mec-book-reg-field-name{width:48%;display:inline-block}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-expiration-date-month{width:48%;display:inline-block;vertical-align:top;margin-right:30px}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-cvv2{width:48%;display:inline-block}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-expiration-date-month .nice-select{width:48%;display:inline-block}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-expiration-date-month label{width:100%}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-expiration-date-month .nice-select:first-of-type{margin-right:10px}.mec-booking-shortcode .mec-form-row.mec-name-stripe,.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-card-type,.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-first-name{width:48%;vertical-align:top;display:inline-block;margin-right:30px}.mec-booking-shortcode .mec-form-row.mec-email-stripe,.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-cc-number,.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-last-name{width:48%;display:inline-block}.mec-events-meta-group-booking .mec-booking-shortcode .StripeElement{height:56px;padding:19px 12px 0;max-width:420px}.mec-booking-shortcode .nice-select,.mec-booking-shortcode input{float:none;border:1px solid #c7ebfb!important;border-radius:3px;background-color:#fff;height:41px;line-height:39px;padding-left:15px;padding-right:15px;margin:0;margin-bottom:24px!important;color:#00acf8;font-size:14px;font-weight:400;box-shadow:none!important;min-height:unset;min-width:unset;padding-top:0;padding-bottom:0}.mec-booking-shortcode .mec-gateway-message.mec-success{font-size:14px}.mec-booking-shortcode .mec-form-row.mec-name-stripe{margin-bottom:0!important}.mec-booking-shortcode .mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text],.mec-events-meta-group-booking .mec-booking-shortcode .StripeElement{border:1px solid #c7ebfb!important;border-radius:3px;box-shadow:none!important}.mec-booking-shortcode .nice-select ul{width:100%}.mec-booking-shortcode .mec-event-ticket-name,.mec-booking-shortcode .mec-event-ticket-price,.mec-booking-shortcode .mec-ticket-variation-name,.mec-booking-shortcode .mec-ticket-variation-price,.mec-booking-shortcode label{font-size:14px;line-height:19px;font-weight:400;color:#00acf8;padding-right:5px;margin:0 0 4px!important}.mec-booking-shortcode span.mec-event-ticket-available{margin-top:-22px!important;margin-bottom:28px!important;display:block;font-size:11px;letter-spacing:.5px;font-weight:300;color:#80abbf}.mec-booking-shortcode button{background-color:#00acf8;border-radius:2px;box-shadow:0 2px 2px rgba(0,172,248,.27);font-weight:500;font-size:11px;letter-spacing:.5px;margin:0;min-width:116px;padding:16px 15px 14px;float:none;position:relative;border:none;color:#fff;display:inline-block}.mec-booking-shortcode .mec-booking-form-container ul li{list-style:none}.mec-booking-shortcode .mec-booking-form-container ul{padding:0}.mec-events-meta-group-booking-shortcode .mec-error{background-color:#ff017e;color:#fff!important;margin:24px 0 24px;padding:10px 15px;border-radius:3px}.mec-events-meta-group-booking-shortcode .info-msg{margin:24px 0 24px}.mec-booking-shortcode .mec-book-ticket-variation h5{margin:0 0 4px}.mec-booking-shortcode .mec-book-available-tickets-details-header{border-bottom:2px solid #00acf8}.mec-booking-shortcode .mec-book-available-tickets-details-header,.mec-booking-shortcode .mec-book-available-tickets-details-item,.mec-booking-shortcode .mec-book-price-detail{display:-webkit-box;display:flex;flex-wrap:wrap}.mec-booking-shortcode .mec-book-available-tickets-details-header span,.mec-booking-shortcode .mec-book-available-tickets-details-item span,.mec-booking-shortcode .mec-book-price-detail span{-webkit-box-flex:1.97;flex:1.97 1.97 0;min-height:1px;font-size:14px;line-height:22px;color:#616264;font-weight:500;padding-bottom:20px;padding-top:20px}.mec-booking-shortcode .mec-book-available-tickets-details span:nth-of-type(2),.mec-booking-shortcode .mec-book-available-tickets-details-item span:nth-of-type(2),.mec-booking-shortcode .mec-book-price-detail span:nth-of-type(2){-webkit-box-flex:1;flex:1 1 0}.mec-booking-shortcode .mec-book-available-tickets-details span:last-child,.mec-booking-shortcode .mec-book-available-tickets-details-item span:last-child,.mec-booking-shortcode .mec-book-price-detail span:last-child{-webkit-box-flex:1.085;flex:1.085 1.085 0}.mec-booking-shortcode .mec-book-available-tickets-details-header span{padding-bottom:11px}.mec-booking-shortcode .mec-book-available-tickets-details-item span{font-weight:400;font-size:12px}.mec-booking-shortcode span.mec-book-price-detail-amount,.mec-booking-shortcode span.mec-book-price-detail-description{font-size:14px;line-height:22px;font-weight:500;padding:6px 0;color:#000}.mec-booking-shortcode span.mec-book-price-detail-amount{color:#777}.mec-booking-shortcode .mec-book-form-gateways label{cursor:pointer}.mec-booking-shortcode .mec-book-form-gateways label{cursor:pointer}.mec-booking-shortcode span.mec-book-price-detail-description{padding:6px 13px 6px 0;font-size:14px;font-weight:400;color:#00acf8}.mec-booking-shortcode ul.mec-book-price-details li{border-right:1px solid #c7ebfb!important}@media(max-width:980px){.mec-events-meta-group-booking-shortcode{padding:20px}.mec-booking-shortcode ul.mec-book-price-details li{width:100%;border-right:0px!important;border-bottom:1px solid}.mec-booking-shortcode ul.mec-book-price-details li:last-child{width:100%;border-right:0;border-bottom:0 solid}}.mec-booking-shortcode span.mec-book-price-total{font-size:22px;line-height:22px;font-weight:700;color:#2bbc10;margin-top:20px;margin-bottom:35px;display:inline-block}.mec-booking-shortcode ul.mec-book-price-details{border:1px solid #c7ebfb!important;border-radius:3px;box-shadow:none!important}.mec-booking-shortcode span.mec-book-price-total-description{font-size:18px;line-height:22px;font-weight:700;color:#000}.mec-booking-shortcode span.mec-book-price-total-amount{font-size:22px;line-height:22px;font-weight:700;color:#2bbc10}.mec-booking-shortcode .mec-book-form-price{clear:both;position:relative}.mec-booking-shortcode .mec-book-form-gateway-label input[type=radio]:after{content:"";display:inline-block;width:7px;height:7px;background-color:#fff;border-radius:50%;cursor:pointer;position:absolute;top:4px;left:3px}.mec-booking-shortcode .mec-book-form-gateway-label input[type=radio]:before{box-shadow:none;border:2px solid #a8e4ff;width:17px;height:17px;position:absolute;top:-9px;left:-2px;margin:0;content:"";display:inline-block;background:#fff;border-radius:18px;cursor:pointer;position:relative}.mec-booking-shortcode .mec-book-form-gateway-label{-webkit-box-flex:0;flex:0 0 50%;margin-bottom:14px;padding-right:15px}.mec-booking-shortcode .mec-book-form-gateways{display:-webkit-box;display:flex;flex-wrap:wrap;margin-bottom:20px}.mec-booking-shortcode .mec-book-form-gateway-checkout{-webkit-box-flex:0;flex:0 0 100%;max-width:100%}.mec-booking-shortcode input::-webkit-input-placeholder,.mec-booking-shortcode textarea::-webkit-input-placeholder{color:#afe6ff}.mec-booking-shortcode input::-moz-placeholder,.mec-booking-shortcode textarea::-moz-placeholder{color:#afe6ff}.mec-booking-shortcode input:-ms-input-placeholder,.mec-booking-shortcode textarea:-ms-input-placeholder{color:#afe6ff}.mec-booking-shortcode input:-moz-placeholder,.mec-booking-shortcode textarea:-moz-placeholder{color:#afe6ff}.mec-booking-shortcode input[type=radio]:checked:before{border:2px solid #a8e4ff;box-shadow:none}.mec-booking-shortcode input[type=radio]:checked:after{background-color:#00acf8}.mec-booking-shortcode .mec-book-form-gateway-label label input{position:relative;cursor:pointer;margin:0!important;height:auto;margin-right:4px!important}.mec-booking-shortcode .mec-click-pay button[type=submit]{position:absolute;left:190px;bottom:40px}.mec-booking-shortcode button#mec-book-form-btn-step-2{margin-left:30px}.mec-booking-shortcode .mec-ticket-name{display:inline-block;background-color:#fff;border-radius:3px;font-size:12px;line-height:12px;font-weight:400;color:#00acf8;padding:8px 13px;letter-spacing:0}.mec-booking-shortcode .mec_book_first_for_all{display:none}.mec-booking-shortcode li.mec-first-for-all-wrapper{margin-bottom:20px}.mec-booking-shortcode label.wn-checkbox-label:before{display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:"";-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5;position:absolute;background-color:#00acf8;width:2px;-webkit-transform:rotate(-138deg);transform:rotate(-138deg)}.mec-booking-shortcode label.wn-checkbox-label{position:relative;display:inline-block;-moz-transition:border-color ease .2s;-o-transition:border-color ease .2s;-webkit-transition:border-color ease .2s;transition:border-color ease .2s;cursor:pointer;vertical-align:middle;font-size:14px;line-height:19px;font-weight:400;color:#00acf8;margin:0 0 4px!important;padding:0;background-color:#fff;border:2px solid #a8e4ff;width:17px;height:17px;border-radius:3px;margin-right:9px!important;box-shadow:none}.mec-booking-shortcode label.wn-checkbox-label:after{-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg);-moz-animation:dothabottomcheck 80ms ease 0s forwards;-o-animation:dothabottomcheck 80ms ease 0s forwards;-webkit-animation:dothabottomcheck 80ms ease 0s forwards;animation:dothabottomcheck 80ms ease 0s forwards;content:"";display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:"";-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5;position:absolute;background-color:#00acf8;width:2px}.mec-booking-shortcode input[type=checkbox]:checked+.wn-checkbox-label::after{height:5px;left:2px;top:7px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.mec-booking-shortcode input[type=checkbox]:checked+.wn-checkbox-label::before{height:6px;left:7px;top:9px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.mec-booking-shortcode button[type=button],.mec-booking-shortcode button[type=submit]{font-weight:500;font-size:13px;letter-spacing:.5px;line-height:16px;outline:0}.mec-booking-shortcode button.mec-book-form-back-button{background-color:#afe6ff;box-shadow:0 2px 2px rgba(175,230,255,.27)}.mec-booking-shortcode button[type=button]:hover,.mec-booking-shortcode button[type=submit]:hover{background-color:#000;text-decoration:none;box-shadow:0 4px 10px rgba(1,2,4,.32)}.mec-booking-shortcode a.button:after,.mec-booking-shortcode button[type=submit]:after{display:none;width:13px;height:13px;border-top:0;border-right:.1em solid #f0f1f1;border-bottom:.1em solid #fbfbfb;border-left:.1em solid #fff;content:"";-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear;background:rgba(0,0,0,0);position:absolute;top:18px;right:20px;border-radius:50%;z-index:999999999999}.mec-booking-shortcode a.button.loading:after,.mec-booking-shortcode button[type=submit].loading:after{display:block}.mec-booking-shortcode .mec-book-form-coupon{margin-bottom:35px}.mec-booking-calendar-month-navigation{position:relative;text-align:center;padding:1px 0 1px;max-width:330px}.mec-booking-calendar.mec-wrap{margin-bottom:20px;width:100%}.mec-booking-calendar.mec-wrap{max-width:330px;background:#fff;box-shadow:0 1px 5px 6px rgba(0,0,0,.005) inset;border:1px solid #efefef}.mec-booking-calendar-month-navigation .mec-calendar-header h2{text-transform:uppercase;font-size:13px;font-weight:700;line-height:1.14;margin:16px auto;color:#333}.mec-booking-calendar-month-navigation .mec-next-month,.mec-booking-calendar-month-navigation .mec-previous-month{cursor:pointer;position:absolute;top:0;min-width:40px;height:40px;line-height:40px;text-align:center;background:#fff;color:#a9a9a9;font-size:10px;letter-spacing:1px;text-transform:uppercase;padding-left:5px;padding-right:5px;border-top:none;transition:all .33s ease;border-bottom:1px solid #efefef;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease}.mec-booking-calendar-month-navigation .mec-previous-month{left:0;border-bottom-right-radius:6px;border-left:none;border-right:1px solid #efefef}.mec-booking-calendar-month-navigation .mec-next-month{right:0;border-bottom-left-radius:6px;border-right:none;border-left:1px solid #efefef}.mec-booking-calendar-month-navigation .mec-next-month:hover,.mec-booking-calendar-month-navigation .mec-previous-month:hover{background-color:#f9f9f9;color:#40d9f1}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar{margin-bottom:0;width:100%}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar dl dt{text-align:center;padding:0;height:47px;line-height:47px;border:0;cursor:pointer}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar dl dt:last-child{border:0}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar .mec-calendar-row dt:hover{background:0 0}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar .mec-calendar-novel-selected-day,.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar .mec-calendar-novel-selected-day span{width:32px;height:32px;margin:auto;line-height:30px;border-radius:50%;font-size:12px;font-weight:600;padding:0}.mec-has-event-for-booking{position:relative}.mec-has-event-for-booking .mec-calendar-novel-selected-day{border:2px solid #40d9f1;border-radius:50px;cursor:pointer}.mec-has-event-for-booking.mec-active .mec-calendar-novel-selected-day{background-color:#40d9f1}.mec-has-event-for-booking .mec-booking-calendar-date,.mec-has-event-for-booking .mec-booking-tooltip,.mec-multiple-event .mec-has-event-for-booking .mec-booking-tooltip{opacity:0;visibility:hidden;transition:all .4s ease}.mec-has-event-for-booking .mec-booking-tooltip,.mec-multiple-event .mec-has-event-for-booking .mec-booking-tooltip{top:60px}.mec-has-event-for-booking .mec-booking-tooltip,.mec-multiple-event .mec-has-event-for-booking .mec-booking-tooltip{position:absolute;z-index:99;width:150px;font-size:9px;left:calc(50% - 75px);background:#535a61;line-height:29px;border-radius:4px;color:#fff;font-weight:400;letter-spacing:1px;text-transform:uppercase;padding:3px 5px;box-shadow:0 4px 15px -2px #444b50a3}.mec-has-event-for-booking:hover .mec-booking-calendar-date,.mec-has-event-for-booking:hover .mec-booking-tooltip,.mec-has-event-for-booking:hover .mec-booking-tooltip.multiple-time .mec-booking-calendar-date,.mec-multiple-event .mec-has-event-for-booking:hover .mec-booking-calendar-date,.mec-multiple-event .mec-has-event-for-booking:hover .mec-booking-tooltip{opacity:1;visibility:visible}.mec-has-event-for-booking:hover .mec-booking-tooltip,.mec-multiple-event .mec-has-event-for-booking:hover .mec-booking-tooltip{top:43px}.mec-has-event-for-booking .mec-booking-calendar-date:before,.mec-multiple-event .mec-has-event-for-booking .mec-booking-calendar-date:before{display:block;content:""!important;position:absolute!important;width:12px;height:12px;top:-6px;left:calc(50% - 6px);transform:rotate(-45deg)!important;background-color:#535a61;z-index:0!important;box-shadow:0 8px 9px -9px #535a61!important}.mec-multiple-event .mec-has-event-for-booking .mec-booking-calendar-date-hover{border-bottom:1px solid #ffffff30}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar.mec-multiple-event .first-day{position:relative;padding-left:7px}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar.mec-multiple-event .first-day .mec-calendar-novel-selected-day{border-radius:47px;border-top-right-radius:0;border-bottom-right-radius:0;border-right:0;width:100%}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar.mec-multiple-event .first-day .mec-calendar-novel-selected-day span{margin-left:-7px}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar.mec-multiple-event .last-day{position:relative;padding-right:7px}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar.mec-multiple-event .last-day .mec-calendar-novel-selected-day{border-radius:47px;border-top-left-radius:0;border-bottom-left-radius:0;border-left:0;width:100%}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar.mec-multiple-event .last-day .mec-calendar-novel-selected-day span{margin-right:-7px}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar.mec-multiple-event .middle-day .mec-calendar-novel-selected-day{border-radius:0;border-right:0;border-left:0;width:100%}.mec-booking-tooltip.multiple-time{color:#fff}.mec-booking-tooltip.multiple-time .mec-booking-calendar-date:before{display:none}.mec-booking-tooltip.multiple-time .mec-booking-calendar-date:first-child:before{display:block}.mec-booking-tooltip.multiple-time .mec-booking-calendar-date{border:1px dashed #68717a;line-height:25px;margin:8px 0;border-radius:20px;transition:all .17s ease;-webkit-transition:all .17s ease;-moz-transition:all .17s ease;-ms-transition:all .17s ease;-o-transition:all .17s ease}.mec-booking-tooltip.multiple-time .mec-booking-calendar-date:hover,.mec-calendar-day.mec-active .mec-booking-tooltip.multiple-time .mec-booking-calendar-date.mec-active{background:#40d9f1;border-color:#40d9f1}.mec-choosen-time-message{max-width:330px;padding:3px 14px;border-radius:4px;background:rgb(64 217 241 / 24%);color:#40d9f1;transition:all .17s ease;opacity:1;visibility:visible;font-size:12px;margin-bottom:20px}.mec-choosen-time-message .mec-choosen-time{padding-left:7px}.mec-choosen-time-message.disable,.mec-choosen-time-message.disable .mec-choosen-time-message{opacity:0;visibility:hidden;padding:0;font-size:0;margin:0}.lity-wrap .mec-booking-calendar.mec-wrap{margin-top:20px}.lity-wrap .mec-booking-calendar-month-navigation,.lity-wrap .mec-booking-calendar.mec-wrap,.lity-wrap .mec-choosen-time-message{max-width:100%}.mec-events-meta-group-booking-shortcode .mec-booking-calendar-wrapper .mec-booking-calendar .mec-calendar dl dt{height:47px!important}@media (min-width:961px){.mec-wrap .mec-events-meta-group-booking .mec-booking-calendar .mec-calendar dl dt{height:47px}}.mec-dark-mode .mec-single-event .mec-events-meta-group-booking .mec-booking-calendar-month-navigation,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking .mec-calendar{background:#000;border-color:#222;color:#999}.mec-dark-mode .mec-booking-calendar-month-navigation .mec-next-month,.mec-dark-mode .mec-booking-calendar-month-navigation .mec-previous-month{background:#222;border-color:#000;color:#d2d2d2}.mec-dark-mode .mec-booking-calendar.mec-wrap{border-color:#111}.mec-dark-mode .mec-events-meta-group-booking .mec-booking-calendar .mec-calendar .mec-calendar-row dt:hover{background:0 0!important}.mec-dark-mode .mec-calendar.mec-event-calendar-classic,.mec-dark-mode .mec-calendar.mec-event-calendar-classic .mec-calendar-side{height:auto}.is-light-theme .mec-fes-form textarea{border:1px solid #cfeff5;box-shadow:0 2px 5px rgba(207,239,245,.38) inset}.is-light-theme .mec-fes-form .select2-selection{height:auto}.is-light-theme .mec-fes-form input[type=checkbox]:after{border:unset!important}.is-light-theme .mec-fes-form input[type=radio]:after{background:unset!important}.is-light-theme .mec-fes-form input+label{padding-top:0}.is-light-theme .mec-events-event-image img{height:auto}span.mec-booking-field-required{color:red;margin-left:10px}.mec-gCalendar{position:relative}.mec-gCalendar-filters{display:none;position:absolute;width:518px;background:#fff;right:calc(50% - 119px);top:62px;z-index:99;border:1px solid #e3e4e5;border-radius:7px;box-shadow:0 2px 7px rgb(0 0 0 / 5%)}.mec-gCalendar-filters-wrap{display:flex;flex-wrap:wrap;justify-content:space-between;padding:30px;gap:20px 10px;align-items:center}.mec-gCalendar-filters-wrap>div{display:flex;align-items:center}.mec-gCalendar-filters-wrap .select2-container--default>ul{margin-top:2px;width:100%}.mec-gCalendar-filters-wrap span.select2.select2-container{width:100%!important}.mec-gCalendar-filters-wrap .select2-container--default>ul>li{width:100%}.mec-gCalendar-filters-wrap .select2-container--default{height:39px}.mec-gCalendar-filters-wrap span.select2-selection.select2-selection--multiple{border:none!important;height:38px!important}.mec-gCalendar-filters-wrap .select2-container--default .select2-selection--multiple .select2-selection__choice{margin:0;background-color:#eee;font-size:11px}.mec-gCalendar-filters-wrap .select2-container--default .select2-selection--multiple .select2-selection__rendered li{line-height:29px;margin-top:5px;border:none;margin-right:5px}.mec-gCalendar-filters-wrap .mec-searchbar-category-wrap{margin:0!important;width:182px!important;padding:0!important;height:40px!important;border-radius:0 3px 3px 0;border:1px solid #e3e4e5!important}.mec-gCalendar-filters-wrap .mec-checkboxes-search i,.mec-gCalendar-filters-wrap .mec-dropdown-search i,.mec-gCalendar-filters-wrap .mec-minmax-event-cost i,.mec-gCalendar-filters-wrap .mec-text-address-search i{color:#b7b7b7;background-color:#fbfbfb;border-radius:3px 0 0 3px;border:1px solid #e3e4e5;width:40px;height:40px;line-height:40px;padding:0;border-right:0;text-align:center}.mec-gCalendar-filters-wrap .mec-minmax-event-cost input,.mec-gCalendar-filters-wrap .mec-minmax-event-cost input:focus,.mec-gCalendar-filters-wrap .mec-text-address-search input,.mec-gCalendar-filters-wrap .mec-text-address-search input:focus{width:208px;height:40px;border-radius:0;border-right:0;border-color:#e3e4e5;font-size:12px}.mec-gCalendar-filters-wrap .mec-text-address-search input,.mec-gCalendar-filters-wrap .mec-text-address-search input:focus{width:415px}.mec-gCalendar-filters-wrap .mec-minmax-event-cost input:last-child,.mec-gCalendar-filters-wrap .mec-text-address-search input,.mec-gCalendar-filters-wrap .mec-text-address-search input:focus{border-right:1px solid #e3e4e5;border-radius:0 3px 3px 0}.mec-gCalendar .fc .fc-scroller-harness,.mec-gCalendar .fc .fc-scroller-liquid-absolute,.mec-gCalendar .fc-h-event .fc-event-title{overflow:visible!important}#MonthPicker_mec-gCalendar-month-filter:after,#MonthPicker_mec-gCalendar-month-filter:before,.mec-gCalendar-filters:after,.mec-gCalendar-filters:before{content:'';display:block;position:absolute;left:50%;margin-left:77px;width:0;height:0;border-style:solid;border-width:7px}#MonthPicker_mec-gCalendar-month-filter:after,#MonthPicker_mec-gCalendar-month-filter:before{margin-left:68px}#MonthPicker_mec-gCalendar-month-filter:before,.mec-gCalendar-filters:before{top:-15px;border-color:transparent transparent #e3e9f1 transparent}#MonthPicker_mec-gCalendar-month-filter:after,.mec-gCalendar-filters:after{top:-14px;border-color:transparent transparent #fff transparent}.mec-gCalendar-tooltip{width:290px;height:auto;position:absolute;background:#fff;z-index:999999999;bottom:calc(100% + 9px);border:1px solid #e3e4e5;border-radius:7px;opacity:1;box-shadow:0 4px 13px rgb(0 0 0 / 7%);left:calc(50% - 145px);font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}.mec-gCalendar-tooltip-image img{width:100%;border-radius:3px}.mec-gCalendar-tooltip-image{padding:10px}.mec-gCalendar a.fc-event:active{opacity:1}.mec-gCalendar a.fc-event{padding:7px 3px;font-size:12px;font-weight:400;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}.mec-gCalendar-tooltip-title{color:#000;line-height:24px;font-size:15px;padding:10px 25px;font-weight:500}.mec-gCalendar-tooltip-title span{width:12px;height:12px;display:inline-block;margin-left:7px;vertical-align:middle;border-radius:50px}.mec-gCalendar-tooltip-location{color:#707172;font-size:12px;font-weight:400;line-height:23px;padding:0 25px 15px;margin-top:-2px}.mec-gCalendar-tooltip-location i{margin-right:6px;color:#c1c7ce}.mec-gCalendar .fc-event-time{display:none}.mec-gCalendar-tooltip-date{background:#f7f8f9;color:#898a8c;font-weight:400;padding:10px 24px}.mec-gCalendar-tooltip-date{display:flex;justify-content:space-between}.mec-gCalendar-tooltip-date-text>div>span,.mec-gCalendar-tooltip-date-time>div>span{display:block;margin:0 0 5px}.mec-gCalendar-tooltip-date-text>div>span:last-child,.mec-gCalendar-tooltip-date-time>div>span:last-child{margin:0}.mec-gCalendar-tooltip-date-text,.mec-gCalendar-tooltip-date-time{display:flex;align-items:baseline}.mec-gCalendar-tooltip-date-text i,.mec-gCalendar-tooltip-date-time i{margin-right:8px;color:#c1c7ce}.mec-gCalendar-tooltip:after,.mec-gCalendar-tooltip:before{content:'';display:block;position:absolute;left:calc(50% - 10px);width:0;height:0;border-style:solid;border-width:10px}.mec-gCalendar-tooltip:before{bottom:-21px;border-color:#e3e9f1 transparent transparent transparent}.mec-gCalendar-tooltip:after{bottom:-20px;border-color:#fff transparent transparent transparent}.mec-gCalendar input#mec-gCalendar-month-filter{display:none}.mec-gCalendar .fc-header-toolbar .fc-toolbar-chunk,.mec-gCalendar .fc-header-toolbar .fc-toolbar-chunk>div{display:flex;align-items:center}.mec-gCalendar .fc-header-toolbar.fc-toolbar{border:1px solid #e3e4e5;border-radius:7px;padding:20px 16px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}.mec-gCalendar h2.fc-toolbar-title{font-size:22px;font-weight:600;line-height:20px;margin-right:20px}.mec-gCalendar h2.fc-toolbar-title i{color:#a1a2a3;cursor:pointer}.mec-gCalendar h2.fc-toolbar-title button{background:0 0;border:none;cursor:pointer}.mec-gCalendar button.fc-nextYear-button.fc-button.fc-button-primary,.mec-gCalendar button.fc-nextYear-button.fc-button.fc-button-primary:active,.mec-gCalendar button.fc-prevYear-button.fc-button.fc-button-primary,.mec-gCalendar button.fc-prevYear-button.fc-button.fc-button-primary:active{background:#fff;color:#a1a2a3;border-radius:7px 0 0 7px;border-color:#e3e4e5;padding:2px;box-shadow:none!important}.mec-gCalendar button.fc-button span.fc-icon{font-size:20px;padding:1px 0;width:30px;height:30px;vertical-align:middle;position:relative}.mec-gCalendar button.fc-button span.fc-icon:before{vertical-align:middle;font-size:18px;position:absolute;top:calc(50% - 9px);left:calc(50% - 9px)}.mec-gCalendar button.fc-prevYear-button.fc-button.fc-button-primary{border-right:none}.mec-gCalendar button.fc-nextYear-button.fc-button.fc-button-primary{border-left:none;border-radius:0 7px 7px 0}.mec-gCalendar button.fc-next-button.fc-button.fc-button-primary,.mec-gCalendar button.fc-next-button.fc-button.fc-button-primary:active,.mec-gCalendar button.fc-prev-button.fc-button.fc-button-primary,.mec-gCalendar button.fc-prev-button.fc-button.fc-button-primary:active{background:#fff;color:#a1a2a3;border-right:none;border-left:none;border-radius:0;border-color:#e3e4e5;padding:2px;box-shadow:none!important}.mec-gCalendar button.fc-today-button.fc-button.fc-button-primary,.mec-gCalendar button.fc-today-button.fc-button.fc-button-primary:active{background:#fff;color:#707070;border-left:none;border-right:none;border-radius:0;border-color:#e3e4e5;font-size:13px;text-transform:capitalize;font-weight:400;opacity:1;padding:7px 8px 8px;box-shadow:none!important;cursor:pointer}.mec-gCalendar button.fc-today-button.fc-button.fc-button-primary:disabled{cursor:auto}.mec-gCalendar button.fc-button.fc-button-primary:hover span{background:#f4f5f6;color:#000;border-radius:7px}.mec-gCalendar button.fc-today-button.fc-button.fc-button-primary:not(:disabled):hover{background:#f4f5f6;color:#000;border-radius:0}.mec-gCalendar button.fc-filterEvents-button.fc-button.fc-button-primary,.mec-gCalendar button.fc-findEvents-button.fc-button.fc-button-primary,.mec-gCalendar button.fc-findEvents-button.fc-button.fc-button-primary:active{min-width:100px;border-radius:7px!important;margin-right:0;background:#00acf8;border:none!important;padding:10px 15px 11px;font-size:13px;font-weight:500;margin-left:20px!important;box-shadow:none!important}.mec-gCalendar button.fc-filterEvents-button.fc-button.fc-button-primary{position:relative;text-align:right;padding-right:13px;padding-left:32px;min-width:auto;background:0 0;font-size:14px;color:#969798}.mec-gCalendar button.fc-filterEvents-button.fc-button.fc-button-primary:active,.mec-gCalendar button.fc-filterEvents-button.fc-button.fc-button-primary:hover{background:#f4f5f6;color:#000}.mec-gCalendar button.fc-filterEvents-button.fc-button.fc-button-primary svg{position:absolute;left:10px;top:14px}.mec-gCalendar-tooltip-location,.mec-gCalendar-tooltip-title{white-space:normal}.mec-gCalendar .mec-gCalendar-search-text-wrap input[type=text],.mec-gCalendar .mec-gCalendar-search-text-wrap input[type=text]:focus{margin:0;border:none;box-shadow:none!important;font-size:14px;font-weight:400;line-height:20px;color:#949aa1;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;padding-right:5px}.mec-gCalendar .mec-gCalendar-search-text-wrap input[type=text]::-webkit-input-placeholder{color:#949aa1}.mec-gCalendar .mec-gCalendar-search-text-wrap input[type=text]::-moz-placeholder{color:#949aa1}.mec-gCalendar .mec-gCalendar-search-text-wrap input[type=text]:-ms-input-placeholder{color:#949aa1}.mec-gCalendar .mec-gCalendar-search-text-wrap input[type=text]:-moz-placeholder{color:#949aa1}.mec-gCalendar-search-text-wrap{border-left:1px solid #e3e4e5;padding-left:16px}.mec-gCalendar-search-text-wrap i{margin-right:0;color:#bcc4ce;font-size:17px}.mec-gCalendar .fc-direction-ltr .fc-button-group>.fc-button:first-child{margin-left:7px!important}.mec-gCalendar .fc-direction-ltr .fc-toolbar>*>:not(:first-child){margin-left:0}.mec-gCalendar .mec-localtime-wrap{color:#000;font-size:11px;margin-top:2px;margin-bottom:2px}.mec-gCalendar .fc-theme-standard .fc-popover{background:#fff;border:1px solid #e3e4e5;border-radius:7px;box-shadow:0 4px 13px rgb(0 0 0 / 7%)}.mec-gCalendar .mec-localtime-wrap i{display:none}.ui-widget-header.month-picker-header.ui-corner-all{background:0 0;border:none;margin-top:10px;margin-bottom:10px}div#MonthPicker_mec-gCalendar-month-filter .ui-widget-header.month-picker-header.ui-corner-all>table>tbody>tr{display:flex;justify-content:space-between;align-items:center;background:0 0}div#MonthPicker_mec-gCalendar-month-filter .month-picker-year-table .month-picker-title .ui-button{padding:2px 10px!important}div#MonthPicker_mec-gCalendar-month-filter{top:259px!important;width:210px;border:1px solid #e3e4e5;border-radius:7px;padding:0 15px 0}div#MonthPicker_mec-gCalendar-month-filter table.month-picker-year-table tbody>tr:nth-child(odd)>td,div#MonthPicker_mec-gCalendar-month-filter table.month-picker-year-table tbody>tr:nth-child(odd)>th{background-color:#fff;border:none}div#MonthPicker_mec-gCalendar-month-filter .month-picker-year-table .ui-button{background:0 0}div#MonthPicker_mec-gCalendar-month-filter .month-picker table.month-picker-month-table{border:none;border-collapse:collapse;border-spacing:0;margin-bottom:9px}div#MonthPicker_mec-gCalendar-month-filter .month-picker-month-table td{border:none}div#MonthPicker_mec-gCalendar-month-filter .month-picker-month-table .ui-button{background:#fff;border:none;width:50px;height:43px;padding:0;padding-top:13px;margin:1px}div#MonthPicker_mec-gCalendar-month-filter .month-picker-month-table .ui-button.ui-state-active,div#MonthPicker_mec-gCalendar-month-filter .month-picker-month-table .ui-button:hover{background:#00acf8;color:#fff}div#MonthPicker_mec-gCalendar-month-filter .month-picker-month-table .ui-button.ui-state-active{cursor:default;pointer-events:none;text-decoration:none}#gCalendar-loading{width:100%;height:100%;background:no-repeat rgba(255,255,255,.88) url("../img/ajax-loader.gif") center;border-style:none;position:absolute;left:0;right:0;bottom:0;top:0;z-index:9}#gCalendar-loading.mec-modal-preloader{display:block!important}#mec-gCalendar-wrap table.fc-scrollgrid{border:1px solid #e3e4e5;border-radius:7px}#mec-gCalendar-wrap table.fc-scrollgrid thead tr td{border:none!important;background:0 0}#mec-gCalendar-wrap table.fc-scrollgrid thead tr td table{margin-bottom:0}#mec-gCalendar-wrap table.fc-scrollgrid thead tr td table tbody tr th{background:0 0;padding:3px 0 3px 10px;text-align:left;border-right:none!important;border-left:none!important}#mec-gCalendar-wrap table.fc-scrollgrid thead tr td table tbody tr th a{font-size:15px!important;font-weight:500!important}#mec-gCalendar-wrap table.fc-scrollgrid-sync-table{margin:0}#mec-gCalendar-wrap span.mec-general-calendar-label{color:#fff;padding:1px 4px 3px;font-size:11px;border-radius:3px;margin:5px 3px 2px 0;display:inline-block}.mec-gCalendar .fc .fc-scrollgrid-section-sticky>*{position:relative;z-index:1}.mec-gCalendar .fc-direction-ltr .fc-daygrid-event.fc-event-end,.mec-gCalendar .fc-direction-ltr .fc-daygrid-event.fc-event-start,.mec-gCalendar .fc-direction-rtl .fc-daygrid-event.fc-event-end,.mec-gCalendar .fc-direction-rtl .fc-daygrid-event.fc-event-start{margin-right:0!important;margin-left:0!important}#mec-gCalendar-wrap table.fc-scrollgrid-sync-table tr td{text-align:left;background:#fff!important}#mec-gCalendar-wrap table.fc-scrollgrid-sync-table .fc-daygrid-day-top{display:flex;flex-direction:row;padding-left:10px}#mec-gCalendar-wrap .fc-daygrid-day.fc-day-today{background:#f9f9f9!important}#mec-gCalendar-wrap .fc-scrollgrid-section-body>td{border:none!important}#mec-gCalendar-wrap table.fc-scrollgrid-sync-table tbody tr:last-child td:first-child{border-radius:0 0 0 7px}#mec-gCalendar-wrap table.fc-scrollgrid-sync-table tbody tr:last-child td:last-child{border-radius:0 0 7px 0}@media(max-width:1200px){.mec-gCalendar-search-text-wrap{padding-left:10px}.mec-gCalendar .mec-gCalendar-search-text-wrap input[type=text],.mec-gCalendar .mec-gCalendar-search-text-wrap input[type=text]:focus{width:100px}}@media(max-width:990px){.mec-gCalendar .mec-gCalendar-search-text-wrap input[type=text],.mec-gCalendar .mec-gCalendar-search-text-wrap input[type=text]:focus{width:auto}.mec-gCalendar .fc-header-toolbar .fc-toolbar-chunk:last-child{margin-top:12px}}
1
+ .mec-wrap{position:relative}.entry-content .mec-wrap h1,.entry-content .mec-wrap h2,.entry-content .mec-wrap h3,.entry-content .mec-wrap h4,.entry-content .mec-wrap h5,.entry-content .mec-wrap h6,.mec-wrap h1,.mec-wrap h2,.mec-wrap h3,.mec-wrap h4,.mec-wrap h5,.mec-wrap h6{color:#171c24;font-weight:300;font-style:inherit;letter-spacing:normal;clear:none}.mec-wrap h1{font-size:50px;line-height:1.16;margin-bottom:12px;letter-spacing:-1px}.mec-wrap h2{font-size:36px;line-height:1.14;margin-bottom:10px}.mec-wrap h3{font-size:28px;line-height:1.2;margin-bottom:8px}.mec-wrap h4{font-size:24px;line-height:1.2;margin-bottom:10px}.mec-wrap h5{font-size:18px;line-height:1.3;margin-bottom:7px}.mec-wrap h6{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-wrap .subheader{color:#849098}.mec-wrap h1 strong{font-weight:700}.mec-wrap p{margin:0 0 20px 0;color:#616161;font-size:14px;line-height:1.8}.mec-wrap .mec-event-article .mec-color-hover{box-shadow:none;border:none}.mec-wrap abbr,.mec-wrap acronym{cursor:auto;border:none}.entry-content .mec-wrap a{box-shadow:none}.mec-wrap .button,.mec-wrap a.button:not(.owl-dot),.mec-wrap button:not(.owl-dot):not(.gm-control-active),.mec-wrap input[type=button],.mec-wrap input[type=reset],.mec-wrap input[type=submit]{position:relative;border:none;border-radius:2px;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#24ca4f;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease}.mec-wrap .button:hover,.mec-wrap a.button:hover,.mec-wrap button:hover,.mec-wrap input[type=button]:hover,.mec-wrap input[type=reset]:hover,.mec-wrap input[type=submit]:hover{background:#222;color:#fff}.mec-wrap #mec_woo_add_to_cart_btn_r{min-width:155px;margin-top:5px;border-radius:2px;box-shadow:0 2px 1px rgba(0,0,0,.08);float:left;text-align:center}.mec-booking-form-container button{display:block}.vertical-space,.vertical-space1,.vertical-space2,.vertical-space3,.vertical-space4,.vertical-space5{display:block;width:100%;margin:0;clear:both;border:0 none;height:20px}.vertical-space2{height:40px}.vertical-space3{height:60px}.vertical-space4{height:80px}.vertical-space5{height:100px}@media only screen and (max-width:479px){.vertical-space,.vertical-space1{height:8px}.vertical-space2{height:14px}.vertical-space3{height:28px}.vertical-space4{height:40px}.vertical-space5{height:60px}}@media only screen and (max-width:960px){.vertical-space,.vertical-space1{height:12px}.vertical-space2{height:18px}.vertical-space3{height:36px}.vertical-space4{height:50px}.vertical-space5{height:80px}}.mec-wrap abbr{cursor:auto;border-bottom:0}@-webkit-keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}.mec-wrap{font:14px/25px;font-weight:400;color:#626262}.mec-wrap .mec-events a{border-bottom:none}.mec-wrap .mec-container a{box-shadow:none}.mec-event-content p{font-weight:300}.mec-wrap .mec-clear:after,.mec-wrap .mec-clear:before{content:" ";display:table}.mec-wrap .mec-clear:after{clear:both}.mec-events-button{background:#fff;padding:12px 34px;font-size:13px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;margin-right:10px;transition:.3s}.mec-wrap .mec-events-button:hover{color:#fff}.mec-no-event{display:none}#mec-active-current{display:block}.current-hide #mec-active-current{display:none!important}.mec-event-grid-classic .mec-event-article{position:relative;border:2px solid #e3e3e3;box-shadow:0 2px 0 0 rgba(0,0,0,.016);margin-bottom:30px;max-width:none}.mec-event-grid-classic .mec-event-content{background:#fff;color:#767676;padding:0 20px 5px;text-align:center;min-height:125px}.mec-event-grid-classic .mec-event-title{color:#202020;margin:10px 0;font-weight:700;font-size:20px;letter-spacing:1px;text-transform:uppercase}.mec-event-grid-classic .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-classic .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;color:#fff;padding:3px 20px;margin:0 -20px 20px -20px;text-align:center}.widget_mec_mec_widget .mec-event-grid-classic .mec-event-date{margin:0}.mec-event-grid-classic .mec-event-content p{font-size:15px;color:#8a8a8a}.mec-event-grid-classic .mec-event-detail{display:none}.mec-event-grid-classic img{margin-bottom:0;width:100%}.mec-event-footer{position:relative;border-top:1px solid #efefef;padding:20px;min-height:80px;margin:0;background:#fafafa}.mec-event-sharing-wrap{left:15px;position:absolute;list-style:none;margin:0;padding-left:0}.mec-event-sharing-wrap .mec-event-sharing{position:absolute;padding:8px 0 2px;left:-6px;bottom:54px;margin:0;margin-top:6px;border-radius:5px;width:50px;visibility:hidden;opacity:0;border:1px solid #e2e2e2;background:#fff;box-shadow:0 0 9px 0 rgba(0,0,0,.06);z-index:99;-webkit-transition:all .18s ease;transition:all .18s ease}.mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-sharing-wrap .mec-event-sharing:before{content:"";display:block;position:absolute;bottom:-10px;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-event-sharing-wrap .mec-event-sharing:before{bottom:-21px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-sharing-wrap .mec-event-sharing:after{bottom:-19px;border-color:#fff transparent transparent transparent}.mec-event-sharing-wrap:hover .mec-event-sharing{opacity:1;visibility:visible}.mec-event-sharing-wrap li{text-align:center;border:0;display:block;margin-right:2px;overflow:hidden;margin:0 auto 6px;width:38px}.mec-event-sharing-wrap li.mec-event-share{height:38px}.mec-event-sharing-wrap:hover>li{cursor:pointer;background-color:#40d9f1}.mec-event-sharing-wrap:hover li a{color:#fff}.mec-event-sharing-wrap>li:first-of-type{border:1px solid #d9d9d9}.mec-event-sharing-wrap li a,.mec-event-sharing-wrap:hover li ul li a{border:none;color:#767676;display:block}.mec-event-sharing-wrap li i{width:36px;height:36px;display:table-cell;vertical-align:middle}.mec-event-sharing-wrap li svg{height:16px}.mec-event-sharing-wrap .mec-event-sharing li a{display:block}.mec-event-sharing-wrap .mec-event-sharing li:hover a{color:#40d9f1}.mec-event-sharing .mec-event-share:hover .event-sharing-icon{background:#40d9f1;border-width:0 1px 0;cursor:pointer}.mec-event-sharing .mec-event-map{border-width:1px 0 1px}.mec-event-footer .mec-booking-button{box-shadow:none;transition:all .21s ease;font-size:11px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:1px solid #e8e8e8;position:absolute;top:20px;right:15px;padding:0 16px;line-height:37px;height:38px}.mec-event-footer .mec-booking-button:hover{background:#191919;color:#fff;border-color:#191919}@media only screen and (max-width:960px){.mec-event-grid-classic{margin-bottom:30px}}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:36px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:5px 0;width:100%;position:absolute;top:15px;padding:0}.mec-skin-grid-container.mec-widget{padding-top:18px}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:20px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:0;width:100%;position:absolute;top:0;padding:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav div{position:absolute;background:#fff;line-height:0;width:34px;height:26px;padding:6px;text-align:center;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;text-align:center;box-shadow:0 2px 0 0 rgba(0,0,0,.028);transition:all .33s ease}.mec-skin-grid-container .mec-categories{padding:0}.mec-skin-grid-container .mec-categories li{list-style:none}.mec-skin-grid-container .mec-categories li a{color:#000;line-height:24px;text-align:left;transition:all .23s ease;-webkit-transition:all .23s ease}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-next{right:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-prev{left:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-sharing{display:none}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer{text-align:center}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer .mec-booking-button{position:static;padding:11px 16px}.widget .mec-event-footer ul.mec-event-sharing-wrap li a.mec-event-share-icon{padding:0}@media screen and (min-width:56.875em){.mec-widget .mec-month-container dl{margin-bottom:0}}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-footer{text-align:right}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap{left:5px;padding-left:5px}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap .mec-event-sharing{left:0}.mec-widget .mec-event-sharing-wrap .mec-event-sharing{position:absolute;top:auto;bottom:52px;margin:0;margin-top:0;border-radius:5px}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:after{top:auto;bottom:-17px;border-color:#fff transparent transparent transparent}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-18px;border-color:#e2e2e2 transparent transparent transparent}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav button{position:absolute;background:#fff;padding:6px;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;box-shadow:0 2px 0 0 rgba(0,0,0,.028)}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav button:hover{background:#40d9f1;border-color:#40d9f1}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav button:hover i{color:#fff}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-booking-button{width:40%;float:right;color:#202020;height:36px;line-height:14px;font-size:12px;width:auto}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-booking-button:hover{color:#fff}.mec-widget .mec-event-list-modern .col-md-2.col-sm-2,.mec-widget .mec-event-list-modern .col-md-6.col-sm-6{padding:0;width:100%;display:block;position:unset}.mec-widget .mec-event-list-modern .col-md-4.col-sm-4 .mec-booking-button{width:80%;height:46px;line-height:22px;padding:11px 20px;float:right}.mec-widget .mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{top:auto;bottom:5%}@media (max-width:480px){.mec-widget .mec-event-list-modern .col-md-4.col-sm-4{padding:0}.mec-widget .mec-event-list-modern .col-md-4.col-sm-4 .mec-booking-button{width:100%}}.mec-widget .mec-event-list-modern .mec-month-divider{margin:30px 0 10px 0}.mec-widget .mec-event-list-minimal .mec-event-date span{font-size:12px}.mec-widget .mec-event-list-minimal .mec-event-date:after{height:29px}.mec-widget .mec-event-list-minimal .col-md-3,.mec-widget .mec-event-list-minimal .col-md-9{display:block;width:100%;text-align:left}.mec-widget .mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{position:relative}.mec-widget .mec-event-list-modern .col-md-4.col-sm-4 .mec-booking-button{width:100%;text-align:center}.mec-widget .mec-event-list-minimal .mec-event-date:first-child{margin-right:24px}.mec-event-grid-clean{margin-bottom:10px;max-width:none}.mec-event-grid-clean .mec-event-article{margin-bottom:30px;position:relative;border:1px solid #e2e2e2;text-align:center;padding:15px 15px 0;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-clean .mec-event-content{background:#fff;color:#767676;padding:25px 16px 0;text-align:left}.mec-event-grid-clean .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:21px;text-transform:capitalize}.mec-event-grid-clean .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-clean .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;background-color:#40d9f1;color:#fff;padding:3px 0;margin:0;text-align:center}.mec-event-grid-clean .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-clean img{margin-bottom:0;width:100%}.mec-event-grid-clean .event-grid-t2-head{margin-bottom:10px;color:#fff;padding:9px 14px 6px;text-align:left}.mec-event-grid-clean .event-grid-t2-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-clean .event-grid-t2-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-clean .event-grid-t2-head .mec-event-detail{font-size:12px}.mec-event-grid-clean .event-grid-t2-head .mec-categories li a{margin-bottom:10px;color:#fff}.mec-event-grid-clean .event-grid-t2-head .mec-categories li a:hover{color:#000}.mec-event-grid-clean .mec-event-sharing-wrap{left:0;padding-left:0}.mec-event-grid-clean .mec-event-footer{position:relative;border-top:2px solid;padding:20px 0;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-clean .mec-event-footer .mec-booking-button{right:0}.mec-event-grid-clean .row{margin-bottom:30px}.mec-event-grid-modern{margin-bottom:10px;max-width:none}.mec-event-grid-modern .mec-event-article{position:relative;border:1px solid #e2e2e2;text-align:center;margin-bottom:30px;padding:45px 15px 10px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-modern .mec-event-content{background:#fff;color:#767676;padding:35px 15px 10px;text-align:left}.mec-event-grid-modern .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:24px;text-transform:none;letter-spacing:-1px}.mec-event-grid-modern .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-modern .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-modern img{margin-bottom:0;width:100%}.mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:9px 14px 6px;text-align:left}.mec-event-grid-modern .event-grid-modern-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-modern .event-grid-modern-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-modern .event-grid-modern-head .mec-event-detail{font-size:12px}.mec-event-grid-modern .event-grid-modern-head .mec-event-day{margin-top:9px;color:silver;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-event-grid-modern .mec-event-footer{position:relative;height:90px;padding:20px 0;border:none;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-modern .mec-event-footer .mec-booking-button{right:auto;left:0}.mec-event-grid-modern .mec-event-sharing-wrap{left:auto;right:0;padding-left:0}.mec-event-grid-modern .mec-event-sharing{left:auto;right:-6px}.mec-event-grid-modern .mec-event-sharing-wrap li{border-radius:55px}.mec-event-grid-modern .row{margin-bottom:0}@media only screen and (max-width:479px){.mec-event-grid-modern .mec-event-article{padding-bottom:30px}.mec-event-grid-modern .mec-event-sharing{top:60px;left:0;right:auto}.mec-event-grid-modern .mec-event-footer .mec-booking-button{top:0}}span.mec-event-title-soldout{font-size:8px;font-weight:700;letter-spacing:.5px;text-transform:uppercase;background:#e63360;color:#fff;padding:3px 8px;line-height:1;border-radius:15px;white-space:nowrap;vertical-align:middle}.mec-event-grid-colorful .mec-event-article{min-height:400px;border:none;box-shadow:none;background:#40d9f1;padding-top:25px;margin:0;color:#fff}.mec-event-grid-colorful .mec-event-content{background:0 0}.mec-event-grid-colorful .event-grid-modern-head,.mec-event-grid-colorful .event-grid-modern-head .mec-event-date,.mec-event-grid-colorful .event-grid-modern-head .mec-event-day,.mec-event-grid-colorful .mec-event-content p,.mec-event-grid-colorful .mec-event-sharing-wrap>li>a,.mec-event-grid-colorful .mec-event-title a{color:#fff}.mec-event-grid-colorful .mec-event-footer .mec-booking-button{border:none}.mec-event-grid-colorful .mec-event-sharing-wrap>li{border-color:#fff}.mec-event-grid-colorful .mec-event-sharing-wrap:hover>li{background:#333;border-color:#333}.mec-event-grid-colorful .mec-event-title a.mec-color-hover:hover{color:#fff;text-decoration:underline}.mec-event-grid-colorful .mec-event-title .event-color{display:none}.mec-event-grid-colorful div[class^=col-md-]{padding:0 1px 1px 0;margin:0}.mec-event-grid-colorful .mec-event-article .mec-time-details{color:#fff}@media only screen and (min-width:768px){.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-day{font-size:26px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-month{font-size:15px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-date{font-size:50px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-title{font-size:21px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-content p{font-size:13px}}@media only screen and (min-width:768px) and (max-width:1200px){.mec-wrap.mec-sm959.mec-event-grid-colorful div[class^=col-md-]{width:50%}}.mec-event-list-minimal .mec-event-article{border-bottom:1px solid #efefef;padding:24px 0 16px}.mec-event-list-minimal .mec-wrap .col-md-9{padding:0}.mec-event-list-minimal .mec-event-date{position:relative;float:left;margin-right:30px;color:#fff;width:52px;padding:6px 4px 3px;text-align:center;text-transform:uppercase;border-radius:3px}.mec-event-list-minimal .mec-event-date{min-width:52px;width:fit-content}.mec-event-list-minimal .mec-event-date:nth-child(2){margin:0 30px 0 -20px}.mec-event-list-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px}.mec-event-list-minimal .mec-event-date:after{display:block;content:"";position:absolute;width:50px;left:1px;top:1px;height:34px;background:rgba(255,255,255,.1);box-shadow:0 4px 4px rgba(0,0,0,.02)}.mec-event-list-minimal .mec-event-date:after{width:100%}.mec-event-list-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;font-size:18px;text-transform:uppercase;letter-spacing:0;padding-top:10px}.mec-event-list-minimal .mec-event-detail,.mec-event-list-minimal .mec-time-details{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a}.mec-event-list-minimal .btn-wrapper{text-align:right;padding-right:0;padding-top:6px}.mec-event-list-minimal .btn-wrapper .mec-detail-button{border-bottom:0;margin-bottom:14px;margin-right:0;box-shadow:none}.mec-event-list-minimal a.mec-detail-button{text-align:center;display:inline-block;background:#ededed;color:#191919;padding:12px;border-radius:2px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2px;transition:all .24s ease}.mec-event-list-minimal a.mec-detail-button:hover{background:#292929;color:#fff}.vc_col-sm-4 .mec-event-list-minimal .mec-event-date,.vc_col-sm-6 .mec-event-list-minimal .mec-event-date{margin-right:12px}.vc_col-sm-4 .mec-event-list-minimal .mec-event-title,.vc_col-sm-6 .mec-event-list-minimal .mec-event-title{font-size:15px;letter-spacing:2px}@media only screen and (min-width:480px) and (max-width:767px){.mec-event-list-minimal .btn-wrapper{padding-left:0}.mec-event-list-minimal .mec-event-date{margin-right:10px}}@media only screen and (max-width:767px){.mec-event-list-minimal .btn-wrapper .mec-detail-button{display:block;text-align:center;margin:0;margin-top:16px;padding:8px}.mec-event-list-minimal .btn-wrapper{margin:12px 0}}@media only screen and (max-width:479px){.mec-event-list-minimal .mec-event-date{float:none;width:100%;margin-bottom:8px}.mec-event-list-minimal .mec-event-date span{display:inline;padding-right:25px;margin-right:7px;font-size:inherit}.mec-event-list-minimal .mec-event-date:after{width:45%;box-shadow:4px 0 4px rgba(0,0,0,.02)}.mec-event-list-minimal .btn-wrapper{text-align:center;padding-left:0}.mec-event-list-minimal{text-align:center}.mec-event-list-minimal .mec-event-detail{margin-bottom:10px}}.mec-wrap .mec-event-list-modern .mec-event-title{margin-top:0;margin-bottom:10px}.mec-event-list-modern .mec-event-article{border-bottom:1px solid #efefef;padding:30px 0 10px}.mec-event-list-modern .mec-event-article:last-child{border-bottom:none}.mec-event-list-modern .mec-event-title a{color:#191919;transition:all .24s ease;box-shadow:none}.mec-event-list-modern .mec-event-date{text-transform:uppercase;padding:10px 0}.mec-event-list-modern .mec-event-date .event-d{font-size:48px;display:table-cell;padding:10px 0 0}.mec-event-list-modern .mec-event-date .event-d.mec-multiple-dates{font-size:20px;padding:0}.mec-event-list-modern .mec-event-date.mec-multiple-date-event:first-child{padding:10px 0 6px 0;position:relative;width:fit-content}.mec-event-list-modern .mec-event-date.mec-multiple-date-event:first-child:after{content:"";position:absolute;bottom:0;left:0;width:100%;height:1px;background:silver}.mec-event-list-modern .mec-event-date.mec-multiple-date-event:last-child{padding:5px 0 10px 0}.mec-event-list-modern .mec-event-date.mec-multiple-date-event .event-d{font-size:20px;padding:0}.mec-event-list-modern .mec-event-date.mec-multiple-date-event .event-da{font-size:20px;margin:0}.mec-event-list-modern .mec-event-date .event-f{font-size:13px;display:table-cell;vertical-align:middle;padding-left:7px;font-weight:500;letter-spacing:3px;color:#777}.mec-event-list-modern .mec-event-detail{font-weight:300;color:#8a8a8a}.mec-event-list-modern .mec-event-detail .mec-time-details{display:inline}.mec-event-list-modern .mec-event-date .event-da{margin-top:9px;color:silver;font-size:28px;font-weight:100;text-transform:uppercase;letter-spacing:-1px;text-align:left}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{border-radius:1px;letter-spacing:2px;border:1px solid #e6e6e6;color:#333;background-color:#fff;padding:13px 20px;font-weight:700;font-size:11px;box-shadow:0 2px 0 0 rgba(0,0,0,.016);transition:all .28s ease}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover{border-color:#222;background:#222;color:#fff}.mec-event-list-modern .mec-event-title{font-weight:700;font-size:20px;text-transform:uppercase;letter-spacing:1px}.mec-event-list-modern .mec-event-detail{color:#9a9a9a;font-size:15px;font-weight:300;line-height:25px}.mec-event-list-modern .mec-btn-wrapper{text-align:right;padding:10px 0;text-transform:uppercase}.mec-event-list-modern .mec-event-sharing{position:relative;margin:10px 0;padding-left:0}.mec-event-list-modern .mec-event-sharing>li{display:inline-block;border:none;border-radius:50%;margin-right:3px}.mec-event-list-modern .mec-event-sharing .telegram{min-width:36px;min-height:36px;line-height:36px;padding:9px 1px 10px;border-radius:60px}.mec-event-list-modern .mec-event-sharing>li .telegram{padding-top:8px;padding-bottom:9px;border-radius:50%;border:1px solid #ddd}.mec-event-list-modern .mec-event-sharing .telegram .svg-inline--fa.fa-telegram.fa-w-16{width:3.246rem;padding:2px 10px 0 10px;margin-bottom:-2px}.mec-event-list-modern .mec-event-sharing .telegram .svg-inline--fa.fa-telegram.fa-w-16 path{fill:#767676}.mec-event-list-modern .mec-event-sharing li:hover .telegram{background-color:#40d9f1}.mec-event-list-modern .mec-event-sharing li:hover .telegram .svg-inline--fa.fa-telegram.fa-w-16 path{fill:#fff}.mec-event-list-modern .mec-event-sharing>li:hover{display:inline-block}.mec-event-list-modern .mec-event-sharing>li:hover a i{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-event-list-modern .mec-event-sharing>li i{width:36px;display:inline-block;line-height:35px;color:#767676;text-align:center;border-radius:50%;border:1px solid #ddd;font-size:14px}.mec-event-list-modern .mec-event-sharing .mec-event-share:hover .mec-event-sharing-icon{background:#40d9f1;border-color:#40d9f1;cursor:pointer;border-radius:50%}.mec-event-list-modern .mec-event-sharing li:hover a i{background:#40d9f1}@media only screen and (min-width:768px){.mec-event-list-modern .mec-event-article{position:relative;min-height:160px;overflow:hidden}.mec-event-list-modern .col-md-2.col-sm-2{width:210px;position:absolute;left:0;top:20px;padding:0}.mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{width:180px;padding:0;position:absolute;right:0;top:30%}.mec-event-list-modern .col-md-6.col-sm-6{width:100%;padding-left:225px;padding-right:195px}}@media only screen and (max-width:767px){.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{letter-spacing:1px;border:1px solid #e1e1e1;padding:8px 16px}.mec-event-list-modern .mec-btn-wrapper{padding:0 0 12px}.mec-event-list-modern .mec-event-sharing{margin-bottom:0}}.mec-event-grid-minimal .mec-event-article{margin:15px 0;min-height:80px;display:table}.mec-event-grid-minimal .event-detail-wrap{display:table-cell;vertical-align:middle}.mec-event-grid-minimal .mec-event-date{width:70px;float:left;margin-right:20px;padding:12px 16px 10px;text-align:center;text-transform:uppercase;border-radius:4px;border:1px solid #e6e6e6;transition:all .37s ease-in-out;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px;color:#2a2a2a;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:16px;text-transform:uppercase;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title a{color:#191919;transition:color .3s ease}.mec-event-grid-minimal .mec-event-detail,.mec-event-grid-minimal .mec-time-details{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;margin-bottom:5px}.mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-grid-minimal .mec-event-date:hover span{color:#fff}.mec-wrap .mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-list-classic .mec-event-article{padding:12px 0;margin-bottom:20px}.mec-event-list-classic .mec-event-image{float:left;width:86px;margin-right:20px}.mec-event-list-classic .mec-event-date,.mec-event-list-classic .mec-event-time{font-weight:400;font-size:13px;letter-spacing:0;line-height:18px;text-align:left;display:initial;margin-right:12px}.mec-event-list-classic .mec-event-time .mec-time-details,.mec-event-list-classic .mec-event-time i{display:inline;margin-right:3px}.mec-event-list-classic .mec-event-date span{font-weight:500;margin-bottom:6px}.mec-event-list-classic .mec-event-title{font-size:15px;margin:10px 0 12px;font-weight:700;text-transform:uppercase}.mec-event-list-classic .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-list-classic .mec-event-detail{color:#777;font-weight:400;line-height:12px;font-size:12px;overflow:hidden}.mec-event-list-classic a.magicmore{padding:10px 16px;color:#fff;background:#222;letter-spacing:2px;font-size:11px}.mec-event-list-classic a.magicmore:after{content:"";display:none}.mec-event-list-classic a.magicmore:hover{color:#40d9f1}.mec-event-grid-simple .mec-event-article{position:relative;margin-bottom:30px}.mec-event-grid-simple .mec-event-article:after{border-right:1px solid #e6e6e6;height:60px;position:absolute;top:50%;margin-top:-30px;right:-1px}.mec-event-grid-simple .row div:last-child .mec-event-article:after{border:none}.mec-event-grid-simple .row{margin:15px 0 30px;text-align:center}.mec-event-grid-simple .mec-event-date{padding:0;margin:0;text-transform:capitalize;font-size:12px;font-weight:700}.mec-event-grid-simple .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:15px;padding-top:5px;padding-left:5px;padding-right:5px;text-transform:uppercase;transition:color .37s ease}.mec-event-grid-simple .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-grid-simple .mec-event-detail{font-weight:400;line-height:1;letter-spacing:0;font-size:13px;color:#777}.mec-event-grid-simple:hover .mec-event-title{color:#40d9f1}.mec-event-grid-simple:hover .mec-event-date{background:0 0}.event-last:after{display:none}@media only screen and (max-width:767px){.mec-event-grid-simple .mec-event-article{padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid #eee}.mec-event-grid-simple .mec-event-article:after{border:none}}.mec-event-grid-novel .mec-event-article{position:relative;margin-bottom:30px;padding:60px 5% 60px 7%;border:1px solid rgba(255,255,255,.12);border-radius:10px;background-color:#0050fd;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease;z-index:1}.mec-event-grid-novel .mec-event-article .novel-grad-bg{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:10px;opacity:0;z-index:-1;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}.mec-event-grid-novel .mec-event-article:hover{-webkit-box-shadow:0 13px 36px 0 rgba(0,0,0,.23);box-shadow:0 13px 36px 0 rgba(0,0,0,.23);border-color:transparent}.mec-event-grid-novel .mec-event-article:hover .novel-grad-bg{background-image:-webkit-gradient(linear,left top,right top,from(#262e32),to(#0e1015));background-image:-webkit-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:-o-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:linear-gradient(90deg,#262e32 0,#0e1015 100%);opacity:1}.mec-event-grid-novel .mec-event-image{float:left;width:150px;height:150px}.mec-event-grid-novel .mec-event-image img{width:150px;height:150px;border-radius:50%}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:200px}.mec-event-grid-novel .mec-event-content h4{position:relative;margin-bottom:10px;display:inline-block}.mec-event-grid-novel .mec-event-content h4 a{font-size:24px;line-height:35px;color:#fafcff}.mec-event-grid-novel .mec-event-content h4.mec-gCalendar-search-text-wrap input[type=text]before{content:"";position:absolute;top:8px;left:-30px;width:17px;height:17px;background:#5cd0ed;opacity:.4;border-radius:50%;padding-right:5px}.mec-event-grid-novel .mec-event-content h4::after{content:"";position:absolute;top:12px;left:-26px;width:9px;height:9px;background:#5cd0ed;border-radius:50%}.mec-skin-grid-container .mec-event-grid-novel .mec-categories li a{color:#fff}.mec-event-grid-novel .mec-event-address,.mec-event-grid-novel .mec-event-detail,.mec-event-grid-novel .mec-event-month,.mec-event-grid-novel .mec-local-time-details{position:relative;padding-left:35px;font-size:15px;line-height:30px;color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-address::before,.mec-event-grid-novel .mec-event-detail::before,.mec-event-grid-novel .mec-event-month::before,.mec-event-grid-novel .mec-local-time-details:before{position:absolute;top:6px;left:6px;font-size:17px;font-family:simple-line-icons;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}.mec-event-grid-novel .mec-local-time-details::before{content:"\e007"}.mec-event-grid-novel .mec-event-month::before{content:"\e075"}.mec-event-grid-novel .mec-event-detail::before{content:"\e081"}.mec-event-grid-novel .mec-event-address::before{content:"\e096"}.mec-event-grid-novel .mec-event-footer{clear:both;padding:20px 0;border-top:none;background:0 0}.mec-event-grid-novel .mec-event-footer .mec-booking-button{right:auto;left:0;height:42px;width:148px;padding:0 20px;font-size:14px;font-weight:400;line-height:42px;text-align:center;color:#fff;background:0 0;border-color:rgba(255,255,255,.1);border-radius:50px}.mec-event-grid-novel .mec-event-footer .mec-booking-button:hover{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap{left:175px;cursor:pointer;padding-left:0}.mec-event-grid-novel .mec-event-sharing-wrap>li{border-color:rgba(255,255,255,.1);border-radius:50%}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing{top:-5px;left:0;padding:5px 10px 2px 50px;min-width:150px;width:inherit;height:37px;background-color:rgba(255,255,255,.1);-webkit-box-shadow:none;box-shadow:none;border:none;border-radius:50px}.mec-event-grid-novel .mec-event-sharing-wrap:hover>li{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::after,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::before{display:none}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon,.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li i{display:inline}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a{padding:0 10px}.mec-event-grid-novel .mec-event-sharing-wrap>li a{color:#fff}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a{color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a:hover{color:#fff}@media only screen and (max-width:1200px){.mec-event-grid-novel .row .col-md-6.col-sm-6{width:100%;float:none}.mec-event-grid-novel .mec-event-image{float:none;margin-top:-20px;margin-bottom:20px}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:20px}.mec-event-grid-novel .mec-event-footer{margin-top:30px}}@media only screen and (max-width:767px){.mec-event-grid-novel .mec-event-footer{margin-top:0;padding-top:30px;margin-bottom:24px}.mec-event-grid-novel .mec-event-footer .mec-booking-button{display:block;position:relative}.mec-event-grid-novel .mec-event-sharing-wrap{left:0;bottom:-55px;padding-left:0}.mec-event-grid-novel .mec-event-content h4 a{font-size:20px;line-height:1.3}}.mec-event-grid-novel .mec-event-sharing-wrap{padding-left:0}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing{width:fit-content;z-index:999999}@media (min-width:1280px){.mec-event-grid-novel .col-md-4.col-sm-4 .mec-event-article img{width:100px;height:100px}.mec-event-grid-novel .col-md-4.col-sm-4 .mec-event-detail-wrap{margin-left:150px}}@media (min-width:760px) and (max-width:1024px){.mec-event-grid-novel .col-md-4.col-sm-4{width:100%}.mec-event-grid-novel .mec-event-image{float:left}.mec-event-grid-novel .col-md-4.col-sm-4 .mec-event-article img{width:100px;height:100px}}.mec-event-cover-modern{position:relative}.mec-event-cover-modern .mec-event-cover-a{background:0 0;position:absolute;color:#fff;bottom:0;left:0;text-decoration:none}.mec-event-cover-modern .mec-event-cover-a .mec-event-overlay{transition:all .5s;opacity:.8;width:100%;height:100%;position:absolute}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-overlay{opacity:1}.mec-event-cover-modern .mec-event-detail{padding:40px;position:relative}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-tag{color:#333;transition:all .5s}.mec-event-cover-modern .mec-event-cover-a .mec-event-title:hover{text-decoration:underline}.mec-event-cover-modern .mec-event-tag{background:#fff;display:inline-block;padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px}.mec-event-cover-modern .mec-event-date{text-transform:uppercase;font-size:17px;font-weight:300}.mec-event-cover-modern .mec-event-title{color:#fff;text-transform:uppercase;font-size:40px;font-weight:700;margin:6px 0}.mec-event-cover-modern .mec-event-place{font-weight:400;font-size:18px}@media only screen and (max-width:767px){.mec-event-cover-modern .mec-event-cover-a{width:100%}}.mec-event-cover-classic{position:relative;overflow:hidden;background:#fff;padding:6px;border:1px solid #e8e8e8}.mec-event-cover-classic .mec-event-overlay{position:absolute;left:6px;right:6px;bottom:6px;top:6px;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-cover-classic:hover .mec-event-overlay{background-color:rgba(36,36,36,.6)}.mec-event-cover-classic .mec-event-content{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out}.mec-event-cover-classic .mec-event-date{font-size:14px;text-transform:uppercase;font-weight:400;line-height:1.6;text-align:left}.mec-event-cover-classic .mec-event-date span{display:block;font-weight:700;font-size:16px}.mec-event-cover-classic .mec-event-title{color:#fff;margin:20px 0 38px;font-size:24px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-cover-classic .mec-btn-wrapper{text-align:left}.mec-event-cover-classic .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-cover-classic .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:12px 20px;letter-spacing:3px;font-size:12px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-cover-classic .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-cover-classic .mec-event-image img{min-width:100%}@media only screen and (max-width:960px){.mec-event-cover-classic .mec-event-content{padding:20px}.mec-event-cover-classic .mec-event-button{font-size:11px;padding:7px 10px;letter-spacing:1px}.mec-event-cover-classic .mec-event-title{font-size:19px;margin:15px 0 25px}.mec-event-cover-classic .mec-event-date{font-size:12px}}@media only screen and (max-width:767px){.mec-event-cover-classic{margin-bottom:30px}}@media only screen and (max-width:479px){.mec-event-cover-classic .mec-event-content{padding:15px;font-size:15px}.mec-event-cover-classic .mec-event-title{font-size:15px;margin:10px 0}.mec-event-cover-classic .mec-event-button{font-size:10px;padding:6px;letter-spacing:1px}.mec-event-cover-classic .mec-event-icon{padding:10px}}.mec-load-more-wrap{text-align:center;display:block;width:100%;padding-top:20px;text-align:center;position:relative}.mec-load-more-button{box-shadow:none;transition:all .21s ease;font-size:12px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:2px solid #e8e8e8;border-radius:50px;padding:0 28px;margin-bottom:20px;cursor:pointer;line-height:40px;height:42px;display:inline-block}.mec-load-more-button:hover{background:#191919;color:#fff;border-color:#191919}.mec-load-more-loading{content:url("../img/ajax-loader.gif");cursor:wait;background:0 0;border-style:none}.mec-load-more-loading:hover{background:0 0}.mec-modal-preloader,.mec-month-navigator-loading{width:100%;height:100%;background:no-repeat rgba(255,255,255,.88) url("../img/ajax-loader.gif") center;border-style:none;position:absolute;left:0;right:0;bottom:0;top:0;z-index:9}.mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:1024px}.mec-calendar-side .mec-calendar-table{min-height:450px}.mec-skin-weekly-view-events-container.mec-month-navigator-loading{margin-top:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-skin-daily-view-events-container.mec-month-navigator-loading{margin-top:0}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar-side .mec-calendar-table{min-height:1px}}@media only screen and (max-width:479px){.mec-calendar-side .mec-calendar-table{min-height:1px}}.mec-event-cover-clean{position:relative;border:1px solid #e6e6e6;padding:8px}.mec-event-cover-clean .mec-event-overlay{height:100%;background-color:rgba(36,36,36,.4);position:absolute;width:100%;left:0;border:8px solid #fff;top:0;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-content{color:#fff;position:absolute;bottom:20px;padding:40px 60px;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-title{color:#fff;font-weight:700;margin:46px 0 19px;font-size:29px;text-transform:uppercase;text-shadow:0 0 1px rgba(0,0,0,.5)}.mec-event-cover-clean .mec-event-title a{color:#fff;transition:all .5s;text-decoration:none;outline:0;border:none;box-shadow:none}.mec-event-cover-clean .mec-event-title a:hover{text-decoration:underline}.mec-event-cover-clean .mec-event-date{position:absolute;top:-20px;right:60px;color:#fff;width:60px;padding:14px 10px;z-index:1}.mec-event-cover-clean .mec-event-date div{text-align:center;text-transform:uppercase;letter-spacing:1px;line-height:16px}.mec-event-cover-clean .mec-event-date .dday{padding-bottom:15px;border-bottom:1px solid rgba(255,255,255,.5);margin-bottom:13px;font-size:24px}.mec-event-cover-clean .mec-event-date .dmonth{letter-spacing:2px}.mec-event-cover-clean .mec-event-place{font-size:18px}.mec-event-cover-clean .mec-event-image img{width:100%}@media only screen and (max-width:768px){.mec-event-cover-clean .mec-event-content{padding:20px;bottom:5px}.mec-event-cover-clean .mec-event-title{font-size:23px}.mec-event-cover-clean .mec-event-date{right:20px;padding:10px;width:50px}}@media only screen and (max-width:479px){.mec-event-cover-clean .mec-event-content{padding:10px}.mec-event-cover-clean .mec-event-title{font-size:19px;padding-right:25px}.mec-event-cover-clean .mec-event-date{right:-20px;top:-10px}.mec-event-cover-clean .mec-event-detail{font-size:12px}}.mec-month-divider{text-align:center;margin:60px 0 40px 0}.widget .mec-month-divider{margin:10px 0}.mec-month-divider span{text-transform:uppercase;font-size:22px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-month-divider span:before{border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-30px;left:50%;width:60px}.widget .mec-month-divider span{font-size:13px}.mec-event-list-standard .mec-events-pagination{margin-top:60px;border-top:4px solid #ebebeb;min-height:80px;padding-top:20px}.mec-event-list-standard .mec-events-pagination .mec-events-pag-previous{float:left;margin-left:0}.mec-event-list-standard .mec-events-pagination .mec-events-pag-next{float:right;margin-right:0}.mec-event-list-standard .mec-event-article{position:relative;display:block;margin-bottom:25px;border:1px solid #e9e9e9;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-list-standard .mec-topsec{display:table;width:100%}.mec-event-list-standard .col-md-3.mec-event-image-wrap{padding-left:0}.mec-event-list-standard .mec-event-content{padding-top:15px;padding-right:30px}.mec-event-list-standard .mec-event-title{font-size:29px;font-weight:700;letter-spacing:-1px;margin:0 0 10px}.mec-event-list-standard .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-list-standard .mec-col-table-c{display:table-cell;height:100%;vertical-align:middle;float:none!important}.mec-event-list-standard .mec-col-table-c.mec-event-meta-wrap{padding-top:15px}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{vertical-align:top}.mec-topsec .mec-event-image{line-height:1px}.mec-topsec .mec-event-image a{display:block}.mec-event-list-standard .mec-event-meta-wrap{border-left:1px solid #eee}.mec-event-list-standard .mec-time-details{text-transform:uppercase;font-size:11px;font-weight:300;padding-top:0;text-align:left;padding-left:30px}.mec-event-list-standard .mec-event-meta .mec-event-address{font-style:normal;letter-spacing:0;font-size:12px;font-weight:300;margin:0 12px 0 0}.mec-event-list-standard .mec-event-meta span.mec-event-d,.mec-event-list-standard .mec-event-meta span.mec-event-m{font-size:17px;font-weight:700;padding-right:6px;color:#444;text-transform:uppercase}.mec-event-list-standard .mec-date-details,.mec-event-list-standard .mec-local-time-details,.mec-event-list-standard .mec-time-details,.mec-event-list-standard .mec-venue-details{position:relative;padding-left:28px;margin-bottom:10px}.mec-event-list-standard .mec-date-details:before,.mec-event-list-standard .mec-local-time-details:before,.mec-event-list-standard .mec-time-details:before,.mec-event-list-standard .mec-venue-details:before{content:"\f041";font-family:fontawesome;position:absolute;left:6px;font-size:15px}.mec-event-list-standard .mec-date-details:before{content:"\f073"}.mec-event-list-standard .mec-time-details:before{content:"\f017"}.mec-event-list-standard .mec-local-time-details:before{content:"\f0ac"}.mec-event-list-standard .mec-local-time-details .mec-local-title{display:block}.mec-event-list-standard .mec-local-time-details .mec-local-date,.mec-event-list-standard .mec-local-time-details .mec-local-time{font-style:normal;letter-spacing:0;font-size:11px;color:#8a8a8a;font-weight:300;line-height:1.6}.mec-event-list-minimal .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-meta-wrap .mec-price-details{margin-bottom:10px}.mec-price-details i{margin-right:4px;vertical-align:text-top}.mec-event-meta-wrap .mec-event-meta .mec-price-details i:before{font-size:15px}.mec-event-list-standard .mec-price-details{text-transform:uppercase;font-size:11px;font-weight:300}.mec-event-list-standard .mec-price-details i{margin-left:6px}.mec-month-side .mec-price-details{margin-left:2px}.mec-event-article .mec-price-details i,.mec-month-side .mec-price-details i,.tooltipster-sidetip.tooltipster-shadow:not(.uael-tooltipster-active) .tooltipster-content .mec-price-details i{padding-top:4px;vertical-align:unset}.mec-event-list-standard ul.mec-categories{position:relative;padding-left:28px;margin-bottom:10px}.mec-event-list-standard ul.mec-categories li.mec-category a:before{font-size:16px!important;content:"\f105";position:absolute;font-family:fontawesome;left:8px;font-size:15px}@media only screen and (max-width:960px){.mec-event-list-standard .mec-topsec{display:block}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:block;width:40%}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{display:block;min-height:230px}.mec-event-list-standard .mec-event-meta-wrap{display:block;border-left:none;border-top:1px solid #eee;width:100%;float:none;padding-top:20px}}@media only screen and (min-width:480px) and (max-width:960px){.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:table-cell}}@media only screen and (max-width:479px){.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap img{float:none;width:100%;padding:0}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{padding:10px 10px 10px 30px}}.mec-localtime-details{color:#777;font-weight:400;line-height:12px;font-size:12px}.mec-localtime-details .mec-localdate,.mec-localtime-details .mec-localtime,.mec-localtime-details .mec-localtitle{display:inline-block}.mec-localtime-details .mec-start-date-label{padding-right:5px}.mec-localtime-details .mec-localtime{padding-left:5px}.mec-event-list-minimal .mec-localtime-details{display:inline-flex;font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;padding-left:9px}.mec-event-grid-classic .mec-localtime-details,.mec-event-grid-clean .mec-localtime-details{color:#fff;font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:-.02em;color:#fff;padding:0 0;line-height:18px;margin-top:-3px}.mec-event-grid-clean .mec-localtime-details,.mec-event-grid-colorful .mec-localtime-details,.tooltipster-box .mec-localtime-details{line-height:22px;padding-top:10px}.mec-event-grid-colorful .mec-localtime-details{color:#fff}.mec-event-grid-classic .mec-localtime-details{text-align:center}.mec-event-grid-minimal .mec-localtime-details{line-height:22px}.mec-wrap .mec-yearly-view-wrap .mec-localtime-wrap i{display:inline-block;margin-left:-1px}.mec-timetable-t2-content .mec-local-time-details{padding-left:19px}.mec-timetable-t2-content .mec-local-time-details{position:relative}.mec-timetable-t2-content .mec-local-time-details:before{content:"\e007";font-family:simple-line-icons;position:absolute;font-size:12px;margin-right:4px;left:0}.mec-masonry .mec-masonry-col6 .mec-localtime-details{margin-top:10px;line-height:21px}.mec-masonry .mec-masonry-col6 .mec-localtime-details i{height:auto}.mec-event-cover-classic .mec-localtime-details{color:#fff;margin-top:12px}.mec-event-cover-classic .mec-localtime-details i{padding-right:8px}.mec-event-cover-clean .mec-localtime-details{color:#fff;margin-bottom:20px}.mec-event-cover-modern .mec-localtime-details{color:#fff;margin:10px 0;font-weight:400;font-size:18px}.mec-event-countdown-style1 .mec-localtime-details,.mec-event-countdown-style2 .mec-localtime-details,.mec-event-countdown-style3 .mec-localtime-details{color:#fff;padding:8px 5px 0;font-size:14px;line-height:25px}.mec-event-countdown-style1 .mec-localtime-details{text-align:center}.mec-event-hover-carousel-type4 .mec-localtime-details{display:block;color:#fff;font-size:11px}.mec-event-footer-carousel-type3 .mec-localtime-details .mec-localdate,.mec-event-footer-carousel-type3 .mec-localtime-details .mec-localtime,.mec-event-footer-carousel-type3 .mec-localtime-details .mec-localtitle,.mec-event-footer-carousel-type3 .mec-localtime-details span{display:inline-flex;line-height:20px;text-align:left;margin:0!important;font-size:12px;color:#777;line-height:28px}.mec-owl-crousel-skin-type1 .mec-localtime-details{margin-top:-7px;margin-bottom:12px}.mec-wrap .mec-slider-t5 .mec-localtime-details{margin-top:14px;line-height:20px}.mec-wrap .mec-slider-t5 .mec-localtime-details i{font-size:18px;height:20px}.mec-timeline-event-local-time{background:rgba(64,217,241,.11);display:inline-block;padding:7px 20px 11px;border-radius:20px;line-height:1.24}.mec-timeline-event-local-time .mec-localtime-details{font-size:13px;font-weight:500;vertical-align:middle;margin-left:6px;color:inherit;line-height:24px}.mec-timeline-event-local-time .mec-localtime-details i{font-size:17px;vertical-align:middle;margin-left:-7px;padding-right:3px}.mec-booking-modal{background-color:#e6f7ff}.mec-booking-modal .mec-booking-shortcode .mec-book-form-gateway-label input[type=radio]:before{top:-1px}.mec-modal-booking-button{box-shadow:none;transition:all .21s ease;font-size:11px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:1px solid #e8e8e8;padding:12px 16px;line-height:37px;height:38px;margin:12px 0}.mec-modal-booking-button:hover{background:#191919;color:#fff;border-color:#191919}.mec-modal-booking-button.mec-mb-icon i{font-size:14px}.mec-event-list-classic .mec-modal-booking-button{height:0;line-height:1;margin:7px 0 0;display:inline-table;letter-spacing:0;padding:12px 14px}.mec-event-grid-novel ul.mec-categories{position:relative;line-height:30px;font-size:15px}.mec-event-grid-novel ul.mec-categories li.mec-category a{padding-left:35px;color:rgba(255,255,255,.4);line-height:30px;font-size:15px}.mec-event-grid-novel ul.mec-categories li.mec-category a:before{font-size:16px!important;content:"\f105";position:absolute;font-family:fontawesome;left:8px;font-size:15px;color:rgba(255,255,255,.4)}.mec-calendar-events-side .mec-modal-booking-button,.mec-event-container-classic .mec-modal-booking-button,.mec-event-grid-minimal .mec-modal-booking-button,.mec-event-list-minimal .mec-modal-booking-button,.mec-timetable-t2-col .mec-modal-booking-button{margin:0;color:#282828;font-size:12px;transition:all .5s ease;-webkit-transition:all .5s ease;position:relative;padding:0 0 0 24px;background:0 0;text-align:left;display:inline;border:0;font-weight:700}.mec-timetable-t2-col .mec-modal-booking-button{color:#fff;padding-left:19px}.mec-timetable-t2-col .mec-modal-booking-button:hover{color:#282828}.mec-event-list-minimal .mec-modal-booking-button{margin:0 4px 0 84px}.mec-calendar-events-side .mec-modal-booking-button:before,.mec-event-container-classic .mec-modal-booking-button:before,.mec-event-grid-minimal .mec-modal-booking-button:before,.mec-event-list-minimal .mec-modal-booking-button:before{content:"";position:absolute;background:#7a7272;width:18px;height:1px;left:0;top:45%;transition:all .1s ease;-webkit-transition:all .1s ease}.mec-skin-carousel-container .mec-modal-booking-button{line-height:70px}.mec-event-list-modern .mec-modal-booking-button.mec-mb-icon{border-radius:1px;letter-spacing:2px;border:1px solid #e6e6e6;color:#333;background-color:#fff;padding:13px 12px 13px 14px;font-weight:700;box-shadow:0 2px 0 0 rgba(0,0,0,.016);transition:all .28s ease;line-height:unset}.mec-event-list-modern .mec-modal-booking-button.mec-mb-icon:hover{border-color:#222;background:#222;color:#fff}.mec-event-footer .mec-modal-booking-button,.mec-skin-carousel-container .mec-event-footer-carousel-type2 .mec-modal-booking-button{position:absolute;top:20px;right:125px;margin:0;padding:0 16px;line-height:37px}.mec-skin-carousel-container .mec-event-footer-carousel-type2 .mec-modal-booking-button{top:0;line-height:41px;height:41px;right:121px}.mec-skin-carousel-container .mec-event-footer-carousel-type3 .mec-modal-booking-button{line-height:18px;font-size:12px;letter-spacing:0;float:right;height:41px;margin:0 12px 0 0}.mec-skin-carousel-container .mec-owl-crousel-skin-type4 .mec-modal-booking-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none;margin:0 0 0 12px}.mec-skin-carousel-container .mec-owl-crousel-skin-type4 .mec-modal-booking-button:hover{color:#191919;background-color:#fff;border:2px #fff solid}.mec-event-grid-modern .mec-event-footer .mec-modal-booking-button{right:auto;left:110px}.mec-event-grid-simple .mec-modal-booking-button,.mec-events-agenda .mec-modal-booking-button{margin:0;font-size:12px;transition:all .5s ease;-webkit-transition:all .5s ease;position:relative;padding:0;background:0 0;text-align:left;display:inline;border:0;font-weight:700}.mec-events-agenda .mec-modal-booking-button{display:block;height:unset;padding-left:173px;line-height:14px;margin-bottom:7px}.mec-yearly-view-wrap .mec-modal-booking-button{margin:0;padding-left:14px;text-transform:capitalize}.mec-event-grid-novel .mec-event-footer .mec-modal-booking-button.mec-mb-icon{right:auto;left:238px;width:36px;height:36px;display:table-cell;vertical-align:middle;padding:0 10px;border-color:rgba(255,255,255,.1);background-color:rgba(0,0,0,0);color:#fff;border-radius:36px}.mec-event-grid-novel .mec-event-footer .mec-modal-booking-button.mec-mb-icon:hover{background-color:rgba(255,255,255,.1)}.mec-event-grid-simple .mec-modal-booking-button:hover,.mec-events-agenda .mec-modal-booking-button:hover,.mec-events-yearlu .mec-modal-booking-button:hover{color:#191919}.mec-event-masonry .mec-event-footer .mec-modal-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05);right:auto;left:155px}.mec-timeline-event .mec-modal-booking-button{position:absolute;top:0;right:0;display:inline-block;padding:7px 20px 7px;line-height:22px;height:unset;border:unset;text-transform:capitalize;font-weight:500;font-size:13px;letter-spacing:0;margin:0;border-radius:0 0 0 10px}.mec-timeline-event .mec-modal-booking-button:hover{background:#191919;color:#fff}.mec-skin-daily-view-events-container .mec-modal-booking-button,.mec-weekly-view-dates-events .mec-event-article .mec-modal-booking-button{position:absolute;top:50%;transform:translateY(-50%);right:15px;line-height:26px;height:49px;border:unset;text-align:center;display:inline-block;background:#ededed;color:#191919;padding:12px;border-radius:2px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2px;transition:all .24s ease;margin:0}.mec-skin-daily-view-events-container .mec-modal-booking-button:hover,.mec-weekly-view-dates-events .mec-event-article .mec-modal-booking-button:hover{background:#292929;color:#fff}@media (max-width:1023px){.mec-skin-daily-view-events-container .mec-modal-booking-button,.mec-weekly-view-dates-events .mec-event-article .mec-modal-booking-button{position:relative;top:unset;transform:unset;margin:14px 16px 0;padding:8px;line-height:20px;height:35px}}@media (max-width:768px){.featherlight .featherlight-inner{width:100%}.mec-events-agenda .mec-modal-booking-button{padding:0}}@media (max-width:480px){.mec-booking-modal .mec-events-meta-group-booking-shortcode{padding:20px}.mec-booking-modal .mec-booking-shortcode .mec-book-reg-field-mec_email,.mec-booking-modal .mec-booking-shortcode .mec-book-reg-field-name{width:100%}.mec-booking-modal .mec-booking-shortcode button#mec-book-form-btn-step-2{margin-left:20px}.mec-booking-modal .mec-booking-shortcode .mec-click-pay button[type=submit]{bottom:22px}.mec-calendar-events-side .mec-modal-booking-button:before,.mec-event-container-classic .mec-modal-booking-button:before,.mec-event-grid-minimal .mec-modal-booking-button:before,.mec-event-list-minimal .mec-modal-booking-button:before{display:none}.mec-calendar-events-side .mec-modal-booking-button,.mec-event-container-classic .mec-modal-booking-button,.mec-event-grid-minimal .mec-modal-booking-button,.mec-event-list-minimal .mec-modal-booking-button,.mec-timetable-t2-col .mec-modal-booking-button{margin:0;padding:0}.mec-event-grid-modern .mec-event-footer .mec-booking-button{top:20px}}.mec-wrap .mec-events-cal-links{margin-bottom:0}.mec-single-event #mec-wrap{padding:0;margin-top:35px}.mec-wrap .mec-single-title,.single-mec-events .mec-wrap.mec-no-access-error h1{margin-top:0;margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-event-content{padding:40px 0 30px;margin-bottom:10px}.mec-single-event .mec-events-meta-group-booking,.mec-single-event .mec-frontbox{margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-wrap #main-content{overflow:hidden;padding-top:35px}.mec-single-event .mec-map-get-direction-address-cnt{position:relative}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address{width:100%;height:46px;padding:13px 10px;margin-bottom:0;background:#fcfcfc;border:1px solid #e0e0e0;border-radius:0;box-shadow:inset 0 2px 5px rgba(0,0,0,.081)}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address:focus{color:#444;background:#fff;border-color:#b0b0b0;box-shadow:0 0 3px rgba(0,0,0,.2)}.mec-single-event .mec-map-get-direction-btn-cnt input{width:100%}.mec-single-event .mec-map-get-direction-reset{position:absolute;z-index:2;top:5px;right:10px;font-size:11px;cursor:pointer}.mec-events-meta-group-tags{margin-top:20px}.mec-events-meta-group-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-events-meta-group-tags a:hover{text-decoration:underline;background:#f9f9f9}.mec-local-time-details li{list-style:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative;border:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details ul{margin:0;padding-left:35px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3{border:none;padding-left:15px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3:before{display:none}.mec-single-event.mec-single-modern i.mec-sl-speedometer{display:none}.mec-single-modern .mec-local-time-details.mec-frontbox i{display:none}.mec-single-event .mec-events-meta-group-booking{padding-bottom:30px}.mec-single-event .mec-events-meta-group-booking ul{list-style:none;margin-left:0;padding-left:0}.mec-single-event .mec-events-meta-group-booking ul li{padding:0;list-style:none;margin-top:40px}.mec-single-event .mec-events-meta-group-booking h4{margin-bottom:20px;font-size:23px;font-weight:700}.mec-single-event .mec-events-meta-group-booking li h4{font-size:19px}.mec-single-event .mec-events-meta-group-booking button,.mec-single-event .mec-events-meta-group-booking input{border-radius:0;margin-bottom:6px}.mec-single-event .mec-events-meta-group-booking button{min-width:155px;margin-top:5px;margin-left:10px;border-radius:2px;box-shadow:0 2px 1px rgba(0,0,0,.08)}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-back-button{background:#c4cace;float:left}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-back-button:hover{background:#000}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-next-button{float:left;margin-left:0}button#mec-book-form-back-btn-step-3{float:none}.mec-next-occ-booking,.mec-next-occ-booking-p{padding-left:15px}.mec-events-meta-group-booking .mec-next-occ-booking,.mec-events-meta-group-booking .mec-next-occ-booking-p{padding:0;font-size:12px;letter-spacing:0;margin:3px 0;padding:5px 1em 3px 0}.mec-book-username-password-wrapper{padding:0 15px}.lity-container .mec-next-occ-booking,.lity-container .mec-next-occ-booking-p{padding-left:0}.mec-single-event .mec-events-meta-group-booking .mec-click-pay{max-width:350px}.mec-single-event .mec-events-meta-group-booking .mec-click-pay #mec_woo_add_to_cart_btn_r,.mec-single-event .mec-events-meta-group-booking .mec-click-pay button.mec-book-form-next-button{float:right}.mec-single-event .mec-events-meta-group-booking .mec-click-pay #mec_woo_add_to_cart_btn_r:hover,.mec-single-event .mec-events-meta-group-booking .mec-click-pay button.mec-book-form-next-button:hover{background:#000}.lity-container .mec-click-pay{max-width:400px}.lity-container .mec-book-form-btn-wrap button.mec-book-form-next-button,.lity-container .mec-click-pay #mec_woo_add_to_cart_btn_r{float:right}.lity-container button.mec-book-form-next-button{float:right}.lity-container .mec-click-pay #mec_woo_add_to_cart_btn_r:hover,.lity-container .mec-click-pay button.mec-book-form-next-button:hover{background:#000}.mec-single-event .mec-events-meta-group-booking .mec-click-next{float:right;position:relative;width:calc(100% - 186px)}.lity-container .mec-click-next{float:right;position:relative;width:calc(100% - 186px)}.mec-single-event .mec-book-form-coupon button{margin-left:0}.mec-single-event .mec-book-form-gateway-checkout button{margin-left:0}.mec-single-event .mec-single-event .mec-book-form-gateway-checkout button{margin-right:20px}.lity-content .mec-book-form-back-button{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px;background:#c4cace}.lity-content .mec-book-form-back-button:hover{background:#000}.lity-content button#mec-book-form-back-btn-step-3{float:none}.lity-content .mec-book-form-next-button{float:left}.lity-content .mec-book-bfixed-fields-container{list-style:none;padding-left:0}.mec-single-event .mec-book-first,.mec-single-event .mec-book-form-gateways,.mec-single-event .mec-book-form-price,.mec-single-event .mec-event-tickets-list,.mec-single-event form.mec-click-next{padding-left:0;padding-right:0}.mec-single-event label.mec-fill-attendees{margin-left:0}.mec-wrap .mec-events-meta-group-booking #mec-book-form-back-btn-step-2,.mec-wrap .mec-events-meta-group-booking #mec-book-form-back-btn-step-3,.mec-wrap .mec-events-meta-group-booking #mec-book-form-btn-step-1{margin-left:0}.mec-wrap .mec-booking-form-container .col-md-12{padding-left:0}.mec-wrap .mec-events-meta-group-booking .mec-wrap-checkout.row{margin:0}.mec-wrap .mec-wrap-checkout .mec-book-form-gateways .mec-book-form-gateway-label{padding-left:3px}.mec-wrap p.mec-gateway-comment{margin-top:20px}.mec-single-event .mec-events-meta-group-booking .mec-event-ticket-available{display:block;margin-bottom:20px;margin-top:-17px;font-size:11px;color:#8a8a8a}.mec-single-event .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.mec-single-event .mec-events-meta-group-booking form{margin:0}.mec-single-event .mec-events-meta-group-booking h5 span,.mec-single-event .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;display:block;clear:none;padding:5px 1em 3px 0}.mec-single-event .mec-events-meta-group-booking h5 span{display:inline-block}.mec-single-event .mec-events-meta-group-booking h5 span.mec-ticket-variation-name{padding-right:5px;text-transform:capitalize}.mec-single-event .mec-events-meta-group-booking input::-webkit-input-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input:-moz-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:330px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}.wbmec-mandatory{padding-left:5px;font-size:14px}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input,.mec-single-event .mec-events-meta-group-booking .mec-red-notification select,.mec-single-event .mec-events-meta-group-booking .mec-red-notification textarea{border:1px solid #ff3c3c!important}.lity .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.lity .mec-events-meta-group-booking .mec-red-notification input[type=radio],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=radio]{outline:1px solid #ff3c3c!important}.lity .mec-book-ticket-container .mec-red-notification input,.lity .mec-book-ticket-container .mec-red-notification select,.lity .mec-book-ticket-container .mec-red-notification textarea{border:1px solid #ff3c3c!important}.mec-booking .woocommerce-notices-wrapper .woocommerce-message{color:#0dbf52;background-color:#cef7ce;margin:0;padding-top:1rem;line-height:2.9rem;border:0}.mec-booking .woocommerce-notices-wrapper .woocommerce-message a{margin:0}@media only screen and (max-width:479px){.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{width:100%}}.mec-single-event .mec-events-meta-group-booking input[type=date]:focus,.mec-single-event .mec-events-meta-group-booking input[type=email]:focus,.mec-single-event .mec-events-meta-group-booking input[type=number]:focus,.mec-single-event .mec-events-meta-group-booking input[type=password]:focus,.mec-single-event .mec-events-meta-group-booking input[type=tel]:focus,.mec-single-event .mec-events-meta-group-booking input[type=text]:focus,.mec-single-event .mec-events-meta-group-booking select:focus,.mec-single-event .mec-events-meta-group-booking textarea:focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-single-event .mec-events-meta-group-booking input[type=radio]{margin-right:6px;margin-top:5px;min-height:20px;clear:none;margin:0 0 0 2px}.lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:18px;height:18px;margin:-1px 0 0 -3px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}.lity-container .mec-events-meta-group-booking input[type=radio]:checked:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.lity-container .mec-events-meta-group-booking input[type=radio],.mec-single-event .mec-events-meta-group-booking input[type=radio]{min-height:0;margin:0;margin-right:6px}.mec-single-event .mec-events-meta-group-booking input[type=checkbox]{float:left}.lity-container .mec-events-meta-group-booking .mec_book_first_for_all,.mec-single-event .mec-events-meta-group-booking .mec_book_first_for_all{display:none}.mec-events-meta-group-booking ul.mec-book-price-details{list-style:none;border:1px solid #eee;padding:0;overflow:hidden}.mec-events-meta-group-booking ul.mec-book-price-details li{font-size:15px;color:#a9a9a9;list-style:none;padding:13px 18px;margin:0;float:left;border-right:1px solid #eee}.mec-events-meta-group-booking ul.mec-book-price-details li:last-child{border-right:none}.mec-events-meta-group-booking ul.mec-book-price-details li span.mec-book-price-detail-amount{font-weight:700;font-size:21px;color:#222;display:contents}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label{height:14px;width:14px;background-color:transparent;border:1px solid #d4d4d4;position:relative;display:inline-block;-moz-transition:border-color ease .2s;-o-transition:border-color ease .2s;-webkit-transition:border-color ease .2s;transition:border-color ease .2s;cursor:pointer;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);vertical-align:middle;margin-right:3px;margin-top:-2px}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label{border-color:#008aff;box-shadow:0 2px 14px -3px #008aff}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{position:absolute;height:0;width:1px;background-color:#008aff;display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:"";-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{top:8px;left:7px;box-shadow:0 0 0 2px #fff;-moz-transform:rotate(-145deg);-ms-transform:rotate(-145deg);-o-transform:rotate(-145deg);-webkit-transform:rotate(-145deg);transform:rotate(-145deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before{height:12px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after{top:6px;left:3px;-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after{-moz-animation:dothabottomcheck 80ms ease 0s forwards;-o-animation:dothabottomcheck 80ms ease 0s forwards;-webkit-animation:dothabottomcheck 80ms ease 0s forwards;animation:dothabottomcheck 80ms ease 0s forwards;height:4px}.mec-single-event .mec-events-meta-group-booking button[type=submit]:after,.mec-single-event a.button:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.mec-single-event .mec-events-meta-group-booking button[type=submit].loading:after,.mec-single-event a.button.loading:after{display:inline-block}.mec-single-event .mec-event-export-module{display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{display:table;width:100%}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{display:table-cell}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li:last-child{text-align:right}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a:hover{color:#fff}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{padding-left:0;margin:15px 5px}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting{padding-left:0;margin:0}.mec-ticket-price{margin-left:10px;font-size:13px;font-weight:300}.mec-book-reg-field-checkbox label,.mec-book-reg-field-radio label{line-height:1.36}.mec-book-reg-field-checkbox input[type=checkbox],.mec-book-reg-field-radio input[type=radio]{float:left;margin-right:5px!important}.mec-ticket-available-spots .mec-event-ticket-description,.mec-ticket-available-spots .mec-event-ticket-price{font-size:11px}.mec-book-ticket-container .mec-reg-mandatory:nth-child(2) label:after,.mec-book-ticket-container .mec-reg-mandatory:nth-child(3) label:after,.mec-book-ticket-container .wbmec-mandatory{content:"";color:red;width:50px;height:50px;font-size:14px;padding-left:5px}@media only screen and (max-width:767px){.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{width:100%;min-height:40px;margin-bottom:15px;text-align:center;float:none;display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a{width:100%;padding-left:0;padding-right:0;text-align:center;display:block;font-size:12px}}.mec-single-event .mec-events-meta-group{margin-bottom:0}@media only screen and (max-width:767px){.mec-single-event .mec-events-meta-group-booking{margin-bottom:30px}}.mec-single-event .mec-event-meta dt,.mec-single-event .mec-event-meta h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-event .mec-event-meta h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-single-event .mec-event-meta .mec-events-event-categories a,.mec-single-event .mec-event-meta dd{font-size:14px;color:#8d8d8d}.mec-single-event .mec-event-meta .mec-location dd.author{color:#3c3b3b}.mec-single-event .mec-event-meta dd{margin:0;padding-left:35px}.mec-single-event .mec-event-meta dd.mec-events-event-categories{min-height:35px;line-height:35px}@media only screen and (max-width:480px){.single-mec-events .lity-container{width:100%}.single-mec-events .lity-content .mec-events-meta-group-booking{padding:20px;width:85%;margin:0 auto}}.mec-single-event .mec-event-meta dd.mec-events-event-categories:first-of-type{padding-top:5px}.mec-single-event .mec-event-meta dd.mec-events-event-categories:last-of-type{border-bottom:0}.mec-single-event .mec-event-meta dd a{color:#8d8d8d;transition:all .2s ease;-ms-word-wrap:break-word;word-wrap:break-word}.mec-single-event .mec-event-meta dd a i:before{font-size:16px!important}.mec-single-event .mec-event-meta dd a i{margin-right:8px}.mec-single-event .mec-event-meta dl{margin-bottom:0}.mec-single-event .mec-event-meta .mec-events-event-cost{font-size:18px}.mec-single-event .mec-event-meta .mec-events-address{color:#a9a9a9;margin-bottom:20px}.mec-single-event .mec-event-meta .mec-events-meta-group-venue .author{margin-bottom:0;color:#8d8d8d;font-size:13px}.mec-single-event .mec-events-event-image{margin-bottom:0}.mec-single-event h2.mec-single-event-title{margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-booking-button{border-bottom:none;letter-spacing:.5px;line-height:48px;height:76px;transition:all .5s ease;color:#fff;padding:16px;display:block;text-align:center;font-size:16px;border-radius:2px;box-shadow:0 1px 2px rgba(0,0,0,.15)}.mec-single-event .mec-booking-button:hover{background-color:#101010!important}.mec-single-event .mec-event-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-single-event .mec-event-tags:before{font-size:24px;color:#303030;margin-right:5px;content:"\f02c";font-family:fontawesome}.mec-single-event .mec-event-tags{padding-top:13px}.mec-single-event .mec-event-sharing{margin:30px 0 10px}.mec-region.mec-events-abbr,.mec-single-event .mec-street-address{font-style:normal;font-size:13px}.mec-events-meta-group.mec-events-meta-group-venue:before,.mec-single-event-date:before,.mec-single-event-time:before{color:#40d9f1}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-event-social h3{text-transform:uppercase;font-size:15px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-single-event .mec-social-single:before{padding:13px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:39px}.mec-single-event .mec-event-social .event-sharing{margin-top:30px}.mec-single-event .mec-event-social ul{list-style:none;margin-left:0;padding:0}.mec-single-event .mec-event-social li.mec-event-social-icon{display:inline-block}.mec-single-event .mec-event-social li.mec-event-social-icon a{display:inline-block;color:#fff;width:40px;height:40px;padding:9px;font-size:16px;margin-right:5px;margin-bottom:5px}.mec-single-event .mec-event-social a.facebook{background:#3b5996}.mec-single-event .mec-event-social a.facebook:hover{background:#28385c}.mec-single-event .mec-event-social a.twitter{background:#00acee}.mec-single-event .mec-event-social a.twitter:hover{background:#0087bd}.mec-single-event .mec-event-social a.vimeo{background:#0dadd6}.mec-single-event .mec-event-social a.vimeo:hover{background:#0a85a3}.mec-single-event .mec-event-social a.dribble{background:#d53e68}.mec-single-event .mec-event-social a.dribble:hover{background:#bf4c78}.mec-single-event .mec-event-social a.youtube{background:#cb322c}.mec-single-event .mec-event-social a.youtube:hover{background:#992622}.mec-single-event .mec-event-social a.pinterest{background:#cb2027}.mec-single-event .mec-event-social a.pinterest:hover{background:#99181d}.mec-single-event .mec-event-social a.google{background:#c3391c}.mec-single-event .mec-event-social a.google:hover{background:#99181f}.mec-single-event .mec-event-social a.linkedin{background:#0073b2}.mec-single-event .mec-event-social a.linkedin:hover{background:#005380}.mec-single-event .mec-event-social a.email{background:#ff5d5e}.mec-single-event .mec-event-social a.email:hover{background:#cc4949}.mec-single-event .mec-event-social a.vk{background:#5b88bd}.mec-single-event .mec-event-social a.vk:hover{background:#3d608a}.mec-single-event .mec-event-social a.tumblr{background:#34465d}.mec-single-event .mec-event-social a.tumblr:hover{background:#273649}.mec-single-event .mec-event-social a.telegram{background:#08c}.mec-single-event .mec-event-social a.telegram:hover{background:#1076be}.mec-single-event .mec-event-social a.whatsapp{background:#25d366}.mec-single-event .mec-event-social a.whatsapp:hover{background:#23ac55}.mec-single-event .mec-event-social a.flipboard{background:#e12828}.mec-single-event .mec-event-social a.flipboard:hover{background:#af1e1e}.mec-single-event .mec-event-social a.pocket{background:#ef4056}.mec-single-event .mec-event-social a.pocket:hover{background:#8d1717}.mec-single-event .mec-event-social a.reddit{background:#ff5700}.mec-single-event .mec-event-social a.reddit:hover{background:#c94909}.mec-single-event .mec-event-social a.flipboard svg,.mec-single-event .mec-event-social a.telegram svg{height:16px}.mec-single-event .mec-event-social li.mec-event-social-icon a svg{display:unset}.mec-single-event .mec-event-social a.rss{background:#f29a1d}.mec-single-event .mec-event-social a.rss:hover{background:#cc7400}.mec-single-event .mec-event-social a.instagram{background:#457399}.mec-single-event .mec-event-social a.instagram:hover{background:#2e4d66}.mec-single-event .mec-event-social a.linkedin{background:#457399}.mec-single-event .mec-event-social a.linkedin:hover{background:#2e4d66}.mec-single-event .mec-event-social a.other-social{background:#ff5d5e}.mec-single-event .mec-event-social a.other-social:hover{background:#cc4949}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4,.mec-single-event .mec-frontbox-title,.mec-single-event .mec-wrap-checkout h4{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4:before,.mec-single-event .mec-frontbox-title:before,.mec-single-event .mec-wrap-checkout h4:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:47%!important;margin-right:12px;margin-top:5px;display:inline-block!important}@media (max-width:768px){.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:100%!important;margin-right:0;display:block!important}}.mec-single-event .mec-booking .mec-booking-dates-checkboxes{margin-bottom:22px}.lity-content .mec-events-meta-group-booking .mec-booking-dates-checkboxes label,.mec-single-event .mec-booking .mec-booking-dates-checkboxes label{margin-bottom:3px;line-height:1.1}.lity-content .mec-events-meta-group-booking .mec-booking-dates-checkboxes label{display:flex}.lity-content .mec-events-meta-group-booking .mec-booking-dates-checkboxes input[type=checkbox],.mec-booking input[type=checkbox],.mec-single-event .mec-events-meta-group-booking .mec-booking-dates-checkboxes input[type=checkbox]{width:17px;height:17px;min-height:unset;border-radius:3px;margin-top:-2px;margin-right:7px!important;margin-bottom:0!important}.lity-content .mec-events-meta-group-booking .mec-booking-dates-checkboxes input[type=checkbox]{margin-top:-1px}.mec-events-meta-group-booking-shortcode .mec-booking-dates-checkboxes label{display:flex}.mec-events-meta-group-booking-shortcode .mec-booking-dates-checkboxes input[type=checkbox]{margin-top:1px}.mec-event-meta i:before{font-size:20px;vertical-align:middle}.mec-event-meta .mec-single-event-additional-organizers i:before,.mec-event-meta .mec-single-event-organizer i:before{font-size:14px;vertical-align:baseline}#mec-wrap .mec-events-day-time-slot .mec-events-content{float:left;width:33%;padding:0 15px}#mec-wrap .mec-events-day-time-slot .mec-events-event-image{padding-left:0}#mec-events-content .mec-events-abbr{color:#8d8d8d;font-size:14px}.mec-single-event .mec-events-content{margin-bottom:30px}.mec-single-event .mec-organizer-url a{word-wrap:break-word}.mec-single-event #headline{margin:0 0 10px}.mec-single-event #headline h2{padding:0}.mec-single-event .mec-events-meta-group.mec-events-meta-group-gmap .mec-events-venue-map{margin-top:0;padding:8px;border:1px solid #e5e5e5;border-radius:7px}#mec-events-gmap-0{height:325px!important}.mec-events-list .mec-events-day-time-slot .mec-events-event-meta{width:33%;float:left;padding:40px;height:auto;margin:0}.mec-events-day-time-slot .mec-events-content.description.entry-summary{font-size:15px;font-weight:300;color:#8d8d8d}.mec-events-day-time-slot .type-mec_events h2{font-size:28px;padding-bottom:20px}.mec-events-day .mec-events-day-time-slot .type-mec_events{margin:0}.mec-events-day .mec-events-day-time-slot h5{background-color:#8d8d8d}.mec-single-event .mec-event-meta .mec-single-event-additional-organizers .mec-events-single-section-title,.mec-single-event .mec-event-meta .mec-single-event-organizer .mec-events-single-section-title,.mec-single-event .mec-events-meta-date h3{padding-left:0;margin:10px;display:inline-block}.mec-single-event .mec-events-meta-date h3{width:100%}.mec-single-event .mec-events-event-image{border:0}.mec-single-event .mec-events-venue-map{padding:0}.mec-event-cost,.mec-event-more-info,.mec-event-website,.mec-events-meta-date,.mec-single-event-additional-organizers,.mec-single-event-category,.mec-single-event-date,.mec-single-event-label,.mec-single-event-location,.mec-single-event-organizer,.mec-single-event-time{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative}.mec-single-event .mec-events-meta-date dd,.mec-single-event .mec-single-event-additional-organizers dd,.mec-single-event .mec-single-event-organizer dd{padding-left:0;margin-bottom:10px}.mec-single-event .mec-event-meta dd.mec-organizer-email a,.mec-single-event .mec-events-meta-date dd span,.mec-single-event .mec-single-event-additional-organizers dd span,.mec-single-event .mec-single-event-organizer dd span{display:block;padding-left:41px;color:#8d8d8d}.mec-single-event .mec-events-meta-date i,.mec-single-event .mec-single-event-additional-organizers i,.mec-single-event .mec-single-event-organizer i{margin-right:10px;margin-left:12px}.mec-events-meta-group.mec-events-meta-group-venue dl{margin-bottom:0}address.mec-events-address{line-height:19px;font-style:normal;font-size:12px}.mec-single-event .mec-event-content dt{margin-top:5px}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer{margin-bottom:15px;padding-bottom:5px;border-bottom:1px solid #e4e4e4}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer:last-child{margin-bottom:0;padding-bottom:0;border:none}.mec-event-category-color{width:9px;height:9px;display:inline-block;vertical-align:middle;margin:0 0 0 4px;border-radius:9px}.mec-event-schedule-content{border-left:4px solid #f0f0f0;padding-top:10px;margin-top:30px;margin-left:25px;margin-bottom:20px;color:#8a8a8a}.mec-event-schedule-content dl{padding-left:24px;font-size:12px;position:relative;margin-bottom:35px}.mec-event-schedule-content dl:before{content:"";display:block;position:absolute;left:0;top:4px;width:20px;height:0;border-top:4px solid #f0f0f0}.mec-event-schedule-content dl dt{margin:0 0 10px;line-height:1.16}.mec-event-schedule-content dl dt.mec-schedule-title{font-size:13px;color:#5a5a5a;font-weight:700}.mec-event-schedule-content dl dt.mec-schedule-description{font-weight:300}.mec-event-schedule-content .mec-schedule-speakers{background:#f7f7f7;padding:10px}.mec-wrap .mec-event-schedule-content h6{font-size:13px;color:#5a5a5a;font-weight:700;display:inline-block}.mec-wrap .mec-event-schedule-content a{font-weight:400;color:#5a5a5a;transition:all .1s ease}.single-mec-events .mec-speakers-details ul{padding:0;margin-left:0}.mec-single-event .mec-speakers-details ul li{list-style:none;background:#f7f7f7;padding:5px 5px 18px 5px;margin-top:14px}.mec-single-event .mec-speakers-details ul li a{-webkit-transition:.2s all ease;transition:.2s all ease}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a img{float:left;border-radius:50%;transition:.2s all ease;border:2px solid transparent;width:68px;height:68px}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a:hover img{border-color:#40d9f1}.mec-single-event .mec-speakers-details ul li .mec-speaker-name{display:inline-block;margin-top:10px;font-size:15px;line-height:1.8;text-transform:capitalize;font-weight:700;padding-left:8px}.mec-single-event .mec-speakers-details ul li .mec-speaker-job-title{display:block;font-size:12px;margin-top:-1px;padding-left:75px;color:#888}.mec-single-event-location img,.mec-single-event-organizer img{margin-bottom:10px;width:100%}.mec-qrcode-details{text-align:center}.mec-time-comment{font-size:11px}.mec-wrap .mec-attendees-list-details p{font-weight:300;margin:20px 0 0 0;color:#8d8d8d}.mec-wrap .mec-attendees-list-details li{list-style:none;display:block;margin-top:15px}.mec-wrap .mec-attendees-list-details li .mec-attendee-avatar{display:inline-block}.mec-wrap .mec-attendees-list-details li .mec-attendee-profile-link{display:inline-block;vertical-align:top;margin-left:10px}.mec-attendees-list-details ul{margin-bottom:0}.mec-attendees-list-details .mec-attendee-profile-link a{color:#8d8d8d;display:block}.mec-attendees-list-details .mec-attendee-profile-link span{display:inline-block;color:#000;vertical-align:middle;cursor:pointer}.mec-attendees-list-details span.mec-attendee-profile-ticket-number{border-radius:50px;width:20px;height:20px;font-size:12px;text-align:center;color:#fff;margin-right:4px;line-height:20px}#wrap .mec-attendees-list-details span.mec-attendee-profile-ticket-number{line-height:19px}.mec-attendees-list-details .mec-attendee-profile-link span i{vertical-align:middle;font-size:9px;font-weight:700;margin-left:5px}.mec-attendees-list-details .mec-attendees-toggle{border:1px solid #e6e6e6;background:#fafafa;padding:15px 15px 0;border-radius:3px;margin:12px 0 20px 52px;position:relative;font-size:13px;box-shadow:0 3px 1px 0 rgba(0,0,0,.02)}.mec-attendees-list-details .mec-attendees-toggle:after,.mec-attendees-list-details .mec-attendees-toggle:before{content:"";display:block;position:absolute;left:50px;width:0;height:0;border-style:solid;border-width:10px}.mec-attendees-list-details .mec-attendees-toggle:after{top:-20px;border-color:transparent transparent #fafafa transparent}.mec-attendees-list-details .mec-attendees-toggle:before{top:-21px;border-color:transparent transparent #e1e1e1 transparent}.mec-attendees-list-details .mec-attendees-toggle .mec-attendees-item{padding-bottom:15px}.mec-attendees-list-details .mec-attendee-avatar img{border-radius:3px}.mec-attendee-avatar-sec{float:left;width:50px;margin-right:12px}.mec-attendee-profile-name-sec,.mec-attendee-profile-ticket-sec{float:left;width:calc(100% - 62px);margin-top:3px}.mec-calendar{margin-bottom:20px;border:1px solid #e8e8e8;width:100%;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-calendar .mec-calendar-topsec{display:table;background:#fff}.mec-calendar .mec-calendar-topsec .mec-calendar-events-sec{display:none}.mec-calendar .mec-calendar-side{width:590px;display:table-cell;padding:40px;position:relative;text-align:center;box-shadow:0 1px 5px 6px rgba(0,0,0,.005) inset}.mec-calendar .mec-calendar-events-side{display:table-cell;height:100%;border-left:1px solid #efefef;padding:40px;width:100%}.mec-calendar .mec-calendar-events-side .mec-table-side-day{width:46px;height:46px;margin:0 auto 20px;position:relative;text-align:center;line-height:46px;border:1px solid #40d9f1;border-radius:50%;font-size:12px;font-weight:600;padding:0}.mec-calendar .mec-calendar-events-side .mec-table-side-title{text-align:center;font-size:11px;text-transform:uppercase;letter-spacing:3px;margin-bottom:14px}.mec-calendar .mec-calendar-header{position:relative;width:560px;margin-top:8px;margin-bottom:16px}.mec-calendar .mec-calendar-header h2{text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-calendar .mec-event-footer{width:auto;min-height:60px}.mec-calendar dl{display:table;margin:0;border:none;padding:0;table-layout:fixed}.mec-calendar dt{display:table-cell;transition:all .66s ease;color:#4d4d4d;background:#fff;border-radius:44px;font-size:14px;width:80px;height:80px;line-height:80px;text-align:center}.excerpt-wrap .mec-wrap dt,.nv-content-wrap .mec-wrap dt{display:table-cell}.mec-calendar .mec-calendar-table .mec-no-event{display:none}.mec-calendar .mec-calendar-table-head dt{font-weight:700;text-transform:uppercase;font-size:15px}.mec-calendar .mec-calendar-row dt:hover{background:#f4f4f4}.mec-calendar .mec-table-nullday{color:#cacaca}.mec-calendar.mec-box-calendar .mec-table-nullday:last-child{border-right:1px solid #eaeaea}.mec-calendar .mec-next-month:hover,.mec-calendar .mec-prev-month:hover{background:#f4f4f4}.mec-calendar .mec-selected-day,.mec-calendar .mec-selected-day:hover{background:#40d9f1;color:#fff}.mec-calendar .mec-selected-day a{color:#fff}.mec-calendar .mec-has-event{position:relative}.mec-calendar .mec-calendar-row dt.mec-has-event:hover{background:#40d9f1}.mec-calendar .mec-has-event a{cursor:pointer;display:block;width:100%;height:100%;border-radius:50%;color:#4d4d4d;transition:all .25s ease;text-decoration:none;box-shadow:none}.mec-calendar .mec-calendar-row dt.mec-has-event.mec-selected-day a,.mec-calendar .mec-calendar-row dt.mec-has-event:hover a{color:#fff}.mec-calendar .mec-has-event:after{background-color:#40d9f1;border-radius:50%;display:block;content:"";width:8px;height:8px;bottom:14px;left:50%;margin:-4px 0 0 -4px;position:absolute;transition:all .25s ease}.mec-calendar .mec-calendar-row dt.mec-has-event:hover:after{background-color:#fff}.mec-calendar .mec-has-event.mec-selected-day:after{display:none}.mec-calendar .mec-event-article{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease}.mec-calendar .mec-event-article:hover{background-color:#fafafa}.mec-calendar .mec-event-article .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-calendar .mec-event-article .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-calendar .mec-event-article .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-calendar .mec-event-article .mec-event-title a:hover{color:#40d9f1}.mec-calendar .mec-event-article .mec-event-image,.mec-calendar .mec-event-list-classic .mec-event-image img{width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-detail,.mec-calendar .mec-event-article .mec-localtime-details div{font-size:13px;line-height:1.3;color:#9a9a9a;margin-bottom:0}.mec-calendar .mec-calendar-side .mec-next-month,.mec-calendar .mec-calendar-side .mec-previous-month{cursor:pointer;position:absolute;top:0;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;color:#a9a9a9;font-size:12px;letter-spacing:1px;text-transform:uppercase;padding-left:10px;padding-right:10px;border:1px solid #efefef;border-top:none;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease}.mec-calendar .mec-calendar-side .mec-next-month i,.mec-calendar .mec-calendar-side .mec-previous-month i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-calendar .mec-calendar-side .mec-previous-month:hover{background-color:#f9f9f9;color:#40d9f1}.mec-calendar .mec-calendar-side .mec-previous-month{left:0;border-bottom-right-radius:6px;border-left:none}.mec-calendar .mec-calendar-side .mec-next-month{right:0;border-bottom-left-radius:6px;border-right:none}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-side{width:370px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-header{position:relative;width:350px;margin-top:30px;margin-bottom:20px;padding-top:20px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) dt{width:50px;height:50px;line-height:50px}.mec-wrap.mec-sm959 .mec-calendar.mec-event-calendar-classic dl dt{height:110px}}@media only screen and (max-width:1200px){.mec-calendar .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-calendar .mec-calendar-side{width:370px}.mec-calendar .mec-calendar-header{position:relative;width:350px;margin-top:30px}.mec-calendar dt{width:50px;height:50px;line-height:50px}}@media only screen and (max-width:767px){.mec-calendar .mec-calendar-header h2{font-size:18px}.mec-calendar .mec-calendar-topsec{width:100%}.mec-calendar .mec-calendar-side{width:100%;display:block;padding:30px}.mec-calendar .mec-calendar-header{width:auto}.mec-calendar .mec-calendar-events-side{width:100%;display:block;height:100%;border-left:none;border-top:1px solid #efefef;padding:20px}.mec-calendar dl{width:100%}.mec-calendar dt{width:14%;height:60px;line-height:60px;border-radius:50px}}@media only screen and (max-width:479px){.mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-calendar .mec-calendar-header h2{font-size:16px;margin-top:33px}.mec-calendar dt{height:38px;line-height:38px}.mec-calendar .mec-event-list-classic .mec-event-detail,.mec-calendar .mec-event-list-classic .mec-event-title{font-size:12px}.mec-calendar .mec-event-list-classic .mec-event-time{font-size:10px}}.mec-box-calendar.mec-calendar .mec-has-event a,.mec-box-calendar.mec-calendar dt{border-radius:0}.mec-box-calendar.mec-calendar .mec-calendar-header{margin-top:2px;margin-bottom:30px}.mec-box-calendar.mec-calendar dt{border-bottom:1px solid #eaeaea;border-left:1px solid #eaeaea}.mec-box-calendar.mec-calendar dl dt:last-child{border-right:1px solid #eaeaea}.mec-box-calendar.mec-calendar .mec-calendar-table-head dt{border-top:1px solid #eaeaea;background-color:#f8f8f8}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{background-color:#f4f4f4}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{border-radius:2px;top:40px;border:1px solid #eee;height:30px;line-height:30px;z-index:1}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:40px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:40px}.mec-box-calendar.mec-calendar .mec-calendar-side{box-shadow:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side{border:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side .mec-table-side-day{border-radius:2px}.mec-box-calendar.mec-calendar h4.mec-month-label{position:relative;width:560px;margin-top:2px;margin-bottom:30px;text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-widget .mec-box-calendar.mec-calendar h4.mec-month-label{width:100%;margin-top:8px;font-size:13px}@media only screen and (max-width:1200px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:42px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:42px}.mec-calendar .mec-calendar-header h2{font-size:17px;margin-top:7px}}@media only screen and (max-width:767px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:28px;font-size:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:30px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:30px}.mec-calendar .mec-calendar-header h2{font-size:15px}}@media only screen and (max-width:479px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:16px;font-size:0px;padding:4px 0;text-align:center;min-width:33px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:10px}.mec-box-calendar.mec-calendar .mec-calendar-header h2{font-size:12px;margin-top:15px}.mec-box-calendar.mec-calendar .mec-event-image{margin-right:12px}}.mec-calendar.mec-event-calendar-classic,.mec-calendar.mec-event-calendar-classic .mec-calendar-side{border:none;padding:0;width:100%;height:100%;box-shadow:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-calendar.mec-event-calendar-classic .mec-calendar-header,.mec-calendar.mec-event-calendar-classic dl{width:100%}.mec-calendar.mec-event-calendar-classic dl dt{width:15%;height:136px;line-height:1.2;text-align:left;padding:5px 7px;position:relative}.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{height:30px!important}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{top:0}.mec-calendar.mec-event-calendar-classic .mec-has-event:after{bottom:auto;top:24px;left:7px;margin:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{left:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month{right:0}.mec-next-month a,.mec-previous-month a{pointer-events:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{text-align:left;background:#fafafa;border:1px solid #eaeaea;border-top:none;padding:10px 20px}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{display:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-event-article:hover{background-color:#fcfcfc}.mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover{color:#40d9f1;font-weight:700;background:#fafafa;border-bottom:none}.mec-wrap .mec-calendar.mec-event-calendar-classic:not(.mec-event-container-simple) .mec-selected-day:hover{color:#fff!important}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day,.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{display:inline-block;margin:0;margin-bottom:15px;font-weight:700}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day{margin-left:4px}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event a{color:#4d4d4d}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event:not(.mec-selected-day):hover a{color:#fff}@media only screen and (max-width:1200px){.mec-calendar.mec-event-calendar-classic dl dt{height:100px}}@media only screen and (max-width:767px){.mec-calendar.mec-event-calendar-classic dl dt{height:40px}}@media only screen and (max-width:479px){.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{padding:10px}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-header h2{font-size:13px;margin-top:8px}}.mec-calendar .mec-event-article.mec-single-event-novel{padding:4px 8px;min-height:25px;margin:0 -4px;border-radius:0}.mec-calendar .mec-event-article.mec-single-event-novel h4{margin:0;font-size:10px;line-height:18px}.mec-calendar.mec-event-container-novel dl dt{padding:3px}.mec-calendar.mec-event-calendar-classic .mec-calendar-novel-selected-day{display:inline-block;padding:4px;margin-left:1px}.mec-wrap .mec-calendar.mec-event-container-novel .mec-selected-day:hover{color:#fff!important}.mec-calendar.mec-event-calendar-classic .mec-selected-day .mec-calendar-novel-selected-day{color:#fff}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-selected-day,.mec-calendar.mec-event-calendar-classic.mec-event-container-novel dt.mec-selected-day:hover{border-bottom:1px solid #eaeaea}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-calendar-side .mec-calendar-table{min-height:auto}.mec-single-event-novel.light h4{color:#000!important}.mec-single-event-novel.dark h4{color:#fff!important}@media only screen and (max-width:768px){.mec-calendar .mec-event-article.mec-single-event-novel{padding:0;min-height:5px}.mec-calendar .mec-event-article.mec-single-event-novel h4{display:block;font-size:9px}}.mec-event-container-simple .event-single-content-simple{display:none}.mec-event-calendar-classic.mec-event-container-simple .mec-calendar-side .mec-calendar-table{min-height:unset}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:13px;font-weight:500;margin:0;color:#444}.mec-event-container-simple .mec-monthly-tooltip h4:hover{text-decoration:underline;color:#111}.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple{border-bottom:1px dashed #e3e3e3;padding:10px 2px;display:block}.mec-calendar.mec-event-container-simple dl dt.mec-calendar-day{font-size:30px;color:#000}.mec-calendar.mec-event-container-simple .mec-calendar-row dt:hover{background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-row dt,.mec-calendar.mec-event-container-simple .mec-calendar-row dt:last-child,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt:last-child{border-width:2px}.mec-calendar.mec-event-container-simple dl dt.mec-selected-day,.mec-calendar.mec-event-container-simple dl dt.mec-selected-day:hover{border-bottom:2px solid #40d9f1;background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt{line-height:36px}@media (max-width:768px){.mec-calendar.mec-event-container-simple{overflow-x:scroll}.mec-calendar.mec-event-container-simple .mec-calendar-side{min-width:100%}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:12px}.mec-event-container-simple .mec-calendar-side{min-width:600px!important;overflow-x:scroll}}.mec-wrap.colorskin-custom .mec-calendar.mec-event-container-simple .mec-selected-day:hover{background:#f4f4f4}.mec-event-container-simple .mec-calendar-day .mec-monthly-tooltip.event-single-link-simple:last-of-type{border:none}.mec-tooltip-event-title{font-size:16px;font-weight:700;color:#000;margin-bottom:2px}.mec-tooltip-event-time,.tooltipster-sidetip.tooltipster-shadow:not(.uael-tooltipster-active) .tooltipster-content .mec-price-details{font-size:12px;color:#888;margin-bottom:8px;margin-top:5px}.tooltipster-sidetip.tooltipster-shadow:not(.uael-tooltipster-active) .tooltipster-content{padding:17px}.mec-tooltip-event-content{clear:both}.mec-tooltip-event-featured{float:left;margin-right:13px;margin-bottom:1px}.mec-tooltip-event-featured img{max-width:120px}.mec-tooltip-event-desc{font-size:14px;color:#444;line-height:18px}.mec-tooltip-event-desc p{font-size:13px;line-height:1.4;margin-bottom:10px}.tooltipster-sidetip.tooltipster-shadow:not(.uael-tooltipster-active) .tooltipster-box{border-radius:3px!important;border:1px solid #e2e3e4!important;background:#fff!important;box-shadow:0 -1px 30px -2px rgba(0,0,0,.15)!important}.tooltipster-box .mec-tooltip-event-desc{margin-bottom:12px}.tooltipster-sidetip:not(.uael-tooltipster-active) .tooltipster-arrow{overflow:visible!important}.tooltipster-sidetip.tooltipster-shadow:not(.uael-tooltipster-active) .tooltipster-arrow-border{border-width:12px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right:not(.uael-tooltipster-active) .tooltipster-arrow-border{border-right-color:#e2e3e4!important}.tooltipster-sidetip:not(.uael-tooltipster-active) .tooltipster-arrow-border{left:-12px!important;z-index:9999999999!important}.tooltipster-sidetip.tooltipster-shadow:not(.uael-tooltipster-active) .tooltipster-arrow-background{display:block!important}.tooltipster-sidetip:not(.uael-tooltipster-active) .tooltipster-arrow-background{border-width:11px!important;z-index:99999999999!important}.tooltipster-sidetip.tooltipster-right:not(.uael-tooltipster-active) .tooltipster-arrow-background{left:-9px!important;top:1px!important;border-right-color:#fff!important}.tooltipster-sidetip.tooltipster-top:not(.uael-tooltipster-active) .tooltipster-arrow-background{border-top-color:#fff!important;left:0!important;top:-1px!important}.tooltipster-sidetip.tooltipster-top:not(.uael-tooltipster-active) .tooltipster-arrow-border{left:-1px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-top:not(.uael-tooltipster-active) .tooltipster-arrow-border{border-top-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom:not(.uael-tooltipster-active) .tooltipster-arrow-border{left:-1px!important;top:-11px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom:not(.uael-tooltipster-active) .tooltipster-arrow-border{border-bottom-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-bottom:not(.uael-tooltipster-active) .tooltipster-arrow-background{top:-9px!important;border-bottom-color:#fff!important}.tooltipster-sidetip.tooltipster-left:not(.uael-tooltipster-active) .tooltipster-arrow-background{border-left-color:#fff!important;left:-2px!important;top:0!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left:not(.uael-tooltipster-active) .tooltipster-arrow-border{border-left-color:#e2e3e4!important;left:-1px!important;top:-1px!important}@media (max-width:780px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{word-break:break-all;font-size:13px}}@media (max-width:320px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{font-size:10px}}.mec-calendar.mec-calendar-daily .mec-calendar-day-events .mec-event-article{padding-left:15px;padding-right:15px;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month{text-align:center;background-color:#fff;border-bottom:2px solid #f4f4f4;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{color:#444;font-size:18px;line-height:1.2;padding:15px 0 11px;margin:0;font-weight:700;letter-spacing:1px;text-transform:uppercase;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-top{text-align:center;padding:10px 0;position:relative;background-color:#fafafa}.mec-calendar.mec-calendar-daily .mec-next-month,.mec-calendar.mec-calendar-daily .mec-previous-month{position:absolute;top:50%;left:50%;margin-top:-25px;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;border:1px solid #e2e2e2;border-radius:50px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month i,.mec-calendar.mec-calendar-daily .mec-previous-month i{font-size:14px;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-calendar.mec-calendar-daily .mec-previous-month:hover{border-color:#d0d0d0;color:#444;box-shadow:0 2px 5px 0 rgba(0,0,0,.075)}.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-150px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:100px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month{min-height:28px;height:28px;line-height:28px;width:28px;margin-top:-14px;border-radius:3px}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2,.mec-calendar.mec-calendar-daily .mec-calendar-d-top h3{margin-top:9px;color:#b9b9b9;font-size:30px;font-weight:100;text-transform:uppercase;margin-bottom:12px;line-height:1}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2{font-size:81px;color:#444;margin-bottom:10px;line-height:1.1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table{overflow:hidden;background:#fff;min-height:60px;border-top:1px solid #e6e6e6;border-bottom:2px solid #f3f3f3;padding:0 50px;position:relative}@media only screen and (min-width:479px){.mec-calendar.mec-calendar-daily .mec-calendar-d-table{padding:0 55px}}.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl{width:1310px;display:block}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{display:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl.mec-weekly-view-week-active{display:flex}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt{display:block;background:#fff;width:42px;height:60px;line-height:60px;text-align:center;float:left;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6;border-radius:0}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day:hover,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt:hover{background:#fafafa;box-shadow:0 2px 5px 0 rgba(0,0,0,.065) inset;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day{cursor:default;background:#fff;color:#c1c1c1;line-height:59px;text-align:center;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event{cursor:pointer;font-weight:700;color:#4a4a4a}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-daily-view-day-active,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt.mec-table-d-current{font-size:18px;font-weight:700;background:#fafafa;color:#40d9f1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev{float:none;font-size:14px;width:55px;position:absolute;top:0;left:0;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next{left:auto;right:0;border-left:1px solid #e6e6e6;border-right:none}.mec-calendar.mec-calendar-daily .mec-today-container .mec-today-count{font-size:12px;color:#888;text-align:center}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}}.widget .mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}.widget .mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.widget .mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-util-hidden{display:none}.mec-daily-view-date-events,.mec-weekly-view-date-events{list-style:none;margin:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table{padding:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{width:calc(100% - 1px)}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt{width:100%;height:70px;line-height:normal;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover{background:#fff;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:last-child{border-right:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:12px;font-weight:700;text-transform:uppercase;display:block;margin:15px 0 6px}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-prev{display:none}ul.mec-weekly-view-dates-events,ul.mec-weekly-view-dates-events li{padding:0;margin:0;line-height:initial}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-previous-month{margin-left:0;left:12px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-next-month{margin-left:0;left:auto;right:12px}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}}.widget .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}.mec-week-events-container .mec-weekly-view-dates-events li.mec-no-event-found{list-style:none!important}li.mec-no-event-found .mec-event-title{text-align:center}.mec-widget .mec-calendar{max-width:100%}.mec-widget .mec-calendar dl dt,.mec-wrap.mec-sm959.mec-widget .mec-calendar.mec-event-calendar-classic dl dt{height:40px}.mec-widget .mec-calendar .mec-calendar-events-sec{padding:10px}.mec-widget .mec-calendar .mec-calendar-header h2{font-size:13px;margin-top:8px}.mec-widget .mec-calendar .mec-event-list-classic .mec-event-image{margin-right:12px}.mec-widget .mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-widget .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{font-size:14px}.mec-widget .mec-calendar .mec-event-article .mec-event-image{margin-right:11px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-header{margin-bottom:20px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{font-size:0px;padding:4px 0;text-align:center;min-width:33px}.mec-widget .mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-widget .mec-event-list-classic{margin-bottom:8px;padding:8px 0}.mec-widget .mec-event-list-classic .mec-event-article{margin-bottom:0;padding:10px 0;position:relative;min-height:86px;padding-left:80px}.mec-widget .mec-event-list-classic .mec-event-date{font-size:10px;line-height:14px;text-transform:uppercase}.mec-widget .mec-event-list-classic .mec-event-title{font-size:13px}.mec-widget .mec-event-list-classic .mec-event-detail{font-size:11px}.mec-widget .mec-event-list-classic .mec-event-image{width:68px;position:absolute;left:0}.mec-event-list-classic .mec-event-image img{width:100%}.mec-widget .mec-event-list-classic .mec-event-detail{overflow:visible}.event-color{width:14px;display:inline-block;height:14px;margin-left:5px;border-radius:50%}.mec-map-lightbox-wp{width:580px;padding:15px 15px 0;background-color:#fff}.mec-map-view-event-detail.mec-event-detail{width:580px;background-color:#e9e9e9;padding:8px 15px}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-article{padding:0 0 15px;margin:0}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-image{width:70px;margin-right:15px}.mec-marker-infowindow-wp{padding:10px}.mec-marker-infowindow-wp .mec-marker-infowindow-count{width:60px;height:60px;display:block;text-align:center;line-height:60px;border:1px solid #40d9f1;border-radius:50%;font-size:32px;color:#40d9f1;float:left;margin-right:11px}.mec-marker-infowindow-wp .mec-marker-infowindow-content{overflow:hidden;padding-top:6px}.mec-marker-infowindow-wp .mec-marker-infowindow-content span{display:block;color:#222}.mec-marker-infowindow-wp .mec-marker-infowindow-content span:first-child{font-size:15px;font-weight:700}.mec-marker-wrap{display:inline-block;width:35px;height:35px;margin:15px 0 0 4px;border-radius:50% 50% 50% 0;background:#00cae9;animation-name:mec-map-bounce;animation-fill-mode:both;animation-duration:1s;border:3px solid #fff;cursor:pointer}.mec-marker-wrap .mec-marker{margin-top:5px;display:block;-webkit-transform:rotate(45deg);transform:rotate(45deg);text-align:center;color:#fff;font-size:17px}.mec-marker-wrap .mec-marker-pulse-wrap{-webkit-transform:rotate(45deg);transform:rotate(45deg);display:inline-block;margin-left:-11px;margin-top:0}.mec-marker-wrap .mec-marker-pulse{display:inline-block;background:#c5c5c5;border-radius:50%;height:14px;width:14px;-webkit-transform:rotateX(55deg);transform:rotateX(55deg);z-index:-2}.mec-marker-wrap .mec-marker-pulse:after{content:"";border-radius:50%;height:40px;width:40px;position:absolute;margin:-13px 0 0 -13px;animation:pulsate 1s ease-out;animation-iteration-count:infinite;opacity:0;box-shadow:0 0 1px 2px #00cae9;animation-delay:1.1s}@keyframes pulsate{0%{transform:scale(.1,.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2,1.2);opacity:0}}@keyframes mec-map-bounce{0%{opacity:0;transform:translateY(-2000px) rotate(-45deg)}60%{opacity:1;transform:translateY(30px) rotate(-45deg)}80%{transform:translateY(-10px) rotate(-45deg)}100%{transform:translateY(0) rotate(-45deg)}}.mec-skin-grid-container .mec-skin-map-container,.mec-skin-list-container .mec-skin-map-container{margin-bottom:20px}.mec-single-event{margin-top:10px}.mec-single-event .mec-events-meta-group-countdown{color:#c9c9c9;text-align:center;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-events-meta-group-countdown .countdown-w{text-align:center;font-size:36px;margin:0 auto;padding:40px 0 0;position:relative;display:table;table-layout:fixed}.mec-events-meta-group-countdown .countdown-w .icon-w{font-size:24px}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:15px;font-weight:300;letter-spacing:1px;text-transform:uppercase;position:relative}.mec-events-meta-group-countdown .countdown-w .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px;width:190px;font-size:72px;transition:all .3s ease-in-out;line-height:1.2}.mec-events-meta-group-countdown .countdown-w .block-w.done-w{border:0 none}.mec-events-meta-group-countdown .countdown-w .block-w li{font-size:50px}.mec-events-meta-group-countdown .countdown-w span{padding:24px 0 20px}.mec-events-meta-group-countdown .countdown-w .div-d{display:none}.mec-events-meta-group-countdown .countdown-w .countdown-message{display:none}.mec-events-meta-group-countdown .countdown-w .block-w i{display:none}#countdown{list-style:none;margin-bottom:0;margin-top:0;margin-left:0;padding-left:0}.mec-events-meta-group-countdown .mec-end-counts h3{display:inherit;text-align:center;font-size:16px;right:50%}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:23px}@media (min-width:481px) and (max-width:768px){.mec-events-meta-group-countdown .countdown-w{padding:0}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:12px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:34px}}@media (min-width:320px) and (max-width:480px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:10px}.mec-events-meta-group-countdown .countdown-w span{font-size:28px}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:16px}}@media (max-width:320px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:9px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:22px}}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px;font-size:13px}.info-msg{color:#059;background-color:#bef}.mec-success{color:#0dbf52;background-color:#cef7ce}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c!important;background-color:#ffbaba}.mec-fes-form,.mec-fes-list{background:#f8feff;padding:30px 3%;color:#798f96}.mec-fes-list .mec-fes-list-top-actions,.mec-fes-list ul{margin:0 auto 15px;max-width:960px;list-style:none;padding-left:40px}.mec-fes-form-cntt .dashicons-editor-help{display:none}.mec-fes-list ul li *{text-decoration:none!important}.mec-fes-list ul li{padding:20px 15px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal}.mec-fes-list ul li a{box-shadow:none;color:#181818}.mec-fes-list ul li a:hover{color:#40d9f1}.mec-fes-list ul li .mec-event-title{font-size:17px;font-weight:600;width:calc(100% - 250px);display:inline-block}@media (max-width:680px){.mec-fes-list ul li .mec-event-title{width:100%;font-size:13px;margin:0 0 20px 0;display:block}.mec-fes-list ul li{padding:10px 12px 40px}}@media (max-width:480px){.mec-fes-list .mec-fes-list-top-actions,.mec-fes-list ul{padding-left:0}}.mec-fes-form .mec-required{color:#ff3c3c}.mec-fes-list .mec-event-status{color:#fff!important;border-color:transparent!important}.mec-fes-form .mec-book-confirmed,.mec-fes-list .mec-book-confirmed{background:#50d477!important}.mec-fes-form .mec-book-pending,.mec-fes-list .mec-book-pending{background:#fcbe69!important}.mec-fes-form .mec-book-rejected,.mec-fes-list .mec-book-rejected{background:#fe686a!important}.mec-fes-form .mec-book-other,.mec-fes-list .mec-book-other{background:#40d9f1!important}.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view{font-size:11px;padding:0;border:0;background:#f7f8f9;float:right;margin-left:5px;border-radius:2px;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export a,.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view a{padding:4px 8px;display:inline-block;border:1px solid #e7e8e9;border-radius:2px;color:#789;position:relative}@media (max-width:600px){.mec-fes-list ul li .mec-fes-event-export a,.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view a{font-size:10px}}.mec-fes-list ul li .mec-fes-event-remove:hover{cursor:pointer;background:#f96f8a;border-color:#f96f8a;color:#fff}.mec-fes-list ul li .mec-fes-event-export a:hover,.mec-fes-list ul li .mec-fes-event-view a:hover{background:#40d9f1;color:#fff;border-color:#40d9f1}.mec-fes-form-top-actions a,.mec-fes-list-top-actions a,.single-mec-events .pmpro_content_message a,.single-mec-events .pmpro_content_message a:link{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-bottom:20px!important;margin-right:10px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;text-decoration:unset}.mec-fes-form-top-actions a:hover,.mec-fes-list-top-actions a:hover,.single-mec-events .pmpro_content_message a:hover,.single-mec-events .pmpro_content_message a:hover:link{background:#222;color:#fff}.mec-fes-list-top-actions a{font-weight:600;text-transform:capitalize}.mec-fes-form-top-actions a:before{content:"";border:solid #fff;border-width:0 2px 2px 0;display:inline-block;padding:6px;margin-right:5px;vertical-align:sub;transform:rotate(135deg);-webkit-transform:rotate(135deg)}.mec-fes-form .mec-form-row,.mec-fes-list .mec-form-row{margin-bottom:10px;clear:both}.mec-fes-form label{font-size:13px;display:block;color:#798f96;font-weight:400;padding:0 0 4px 2px}.mec-fes-form input+label{padding-top:8px;padding-left:3px;margin:0;display:inline-block;vertical-align:top}#wrap .mec-fes-form input+label{padding-top:0}.mec-fes-form .post-status{float:right!important;margin:0 5px;color:#fff;padding:0 10px;border-radius:12px;font-style:italic;font-size:18px}.mec-fes-form #mec-event-data input[type=date],.mec-fes-form input[type=email],.mec-fes-form input[type=number],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form input[type=url],.mec-fes-form select,.mec-fes-form textarea{min-width:inherit;width:auto;display:inline;min-height:30px;font-size:13px;padding:10px;margin-bottom:20px;clear:both;background:#fff;border:1px solid #cfeff5;box-shadow:0 2px 5px rgba(207,239,245,.38) inset;border-radius:3px;height:40px;max-width:280px;color:#798f96;font-family:inherit}#mec_fes_form input[type=date]::-webkit-calendar-picker-indicator,.lity-content #mec_fes_form input[type=date]::-webkit-calendar-picker-indicator,.lity-content .mec-events-meta-group-booking input[type=date]::-webkit-calendar-picker-indicator,.mec-single-event .mec-events-meta-group-booking input[type=date]::-webkit-calendar-picker-indicator{background:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ1IDc5LjE2MzQ5OSwgMjAxOC8wOC8xMy0xNjo0MDoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjA0QjQ2N0QwQjQ4MzExRUE4RDdFREZDRTUxMUVERTM5IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjA0QjQ2N0QxQjQ4MzExRUE4RDdFREZDRTUxMUVERTM5Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MDRCNDY3Q0VCNDgzMTFFQThEN0VERkNFNTExRURFMzkiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MDRCNDY3Q0ZCNDgzMTFFQThEN0VERkNFNTExRURFMzkiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6WW71PAAAGIklEQVR42qRXS28bVRQ+586Mx3ZC1DSpVFojRU2CqMIGiSKxAVoUduzoDjYIlhU/Av4AYsdjRXfkD0Cjom6QqIqEqEhRo1aRkkZpkpY6j7GduQ++c2dsj1+BlInGztxvzj3nfudpPlM/otc2W2QjJmU0rZ0uUytUpBxNnN9p/FYhctF0+XUi2nPGkX7WJOfwxNRzqXxtbfI4eUvm7xY1o4iiI0d/vFiisL2BgTAz0yvbCRnLhP0uNEtqrgUseZRcwPPvJewaldSA8o48vo+Tj0U+CnrkOgZwvkEzEmGm1PF9fzK5Y3U/YlllsjRUv19zXl7571HyAjooc/kmYerpcmPO0Mfa0SyxEtji44ynOjPuayjecd7M46/MQOdGyIs9ThnzMLD0XRrwIdeetmoLm41fWiG95Ar792tydLLrOPkAlpW027hbG3+T37lf/5EtvYcXUuhfBjWp9wHRBO63c5lbEkQj2B92uaHy4l2EAQ66GFgbmiD4id/9q661ooAtf8rsvmUEilAHEqcgtJvvNq3YPTkJA8PksT9ZFxD8+4my9pvAOqOMxIMoJHfPZoJkJNiYat3duOac6hxt1N3GR8lnt0O623s+c2CVZEGaZ8Oks1mElvxu7hGYaQjpHLpH3q/YFQE7Oh5Y6gFTaHhAXlasxmoWpZO5L9Ow4DTv+UBZBAkWNO+CqhkbSOzaXWWyzY+n3WcACdVscnklz5CHYsmv1L/RyUJ/cs7zdT3Ey8pTgw/QgNNuS4XjNMvffwvBNmwDH+pdeZ3J+1qDdW15vS0iBhjZWzF9ge8HWl7zNLluYhP/9/jvFANXyL+ufF4jZvOCZsK8isp77+sixf10n7QQjJT39bBtjzdA5chtLG61n7kgk6UvDy29z4HL4c/ifkN0hYV+cA3Bc7stKAfossgSSF06+3HOu8QovE8eThDlv4pu1TbUOpqySDNUKMSDQRIo6QgVRHbFcID1mCITUGgNKLI9uBbcCC59xUi+DsiHBq0XOLb3utqOUYV+LglH9XJASRAsRNqt4xHVj59Exqw3AlrYi0PaiwNqBKoX12Y9iQSP/GkD4xZC0yt/GPFCvZzhUBoMtmPftRwMEEtpupy2auzadLraXtlNoXLhKQYLbjrWRx0cXNf24wxPSmWw5aZPNXSNOi5ytXqZpjTwSqs3PsJi0I61LG29EFG9GtyaeqgvxU17TrAkDjbvnq/eKcTYrbcemi5eHoI/OLgUt7r4n+cqd04llmZ3mjBSDQ4kYtERLLz4OKGt0xGKA9+RgiSGSRV7+UlCVvka72lEvHRx04vLGW2f/PzTBk3VtddRrGlhMXVaIdME5sLJ3ZQOTPQBNqj58uzcxsXtZEkqmQ7IB9ihLeA2x6FQqyG4cRuvbh8uNZSigzBCALhBBtrjkwjjQItQ+kPXWY6eBuEi/lmOlC8kvTh38ZLH3QC+y+GiIl4OqbeZ9RggQZgcVIXe1ep48jPkz/oGw7x1yoytIq1o59AH1Wp1rNHBSXA9tip87zYyvFzpx8dXLVTvqySvhUMNsN6+1ERrrNQVQs57H4K6cR35GrapffICb16RpO7glOHrrQyvjHXxQHB0/j1ugV0LpcFwAzS4n6hiZoIvEp2znwcSigfGJhxpMmseLc0dvFjcvRuLvdEdNyl2+0DOALwE863TM/jnJqhfQa6v4AfJzUNOZ/aVlhqIUpoO4PuU4XFsqFrSM866m9hxBXSvWPx/wHpGqA96Vfa5AH9HnMjYNI96dbkwaVzcCw/nAK+xHzp4Hp89eD04nENzX6v4cYrnrVWXXQF/Fh7MQfWasmogCNsmaT+qwD0g4gYsuYqnWlboeKMUumUr86LycxdwdRUb+zQTvAzcgL0jLXFkbkQUX5UKyFTE2bvZD0a5B8SAUu6dPf+7AInssja2VPSZRud2Ni/NKse5M2VQqkO4BxSzZLmV8Wwpa8S9OHsK3X6+Lc7F/JidOwvkc7z3FbIgzd7smy1c35TEg7NGrg6Ucs88UsCliOLHH1+Td8HYFl++W//QxfT9iSee/3lJWy5X6aMwtK3rTVWJUU4/g4GzdLLp73ku8cEDxNmXUZhc/0eAAQAVgX0RHvvILQAAAABJRU5ErkJggg==");background-position:center;background-size:cover;width:10px;height:12px;display:block}.mec-fes-form input{background:#fff!important;border-radius:3px!important}.mec-fes-form textarea{height:80px}.mec-fes-form input::-webkit-input-placeholder{color:#798f96}.mec-fes-form input::-moz-placeholder{color:#798f96}.mec-fes-form input:-ms-input-placeholder{color:#798f96}.mec-fes-form input:-moz-placeholder{color:#798f96}#mec-excerpt .mec-form-row .widefat{max-width:100%}#mec_more_info_target{width:100%}@media only screen and (min-width:961px){.mec-fes-form #mec-event-data input[type=date],.mec-fes-form #mec-event-data select,.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form input[type=url],.mec-fes-form textarea{width:100%;display:inline-block}}@media only screen and (max-width:768px){.mec-fes-form #mec-event-data input[type=date],.mec-fes-form #mec-event-data select,.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form input[type=url],.mec-fes-form textarea{width:100%}}.mec-fes-form input[type=text]#mec_fes_title{padding:5px 10px;min-height:32px;height:50px;background:#fff!important;max-width:100%;font-size:19px;font-weight:400}.mec-fes-form input[type=checkbox],.mec-fes-form input[type=radio]{display:inline!important;float:left;margin:5px 5px 0 0}.mec-fes-form input[type=email]:focus,.mec-fes-form input[type=number]:focus,.mec-fes-form input[type=password]:focus,.mec-fes-form input[type=tel]:focus,.mec-fes-form input[type=text]:focus,.mec-fes-form input[type=url]:focus,.mec-fes-form select:focus,.mec-fes-form textarea:focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-form-row .mec-color{cursor:pointer}.mec-form-row.mec-available-color-row span{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-form-row.mec-available-color-row span:first-of-type{margin-left:0}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline}.mec-fes-form-cntt .dashicons-editor-help{display:block}.mec-fes-form .mec-tooltip:hover:after,.mec-fes-form .mec-tooltip:hover:before{display:none}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline-flex;bottom:7px}.mec-fes-form .mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-fes-form .mec-tooltip .box p,.mec-fes-form .mec-tooltip .box p{color:#fff!important;font-size:14px;line-height:1.3;margin:0}.mec-fes-form .mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-fes-form .mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-fes-form .mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:20px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-fes-form .mec-tooltip .box p a,.mec-fes-form .mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-fes-form .mec-tooltip .box a:hover{color:#f90}.mec-fes-form .mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-fes-form .mec-tooltip .box:before{display:block;content:""!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-fes-form .mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-fes-form .mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-fes-form .mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-fes-form .mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-fes-form .mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-fes-form .mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}.mec-fes-form .mec-tooltip{display:inline-block;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-fes-form .mec-tooltip:last-child{margin-right:0}.mec-fes-form .mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-fes-form .mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-fes-form .mec-tooltip .dashicons-before:before{font-size:24px;color:#008aff;line-height:37px}.mec-fes-form .mec-tooltip a:focus{box-shadow:none}.mec-form-row .bootstrap_unvalid{display:block;border:2px solid red;position:relative;display:inline-block;border-bottom:1px dotted #000}.mec-fes-form .mec-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.mec-fes-form .mec-tooltip .content p a{display:none}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt,.mec-fes-form .mec-fes-form-sdbr{width:68%;float:left;padding-right:20px}.mec-fes-form .mec-fes-form-sdbr{width:32%;padding-right:0;padding-left:20px}.mec-fes-submit-mobile{display:none}}.mec-fes-form .mec-meta-box-fields{padding:0 20px 20px;border:1px solid #cfeff5;margin-bottom:20px!important;box-shadow:0 2px 6px -3px #cfeff5;border-radius:3px;background:#fff}.mec-fes-form .mec-meta-box-fields h4{margin:0 -20px;font-size:15px;font-weight:600;letter-spacing:0;color:#40d9f1;text-transform:capitalize;padding:15px 20px;background:#ecfcff;margin-bottom:20px}.mec-fes-sub-button{width:100%}.mec-available-color-row span.color-selected{border:3px solid #fff;box-sizing:content-box;box-shadow:0 0 0 2px #40d9f1,0 2px 8px -1px #40d9f1}.mec-fes-loading:before{content:url("../img/ajax-loader.gif");background:0 0;border-style:none;display:block;margin-left:47%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:190px;margin-right:1.4%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-1,.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-2{width:120px;margin-right:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].widefat{width:100%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row{border-bottom:none;padding-bottom:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-6{width:39%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button{margin-right:0;padding:9px 26px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button.mec-add-hourly-schedule-button{font-size:12px;height:30px;line-height:25px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row .description{display:inline-block;border-left:1px dashed #bfcacc;margin-left:12px;line-height:28px;padding-left:12px;margin-top:5px;font-style:italic}@media only screen and (max-width:768px){.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:100%!important}}#mec_fes_form_message{max-width:838px;margin:10px auto;display:block!important;text-align:center}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list .mec-booking-attendees-tooltip{position:relative}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list strong,.post-type-mec-books .attendees strong{line-height:26px;padding-left:26px}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list .mec-booking-attendees-tooltip:before{position:absolute;content:"\e001";font-family:simple-line-icons;margin:12px 0;top:-30px;left:0;font-size:18px;line-height:12px;color:#40d9f1;padding:0 60px 5px 0}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list .mec-booking-attendees-tooltip ul{position:absolute;min-width:300px;max-width:600px;display:inline-block;left:60px;top:50%;transform:translateY(-50%);background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;z-index:9999999;box-sizing:border-box;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s;padding:23px 20px 20px 20px;border-radius:8px;margin-top:-13px}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list .mec-booking-attendees-tooltip ul:before{display:block;content:""!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list .mec-booking-attendees-tooltip:hover ul{visibility:visible;opacity:1}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list .mec-booking-attendees-tooltip ul li{list-style:none}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list .mec-booking-attendees-tooltip ul a{color:#40d9f1;margin-bottom:14px;margin-left:0;font-weight:400;font-size:14px;letter-spacing:.5px;position:relative;text-decoration:none;display:block;width:max-content}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list .mec-booking-attendees-tooltip ul li:last-child a{margin-bottom:0}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list{margin:0}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list .w-clearfix:first-child{background:#fff;border-bottom:1px solid #cfeff5}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list .w-clearfix:first-child div span{line-height:1;font-weight:600;font-size:13px}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list .w-clearfix{display:flex;background:#f8feff;padding:10px;text-align:left}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list .w-clearfix .w-col-xs-3{width:25%;word-wrap:break-word}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list .w-clearfix .w-col-xs-3:first-child{width:45%}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list .w-clearfix .w-col-xs-3:nth-child(2){width:15%}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list .w-clearfix .w-col-xs-3:nth-child(3){width:25%}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list .w-clearfix .w-col-xs-3:nth-child(4){width:20%}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list .w-clearfix:not(:first-child) .w-col-xs-3{font-size:13px;display:block;color:#798f96;font-weight:400;padding:0}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list .w-clearfix .w-col-xs-3 a{text-decoration:unset}.mec-fes-form .mec-attendees-wrapper .mec-attendees-list .w-clearfix:nth-child(odd){background:#fff}.mec-wrap .mec-totalcal-box{position:relative;border:1px solid #efefef;padding:20px 5px;margin:0 0 20px;background:#fafafa;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012);min-height:78px}.mec-wrap .mec-totalcal-box i{float:left;margin:0;width:36px;height:36px;background:#fff;border:1px solid #efefef;text-align:center;padding:10px 0;font-size:15px;color:#888}.mec-checkboxes-search .mec-searchbar-category-wrap,.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-wrap .mec-totalcal-box input,.mec-wrap .mec-totalcal-box select{width:auto;min-height:36px;height:36px;line-height:36px;background:#fff;font-size:13px;color:#777;border:1px solid #efefef;margin:0 0 0 -1px;float:left;padding:0 5px}.mec-there-labels .mec-totalcal-view{margin-top:28px}.mec-wrap .mec-totalcal-box input[type=submit]{cursor:pointer;padding:0 16px;text-transform:uppercase;font-size:11px;transition:all .21s ease}.mec-wrap .mec-totalcal-box input[type=submit]:hover{background:#222;color:#fff}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{display:inline-block;text-transform:uppercase;font-size:11px;padding:0 12px;cursor:pointer}.mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover{color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view{text-align:right;float:right}.mec-wrap .mec-totalcal-box input[type=search]{width:calc(100% - 36px)}.mec-there-reset-button .mec-totalcal-box{padding-bottom:48px}.mec-wrap .mec-totalcal-box .mec-search-reset-button .mec-button{position:absolute;margin:0;bottom:0;right:0;padding:9px 25px;border-radius:2px 0 0 0;background:#fff;color:#767676;border-top:1px solid;border-left:1px solid;border-color:#e8e8e8;overflow:hidden}.mec-wrap .mec-totalcal-box .mec-search-reset-button .mec-button:hover{background:#000;color:#fff;border-color:#000}.mec-full-calendar-wrap .mec-search-form .col-md-7{padding:0}.mec-wrap .mec-date-search .mec-col-3,.mec-wrap .mec-minmax-event-cost .mec-minmax-price{width:calc(50% - 17px)}.mec-wrap .mec-text-address-search.with-mec-cost{width:calc(100% - 356px)}.mec-wrap .mec-minmax-event-cost{display:block;float:left;width:50%;margin-left:10px}.mec-wrap .mec-minmax-event-cost.with-mec-address{display:block;width:336px;max-width:50%;float:right;margin-left:0;margin-right:10px}.mec-wrap .mec-checkboxes-search{margin-left:10px;margin-right:10px;display:table-caption}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap{width:calc(100% - 36px)!important;max-width:calc(100% - 36px)!important;padding:0;position:relative;line-height:inherit;height:auto}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap select{line-height:20px}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap .select2-container.select2-container--default{width:calc(100% - 36px)!important}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap input[type=search]{width:calc(100% - 36px)!important;min-height:30px;margin:0}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap .select2-container .select2-selection--multiple ul,.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap .select2-container.select2-container--default{height:auto;overflow:unset}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap .select2-container .select2-selection--multiple ul{display:block}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap .select2-container .select2-selection--multiple{border:unset;width:100%;height:0!important;border-radius:0}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap .select2-container .select2-selection--multiple ul li{line-height:12px!important;max-height:20px!important;width:auto;margin-right:5px;margin-top:5px}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap .select2-container .select2-selection--multiple .select2-selection__choice{letter-spacing:0;color:#777;text-transform:capitalize;padding:4px 6px;background-color:#efefef;border-radius:2px;border:0;cursor:default;float:left;margin-right:5px;margin-top:5px;margin-bottom:5px;font-size:11px;text-transform:uppercase}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap .select2-container .select2-selection--multiple .select2-selection__choice__remove{color:#777}@media only screen and (min-width:961px) and (max-width:1200px){.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-3,.mec-wrap .mec-totalcal-box .col-md-4,.mec-wrap .mec-totalcal-box .col-md-5{width:100%;float:none;clear:both;overflow:hidden}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-4,.mec-full-calendar-wrap .mec-search-form .col-md-5{display:block;max-width:100%;padding:0;margin:0 0 10px 0}.mec-full-calendar-wrap .mec-search-form .col-md-3{padding-bottom:10px!important}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}.mec-wrap .mec-checkboxes-search .mec-searchbar-category-wrap .select2-container .select2-selection--multiple .select2-selection__choice{display:block;max-width:100%;white-space:break-spaces;max-height:unset!important;height:auto!important}}@media only screen and (min-width:768px) and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-4{position:relative;width:initial}.mec-wrap .mec-totalcal-box .col-md-5{padding-bottom:0}.mec-full-calendar-wrap .mec-search-form .col-md-5{margin-top:20px}.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:767px){.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}.mec-wrap .mec-totalcal-box .col-md-4{padding-bottom:0}.mec-wrap .mec-minmax-event-cost.with-mec-address,.mec-wrap .mec-text-address-search.with-mec-cost{width:100%;float:left}.mec-wrap .mec-minmax-event-cost.with-mec-address{max-width:calc(100% - 20px);margin:0 10px 20px 10px}.mec-wrap .mec-minmax-event-cost .mec-minmax-price{width:calc(50% - 17px)}}@media only screen and (max-width:479px){.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 8px;font-size:10px}.mec-wrap .mec-totalcal-box input[type=submit]{padding:0 10px;font-size:10px}}@media only screen and (min-width:961px){.mec-wrap .mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5,.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-3{padding-bottom:20px;clear:both;overflow:hidden}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5{right:10px;width:initial}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-4{padding-bottom:0;width:100%}}@media (min-width:961px) and (max-width:1200px){.mec-full-calendar-wrap .mec-totalcal-box{padding:15px 10px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 10px}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-address-search,.mec-search-form .mec-text-input-search{padding:0 4px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4,.mec-full-calendar-wrap .mec-totalcal-box .col-md-5{padding-bottom:20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{min-width:calc(30% - 10px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3:last-child select{min-width:calc(50% - 19px)}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:9px;text-align:center}}@media only screen and (max-width:1200px){.post-type-archive-mec-events .mec-totalcal-box .col-md-3,.post-type-archive-mec-events .mec-totalcal-box .col-md-4{width:100%;padding:0}.post-type-archive-mec-events .mec-totalcal-box select:last-child{min-width:auto}.post-type-archive-mec-events .mec-totalcal-box .col-md-5{position:relative;float:right;max-width:100%;left:0;top:20px;width:100%!important;display:block;clear:both}.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view{max-width:100%;width:100%}.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view span{width:20.1%;font-size:10px}}@media only screen and (max-width:960px){.post-type-archive-mec-events .mec-totalcal-box .col-md-5{top:10px}}@media only screen and (max-width:760px){.post-type-archive-mec-events .mec-totalcal-box .col-md-5{top:0!important}}@media only screen and (max-width:480px){.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view span{font-size:8px}}@media (min-width:1201px) and (max-width:1280px){.mec-full-calendar-wrap .mec-totalcal-view span{font-size:9px;padding:0 10px}}@media (min-width:761px) and (max-width:1200px){.mec-full-calendar-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{width:33.3333%;display:block;float:left}.mec-full-calendar-wrap .mec-search-form .col-md-4 .mec-text-input-search{padding:0;margin-bottom:20px}.mec-full-calendar-wrap .mec-search-form .col-md-3{width:100%}.mec-full-calendar-wrap .mec-search-form .mec-date-search select:last-child{min-width:70px;width:70px}.mec-full-calendar-wrap .mec-search-form .col-md-5{float:right;padding:0 0 10px 0}.mec-full-calendar-wrap .mec-totalcal-view span{font-size:11px}}@media (max-width:760px){.mec-full-calendar-wrap .mec-search-form .col-md-3{width:100%}.mec-full-calendar-wrap .mec-search-form .mec-date-search select:last-child{min-width:70px;width:70px}.mec-full-calendar-wrap .mec-search-form .col-md-5{float:right;padding:0 0 10px 0}.mec-full-calendar-wrap .mec-totalcal-view span{font-size:11px}}@media (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px);margin-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-left:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:100%}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:14.3%;text-align:center;font-size:10px;margin-right:-1px}}@media (max-width:780px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{width:calc(50% - 18px)!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:unset;padding-right:0}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-4,.mec-full-calendar-wrap .mec-search-form .col-md-5{margin:0;padding:0}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 7px;margin-top:20px}}@media (max-width:480px){.mec-full-calendar-wrap .mec-totalcal-box{padding:15px 10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:13.5%;text-align:center;font-size:11px}}@media (max-width:411px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:12%;font-size:10px}}@media (max-width:320px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:22.5%;font-size:11px}}.mec-totalcalview-selected:hover{color:#fff!important}.mec-search-form{padding:20px 10px}.mec-search-form .mec-dropdown-wrap{display:table;width:100%}.mec-search-form .mec-date-input-search,.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search,.mec-search-form .mec-time-input-search{padding:0 10px;float:left}.mec-search-form .mec-date-search,.mec-search-form .mec-time-picker-search,.mec-search-form .mec-totalcal-view{padding:0 10px}.mec-search-form .mec-text-input-search{width:100%}.mec-search-form .mec-full-calendar-search-ends .mec-text-input-search{width:50%}.mec-search-form .mec-date-search,.mec-search-form .mec-time-picker-search{width:50%;float:left}.mec-search-form .mec-date-search.with-mec-time-picker,.mec-search-form .mec-time-picker-search.with-mec-date-search{width:25%;float:left}.mec-search-form .mec-tab-loader.col-md-6 .mec-totalcal-view{padding:0}.mec-wrap .mec-search-form .with-mec-date-search .mec-timepicker-end,.mec-wrap .mec-search-form .with-mec-date-search .mec-timepicker-start{width:calc(50% - 17px)}.mec-search-form .mec-full-calendar-search-ends .mec-text-input-search.col-md-12,.mec-search-form .mec-minmax-event-cost,.mec-search-form .mec-text-address-search{min-height:55px}.mec-search-form .mec-full-calendar-search-ends .mec-text-input-search.col-md-12,.mec-widget .mec-search-form .mec-date-search,.mec-widget .mec-search-form .mec-text-input-search{width:100%}.mec-search-form .mec-full-calendar-search-ends .mec-text-input-search.col-md-12{padding:0 10px}.mec-search-form .mec-minmax-event-cost,.mec-search-form .mec-text-address-search,.mec-widget .mec-search-form .mec-text-input-search{margin-top:10px}.mec-search-form .mec-date-search{clear:left}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:table-cell;float:none}.mec-widget .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block}.mec-checkboxes-search .mec-searchbar-category-wrap,.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{width:calc(100% - 36px);margin-bottom:10px}.mec-wrap .mec-search-form .mec-minmax-price input,.mec-wrap .mec-search-form .mec-text-address-search input,.mec-wrap .mec-search-form .mec-text-input-search input{margin-bottom:10px}.mec-wrap .mec-totalcal-box label{display:block;line-height:1.8;margin-bottom:4px;font-size:13px;color:#9a9a9a}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}@media only screen and (max-width:781px){.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{width:100%;float:none}.mec-search-form .mec-date-search{min-height:55px}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:50%;float:left}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3{margin-bottom:0;padding-bottom:0!important}}@media only screen and (max-width:479px){.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:100%;float:none}}@media only screen and (min-width:961px) and (max-width:1200px){.post-type-archive-mec-events .mec-totalcal-box .col-md-3,.post-type-archive-mec-events .mec-totalcal-box .col-md-4,.post-type-archive-mec-events .mec-totalcal-box .col-md-5{max-width:100%;width:100%}.post-type-archive-mec-events .mec-totalcal-box .col-md-4{padding:0 10px}.post-type-archive-mec-events .mec-totalcal-box .col-md-4 .mec-text-input-search{margin:0}.post-type-archive-mec-events .mec-totalcal-box .col-md-5{margin-bottom:20px;padding:0 10px 10px 10px}}@media only screen and (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-4,.post-type-archive-mec-events .mec-totalcal-box .col-md-4{padding:0 10px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{margin-bottom:0}.post-type-archive-mec-events .mec-totalcal-box .col-md-4 .mec-text-input-search{margin:0}.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view{padding-right:15px}.mec-full-calendar-wrap .mec-search-form .col-md-5{margin-bottom:0}.post-type-archive-mec-events .mec-totalcal-box .col-md-5{padding:0}}@media only screen and (max-width:780px){.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view span{margin-top:10px;margin-bottom:10px}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{margin-top:0}}@media only screen and (max-width:760px){.post-type-archive-mec-events .mec-totalcal-box .mec-totalcal-view span{margin-top:20px;margin-bottom:0}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{margin-top:20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4,.post-type-archive-mec-events .mec-totalcal-box .col-md-4{padding:0}}@media only screen and (max-width:1200px){.post-type-archive-mec-events .mec-full-calendar-wrap .mec-totalcal-view span{width:14.333%;font-size:8px}}@media only screen and (min-width:320px) and (max-width:960px){.post-type-archive-mec-events .mec-search-form .col-md-5 span{width:20%!important}}.mec-search-form .mec-text-address-search{float:left;width:100%;padding:0 10px}@media (max-width:960px){.mec-search-form .mec-dropdown-search{margin-bottom:10px}.mec-wrap .mec-minmax-event-cost.with-mec-address,.mec-wrap .mec-text-address-search.with-mec-cost{margin-top:0}.mec-search-form .mec-date-search.with-mec-time-picker,.mec-search-form .mec-time-picker-search.with-mec-date-search{width:50%;margin-bottom:20px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin:0}.mec-full-calendar-wrap .mec-tab-loader{width:100%;display:block;float:unset;padding:0 0 0 10px}}@media (max-width:780px){.mec-full-calendar-wrap .mec-totalcal-box{padding:10px}.mec-search-form .mec-date-search.with-mec-time-picker,.mec-search-form .mec-time-picker-search.with-mec-date-search{margin:20px 0;height:auto}.mec-search-form .mec-date-search{min-height:unset}}@media (max-width:480px){.mec-search-form .mec-date-search.with-mec-time-picker,.mec-search-form .mec-time-picker-search.with-mec-date-search{width:100%}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:12%;text-align:center;font-size:9px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-search-form .mec-date-search.with-mec-time-picker,.mec-search-form .mec-full-calendar-search-ends .mec-text-input-search,.mec-search-form .mec-minmax-event-cost,.mec-search-form .mec-text-address-search,.mec-search-form .mec-time-picker-search.with-mec-date-search,.mec-wrap .mec-minmax-event-cost.with-mec-address{margin-bottom:0;margin-top:10px;min-height:auto}.mec-wrap .mec-minmax-event-cost.with-mec-address{margin-bottom:10px}.mec-wrap.mec-widget .mec-minmax-event-cost.with-mec-address,.mec-wrap.mec-widget .mec-search-form .mec-time-picker-search.with-mec-date-search,.mec-wrap.mec-widget .mec-text-address-search.with-mec-cost{display:block!important;width:100%!important;max-width:100%!important}.mec-wrap.mec-widget .mec-minmax-event-cost.with-mec-address{float:left!important;max-width:calc(100% - 20px)!important;margin:0 0 0 10px!important}.mec-wrap.mec-widget .mec-search-form .mec-time-picker-search.with-mec-date-search{margin-top:20px!important}.mec-wrap.mec-widget .mec-search-form .mec-text-input-search{padding:10px!important}}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.mec-owl-theme .owl-dots .owl-dot{border:none}.event-carousel-type1-head .mec-event-image{position:relative;min-height:150px;overflow:hidden}.event-carousel-type1-head .mec-event-image img{width:100%}.mec-event-carousel-content .mec-event-carousel-title a{transition:all .2s ease}.event-carousel-type1-head .mec-event-date-carousel{position:absolute;top:25px;left:1px;font-size:41px;width:160px;color:#fff;font-weight:500;background-color:#40d9f1;padding-left:14px;height:97px;line-height:2.3;padding-right:85px}.event-carousel-type1-head .mec-event-date-carousel:after{content:"";position:absolute;display:inline-block;z-index:-1;bottom:-13px;left:5px;width:0;border-width:13px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.event-carousel-type1-head .mec-event-date-info{font-size:12px;font-weight:300;position:absolute;top:27px;left:75px}.event-carousel-type1-head .mec-event-date-info-year{font-size:12px;font-weight:300;position:absolute;top:45px;left:75px}.mec-event-carousel-content{border:1px solid #e8e8e8;border-top:none;margin-top:-5px;padding:34px 9px 11px 37px}.mec-event-carousel-content .mec-event-carousel-title a{font-size:23px;font-weight:500;color:#000;letter-spacing:-1px}.mec-event-carousel-content p{font-size:14px;color:#7a7272;font-weight:300}.mec-owl-crousel-skin-type1 .owl-item .mec-event-article{padding:0 19px}.mec-event-carousel-type1 .owl-page.active span{background-color:#00aeef;height:14px;width:14px}.mec-event-carousel-type1 .mec-event-carousel-content{margin-bottom:15px;box-shadow:0 1px 2px rgba(0,0,0,.04);transition:all .27s ease}.mec-event-carousel-type1 .mec-event-carousel-content:hover{box-shadow:0 0 35px rgba(0,0,0,.07)}.mec-skin-carousel-container .mec-multiple-event .mec-event-date-carousel{width:255px}.mec-skin-carousel-container .mec-multiple-event .event-carousel-type1-head .mec-event-date-info,.mec-skin-carousel-container .mec-multiple-event .event-carousel-type1-head .mec-event-date-info-year{left:175px}.mec-skin-carousel-container .mec-time-details,.mec-skin-carousel-container .mec-time-details span{font-size:11px;font-weight:400;line-height:1.9;letter-spacing:0;color:#000;border-radius:2px;white-space:nowrap}.mec-event-carousel-type4 .mec-time-details,.mec-event-carousel-type4 .mec-time-details span{color:#fff}.mec-skin-carousel-container .mec-time-details span{margin:0;display:inline-block}@media only screen and (min-width:768px) and (max-width:1000px),(min-width:270px) and (max-width:448px){.event-carousel-type1-head .mec-event-date-carousel{font-size:25px;line-height:2.5;padding-right:70px;height:64px;width:120px}.event-carousel-type1-head .mec-event-date-carousel:after{left:7px}.event-carousel-type1-head .mec-event-date-info{font-size:10px;top:13px;left:55px}.event-carousel-type1-head .mec-event-date-info-year{font-size:10px;top:25px;left:55px}.event-carousel-type1-head .mec-event-date-carousel:after{top:48px}}.event-carousel-type2-head{background:#fff;border:1px solid #e6e6e6}.event-carousel-type2-head .mec-event-carousel-content-type2{margin-top:15px;min-height:182px}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-date-info{font-size:15px;color:#9a9a9a;font-weight:300}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-carousel-content-type2 .mec-event-carousel-title a{color:inherit}.mec-event-carousel-type2 .event-carousel-type2-head .mec-event-carousel-content-type2 p{font-size:16px;font-weight:300;color:#444}.event-carousel-type2-head .mec-event-footer-carousel-type2{margin-top:33px;position:relative}.mec-event-carousel-type2 .mec-event-footer-carousel-type2 .mec-event-sharing-wrap{padding-left:0;left:0}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-event-sharing-wrap>li{border:none;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button{border:1px solid #e4e4e4;float:right;padding:7px 23px 7px;font-size:12px;text-transform:uppercase;color:#707070;font-weight:500;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button:hover{color:#fff}.mec-event-article .event-carousel-type2-head{padding:10%;margin-right:-1px}.mec-event-carousel-type2 .mec-owl-carousel .owl-wrapper-outer{border-right:1px solid #e6e6e6}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button{line-height:25px;height:41px;margin-right:0}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-modal-booking-button{margin-right:20px}.mec-wrap .mec-event-carousel-type2 .owl-next,.mec-wrap .mec-event-carousel-type2 .owl-prev,.mec-wrap .mec-event-carousel-type3 .owl-next,.mec-wrap .mec-event-carousel-type3 .owl-prev,.mec-wrap .mec-event-carousel-type4 .owl-next,.mec-wrap .mec-event-carousel-type4 .owl-prev{transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:47%;background-color:transparent!important;position:absolute!important}.mec-event-carousel-type2 .owl-next{right:-60px}.mec-event-carousel-type2 .owl-prev{left:-60px}.mec-event-carousel-type2 .owl-next i,.mec-event-carousel-type2 .owl-prev i,.mec-event-carousel-type3 .owl-next i,.mec-event-carousel-type3 .owl-prev i,.mec-event-carousel-type4 .owl-next i,.mec-event-carousel-type4 .owl-prev i{font-size:40px;color:#282828}.mec-event-carousel-type2 .owl-next i:hover,.mec-event-carousel-type2 .owl-prev i:hover,.mec-event-carousel-type3 .owl-next i:hover,.mec-event-carousel-type3 .owl-prev i:hover{color:#000;cursor:pointer}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}@media only screen and (min-width:320px) and (max-width:768px){.mec-event-carousel-type2 .owl-next,.mec-event-carousel-type2 .owl-prev,.mec-event-carousel-type3 .owl-next,.mec-event-carousel-type3 .owl-prev,.mec-event-carousel-type4 .owl-next,.mec-event-carousel-type4 .owl-prev{position:initial;top:100%}}.mec-event-carousel-type3 .mec-event-article{margin:0 10px}.event-carousel-type3-head .mec-event-image,.event-carousel-type3-head .mec-event-image img{width:100%;height:auto}.event-carousel-type3-head .mec-event-footer-carousel-type3{background:#fff;display:inline-block;width:calc(100% - 40px);margin-top:-74px;position:relative;margin-left:20px;margin-right:20px;margin-bottom:6px;padding:8% 11%;box-shadow:0 2px 10px -2px rgba(0,0,0,.2)}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button{border:1px solid #e4e4e4;text-transform:uppercase;float:right;padding:7px 23px 7px;font-size:12px;color:#707070;font-weight:500}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button:hover{color:#fff}.mec-event-footer-carousel-type3 span{font-size:15px;color:#9a9a9a;font-weight:300;display:block;margin-top:30px}.mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:29px;font-weight:700}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-footer-carousel-type3 .mec-event-carousel-title a{color:inherit}.event-carousel-type3-head .mec-event-footer-carousel-type3 p{font-size:16px;font-weight:300;color:#444!important;margin-bottom:36px}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button{line-height:25px;height:41px}.mec-event-carousel-type3 .owl-next{right:-70px}.mec-event-carousel-type3 .owl-prev{left:-70px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap{left:11%}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}.event-carousel-type3-head .mec-end-date-label{display:inline;margin-left:2px}.event-carousel-type4-head.clearfix{position:relative;overflow:hidden;background:#fff}.event-carousel-type4-head .mec-event-overlay{position:absolute;left:0;right:0;bottom:0;top:0;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-hover-carousel-type4{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out;opacity:0;visibility:hidden}.mec-event-carousel-type4 .mec-event-article{margin:0 10px}.mec-event-carousel-type4 .mec-event-article:hover .mec-event-hover-carousel-type4{opacity:1;visibility:visible}.mec-event-hover-carousel-type4 .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-hover-carousel-type4 .mec-event-date{font-size:11px;text-transform:uppercase;font-weight:400;line-height:1.6;text-align:left}.mec-event-hover-carousel-type4 .mec-event-date span{display:block;font-weight:700;font-size:14px}.mec-event-hover-carousel-type4 .mec-event-title{color:#fff;margin:20px 0 38px;font-size:16px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-hover-carousel-type4 .mec-btn-wrapper{text-align:left}.mec-event-hover-carousel-type4 .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-hover-carousel-type4 .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-carousel-type4 .owl-next{right:-70px}.mec-event-carousel-type4 .owl-prev{left:-70px}.mec-carousel-type4-head{margin-bottom:25px}.mec-carousel-type4-head-title{padding:0 11px;text-align:left;font-weight:700;font-size:20px;color:#000}.mec-carousel-type4-head-link{text-align:right;padding:0 11px}.mec-carousel-type4-head-link a{background:#222;color:#fff;padding:10px 38px;transition:all .3s ease}.mec-carousel-type4-head-link a:hover,.mec-carousel-type4-head-link a:visited{color:#fff}@media (max-width:960px){.mec-event-carousel-type4 .owl-stage{left:-50px}}.mec-wrap .mec-event-countdown-style1{color:#fff;padding:0!important;display:table;background:#437df9}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1{z-index:5;padding:50px 1% 50px 4%;display:table-cell;float:none;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2{background-color:rgba(0,0,0,.05);height:100%;padding-top:0;display:table-cell;float:none;position:relative;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{background-color:#f8f8f8;display:table-cell;float:none;text-align:center;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style1 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{content:"";position:absolute;display:inline-block;z-index:1;top:50%;margin-top:-11px;right:-24px;width:0;border-width:12px;border-style:solid;border-color:transparent transparent transparent #4077ed}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style1 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto}.mec-event-countdown-style1 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style1 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (min-width:1200px){.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%}}@media (max-width:960px){.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%;transform:rotate(90deg)}}@media (max-width:480px){.mec-event-countdown-style1 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{padding:10px 5px;min-width:50px;margin:3px 1px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:8px}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{display:inline}}.mec-wrap .mec-event-countdown-style2{color:#fff;padding:30px 0;background:#437df9;max-width:600px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part3{width:100%;float:none;vertical-align:middle;padding:50px 10% 50px 10%}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2{padding-top:12%;padding-bottom:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style2 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date-place{text-align:left;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 8px}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#222;background:#fff;transition:all .24s ease}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button:hover{background:#222;color:#fff}.mec-event-countdown-style2 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0}.mec-event-countdown-style2 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style2 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (max-width:767px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:80px;padding:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:26px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:11px}}@media only screen and (max-width:479px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:40px;padding:15px 10px;margin:2px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:20px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:9px}}@media (max-width:380px){.mec-event-countdown-style2 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{padding:10px 4px;margin:4px 1px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:7px}}.mec-wrap .mec-event-countdown-style3{color:#fff;padding:0;background:#282828;display:table;width:100%}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1{width:68%;padding:50px 1% 50px 4%;vertical-align:middle;display:table-cell;position:relative}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:32%;display:table-cell;position:relative;padding-bottom:0;padding-top:0}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 img{width:100%;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{font-weight:300;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{color:#fff;font-size:36px;letter-spacing:-2px;font-weight:700;line-height:1;margin-top:-10px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style3 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style3 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto;position:absolute;top:40px;right:20px}.mec-event-countdown-style3 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style3 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:11px;color:#888;margin:8px 0 0;line-height:1}.mec-event-countdown-style3 .mec-event-date{width:176px;height:96px;background:#40d9f1;color:#fff;font-size:13px;position:absolute;left:-27px;top:146px}.mec-event-countdown-style3 .mec-event-date:after{content:"";position:absolute;display:inline-block;z-index:1;bottom:-18px;left:8px;width:0;border-width:19px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:50px;position:absolute;top:3px;left:12px;letter-spacing:-3px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:80px;top:26px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:80px;top:45px}.mec-event-countdown-style3 .mec-event-countdown-part-details{padding-top:35px;margin-bottom:50px;min-height:100px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-title{font-size:17px;color:#fff;line-height:1.4;padding-right:20px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link{color:#fff;font-size:12px;position:relative;padding-left:22px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link:before{content:"";display:inline-block;width:18px;border-top:1px solid #fff;position:absolute;left:0;top:8px}.mec-event-countdown-style3 .mec-event-title-link{position:absolute;left:190px;top:152px}.event-carousel-type1-head .mec-event-date-carousel:before,.mec-event-countdown-style3 .mec-event-date:before{content:"";position:absolute;left:0;bottom:0;z-index:2;width:100%;height:96px;display:inline-block;box-shadow:0 5px 5px rgba(0,0,0,.12);background:0 0}@media only screen and (min-width:960px){.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown li{padding:10px}.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:31px}}@media (max-width:959px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:100%;display:block}.mec-event-countdown-style3 .mec-event-title-link{top:190px}.mec-event-countdown-style3 .mec-event-countdown{top:96px}.mec-event-countdown-style3 .mec-event-date{left:0;top:190px}.mec-event-countdown-style3 .mec-event-date:after{display:none}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{display:inline}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:150px}}@media (max-width:767px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:26px;letter-spacing:-1px}.mec-event-countdown-style3 .mec-event-title-link{left:130px}.mec-event-countdown-style3 .mec-event-date{width:120px;font-size:10px;height:63px}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:36px;top:20px;left:4px;letter-spacing:-2px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:52px;top:12px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:52px;top:28px}}@media (max-width:380px){.mec-event-countdown-style3 .mec-event-title-link{left:10px;top:260px}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:300px}.mec-event-countdown-style3 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:10px 5px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:8px}}.mec-slider-t1-wrap{width:100%;padding:60px 90px;background:#f7f7f7;min-height:560px;position:relative}.mec-slider-t1{height:500px;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t1 .mec-event-article{position:relative;height:500px}.mec-slider-t1 .mec-slider-t1-img{position:relative;background-size:cover!important;background-position:center!important;width:50%;height:100%;float:right;margin:0;overflow:hidden}.mec-slider-t1 .mec-slider-t1-content{width:50%;float:left;height:100%;background:#fff;padding:6%}.mec-slider-t1-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t1-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:54px;height:54px;line-height:48px;border-radius:0;text-align:center;background:#fff;box-shadow:0 2px 11px 0 rgba(0,0,0,.045);transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-27px;cursor:pointer}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 29px 0 rgba(0,0,0,.095)}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:12px;color:#282828;transition:all .21s ease}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{font-size:13px;color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t1{margin:0 auto;max-width:900px}}@media only screen and (max-width:960px){.mec-slider-t1 .mec-slider-t1-content,.mec-slider-t1 .mec-slider-t1-img{width:100%;float:none}.mec-slider-t1 .mec-slider-t1-img{height:300px}.mec-slider-t1,.mec-slider-t1 .mec-event-article{height:auto}}@media only screen and (max-width:768px){.mec-slider-t1-wrap{padding:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:10px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}}@media only screen and (max-width:479px){.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t2-wrap{width:100%;padding:0;background:#fff;min-height:600px;position:relative}.mec-slider-t2 .mec-event-article{height:600px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t2 .mec-slider-t2-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:70%;height:100%;margin:0;overflow:hidden}.mec-slider-t2 .mec-slider-t2-content{width:50%;position:absolute;right:0;top:60px;bottom:60px;padding:5%}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern *{color:#fff}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-content,.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t2-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:84px;cursor:pointer}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}.mec-wrap.colorskin-custom .mec-slider-t2 .mec-event-article .mec-event-date.mec-color{color:#fff}@media only screen and (min-width:961px){.mec-slider-t2{margin:0 auto;max-width:1200px}}@media only screen and (max-width:960px){.mec-slider-t2 .mec-slider-t2-content,.mec-slider-t2 .mec-slider-t2-img{width:100%;float:none;position:static}.mec-slider-t2 .mec-slider-t2-img{height:300px}.mec-slider-t2 .mec-event-article{height:auto}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px}}@media only screen and (max-width:479px){.mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:22px}}.mec-slider-t3-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t3 .mec-event-article{height:700px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t3 .mec-slider-t3-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;opacity:.68;z-index:1}.mec-slider-t3 .mec-slider-t3-content{width:50%;height:auto;vertical-align:middle;display:table;position:absolute;left:0;top:50%;transform:translateY(-50%);bottom:0;padding:0 2% 0 7%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t3 .mec-slider-t3-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-content,.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-slider-t3-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t3-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{border-color:#40d9f1}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-22px;cursor:pointer}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next{right:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:50px;font-weight:300}.mec-slider-t3-content.mec-event-grid-modern .mec-event-description{font-size:19px}}@media only screen and (max-width:767px){.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}}@media only screen and (max-width:479px){.mec-slider-t3 .mec-slider-t3-content{width:100%}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t4-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t4 .mec-event-article{height:700px;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t4 .mec-slider-t4-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;z-index:1}.mec-slider-t4 .mec-slider-t4-content{width:auto;max-width:700px;background:rgba(37,37,37,.94)!important;height:auto;vertical-align:middle;display:table;position:absolute;left:8%;top:19%;padding:3%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t4 .mec-slider-t4-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-content,.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:13px;padding:0 42px;line-height:49px;height:50px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t4-content.mec-event-grid-modern .mec-slider-t4-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next{right:60px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{right:112px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:767px){.mec-slider-t4 .mec-slider-t4-content{width:100%;left:0;top:auto;bottom:0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t5-wrap{width:auto;max-width:570px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-slider-t5{height:auto;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t5 .mec-event-article{position:relative;height:auto}.mec-slider-t5 .mec-slider-t5-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:300px;float:none;margin:0;overflow:hidden}.mec-slider-t5 .mec-slider-t5-content{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-slider-t5 .mec-events-content p{margin-bottom:20px}.mec-slider-t5-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t5 .mec-slider-t5-col6{width:50%;float:left;height:100%}.mec-slider-t5 .mec-slider-t5-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-slider-t5 .mec-slider-t5-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-slider-t5 .mec-slider-t5-col6 address{font-size:12px;margin-bottom:0}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t5-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:768px){.mec-slider-t5 .mec-slider-t5-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-single-modern .mec-events-event-image{text-align:center}.mec-single-modern .mec-events-event-image img{width:100%}.mec-single-modern .mec-single-event-bar{background-color:#f7f7f7;margin:20px 0 0;padding:15px;display:table;width:100%}.mec-single-modern .mec-single-event-bar>div{display:table-cell}.mec-single-modern .mec-single-event-bar>div i{font-size:20px;vertical-align:middle}.mec-single-modern .mec-single-event-bar>div .mec-time-comment{font-size:12px;color:#999}.mec-single-modern .mec-single-event-bar>div h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-modern .mec-single-event-bar>div dd{font-size:14px;color:#8d8d8d;padding-left:34px;margin-bottom:0}.mec-single-modern .col-md-4 .mec-frontbox{margin-top:-50px;margin-bottom:70px;padding:20px;border:none;background:#f7f7f7;box-shadow:none}.mec-single-modern .col-md-4.mec-no-image .mec-frontbox{margin-top:20px}.mec-next-occurrence ul{padding-left:0;margin-left:0}.mec-next-occurrence li{list-style:none}@media only screen and (min-width:960px){.mec-single-modern .col-md-4 .mec-frontbox{margin-left:20px}}@media only screen and (max-width:960px){.mec-single-modern .mec-single-event-bar>div{display:block}}.lity-content>div{overflow:auto}.mec-next-event-details li{list-style:none;margin-top:20px}.mec-next-event-details h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-next-event-details abbr{display:block;padding-left:0;color:#8d8d8d}.mec-next-event-details i{margin-right:10px;margin-left:12px}.mec-next-event-details i:before{color:#40d9f1}.mec-next-event-details a{text-align:center;display:block;background:#fff;padding:6px 0;font-size:11px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;transition:.3s}.mec-single-modal.mec-single-modern .mec-single-title{text-align:center;padding:15px 10px 0}.admin-bar .mec-single-modal.mec-single-modern .mec-single-title{padding-top:40px}.mec-single-modal.mec-single-modern .mec-single-event-bar{padding:5px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div dd{font-size:13px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div h3{font-size:15px}@media only screen and (min-width:960px){.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-left:0}}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-top:10px;margin-bottom:10px}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox.mec-event-meta{padding:0}@media(min-width:961px){.mec-single-event.mec-sticky{position:relative}.mec-single-event.mec-sticky .col-md-4{position:-webkit-sticky;position:sticky;top:120px}.mec-single-modern.mec-sticky .col-md-4{top:170px}.single-mec-events .mec-sticky .col-md-8>div:last-child{margin-bottom:30px}.single-mec-events .mec-single-modern.mec-sticky .col-md-8>div:last-child{margin-bottom:70px}}.mec-single-modal .mec-event-meta dd.mec-organizer-email a,.mec-single-modal .mec-event-meta dd.mec-organizer-url a{font-size:12px;display:block}.mec-organizer-description p{padding-left:12px}.mec-modal-wrap{max-width:60vw;max-height:90vh!important;background:#fff;box-shadow:0 1px 55px rgba(0,0,0,.5);overflow-x:hidden!important}@media (max-width:1023px){.mec-modal-wrap{max-width:80vw}}.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li,.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a.mec-events-button{display:block;text-align:center}.mec-holding-status-expired{color:#d8000c}.mec-holding-status-ongoing{color:#0dbf52}body .featherlight{z-index:999999!important}body .featherlight .featherlight-content{background:0 0;overflow:unset;z-index:9999}body .featherlight .featherlight-close-icon{position:fixed;top:40px;right:40px;background:0 0;color:#fff;border:1px solid #fff;border-radius:0}body .featherlight .featherlight-close-icon:hover{background:#fff;color:#000;border:1px solid #000}@media (max-width:320px){.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{padding:15px 12%}}@media (max-width:414px){.mec-wrap span.flip-clock-divider{width:30px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 7%}}@media (max-width:480px){body .featherlight .featherlight-content{width:95%}.mec-wrap span.flip-clock-divider{width:7px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 1%}body .featherlight .featherlight-close-icon{color:#000;border-color:#000}}@media (max-width:1366px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 15px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:48px}}@media (max-width:1280px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:14px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 10px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:38px}}@media (min-width:961px) and (max-width:1024px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:7px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 5px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:14px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul li a div{font-size:30px}}@media (max-width:640px){body .mec-modal-wrap .mec-single-modal.featherlight-close-icon{top:14px;right:14px}}@media (max-width:480px){.featherlight .featherlight-content,body .mec-modal-wrap{max-width:100%}body .mec-modal-wrap.flip-clock-divider .flip-clock-label{display:block}}@media (max-width:414px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 65px}body .featherlight-content .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 2px 20px 2px!important}body .featherlight-content .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:3px!important}}@media (max-width:375px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 45px}}@media (max-width:320px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 40px}}.mec-single-event-bar dd{margin-left:0}.mec-events-toggle{max-width:960px;margin-left:auto;margin-right:auto}.mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;margin-bottom:15px;box-shadow:0 10px 15px #f3f3f3}.mec-events-toggle .mec-toggle-item-inner{cursor:pointer;position:relative;padding:30px 60px 30px 15px;background:#fff;transition:all .3s ease;min-height:100px;display:table;width:100%;border-collapse:separate}.mec-events-toggle .mec-toggle-item-inner:hover{background:#fbfbfb}.mec-toggle-item-col{width:200px;border-right:1px solid #e3e3e3;margin-right:15px;display:table-cell;padding-right:5px}.mec-toggle-item-col .mec-event-date{font-size:38px;line-height:40px;float:left;margin-right:8px}.mec-toggle-item-col .mec-event-month,.mec-toggle-item-col .mec-time-details{text-transform:uppercase;font-size:12px;line-height:14px;padding-top:4px;font-weight:700}.mec-toggle-item-col .mec-event-detail{font-size:10px}.mec-toggle-item-col .mec-event-day{margin-top:9px;color:silver;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-events-toggle .mec-toggle-title{color:#000;font-size:23px;font-weight:600;margin-bottom:0;transition:all .3s ease;display:table-cell;text-align:left;max-width:calc(100% - 200px);padding-left:15px;vertical-align:middle}.mec-events-toggle .mec-toggle-item-inner span.event-color{width:5px;height:100%;position:absolute;left:-1px;top:0;bottom:0;border-radius:0;margin:0}.mec-events-toggle .mec-toggle-item-inner i{position:absolute;font-size:30px;right:25px;top:50%;transform:translate(0,-50%);cursor:pointer}.mec-events-toggle .mec-toggle-item.is-open i.mec-sl-plus:before{content:"\e615"}.mec-events-toggle .mec-toggle-item.is-open .mec-toggle-title{background:#f8f8f8;cursor:pointer}.mec-events-toggle .mec-toggle-content{border-top:1px solid #e4e4e4}.mec-events-toggle .mec-toggle-content .mec-modal-wrap{margin:0;max-width:100%;box-shadow:none}.mec-events-toggle .mec-toggle-content .mec-modal-wrap .mec-single-event{margin:0}.mec-events-toggle .mec-toggle-content .mec-single-event-bar,.mec-events-toggle .mec-toggle-content h1.mec-single-title{display:none}.mec-events-toggle .media-links a{margin-bottom:0}.mec-events-toggle .mec-toggle-content .mec-toggle-meta{margin-bottom:14px}.mec-events-toggle #mec_speakers_details.mec-frontbox{padding:0;margin:0}.mec-events-toggle .mec-toggle-item h3.mec-speakers{border:none;text-align:left}.mec-events-toggle .mec-toggle-item h3.mec-speakers:before{content:"\e063";font-family:simple-line-icons;border:none;position:relative;display:inline-block;left:unset;bottom:unset;font-size:22px;font-weight:400;padding:0 11px 0 28px;vertical-align:middle}@media only screen and (max-width:767px){.mec-toggle-item-inner .mec-toggle-item-col{float:none;width:100%;border-right:none;margin-bottom:5px;display:block;max-width:100%;padding-left:15px}.mec-events-toggle .mec-toggle-title{display:block;width:100%;max-width:100%}}.mec-events-agenda-wrap{margin:10px 0;border:1px solid #e9e9e9;padding-left:20px;box-shadow:0 2px 2px rgba(0,0,0,.03)}.mec-events-agenda{padding:0;border-bottom:1px solid #e9e9e9;overflow:hidden}.mec-agenda-date-wrap{width:210px;padding-top:15px;float:left;font-size:13px}.mec-agenda-date-wrap i,.mec-agenda-event i{font-size:11px;color:#aaa;margin-right:4px;margin-left:1px}.mec-agenda-event i{vertical-align:middle;margin-right:1px}.mec-agenda-events-wrap{float:left;width:calc(100% - 210px);background:#f9f9f9;padding:15px}.mec-agenda-time{font-size:11px;color:#707070;padding-right:10px;width:138px;display:inline-block}.mec-agenda-event-title{position:relative;padding-left:14px}.mec-agenda-event-title a{font-size:14px;font-weight:600;color:#333}.mec-agenda-event-title span.event-color{width:9px;height:9px;position:absolute;left:0;top:4px;margin:0}.mec-agenda-date-wrap span.mec-agenda-day{color:#aaa;font-size:12px}@media only screen and (max-width:767px){.mec-agenda-date-wrap,.mec-agenda-events-wrap{float:none;width:100%}.mec-events-agenda span.mec-agenda-event-title{display:block;width:100%}.mec-agenda-event-title span.event-color{top:7px}.mec-agenda-event-title a{font-size:13px}}.mec-yearly-view-wrap{margin:0 0 15px;border:1px solid #e6e6e6;box-shadow:0 2px 4px rgba(0,0,0,.04);border-bottom-width:4px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{max-width:100%;width:232px;padding:10px;background:#fff;margin:10px;display:inline-block}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{transition:none;height:30px;width:30px;line-height:30px;border-radius:0;font-size:12px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-calendar-events-sec{padding:10px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-has-event:after{width:4px;height:4px;bottom:3px;margin-left:-2px}.mec-yearly-view-wrap .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-head dl dt{background:#f9f9f9;font-size:13px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-title{text-align:center;font-size:15px;font-weight:700;color:#222;margin-top:-5px;padding-bottom:5px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{min-height:200px;width:538px;overflow:hidden;float:left;background:#f8f8f8;padding:15px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{min-height:200px;width:calc(100% - 538px);float:left;padding:0 0 0 20px;overflow:hidden}.mec-yearly-view-wrap .mec-yearly-title-sec{position:relative;padding:15px;text-align:center;border-bottom:1px solid #e6e6e6;box-shadow:0 1px 3px rgba(0,0,0,.02)}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:30px;line-height:40px;color:#333;margin:0;font-weight:700}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{position:absolute;top:50%;margin-top:-15px;min-width:30px;height:30px;line-height:30px;padding:0 8px;text-align:center;background:#fff;color:#666;font-size:14px;border:1px solid #eee;border-radius:2px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{right:auto;left:20px;padding-right:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year{left:auto;right:20px;padding-left:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year i,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-yearly-view-wrap .mec-events-agenda.mec-selected{box-shadow:-10px 0 0 0 #fffcf2,0 -1px 0 #fbebb6;background:#fffcf2;border-color:#fbebb6;color:#f9af29}.mec-yearly-agenda-sec span.mec-event-label-captions.mec-fc-style{right:0;top:0}@media only screen and (max-width:959px){.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:268px;padding:10px 5px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{width:calc(100% - 268px);padding:0 0 0 10px}}@media only screen and (max-width:767px){.mec-yearly-view-wrap .mec-yearly-agenda-sec,.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:100%;float:none}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{width:auto}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{width:14.2%}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:25px}}.mec-yearly-view-wrap .mec-agenda-event i,.mec-yearly-view-wrap .mec-agenda-time{display:none}@media only screen and (min-width:768px){.mec-yearly-view-wrap .mec-events-agenda-wrap{margin-top:0;border:none;padding-left:0;box-shadow:none}.mec-yearly-view-wrap .mec-agenda-date-wrap{width:174px;font-size:11px;padding-top:10px}.mec-yearly-view-wrap .mec-agenda-events-wrap{width:calc(100% - 174px);padding:10px}.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:13px}.mec-yearly-view-wrap .mec-agenda-event-title span.event-color{width:8px;height:8px}.mec-yearly-view-wrap .mec-agenda-date-wrap span.mec-agenda-day{font-size:11px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{box-shadow:-2px 0 5px rgba(0,0,0,.03) inset}}@media only screen and (max-width:1200px){.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:12px;padding-right:6px}}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table{padding-bottom:10px;border-bottom:none}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt:hover{cursor:pointer}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event,.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event:hover{color:#bbb;cursor:default}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active{background:#40d9f1;color:#fff;position:relative}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active:after{content:"";position:absolute;display:block;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#40d9f1 transparent transparent transparent}.mec-timetable-events-list{padding:10px 20px;border:none;margin:0}.mec-timetable-events-list .mec-timetable-event{padding:10px 0;border-bottom:1px dashed #ddd}.mec-timetable-events-list .mec-timetable-event:last-child{border:none}.mec-timetable-event .mec-timetable-event-span{font-size:12px;color:#444;padding-right:30px;line-height:22px}.mec-timetable-events-list .mec-timetable-event i{font-size:13px;color:#aaa;margin-right:3px;vertical-align:baseline}.mec-timetable-event .mec-timetable-event-span a{color:#333}.mec-timetable-event .mec-timetable-event-time{font-size:11px}.mec-timetable-event .mec-timetable-event-time i{vertical-align:text-bottom}.mec-timetable-event .mec-timetable-event-title{font-size:13px}.mec-timetable-event .mec-timetable-event-title .event-color{width:10px;height:10px}.mec-timetable-events-list .mec-timetable-event.mec-util-hidden{display:none}.mec-timetable-events-list.mec-util-hidden{display:none}@media only screen and (min-width:768px){.mec-timetable-events-list{display:table;width:100%;margin:10px 0 20px}.mec-timetable-events-list .mec-timetable-event{display:table-row;padding:0;border:none;background:#fff}.mec-timetable-events-list .mec-timetable-event:hover{background:#fafafa}.mec-timetable-event .mec-timetable-event-span{display:table-cell;padding:10px 15px;border-bottom:1px solid #ebebeb}.mec-timetable-events-list .mec-timetable-event:last-child .mec-timetable-event-span{border-bottom:none}}@media only screen and (max-width:767px){.mec-timetable-event .mec-timetable-event-title{display:block;width:100%;padding:5px 0 10px;font-weight:700}}.mec-timetable-t2-wrap{border:1px solid #e6e6e6;background:#fafafa;padding:0 15px 15px;display:-webkit-box;box-shadow:0 3px 2px 0 rgba(0,0,0,.012)}.mec-timetable-t2-col{width:20%;float:left;min-height:20px;padding-right:1px;background:0 0}.mec-ttt2-title{background:#fafafa;color:#333;font-size:13px;font-weight:600;text-transform:uppercase;letter-spacing:1px;text-align:center;padding:25px 10px 10px;margin-bottom:1px}.mec-timetable-t2-col .mec-event-article{position:relative}.mec-timetable-t2-col .mec-event-article .event-color{position:absolute;width:auto;height:auto;left:0;right:0;top:0;bottom:0;margin:0;z-index:1;border-radius:2px}.mec-timetable-t2-content{position:relative;z-index:2;color:#fff;padding:15px 15px 20px;text-align:left;height:185px;margin-bottom:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title{line-height:22px;margin-bottom:13px;white-space:nowrap;padding-right:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title a{color:#fff;font-size:15px;font-weight:600;white-space:pre-line;overflow:hidden}.mec-timetable-t2-content div{color:#fff;font-size:11px;font-weight:400;line-height:19px;white-space:nowrap}.mec-timetable-t2-content div i{font-size:12px;margin-right:4px}@media only screen and (max-width:960px){.mec-timetable-t2-col{width:100%;float:none}}@media (min-width:961px){.mec-timetable-col-7{width:14.28%}.mec-timetable-col-6{width:16.6666%}}.mec-timetable-t3-wrap td{position:relative;padding:0}.mec-timetable-t3-wrap td a{width:100%;display:block;min-height:110px}.mec-weather-box{padding:15px 0}.mec-weather-head{min-height:90px;padding:5px 0;clear:both;overflow:hidden;margin-bottom:25px;border-radius:10px;background:#238af5;position:relative}.mec-weather-icon-box{float:left;width:80px;height:80px;border-radius:10px;overflow:hidden;background:#238af5}.mec-weather-icon{width:80px;height:80px;display:inline-block;border-radius:10px}.mec-weather-summary{float:left;width:calc(100% - 80px);padding-left:10px;margin:10px 0;height:60px}.mec-weather-summary-report{font-size:15px;color:rgba(255,255,255,.68);margin-bottom:6px}.mec-weather-summary-temp{font-weight:300;color:#fff;font-size:29px;line-height:1}.degrees-mode{background:rgba(0,0,0,.2);cursor:pointer;font-weight:300;font-size:18px;padding:4px 5px;line-height:1;color:#fff;position:absolute;border-radius:8px;bottom:16px;left:16px}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras div{line-height:20px;height:20px}.mec-weather-extras span{color:rgba(255,255,255,.68);font-size:12px;text-transform:uppercase}.mec-weather-extras var{font-size:11px;letter-spacing:.4px}.mec-weather-icon.clear-day,.mec-weather-icon.clear-night{background-image:url(../img/mec-weather-icon-01.png)}.mec-weather-icon.partly-sunny-day,.mec-weather-icon.partly-sunny-night{background-image:url(../img/mec-weather-icon-02.png)}.mec-weather-icon.partly-cloudy-day,.mec-weather-icon.partly-cloudy-night{background-image:url(../img/mec-weather-icon-03.png)}.mec-weather-icon.cloudy,.mec-weather-icon.fog,.mec-weather-icon.wind{background-image:url(../img/mec-weather-icon-04.png)}.mec-weather-icon.thunderstorm{background-image:url(../img/mec-weather-icon-05.png)}.mec-weather-icon.rain{background-image:url(../img/mec-weather-icon-06.png)}.mec-weather-icon.hail,.mec-weather-icon.sleet,.mec-weather-icon.snow{background-image:url(../img/mec-weather-icon-07.png)}.mec-av-spot-wrap{width:auto;max-width:1200px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-av-spot{height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-av-spot .mec-event-article{position:relative;height:auto}.mec-av-spot .mec-av-spot-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:330px;float:none;margin:0;overflow:hidden}.mec-av-spot .mec-av-spot-content,.mec-av-spot .mec-av-spot-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-av-spot .mec-av-spot-head{background:#222;color:#fff;min-height:80px}.mec-av-spot .mec-av-spot-head .mec-av-spot-box{padding-top:25px;font-size:13px;color:#ddd}.mec-av-spot .mec-av-spot-head .mec-av-spot-box span{color:#40d9f1;font-size:40px;font-weight:700;font-style:italic}.mec-av-spot .mec-av-spot-head .mec-event-countdown{text-align:center;padding-top:10px;display:table;table-layout:fixed;margin:0 auto;float:right}.mec-av-spot .mec-av-spot-head .mec-event-countdown li{display:table-cell;padding:10px 20px;position:relative;height:60px}.mec-av-spot .mec-av-spot-head .mec-event-countdown p{margin-bottom:0}.mec-av-spot .mec-events-content p{margin-bottom:20px}.mec-av-spot-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-av-spot .mec-av-spot-col6{width:50%;float:left;height:100%}.mec-av-spot .mec-av-spot-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-av-spot .mec-av-spot-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-av-spot .mec-av-spot-col6 address{font-size:12px;margin-bottom:0}.mec-av-spot-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-av-spot-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:768px){.mec-av-spot .mec-av-spot-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-events-masonry-wrap{display:block;width:auto}.mec-masonry-item-wrap{width:calc(33.33% - 30px);padding:0;margin:0 15px 30px;min-height:10px;position:relative;float:left}.mec-events-masonry-cats{padding:10px;margin-bottom:25px;text-align:center;clear:both;list-style:none outside none}.mec-events-masonry-cats a{border-radius:2px;padding:6px 12px;font-size:13px;line-height:1.2;color:#333;font-weight:400;margin-top:0!important;text-align:center;display:inline-block;width:auto;border:2px solid transparent;transition:all .2s ease}.mec-events-masonry-cats a:hover{border-color:#40d9f1;color:#333}.mec-events-masonry-cats a.mec-masonry-cat-selected{border:2px solid #40d9f1;color:#40d9f1}.mec-masonry{background:#f7f7f7;height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-masonry .mec-event-article{position:relative;height:auto}.mec-masonry .mec-masonry-img{position:relative;width:100%;height:auto;float:none;margin:0;overflow:hidden}.mec-masonry .mec-masonry-img img{width:100%}.mec-masonry .mec-masonry-content,.mec-masonry .mec-masonry-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-masonry .mec-events-content p{margin-bottom:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head{min-height:79px;margin-bottom:10px;padding:14px 5%;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-masonry-content.mec-event-grid-modern .mec-event-content{padding-top:20px}@media (max-width:480px){.mec-masonry-content.mec-event-grid-modern .mec-labels-normal{display:block}}.mec-masonry-content.mec-event-grid-modern .mec-event-footer{height:auto}.mec-masonry .mec-masonry-col6 .mec-event-date{font-size:52px;letter-spacing:-2px;line-height:41px;vertical-align:top}.mec-masonry .mec-masonry-col6{width:50%;float:left;height:100%}.mec-masonry .mec-masonry-col6 i{font-size:24px;float:left;margin-right:7px;height:50px}.mec-masonry .mec-masonry-col6 .mec-event-month,.mec-masonry .mec-masonry-col6 h6{text-transform:capitalize;font-size:15px;padding:4px 0;display:inline;color:#444}.mec-masonry .mec-masonry-col6 .mec-event-detail,.mec-masonry .mec-masonry-col6 address{font-size:11px;margin-bottom:0}.mec-masonry-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-masonry-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:960px){.mec-masonry-item-wrap{width:calc(50% - 30px)}}@media only screen and (max-width:768px){.mec-masonry .mec-masonry-col6{width:100%;margin:10px 0}.mec-masonry-item-wrap{width:calc(100% - 30px)}}@media only screen and (max-width:479px){.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-wrap.mec-skin-masonry-container .mec-load-more-wrap{position:unset}.btn-wrapper{text-align:center}.countdown-wrapper .btn-wrapper{padding-top:10px;padding-right:0}.countdown-wrapper h5.countdown-message{letter-spacing:5px;font-weight:500;font-size:18px}.blox.dar .countdown-wrapper p,.countdown-wrapper p{color:#888}.countdown-wrapper a.button.black{float:right;margin-right:0}.mec-wrap .threedaydigits .days .flip-clock-label{right:-100px}@media only screen and (min-width:320px) and (max-width:767px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{left:0;font-weight:300}.mec-wrap span.flip-clock-divider{width:12px}}@media only screen and (min-width:320px) and (max-width:480px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}.mec-wrap span.flip-clock-divider:first-child{width:0}.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 18%}}@media screen and (min-width:960px) and (max-width:1200px){.mec-wrap .threedaydigits ul{height:50px;width:47px}}@media screen and (min-width:480px) and (max-width:768px){.mec-wrap .threedaydigits ul{height:48px;width:26px!important}.mec-wrap .threedaydigits .flip-clock-label{font-size:8px;left:-8px}}@media screen and (min-width:320px) and (max-width:480px){.mec-wrap .threedaydigits ul{height:48px;width:22px!important}}.mec-wrap .flip-clock-wrapper *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.mec-wrap .flip-clock-wrapper a{cursor:pointer;text-decoration:none;color:#ccc}.mec-wrap .flip-clock-wrapper a:hover{color:#fff}.mec-wrap .flip-clock-wrapper ul{list-style:none}.flip-clock-wrapper.clearfix:after,.mec-wrap .flip-clock-wrapper.clearfix:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper.clearfix:after{clear:both}.mec-wrap .flip-clock-wrapper{font:normal 11px "helvetica neue",helvetica,sans-serif;-webkit-user-select:none}.mec-wrap .flip-clock-meridium{background:0 0!important;box-shadow:0 0 0!important;font-size:36px!important}.mec-wrap .flip-clock-meridium a{color:#313333}.mec-wrap .flip-clock-wrapper{text-align:center;position:relative;display:inline-block;padding-bottom:10px}.flip-clock-wrapper:after,.mec-wrap .flip-clock-wrapper:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper:after{clear:both}.mec-wrap .flip-clock-wrapper ul{position:relative;float:left;margin:2px;width:50px;height:50px;font-size:80px;font-weight:700;line-height:87px;border-radius:3px;background:rgba(0,0,0,.21)}.mec-wrap .flip-clock-wrapper ul li{z-index:1;position:absolute;left:0;top:0;width:100%;height:100%;line-height:54px;text-decoration:none!important}.mec-wrap .flip-clock-wrapper ul li:first-child{z-index:2}.mec-wrap .flip-clock-wrapper ul li a{display:block;height:100%;-webkit-perspective:200px;-moz-perspective:200px;perspective:200px;margin:0!important;overflow:visible!important;cursor:default!important}.mec-wrap .flip-clock-wrapper ul li a div{z-index:1;position:absolute;left:0;width:100%;height:50%;font-size:80px;overflow:hidden;outline:1px solid transparent}.mec-wrap .flip-clock-wrapper ul li a div .shadow{position:absolute;width:100%;height:100%;z-index:2}.mec-wrap .flip-clock-wrapper ul li a div.up{-webkit-transform-origin:50% 100%;-moz-transform-origin:50% 100%;-ms-transform-origin:50% 100%;-o-transform-origin:50% 100%;transform-origin:50% 100%;top:0}.mec-wrap .flip-clock-wrapper ul li a div.up:after{content:"";position:absolute;top:24px;left:0;z-index:5;width:100%;height:3px;background-color:rgba(0,0,0,.12)}.mec-wrap .flip-clock-wrapper ul li a div.down{-webkit-transform-origin:50% 0;-moz-transform-origin:50% 0;-ms-transform-origin:50% 0;-o-transform-origin:50% 0;transform-origin:50% 0;bottom:0;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.mec-wrap .flip-clock-wrapper ul li a div div.inn{position:absolute;left:0;z-index:1;width:100%;height:200%;color:#fff;text-shadow:0 0 2px rgba(0,0,0,.25);text-align:center;background-color:#40d9f1;border-radius:3px;font-size:48px}.mec-wrap .flip-clock-wrapper ul li a div.up div.inn{top:0}.mec-wrap .flip-clock-wrapper ul li a div.down div.inn{bottom:0}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-before{z-index:3}.mec-wrap .flip-clock-wrapper .flip{box-shadow:0 2px 5px rgba(0,0,0,.17)}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-active{-webkit-animation:asd .5s .5s linear both;-moz-animation:asd .5s .5s linear both;animation:asd .5s .5s linear both;z-index:5}.mec-wrap .flip-clock-divider{float:left;display:inline-block;position:relative;width:18px;height:62px}.mec-wrap .flip-clock-divider:first-child{width:0}.mec-wrap .flip-clock-dot{display:none;background:#323434;width:10px;height:10px;position:absolute;border-radius:50%;box-shadow:0 0 5px rgba(0,0,0,.5);left:5px}.mec-wrap .flip-clock-divider .flip-clock-label{position:absolute;bottom:-1.5em;right:-71px;color:#101010;font-weight:700;text-shadow:none;text-transform:uppercase}.mec-wrap .blox.dark .flip-clock-divider .flip-clock-label{color:#8a8a8a}.mec-wrap .flip-clock-divider.seconds .flip-clock-label{right:-82px}.mec-wrap .flip-clock-dot.top{top:30px}.mec-wrap .flip-clock-dot.bottom{bottom:30px}@-webkit-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-moz-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-o-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}.flip-clock-wrapper ul.play li.flip-clock-active .down{z-index:2;-webkit-animation:turn .5s .5s linear both;-moz-animation:turn .5s .5s linear both;animation:turn .5s .5s linear both}@-webkit-keyframes turn{0%{-webkit-transform:rotatex(90deg)}100%{-webkit-transform:rotatex(0)}}@-moz-keyframes turn{0%{-moz-transform:rotatex(90deg)}100%{-moz-transform:rotatex(0)}}@-o-keyframes turn{0%{-o-transform:rotatex(90deg)}100%{-o-transform:rotatex(0)}}@keyframes turn{0%{transform:rotatex(90deg)}100%{transform:rotatex(0)}}.flip-clock-wrapper ul.play li.flip-clock-before .up{z-index:2;-webkit-animation:turn2 .5s linear both;-moz-animation:turn2 .5s linear both;animation:turn2 .5s linear both}@-webkit-keyframes turn2{0%{-webkit-transform:rotatex(0)}100%{-webkit-transform:rotatex(-90deg)}}@-moz-keyframes turn2{0%{-moz-transform:rotatex(0)}100%{-moz-transform:rotatex(-90deg)}}@-o-keyframes turn2{0%{-o-transform:rotatex(0)}100%{-o-transform:rotatex(-90deg)}}@keyframes turn2{0%{transform:rotatex(0)}100%{transform:rotatex(-90deg)}}.flip-clock-wrapper ul li.flip-clock-active{z-index:3}.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .3s linear both}.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .2s linear both}@-webkit-keyframes show{0%{opacity:0}100%{opacity:1}}@-moz-keyframes show{0%{opacity:0}100%{opacity:1}}@-o-keyframes show{0%{opacity:0}100%{opacity:1}}@keyframes show{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes hide{0%{opacity:1}100%{opacity:0}}@-moz-keyframes hide{0%{opacity:1}100%{opacity:0}}@-o-keyframes hide{0%{opacity:1}100%{opacity:0}}@keyframes hide{0%{opacity:1}100%{opacity:0}}@font-face{font-family:simple-line-icons;src:url("../fonts/Simple-Line-Icons.eot?v=2.3.1");src:url("../fonts/Simple-Line-Icons.eot?v=2.3.1#iefix") format("embedded-opentype"),url("../fonts/Simple-Line-Icons.woff2?v=2.3.1") format("woff2"),url("../fonts/Simple-Line-Icons.woff?v=2.3.1") format("woff"),url("../fonts/Simple-Line-Icons.ttf?v=2.3.1") format("truetype"),url("../fonts/Simple-Line-Icons.svg?v=2.3.1#simple-line-icons") format("svg");font-weight:400;font-style:normal}[class*=mec-sl-]{font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mec-sl-facebook:before{content:"\e00b"}.mec-sl-twitter:before{content:"\e009"}.mec-sl-google-plus:before{content:"\e60d"}.mec-sl-angle-left:before{content:"\e605"}.mec-sl-angle-right:before{content:"\e606"}.mec-sl-calendar:before{content:"\e075"}.mec-sl-clock-o:before{content:"\e081"}.mec-sl-home:before{content:"\e069"}.mec-sl-phone:before{content:"\e600"}.mec-sl-envelope:before{content:"\e086"}.mec-sl-sitemap:before{content:"\e037"}.mec-sl-map-marker:before{content:"\e096"}.mec-sl-floder:before{content:"\e089"}.mec-sl-wallet:before{content:"\e02a"}.mec-color,.mec-color-before :before,.mec-color-hover:hover,.mec-wrap .mec-color,.mec-wrap .mec-color-before :before,.mec-wrap .mec-color-hover:hover{color:#40d9f1}.mec-bg-color,.mec-bg-color-hover:hover,.mec-wrap .mec-bg-color,.mec-wrap .mec-bg-color-hover:hover{background-color:#40d9f1}.mec-box-marker,.mec-vip-content-notice{box-shadow:5px 0 0 #40d9f1 inset;padding:5px 10px}.mec-border-color,.mec-border-color-hover:hover,.mec-wrap .mec-border-color,.mec-wrap .mec-border-color-hover:hover{border-color:#40d9f1}.mec-toggle-month-divider.mec-skin-list-events-container{border:1px solid #e8e8e8;margin-bottom:30px;background:#f8f8f8;box-shadow:0 2px 18px -1px rgba(0,0,0,.1);border-radius:2px}.mec-toggle-month-divider .mec-month-divider{margin:0;text-align:left;background:#fff;position:relative;cursor:pointer;border-top:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider span{padding:20px;border-bottom:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider i{position:absolute;right:20px;top:24px;font-size:20px;cursor:pointer}.mec-toggle-month-divider .mec-month-divider span:before{display:none}.mec-toggle-month-divider .mec-month-divider+article{margin-top:20px}.mec-toggle-month-divider .mec-wrap .mec-month-divider:first-of-type{border-top:none}.mec-toggle-month-divider .mec-event-list-accordion .mec-month-divider:not(:first-of-type)~article{display:none}.mec-skin-list-events-container:not(.mec-toggle-month-divider) .mec-month-divider i{display:none}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-month{display:inline-block;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-date{font-size:14px;line-height:14px;float:none;display:inline-block;margin-right:0;font-weight:700}.mec-events-toggle .mec-toogle-inner-month-divider.mec-toggle-item-inner{padding:20px 60px 30px 15px}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{float:left;clear:right;width:100px;margin-right:20px;margin-left:10px}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-detail{margin-top:-6px}.mec-toogle-inner-month-divider .mec-toggle-item-col{float:none;width:100%;margin-top:10px;display:block;border:none}.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:19px;display:block;padding-top:10px}@media only screen and (max-width:768px){.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:14px;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col{margin-top:0}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{width:70px}}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-custom,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured{overflow:hidden;position:relative}.mec-event-label-captions{z-index:1;position:absolute;top:20px;right:-37px;font-size:11px;letter-spacing:1px;text-transform:uppercase;background:#04de78;padding:2px 40px;color:#fff;-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:.5s cubic-bezier(.25, .5, .06, .85);transition:.5s cubic-bezier(.25, .5, .06, .85);list-style:none;text-align:center}.mec-box-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-event-label-captions{display:none}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before{background:#de0404}.mec-daily-view-date-events article:before,ul.mec-weekly-view-dates-events article:before{padding:7px 40px!important;top:27px!important}.mec-event-grid-classic article .mec-fc-style,.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style,.mec-timeline-event .mec-fc-style,.mec-timetable-wrap article .mec-fc-style,.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article.mec-event-cover-modern .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{font-size:9px;letter-spacing:.5px;text-transform:uppercase;background:#04de78;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px}.mec-timeline-event.mec-label-canceled .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-modern.mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-minimal article .mec-fc-style:before,.mec-event-grid-simple article .mec-fc-style:before,.mec-timeline-event .mec-fc-style:before,.mec-timetable-wrap article .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article .mec-fc-style:before,.mec-wrap .mec-event-list-modern article .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style:before{width:0;height:0;border-top:4px solid transparent!important;border-right:5px solid;border-bottom:4px solid transparent;margin:0;top:50%;left:-5px;transform:translateY(-4.5px);position:absolute;content:"";color:var(--background-color)}.mec-timeline-event.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-event-grid-classic article.mec-label-canceled:before,.mec-event-grid-classic article.mec-label-featured:before,.mec-event-grid-minimal article.mec-label-canceled:before,.mec-event-grid-minimal article.mec-label-featured:before,.mec-event-grid-simple article.mec-label-canceled:before,.mec-event-grid-simple article.mec-label-featured:before,.mec-timetable-wrap article.mec-label-canceled:before,.mec-timetable-wrap article.mec-label-featured:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled:before,.mec-wrap .mec-event-list-accordion article.mec-label-featured:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled:before,.mec-wrap .mec-event-list-modern article.mec-label-featured:before{display:none}.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{top:-1px;right:-3px;font-size:11px;white-space:nowrap}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style:before,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-canceled:before,.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-featured:before{-ms-transform:none;-webkit-transform:none;transform:none;-webkit-transition:none;transition:none;top:271px;right:0}.mec-timetable-wrap article .mec-fc-style{top:-2px;font-size:10px;right:0}.mec-wrap article.mec-event-cover-modern .mec-fc-style{padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px;display:inline-block;border-radius:2px;-ms-transform:rotate(0);-webkit-transform:rotate(0);transform:rotate(0);right:0;top:0}.mec-skin-grid-events-container .mec-wrap .mec-event-grid-clean .mec-event-article:before{-ms-transform:none;-webkit-transform:none;transform:none!important;-webkit-transition:none;transition:none;top:22px!important;right:22px!important;padding:0 10px!important}.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style{top:-4px;font-size:10px;margin-left:10px;right:0}.mec-event-grid-classic article .mec-fc-style{padding:5px 20px;font-size:12px;margin-top:8px;display:inline-block}.mec-load-month-link{color:#a9a9a9;font-size:12px;font-weight:400;letter-spacing:1px;text-transform:uppercase;text-decoration:unset;transition:all .33s ease}ul.mec-categories{padding:0}ul.mec-categories li.mec-category{list-style:none}ul.mec-categories li.mec-category a{font-weight:400;color:#626262;font-size:13px;text-align:left;transition:all .23s ease;-webkit-transition:all .23s ease}.mec-wrap [id^=mec_skin_events_] .mec-event-data-fields{display:inline-block;width:20px;height:20px;position:relative;cursor:pointer;margin:0 4px;background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAABmJLR0QA/wD/AP+gvaeTAAAD90lEQVRoge2ZzWscZRjAf8/OJpUkQrF6SJMcNB+zobVdk8WCWEwqBEou0kMKtkgPHoRUD54VFMQ/wJBYhJ6MoGvFg3rQQ7dQFJVN09RANl9UkrgRbVrFuDZpZh4PSWqYmd2Z2a8Ize+0+7zPO/N7dt7l/RjYY48HGynHRZKqRltm7mmBXo1It9jEEBqBhq2UVYSswrTYmraVVFdn248iYpd675IK+GluruXehg4KchZoCtl9SVRHJcrw0fb2pWIdiirg2uzsY2LLOyjngNpib77FOujFdd1481hn50rYzqELGJ+afxGxh0AeCdvXhxURBuNm2ydhOgUuIJ1O1xgN+0eAl0OrhUDgwp3lxVd7e3s3Aub7k05n64yG3CXgZEl2QVG+sv6uG0gkDub8UiN+CZu/fBXlAYR+oz6XTKVSUb9U3wK2hk315LcR+vc3Nr/nn1aA8cz8GdDR8lmFR9DT8Vh7Mn97Hn6YmjpQKzUZ4NGKmAVnxRIrljDNW16NeYdQbaTmXXZfHuCAYUffytfo+QQmZmebbUvmKX2SKhdrIlZr3DR/cTZ4PgHL4jz/H3mAfUp00KvBVYCqRgQ5U3mnkKi+lFQ1nGFXAeOZuWNAc1WkwtHUMXOz2xl0FSDQWx2f8NjoCWfM4z8giWrIFIMorifgnqojdKDeF7Asi69TVxm7MYkIdB85TF/PcQzDqGjeNoqa/gWoNuab3765cpUr331//3vq283PJ5/vqWjeNgKNzpjXEGpwxzZJT0zuSmwHDzsDvou5nYjHg4l4xMqdVwiPAnQ1X3L3kcOuWNfRJyuet4O/nAH3f0BkGcVzu9jXcxyAsRuT9wX6nnu24nnbKCy7dJ2Ba9Nzn4lyKu9VdhX59KlY68DOiHsis3WsekLhEHC5uQqwlcvV0QmPitvNNYRUNTI+Pf+zQEt1tAKzEDdbH3ee5rmHkIgdUf2oel4BEUa9jiI95wGJMgysV1wqOGuCNeLV4FnA5lmlXqysU3BE+MBrNwaF9sTWQ28Av1fMKjgra/a9t/M15i3g0KGW2yq8Vhmn4Cj6SqFD34JroS6z7WOBC+XXCoYIQ12x9kuFcnwXczNm63mUz8unFRDRL+9kF1/3TQtyrXQ6W2fU55II/aWb+aPIF3fra08/09Lyj19uoOV0InEw98eviy+Avl+6XmFEGPpzeeFUEHko4gXH9czsgCLDlP/U7jdFB/3GvJNQGxqAeKw9WWvtM1EZBtbC9ncicFeEIWO9JhZWfqt/8Vyfnm5SooOqeraItdMC8KGyMdIVi2WLdSjLa1ZVjUzM3EzY6AlRuhU1BW36b3+tqyBLIDMCaRUuxzueGCvHa9Y99njQ+RcbkGTacAW/agAAAABJRU5ErkJggg==");background-position:center center;background-size:cover}.mec-wrap [id^=mec_skin_events_] .mec-event-data-fields .mec-data-fields-tooltip{position:absolute;width:340px;bottom:24px;left:calc(50% - 170px);background:#fff;border-radius:5px;border:1px solid #535a6121;box-shadow:0 4px 45px -8px #444b5061;visibility:hidden;opacity:0;transition:opacity .18s ease,transform .18s ease,visibility .25s ease;transform:scale(.9);z-index:99}.mec-wrap [id^=mec_skin_events_] .mec-event-data-fields:hover .mec-data-fields-tooltip{visibility:visible;opacity:1;transform:scale(1)}.mec-wrap [id^=mec_skin_events_] .mec-event-data-fields .mec-data-fields-tooltip:before{display:block;content:"";position:absolute;width:12px;height:12px;left:calc(50% - 12px);top:100%;transform:translate(50%,-50%) rotate(-45deg);background-color:#fff;box-shadow:0 8px 9px -4px #535a61;z-index:0}.mec-wrap [id^=mec_skin_events_] .mec-event-data-fields .mec-data-fields-tooltip .mec-data-fields-tooltip-box{overflow:hidden;border-radius:11px;padding:12px 0}.mec-wrap [id^=mec_skin_events_] .mec-event-data-fields .mec-data-fields-tooltip .mec-data-fields-tooltip-box ul{width:100%;height:200px;overflow-y:scroll;padding:9px 15px;text-align:left}.mec-wrap [id^=mec_skin_events_] .mec-event-data-fields .mec-data-fields-tooltip .mec-data-fields-tooltip-box ul::-webkit-scrollbar-track{background-color:#fafafa}.mec-wrap [id^=mec_skin_events_] .mec-event-data-fields .mec-data-fields-tooltip .mec-data-fields-tooltip-box ul::-webkit-scrollbar{width:4px;background-color:#fafafa}.mec-wrap [id^=mec_skin_events_] .mec-event-data-fields .mec-data-fields-tooltip .mec-data-fields-tooltip-box ul::-webkit-scrollbar-thumb{background-color:#40d9f1;border-radius:4px}.mec-wrap [id^=mec_skin_events_] .mec-event-data-fields .mec-data-fields-tooltip .mec-data-fields-tooltip-box ul .mec-event-data-field-item{display:block;width:100%;text-transform:none;margin:0 0 8px 0;color:#616263;font-size:13px;line-height:1.5;font-weight:400;padding-bottom:8px;border-bottom:1px dashed #e1e2e3}.mec-wrap [id^=mec_skin_events_] .mec-event-data-fields .mec-data-fields-tooltip .mec-data-fields-tooltip-box ul .mec-event-data-field-item:last-child{border-bottom:none}.mec-wrap [id^=mec_skin_events_] .mec-data-fields-tooltip .mec-data-fields-tooltip-box ul .mec-event-data-field-item a{color:#40d9f1;font-size:13px;line-height:1.5;font-weight:400}.mec-wrap [id^=mec_skin_events_] .mec-data-fields-tooltip .mec-data-fields-tooltip-box ul .mec-event-data-field-item a:hover{color:#000}.mec-wrap .mec-custom-data .mec-timetable-t2-content,.mec-wrap .mec-custom-data .mec-timetable-t2-content .mec-event-title,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-custom-data.mec-label-canceled,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-custom-data.mec-label-featured{overflow:visible!important}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-custom-data.mec-label-canceled .mec-event-label-captions,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-custom-data.mec-label-featured .mec-event-label-captions{-ms-transform:rotate(0);-webkit-transform:rotate(0);transform:rotate(0);width:fit-content;top:7px;right:7px;padding:2px 5px;border-radius:4px}@media(min-width:768px){.mec-wrap [id^=mec_skin_events_] .mec-event-list-standard .mec-label-canceled .mec-event-data-fields .mec-data-fields-tooltip,.mec-wrap [id^=mec_skin_events_] .mec-event-list-standard .mec-label-custom .mec-event-data-fields .mec-data-fields-tooltip,.mec-wrap [id^=mec_skin_events_] .mec-event-list-standard .mec-label-featured .mec-event-data-fields .mec-data-fields-tooltip{bottom:calc(50% - 110px);left:30px}.mec-wrap [id^=mec_skin_events_] .mec-event-list-standard .mec-label-canceled .mec-event-data-fields .mec-data-fields-tooltip:before,.mec-wrap [id^=mec_skin_events_] .mec-event-list-standard .mec-label-custom .mec-event-data-fields .mec-data-fields-tooltip:before,.mec-wrap [id^=mec_skin_events_] .mec-event-list-standard .mec-label-featured .mec-event-data-fields .mec-data-fields-tooltip:before{left:-10px;top:calc(100% - 110px);box-shadow:-8px -5px 9px -4px #535a61}}.mec-hourly-schedule-speaker-info{background:#fff;padding:30px;border:1px solid #e6e6e6;max-width:740px;width:740px;margin-left:-110px}.mec-hourly-schedule-speaker-thumbnail{float:left;max-width:30%;width:30%}.mec-hourly-schedule-speaker-name{font-weight:700;font-size:26px;line-height:1.2;color:#333;text-transform:uppercase}.mec-hourly-schedule-speaker-details{float:left;width:69%;padding-left:25px}.mec-hourly-schedule-speaker-job-title{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-hourly-schedule-speaker-description{font-size:14px;font-weight:400;color:#6d7683;line-height:1.7;text-align:left}.mec-hourly-schedule-speaker-contact-information a i{color:#6b6b6b;background:#ebebeb;line-height:29px;margin:9px 7px 9px 0;width:30px;height:30px;display:inline-block;text-align:center;transition:all .2s ease;font-size:15px;cursor:pointer;border-radius:3px}.mec-hourly-schedule-speaker-contact-information a i:hover{background:#222;color:#fff}@media only screen and (max-width:479px){.mec-hourly-schedule-speaker-thumbnail{float:none;max-width:none;margin-right:0;margin-bottom:15px;width:100%}.mec-hourly-schedule-speaker-thumbnail img{width:100%}.mec-hourly-schedule-speaker-details{padding-left:0}.mec-hourly-schedule-speaker-info{width:90%;margin:0 auto}}.mec-profile .mec-profile-bookings{border:2px solid #e6e6e6;text-align:center}.mec-profile .mec-profile-bookings tbody tr:first-child{background:#f7f7f7;font-weight:700;text-transform:capitalize}.mec-profile .mec-profile-bookings tbody tr{border-bottom:1px solid #e6e6e6;font-size:14px}.mec-profile .mec-profile-bookings tbody tr td{border:1px solid #e6e6e6;padding:10px;text-align:center;word-break:initial}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:53%;text-align:left}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8) i{color:#fe686a}.mec-profile .mec-event-status{padding:5px 10px;color:#fff;border-radius:2px;font-size:12px;line-height:12px;letter-spacing:.4px}.mec-profile .mec-event-status.mec-book-confirmed{background:#50d477}.mec-profile .mec-event-status.mec-book-pending{background:#fcbe69}.mec-profile .mec-event-status.mec-book-rejected{background:#fe686a}.mec-profile .mec-event-date{font-size:12px;color:#888}.mec-event-date,.mec-event-status{text-align:center}.mec-event-date .mec-tooltip,.mec-event-status .mec-tooltip{position:relative;width:fit-content;margin:auto}.mec-profile i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{min-width:250px;max-width:300px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal;opacity:0;visibility:hidden;display:none}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:13px;letter-spacing:1.1px;font-weight:500}.mec-event-date .mec-tooltip:hover .box:after,.mec-event-status .mec-tooltip:hover .box:after{content:"";position:absolute;width:12px;height:12px;left:calc(50% - 12px);bottom:-12px;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-event-status .mec-tooltip .box{min-width:100px}.mec-event-status.mec-book-confirmed .mec-tooltip .box,.mec-event-status.mec-book-confirmed .mec-tooltip:hover .box:after{background-color:#50d477}.mec-event-status.mec-book-rejected .mec-tooltip .box,.mec-event-status.mec-book-rejected .mec-tooltip:hover .box:after{background-color:#fe686a}.mec-event-status.mec-book-pending .mec-tooltip .box,.mec-event-status.mec-book-pending .mec-tooltip:hover .box:after{background-color:#fcbe69}.mec-event-date .mec-tooltip:hover .box,.mec-event-status .mec-tooltip:hover .box{opacity:1;visibility:visible;display:block}.mec-profile .mec-event-status{padding:0}.mec-profile .mec-booking-number-of-attendees{font-size:13px;color:#888}.mec-profile .mec-booking-number-of-attendees i,.mec-profile .mec-profile-bookings-view-invoice i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-booking-attendees{background:#fff;padding:10px}.mec-booking-attendees{width:850px;text-align:center}.mec-booking-attendees-wrapper{border:2px solid #e6e6e6;font-size:14px}.mec-booking-attendees-head{display:table;width:100%;background:#f7f7f7;border-bottom:1px solid #e6e6e6;font-weight:700}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{vertical-align:middle;display:table-cell;padding:7px;border-right:1px solid #e6e6e6;font-size:12px}.mec-booking-attendees-head-content{display:table;width:100%;border-bottom:1px solid #e6e6e6}.mec-booking-attendees-wrapper .mec-booking-attendees-head-content:last-child{border:none}.mec-booking-attendees-head span:nth-child(1),.mec-booking-attendees-head-content>span:nth-child(1){width:4%}.mec-booking-attendees-head span:nth-child(2),.mec-booking-attendees-head-content>span:nth-child(2){width:20%}.mec-booking-attendees-head span:nth-child(3),.mec-booking-attendees-head-content>span:nth-child(3){width:24%}.mec-booking-attendees-head span:nth-child(4),.mec-booking-attendees-head-content>span:nth-child(4){width:26%}.mec-booking-attendees-head span:nth-child(5),.mec-booking-attendees-head-content>span:nth-child(5){width:26%}@media only screen and (max-width:759px){.mec-booking-attendees{width:470px}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{word-break:break-all}}@media (max-width:1366px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:6%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:40%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:8%}}@media (max-width:1024px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:30%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:15%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:10%}}@media (max-width:780px){.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:12px}.mec-event-date .mec-tooltip .box{min-width:200px}.mec-event-status .mec-tooltip .box{min-width:90px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}.mec-profile .mec-profile-bookings tbody tr{font-size:12px}}@media (max-width:480px){.mec-profile .mec-booking-number-of-attendees,.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:8px!important}.mec-profile .mec-profile-bookings tbody tr td{padding:3px}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:19%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:18%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:13%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:13%}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:8px}.mec-event-date .mec-tooltip .box{min-width:75px}.mec-event-status .mec-tooltip .box{min-width:70px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}}.mec-woo-booking-checkout{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;border-radius:0;margin-bottom:6px;min-width:170px;margin-top:5px;text-align:center}.mec-woo-booking-checkout:hover{background:#222;color:#fff}.mec-woo-booking-checkout:focus,.mec-woo-booking-checkout:visited{color:#fff}.single-mec-events .lity-container{max-width:480px;width:480px}.lity-content .mec-events-meta-group-booking{width:100%;padding:20px 50px;background:#fff}.lity-content .mec-events-meta-group-booking .mec-booking form>h4{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center;line-height:1.2;margin-bottom:10px}.lity-content .mec-events-meta-group-booking .mec-booking form>h4:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available,.lity-content .mec-events-meta-group-booking .mec-event-ticket-name,.lity-content .mec-events-meta-group-booking .mec-event-ticket-price,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-name,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-price,.lity-content .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;clear:none;padding:5px 1em 3px 0;display:inline-block}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available{margin-bottom:12px}.lity-content .mec-events-meta-group-booking select{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}.lity-content .mec-events-meta-group-booking input[type=email]{color:#888;border:1px solid #e1e1e1;font-size:14px;display:block;width:100%;outline:0}.lity-content .mec-events-meta-group-booking input{margin-bottom:10px!important}.lity-content .mec-book-ticket-variation h5{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:0;clear:none;padding:5px 1em 3px 0;display:inline-block;text-transform:capitalize}.lity-content ul.mec-book-tickets-container{padding:0}.lity-content .mec-events-meta-group-booking input[type=email],.lity-content .mec-events-meta-group-booking input[type=number],.lity-content .mec-events-meta-group-booking input[type=text]{outline:0;display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;margin-bottom:2px!important}.lity-container .mec-click-pay #mec_woo_add_to_cart_btn_r,.lity-content button[type=submit]{position:relative;border:none;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px}.lity-content button[type=submit]:hover{background:#222}.lity-content .mec-book-tickets-container li{list-style:none}.lity-content .mec-events-meta-group-booking #mec_book_payment_form h4,.lity-content .mec-events-meta-group-booking li h4{font-size:19px;font-weight:700}.lity-content .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li{width:50%}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li:nth-child(even){border:none}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li span{display:block}.lity-content .mec-events-meta-group-booking button[type=submit]:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.lity-content .mec-events-meta-group-booking button[type=submit].loading:after{display:inline-block}@media only screen and (max-width:480px){.lity-content .mec-events-meta-group-booking{padding:20px;width:340px;margin:0 auto}}@media (max-width:480px){.single-mec-events .lity-container{max-width:440px;width:440px;margin:0 auto!important}}@media (max-width:411px){.single-mec-events .lity-container{max-width:380px;width:380px}}@media (max-width:375px){.single-mec-events .lity-container{max-width:350px;width:350px}}@media (max-width:320px){.single-mec-events .lity-container{max-width:300px;width:300px}}.mec-events-meta-group-booking{position:relative}.mec-cover-loader:after{content:"";position:absolute;top:0;right:0;left:0;bottom:0;background:rgba(255,255,255,.5);z-index:99999}.mec-loader{background:rgba(0,0,0,0);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:9}.mec-loader,.mec-loader:after{border-radius:50%;width:5em;height:5em;z-index:999999999999}.mec-loader{font-size:10px;text-indent:-9999em;border-top:.5em solid rgba(0,0,0,.2);border-right:.5em solid rgba(0,0,0,.2);border-bottom:.5em solid rgba(0,0,0,.2);border-left:.5em solid #fff;-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear}@-webkit-keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.mec-google-recaptcha{margin:0 0 20px 16px}.mec-wrap *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap :after,.mec-wrap :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap .clearfix:after,.mec-wrap .clearfix:before{content:"\0020";display:block;overflow:hidden;visibility:hidden;width:0;height:0}.mec-wrap .clearfix:after{clear:both}.mec-wrap .clearfix{zoom:1}.mec-wrap .clear,.mec-wrap .clr{clear:both;display:block;overflow:hidden;visibility:hidden}.mec-wrap .clr{visibility:visible;overflow:visible}.mec-container [class*=col-] img{max-width:100%}.mec-container{margin-right:auto;margin-left:auto;padding-left:10px;padding-right:10px}.mec-container:after,.mec-container:before{content:" ";display:table}.mec-container:after{clear:both}@media only screen and (max-width:479px){.mec-container{width:300px}}@media only screen and (min-width:480px) and (max-width:767px){.mec-container{width:420px}}@media only screen and (min-width:768px) and (max-width:960px){.mec-container{width:768px}}@media only screen and (min-width:961px){.mec-container{width:960px}}@media only screen and (min-width:1200px){.mec-container{width:1196px;padding-left:15px;padding-right:15px}}@media only screen and (min-width:1921px){.mec-container{max-width:1690px}}.mec-wrap .row{margin-left:-10px;margin-right:-10px}.mec-wrap .row:after,.mec-wrap .row:before{content:" ";display:table}.mec-wrap .row:after{clear:both}.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{position:relative;min-height:1px;padding-left:10px;padding-right:10px}@media only screen and (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{padding-left:15px;padding-right:15px}.mec-wrap .row{margin-left:-15px;margin-right:-15px}}.mec-container [class*=col-].alpha{padding-left:0}.mec-container [class*=col-].omega{padding-right:0}.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{float:left}.mec-wrap .col-xs-12{width:100%}.mec-wrap .col-xs-11{width:91.66666666666666%}.mec-wrap .col-xs-10{width:83.33333333333334%}.mec-wrap .col-xs-9{width:75%}.mec-wrap .col-xs-8{width:66.66666666666666%}.mec-wrap .col-xs-7{width:58.333333333333336%}.mec-wrap .col-xs-6{width:50%}.mec-wrap .col-xs-5{width:41.66666666666667%}.mec-wrap .col-xs-4{width:33.33333333333333%}.mec-wrap .col-xs-3{width:25%}.mec-wrap .col-xs-2{width:16.666666666666664%}.mec-wrap .col-xs-1{width:8.333333333333332%}@media (min-width:768px){.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9{float:left}.mec-wrap .col-sm-12{width:100%}.mec-wrap .col-sm-11{width:91.66666666666666%}.mec-wrap .col-sm-10{width:83.33333333333334%}.mec-wrap .col-sm-9{width:75%}.mec-wrap .col-sm-8{width:66.66666666666666%}.mec-wrap .col-sm-7{width:58.333333333333336%}.mec-wrap .col-sm-6{width:50%}.mec-wrap .col-sm-5{width:41.66666666666667%}.mec-wrap .col-sm-4{width:33.33333333333333%}.mec-wrap .col-sm-3{width:25%}.mec-wrap .col-sm-2{width:16.666666666666664%}.mec-wrap .col-sm-1{width:8.333333333333332%}}@media (min-width:961px){.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9{float:left}.mec-wrap .col-md-12{width:100%}.mec-wrap .col-md-11{width:91.66666666666666%}.mec-wrap .col-md-10{width:83.33333333333334%}.mec-wrap .col-md-9{width:75%}.mec-wrap .col-md-8{width:66.66666666666666%}.mec-wrap .col-md-7{width:58.333333333333336%}.mec-wrap .col-md-6{width:50%}.mec-wrap .col-md-5{width:41.66666666666667%}.mec-wrap .col-md-4{width:33.33333333333333%}.mec-wrap .col-md-3{width:25%}.mec-wrap .col-md-2{width:16.666666666666664%}.mec-wrap .col-md-1{width:8.333333333333332%}}@media (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9{float:left}.mec-wrap .col-lg-12{width:100%}.mec-wrap .col-lg-11{width:91.66666666666666%}.mec-wrap .col-lg-10{width:83.33333333333334%}.mec-wrap .col-lg-9{width:75%}.mec-wrap .col-lg-8{width:66.66666666666666%}.mec-wrap .col-lg-7{width:58.333333333333336%}.mec-wrap .col-lg-6{width:50%}.mec-wrap .col-lg-5{width:41.66666666666667%}.mec-wrap .col-lg-4{width:33.33333333333333%}.mec-wrap .col-lg-3{width:25%}.mec-wrap .col-lg-2{width:16.666666666666664%}.mec-wrap .col-lg-1{width:8.333333333333332%}}#mec_woo_add_to_cart_btn{min-width:170px;margin-top:5px;text-align:center}.mec-breadcrumbs{border-radius:2px;padding:9px 15px 6px;font-size:11px;color:#8d8d8d;letter-spacing:0;text-transform:none;font-weight:500;margin:auto 15px 33px 15px;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.025)}.mec-breadcrumbs-modern{margin:auto 0 33px 0}.mec-breadcrumbs a{color:#000;padding-left:4px}.mec-breadcrumbs a:hover{text-decoration:underline}.mec-breadcrumbs i{font-size:8px;margin:0 0 0 4px}.mec-breadcrumbs .container{padding-left:20px}.mec-content-notification a{margin-left:5px}.mec-content-notification{background:#f7f7f7;padding:10px 10px 10px;border:1px solid #e8e8e8}.mec-content-notification p{margin-bottom:0}.mec-fes-form #mec-advanced-wraper div:first-child>ul{border:1px solid #cfeff5;width:auto;box-shadow:0 1px 4px -2px #cfeff5;display:block;margin:5px 0 10px;padding:5px 0;border-radius:2px}.mec-fes-form #mec-advanced-wraper div:first-child>ul:last-of-type{margin-bottom:35px}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #cfeff5}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li.mec-active,.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li:hover{background:#40d9f1!important;box-shadow:0 1px 9px -3px #40d9f1;color:#fff!important}.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:83%}.mec-search-bar-wrap .mec-search-form .mec-ajax-search-result .mec-text-input-search{width:100%;float:none}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 84%);margin-left:11px;background:#40d9f1;color:#fff;font-weight:400}.mec-text-input-search+input#mec-search-bar-input{margin-left:-3px}.mec-search-bar-wrap input#mec-search-bar-input:hover{background:#000}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box input{float:none}@media (max-width:768px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{display:inline-block}}@media (max-width:480px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:64%}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 67%)}}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box{overflow:visible}.mec-ajax-search-result{position:relative}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]{width:calc(100% - 36px)}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]:focus{border-color:#efefef}div#mec-ajax-search-result-wrap{position:absolute;top:100%;opacity:0;visibility:hidden;width:calc(100% - 2px);min-height:50px;left:0;right:0;padding:0 10px;z-index:9999;transition:all .3s ease}.mec-ajax-search-result-events{background:#fff;padding:10px 20px;border:1px solid #efefef;border-top:none}.mec-ajax-search-result-events article:first-of-type{border:none}article.mec-search-bar-result{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease;clear:both}.mec-search-bar-result .mec-event-list-search-bar-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-search-bar-result .mec-event-list-search-bar-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-search-bar-result .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-search-bar-result .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-search-bar-result .mec-event-time i{color:#40d9f1;float:none;width:unset;height:unset;font-size:inherit;margin-right:3px;border:none;padding:0}.mec-search-bar-result .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-search-bar-result .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-search-bar-result .mec-event-detail{font-size:13px;line-height:1.3;color:#9a9a9a;margin-bottom:0}.mec-wrap.mec-modern-search-bar .mec-totalcal-box{background:rgba(255,255,255,.87);border:none;padding:35px;border-radius:3px;box-shadow:0 3px 13px rgba(0,0,0,.4);position:relative}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=search],.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=text]{height:58px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;width:100%;padding-left:45px;padding-right:13px;font-size:16px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box .mec-text-input-search i{position:absolute;background:0 0;border:none;font-size:21px;left:15px;top:calc(50% - 19px);color:#40d9f1}.mec-wrap.mec-modern-search-bar .mec-text-input-search{position:relative;height:58px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=submit]{height:58px;border:none;border-radius:2px;background:#fc4a1a;font-size:17px;font-weight:700!important}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{height:45px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;padding-right:13px;font-size:16px;border-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap i{height:45px;background:#ffff;border-radius:2px 0 0 2px;box-shadow:none;border:1px solid #ccc;font-size:15px;padding-top:14px;border-right:0;color:#40d9f1;margin-right:-1px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap{min-height:64px}@media (max-width:768px){.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:70%}.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:calc(100% - 72%)}}@media (max-width:480px){.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:92%;padding:0 10px;position:relative;display:block;margin-left:11px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:100%;margin-bottom:20px}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:10px}}.mec-wrap .mec-related-events-wrap{margin-left:0;margin-right:0}.mec-related-events{margin-right:-15px;margin-left:-15px}@media(max-width:980px){.mec-related-events{margin-right:-10px;margin-left:-10px}}.mec-related-events-wrap{margin-top:50px}.mec-related-events-wrap h3.mec-rec-events-title:before{content:"";background:#2c2f34;width:46px;height:4px;position:absolute;top:59px;left:0}.mec-related-events-wrap h3.mec-rec-events-title{font-size:21px;font-weight:600;padding:17px 0;margin-bottom:28px;text-transform:uppercase;border-bottom:1px solid #e8e8e8;position:relative}.mec-related-event-post figure{margin:0}.mec-related-event-post figure img{width:100%}.mec-related-event-content{background-color:#fff;margin:-27px 30px 15px;position:relative;max-width:90%;padding:13px 21px 16px 19px}.mec-related-event-content h5 a{font-size:16px;color:#121212;font-weight:600;transition:all .3s ease}@media(max-width:480px){.mec-wrap .mec-related-events .mec-related-event-post{padding-right:15px;padding-left:15px}}.mec-next-previous-events{width:100%;height:104px;display:block;padding:0}.mec-next-previous-events li{list-style:none;width:50%;display:inline-block;margin:40px 0 40px}.mec-next-previous-events li:last-child{text-align:right;float:right}.mec-next-previous-events li a{padding:9px 14px 9px 14px;border:1px solid #000;transition:.3s}.mec-wrap .mec-next-previous-events li a:hover{color:#fff}.mec-previous-event{float:left;text-align:left}.mec-next-event ul{padding-left:0}.mec-next-previous-events .mec-previous-event i{padding-right:20px}.mec-next-previous-events .mec-next-event i{padding-left:20px}.mec-next-multiple ul{padding:0}.mec-next-multiple ul li a{display:block;position:relative;padding:11px 14px 9px;z-index:9}.mec-next-multiple ul .mec-date,.mec-next-multiple ul .mec-time{display:inline-block}.mec-next-multiple ul .mec-time{width:40%}.mec-next-multiple ul .mec-date{width:60%}.mec-next-multiple ul .mec-date{float:left;text-align:left}.mec-next-multiple ul .mec-time{text-align:right;position:relative;z-index:-1}.mec-next-multiple ul .mec-time dd{margin:0;padding:0}.mec-next-multiple ul .mec-date .mec-end-date-label,.mec-next-multiple ul .mec-date .mec-start-date-label,.mec-next-multiple ul .mec-time .mec-events-abbr{font-size:11px;line-height:24px}@media (max-width:1280px){.mec-next-multiple ul li a{padding:7px 9px 5px}.mec-next-multiple ul .mec-date .mec-start-date-label,.mec-next-multiple ul .mec-time .mec-events-abbr{font-size:12px}}@media (max-width:480px){.mec-next-previous-events li{list-style:none;width:100%;display:block;margin:10px 0;float:unset}.mec-next-previous-events li a{width:100%;max-width:100%;float:unset;display:block;text-align:center;font-size:16px}}.mec-fes-form-cntt #mec-organizer-payments ul{list-style:none;background:0 0;margin:0;padding-left:0}.mec-fes-form-cntt #mec-organizer-payments ul li h4{background:0 0;letter-spacing:.2px;display:inline-block;padding-left:0!important;padding-bottom:10px!important;margin:0;margin-bottom:1px;letter-spacing:1px;text-transform:capitalize;padding-top:1px}.mec-fes-form-cntt #mec-organizer-payments ul>li{width:100%;display:inline-block;vertical-align:top;padding:0;margin:0}.mec-fes-form #mec_gateway_options_form_stripe_connection_button{padding:9px 13px!important}#mec-login-form.mec-login-form{width:100%;background:#fff;padding:20px;margin:0 auto;text-align:center;position:relative}#mec-login-form.mec-login-form .mec-login-input{display:block;width:286px;margin:0 auto;margin-bottom:12px}#mec-login-form.mec-login-form .mec-login-forgotpassword{display:inline-block}.mec-login-forgotpassword a{color:#000}#mec-login-form.mec-login-form .mec-login-submit{float:right;text-align:right;width:49%;padding-right:2px}#mec-login-form.mec-login-form .mec-login-input input{border:none;box-shadow:none;background:#fff;color:#ccc;border-left:1px solid #e6e6e6;padding:0;height:100%;background-image:none!important;padding-left:10px;padding-right:0;width:222px;margin-left:0;clear:none;float:left}#mec-login-form.mec-login-form .mec-login-input label{border:1px solid #e6e6e6;height:52px;display:inline-block;padding:0;border-radius:3px;overflow:hidden;box-shadow:0 2px 4px rgba(0,0,0,.04)}#mec-login-form.mec-login-form .mec-login-input label i{padding:15px 13px 17px 16px;vertical-align:middle;font-size:20px;width:50px;color:#c5cad0;background:#fafafa;margin-right:0;float:left}#mec-login-form.mec-login-form .mec-login-forgotpassword{float:left;width:49%;text-align:left;padding-top:10px;font-size:13px;padding-left:2px}#mec-login-form.mec-login-form button{width:120px;height:44px;border:none;color:#fff;border-radius:3px;font-size:12px;font-weight:700;letter-spacing:1px;text-transform:uppercase;transition:all .22s ease;margin:0;min-width:unset}.mec-login-form button{box-shadow:0 4px 22px -7px #40d9f1;background-color:#40d9f1}#mec-login-form.mec-login-form button:hover{background:#222;box-shadow:0 3px 14px -4px #333}#mec-login-form.mec-login-form .mec-login-form-footer{width:286px;margin:0 auto;margin-top:20px;clear:both;position:relative;display:block;min-height:50px}#mec-login-form.mec-login-form .mec-ajax-login-loading{position:absolute;background:#ffffffc2;left:0;right:0;top:0;bottom:0}#mec-login-form.mec-login-form .lds-ripple{position:absolute;width:64px;height:64px;top:calc(50% - 23px);left:calc(50% - 23px)}#mec-login-form.mec-login-form .lds-ripple div{position:absolute;border:4px solid #40d9f1;opacity:1;border-radius:50%;animation:lds-ripple 1.2s cubic-bezier(0,.2,.1,.8) infinite}#mec-login-form.mec-login-form .lds-ripple div:nth-child(2){animation-delay:-.5s}#mec-login-form.mec-login-form .mec-ajax-login-loading-text{position:absolute;min-width:200px;top:calc(50% - 18px);left:calc(50% - 124px);color:#fff;padding:10px 22px;border-radius:3px;background:#fff;height:47px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong{color:#3fcc60}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong:before{content:"";position:absolute;top:8px;left:1px;border-right:2px solid #3fcc60;border-bottom:2px solid #3acb5c;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:8px;height:14px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:after{content:"";position:absolute;top:14px;left:5px;border-bottom:2px solid #ff5d39;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:14px;height:4px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong{color:#ff5d39}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:before{border-color:#ff5d39;border-bottom:none}@keyframes lds-ripple{0%{top:28px;left:28px;width:0;height:0;opacity:1}100%{top:-1px;left:-1px;width:58px;height:58px;opacity:0}}.mec-book-form-gateway-checkout [id*=mec_do_transaction_stripe_] .mec-form-row:first-child{margin-bottom:20px}.mec-events-meta-group-booking .StripeElement{box-sizing:border-box;height:40px;padding:10px 12px;border:1px solid transparent;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]{box-sizing:border-box;height:40px;padding:10px 12px;border:0!important;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1!important;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff!important}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]:focus{outline:0}.mec-events-meta-group-booking .StripeElement--focus{box-shadow:0 1px 3px 0 #cfd7df}.mec-events-meta-group-booking .StripeElement--invalid{border-color:#fa755a}.mec-events-meta-group-booking .StripeElement--webkit-autofill{background-color:#fefde5!important}.mec-booking-tab-content .button,.mec-booking-tab-content .mec-bfixed-field-add-option,.mec-booking-tab-content .mec-reg-field-add-option,.mec-fes-form .mec-form-row .button:not(.wp-color-result),.mec-fes-form input[type=file],ul#mec_bfixed_form_fields li .mec_bfixed_field_remove,ul#mec_orgz_form_row li .mec-additional-organizer-remove,ul#mec_reg_form_fields li .mec_reg_field_remove{height:40px;margin-top:1px;text-decoration:none;font-size:14px;line-height:34px!important;margin:0;padding:0 15px 1px!important;text-transform:none;letter-spacing:0;font-weight:600;color:#40d9f1;background:#fff;border-radius:3px;margin-right:8px;border:2px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5}.mec-fes-form .mec-additional-organizers .select2-container{margin-bottom:0}.mec-booking-tab-content .button:hover,.mec-booking-tab-content .mec-bfixed-field-add-option:hover,.mec-booking-tab-content .mec-reg-field-add-option:hover,.mec-fes-form .mec-form-row .button:not(.wp-color-result):hover{background:#40d9f1;color:#fff;border-color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1}.mec-fes-form .mec-form-row input+button.button{vertical-align:top}.mec-fes-form .mec-form-row .quicktags-toolbar input.button.button-small{border-width:1px;padding:0 7px;color:#80c6d2;font-weight:400;margin:1px;transform:none}.mec-fes-form input[type=file]{max-width:166px;text-align:center;height:44px;transition:all .2s ease;border-radius:5px!important;border:2px dashed #b8e9f3}.mec-fes-form input[type=file]:hover{box-shadow:0 2px 16px -3px #cfeff5}.mec-fes-form input[type=file]::-webkit-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form input[type=file]::-moz-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form .mec-meta-box-fields>label{padding:0}#mec_bfixed_form_fields li,#mec_orgz_form_row li,#mec_reg_form_fields li{list-style:none}ul#mec_bfixed_form_fields,ul#mec_orgz_form_row,ul#mec_reg_form_fields{padding:0;margin:0}ul#mec_bfixed_form_fields li,ul#mec_orgz_form_row li,ul#mec_reg_form_fields li{background:#f8feff;margin:6px -20px;padding:15px 25px 10px;width:auto;font-size:13px;border-top:1px solid #e8fafd;border-bottom:1px solid #e8fafd;position:relative}ul#mec_bfixed_form_fields li .mec_bfixed_field_remove,ul#mec_orgz_form_row li .mec-additional-organizer-remove,ul#mec_reg_form_fields li .mec_reg_field_remove{position:absolute;right:10px;top:10px;margin:0;padding:6px 8px!important;font-size:11px;line-height:12px!important;min-height:10px;height:auto;display:block;cursor:pointer;color:#ea6485;border-color:#ffd2dd;letter-spacing:.4px}ul#mec_bfixed_form_fields li .mec_bfixed_field_remove:hover,ul#mec_orgz_form_row li .mec-additional-organizer-remove:hover,ul#mec_reg_form_fields li .mec_reg_field_remove:hover{background:#ea6485;color:#fff;border-color:#ea6485;box-shadow:0 2px 6px -3px #ea6485}#mec_bfixed_form_fields input[type=checkbox],#mec_bfixed_form_fields input[type=radio],#mec_reg_form_fields input[type=checkbox],#mec_reg_form_fields input[type=radio],.mec-form-row input[type=checkbox],.mec-form-row input[type=radio]{background-color:#fff;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block!important;vertical-align:middle;float:none;transition:all .18s ease;outline:0;margin:1px 4px 4px 0;text-align:left;cursor:pointer;-webkit-appearance:none;-moz-appearance:none}#mec_bfixed_form_fields input[type=checkbox]:focus,#mec_bfixed_form_fields input[type=radio]:focus,#mec_reg_form_fields input[type=checkbox]:focus,#mec_reg_form_fields input[type=radio]:focus,.mec-form-row input[type=checkbox]:focus,.mec-form-row input[type=radio]:focus{outline:0}#mec_bfixed_form_fields input[type=radio],#mec_reg_form_fields input[type=radio],.mec-form-row input[type=radio]{-webkit-appearance:none;border-radius:20px!important;min-width:20px;min-height:20px;margin:0 0 4px 0;vertical-align:middle}#mec_bfixed_form_fields input[type=checkbox]:hover,#mec_bfixed_form_fields input[type=radio]:hover,#mec_reg_form_fields input[type=checkbox]:hover,#mec_reg_form_fields input[type=radio]:hover,.mec-form-row input[type=checkbox]:hover,.mec-form-row input[type=radio]:hover{border-color:#40d9f1}#mec_bfixed_form_fields input[type=checkbox]:checked,#mec_bfixed_form_fields input[type=radio]:checked,#mec_reg_form_fields input[type=checkbox]:checked,#mec_reg_form_fields input[type=radio]:checked,.mec-fes-form .mec-form-row input[type=checkbox]:checked,.mec-fes-form .mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1;border-color:#40d9f1;background:#40d9f1!important;border-radius:2px;position:relative}.mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1,inset 0 0 0 3px #fff!important}#mec_bfixed_form_fields input[type=checkbox]:checked::before,#mec_reg_form_fields input[type=checkbox]:checked::before,.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:5px;margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);transform-origin:0% 100%;color:#fff;transition:all .2s ease;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards}@keyframes checkbox-check{0%{width:0;height:0;border-color:#fff;transform:translate3d(0,0,0) rotate(45deg)}33%{width:6px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:6px;height:12px;border-color:#fff;transform:translate3d(0,-12px,0) rotate(45deg)}}#wrap #mec-event-data input[type=radio]{position:relative}#wrap #mec-event-data input[type=radio]:empty::before{display:none}#mec_bfixed_form_field_types .button,#mec_reg_form_field_types .button{position:relative;outline:0;border-radius:50px;padding:2px 21px 2px 31px!important;line-height:1;font-size:11px;font-weight:600;color:#40d9f1;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_fes_location_remove_image_button,#mec_fes_organizer_remove_image_button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button,#mec_meta_box_tickets_form [id^=mec_ticket_row] button,#mec_reg_form_field_types .button.red{color:#ea6485;box-shadow:0 2px 6px -3px #ea6485;background:#fff;border-color:#ffd2dd}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_reg_form_field_types .button.red:hover{background:#ea6485;color:#fff}#mec_bfixed_form_field_types .button:before,#mec_reg_form_field_types .button:before{position:absolute;left:12px;color:#40d9f1;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_reg_form_field_types .button.red:before{color:#ea6485}#mec_bfixed_form_field_types .button:hover:before,#mec_reg_form_field_types .button.red:hover:before,#mec_reg_form_field_types .button:hover:before{color:#fff}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_price_per_dates_container .button:hover,#mec_reg_form_field_types .button.red:hover{color:#fff;border:2px solid #ea6485}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button],#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]{color:#ea6485;border-color:#ffd2dd}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button]:hover,#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}#mec_fees_list [id^=mec_remove_fee_button],#mec_meta_box_ticket_variations_form .mec-form-row [id^=mec_remove_ticket_variation_button]{margin-left:14px!important}#mec_meta_box_hourly_schedule_days .mec-add-hourly-schedule-button{line-height:10px!important}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button{color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button:hover,#mec_reg_form_field_types .button:hover{color:#fff;border:2px solid #40d9f1;background:#40d9f1}.mec-fes-form #mec_bfixed_form_fields span.mec_bfixed_field_sort,.mec-fes-form #mec_orgz_form_row span.mec-additional-organizer-sort,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_sort{font-size:0;color:#fff;padding-left:20px}.mec-fes-form #mec_bfixed_form_fields .mec_bfixed_field_option_sort,.mec-fes-form #mec_orgz_form_row span.mec-additional-organizer-sort,.mec-fes-form #mec_reg_form_fields .mec_reg_field_options,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_option_sort{font-size:0}.mec-fes-form #mec_bfixed_form_fields span.mec_bfixed_field_option_sort:before,.mec-fes-form #mec_bfixed_form_fields span.mec_bfixed_field_sort:before,.mec-fes-form #mec_orgz_form_row span.mec-additional-organizer-sort:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_option_sort:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_options:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_sort:before{position:absolute;left:px;top:12px;width:80px;height:20px;display:block;cursor:move;font-family:simple-line-icons;content:"\e023";font-size:18px;color:#888}.mec-fes-form #mec_bfixed_form_fields span.mec_bfixed_field_option_sort:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_option_sort:before,.mec-fes-form #mec_reg_form_fields span.mec_reg_field_options:before{font-size:13px;left:2px;top:26px;width:14px;height:14px}.mec-fes-form #mec_bfixed_form_fields .mec_bfixed_field_options,.mec-fes-form #mec_reg_form_fields .mec_reg_field_options{margin-top:20px}.mec-fes-form #mec_fes_form #mec_bfixed_form_fields .mec_bfixed_notification_placeholder{font-size:0}.mec-form-row input+span.mec-tooltip,.mec-form-row select+span.mec-tooltip{bottom:10px}.mec-form-row label+span.mec-tooltip{bottom:8px}.mec-form-row textarea+span.mec-tooltip{bottom:auto;vertical-align:top;top:12px}.mec-form-row span+span.mec-tooltip{bottom:0;vertical-align:middle}.mec-form-row .mec-col-8 input[type=text],.mec-form-row .mec-col-8 select,.mec-form-row .mec-col-8 span.mec-archive-skins{vertical-align:top}.mec-form-row input:disabled{opacity:.6;background:#f6f6f6}.mec-form-row p{font-size:12px!important;line-height:18px!important;color:#97b2bb!important}.mec-form-row p.description{font-style:italic}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12)}table.ui-datepicker-calendar{margin-bottom:0}.ui-datepicker-calendar th{font-weight:700;color:#4a4b4c}.ui-datepicker-calendar td,.ui-datepicker-calendar th,.ui-datepicker-calendar tr{border:none}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;display:inline-block;border-radius:2px;padding:2px 10px;margin:5px 3px;width:auto;min-height:20px;height:26px;border:1px solid #e3e3e3;box-shadow:inset 0 1px 3px rgba(0,0,0,.04)}.ui-datepicker.ui-widget table{border-spacing:2px;border:none}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#9a9b9c;font-weight:600;width:30px;height:30px;line-height:30px;display:inline-block;border-radius:33px;padding:0;background:#fff;transition:all .2s ease}.ui-datepicker.ui-widget td a.ui-state-active,.ui-datepicker.ui-widget td a:hover{background:#40d9f1;color:#fff}.ui-datepicker.ui-widget .ui-datepicker-next,.ui-datepicker.ui-widget .ui-datepicker-prev{color:#40d9f1;width:30px;height:30px;line-height:30px;display:inline-block;text-align:center;border-radius:33px;background:#ecfcff;transition:all .2s ease}.ui-datepicker.ui-widget .ui-datepicker-next:hover,.ui-datepicker.ui-widget .ui-datepicker-prev:hover{background:#fff;box-shadow:0 0 7px -3px rgba(0,0,0,.4)}.mec-fes-form .mec-tooltip .dashicons-before:before{color:#40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button{border-radius:3px;background:#40d9f1;color:#fff;height:54px;font-size:17px;font-weight:700;box-shadow:0 2px 8px -4px #40d9f1;display:block;transition:all .28s ease;text-transform:uppercase;margin:20px 0 0;padding:14px 20px;border:0;cursor:pointer;text-align:center;letter-spacing:.1em;line-height:1}.mec-fes-form button[type=submit].mec-fes-sub-button:hover{box-shadow:0 2px 12px -2px #40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button:focus{margin-bottom:-2px;background:#1dc2dc}.mec-fes-form .mec-title span.mec-dashicons{color:#40d9f1;float:left;margin-right:5px}.mec-fes-form .mec-tooltip .box h5{padding:14px 2px}#mec_fes_form,.mec-fes-form-top-actions{max-width:838px;margin:0 auto}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt{width:calc(100% - 300px);float:left;padding-right:20px;max-width:538px;display:block}.mec-fes-form .mec-fes-form-sdbr{width:300px}}.mec-fes-form .quicktags-toolbar,.mec-fes-form div.mce-toolbar-grp{background:#ecfcff;border-bottom:1px solid #cfeff5;box-shadow:0 1px 0 1px #cfeff5}.mec-fes-form .quicktags-toolbar{margin-right:-1px;border-top:1px solid #cfeff5}.mec-fes-form div.mce-statusbar{border-top-color:#cfeff5}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-listbox{border:1px solid #cfeff5;border-radius:3px}.mec-fes-form .mce-tinymce.mce-container.mce-panel{border:1px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5;border-radius:2px 0 2px 2px}.mec-fes-form .wp-editor-tools .wp-media-buttons{transform:translateY(-6px);margin-top:-6px}.mec-fes-form .wp-editor-tabs{padding-right:0;margin-right:-2px}.mec-fes-form .wp-editor-tabs .wp-switch-editor{border-radius:3px 3px 0 0;border-color:#cfeff5;background:#fff;color:#96b8bd;border-bottom:1px solid #ecfcff}.mec-fes-form .html-active .switch-html,.mec-fes-form .tmce-active .switch-tmce,.mec-fes-form .wp-editor-tabs .wp-switch-editor:active{background:#ecfcff;color:#40d9f1}.mec-fes-form .wp-editor-container,.mec-fes-form div.mce-edit-area.mce-panel{border:none;box-shadow:none}.mec-fes-form .wp-editor-container textarea.wp-editor-area{max-width:100%}.mec-fes-form .mce-toolbar .mce-listbox button{font-size:12px;line-height:22px;color:#798f96}.mec-fes-form .mce-toolbar .mce-ico{color:#627f88}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active,.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn:active,.mec-fes-form .qt-dfw.active{background:#fff;border-color:#40d9f1;box-shadow:inset 0 2px 6px -3px rgba(106,231,255,.7)}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active .mce-ico{color:#40d9f1}body .mce-menu .mce-menu-item.mce-active.mce-menu-item-normal,body .mce-menu .mce-menu-item.mce-selected,body .mce-menu .mce-menu-item:focus,body .mce-menu .mce-menu-item:hover,body.mce-menu .mce-menu-item.mce-active.mce-menu-item-preview{background:#40d9f1;color:#fff}.mec-fes-form .mec-not-in-days-day{display:inline-block;padding:4px 32px 4px 15px;border-radius:33px;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;background:#fbfeff;color:#40d9f1;vertical-align:top}.mec-fes-form .mec-not-in-days-remove{display:inline-block;padding:0 1px 0 0;margin-left:-30px;vertical-align:sub;background:#ff918a;color:#fff;font-family:cursive;width:21px;height:21px;line-height:17px;text-align:center;border-radius:20px;cursor:pointer}.mec-fes-list ul li .mec-event-status{float:left;margin-right:10px;margin-left:0;font-size:11px;font-weight:400;letter-spacing:.3px;border-radius:3px;padding:4px 8px}.mec-fes-form .post-status.mec-book-confirmed:before,.mec-fes-list ul li .mec-event-status.mec-book-confirmed:before{content:"";margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);color:#fff;width:6px;height:12px;float:left;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before,.mec-fes-list ul li .mec-fes-event-remove:before,.mec-fes-list ul li .mec-fes-event-view a:before,.mec-fes-list-top-actions a:before{content:"\e054";font-family:simple-line-icons;font-size:13px;vertical-align:middle}.mec-fes-list ul li .mec-fes-event-view a:before{content:"\e087"}.mec-fes-list-top-actions a:before{content:"\e095";font-weight:400;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before{content:"\e083"}.mec-fes-form .post-status{border-radius:20px}.mec-fes-form .post-status.mec-book-confirmed:before{height:20px;width:9px;margin:3px 10px}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker-calendar th{height:auto;padding:0}.ui-datepicker .ui-datepicker-calendar td a,.ui-datepicker-calendar th{font-size:14px;line-height:30px}.mec-fes-form .description{font-size:16px}.mec-fes-form input[type=file]{text-align:left}.mec-fes-export-wrapper{width:640px;background:#f8feff;padding:40px 25px}.mec-fes-export-wrapper .mec-fes-btn-date{font-size:16px;line-height:44px;overflow:hidden}.mec-fes-export-wrapper .date-messgae{font-family:sans-serif;padding:2px 18px}.mec-fes-list ul li .mec-event-export-csv,.mec-fes-list ul li .mec-event-export-excel{font-size:12px;border:1px solid #40d9f1;padding:1px 4px;background:rgba(141,229,243,.18);border-radius:4px;color:#40d9f1;font-family:sans-serif;cursor:pointer;display:inline-block;height:26px;line-height:22px}.mec-export-badge{font-size:11px;color:#40d9f1;width:auto;height:24px;line-height:25px;display:inline-block;padding:0 8px;text-align:center;border-radius:3px;background:#ecfcff;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export{font-size:11px;background:#f7f7f7;float:right;margin-left:5px}.mec-fes-list ul li .mec-fes-event-export:hover{cursor:pointer;background:#90f0e0;border-color:#4dc8cc}.mec-fes-export-wrapper ul{padding:0;width:100%;text-align:center}.mec-fes-export-wrapper ul li{list-style:none;display:inline-block;width:30%;padding:10px 15px 10px 32px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal;margin-right:10px;position:relative;cursor:pointer;font-size:13px;line-height:1;transition:all .2s ease}.mec-fes-export-wrapper ul li:nth-child(3n+0){margin-right:0}.mec-fes-export-wrapper ul li:hover{box-shadow:0 2px 16px -1px #c6e8ef}.mec-fes-export-wrapper ul li:before{content:"";position:absolute;display:inline-block;background:#fff;width:15px;height:15px;margin:-1px 0 0 5px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%;left:9px;top:calc(50% - 7px)}.mec-fes-export-wrapper ul li.fes-export-date-active{color:#40d9f1}.mec-fes-export-wrapper ul li.fes-export-date-active:before{width:15px;height:15px;border:6px solid #40d9f1;background:#fff;box-shadow:0 3px 16px -3px #40d9f1}.mec-fes-btn-export{margin-left:15px;margin-top:12px}.mec-fes-btn-export span{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-right:4px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;cursor:pointer;margin-left:6px}.mec-fes-btn-export span:hover{background:#222}.mec-event-export-excel:before,span.mec-event-export-csv:before{content:"\e083";font-family:simple-line-icons;font-size:13px;vertical-align:middle;margin-right:7px;margin-top:-1px;display:inline-block}.mec-fes-list .wn-p-t-right{min-width:170px;max-width:200px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #535a61;visibility:hidden;opacity:0;transition:opacity .23s;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal}.mec-fes-list .mec-fes-event-export:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-remove:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-view:hover .wn-p-t-right{visibility:visible;opacity:1}.mec-fes-list .wn-p-t-right i{position:absolute!important;top:100%;right:50%;margin-top:-6px!important;margin-right:-6px!important;width:12px;height:24px;overflow:hidden;transform:rotate(-90deg)}.mec-fes-list .wn-p-t-right i:after{content:"";position:absolute;width:12px;height:12px;left:0;top:50%;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-fes-form .select2-container{min-height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;border-radius:2px;border:1px solid #ddd;box-shadow:inset 0 1px 6px rgba(0,0,0,.07);background-color:#fff;color:#32373c;outline:0;transition:50ms border-color ease-in-out;min-width:200px;font-size:14px}.mec-fes-form .select2-selection{border:none;background:0 0;padding-top:2px;width:100%;height:100%}.mec-fes-form .select2-container--default.select2-container--focus .select2-selection{border:none!important;outline:0}.mec-fes-form .select2-container--default .select2-selection--single .select2-selection__arrow{top:5px;right:4px}.select2-results{font-size:14px}.mec-fes-category-children,.mec-fes-category-children .mec-fes-category-children{padding-left:24px}.mec-timeline-events-container{margin-left:19px;padding-top:20px;padding-bottom:9px}.mec-events-timeline-wrap{position:relative;display:block;overflow:visible;padding-left:95px}.mec-events-timeline-wrap:before{width:1px;content:"";height:100%;position:absolute;background:#b8f5ff;left:95px}.mec-timeline-month-divider+.mec-timeline-events-container{padding-top:110px}.mec-timeline-right-content{float:right;width:300px}.mec-timeline-left-content{float:left;width:calc(100% - 300px);padding-left:15px;padding-right:15px;position:relative}.mec-timeline-month-divider{position:absolute;display:block;background:#fff;right:calc(100% - 95px);left:0;width:190px;text-align:center;border:1px solid #b8f5ff;border-radius:50px;font-size:15px;padding:12px 27px;color:#40d9f1}.mec-timeline-event-date{position:relative}.mec-timeline-events-container .mec-timeline-event-date:before{content:"";width:11px;height:11px;position:absolute;background:#40d9f1;border-radius:50px;top:8px;left:-24px;z-index:9}.mec-timeline-events-container .mec-timeline-event-date:after{content:"";width:21px;height:21px;position:absolute;background:rgba(64,217,241,.3);border-radius:50px;top:3px;left:-29px}.mec-timeline-event-date{float:left;width:17%;margin-top:27px}.mec-timeline-event-content{float:left;width:82%;background:#fff;box-shadow:0 10px 30px 0 rgba(0,0,0,.1);border-radius:10px;overflow:visible;position:relative}.mec-timeline-main-content{padding:23px 30px}.mec-timeline-main-content h4{margin-bottom:15px}.mec-timeline-main-content h4 a{font-size:25px;font-weight:700;color:#000;line-height:33px;text-decoration:none}.mec-timeline-main-content p{font-size:15px;color:#515151;line-height:24px;margin-bottom:36px}a.mec-timeline-readmore{width:100%;display:block;text-align:center;color:#fff;text-decoration:none;line-height:52px;font-size:17px;font-weight:700;-webkit-transition:all .2s ease;transition:all .2s ease;border-radius:0 0 10px 10px}a.mec-timeline-readmore:hover{background:#222;color:#fff}.mec-timeline-event-time .mec-time-details{display:inline-block;margin-left:7px;font-size:13px;line-height:13px;font-weight:500}.mec-timeline-event-time i{vertical-align:middle}.mec-timeline-event-time{background:rgba(64,217,241,.11);display:inline-block;padding:4px 20px 8px;border-radius:50px}.mec-timeline-event-location address{font-style:normal;margin-bottom:0}.mec-timeline-event-location address span{font-size:13px;font-weight:500;vertical-align:middle;margin-left:6px}.mec-timeline-event-location address i{font-size:17px;vertical-align:middle}.mec-timeline-event-location{background:rgba(64,217,241,.11);display:inline-block;padding:7px 20px 11px;border-radius:20px;line-height:1.24}.mec-timeline-event-details+.mec-timeline-event-details{margin-top:12px}.mec-timeline-event-content .col-md-4{padding:0}.mec-timeline-event-content:after{content:"";display:block;position:absolute;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-timeline-event-content:after{top:30px;border-color:transparent #fff transparent transparent;left:-10px}.mec-timeline-event-image img{border-radius:0 10px 0 0;width:100%}.mec-timeline-event-image a{display:block;line-height:0}a.mec-timeline-readmore i{vertical-align:middle;margin-left:10px;font-size:9px}.mec-wrap .mec-timeline-event-content a.mec-timeline-readmore:hover{background:#444}@media (min-width:1024px){.mec-timeline-event{margin:50px 0}}@media (max-width:1023px){.mec-timeline-event{margin:25px 0}.mec-events-timeline-wrap{padding-left:20px}.mec-events-timeline-wrap:before{left:20px}}@media (max-width:1200px) and (min-width:992px){.mec-timeline-event-content{width:81%}.mec-timeline-event-date{width:18%}}@media (max-width:992px){.mec-timeline-left-content,.mec-timeline-right-content{float:none;width:100%;text-align:center}.mec-timeline-right-content .mec-timeline-event-image{text-align:center}.mec-timeline-right-content .mec-timeline-event-image img{max-width:300px;border-radius:10px;margin-top:35px}}@media (max-width:440px){.mec-timeline-right-content .mec-timeline-event-image img{margin-top:0}}@media (max-width:320px){.mec-timeline-event-content,.mec-timeline-event-date{float:none;width:100%}.mec-timeline-event-date{margin-bottom:8px}.mec-timeline-event-content:after{display:none}.mec-timeline-main-content{padding:23px 0}.mec-timeline-main-content p{font-size:13px}.mec-timeline-main-content h4 a{font-size:23px;line-height:24px}.mec-time-details span{font-size:11px}.mec-timeline-event-location address span{font-size:12px}a.mec-timeline-readmore{line-height:44px;font-size:14px}}.mec-timeline-event-image img{margin-bottom:-7px;border-radius:0 10px 10px 0}.mec-timeline-event-image a img{margin-bottom:0;border-radius:0 10px 0 0}.mec-event-tile-view article.mec-tile-item{height:400px;margin:15px 0;border-radius:22px;padding:35px 25px;position:relative;color:#fff;background-size:cover!important;background-position:center!important;box-shadow:0 2px 9px rgba(0,0,0,.25);transition:all .22s ease}.mec-event-tile-view article.mec-tile-item:hover{cursor:pointer;box-shadow:0 4px 19px rgba(0,0,0,.5)}.mec-event-tile-view article.mec-tile-item div{position:relative;z-index:3}.mec-event-tile-view article.mec-tile-item:after,.mec-event-tile-view article.mec-tile-item:before{position:absolute;background:-moz-linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:-webkit-gradient(left top,right top,color-stop(0,rgba(0,0,0,.35)),color-stop(65%,rgba(0,0,0,.48)),color-stop(100%,rgba(0,0,0,.72)));background:-webkit-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);content:"";left:0;right:0;bottom:0;top:0;width:100%;height:100%;display:block;border-radius:22px;z-index:1}.mec-event-tile-view article.mec-tile-item:after{background-color:inherit;background-image:none;top:35px;bottom:auto;height:40px;border-radius:0 3px 3px 0;width:97px;z-index:2;box-shadow:2px 1px 7px rgba(0,0,0,.1)}.mec-event-tile-view article.mec-tile-item .event-tile-view-head{padding:8px 3px;font-size:16px;font-weight:700;margin-bottom:50px;text-transform:uppercase}.mec-event-tile-view article.mec-tile-item .event-tile-view-head>div{display:inline}.mec-event-tile-view article.mec-tile-item .mec-event-time{color:#d6d6d6;font-size:15px;font-weight:400;line-height:1;padding-top:4px;position:absolute;right:1px;top:10px}.mec-event-tile-view article.mec-tile-item .mec-event-time i{vertical-align:baseline;font-size:14px;float:left}.mec-event-tile-view article.mec-tile-item i{margin-right:5px}.mec-event-tile-view article.mec-tile-item .mec-event-title{color:#fff;font-weight:700;font-size:23px;padding-top:12px}.mec-event-tile-view article.mec-tile-item .mec-event-title a{color:#fff}.mec-event-tile-view article.mec-tile-item .mec-event-title a:hover{text-decoration:underline}.mec-event-tile-view article.mec-tile-item .mec-event-content{position:absolute;height:100%;bottom:0;left:0;right:0}.mec-event-tile-view article.mec-tile-item .mec-tile-into-content-link{position:absolute;content:"";top:0;right:0;left:0;bottom:0;background:0 0}.mec-tile-event-content{position:absolute!important;bottom:25px;left:25px;right:25px}.mec-event-tile-view article.mec-label-canceled:before,.mec-event-tile-view article.mec-label-featured:before{height:auto}.mec-skin-tile-month-navigator-container{position:relative;text-align:center;font-size:12px;height:80px;background:#f7f7f7;padding:28px;border-radius:11px;margin-bottom:20px}.mec-skin-tile-month-navigator-container:after,.mec-skin-tile-month-navigator-container:before{content:"";display:block;position:absolute;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-skin-tile-month-navigator-container:after{bottom:-20px;border-color:#f7f7f7 transparent transparent transparent}.mec-skin-tile-month-navigator-container:before{bottom:-21px;border-color:#fff transparent transparent transparent}@media only screen and (max-width:480px){.mec-skin-tile-month-navigator-container{height:110px;padding-top:68px}}.mec-skin-tile-month-navigator-container h2{font-size:23px;font-weight:700}.mec-skin-tile-month-navigator-container .mec-next-month,.mec-skin-tile-month-navigator-container .mec-previous-month{position:absolute;top:28px;left:20px;cursor:pointer;padding:3px 12px;line-height:23px;background:#fff;border-radius:32px;box-shadow:0 1px 3px rgba(0,0,0,.02);transition:all .22s ease}.mec-skin-tile-month-navigator-container .mec-next-month{left:auto;right:20px}.mec-skin-tile-month-navigator-container .mec-next-month:hover,.mec-skin-tile-month-navigator-container .mec-previous-month:hover{box-shadow:0 2px 5px rgba(0,0,0,.1);color:#000}.mec-wrap .mec-event-tile-view article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view article.mec-label-featured:before{position:absolute;bottom:auto;text-align:center;right:auto;font-size:10px}.mec-event-tile-view article.mec-tile-item .mec-tile-overlay{position:absolute;background:-moz-linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:-webkit-gradient(left top,right top,color-stop(0,rgba(0,0,0,.35)),color-stop(65%,rgba(0,0,0,.48)),color-stop(100%,rgba(0,0,0,.72)));background:-webkit-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);content:"";left:0;right:0;bottom:0;top:0;width:100%;height:100%;display:block;border-radius:22px;z-index:1}.mec-wrap .mec-event-tile-view .col-md-3 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-3 article.mec-label-featured:before{top:12px;left:103px;z-index:9}.mec-wrap .mec-event-tile-view .col-md-4 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-4 article.mec-label-featured:before{top:18px;left:125px}.mec-wrap .mec-event-tile-view .col-md-6 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-6 article.mec-label-featured:before{top:20px;left:200px}@media (max-width:960px){.mec-wrap .mec-event-tile-view .col-sm-3{width:50%}}@media (max-width:480px){.mec-wrap .mec-event-tile-view .col-sm-3{width:100%}}.mec-event-tile-view article.mec-tile-item.tile-multipleday-event:after{width:165px}.mec-event-tile-view .col-md-6.col-sm-6 article.mec-label-canceled:before{top:100px;left:140px}.mec-event-tile-view .col-md-4.col-sm-4 article.mec-label-canceled:before{top:20px;left:140px}@media (min-width:761px) and (max-width:1200px){.mec-event-tile-view .col-md-3.col-sm-3{width:50%}.mec-event-tile-view .col-md-6.col-sm-6 article.mec-label-canceled:before{top:80px;left:90px}.mec-event-tile-view .col-md-4.col-sm-4 article.mec-label-canceled:before{top:40px;left:70px}.mec-event-tile-view .col-md-3.col-sm-3 article.mec-label-canceled:before{top:90px;left:110px}}@media (min-width:761px) and (max-width:1024px){.mec-event-tile-view .col-md-4.col-sm-4{width:50%}.mec-event-tile-view .col-md-4.col-sm-4:nth-child(1n+3){width:100%}}@media (max-width:760px){.mec-event-tile-view .col-md-3.col-sm-3{width:100%}.mec-event-tile-view .col-md-4.col-sm-4{width:100%}}@media (max-width:480px){.mec-event-tile-view .col-md-6.col-sm-6 article.mec-label-canceled:before{top:100px;left:80px}}.mec-calendar .mec-event-article .mec-event-date{font-size:12px;text-align:left}.mec-event-detailed-time{display:flex}.mec-event-detailed-time i{width:15px;padding-top:7px}.mec-ongoing-normal-label{background-color:#40d9f1}.mec-expired-normal-label{background-color:#000}.mec-wrap .mec-cancellation-reason span,.mec-wrap .mec-labels-normal .mec-label-normal{position:relative;top:-3px;font-size:11px;font-weight:300;margin-left:10px;line-height:1.9;letter-spacing:1px;color:#fff;padding:2px 7px;border-radius:2px;white-space:nowrap}.mec-agenda-event-title .mec-labels-normal .mec-label-normal,.mec-timetable-event .mec-labels-normal .mec-label-normal,.tooltipster-box .mec-labels-normal .mec-label-normal{font-size:9px;letter-spacing:.5px;text-transform:uppercase;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px;top:0}.mec-av-spot .mec-labels-normal .mec-label-normal,.mec-event-countdown-part1 .mec-labels-normal .mec-label-normal,.mec-event-countdown-part2 .mec-labels-normal .mec-label-normal,.mec-event-cover-modern .mec-labels-normal .mec-label-normal,.mec-masonry-content .mec-labels-normal .mec-label-normal,.mec-owl-carousel:not(.mec-slider-t1) .mec-labels-normal .mec-label-normal,.mec-tile-item .mec-labels-normal .mec-label-normal,.mec-timeline-event .mec-labels-normal .mec-label-normal,.tooltipster-box .mec-labels-normal .mec-label-normal{margin:0 5px 0 0}.mec-event-countdown-style3 .mec-labels-normal .mec-label-normal{margin:0 0 0 5px}.mec-event-footer-carousel-type3 .mec-labels-normal .mec-label-normal{display:inline}.mec-event-carousel-type4 .mec-fc-style{display:none}.mec-event-carousel-type4 .mec-labels-normal{top:-20px;position:relative}.mec-wrap .mec-cancellation-reason{display:inline-block}.mec-wrap .mec-cancellation-reason span{line-height:1.3;background:#eb3450;text-transform:none;display:inline-block;white-space:nowrap}.mec-wrap .mec-event-list-accordion .mec-cancellation-reason span,.mec-wrap .mec-event-list-accordion .mec-labels-normal .mec-label-normal{top:7px}.mec-agenda-event-title .mec-cancellation-reason span,.mec-timetable-event .mec-cancellation-reason span,.tooltipster-box .mec-cancellation-reason span{font-size:9px;letter-spacing:.5px;text-transform:uppercase;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px;top:0}.mec-wrap .mec-event-container-novel .mec-cancellation-reason span,.mec-wrap .mec-event-container-novel .mec-labels-normal .mec-label-normal{white-space:inherit;margin-left:0}.mec-wrap .mec-event-container-simple .mec-cancellation-reason span,.mec-wrap .mec-event-container-simple .mec-labels-normal .mec-label-normal{top:-12px;white-space:inherit;margin-left:0}.mec-av-spot .mec-cancellation-reason span,.mec-event-countdown-part1 .mec-cancellation-reason span,.mec-event-countdown-part2 .mec-cancellation-reason span,.mec-event-cover-modern .mec-cancellation-reason span,.mec-masonry-content .mec-cancellation-reason span,.mec-owl-carousel:not(.mec-slider-t1) .mec-cancellation-reason span,.mec-tile-item .mec-cancellation-reason span,.mec-timeline-event .mec-cancellation-reason span,.tooltipster-box .mec-cancellation-reason span{margin:0 5px 0 0}.mec-owl-carousel .mec-event-footer-carousel-type3 span.mec-event-title-soldout,.mec-owl-carousel .mec-event-footer-carousel-type3 span.mec-few-tickets{display:inline}.mec-owl-carousel .mec-event-footer-carousel-type3 span.mec-labels-normal,.mec-owl-carousel .mec-event-footer-carousel-type3 span.soldout{margin-top:0;color:#fff;display:unset}.mec-wrap .mec-single-event .mec-cancellation-reason span{margin:0;padding:6px 12px;font-size:14px;font-weight:700;white-space:normal;word-break:break-word}.featherlight-content .mec-cancellation-reason{display:block;width:100%;text-align:center;margin-top:20px;margin-bottom:-10px}.mec-event-data-fields{margin-bottom:30px}.mec-event-data-fields ul.mec-event-data-field-items{overflow:hidden;padding-top:10px;padding-left:0}.mec-event-data-fields .mec-event-data-field-item{list-style:none;margin-bottom:10px;border-bottom:1px dashed #e1e2e3;padding-bottom:8px;width:50%;float:left}.mec-event-data-fields .mec-event-data-field-item .mec-event-data-field-value{margin:0 0 8px 0;color:#616263;font-size:13px;line-height:1.5}.mec-event-data-fields .mec-event-data-field-item:last-child{border:none;width:100%}.mec-event-data-fields .mec-event-data-field-item .mec-event-data-field-name{text-transform:none;font-size:13px;font-weight:600;padding-bottom:5px;color:#313131;width:100%;padding-bottom:10px;position:relative;letter-spacing:-.2px}@media (max-width:768px){.mec-event-data-fields .mec-event-data-field-item{width:100%}}.mec-wrap .col-md-4 .mec-event-data-fields .mec-event-data-field-item{width:100%;display:block}.mec-shortcode-organizers{overflow:hidden;margin-top:7px;font-weight:400;line-height:19px;font-size:12px}.mec-event-list-minimal .mec-shortcode-organizers{margin-top:6px}.mec-shortcode-organizers i{color:#777}.mec-shortcode-organizers .mec-organizers{display:inline-block;list-style:none;padding:0 0 0 3px;vertical-align:top}.mec-organizer-item a{color:#777}.mec-event-list-standard .mec-shortcode-organizers .mec-sl-user:before{position:absolute;left:6px;font-size:15px;line-height:26px}.mec-organizer-item a{font:14px/25px sans-serif;font-weight:400;color:#626262}.mec-shortcode-organizers{position:relative;padding-left:28px;margin-bottom:10px}.mec-skin-grid-container .mec-organizers,.mec-skin-grid-container .mec-shortcode-organizers{padding:0;margin:0}.mec-skin-grid-container .mec-shortcode-organizers i{display:none}.mec-skin-grid-container .mec-event-grid-clean .mec-shortcode-organizers a,.mec-skin-grid-container .mec-event-grid-clean .mec-shortcode-organizers a:hover,.mec-skin-grid-container .mec-event-grid-colorful .mec-shortcode-organizers a,.mec-skin-grid-container .mec-event-grid-colorful .mec-shortcode-organizers a:hover{color:#fff;font-size:12px}.mec-skin-grid-container .mec-event-grid-clean .mec-shortcode-organizers a:hover,.mec-skin-grid-container .mec-event-grid-colorful .mec-shortcode-organizers a:hover{text-decoration:underline}.mec-skin-grid-container .mec-event-grid-minimal .mec-shortcode-organizers{margin-top:12px}.mec-skin-grid-container .mec-event-grid-novel .mec-shortcode-organizers{position:relative}.mec-skin-grid-container .mec-event-grid-novel .mec-shortcode-organizers i{display:block;color:rgba(255,255,255,.4)}.mec-skin-grid-container .mec-event-grid-novel .mec-shortcode-organizers i:before{position:absolute;top:6px;left:6px;font-size:17px;font-family:simple-line-icons;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}.mec-skin-grid-container .mec-event-grid-novel .mec-shortcode-organizers a{padding-left:35px;font-size:15px;line-height:30px;color:rgba(255,255,255,.4)}.mec-skin-grid-container .mec-event-grid-novel .mec-shortcode-organizers a:hover{color:#fff}.mec-calendar-daily .mec-shortcode-organizers,.mec-calendar-daily .mec-shortcode-organizers .mec-organizers{padding:0}.mec-calendar-daily .mec-shortcode-organizers i{display:none}.mec-calendar-daily .mec-organizer-item a{font-size:13px;line-height:1.3;color:#9a9a9a;margin-bottom:0}.mec-events-masonry-wrap .mec-shortcode-organizers i{display:none}.mec-events-masonry-wrap .mec-shortcode-organizers,.mec-events-masonry-wrap .mec-shortcode-organizers .mec-organizers{padding:0}.mec-events-timeline-wrap .mec-shortcode-organizers{width:fit-content;display:inline-block;padding:4px 20px 8px;border-radius:50px}.mec-events-timeline-wrap .mec-organizer-item,.mec-events-timeline-wrap .mec-shortcode-organizers .mec-organizers{margin:0;display:inline-block;padding-right:7px}.mec-events-timeline-wrap .mec-shortcode-organizers i{line-height:24px;margin-right:7px}.mec-events-timeline-wrap .mec-organizer-item:after{content:","}.mec-events-timeline-wrap .mec-organizer-item:last-child:after{content:"";padding:0}.mec-events-timeline-wrap .mec-organizer-item a,.mec-events-timeline-wrap .mec-organizer-item:after{font-weight:500}.mec-events-timeline-wrap .mec-organizer-item a:hover{text-decoration:underline}.mec-event-tile-view .mec-shortcode-organizers,.mec-event-tile-view .mec-shortcode-organizers .mec-organizers{padding:0}.mec-event-tile-view .mec-shortcode-organizers i{line-height:24px}.mec-event-tile-view .mec-shortcode-organizers .mec-organizers a,.mec-event-tile-view .mec-shortcode-organizers i{color:#fff}.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-modal-preloader,.mec-dark-mode .mec-month-navigator-loading{background-color:rgba(40,40,40,.88)}.mec-dark-mode .event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button,.mec-dark-mode .mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt,.mec-dark-mode .mec-calendar .mec-calendar-row dt:hover,.mec-dark-mode .mec-event-footer .mec-booking-button,.mec-dark-mode .mec-event-grid-classic .mec-event-content,.mec-dark-mode .mec-event-schedule-content .mec-schedule-speakers,.mec-dark-mode .mec-events-meta-group-tags a:hover,.mec-dark-mode .mec-events-toggle .mec-toggle-content .mec-modal-wrap,.mec-dark-mode .mec-fes-form .mec-meta-box-fields,.mec-dark-mode .mec-hourly-schedule-speaker-contact-information a i,.mec-dark-mode .mec-map-view-event-detail.mec-event-detail,.mec-dark-mode .mec-modal-wrap,.mec-dark-mode .mec-next-event-details a,.mec-dark-mode .mec-single-event .mec-event-exporting .mec-export-details a:hover,.mec-dark-mode .mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-dark-mode .mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev,.mec-dark-mode .mec-timetable-events-list .mec-timetable-event,.mec-dark-mode .mec-wrap .button,.mec-dark-mode .mec-wrap a.button:not(.owl-dot):hover,.mec-dark-mode .mec-wrap button:not(.owl-dot):hover,.mec-dark-mode .mec-wrap input[type=button]:hover,.mec-dark-mode .mec-wrap input[type=reset]:hover,.mec-dark-mode .mec-wrap input[type=submit]:hover{background-color:#1f1f1f;color:#d2d2d2}.mec-dark-mode .mec-modal-wrap::-webkit-scrollbar{width:12px}.mec-dark-mode .mec-modal-wrap::-webkit-scrollbar-track{background:#000}.mec-dark-mode .mec-modal-wrap::-webkit-scrollbar-thumb{background-color:#333;border-radius:20px;border:2px solid #000}.mec-dark-mode .mec-modal-preloader,.mec-dark-mode .mec-month-navigator-loading{background-color:#1f1f1f}.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table,.mec-dark-mode .mec-skin-tile-month-navigator-container{background:#282828}.mec-dark-mode .mec-skin-tile-month-navigator-container:after{border-color:#282828 transparent transparent transparent}.mec-dark-mode .mec-event-grid-novel .mec-event-article,body.mec-dark-mode .mec-single-modern .mec-single-event-bar{background-color:#282828;color:#d2d2d2}.mec-dark-mode .event-carousel-type2-head,.mec-dark-mode .mec-box-calendar.mec-calendar .mec-calendar-table-head dt,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-next-month,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-previous-month,.mec-dark-mode .mec-calendar .mec-event-article:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-previous-month,.mec-dark-mode .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-event-article:hover,.mec-dark-mode .mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-dark-mode .mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover,.mec-dark-mode .mec-calendar.mec-yearly-calendar .mec-calendar-table-head dl dt,.mec-dark-mode .mec-event-carousel-content,.mec-dark-mode .mec-event-cost,.mec-dark-mode .mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button,.mec-dark-mode .mec-event-footer,.mec-dark-mode .mec-event-grid-classic .mec-event-content .mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button,.mec-dark-mode .mec-event-list-standard .mec-topsec,.mec-dark-mode .mec-event-more-info,.mec-dark-mode .mec-event-website,.mec-dark-mode .mec-events-agenda-wrap,.mec-dark-mode .mec-events-meta-date,.mec-dark-mode .mec-events-meta-group-tags a,.mec-dark-mode .mec-events-toggle .mec-toggle-item-inner,.mec-dark-mode .mec-fes-form,.mec-dark-mode .mec-fes-form input[type=email],.mec-dark-mode .mec-fes-form input[type=number],.mec-dark-mode .mec-fes-form input[type=password],.mec-dark-mode .mec-fes-form input[type=tel],.mec-dark-mode .mec-fes-form input[type=text],.mec-dark-mode .mec-fes-form select,.mec-dark-mode .mec-fes-form textarea,.mec-dark-mode .mec-fes-list,.mec-dark-mode .mec-hourly-schedule-speaker-info,.mec-dark-mode .mec-load-more-button,.mec-dark-mode .mec-map-lightbox-wp,.mec-dark-mode .mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-related-event-content,.mec-dark-mode .mec-single-event .mec-event-exporting .mec-export-details a,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=date],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=email],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=number],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=password],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=text],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking select,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking textarea,.mec-dark-mode .mec-single-event .mec-events-meta-group-countdown,.mec-dark-mode .mec-single-event .mec-frontbox,.mec-dark-mode .mec-single-event .mec-speakers-details ul li,.mec-dark-mode .mec-single-event-additional-organizers,.mec-dark-mode .mec-single-event-category,.mec-dark-mode .mec-single-event-date,.mec-dark-mode .mec-single-event-label,.mec-dark-mode .mec-single-event-location,.mec-dark-mode .mec-single-event-organizer,.mec-dark-mode .mec-single-event-time,.mec-dark-mode .mec-single-modern .col-md-4 .mec-frontbox,.mec-dark-mode .mec-slider-t1-wrap,.mec-dark-mode .mec-timetable-events-list .mec-timetable-event,.mec-dark-mode .mec-timetable-t2-wrap,.mec-dark-mode .mec-ttt2-title,.mec-dark-mode .mec-wrap .mec-event-countdown-style1,.mec-dark-mode .mec-wrap .mec-event-countdown-style2,.mec-dark-mode .mec-wrap .mec-totalcal-box,.mec-dark-mode .mec-wrap .mec-totalcal-box i,.mec-dark-mode .mec-wrap .mec-totalcal-box input,.mec-dark-mode .mec-wrap .mec-totalcal-box select,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year:hover,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year:hover,.mec-dark-mode.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-dark-mode.mec-wrap .mec-totalcal-box i,.mec-dark-mode.mec-wrap .mec-totalcal-box input,.mec-dark-mode.mec-wrap .mec-totalcal-box select{background-color:#282828}.mec-dark-mode .event-carousel-type2-head,.mec-dark-mode .event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button,.mec-dark-mode .mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-dark-mode .mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month,.mec-dark-mode .mec-box-calendar.mec-calendar .mec-calendar-table-head dt,.mec-dark-mode .mec-box-calendar.mec-calendar dt,.mec-dark-mode .mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt,.mec-dark-mode .mec-breadcrumbs,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-next-month,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-previous-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev .mec-calendar.mec-calendar-daily .mec-calendar-a-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-previous-month,.mec-dark-mode .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec,.mec-dark-mode .mec-event-carousel-content,.mec-dark-mode .mec-event-footer,.mec-dark-mode .mec-event-footer .mec-booking-button,.mec-dark-mode .mec-event-list-minimal .mec-event-article,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button,.mec-dark-mode .mec-event-list-modern .mec-event-article,.mec-dark-mode .mec-event-list-standard .mec-event-article,.mec-dark-mode .mec-event-list-standard .mec-event-meta-wrap,.mec-dark-mode .mec-event-list-standard .mec-topsec,.mec-dark-mode .mec-event-schedule-content,.mec-dark-mode .mec-event-schedule-content dl:before,.mec-dark-mode .mec-events-agenda-wrap,.mec-dark-mode .mec-events-meta-group-booking ul.mec-book-price-details,.mec-dark-mode .mec-events-meta-group-booking ul.mec-book-price-details li,.mec-dark-mode .mec-events-meta-group-tags a,.mec-dark-mode .mec-events-toggle .mec-toggle-content,.mec-dark-mode .mec-events-toggle .mec-toggle-item,.mec-dark-mode .mec-events-toggle .mec-toggle-item-inner,.mec-dark-mode .mec-fes-form .mec-meta-box-fields,.mec-dark-mode .mec-fes-form input[type=email],.mec-dark-mode .mec-fes-form input[type=number],.mec-dark-mode .mec-fes-form input[type=password],.mec-dark-mode .mec-fes-form input[type=tel],.mec-dark-mode .mec-fes-form input[type=text],.mec-dark-mode .mec-fes-form select,.mec-dark-mode .mec-fes-form textarea,.mec-dark-mode .mec-hourly-schedule-speaker-info,.mec-dark-mode .mec-load-more-button,.mec-dark-mode .mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-next-event-details a,.mec-dark-mode .mec-related-events-wrap h3.mec-rec-events-title,.mec-dark-mode .mec-single-event .mec-event-exporting .mec-export-details a:hover,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking form>h4,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=date],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=email],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=number],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=password],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=text],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking select,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking textarea,.mec-dark-mode .mec-single-event .mec-events-meta-group-countdown,.mec-dark-mode .mec-single-event .mec-frontbox,.mec-dark-mode .mec-single-event .mec-frontbox-title,.mec-dark-mode .mec-timetable-t2-wrap,.mec-dark-mode .mec-wrap .mec-totalcal-box,.mec-dark-mode .mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-dark-mode .mec-wrap .mec-totalcal-box i,.mec-dark-mode .mec-wrap .mec-totalcal-box input,.mec-dark-mode .mec-wrap .mec-totalcal-box select,.mec-dark-mode .mec-yearly-view-wrap,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec{border-color:#353535}.mec-dark-mode .entry-content .mec-wrap h1,.mec-dark-mode .entry-content .mec-wrap h2,.mec-dark-mode .entry-content .mec-wrap h3,.mec-dark-mode .entry-content .mec-wrap h4,.mec-dark-mode .entry-content .mec-wrap h5,.mec-dark-mode .entry-content .mec-wrap h6,.mec-dark-mode .mec-breadcrumbs a,.mec-dark-mode .mec-calendar .mec-event-article .mec-event-title a,.mec-dark-mode .mec-calendar dt,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event,.mec-dark-mode .mec-calendar.mec-event-container-simple dl dt.mec-calendar-day,.mec-dark-mode .mec-event-carousel-content .mec-event-carousel-title a,.mec-dark-mode .mec-event-content p,.mec-dark-mode .mec-event-grid-classic .mec-event-title a,.mec-dark-mode .mec-event-grid-clean .mec-event-title a,.mec-dark-mode .mec-event-grid-minimal .mec-event-date span,.mec-dark-mode .mec-event-grid-minimal .mec-event-title a,.mec-dark-mode .mec-event-grid-modern .mec-event-title a,.mec-dark-mode .mec-event-grid-simple .mec-event-title a,.mec-dark-mode .mec-event-list-classic .mec-event-title a,.mec-dark-mode .mec-event-list-minimal .mec-event-title a,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button,.mec-dark-mode .mec-event-list-standard .mec-event-title a,.mec-dark-mode .mec-events-meta-group-booking ul.mec-book-price-details li,.mec-dark-mode .mec-events-meta-group-booking ul.mec-book-price-details li span.mec-book-price-detail-amount,.mec-dark-mode .mec-events-meta-group-tags a,.mec-dark-mode .mec-events-toggle .mec-toggle-item-inner i,.mec-dark-mode .mec-fes-form,.mec-dark-mode .mec-fes-form input[type=email],.mec-dark-mode .mec-fes-form input[type=number],.mec-dark-mode .mec-fes-form input[type=password],.mec-dark-mode .mec-fes-form input[type=tel],.mec-dark-mode .mec-fes-form input[type=text],.mec-dark-mode .mec-fes-form label,.mec-dark-mode .mec-fes-form select,.mec-dark-mode .mec-fes-form textarea,.mec-dark-mode .mec-fes-list,.mec-dark-mode .mec-hourly-schedule-speaker-contact-information a i,.mec-dark-mode .mec-hourly-schedule-speaker-description,.mec-dark-mode .mec-hourly-schedule-speaker-name,.mec-dark-mode .mec-load-more-button,.mec-dark-mode .mec-next-event-details abbr,.mec-dark-mode .mec-related-event-content h5 a,.mec-dark-mode .mec-related-event-content span,.mec-dark-mode .mec-single-event .mec-event-meta dt,.mec-dark-mode .mec-single-event .mec-event-meta h3,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking form>h4,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking h5 span,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=date],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=email],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=number],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=password],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=text],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking label,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking select,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking textarea,.mec-dark-mode .mec-single-event .mec-frontbox-title,.mec-dark-mode .mec-single-event .mec-speakers-details ul li .mec-speaker-job-title,.mec-dark-mode .mec-single-modern .mec-single-event-bar>div h3,.mec-dark-mode .mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-dark-mode .mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i,.mec-dark-mode .mec-timeline-main-content h4 a,.mec-dark-mode .mec-timetable-event .mec-timetable-event-time,.mec-dark-mode .mec-timetable-events-list .mec-timetable-event span a,.mec-dark-mode .mec-tooltip-event-title,.mec-dark-mode .mec-ttt2-title,.mec-dark-mode .mec-wrap,.mec-dark-mode .mec-wrap .mec-event-list-modern .mec-event-title a,.mec-dark-mode .mec-wrap .mec-event-schedule-content a,.mec-dark-mode .mec-wrap .mec-single-title,.mec-dark-mode .mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-dark-mode .mec-wrap .mec-totalcal-box input,.mec-dark-mode .mec-wrap .mec-totalcal-box select,.mec-dark-mode .mec-wrap h1,.mec-dark-mode .mec-wrap h2,.mec-dark-mode .mec-wrap h3,.mec-dark-mode .mec-wrap h4,.mec-dark-mode .mec-wrap h5,.mec-dark-mode .mec-wrap h6,.mec-dark-mode .mec-wrap p{color:#d2d2d2}.mec-dark-mode .mec-breadcrumbs a:hover,.mec-dark-mode .mec-calendar .mec-event-article .mec-event-title a:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event:hover,.mec-dark-mode .mec-event-footer .mec-booking-button:hover,.mec-dark-mode .mec-event-grid-classic .mec-event-title a:hover,.mec-dark-mode .mec-event-grid-minimal .mec-event-date:hover,.mec-dark-mode .mec-event-grid-minimal .mec-event-title a:hover,.mec-dark-mode .mec-event-list-classic .mec-event-title a:hover,.mec-dark-mode .mec-event-list-minimal .mec-event-title a:hover,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button:hover,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover,.mec-dark-mode .mec-event-list-standard .mec-event-title a:hover,.mec-dark-mode .mec-single-event .mec-event-meta dd a:hover,.mec-dark-mode .mec-wrap .mec-event-list-modern .mec-event-title a:hover,.mec-dark-mode .mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover,.mec-dark-mode .mec-wrap a:hover{color:#fff}.mec-dark-mode .mec-fes-form .mec-attendees-wrapper .mec-attendees-list .w-clearfix:first-child{border-color:#333!important}.mec-dark-mode .mec-fes-form .mec-attendees-wrapper .mec-attendees-list .w-clearfix:nth-child(odd){background:#1f1f1f!important}.mec-dark-mode .mec-fes-form .mec-attendees-wrapper .mec-attendees-list .w-clearfix{background:#282828!important}.mec-dark-mode .lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-dark-mode .mec-related-events-wrap h3.mec-rec-events-title:before,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=radio]:before{background-color:#c4cace}.mec-dark-mode .lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-dark-mode .mec-month-divider span,.mec-dark-mode .mec-related-events-wrap h3.mec-rec-events-title:before,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-dark-mode .mec-single-event .mec-events-meta-group-booking input[type=radio]:before{border-color:#313131}.mec-dark-mode .event-carousel-type3-head .mec-event-footer-carousel-type3,.mec-dark-mode .mec-agenda-events-wrap,.mec-dark-mode .mec-av-spot .mec-av-spot-content,.mec-dark-mode .mec-av-spot .mec-av-spot-head,.mec-dark-mode .mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-dark-mode .mec-calendar .mec-calendar-side .mec-previous-month:hover,.mec-dark-mode .mec-calendar .mec-calendar-topsec,.mec-dark-mode .mec-calendar .mec-event-article:hover,.mec-dark-mode .mec-calendar dt,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table a:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-top,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-previous-month:hover,.mec-dark-mode .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover,.mec-dark-mode .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec,.mec-dark-mode .mec-event-cover-classic,.mec-dark-mode .mec-event-footer .mec-booking-button:hover,.mec-dark-mode .mec-event-grid-clean .mec-event-article,.mec-dark-mode .mec-event-grid-clean .mec-event-content,.mec-dark-mode .mec-event-grid-modern .mec-event-article,.mec-dark-mode .mec-event-grid-modern .mec-event-content,.mec-dark-mode .mec-event-list-minimal a.mec-detail-button:hover,.mec-dark-mode .mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover,.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing,.mec-dark-mode .mec-events-toggle .mec-toggle-item-inner:hover,.mec-dark-mode .mec-hourly-schedule-speaker-contact-information a:hover i,.mec-dark-mode .mec-masonry .mec-masonry-content,.mec-dark-mode .mec-masonry .mec-masonry-head,.mec-dark-mode .mec-slider-t1 .mec-slider-t1-content,.mec-dark-mode .mec-slider-t5 .mec-slider-t5-content,.mec-dark-mode .mec-slider-t5-wrap,.mec-dark-mode .mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-timeline-event-content,.mec-dark-mode .mec-timeline-month-divider,.mec-dark-mode .mec-timetable-events-list .mec-timetable-event:hover,.mec-dark-mode .mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3,.mec-dark-mode .mec-wrap .mec-totalcal-box,.mec-dark-mode .mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-calendar-sec,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year,.mec-dark-mode .tooltipster-sidetip:not(.uael-tooltipster-active) .tooltipster-content{background:#191919}.mec-dark-mode .event-carousel-type3-head .mec-event-footer-carousel-type3,.mec-dark-mode .event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button,.mec-dark-mode .mec-av-spot,.mec-dark-mode .mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-box-calendar.mec-calendar dl dt:last-child,.mec-dark-mode .mec-calendar,.mec-dark-mode .mec-calendar .mec-event-article,.mec-dark-mode .mec-calendar.mec-box-calendar .mec-table-nullday:last-child,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-calendar-d-table,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-dark-mode .mec-calendar.mec-calendar-daily .mec-previous-month:hover,.mec-dark-mode .mec-event-cover-classic,.mec-dark-mode .mec-event-cover-clean,.mec-dark-mode .mec-event-grid-classic .mec-event-article,.mec-dark-mode .mec-event-grid-clean .mec-event-article,.mec-dark-mode .mec-event-grid-modern .mec-event-article,.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing,.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing:after,.mec-dark-mode .mec-event-sharing-wrap>li:first-of-type,.mec-dark-mode .mec-events-agenda,.mec-dark-mode .mec-fes-form .mec-meta-box-fields,.mec-dark-mode .mec-masonry,.mec-dark-mode .mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head,.mec-dark-mode .mec-timeline-month-divider,.mec-dark-mode .mec-wrap .mec-totalcal-box,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-dark-mode .mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{border-color:#353535}.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing:after{border-color:#191919 transparent transparent transparent}.mec-dark-mode .mec-event-sharing-wrap .mec-event-sharing:before{border-color:#353535 transparent transparent transparent}.mec-dark-mode .mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text],.mec-dark-mode .mec-events-meta-group-booking .StripeElement,.mec-dark-mode .mec-wrap .mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=email],.mec-dark-mode .mec-wrap .mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]{background:#999!important;border:1px solid #353535!important;box-shadow:none!important;color:#353535!important}.mec-dark-mode .CardField CardField--ltr .__PrivateStripeElement .InputContainer input{color:#d2d2d2!important}.mec-dark-mode .mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;box-shadow:0 10px 15px #282828}.mec-dark-mode .mec-agenda-events-wrap .mec-event-grid-colorful .mec-event-content{background-color:transparent}.mec-dark-mode .mec-calendar .mec-calendar-side{box-shadow:0 1px 5px 6px rgba(255,255,255,.005) inset}.mec-dark-mode .tooltipster-sidetip.tooltipster-shadow:not(.uael-tooltipster-active) .tooltipster-box{border:1px solid #282828!important}.mec-dark-mode .mec-timeline-event-content:after{border-color:transparent #191919 transparent transparent}.mec-dark-mode .mec-fes-form .mec-meta-box-fields{box-shadow:0 2px 6px -3px #353535}.mec-dark-mode .mec-fes-form .mec-meta-box-fields h4{color:#d2d2d2;background:#000}.mec-dark-mode .mec-fes-form input[type=email],.mec-dark-mode .mec-fes-form input[type=number],.mec-dark-mode .mec-fes-form input[type=password],.mec-dark-mode .mec-fes-form input[type=tel],.mec-dark-mode .mec-fes-form input[type=text],.mec-dark-mode .mec-fes-form select,.mec-dark-mode .mec-fes-form textarea{box-shadow:0 2px 5px rgba(0,0,0,.38) inset}.mec-dark-mode .mec-fes-form input{background:#353535!important;color:#d2d2d2!important}.mec-dark-mode .mec-booking-tab-content .button:hover,.mec-dark-mode .mec-booking-tab-content .mec-reg-field-add-option:hover,.mec-dark-mode .mec-fes-form .mec-form-row .button:not(.wp-color-result):hover{background:#353535;color:#d2d2d2;border-color:#353535;box-shadow:0 2px 6px -3px #353535}.mec-dark-mode .mec-booking-tab-content .button,.mec-dark-mode .mec-booking-tab-content .mec-reg-field-add-option,.mec-dark-mode .mec-fes-form .mec-form-row .button:not(.wp-color-result),.mec-dark-mode .mec-fes-form input[type=file],.mec-dark-mode ul#mec_orgz_form_row li .mec-additional-organizer-remove,.mec-dark-mode ul#mec_reg_form_fields li .mec_reg_field_remove{color:#d2d2d2;background:#282828;border:2px solid #353535;box-shadow:0 2px 6px -3px #353535}.mec-dark-mode #mec_reg_form_fields input[type=checkbox],.mec-dark-mode #mec_reg_form_fields input[type=radio],.mec-dark-mode .mec-form-row input[type=checkbox],.mec-dark-mode .mec-form-row input[type=radio]{background-color:#000;border:1px solid #353535;box-shadow:0 1px 3px -1px #353535}.mec-dark-mode .mec-fes-form .select2-container{border:1px solid #353535;background-color:#282828;color:#d2d2d2}.mec-dark-mode ul#mec_bfixed_form_fields li,.mec-dark-mode ul#mec_orgz_form_row li,.mec-dark-mode ul#mec_reg_form_fields li{background:#000;border-color:#000}.mec-dark-mode #mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button{background:#000;border-color:#2d2d2d;box-shadow:0 2px 6px -3px #2d2d2d}.mec-dark-mode #mec_reg_form_field_types .button.red{background:#2d2d2d;border-color:#2d2d2d;box-shadow:0 2px 6px -3px #2d2d2d}.mec-dark-mode #mec_bfixed_form_field_types .button,.mec-dark-mode #mec_reg_form_field_types .button{color:#d2d2d2;box-shadow:0 2px 6px -3px #2d2d2d;border-color:#2d2d2d}.mec-dark-mode #mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button:hover,.mec-dark-mode #mec_reg_form_field_types .button:hover{background:#000}.mec-dark-mode ul#mec_bfixed_form_fields li .mec_bfixed_field_remove,.mec-dark-mode ul#mec_orgz_form_row li .mec-additional-organizer-remove,.mec-dark-mode ul#mec_reg_form_fields li .mec_reg_field_remove{background:#282828}.mec-dark-mode #mec_taxes_fees_container_toggle [id^=mec_remove_fee_button]:hover,.mec-dark-mode #mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]:hover,.mec-dark-mode ul#mec_bfixed_form_fields li .mec_bfixed_field_remove:hover,.mec-dark-mode ul#mec_orgz_form_row li .mec-additional-organizer-remove:hover,.mec-dark-mode ul#mec_reg_form_fields li .mec_reg_field_remove:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}.mec-events-meta-group-booking-shortcode{background-color:#e6f7ff;padding:40px;position:relative}.mec-events-meta-group-booking-shortcode h4{margin-bottom:20px}.mec-booking-shortcode .mec-event-tickets-list.mec-sell-all-occurrences{width:100%}.mec-booking-shortcode .mec-book-reg-field-mec_email{width:48%;display:inline-block;margin-right:30px}.mec-booking-shortcode .mec-book-reg-field-name{width:48%;display:inline-block}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-expiration-date-month{width:48%;display:inline-block;vertical-align:top;margin-right:30px}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-cvv2{width:48%;display:inline-block}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-expiration-date-month .nice-select{width:48%;display:inline-block}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-expiration-date-month label{width:100%}.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-expiration-date-month .nice-select:first-of-type{margin-right:10px}.mec-booking-shortcode .mec-form-row.mec-name-stripe,.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-card-type,.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-first-name{width:48%;vertical-align:top;display:inline-block;margin-right:30px}.mec-booking-shortcode .mec-form-row.mec-email-stripe,.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-cc-number,.mec-booking-shortcode .mec-form-row.mec-paypal-credit-card-last-name{width:48%;display:inline-block}.mec-events-meta-group-booking .mec-booking-shortcode .StripeElement{height:56px;padding:19px 12px 0;max-width:420px}.mec-booking-shortcode .nice-select,.mec-booking-shortcode input{float:none;border:1px solid #c7ebfb!important;border-radius:3px;background-color:#fff;height:41px;line-height:39px;padding-left:15px;padding-right:15px;margin:0;margin-bottom:24px!important;color:#00acf8;font-size:14px;font-weight:400;box-shadow:none!important;min-height:unset;min-width:unset;padding-top:0;padding-bottom:0}.mec-booking-shortcode .mec-gateway-message.mec-success{font-size:14px}.mec-booking-shortcode .mec-form-row.mec-name-stripe{margin-bottom:0!important}.mec-booking-shortcode .mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text],.mec-events-meta-group-booking .mec-booking-shortcode .StripeElement{border:1px solid #c7ebfb!important;border-radius:3px;box-shadow:none!important}.mec-booking-shortcode .nice-select ul{width:100%}.mec-booking-shortcode .mec-event-ticket-name,.mec-booking-shortcode .mec-event-ticket-price,.mec-booking-shortcode .mec-ticket-variation-name,.mec-booking-shortcode .mec-ticket-variation-price,.mec-booking-shortcode label{font-size:14px;line-height:19px;font-weight:400;color:#00acf8;padding-right:5px;margin:0 0 4px!important}.mec-booking-shortcode span.mec-event-ticket-available{margin-top:-22px!important;margin-bottom:28px!important;display:block;font-size:11px;letter-spacing:.5px;font-weight:300;color:#80abbf}.mec-booking-shortcode button{background-color:#00acf8;border-radius:2px;box-shadow:0 2px 2px rgba(0,172,248,.27);font-weight:500;font-size:11px;letter-spacing:.5px;margin:0;min-width:116px;padding:16px 15px 14px;float:none;position:relative;border:none;color:#fff;display:inline-block}.mec-booking-shortcode .mec-booking-form-container ul li{list-style:none}.mec-booking-shortcode .mec-booking-form-container ul{padding:0}.mec-events-meta-group-booking-shortcode .mec-error{background-color:#ff017e;color:#fff!important;margin:24px 0 24px;padding:10px 15px;border-radius:3px}.mec-events-meta-group-booking-shortcode .info-msg{margin:24px 0 24px}.mec-booking-shortcode .mec-book-ticket-variation h5{margin:0 0 4px}.mec-booking-shortcode .mec-book-available-tickets-details-header{border-bottom:2px solid #00acf8}.mec-booking-shortcode .mec-book-available-tickets-details-header,.mec-booking-shortcode .mec-book-available-tickets-details-item,.mec-booking-shortcode .mec-book-price-detail{display:-webkit-box;display:flex;flex-wrap:wrap}.mec-booking-shortcode .mec-book-available-tickets-details-header span,.mec-booking-shortcode .mec-book-available-tickets-details-item span,.mec-booking-shortcode .mec-book-price-detail span{-webkit-box-flex:1.97;flex:1.97 1.97 0;min-height:1px;font-size:14px;line-height:22px;color:#616264;font-weight:500;padding-bottom:20px;padding-top:20px}.mec-booking-shortcode .mec-book-available-tickets-details span:nth-of-type(2),.mec-booking-shortcode .mec-book-available-tickets-details-item span:nth-of-type(2),.mec-booking-shortcode .mec-book-price-detail span:nth-of-type(2){-webkit-box-flex:1;flex:1 1 0}.mec-booking-shortcode .mec-book-available-tickets-details span:last-child,.mec-booking-shortcode .mec-book-available-tickets-details-item span:last-child,.mec-booking-shortcode .mec-book-price-detail span:last-child{-webkit-box-flex:1.085;flex:1.085 1.085 0}.mec-booking-shortcode .mec-book-available-tickets-details-header span{padding-bottom:11px}.mec-booking-shortcode .mec-book-available-tickets-details-item span{font-weight:400;font-size:12px}.mec-booking-shortcode span.mec-book-price-detail-amount,.mec-booking-shortcode span.mec-book-price-detail-description{font-size:14px;line-height:22px;font-weight:500;padding:6px 0;color:#000}.mec-booking-shortcode span.mec-book-price-detail-amount{color:#777}.mec-booking-shortcode .mec-book-form-gateways label{cursor:pointer}.mec-booking-shortcode .mec-book-form-gateways label{cursor:pointer}.mec-booking-shortcode span.mec-book-price-detail-description{padding:6px 13px 6px 0;font-size:14px;font-weight:400;color:#00acf8}.mec-booking-shortcode ul.mec-book-price-details li{border-right:1px solid #c7ebfb!important}@media(max-width:980px){.mec-events-meta-group-booking-shortcode{padding:20px}.mec-booking-shortcode ul.mec-book-price-details li{width:100%;border-right:0px!important;border-bottom:1px solid}.mec-booking-shortcode ul.mec-book-price-details li:last-child{width:100%;border-right:0;border-bottom:0 solid}}.mec-booking-shortcode span.mec-book-price-total{font-size:22px;line-height:22px;font-weight:700;color:#2bbc10;margin-top:20px;margin-bottom:35px;display:inline-block}.mec-booking-shortcode ul.mec-book-price-details{border:1px solid #c7ebfb!important;border-radius:3px;box-shadow:none!important}.mec-booking-shortcode span.mec-book-price-total-description{font-size:18px;line-height:22px;font-weight:700;color:#000}.mec-booking-shortcode span.mec-book-price-total-amount{font-size:22px;line-height:22px;font-weight:700;color:#2bbc10}.mec-booking-shortcode .mec-book-form-price{clear:both;position:relative}.mec-booking-shortcode .mec-book-form-gateway-label input[type=radio]:after{content:"";display:inline-block;width:7px;height:7px;background-color:#fff;border-radius:50%;cursor:pointer;position:absolute;top:4px;left:3px}.mec-booking-shortcode .mec-book-form-gateway-label input[type=radio]:before{box-shadow:none;border:2px solid #a8e4ff;width:17px;height:17px;position:absolute;top:-9px;left:-2px;margin:0;content:"";display:inline-block;background:#fff;border-radius:18px;cursor:pointer;position:relative}.mec-booking-shortcode .mec-book-form-gateway-label{-webkit-box-flex:0;flex:0 0 50%;margin-bottom:14px;padding-right:15px}.mec-booking-shortcode .mec-book-form-gateways{display:-webkit-box;display:flex;flex-wrap:wrap;margin-bottom:20px}.mec-booking-shortcode .mec-book-form-gateway-checkout{-webkit-box-flex:0;flex:0 0 100%;max-width:100%}.mec-booking-shortcode input::-webkit-input-placeholder,.mec-booking-shortcode textarea::-webkit-input-placeholder{color:#afe6ff}.mec-booking-shortcode input::-moz-placeholder,.mec-booking-shortcode textarea::-moz-placeholder{color:#afe6ff}.mec-booking-shortcode input:-ms-input-placeholder,.mec-booking-shortcode textarea:-ms-input-placeholder{color:#afe6ff}.mec-booking-shortcode input:-moz-placeholder,.mec-booking-shortcode textarea:-moz-placeholder{color:#afe6ff}.mec-booking-shortcode input[type=radio]:checked:before{border:2px solid #a8e4ff;box-shadow:none}.mec-booking-shortcode input[type=radio]:checked:after{background-color:#00acf8}.mec-booking-shortcode .mec-book-form-gateway-label label input{position:relative;cursor:pointer;margin:0!important;height:auto;margin-right:4px!important}.mec-booking-shortcode .mec-click-pay button[type=submit]{position:absolute;left:190px;bottom:40px}.mec-booking-shortcode button#mec-book-form-btn-step-2{margin-left:30px}.mec-booking-shortcode .mec-ticket-name{display:inline-block;background-color:#fff;border-radius:3px;font-size:12px;line-height:12px;font-weight:400;color:#00acf8;padding:8px 13px;letter-spacing:0}.mec-booking-shortcode .mec_book_first_for_all{display:none}.mec-booking-shortcode li.mec-first-for-all-wrapper{margin-bottom:20px}.mec-booking-shortcode label.wn-checkbox-label:before{display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:"";-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5;position:absolute;background-color:#00acf8;width:2px;-webkit-transform:rotate(-138deg);transform:rotate(-138deg)}.mec-booking-shortcode label.wn-checkbox-label{position:relative;display:inline-block;-moz-transition:border-color ease .2s;-o-transition:border-color ease .2s;-webkit-transition:border-color ease .2s;transition:border-color ease .2s;cursor:pointer;vertical-align:middle;font-size:14px;line-height:19px;font-weight:400;color:#00acf8;margin:0 0 4px!important;padding:0;background-color:#fff;border:2px solid #a8e4ff;width:17px;height:17px;border-radius:3px;margin-right:9px!important;box-shadow:none}.mec-booking-shortcode label.wn-checkbox-label:after{-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg);-moz-animation:dothabottomcheck 80ms ease 0s forwards;-o-animation:dothabottomcheck 80ms ease 0s forwards;-webkit-animation:dothabottomcheck 80ms ease 0s forwards;animation:dothabottomcheck 80ms ease 0s forwards;content:"";display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:"";-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5;position:absolute;background-color:#00acf8;width:2px}.mec-booking-shortcode input[type=checkbox]:checked+.wn-checkbox-label::after{height:5px;left:2px;top:7px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.mec-booking-shortcode input[type=checkbox]:checked+.wn-checkbox-label::before{height:6px;left:7px;top:9px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.mec-booking-shortcode button[type=button],.mec-booking-shortcode button[type=submit]{font-weight:500;font-size:13px;letter-spacing:.5px;line-height:16px;outline:0}.mec-booking-shortcode button.mec-book-form-back-button{background-color:#afe6ff;box-shadow:0 2px 2px rgba(175,230,255,.27)}.mec-booking-shortcode button[type=button]:hover,.mec-booking-shortcode button[type=submit]:hover{background-color:#000;text-decoration:none;box-shadow:0 4px 10px rgba(1,2,4,.32)}.mec-booking-shortcode a.button:after,.mec-booking-shortcode button[type=submit]:after{display:none;width:13px;height:13px;border-top:0;border-right:.1em solid #f0f1f1;border-bottom:.1em solid #fbfbfb;border-left:.1em solid #fff;content:"";-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear;background:rgba(0,0,0,0);position:absolute;top:18px;right:20px;border-radius:50%;z-index:999999999999}.mec-booking-shortcode a.button.loading:after,.mec-booking-shortcode button[type=submit].loading:after{display:block}.mec-booking-shortcode .mec-book-form-coupon{margin-bottom:35px}.mec-booking-calendar-month-navigation{position:relative;text-align:center;padding:1px 0 1px;max-width:330px}.mec-booking-calendar.mec-wrap{margin-bottom:20px;width:100%}.mec-booking-calendar.mec-wrap{max-width:330px;background:#fff;box-shadow:0 1px 5px 6px rgba(0,0,0,.005) inset;border:1px solid #efefef}.mec-booking-calendar-month-navigation .mec-calendar-header h2{text-transform:uppercase;font-size:13px;font-weight:700;line-height:1.14;margin:16px auto;color:#333}.mec-booking-calendar-month-navigation .mec-next-month,.mec-booking-calendar-month-navigation .mec-previous-month{cursor:pointer;position:absolute;top:0;min-width:40px;height:40px;line-height:40px;text-align:center;background:#fff;color:#a9a9a9;font-size:10px;letter-spacing:1px;text-transform:uppercase;padding-left:5px;padding-right:5px;border-top:none;transition:all .33s ease;border-bottom:1px solid #efefef;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease}.mec-booking-calendar-month-navigation .mec-previous-month{left:0;border-bottom-right-radius:6px;border-left:none;border-right:1px solid #efefef}.mec-booking-calendar-month-navigation .mec-next-month{right:0;border-bottom-left-radius:6px;border-right:none;border-left:1px solid #efefef}.mec-booking-calendar-month-navigation .mec-next-month:hover,.mec-booking-calendar-month-navigation .mec-previous-month:hover{background-color:#f9f9f9;color:#40d9f1}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar{margin-bottom:0;width:100%}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar dl dt{text-align:center;padding:0;height:47px;line-height:47px;border:0;cursor:pointer}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar dl dt:last-child{border:0}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar .mec-calendar-row dt:hover{background:0 0}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar .mec-calendar-novel-selected-day,.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar .mec-calendar-novel-selected-day span{width:32px;height:32px;margin:auto;line-height:30px;border-radius:50%;font-size:12px;font-weight:600;padding:0}.mec-has-event-for-booking{position:relative}.mec-has-event-for-booking .mec-calendar-novel-selected-day{border:2px solid #40d9f1;border-radius:50px;cursor:pointer}.mec-has-event-for-booking.mec-active .mec-calendar-novel-selected-day{background-color:#40d9f1}.mec-has-event-for-booking .mec-booking-calendar-date,.mec-has-event-for-booking .mec-booking-tooltip,.mec-multiple-event .mec-has-event-for-booking .mec-booking-tooltip{opacity:0;visibility:hidden;transition:all .4s ease}.mec-has-event-for-booking .mec-booking-tooltip,.mec-multiple-event .mec-has-event-for-booking .mec-booking-tooltip{top:60px}.mec-has-event-for-booking .mec-booking-tooltip,.mec-multiple-event .mec-has-event-for-booking .mec-booking-tooltip{position:absolute;z-index:99;width:150px;font-size:9px;left:calc(50% - 75px);background:#535a61;line-height:29px;border-radius:4px;color:#fff;font-weight:400;letter-spacing:1px;text-transform:uppercase;padding:3px 5px;box-shadow:0 4px 15px -2px #444b50a3}.mec-has-event-for-booking:hover .mec-booking-calendar-date,.mec-has-event-for-booking:hover .mec-booking-tooltip,.mec-has-event-for-booking:hover .mec-booking-tooltip.multiple-time .mec-booking-calendar-date,.mec-multiple-event .mec-has-event-for-booking:hover .mec-booking-calendar-date,.mec-multiple-event .mec-has-event-for-booking:hover .mec-booking-tooltip{opacity:1;visibility:visible}.mec-has-event-for-booking:hover .mec-booking-tooltip,.mec-multiple-event .mec-has-event-for-booking:hover .mec-booking-tooltip{top:43px}.mec-has-event-for-booking .mec-booking-calendar-date:before,.mec-multiple-event .mec-has-event-for-booking .mec-booking-calendar-date:before{display:block;content:""!important;position:absolute!important;width:12px;height:12px;top:-6px;left:calc(50% - 6px);transform:rotate(-45deg)!important;background-color:#535a61;z-index:0!important;box-shadow:0 8px 9px -9px #535a61!important}.mec-multiple-event .mec-has-event-for-booking .mec-booking-calendar-date-hover{border-bottom:1px solid #ffffff30}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar.mec-multiple-event .first-day{position:relative;padding-left:7px}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar.mec-multiple-event .first-day .mec-calendar-novel-selected-day{border-radius:47px;border-top-right-radius:0;border-bottom-right-radius:0;border-right:0;width:100%}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar.mec-multiple-event .first-day .mec-calendar-novel-selected-day span{margin-left:-7px}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar.mec-multiple-event .last-day{position:relative;padding-right:7px}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar.mec-multiple-event .last-day .mec-calendar-novel-selected-day{border-radius:47px;border-top-left-radius:0;border-bottom-left-radius:0;border-left:0;width:100%}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar.mec-multiple-event .last-day .mec-calendar-novel-selected-day span{margin-right:-7px}.mec-events-meta-group-booking .mec-booking-calendar .mec-calendar.mec-multiple-event .middle-day .mec-calendar-novel-selected-day{border-radius:0;border-right:0;border-left:0;width:100%}.mec-booking-tooltip.multiple-time{color:#fff}.mec-booking-tooltip.multiple-time .mec-booking-calendar-date:before{display:none}.mec-booking-tooltip.multiple-time .mec-booking-calendar-date:first-child:before{display:block}.mec-booking-tooltip.multiple-time .mec-booking-calendar-date{border:1px dashed #68717a;line-height:25px;margin:8px 0;border-radius:20px;transition:all .17s ease;-webkit-transition:all .17s ease;-moz-transition:all .17s ease;-ms-transition:all .17s ease;-o-transition:all .17s ease}.mec-booking-tooltip.multiple-time .mec-booking-calendar-date:hover,.mec-calendar-day.mec-active .mec-booking-tooltip.multiple-time .mec-booking-calendar-date.mec-active{background:#40d9f1;border-color:#40d9f1}.mec-choosen-time-message{max-width:330px;padding:3px 14px;border-radius:4px;background:rgb(64 217 241 / 24%);color:#40d9f1;transition:all .17s ease;opacity:1;visibility:visible;font-size:12px;margin-bottom:20px}.mec-choosen-time-message .mec-choosen-time{padding-left:7px}.mec-choosen-time-message.disable,.mec-choosen-time-message.disable .mec-choosen-time-message{opacity:0;visibility:hidden;padding:0;font-size:0;margin:0}.lity-wrap .mec-booking-calendar.mec-wrap{margin-top:20px}.lity-wrap .mec-booking-calendar-month-navigation,.lity-wrap .mec-booking-calendar.mec-wrap,.lity-wrap .mec-choosen-time-message{max-width:100%}.mec-events-meta-group-booking-shortcode .mec-booking-calendar-wrapper .mec-booking-calendar .mec-calendar dl dt{height:47px!important}@media (min-width:961px){.mec-wrap .mec-events-meta-group-booking .mec-booking-calendar .mec-calendar dl dt{height:47px}}.mec-dark-mode .mec-single-event .mec-events-meta-group-booking .mec-booking-calendar-month-navigation,.mec-dark-mode .mec-single-event .mec-events-meta-group-booking .mec-calendar{background:#000;border-color:#222;color:#999}.mec-dark-mode .mec-booking-calendar-month-navigation .mec-next-month,.mec-dark-mode .mec-booking-calendar-month-navigation .mec-previous-month{background:#222;border-color:#000;color:#d2d2d2}.mec-dark-mode .mec-booking-calendar.mec-wrap{border-color:#111}.mec-dark-mode .mec-events-meta-group-booking .mec-booking-calendar .mec-calendar .mec-calendar-row dt:hover{background:0 0!important}.mec-dark-mode .mec-calendar.mec-event-calendar-classic,.mec-dark-mode .mec-calendar.mec-event-calendar-classic .mec-calendar-side{height:auto}.is-light-theme .mec-fes-form textarea{border:1px solid #cfeff5;box-shadow:0 2px 5px rgba(207,239,245,.38) inset}.is-light-theme .mec-fes-form .select2-selection{height:auto}.is-light-theme .mec-fes-form input[type=checkbox]:after{border:unset!important}.is-light-theme .mec-fes-form input[type=radio]:after{background:unset!important}.is-light-theme .mec-fes-form input+label{padding-top:0}.is-light-theme .mec-events-event-image img{height:auto}span.mec-booking-field-required{color:red;margin-left:10px}.mec-gCalendar{position:relative}.mec-gCalendar-filters{display:none;position:absolute;width:518px;background:#fff;right:calc(50% - 119px);top:62px;z-index:99;border:1px solid #e3e4e5;border-radius:7px;box-shadow:0 2px 7px rgb(0 0 0 / 5%)}.mec-gCalendar-filters-wrap{display:flex;flex-wrap:wrap;justify-content:space-between;padding:30px;gap:20px 10px;align-items:center}.mec-gCalendar-filters-wrap>div{display:flex;align-items:center}.mec-gCalendar-filters-wrap .select2-container--default>ul{margin-top:2px;width:100%}.mec-gCalendar-filters-wrap span.select2.select2-container{width:100%!important}.mec-gCalendar-filters-wrap .select2-container--default>ul>li{width:100%}.mec-gCalendar-filters-wrap .select2-container--default{height:39px}.mec-gCalendar-filters-wrap span.select2-selection.select2-selection--multiple{border:none!important;height:38px!important}.mec-gCalendar-filters-wrap .select2-container--default .select2-selection--multiple .select2-selection__choice{margin:0;background-color:#eee;font-size:11px}.mec-gCalendar-filters-wrap .select2-container--default .select2-selection--multiple .select2-selection__rendered li{line-height:29px;margin-top:5px;border:none;margin-right:5px}.mec-gCalendar-filters-wrap .mec-searchbar-category-wrap{margin:0!important;width:182px!important;padding:0!important;height:40px!important;border-radius:0 3px 3px 0;border:1px solid #e3e4e5!important}.mec-gCalendar-filters-wrap .mec-checkboxes-search i,.mec-gCalendar-filters-wrap .mec-dropdown-search i,.mec-gCalendar-filters-wrap .mec-minmax-event-cost i,.mec-gCalendar-filters-wrap .mec-text-address-search i{color:#b7b7b7;background-color:#fbfbfb;border-radius:3px 0 0 3px;border:1px solid #e3e4e5;width:40px;height:40px;line-height:40px;padding:0;border-right:0;text-align:center}.mec-gCalendar-filters-wrap .mec-minmax-event-cost input,.mec-gCalendar-filters-wrap .mec-minmax-event-cost input:focus,.mec-gCalendar-filters-wrap .mec-text-address-search input,.mec-gCalendar-filters-wrap .mec-text-address-search input:focus{width:208px;height:40px;border-radius:0;border-right:0;border-color:#e3e4e5;font-size:12px}.mec-gCalendar-filters-wrap .mec-text-address-search input,.mec-gCalendar-filters-wrap .mec-text-address-search input:focus{width:415px}.mec-gCalendar-filters-wrap .mec-minmax-event-cost input:last-child,.mec-gCalendar-filters-wrap .mec-text-address-search input,.mec-gCalendar-filters-wrap .mec-text-address-search input:focus{border-right:1px solid #e3e4e5;border-radius:0 3px 3px 0}.mec-gCalendar .fc .fc-scroller-harness,.mec-gCalendar .fc .fc-scroller-liquid-absolute,.mec-gCalendar .fc-h-event .fc-event-title{overflow:visible!important}#MonthPicker_mec-gCalendar-month-filter:after,#MonthPicker_mec-gCalendar-month-filter:before,.mec-gCalendar-filters:after,.mec-gCalendar-filters:before{content:'';display:block;position:absolute;left:50%;margin-left:77px;width:0;height:0;border-style:solid;border-width:7px}#MonthPicker_mec-gCalendar-month-filter:after,#MonthPicker_mec-gCalendar-month-filter:before{margin-left:68px}#MonthPicker_mec-gCalendar-month-filter:before,.mec-gCalendar-filters:before{top:-15px;border-color:transparent transparent #e3e9f1 transparent}#MonthPicker_mec-gCalendar-month-filter:after,.mec-gCalendar-filters:after{top:-14px;border-color:transparent transparent #fff transparent}.mec-gCalendar-tooltip{width:290px;height:auto;position:absolute;background:#fff;z-index:999999999;bottom:calc(100% + 9px);border:1px solid #e3e4e5;border-radius:7px;opacity:1;box-shadow:0 4px 13px rgb(0 0 0 / 7%);left:calc(50% - 145px);font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}.mec-gCalendar-tooltip-image img{width:100%;border-radius:3px}.mec-gCalendar-tooltip-image{padding:10px}.mec-gCalendar a.fc-event:active{opacity:1}.mec-gCalendar a.fc-event{padding:7px 3px;font-size:12px;font-weight:400;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}.mec-gCalendar-tooltip-title{color:#000;line-height:24px;font-size:15px;padding:10px 25px;font-weight:500}.mec-gCalendar-tooltip-title span{width:12px;height:12px;display:inline-block;margin-left:7px;vertical-align:middle;border-radius:50px}.mec-gCalendar-tooltip-location{color:#707172;font-size:12px;font-weight:400;line-height:23px;padding:0 25px 15px;margin-top:-2px}.mec-gCalendar-tooltip-location i{margin-right:6px;color:#c1c7ce}.mec-gCalendar .fc-event-time{display:none}.mec-gCalendar-tooltip-date{background:#f7f8f9;color:#898a8c;font-weight:400;padding:10px 24px}.mec-gCalendar-tooltip-date{display:flex;justify-content:space-between}.mec-gCalendar-tooltip-date-text>div>span,.mec-gCalendar-tooltip-date-time>div>span{display:block;margin:0 0 5px}.mec-gCalendar-tooltip-date-text>div>span:last-child,.mec-gCalendar-tooltip-date-time>div>span:last-child{margin:0}.mec-gCalendar-tooltip-date-text,.mec-gCalendar-tooltip-date-time{display:flex;align-items:baseline}.mec-gCalendar-tooltip-date-text i,.mec-gCalendar-tooltip-date-time i{margin-right:8px;color:#c1c7ce}.mec-gCalendar-tooltip:after,.mec-gCalendar-tooltip:before{content:'';display:block;position:absolute;left:calc(50% - 10px);width:0;height:0;border-style:solid;border-width:10px}.mec-gCalendar-tooltip:before{bottom:-21px;border-color:#e3e9f1 transparent transparent transparent}.mec-gCalendar-tooltip:after{bottom:-20px;border-color:#fff transparent transparent transparent}.mec-gCalendar input#mec-gCalendar-month-filter{display:none}.mec-gCalendar .fc-header-toolbar .fc-toolbar-chunk,.mec-gCalendar .fc-header-toolbar .fc-toolbar-chunk>div:not(#MonthPicker_mec-gCalendar-month-filter){display:flex;align-items:center}.mec-gCalendar .fc-header-toolbar.fc-toolbar{border:1px solid #e3e4e5;border-radius:7px;padding:20px 16px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;position:relative}.mec-gCalendar h2.fc-toolbar-title{font-size:22px;font-weight:600;line-height:20px;margin-right:20px;position:relative}.mec-gCalendar h2.fc-toolbar-title i{color:#a1a2a3;cursor:pointer}.mec-gCalendar h2.fc-toolbar-title button{background:0 0;border:none;cursor:pointer}.mec-gCalendar button.fc-nextYear-button.fc-button.fc-button-primary,.mec-gCalendar button.fc-nextYear-button.fc-button.fc-button-primary:active,.mec-gCalendar button.fc-prevYear-button.fc-button.fc-button-primary,.mec-gCalendar button.fc-prevYear-button.fc-button.fc-button-primary:active{background:#fff;color:#a1a2a3;border-radius:7px 0 0 7px;border-color:#e3e4e5;padding:2px;box-shadow:none!important}.mec-gCalendar button.fc-button span.fc-icon{font-size:20px;padding:1px 0;width:30px;height:30px;vertical-align:middle;position:relative}.mec-gCalendar button.fc-button span.fc-icon:before{vertical-align:middle;font-size:18px;position:absolute;top:calc(50% - 9px);left:calc(50% - 9px)}.mec-gCalendar button.fc-prevYear-button.fc-button.fc-button-primary{border-right:none}.mec-gCalendar button.fc-nextYear-button.fc-button.fc-button-primary{border-left:none;border-radius:0 7px 7px 0}.mec-gCalendar button.fc-next-button.fc-button.fc-button-primary,.mec-gCalendar button.fc-next-button.fc-button.fc-button-primary:active,.mec-gCalendar button.fc-prev-button.fc-button.fc-button-primary,.mec-gCalendar button.fc-prev-button.fc-button.fc-button-primary:active{background:#fff;color:#a1a2a3;border-right:none;border-left:none;border-radius:0;border-color:#e3e4e5;padding:2px;box-shadow:none!important}.mec-gCalendar button.fc-today-button.fc-button.fc-button-primary,.mec-gCalendar button.fc-today-button.fc-button.fc-button-primary:active{background:#fff;color:#707070;border-left:none;border-right:none;border-radius:0;border-color:#e3e4e5;font-size:13px;text-transform:capitalize;font-weight:400;opacity:1;padding:7px 8px 8px;box-shadow:none!important;cursor:pointer}.mec-gCalendar button.fc-today-button.fc-button.fc-button-primary:disabled{cursor:auto}.mec-gCalendar button.fc-button.fc-button-primary:hover span{background:#f4f5f6;color:#000;border-radius:7px}.mec-gCalendar button.fc-today-button.fc-button.fc-button-primary:not(:disabled):hover{background:#f4f5f6;color:#000;border-radius:0}.mec-gCalendar button.fc-filterEvents-button.fc-button.fc-button-primary,.mec-gCalendar button.fc-findEvents-button.fc-button.fc-button-primary,.mec-gCalendar button.fc-findEvents-button.fc-button.fc-button-primary:active{min-width:100px;border-radius:7px!important;margin-right:0;background:#00acf8;border:none!important;padding:10px 15px 11px;font-size:13px;font-weight:500;margin-left:20px!important;box-shadow:none!important}.mec-gCalendar button.fc-filterEvents-button.fc-button.fc-button-primary{position:relative;text-align:right;padding-right:13px;padding-left:32px;min-width:auto;background:0 0;font-size:14px;color:#969798}.mec-gCalendar button.fc-filterEvents-button.fc-button.fc-button-primary:active,.mec-gCalendar button.fc-filterEvents-button.fc-button.fc-button-primary:hover{background:#f4f5f6;color:#000}.mec-gCalendar button.fc-filterEvents-button.fc-button.fc-button-primary svg{position:absolute;left:10px;top:14px}.mec-gCalendar-tooltip-location,.mec-gCalendar-tooltip-title{white-space:normal}.mec-gCalendar .mec-gCalendar-search-text-wrap input[type=text],.mec-gCalendar .mec-gCalendar-search-text-wrap input[type=text]:focus{margin:0;border:none;box-shadow:none!important;font-size:14px;font-weight:400;line-height:20px;color:#949aa1;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;padding-right:5px}.mec-gCalendar .mec-gCalendar-search-text-wrap input[type=text]::-webkit-input-placeholder{color:#949aa1}.mec-gCalendar .mec-gCalendar-search-text-wrap input[type=text]::-moz-placeholder{color:#949aa1}.mec-gCalendar .mec-gCalendar-search-text-wrap input[type=text]:-ms-input-placeholder{color:#949aa1}.mec-gCalendar .mec-gCalendar-search-text-wrap input[type=text]:-moz-placeholder{color:#949aa1}.mec-gCalendar-search-text-wrap{border-left:1px solid #e3e4e5;padding-left:16px}.mec-gCalendar-search-text-wrap i{margin-right:0;color:#bcc4ce;font-size:17px}.mec-gCalendar .fc-direction-ltr .fc-button-group>.fc-button:first-child{margin-left:7px!important}.mec-gCalendar .fc-direction-ltr .fc-toolbar>*>:not(:first-child){margin-left:0}.mec-gCalendar .mec-localtime-wrap{color:#000;font-size:11px;margin-top:2px;margin-bottom:2px}.mec-gCalendar .fc-theme-standard .fc-popover{background:#fff;border:1px solid #e3e4e5;border-radius:7px;box-shadow:0 4px 13px rgb(0 0 0 / 7%)}.mec-gCalendar .mec-localtime-wrap i{display:none}.ui-widget-header.month-picker-header.ui-corner-all{background:0 0;border:none;margin-top:10px;margin-bottom:10px}div#MonthPicker_mec-gCalendar-month-filter .ui-widget-header.month-picker-header.ui-corner-all>table>tbody>tr{display:flex;justify-content:space-between;align-items:center;background:0 0}div#MonthPicker_mec-gCalendar-month-filter .month-picker-year-table .month-picker-title .ui-button{padding:2px 10px!important}div#MonthPicker_mec-gCalendar-month-filter{top:100%!important;width:210px;border:1px solid #e3e4e5;border-radius:7px;padding:0 15px 0;left:1.7%!important}div#MonthPicker_mec-gCalendar-month-filter table.month-picker-year-table tbody>tr:nth-child(odd)>td,div#MonthPicker_mec-gCalendar-month-filter table.month-picker-year-table tbody>tr:nth-child(odd)>th{background-color:#fff;border:none}div#MonthPicker_mec-gCalendar-month-filter .month-picker-year-table .ui-button{background:0 0}div#MonthPicker_mec-gCalendar-month-filter .month-picker table.month-picker-month-table{border:none;border-collapse:collapse;border-spacing:0;margin-bottom:9px}div#MonthPicker_mec-gCalendar-month-filter .month-picker-month-table td{border:none}div#MonthPicker_mec-gCalendar-month-filter .month-picker-month-table .ui-button{background:#fff;border:none;width:50px;height:43px;padding:0;padding-top:13px;margin:1px}div#MonthPicker_mec-gCalendar-month-filter .month-picker-month-table .ui-button.ui-state-active,div#MonthPicker_mec-gCalendar-month-filter .month-picker-month-table .ui-button:hover{background:#00acf8;color:#fff}div#MonthPicker_mec-gCalendar-month-filter .month-picker-month-table .ui-button.ui-state-active{cursor:default;pointer-events:none;text-decoration:none}#gCalendar-loading{width:100%;height:100%;background:no-repeat rgba(255,255,255,.88) url("../img/ajax-loader.gif") center;border-style:none;position:absolute;left:0;right:0;bottom:0;top:0;z-index:9}#gCalendar-loading.mec-modal-preloader{display:block!important}#mec-gCalendar-wrap table.fc-scrollgrid{border:1px solid #e3e4e5;border-radius:7px}#mec-gCalendar-wrap table.fc-scrollgrid thead tr td{border:none!important;background:0 0}#mec-gCalendar-wrap table.fc-scrollgrid thead tr td table{margin-bottom:0}#mec-gCalendar-wrap table.fc-scrollgrid thead tr td table tbody tr th{background:0 0;padding:3px 0 3px 10px;text-align:left;border-right:none!important;border-left:none!important}#mec-gCalendar-wrap table.fc-scrollgrid thead tr td table tbody tr th a{font-size:15px!important;font-weight:500!important}#mec-gCalendar-wrap table.fc-scrollgrid-sync-table{margin:0}#mec-gCalendar-wrap span.mec-general-calendar-label{color:#fff;padding:1px 4px 3px;font-size:11px;border-radius:3px;margin:5px 3px 2px 0;display:inline-block}.mec-gCalendar .fc .fc-scrollgrid-section-sticky>*{position:relative;z-index:1}.mec-gCalendar .fc-direction-ltr .fc-daygrid-event.fc-event-end,.mec-gCalendar .fc-direction-ltr .fc-daygrid-event.fc-event-start,.mec-gCalendar .fc-direction-rtl .fc-daygrid-event.fc-event-end,.mec-gCalendar .fc-direction-rtl .fc-daygrid-event.fc-event-start{margin-right:0!important;margin-left:0!important}#mec-gCalendar-wrap table.fc-scrollgrid-sync-table tr td{text-align:left;background:#fff!important}#mec-gCalendar-wrap table.fc-scrollgrid-sync-table .fc-daygrid-day-top{display:flex;flex-direction:row;padding-left:10px}#mec-gCalendar-wrap .fc-daygrid-day.fc-day-today{background:#f9f9f9!important}#mec-gCalendar-wrap .fc-scrollgrid-section-body>td{border:none!important}#mec-gCalendar-wrap table.fc-scrollgrid-sync-table tbody tr:last-child td:first-child{border-radius:0 0 0 7px}#mec-gCalendar-wrap table.fc-scrollgrid-sync-table tbody tr:last-child td:last-child{border-radius:0 0 7px 0}@media(max-width:1200px){.mec-gCalendar-search-text-wrap{padding-left:10px}.mec-gCalendar .mec-gCalendar-search-text-wrap input[type=text],.mec-gCalendar .mec-gCalendar-search-text-wrap input[type=text]:focus{width:100px}}@media(max-width:990px){.mec-gCalendar .mec-gCalendar-search-text-wrap input[type=text],.mec-gCalendar .mec-gCalendar-search-text-wrap input[type=text]:focus{width:auto}.mec-gCalendar .fc-header-toolbar .fc-toolbar-chunk:last-child{margin-top:12px}}
assets/js/frontend.js CHANGED
@@ -1,45 +1,51 @@
1
  // MEC Single Event Displayer
2
  var mecSingleEventDisplayer =
3
  {
4
- getSinglePage: function (id, occurrence, time, ajaxurl, layout, image_popup) {
5
- if (jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
 
6
  jQuery('.mec-modal-result').addClass('mec-modal-preloader');
7
 
8
  jQuery.ajax(
 
 
 
 
 
9
  {
10
- url: ajaxurl,
11
- data: "action=mec_load_single_page&id=" + id + (occurrence != null ? "&occurrence=" + occurrence : "") + (time != null ? "&time=" + time : "") + "&layout=" + layout,
12
- type: "get",
13
- success: function (response) {
14
- jQuery('.mec-modal-result').removeClass("mec-modal-preloader");
15
- jQuery.featherlight(response);
16
 
17
- setTimeout(function () {
18
- if (typeof grecaptcha !== 'undefined' && jQuery('#g-recaptcha').length > 0) {
19
- grecaptcha.render("g-recaptcha", {
20
- sitekey: mecdata.recapcha_key
21
- });
22
- }
23
- }, 1000);
24
-
25
- if (image_popup != 0) {
26
- if (jQuery('.featherlight-content .mec-events-content a img').length > 0) {
27
- jQuery('.featherlight-content .mec-events-content a img').each(function () {
28
- jQuery(this).closest('a').attr('data-featherlight', 'image');
29
- });
30
- }
31
- }
32
- else {
33
- jQuery('.featherlight-content .mec-events-content a img').remove();
34
- jQuery('.featherlight-content .mec-events-content img').remove();
35
  }
 
36
 
37
- if (typeof mecdata.enableSingleFluent != 'undefined' && mecdata.enableSingleFluent) {
38
- mecFluentSinglePage();
 
 
 
 
 
 
39
  }
40
- },
41
- error: function () { }
42
- });
 
 
 
 
 
 
 
 
43
  }
44
  };
45
 
@@ -514,6 +520,8 @@ jQuery(document).ready(function ($) {
514
 
515
  mecFluentCurrentTimePosition();
516
  mecFluentCustomScrollbar();
 
 
517
  },
518
  error: function () { }
519
  });
@@ -543,6 +551,8 @@ jQuery(document).ready(function ($) {
543
 
544
  mecFluentCurrentTimePosition();
545
  mecFluentCustomScrollbar();
 
 
546
  },
547
  error: function () { }
548
  });
@@ -2447,7 +2457,7 @@ jQuery(document).ready(function ($) {
2447
 
2448
  function sed() {
2449
  // Single Event Display
2450
- $("#mec_skin_" + settings.id + " .mec-event-title a, #mec_skin_" + settings.id + " .mec-booking-button, #mec_skin_" + settings.id + " .mec-detail-button").off('click').on('click', function (e) {
2451
  e.preventDefault();
2452
  var href = $(this).attr('href');
2453
 
@@ -5301,11 +5311,10 @@ jQuery(document).ready(function () {
5301
  // General Calendar
5302
  if ( jQuery("#mec-gCalendar-month-filter").length > 0 ) {
5303
  jQuery("#mec-gCalendar-month-filter").MonthPicker({
5304
- Button: '<button><i class="mec-sl-arrow-down"></i></button>',
5305
  Position: {
5306
- collision: 'fit',
5307
- at: 'left bottom',
5308
- of: jQuery('.fc-toolbar-title')
5309
  }
5310
  });
5311
  jQuery("#mec-gCalendar-month-filter").MonthPicker('option', 'MonthFormat', 'yy-mm-01' );
1
  // MEC Single Event Displayer
2
  var mecSingleEventDisplayer =
3
  {
4
+ getSinglePage: function(id, occurrence, time, ajaxurl, layout, image_popup)
5
+ {
6
+ if(jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
7
  jQuery('.mec-modal-result').addClass('mec-modal-preloader');
8
 
9
  jQuery.ajax(
10
+ {
11
+ url: ajaxurl,
12
+ data: "action=mec_load_single_page&id=" + id + (occurrence != null ? "&occurrence=" + occurrence : "") + (time != null ? "&time=" + time : "") + "&layout=" + layout,
13
+ type: "get",
14
+ success: function(response)
15
  {
16
+ jQuery('.mec-modal-result').removeClass("mec-modal-preloader");
17
+ jQuery.featherlight(response);
 
 
 
 
18
 
19
+ setTimeout(function()
20
+ {
21
+ if(typeof grecaptcha !== 'undefined' && jQuery('#g-recaptcha').length > 0)
22
+ {
23
+ grecaptcha.render("g-recaptcha", {
24
+ sitekey: mecdata.recapcha_key
25
+ });
 
 
 
 
 
 
 
 
 
 
 
26
  }
27
+ }, 1000);
28
 
29
+ if(image_popup != 0)
30
+ {
31
+ if(jQuery('.featherlight-content .mec-events-content a img').length > 0)
32
+ {
33
+ jQuery('.featherlight-content .mec-events-content a img').each(function()
34
+ {
35
+ jQuery(this).closest('a').attr('data-featherlight', 'image');
36
+ });
37
  }
38
+ }
39
+ else
40
+ {
41
+ jQuery('.featherlight-content .mec-events-content a img').remove();
42
+ jQuery('.featherlight-content .mec-events-content img').remove();
43
+ }
44
+
45
+ if(typeof mecdata.enableSingleFluent != 'undefined' && mecdata.enableSingleFluent) mecFluentSinglePage();
46
+ },
47
+ error: function () { }
48
+ });
49
  }
50
  };
51
 
520
 
521
  mecFluentCurrentTimePosition();
522
  mecFluentCustomScrollbar();
523
+
524
+ jQuery(document).trigger( 'mec_load_skin_success', $("#mec_full_calendar_container_" + settings.id) );
525
  },
526
  error: function () { }
527
  });
551
 
552
  mecFluentCurrentTimePosition();
553
  mecFluentCustomScrollbar();
554
+
555
+ jQuery(document).trigger( 'mec_search_success', $("#mec_full_calendar_container_" + settings.id) );
556
  },
557
  error: function () { }
558
  });
2457
 
2458
  function sed() {
2459
  // Single Event Display
2460
+ $("#mec_skin_" + settings.id + " .mec-event-title > a, #mec_skin_" + settings.id + " .mec-booking-button, #mec_skin_" + settings.id + " .mec-detail-button").off('click').on('click', function (e) {
2461
  e.preventDefault();
2462
  var href = $(this).attr('href');
2463
 
5311
  // General Calendar
5312
  if ( jQuery("#mec-gCalendar-month-filter").length > 0 ) {
5313
  jQuery("#mec-gCalendar-month-filter").MonthPicker({
5314
+ Button: '<button class="gCalendarMonthFilterButton"><i class="mec-sl-arrow-down"></i></button>',
5315
  Position: {
5316
+ collision: 'fit',
5317
+ of: jQuery('.fc-toolbar-chunk')
 
5318
  }
5319
  });
5320
  jQuery("#mec-gCalendar-month-filter").MonthPicker('option', 'MonthFormat', 'yy-mm-01' );
changelog.txt CHANGED
@@ -1,4 +1,19 @@
1
- v 6.1.510 November 2021
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  - Added: A new option to create coupon codes based on the count of booked dates (pro)
3
  - Added: A feature to set and show caption of featured images
4
  - Added: A new feature to skip the first step of booking when possible (pro)
1
+ v 6.1.617 November 2021
2
+ - Added: “Amount Per Date” option for fees (pro)
3
+ - Improved: The speed of MEC page in some sections
4
+ - Improved: MEC security
5
+ - Fixed: Some issues in fee calculation (pro)
6
+ - Fixed: Some issues in google map assets inclusion (pro)
7
+ - Fixed: An issue regarding block editor compatibility
8
+ - Fixed: The %%ticket_time%% placeholder (pro)
9
+ - Fixed: Displaying event status in email notifications (pro)
10
+ - Fixed: Sending verification email when event is added from backend with verified status (pro)
11
+ - Fixed: Saving new organizer added from “Frontend Event Submission”
12
+ - Fixed: The issue of opening unwanted links in modal in list skin when modal popup is enabled
13
+ - Fixed: The end date of custom days events
14
+ - Fixed: Some PHP notices
15
+
16
+ v 6.1.5 – 10 November 2021
17
  - Added: A new option to create coupon codes based on the count of booked dates (pro)
18
  - Added: A feature to set and show caption of featured images
19
  - Added: A new feature to skip the first step of booking when possible (pro)
languages/modern-events-calendar-lite-cs_CZ.mo CHANGED
Binary file
languages/modern-events-calendar-lite-cs_CZ.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar Lite\n"
4
- "POT-Creation-Date: 2021-11-10 13:40+0330\n"
5
- "PO-Revision-Date: 2021-11-10 13:42+0330\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: cs_CZ\n"
@@ -94,38 +94,38 @@ msgid "Select Shortcode"
94
  msgstr "Přidat nový zkrácený kód"
95
 
96
  #: app/core/src/Books/Book.php:106 app/features/ix.php:284
97
- #: app/libraries/main.php:7455 app/libraries/main.php:7482
98
  msgid "Rejected"
99
  msgstr "Odmítnuto"
100
 
101
  #: app/core/src/Books/Book.php:111 app/features/ix.php:283
102
- #: app/libraries/main.php:7454 app/libraries/main.php:7474
103
  msgid "Confirmed"
104
  msgstr "Potvrzeno"
105
 
106
  #: app/core/src/Books/Book.php:117 app/features/mec/settings.php:742
107
- #: app/libraries/main.php:7456 app/libraries/main.php:7478
108
  msgid "Pending"
109
  msgstr "Nevyřízený"
110
 
111
  #: app/core/src/Books/Book.php:186 app/features/ix.php:289
112
  #: app/features/labels.php:119 app/features/labels.php:145
113
- #: app/libraries/main.php:7503
114
  msgid "Canceled"
115
  msgstr "Zrušená"
116
 
117
  #: app/core/src/Books/Book.php:191 app/features/ix.php:288
118
- #: app/features/mec/booking.php:1177 app/features/mec/booking.php:1199
119
- #: app/features/mec/integrations.php:456 app/features/mec/integrations.php:478
120
  #: app/features/mec/modules.php:406 app/features/mec/modules.php:428
121
  #: app/features/mec/notifications.php:1919
122
  #: app/features/mec/notifications.php:1942 app/features/mec/settings.php:1584
123
  #: app/features/mec/settings.php:1606 app/features/mec/single.php:580
124
- #: app/features/mec/single.php:602 app/libraries/main.php:7502
125
  msgid "Verified"
126
  msgstr "Ověřeno"
127
 
128
- #: app/core/src/Books/Book.php:197 app/libraries/main.php:7504
129
  msgid "Waiting"
130
  msgstr "Čekající"
131
 
@@ -152,17 +152,17 @@ msgstr "Název vstupenky"
152
  #: app/core/src/Forms/FormFields.php:188 app/core/src/Forms/SettingsForm.php:93
153
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:70
154
  #: app/features/autoemails.php:60 app/features/events.php:602
155
- #: app/features/events.php:2639 app/features/events.php:2706
156
- #: app/features/events.php:2795 app/features/events.php:4394
157
  #: app/features/fes.php:259 app/features/fes/form.php:808
158
  #: app/features/login/login.php:5 app/features/mec/booking.php:57
159
- #: app/features/mec/booking.php:791 app/features/mec/booking.php:889
160
  #: app/features/mec/settings.php:295 app/features/mec/single.php:288
161
  #: app/features/organizers.php:112 app/features/organizers.php:153
162
  #: app/features/profile/profile.php:195 app/features/speakers.php:128
163
  #: app/features/speakers.php:205 app/libraries/main.php:604
164
  #: app/libraries/main.php:2071 app/libraries/main.php:2140
165
- #: app/libraries/main.php:3702 app/libraries/notifications.php:2053
166
  #: app/modules/booking/steps/form.php:68 app/modules/booking/steps/form.php:217
167
  #: app/skins/single.php:1406 app/skins/single.php:1473
168
  #: app/skins/single/default.php:347 app/skins/single/default.php:593
@@ -184,8 +184,8 @@ msgstr "Vložte štítek pro toto pole"
184
  #: app/core/src/Forms/FormFields.php:341 app/core/src/Forms/FormFields.php:372
185
  #: app/core/src/Forms/FormFields.php:396 app/core/src/Forms/FormFields.php:442
186
  #: app/core/src/Forms/FormFields.php:488 app/core/src/Forms/FormFields.php:544
187
- #: app/core/src/Forms/FormFields.php:596 app/features/organizers.php:337
188
- #: app/features/organizers.php:345 app/libraries/main.php:3610
189
  #: app/libraries/main.php:3641 app/libraries/main.php:3671
190
  #: app/libraries/main.php:3701 app/libraries/main.php:3732
191
  #: app/libraries/main.php:3763 app/libraries/main.php:3793
@@ -197,8 +197,8 @@ msgid "Sort"
197
  msgstr "Seřadit"
198
 
199
  #: app/core/src/Forms/FormFields.php:52 app/core/src/Forms/SettingsForm.php:88
200
- #: app/features/events.php:2705 app/features/events.php:2794
201
- #: app/features/mec/booking.php:790 app/features/mec/booking.php:888
202
  #: app/features/mec/single.php:287 app/libraries/main.php:3611
203
  #: app/libraries/skins.php:1367
204
  msgid "Text"
@@ -229,10 +229,10 @@ msgstr "Požadovaná pole"
229
  #: app/core/src/Forms/FormFields.php:505 app/core/src/Forms/FormFields.php:554
230
  #: app/core/src/Forms/FormFields.php:597 app/features/events.php:2105
231
  #: app/features/events.php:2131 app/features/events.php:2344
232
- #: app/features/events.php:2480 app/features/events.php:2516
233
- #: app/features/mec/booking.php:609 app/features/mec/booking.php:638
234
- #: app/features/mec/booking.php:706 app/features/mec/booking.php:738
235
- #: app/features/organizers.php:337 app/features/organizers.php:346
236
  #: app/libraries/hourlyschedule.php:53 app/libraries/hourlyschedule.php:74
237
  #: app/libraries/hourlyschedule.php:102 app/libraries/hourlyschedule.php:130
238
  #: app/libraries/hourlyschedule.php:154 app/libraries/main.php:3621
@@ -275,13 +275,13 @@ msgstr "Název vstupenky"
275
  msgid "MEC Last Name"
276
  msgstr "MEC Jméno"
277
 
278
- #: app/core/src/Forms/FormFields.php:93 app/features/events.php:2703
279
- #: app/features/mec/booking.php:788 app/libraries/main.php:3642
280
  msgid "MEC Name"
281
  msgstr "MEC Jméno"
282
 
283
  #: app/core/src/Forms/FormFields.php:158 app/core/src/Forms/SettingsForm.php:83
284
- #: app/features/events.php:2704 app/features/mec/booking.php:789
285
  #: app/libraries/main.php:3672
286
  msgid "MEC Email"
287
  msgstr "MEC Email"
@@ -292,16 +292,16 @@ msgid "URL"
292
  msgstr ""
293
 
294
  #: app/core/src/Forms/FormFields.php:250
295
- #: app/core/src/Forms/SettingsForm.php:108 app/features/events.php:2709
296
- #: app/features/mec/booking.php:794 app/libraries/main.php:3764
297
  msgid "File"
298
  msgstr "Soubor"
299
 
300
  #: app/core/src/Forms/FormFields.php:280 app/core/src/Forms/SettingsForm.php:98
301
- #: app/core/src/SingleBuilder/Widgets/EventDate/EventDate.php:44
302
- #: app/features/events.php:1381 app/features/events.php:2707
303
- #: app/features/events.php:2796 app/features/fes.php:259
304
- #: app/features/mec/booking.php:792 app/features/mec/booking.php:890
305
  #: app/features/mec/single.php:290 app/features/profile/profile.php:59
306
  #: app/features/wc.php:84 app/libraries/main.php:3794
307
  #: app/libraries/skins.php:1279 app/modules/booking/steps/tickets.php:136
@@ -312,9 +312,9 @@ msgid "Date"
312
  msgstr "Datum"
313
 
314
  #: app/core/src/Forms/FormFields.php:311
315
- #: app/core/src/Forms/SettingsForm.php:103 app/features/events.php:2708
316
- #: app/features/events.php:2797 app/features/mec/booking.php:793
317
- #: app/features/mec/booking.php:891 app/features/mec/single.php:291
318
  #: app/features/organizers.php:104 app/features/organizers.php:149
319
  #: app/features/speakers.php:120 app/features/speakers.php:201
320
  #: app/features/speakers.php:288 app/libraries/main.php:3825
@@ -322,17 +322,17 @@ msgid "Tel"
322
  msgstr "Tel"
323
 
324
  #: app/core/src/Forms/FormFields.php:342
325
- #: app/core/src/Forms/SettingsForm.php:113 app/features/events.php:2710
326
- #: app/features/events.php:2798 app/features/mec/booking.php:795
327
- #: app/features/mec/booking.php:892 app/features/mec/single.php:292
328
  #: app/libraries/main.php:3856
329
  msgid "Textarea"
330
  msgstr "Plocha textu"
331
 
332
  #: app/core/src/Forms/FormFields.php:373
333
- #: app/core/src/Forms/SettingsForm.php:138 app/features/events.php:2715
334
- #: app/features/events.php:2803 app/features/mec/booking.php:800
335
- #: app/features/mec/booking.php:897 app/features/mec/settings.php:351
336
  #: app/features/mec/single.php:293 app/libraries/main.php:3894
337
  msgid "Paragraph"
338
  msgstr "Paragraf"
@@ -342,9 +342,9 @@ msgid "HTML and shortcode are allowed."
342
  msgstr "HTML a zkrácené kódy jsou povoleny."
343
 
344
  #: app/core/src/Forms/FormFields.php:397
345
- #: app/core/src/Forms/SettingsForm.php:118 app/features/events.php:2711
346
- #: app/features/events.php:2799 app/features/mec/booking.php:127
347
- #: app/features/mec/booking.php:796 app/features/mec/booking.php:893
348
  #: app/features/mec/single.php:294 app/libraries/main.php:3918
349
  msgid "Checkboxes"
350
  msgstr "Zatržítko"
@@ -356,17 +356,17 @@ msgid "Option"
356
  msgstr "Možnost"
357
 
358
  #: app/core/src/Forms/FormFields.php:443
359
- #: app/core/src/Forms/SettingsForm.php:123 app/features/events.php:2712
360
- #: app/features/events.php:2800 app/features/mec/booking.php:797
361
- #: app/features/mec/booking.php:894 app/features/mec/single.php:295
362
  #: app/libraries/main.php:3966
363
  msgid "Radio Buttons"
364
  msgstr "Přepínače"
365
 
366
  #: app/core/src/Forms/FormFields.php:489
367
- #: app/core/src/Forms/SettingsForm.php:128 app/features/events.php:2713
368
- #: app/features/events.php:2801 app/features/mec/booking.php:125
369
- #: app/features/mec/booking.php:798 app/features/mec/booking.php:895
370
  #: app/features/mec/meta_boxes/search_form.php:67
371
  #: app/features/mec/meta_boxes/search_form.php:75
372
  #: app/features/mec/meta_boxes/search_form.php:83
@@ -457,9 +457,9 @@ msgid "Consider first item as placeholder"
457
  msgstr ""
458
 
459
  #: app/core/src/Forms/FormFields.php:545
460
- #: app/core/src/Forms/SettingsForm.php:133 app/features/events.php:2714
461
- #: app/features/events.php:2802 app/features/mec/booking.php:799
462
- #: app/features/mec/booking.php:896 app/libraries/main.php:4072
463
  msgid "Agreement"
464
  msgstr "Smlouva"
465
 
@@ -490,7 +490,7 @@ msgstr "Ve výchozím nastavení není zaškrtnuto"
490
  msgid "Insert a label for this option"
491
  msgstr "Vložte štítek pro tuto možnost"
492
 
493
- #: app/core/src/Forms/FormFields.php:606 app/libraries/main.php:8672
494
  msgid "Mapping with Profile Fields"
495
  msgstr ""
496
 
@@ -640,17 +640,17 @@ msgstr "Vložte e-maily oddělené čárkami pro více příjemců."
640
  #: app/features/events.php:1834 app/features/events.php:2004
641
  #: app/features/events.php:2019 app/features/events.php:2261
642
  #: app/features/events.php:2274 app/features/events.php:2467
643
- #: app/features/events.php:2503 app/features/fes/form.php:456
644
  #: app/features/fes/form.php:764 app/features/fes/form.php:887
645
  #: app/features/locations.php:341 app/features/mec/booking.php:109
646
  #: app/features/mec/booking.php:185 app/features/mec/booking.php:198
647
  #: app/features/mec/booking.php:234 app/features/mec/booking.php:299
648
  #: app/features/mec/booking.php:332 app/features/mec/booking.php:345
649
  #: app/features/mec/booking.php:411 app/features/mec/booking.php:462
650
- #: app/features/mec/booking.php:597 app/features/mec/booking.php:626
651
- #: app/features/mec/booking.php:691 app/features/mec/booking.php:701
652
- #: app/features/mec/booking.php:723 app/features/mec/booking.php:733
653
- #: app/features/mec/booking.php:998 app/features/mec/booking.php:1026
654
  #: app/features/mec/dashboard.php:73 app/features/mec/integrations.php:52
655
  #: app/features/mec/integrations.php:65 app/features/mec/integrations.php:81
656
  #: app/features/mec/meta_boxes/display_options.php:97
@@ -718,7 +718,7 @@ msgstr "Vložte e-maily oddělené čárkami pro více příjemců."
718
  #: app/features/mec/single.php:382 app/features/mec/styling.php:123
719
  #: app/features/mec/styling.php:223 app/features/mec/styling.php:240
720
  #: app/features/mec/styling.php:254 app/features/occurrences.php:472
721
- #: app/features/occurrences.php:499 app/features/organizers.php:286
722
  #: app/features/popup/event.php:127 app/features/popup/event.php:174
723
  #: app/features/popup/settings.php:78 app/features/popup/settings.php:161
724
  #: app/features/popup/settings.php:182 app/features/popup/settings.php:300
@@ -843,7 +843,7 @@ msgid "How to set category"
843
  msgstr ""
844
 
845
  #: app/core/src/SingleBuilder/Widgets/EventCategories/EventCategories.php:46
846
- #: app/features/events.php:218 app/features/events.php:3826
847
  #: app/features/mec/meta_boxes/display_options.php:1651
848
  #: app/features/mec/meta_boxes/search_form.php:64
849
  #: app/features/mec/meta_boxes/search_form.php:152
@@ -860,8 +860,8 @@ msgstr ""
860
  #: app/features/mec/settings.php:1150 app/features/mec/settings.php:1213
861
  #: app/features/mec/single.php:445 app/features/mec/single.php:498
862
  #: app/features/popup/settings.php:220 app/features/popup/settings.php:259
863
- #: app/features/search.php:91 app/libraries/main.php:7116
864
- #: app/libraries/main.php:7177 app/libraries/search.php:256
865
  #: app/libraries/skins.php:1080 app/skins/single.php:1097
866
  #: app/skins/single/default.php:299 app/skins/single/default.php:546
867
  #: app/skins/single/m1.php:229 app/skins/single/m2.php:148
@@ -884,8 +884,8 @@ msgstr ""
884
  #: app/core/src/SingleBuilder/Widgets/EventCost/EventCost.php:47
885
  #: app/features/events.php:432 app/features/events.php:1277
886
  #: app/features/fes/form.php:864 app/features/mec/settings.php:1147
887
- #: app/features/occurrences.php:511 app/libraries/main.php:7162
888
- #: app/libraries/main.php:7209 app/libraries/skins.php:1395
889
  #: app/skins/single.php:1130 app/skins/single/default.php:215
890
  #: app/skins/single/default.php:464 app/skins/single/m1.php:81
891
  #: app/skins/single/modern.php:292
@@ -963,11 +963,11 @@ msgid "How to set label"
963
  msgstr ""
964
 
965
  #: app/core/src/SingleBuilder/Widgets/EventLabels/EventLabels.php:48
966
- #: app/features/events.php:4148 app/features/fes/form.php:984
967
  #: app/features/labels.php:61 app/features/labels.php:227
968
  #: app/features/mec.php:494 app/features/mec/meta_boxes/filter.php:72
969
- #: app/features/mec/meta_boxes/filter.php:135 app/libraries/main.php:7117
970
- #: app/libraries/main.php:7178 app/skins/single.php:1260
971
  #: app/skins/single/default.php:247 app/skins/single/default.php:493
972
  #: app/skins/single/m1.php:96 app/skins/single/modern.php:307
973
  msgid "Labels"
@@ -999,7 +999,7 @@ msgid "How to set location"
999
  msgstr "Skrýt místo"
1000
 
1001
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:54
1002
- #: app/features/events.php:3827 app/features/events.php:4141
1003
  #: app/features/locations.php:58 app/features/locations.php:267
1004
  #: app/features/locations.php:329 app/features/locations.php:331
1005
  #: app/features/locations.php:340
@@ -1022,7 +1022,7 @@ msgstr "Skrýt místo"
1022
  #: app/features/popup/event.php:117 app/features/popup/event.php:126
1023
  #: app/features/popup/settings.php:228 app/features/popup/settings.php:267
1024
  #: app/features/search.php:97 app/libraries/main.php:2914
1025
- #: app/libraries/main.php:7120 app/libraries/main.php:7181
1026
  #: app/libraries/search.php:294 app/libraries/skins.php:1135
1027
  #: app/skins/single.php:1024 app/skins/single.php:1532
1028
  #: app/skins/single/default.php:268 app/skins/single/default.php:516
@@ -1057,7 +1057,7 @@ msgstr ""
1057
  #: app/core/src/SingleBuilder/Widgets/EventMoreInfo/EventMoreInfo.php:48
1058
  #: app/features/events.php:1510 app/features/events.php:1523
1059
  #: app/features/fes/form.php:834 app/features/occurrences.php:525
1060
- #: app/libraries/main.php:7160 app/libraries/main.php:7207
1061
  #: app/skins/single.php:1230 app/skins/single/default.php:232
1062
  #: app/skins/single/default.php:478 app/skins/single/m1.php:255
1063
  #: app/skins/single/m2.php:175 app/skins/single/modern.php:209
@@ -1106,9 +1106,9 @@ msgid "How to set organizer"
1106
  msgstr "Skrýt organizátora"
1107
 
1108
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:53
1109
- #: app/features/events.php:431 app/features/events.php:3828
1110
- #: app/features/events.php:4143 app/features/events.php:4144
1111
- #: app/features/events.php:4145
1112
  #: app/features/mec/meta_boxes/display_options.php:1654
1113
  #: app/features/mec/meta_boxes/search_form.php:80
1114
  #: app/features/mec/meta_boxes/search_form.php:168
@@ -1126,11 +1126,11 @@ msgstr "Skrýt organizátora"
1126
  #: app/features/mec/single.php:502 app/features/occurrences.php:487
1127
  #: app/features/occurrences.php:489 app/features/occurrences.php:498
1128
  #: app/features/organizers.php:58 app/features/organizers.php:208
1129
- #: app/features/organizers.php:274 app/features/organizers.php:276
1130
- #: app/features/organizers.php:285 app/features/popup/event.php:164
1131
  #: app/features/popup/event.php:173 app/features/popup/settings.php:224
1132
  #: app/features/popup/settings.php:263 app/features/search.php:103
1133
- #: app/libraries/main.php:7122 app/libraries/main.php:7183
1134
  #: app/libraries/search.php:314 app/libraries/skins.php:1164
1135
  #: app/skins/single.php:1388 app/skins/single/default.php:329
1136
  #: app/skins/single/default.php:575 app/skins/single/m1.php:124
@@ -1171,7 +1171,7 @@ msgid "How to set register button"
1171
  msgstr "Registrační tlačítko"
1172
 
1173
  #: app/core/src/SingleBuilder/Widgets/EventRegisterButton/EventRegisterButton.php:48
1174
- #: app/libraries/main.php:7156 app/libraries/main.php:7203
1175
  #: app/skins/available_spot/tpl.php:204 app/skins/carousel/render.php:105
1176
  #: app/skins/carousel/render.php:145 app/skins/grid/render.php:94
1177
  #: app/skins/grid/render.php:153 app/skins/grid/render.php:214
@@ -1324,8 +1324,8 @@ msgid "Details"
1324
  msgstr "Podrobnosti události"
1325
 
1326
  #: app/features/booking/calendar_novel.php:139
1327
- #: app/features/search_bar/search_result.php:12 app/libraries/main.php:7165
1328
- #: app/libraries/main.php:7212 app/libraries/notifications.php:1615
1329
  #: app/libraries/render.php:554 app/libraries/render.php:758
1330
  #: app/libraries/render.php:816 app/libraries/render.php:976
1331
  #: app/modules/local-time/details.php:49 app/modules/local-time/type1.php:47
@@ -1365,8 +1365,8 @@ msgid "Settings"
1365
  msgstr "Nastavení"
1366
 
1367
  #: app/features/contextual.php:62 app/features/events.php:1556
1368
- #: app/features/events.php:2644 app/features/mec/booking.php:753
1369
- #: app/features/mec/booking.php:1024 app/features/mec/settings.php:1012
1370
  #: app/features/mec/support.php:29
1371
  msgid "Booking Form"
1372
  msgstr "Rezervační formulář"
@@ -1395,7 +1395,7 @@ msgstr ""
1395
  "iframe>"
1396
 
1397
  #: app/features/contextual.php:70 app/features/events.php:1564
1398
- #: app/features/mec/booking.php:965 app/features/mec/support-page.php:115
1399
  #: app/features/mec/support.php:36 app/libraries/main.php:640
1400
  msgid "Payment Gateways"
1401
  msgstr "Platební brány"
@@ -1552,13 +1552,13 @@ msgstr "Výjimečné dny"
1552
  #: app/libraries/main.php:633 app/libraries/main.php:634
1553
  #: app/libraries/main.php:638 app/libraries/main.php:662
1554
  #: app/libraries/main.php:780 app/libraries/main.php:2976
1555
- #: app/libraries/main.php:7140 app/libraries/main.php:7142
1556
  #: app/modules/booking/steps/checkout.php:146
1557
  msgid "Booking"
1558
  msgstr "Rezervace"
1559
 
1560
  #: app/features/contextual.php:318 app/features/mec/booking.php:552
1561
- #: app/features/mec/booking.php:981 app/libraries/main.php:635
1562
  msgid "Coupons"
1563
  msgstr "Kupóny"
1564
 
@@ -1719,11 +1719,11 @@ msgstr "Zobrazit událost"
1719
  msgid "No events found in Trash!"
1720
  msgstr "V koši nebyly nalezeny žádné události!"
1721
 
1722
- #: app/features/events.php:219 app/features/events.php:3782
1723
- #: app/features/events.php:4149 app/features/fes/form.php:958
1724
  #: app/features/mec.php:493 app/features/mec/meta_boxes/filter.php:69
1725
- #: app/features/mec/meta_boxes/filter.php:81 app/libraries/main.php:7115
1726
- #: app/libraries/main.php:7176
1727
  msgid "Categories"
1728
  msgstr "Kategorie"
1729
 
@@ -1809,7 +1809,7 @@ msgstr "Nahrát / přidat obrázek"
1809
  #: app/features/locations.php:162 app/features/locations.php:214
1810
  #: app/features/locations.php:393 app/features/locations.php:400
1811
  #: app/features/organizers.php:134 app/features/organizers.php:165
1812
- #: app/features/organizers.php:313 app/features/organizers.php:320
1813
  #: app/features/speakers.php:182 app/features/speakers.php:233
1814
  msgid "Remove image"
1815
  msgstr "Odebrat obrázek"
@@ -1872,12 +1872,12 @@ msgstr "Poznámka pro recenzenta"
1872
  msgid "Guest Data"
1873
  msgstr "Údaje hosta"
1874
 
1875
- #: app/features/events.php:601 app/features/events.php:2630
1876
- #: app/features/events.php:4391 app/features/fes.php:259
1877
  #: app/features/fes/form.php:812 app/features/labels.php:184
1878
- #: app/features/mec/booking.php:45 app/features/organizers.php:293
1879
  #: app/features/popup/event.php:183 app/features/profile/profile.php:192
1880
- #: app/libraries/notifications.php:2052 app/modules/booking/steps/form.php:59
1881
  msgid "Name"
1882
  msgstr "Jméno"
1883
 
@@ -1892,7 +1892,7 @@ msgid "Date and Time"
1892
  msgstr "Datum a čas"
1893
 
1894
  #: app/features/events.php:618 app/features/events.php:622
1895
- #: app/features/events.php:3829 app/features/events.php:4136
1896
  #: app/features/fes/form.php:286 app/features/fes/form.php:290
1897
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1507
1898
  #: app/features/mec/meta_boxes/display_options.php:57
@@ -1916,7 +1916,7 @@ msgid "Start Date"
1916
  msgstr "Počátečná den"
1917
 
1918
  #: app/features/events.php:637 app/features/events.php:641
1919
- #: app/features/events.php:3830 app/features/events.php:4138
1920
  #: app/features/fes/form.php:305 app/features/fes/form.php:309
1921
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1508
1922
  #: app/features/mec/meta_boxes/display_options.php:73
@@ -1974,7 +1974,7 @@ msgstr "Časové pásmo: %s"
1974
  #: app/features/events.php:1753 app/features/events.php:1763
1975
  #: app/features/events.php:1784 app/features/events.php:1804
1976
  #: app/features/events.php:1859 app/features/events.php:2429
1977
- #: app/features/events.php:2550 app/features/events.php:2661
1978
  #: app/features/fes/form.php:346 app/features/fes/form.php:359
1979
  msgid "Inherit from global options"
1980
  msgstr "Zdědí z globálních možností"
@@ -2110,9 +2110,9 @@ msgstr "Začátek"
2110
  #: app/features/events.php:868 app/features/events.php:1383
2111
  #: app/features/events.php:2075 app/features/events.php:2157
2112
  #: app/features/events.php:2323 app/features/events.php:2367
2113
- #: app/features/events.php:2440 app/features/events.php:2555
2114
  #: app/features/fes/form.php:449 app/features/fes/form.php:1056
2115
- #: app/features/occurrences.php:113 app/features/organizers.php:337
2116
  #: app/libraries/hourlyschedule.php:57 app/libraries/hourlyschedule.php:134
2117
  msgid "Add"
2118
  msgstr "Přidat"
@@ -2198,7 +2198,7 @@ msgstr ""
2198
  msgid "Show only one occurrence of this event"
2199
  msgstr "Další výskyt dalších událostí"
2200
 
2201
- #: app/features/events.php:1270 app/features/events.php:4146
2202
  #: app/features/fes/form.php:861
2203
  #: app/features/mec/meta_boxes/search_form.php:116
2204
  #: app/features/mec/meta_boxes/search_form.php:204
@@ -2224,7 +2224,7 @@ msgstr "Další výskyt dalších událostí"
2224
  #: app/features/mec/notifications.php:1625
2225
  #: app/features/mec/notifications.php:1775 app/features/mec/settings.php:854
2226
  #: app/features/notifications.php:160 app/features/occurrences.php:508
2227
- #: app/libraries/main.php:7161 app/libraries/main.php:7208
2228
  #: app/widgets/single.php:100
2229
  msgid "Event Cost"
2230
  msgstr "Cena události"
@@ -2319,8 +2319,8 @@ msgstr "Odkazy na událost"
2319
 
2320
  #: app/features/events.php:1492 app/features/events.php:1500
2321
  #: app/features/fes/form.php:829 app/features/mec/settings.php:1148
2322
- #: app/features/occurrences.php:520 app/libraries/main.php:7159
2323
- #: app/libraries/main.php:7206
2324
  msgid "Event Link"
2325
  msgstr "Odkaz na událost"
2326
 
@@ -2386,7 +2386,7 @@ msgid "Total User Booking Limits"
2386
  msgstr "Celkové limity rezervace uživatelů"
2387
 
2388
  #: app/features/events.php:1549 app/features/events.php:1915
2389
- #: app/libraries/book.php:141 app/libraries/main.php:7150
2390
  #: app/modules/booking/steps/tickets.php:168
2391
  #: app/modules/booking/steps/tickets.php:174
2392
  msgid "Tickets"
@@ -2396,18 +2396,18 @@ msgstr "Vstupenky"
2396
  msgid "Fees"
2397
  msgstr "Poplatky"
2398
 
2399
- #: app/features/events.php:1554 app/features/events.php:2545
2400
  #: app/features/mec/settings.php:1024
2401
  msgid "Ticket Variations / Options"
2402
  msgstr "Varianty vstupenky / možnosti"
2403
 
2404
- #: app/features/events.php:1558 app/features/mec/booking.php:1055
2405
  #: app/features/mec/support-page.php:118
2406
  msgid "Organizer Payment"
2407
  msgstr "Platba organizátora"
2408
 
2409
  #: app/features/events.php:1566 app/features/ix/export.php:58
2410
- #: app/libraries/main.php:7143
2411
  msgid "Bookings"
2412
  msgstr "Rezervace"
2413
 
@@ -2522,7 +2522,7 @@ msgstr "Ověřovací email"
2522
  #: app/features/events.php:1754 app/features/events.php:1764
2523
  #: app/features/mec/booking.php:210 app/features/mec/booking.php:277
2524
  #: app/features/mec/booking.php:292 app/features/mec/booking.php:374
2525
- #: app/features/mec/booking.php:992 app/features/mec/booking.php:1019
2526
  #: app/features/mec/meta_boxes/search_form.php:66
2527
  #: app/features/mec/meta_boxes/search_form.php:74
2528
  #: app/features/mec/meta_boxes/search_form.php:82
@@ -2660,8 +2660,8 @@ msgstr "Zakázaný"
2660
 
2661
  #: app/features/events.php:1755 app/features/events.php:1765
2662
  #: app/features/mec/booking.php:209 app/features/mec/booking.php:276
2663
- #: app/features/mec/booking.php:293 app/features/mec/booking.php:991
2664
- #: app/features/mec/booking.php:1020 app/features/mec/modules.php:155
2665
  #: app/features/mec/settings.php:99 app/features/popup/settings.php:357
2666
  msgid "Enabled"
2667
  msgstr "Povoleno"
@@ -2758,7 +2758,7 @@ msgid "Ticket ID"
2758
  msgstr "Vstupenka"
2759
 
2760
  #: app/features/events.php:1935 app/features/events.php:2201
2761
- #: app/features/events.php:4133 app/features/fes.php:259
2762
  #: app/features/labels.php:183 app/features/locations.php:266
2763
  #: app/features/organizers.php:207 app/features/speakers.php:285
2764
  msgid "ID"
@@ -2769,17 +2769,17 @@ msgid "Ticket Name"
2769
  msgstr "Název vstupenky"
2770
 
2771
  #: app/features/events.php:1947 app/features/events.php:2209
2772
- #: app/features/events.php:4137 app/libraries/skins.php:1360
2773
  msgid "Start Time"
2774
  msgstr "Začátek"
2775
 
2776
  #: app/features/events.php:1960 app/features/events.php:2222
2777
- #: app/features/events.php:4139 app/libraries/skins.php:1361
2778
  msgid "End Time"
2779
  msgstr "Konec"
2780
 
2781
  #: app/features/events.php:1978 app/features/events.php:2237
2782
- #: app/features/events.php:4135 app/libraries/hourlyschedule.php:72
2783
  #: app/libraries/hourlyschedule.php:100 app/libraries/hourlyschedule.php:152
2784
  msgid "Description"
2785
  msgstr "Popis"
@@ -2802,9 +2802,9 @@ msgstr ""
2802
  #: app/features/events.php:1997 app/features/events.php:2001
2803
  #: app/features/events.php:2099 app/features/events.php:2126
2804
  #: app/features/events.php:2255 app/features/events.php:2258
2805
- #: app/features/events.php:2340 app/features/events.php:4690
2806
- #: app/features/mec/booking.php:687 app/features/mec/booking.php:690
2807
- #: app/features/mec/booking.php:719 app/features/mec/booking.php:722
2808
  #: app/libraries/ticketVariations.php:43 app/libraries/ticketVariations.php:46
2809
  #: app/modules/booking/steps/checkout.php:63
2810
  msgid "Price"
@@ -2906,20 +2906,20 @@ msgstr "Maximum na jednu vstupenku"
2906
  msgid "Inherit from event options"
2907
  msgstr "Zdědí z globálních možností"
2908
 
2909
- #: app/features/events.php:2454 app/features/events.php:2492
2910
- #: app/features/mec/booking.php:589 app/features/mec/booking.php:618
2911
  msgid "Fee Title"
2912
  msgstr "Název poplatku"
2913
 
2914
  #: app/features/events.php:2460 app/features/events.php:2464
2915
- #: app/features/events.php:2497 app/features/events.php:2500
2916
  #: app/features/mec/booking.php:593 app/features/mec/booking.php:596
2917
- #: app/features/mec/booking.php:622 app/features/mec/booking.php:625
2918
  msgid "Amount"
2919
  msgstr "Množství"
2920
 
2921
- #: app/features/events.php:2465 app/features/events.php:2501
2922
- #: app/features/mec/booking.php:597 app/features/mec/booking.php:626
2923
  msgid ""
2924
  "Fee amount, considered as fixed amount if you set the type to amount "
2925
  "otherwise considered as percentage"
@@ -2927,22 +2927,29 @@ msgstr ""
2927
  "Výše poplatku, je považovaná za pevnou částku, pokud nastavíte typ na částku "
2928
  "odpovídající procentuální hodnotě"
2929
 
2930
- #: app/features/events.php:2474 app/features/events.php:2510
2931
- #: app/features/mec/booking.php:604 app/features/mec/booking.php:633
2932
  msgid "Percent"
2933
  msgstr "Procent"
2934
 
2935
- #: app/features/events.php:2475 app/features/events.php:2511
2936
- #: app/features/mec/booking.php:605 app/features/mec/booking.php:634
2937
  msgid "Amount (Per Ticket)"
2938
  msgstr "Částka (za vstupenku)"
2939
 
2940
- #: app/features/events.php:2476 app/features/events.php:2512
2941
- #: app/features/mec/booking.php:606 app/features/mec/booking.php:635
 
 
 
 
 
 
 
2942
  msgid "Amount (Per Booking)"
2943
  msgstr "Částka (za rezervaci)"
2944
 
2945
- #: app/features/events.php:2647
2946
  #, fuzzy
2947
  #| msgid ""
2948
  #| "You're translating an event so MEC will use the original event for "
@@ -2958,81 +2965,81 @@ msgstr ""
2958
  "vstupenek a rezervace. Můžete přeložit pouze název a popis vstupenky. Prosím "
2959
  "definujte určité vstupenky, které jste definovali v původní události."
2960
 
2961
- #: app/features/events.php:2673 app/features/mec/booking.php:755
2962
  #, fuzzy
2963
  #| msgid "Attendees Limit"
2964
  msgid "Per Attendee Fields"
2965
  msgstr "Limit účastníků"
2966
 
2967
- #: app/features/events.php:2764 app/features/mec/booking.php:853
2968
  #, fuzzy
2969
  #| msgid "Required Field"
2970
  msgid "Fixed Fields"
2971
  msgstr "Požadovaná pole"
2972
 
2973
- #: app/features/events.php:2876 app/features/events.php:4684
2974
  #: app/features/mec/settings.php:1030 app/features/profile/profile.php:65
2975
  #: app/libraries/main.php:3002
2976
  msgid "Attendees"
2977
  msgstr "Účastníci"
2978
 
2979
- #: app/features/events.php:2879 app/features/occurrences.php:104
2980
  #, fuzzy
2981
  #| msgid "Next Occurrence"
2982
  msgid "Occurrence"
2983
  msgstr "Další výskyt"
2984
 
2985
- #: app/features/events.php:2880 app/features/mec.php:1713
2986
  #: app/features/occurrences.php:105
2987
  #, fuzzy
2988
  #| msgid "Next Occurrence"
2989
  msgid "Previous Occurrences"
2990
  msgstr "Další výskyt"
2991
 
2992
- #: app/features/events.php:2885 app/features/mec.php:1723
2993
  #: app/features/occurrences.php:110 app/modules/next-event/multiple.php:52
2994
  #, fuzzy
2995
  #| msgid "Next Occurrence"
2996
  msgid "Next Occurrences"
2997
  msgstr "Další výskyt"
2998
 
2999
- #: app/features/events.php:3707 app/features/mec/meta_boxes/filter.php:199
3000
  #: app/features/mec/settings.php:517
3001
  msgid "Expired Events"
3002
  msgstr "Události vypršely"
3003
 
3004
- #: app/features/events.php:3708 app/features/mec.php:1317
3005
  #: app/features/mec/dashboard.php:299 app/features/mec/settings.php:516
3006
  msgid "Upcoming Events"
3007
  msgstr "Nadcházející události"
3008
 
3009
- #: app/features/events.php:3728 app/features/events.php:3746
3010
- #: app/features/events.php:3764 app/features/events.php:3782
3011
  #, php-format
3012
  msgid "Show all %s"
3013
  msgstr "Ukázat všechny %s"
3014
 
3015
- #: app/features/events.php:3728
3016
  msgid "labels"
3017
  msgstr "štítky"
3018
 
3019
- #: app/features/events.php:3746
3020
  msgid "locations"
3021
  msgstr "umístění"
3022
 
3023
- #: app/features/events.php:3764
3024
  msgid "organizers"
3025
  msgstr "organizátoři"
3026
 
3027
- #: app/features/events.php:3798
3028
  #, fuzzy
3029
  #| msgid "Attendees Limit"
3030
  msgid "Attendees List"
3031
  msgstr "Limit účastníků"
3032
 
3033
- #: app/features/events.php:3825 app/features/events.php:4134
3034
- #: app/features/events.php:4681 app/features/fes/form.php:260
3035
- #: app/features/mec/booking.php:683 app/features/mec/booking.php:715
3036
  #: app/features/mec/styling.php:134 app/libraries/hourlyschedule.php:49
3037
  #: app/libraries/hourlyschedule.php:65 app/libraries/hourlyschedule.php:93
3038
  #: app/libraries/hourlyschedule.php:125 app/libraries/hourlyschedule.php:145
@@ -3040,48 +3047,48 @@ msgstr "Limit účastníků"
3040
  msgid "Title"
3041
  msgstr "Název"
3042
 
3043
- #: app/features/events.php:3833
3044
  #, fuzzy
3045
  #| msgid "Tickets"
3046
  msgid "Sold Tickets"
3047
  msgstr "Vstupenky"
3048
 
3049
- #: app/features/events.php:3835
3050
  msgid "Repeat"
3051
  msgstr "Opakovat"
3052
 
3053
- #: app/features/events.php:4004 app/features/events.php:4005
3054
  #, fuzzy
3055
  #| msgid "iCal Export"
3056
  msgid "iCal / Outlook Export"
3057
  msgstr "iCal Export"
3058
 
3059
- #: app/features/events.php:4007 app/features/events.php:4008
3060
  msgid "CSV Export"
3061
  msgstr "CSV Export"
3062
 
3063
- #: app/features/events.php:4010 app/features/events.php:4011
3064
  msgid "MS Excel Export"
3065
  msgstr "MS Excel Export"
3066
 
3067
- #: app/features/events.php:4013 app/features/events.php:4014
3068
  msgid "XML Export"
3069
  msgstr "XML Export"
3070
 
3071
- #: app/features/events.php:4016 app/features/events.php:4017
3072
  msgid "JSON Export"
3073
  msgstr "JSON Export"
3074
 
3075
- #: app/features/events.php:4019 app/features/events.php:4020
3076
- #: app/features/events.php:4246
3077
  msgid "Duplicate"
3078
  msgstr "Duplikát"
3079
 
3080
- #: app/features/events.php:4140
3081
  msgid "Link"
3082
  msgstr "Odkaz"
3083
 
3084
- #: app/features/events.php:4142 app/features/locations.php:111
3085
  #: app/features/locations.php:181 app/features/locations.php:268
3086
  #: app/features/mec/meta_boxes/search_form.php:108
3087
  #: app/features/mec/meta_boxes/search_form.php:196
@@ -3099,78 +3106,78 @@ msgstr "Odkaz"
3099
  msgid "Address"
3100
  msgstr "Adresa"
3101
 
3102
- #: app/features/events.php:4144
3103
  #, php-format
3104
  msgid "%s Tel"
3105
  msgstr "%s Tel"
3106
 
3107
- #: app/features/events.php:4145
3108
  #, php-format
3109
  msgid "%s Email"
3110
  msgstr "%s Email"
3111
 
3112
  # v kontextu
3113
- #: app/features/events.php:4147 app/features/fes/form.php:937
3114
  #: app/features/mec/settings.php:860
3115
  msgid "Featured Image"
3116
  msgstr "Hlavní obrázek"
3117
 
3118
- #: app/features/events.php:4150 app/features/fes/form.php:1030
3119
  #: app/features/mec.php:492 app/features/mec/meta_boxes/filter.php:73
3120
  #: app/features/mec/meta_boxes/filter.php:153 app/features/tag.php:59
3121
  msgid "Tags"
3122
  msgstr "Tagy"
3123
 
3124
- #: app/features/events.php:4154 app/features/fes/form.php:1052
3125
  #: app/features/mec.php:501 app/features/mec/modules.php:34
3126
  #: app/features/mec/modules.php:43 app/features/mec/settings.php:931
3127
  #: app/features/popup/settings.php:299 app/features/speakers.php:61
3128
  #: app/libraries/hourlyschedule.php:77 app/libraries/hourlyschedule.php:105
3129
  #: app/libraries/hourlyschedule.php:157 app/libraries/main.php:644
3130
- #: app/libraries/main.php:7123 app/libraries/main.php:7184
3131
  #: app/modules/speakers/details.php:18
3132
  msgid "Speakers"
3133
  msgstr "Řečníci"
3134
 
3135
- #: app/features/events.php:4397 app/features/fes.php:259
3136
  #: app/features/profile/profile.php:198 app/libraries/main.php:3018
3137
- #: app/libraries/main.php:7149
3138
  msgid "Ticket"
3139
  msgstr "Vstupenka"
3140
 
3141
- #: app/features/events.php:4400 app/features/profile/profile.php:201
3142
  msgid "Variations"
3143
  msgstr "Variace"
3144
 
3145
- #: app/features/events.php:4415 app/features/fes.php:335
3146
  msgid "Unknown"
3147
  msgstr "Neznámý"
3148
 
3149
- #: app/features/events.php:4443
3150
  msgid ""
3151
  "If you want to send an email, first select your attendees and then click in "
3152
  "the button below, please."
3153
  msgstr ""
3154
 
3155
- #: app/features/events.php:4443 app/features/mec/report.php:57
3156
  #, fuzzy
3157
  #| msgid "Organizer Email"
3158
  msgid "Send Email"
3159
  msgstr "Organizátor Email"
3160
 
3161
- #: app/features/events.php:4447
3162
  #, fuzzy
3163
  #| msgid "Attendees Form"
3164
  msgid "No Attendees Found!"
3165
  msgstr "Formulář účastníků"
3166
 
3167
- #: app/features/events.php:4687 app/features/fes.php:259
3168
  #: app/features/mec/booking.php:351 app/features/wc.php:86
3169
  #: app/libraries/main.php:2966 app/libraries/main.php:3081
3170
  msgid "Transaction ID"
3171
  msgstr "ID transakce"
3172
 
3173
- #: app/features/events.php:4745
3174
  #, fuzzy
3175
  #| msgid "No bookings found!"
3176
  msgid "No Bookings Found!"
@@ -3389,7 +3396,7 @@ msgstr "Údaje uživatele"
3389
  msgid "eg. yourname@gmail.com"
3390
  msgstr "např. vasejmeno@gmail.com"
3391
 
3392
- #: app/features/fes/form.php:813 app/features/organizers.php:294
3393
  #: app/features/popup/event.php:184
3394
  msgid "eg. John Smith"
3395
  msgstr "např. Jan Novák"
@@ -3829,8 +3836,8 @@ msgstr "Účastníci akce"
3829
  msgid "Add to Google Calendar"
3830
  msgstr "Přidat do Google kalendáře"
3831
 
3832
- #: app/features/ix/export_g_calendar.php:100 app/features/mec/booking.php:1179
3833
- #: app/features/mec/integrations.php:458 app/features/mec/modules.php:408
3834
  #: app/features/mec/notifications.php:1921 app/features/mec/settings.php:1586
3835
  #: app/features/mec/single.php:582
3836
  msgid "Checking ..."
@@ -3883,7 +3890,7 @@ msgstr "ICS Feed"
3883
  #: app/features/ix/import.php:58 app/features/ix/import.php:88
3884
  #: app/features/mec/booking.php:91 app/features/mec/booking.php:539
3885
  #: app/features/mec/booking.php:555 app/features/mec/booking.php:573
3886
- #: app/features/mec/booking.php:667
3887
  #: app/features/mec/meta_boxes/display_options.php:244
3888
  #: app/features/mec/meta_boxes/display_options.php:522
3889
  #: app/features/mec/modules.php:60 app/features/mec/modules.php:217
@@ -3895,7 +3902,7 @@ msgstr "% s je vyžadováno pro použití této funkce."
3895
  #: app/features/ix/import.php:58 app/features/ix/import.php:88
3896
  #: app/features/ix/sync.php:22 app/features/mec/booking.php:91
3897
  #: app/features/mec/booking.php:539 app/features/mec/booking.php:555
3898
- #: app/features/mec/booking.php:573 app/features/mec/booking.php:667
3899
  #: app/features/mec/meta_boxes/display_options.php:244
3900
  #: app/features/mec/meta_boxes/display_options.php:522
3901
  #: app/features/mec/meta_boxes/display_options.php:564
@@ -4343,8 +4350,8 @@ msgstr "Událost %s"
4343
 
4344
  #: app/features/locations.php:59 app/features/mec.php:495
4345
  #: app/features/mec/dashboard.php:281 app/features/mec/meta_boxes/filter.php:70
4346
- #: app/features/mec/meta_boxes/filter.php:99 app/libraries/main.php:7119
4347
- #: app/libraries/main.php:7180
4348
  msgid "Locations"
4349
  msgstr "Umístění"
4350
 
@@ -4394,7 +4401,7 @@ msgid "Thumbnail"
4394
  msgstr "Náhled"
4395
 
4396
  #: app/features/locations.php:329 app/features/occurrences.php:460
4397
- #: app/features/occurrences.php:487 app/features/organizers.php:274
4398
  #, php-format
4399
  msgid "Event Main %s"
4400
  msgstr "Hlavní událost %s"
@@ -4451,7 +4458,7 @@ msgstr ""
4451
  msgid "Get Latitude and Longitude"
4452
  msgstr "Získejte šířku a délku"
4453
 
4454
- #: app/features/locations.php:392 app/features/organizers.php:312
4455
  #: app/features/popup/event.php:203
4456
  msgid "Choose image"
4457
  msgstr "Vyberte obrázek"
@@ -4461,8 +4468,8 @@ msgstr "Vyberte obrázek"
4461
  msgid "Don't show map in single event page"
4462
  msgstr "Nezobrazovat mapu na jednostránkové události"
4463
 
4464
- #: app/features/locations.php:409 app/libraries/main.php:7164
4465
- #: app/libraries/main.php:7211
4466
  msgid "Other Locations"
4467
  msgstr "Další místa"
4468
 
@@ -4550,7 +4557,7 @@ msgstr "Podpora"
4550
  #: app/features/mec.php:496 app/features/mec/dashboard.php:288
4551
  #: app/features/mec/meta_boxes/filter.php:71
4552
  #: app/features/mec/meta_boxes/filter.php:117 app/features/organizers.php:59
4553
- #: app/libraries/main.php:7121 app/libraries/main.php:7182
4554
  msgid "Organizers"
4555
  msgstr "Organizátoři"
4556
 
@@ -4741,7 +4748,7 @@ msgstr "Pruh"
4741
  msgid "Line"
4742
  msgstr "Čára"
4743
 
4744
- #: app/features/mec.php:1518 app/skins/general_calendar/tpl.php:142
4745
  msgid "Filter"
4746
  msgstr "Filtr"
4747
 
@@ -4794,12 +4801,12 @@ msgstr ""
4794
  msgid "Search..."
4795
  msgstr "Vyhledávání ..."
4796
 
4797
- #: app/features/mec/booking.php:72 app/features/mec/booking.php:903
4798
- #: app/features/mec/booking.php:1095 app/features/mec/booking.php:1104
4799
- #: app/features/mec/booking.php:1114 app/features/mec/booking.php:1196
4800
- #: app/features/mec/booking.php:1210 app/features/mec/integrations.php:19
4801
- #: app/features/mec/integrations.php:407 app/features/mec/integrations.php:417
4802
- #: app/features/mec/integrations.php:475 app/features/mec/integrations.php:489
4803
  #: app/features/mec/messages.php:20 app/features/mec/messages.php:60
4804
  #: app/features/mec/messages.php:70 app/features/mec/messages.php:108
4805
  #: app/features/mec/messages.php:118 app/features/mec/modules.php:17
@@ -5256,7 +5263,7 @@ msgstr ""
5256
  "Po povolení a uložení nastavení byste měli stránku znovu načíst a zobrazit "
5257
  "novou nabídku na řídícím panelu > Rezervace"
5258
 
5259
- #: app/features/mec/booking.php:570 app/features/mec/booking.php:983
5260
  #: app/libraries/main.php:636
5261
  msgid "Taxes / Fees"
5262
  msgstr "Daně / poplatky"
@@ -5269,79 +5276,79 @@ msgstr "Povolit modul daní / poplatků"
5269
  msgid "Add Fee"
5270
  msgstr "Přidat poplatek"
5271
 
5272
- #: app/features/mec/booking.php:645
5273
  #, fuzzy
5274
  #| msgid "Payment Gateways"
5275
  msgid "Disable Fees per Gateways"
5276
  msgstr "Platební brány"
5277
 
5278
- #: app/features/mec/booking.php:664 app/libraries/main.php:637
5279
  msgid "Ticket Variations & Options"
5280
  msgstr "Varianty a možnosti vstupenek"
5281
 
5282
- #: app/features/mec/booking.php:672
5283
  #, fuzzy
5284
  #| msgid "Enable ticket options module"
5285
  msgid "Enable ticket variations module"
5286
  msgstr "Povolit modul možností vstupenek"
5287
 
5288
- #: app/features/mec/booking.php:677
5289
  msgid "Add Variation / Option"
5290
  msgstr "Přidat varianty / možnosti"
5291
 
5292
- #: app/features/mec/booking.php:691 app/features/mec/booking.php:723
5293
  #: app/libraries/ticketVariations.php:49
5294
  msgid "Option Price"
5295
  msgstr "Možnosti ceny"
5296
 
5297
- #: app/features/mec/booking.php:697 app/features/mec/booking.php:700
5298
- #: app/features/mec/booking.php:729 app/features/mec/booking.php:732
5299
  #: app/libraries/ticketVariations.php:58 app/libraries/ticketVariations.php:61
5300
  msgid "Maximum Per Ticket"
5301
  msgstr "Maximum na jednu vstupenku"
5302
 
5303
- #: app/features/mec/booking.php:701 app/features/mec/booking.php:733
5304
  #: app/libraries/ticketVariations.php:64
5305
  #, fuzzy
5306
  #| msgid "Maximum Per Ticket. Leave it blank for unlimited."
5307
  msgid "Maximum Per Ticket. Leave blank for unlimited."
5308
  msgstr "Maximum na jednu vstupenku. Ponechte to prázdné pro neomezené."
5309
 
5310
- #: app/features/mec/booking.php:746
5311
  #, fuzzy
5312
  #| msgid "Enable cancellation notification"
5313
  msgid "Enable variations per ticket"
5314
  msgstr "Povolit oznámení o zrušení"
5315
 
5316
- #: app/features/mec/booking.php:947 app/libraries/main.php:639
5317
  msgid "Upload Field"
5318
  msgstr "Nahrát pole"
5319
 
5320
- #: app/features/mec/booking.php:949
5321
  msgid "Mime types"
5322
  msgstr "MIME typy"
5323
 
5324
- #: app/features/mec/booking.php:953
5325
  msgid "Split mime types with \",\"."
5326
  msgstr "Rozdělte typy MIME pomocí “,“."
5327
 
5328
- #: app/features/mec/booking.php:953
5329
  msgid "Default: jpeg,jpg,png,pdf"
5330
  msgstr "Výchozí: jpeg,jpg,png,pdf"
5331
 
5332
- #: app/features/mec/booking.php:956
5333
  msgid "Maximum file size"
5334
  msgstr "Maximální velikost souboru"
5335
 
5336
- #: app/features/mec/booking.php:960
5337
  msgid "The unit is Megabyte \"MB\""
5338
  msgstr "Jednotkou je Megabyte \"MB\""
5339
 
5340
- #: app/features/mec/booking.php:973
5341
  msgid "Use WooCommerce as Payment System"
5342
  msgstr ""
5343
 
5344
- #: app/features/mec/booking.php:975
5345
  msgid ""
5346
  "By enabling this feature, tickets will be added to WooCommerce cart and all "
5347
  "payment process would be done by WooCommerce so all of MEC payment related "
@@ -5349,93 +5356,93 @@ msgid ""
5349
  "fields etc, you need to configure WooCommerce on your website."
5350
  msgstr ""
5351
 
5352
- #: app/features/mec/booking.php:977
5353
  msgid ""
5354
  "You cannot use following MEC features so you should use WooCommerc and its "
5355
  "addons if you need them."
5356
  msgstr ""
5357
 
5358
- #: app/features/mec/booking.php:979
5359
  #, fuzzy
5360
  #| msgid "Payment Gateways"
5361
  msgid "Payment gateways"
5362
  msgstr "Platební brány"
5363
 
5364
- #: app/features/mec/booking.php:980
5365
  #, fuzzy
5366
  #| msgid "Price per Date"
5367
  msgid "Price per dates of tickets"
5368
  msgstr "Cena za datum"
5369
 
5370
- #: app/features/mec/booking.php:982
5371
  #, fuzzy
5372
  #| msgid "Ticket Variations / Options"
5373
  msgid "Ticket variations"
5374
  msgstr "Varianty vstupenky / možnosti"
5375
 
5376
- #: app/features/mec/booking.php:984
5377
  #, fuzzy
5378
  #| msgid "Discount"
5379
  msgid "Discount Per Roles"
5380
  msgstr "Sleva"
5381
 
5382
- #: app/features/mec/booking.php:988
5383
  msgid "Automatically complete WooCommerce orders"
5384
  msgstr ""
5385
 
5386
- #: app/features/mec/booking.php:996
5387
  #, fuzzy
5388
  #| msgid "WooCommerce gateways"
5389
  msgid "Auto WooCommerce orders"
5390
  msgstr "Brána WooCommerce"
5391
 
5392
- #: app/features/mec/booking.php:997
5393
  msgid "It applies only to the orders that are related to MEC."
5394
  msgstr ""
5395
 
5396
- #: app/features/mec/booking.php:1005
5397
  msgid "After Add to Cart"
5398
  msgstr ""
5399
 
5400
- #: app/features/mec/booking.php:1008
5401
  #, fuzzy
5402
  #| msgid "Get Directions"
5403
  msgid "Redirect to Cart"
5404
  msgstr "Získat směr"
5405
 
5406
- #: app/features/mec/booking.php:1009
5407
  #, fuzzy
5408
  #| msgid "Get Directions"
5409
  msgid "Redirect to Checkout"
5410
  msgstr "Získat směr"
5411
 
5412
- #: app/features/mec/booking.php:1010
5413
  #, fuzzy
5414
  #| msgid "View Detail Button"
5415
  msgid "Optional View Cart Button"
5416
  msgstr "Tlačítko Zobrazit detail"
5417
 
5418
- #: app/features/mec/booking.php:1011
5419
  msgid "Optional Checkout Button"
5420
  msgstr ""
5421
 
5422
- #: app/features/mec/booking.php:1016
5423
  #, fuzzy
5424
  #| msgid "Booking Form"
5425
  msgid "MEC Booking Form"
5426
  msgstr "Rezervační formulář"
5427
 
5428
- #: app/features/mec/booking.php:1025
5429
  msgid ""
5430
  "If enabled then users should fill the booking form in MEC and then they will "
5431
  "be redirected to checkout."
5432
  msgstr ""
5433
 
5434
- #: app/features/mec/booking.php:1051
5435
  msgid "Enable Organizer Payment Module"
5436
  msgstr "Povolit platební modul organizátora"
5437
 
5438
- #: app/features/mec/booking.php:1056
5439
  msgid ""
5440
  "By enabling this module, organizers are able to insert their own payment "
5441
  "credentials for enabled gateways per event and receive the payments directly!"
@@ -5443,17 +5450,17 @@ msgstr ""
5443
  "Po aktivaci tohoto modulu mohou organizátoři vkládat své vlastní platební "
5444
  "údaje pro povolené brány pro události a přijímat platby přímo!"
5445
 
5446
- #: app/features/mec/booking.php:1066
5447
  msgid "Disable / Enable payment gateways per event"
5448
  msgstr ""
5449
 
5450
- #: app/features/mec/booking.php:1070
5451
  #, fuzzy
5452
  #| msgid "Payment Gateways"
5453
  msgid "Payment Gateways Per Event"
5454
  msgstr "Platební brány"
5455
 
5456
- #: app/features/mec/booking.php:1071
5457
  #, fuzzy
5458
  #| msgid ""
5459
  #| "By enabling this module, organizers are able to insert their own payment "
@@ -5466,21 +5473,21 @@ msgstr ""
5466
  "Po aktivaci tohoto modulu mohou organizátoři vkládat své vlastní platební "
5467
  "údaje pro povolené brány pro události a přijímat platby přímo!"
5468
 
5469
- #: app/features/mec/booking.php:1081
5470
  msgid "Automatically refund the payment"
5471
  msgstr ""
5472
 
5473
- #: app/features/mec/booking.php:1085
5474
  msgid "Auto Refund"
5475
  msgstr ""
5476
 
5477
- #: app/features/mec/booking.php:1086
5478
  msgid ""
5479
  "Automatically refund the payment when a booking paid by applicable gateways "
5480
  "(Stripe) got canceled."
5481
  msgstr ""
5482
 
5483
- #: app/features/mec/booking.php:1174 app/features/mec/integrations.php:453
5484
  #: app/features/mec/messages.php:90 app/features/mec/modules.php:403
5485
  #: app/features/mec/notifications.php:1916 app/features/mec/settings.php:1581
5486
  #: app/features/mec/single.php:577 app/features/mec/styles.php:62
@@ -5488,7 +5495,7 @@ msgstr ""
5488
  msgid "Saved"
5489
  msgstr "Uloženo"
5490
 
5491
- #: app/features/mec/booking.php:1175 app/features/mec/integrations.php:454
5492
  #: app/features/mec/messages.php:91 app/features/mec/modules.php:404
5493
  #: app/features/mec/notifications.php:1917 app/features/mec/settings.php:1582
5494
  #: app/features/mec/single.php:578 app/features/mec/styles.php:63
@@ -5496,7 +5503,7 @@ msgstr "Uloženo"
5496
  msgid "Settings Saved!"
5497
  msgstr "Nastavení uložena!"
5498
 
5499
- #: app/features/mec/booking.php:1201 app/features/mec/integrations.php:480
5500
  #: app/features/mec/modules.php:430 app/features/mec/notifications.php:1944
5501
  #: app/features/mec/settings.php:1608 app/features/mec/single.php:604
5502
  msgid "Please Refresh Page"
@@ -5837,81 +5844,57 @@ msgstr "Adresa"
5837
  msgid "Enable BuddyPress Integration"
5838
  msgstr "Povolit integraci BuddyPress"
5839
 
5840
- #: app/features/mec/integrations.php:317
5841
- #, fuzzy
5842
- #| msgid "Time Format"
5843
- msgid "DateTime Format"
5844
- msgstr "Formát času"
5845
-
5846
- #: app/features/mec/integrations.php:325
5847
- #, fuzzy
5848
- #| msgid "Hide Events"
5849
- msgid "Hide group events"
5850
- msgstr "Skrýt události"
5851
-
5852
- #: app/features/mec/integrations.php:331
5853
  msgid "Show \"Attendees Module\" in event details page"
5854
  msgstr "Zobrazit \"Účastnický modul\" na stránce s podrobnostmi o události"
5855
 
5856
- #: app/features/mec/integrations.php:335
5857
  #, fuzzy
5858
  #| msgid "Attendees Limit"
5859
  msgid "Attendee Limit"
5860
  msgstr "Limit účastníků"
5861
 
5862
- #: app/features/mec/integrations.php:343
5863
  msgid "Add booking activity to user profile"
5864
  msgstr "Přidejte do uživatelského profilu rezervační aktivitu"
5865
 
5866
- #: app/features/mec/integrations.php:349
5867
  #, fuzzy
5868
  #| msgid "Add booking activity to user profile"
5869
  msgid "Add events menu to user profile"
5870
  msgstr "Přidejte do uživatelského profilu rezervační aktivitu"
5871
 
5872
- #: app/features/mec/integrations.php:355 app/features/mec/integrations.php:371
5873
- #, fuzzy
5874
- #| msgid "Frontend Event Submission"
5875
- msgid "Event submission roles"
5876
- msgstr "Předání události frontendu"
5877
-
5878
- #: app/features/mec/integrations.php:372
5879
- #, fuzzy
5880
- #| msgid "Sorry! You don't have access to modify this event."
5881
- msgid "Select roles that have access to submission events"
5882
- msgstr "Promiňte! Nemáte přístup k úpravě této události."
5883
-
5884
- #: app/features/mec/integrations.php:381 app/libraries/main.php:617
5885
  #, fuzzy
5886
  #| msgid "No Search Options"
5887
  msgid "LearnDash"
5888
  msgstr "Žádné možnosti vyhledávání"
5889
 
5890
- #: app/features/mec/integrations.php:385
5891
  #, fuzzy
5892
  #| msgid "Enable Mailchimp Integration"
5893
  msgid "Enable LearnDash Integration"
5894
  msgstr "Povolit integraci Mailchimp"
5895
 
5896
- #: app/features/mec/integrations.php:388
5897
  #, fuzzy
5898
  #| msgid "Third Party plugin is not installed and activated!"
5899
  msgid "LearnDash plugin should be installed and activated."
5900
  msgstr "Plugin třetích stran není nainstalován a aktivován!"
5901
 
5902
- #: app/features/mec/integrations.php:391 app/libraries/main.php:618
5903
  #, fuzzy
5904
  #| msgid "Mailchimp Integration"
5905
  msgid "PaidMembership Pro"
5906
  msgstr "Integrace Mailchimp"
5907
 
5908
- #: app/features/mec/integrations.php:395
5909
  #, fuzzy
5910
  #| msgid "Enable Mailchimp Integration"
5911
  msgid "Enable PaidMembership Pro Integration"
5912
  msgstr "Povolit integraci Mailchimp"
5913
 
5914
- #: app/features/mec/integrations.php:398
5915
  #, fuzzy
5916
  #| msgid "Third Party plugin is not installed and activated!"
5917
  msgid "PaidMembership Pro plugin should be installed and activated."
@@ -7165,7 +7148,7 @@ msgstr ""
7165
  #: app/features/mec/single.php:511 app/features/popup/settings.php:233
7166
  #: app/features/popup/settings.php:272 app/features/search.php:109
7167
  #: app/features/speakers.php:60 app/features/speakers.php:286
7168
- #: app/libraries/main.php:7124 app/libraries/main.php:7185
7169
  #: app/libraries/search.php:334 app/libraries/skins.php:1193
7170
  #: app/modules/speakers/details.php:18
7171
  msgid "Speaker"
@@ -8459,7 +8442,7 @@ msgid ""
8459
  msgstr "Zašle správci informaci o přijetí nové rezervace."
8460
 
8461
  #: app/features/mec/notifications.php:1230 app/features/notifications.php:120
8462
- #: app/libraries/main.php:667 app/libraries/notifications.php:823
8463
  msgid "Booking Reminder"
8464
  msgstr "Připomenutí rezervace"
8465
 
@@ -8489,8 +8472,8 @@ msgstr ""
8489
  msgid "only once per hour"
8490
  msgstr "pouze jednou denně"
8491
 
8492
- #: app/features/mec/notifications.php:1312 app/libraries/main.php:8355
8493
- #: app/libraries/main.php:8372
8494
  #, fuzzy
8495
  #| msgid "hours"
8496
  msgid "Hours"
@@ -8827,8 +8810,8 @@ msgid "You can enable/disable Schema scripts"
8827
  msgstr "Můžete povolit nebo zakázat skripty schématu"
8828
 
8829
  #: app/features/mec/settings.php:137 app/features/mec/settings.php:148
8830
- #: app/features/popup/settings.php:41 app/libraries/main.php:7128
8831
- #: app/libraries/main.php:7189
8832
  msgid "Weekdays"
8833
  msgstr "Pracovní dny"
8834
 
@@ -9313,12 +9296,12 @@ msgid "Display Event Date in List"
9313
  msgstr "Zobrazit cenu události"
9314
 
9315
  #: app/features/mec/settings.php:751 app/features/mec/settings.php:917
9316
- #: app/libraries/notifications.php:2072
9317
  msgid "No"
9318
  msgstr "Ne"
9319
 
9320
  #: app/features/mec/settings.php:752 app/features/mec/settings.php:916
9321
- #: app/libraries/notifications.php:2072
9322
  msgid "Yes"
9323
  msgstr "Ano"
9324
 
@@ -9500,8 +9483,8 @@ msgstr "Ve výchozím nastavení zaškrtnuto"
9500
  msgid "Required Fields"
9501
  msgstr "Požadovaná pole"
9502
 
9503
- #: app/features/mec/settings.php:1149 app/libraries/main.php:7160
9504
- #: app/libraries/main.php:7207
9505
  msgid "More Info Link"
9506
  msgstr "Odkaz na více informací"
9507
 
@@ -10808,12 +10791,12 @@ msgstr ""
10808
  msgid "Choose one of saved locations."
10809
  msgstr "Vyberte jedno z uložených míst nebo vložte nové."
10810
 
10811
- #: app/features/occurrences.php:491 app/features/organizers.php:277
10812
  #: app/features/popup/event.php:165
10813
  msgid "Hide organizer"
10814
  msgstr "Skrýt organizátora"
10815
 
10816
- #: app/features/occurrences.php:499 app/features/organizers.php:286
10817
  #: app/features/popup/event.php:174
10818
  msgid "Choose one of saved organizers or insert new one below."
10819
  msgstr "Vyberte některého z uložených organizátorů nebo vložte nového."
@@ -10827,7 +10810,7 @@ msgid "Insert organizer email address."
10827
  msgstr "Vložit email organizátora."
10828
 
10829
  #: app/features/organizers.php:120 app/features/organizers.php:157
10830
- #: app/features/organizers.php:305 app/features/popup/event.php:197
10831
  msgid "Link to organizer page"
10832
  msgstr "Odkaz na stránku organizátora"
10833
 
@@ -10841,36 +10824,36 @@ msgstr ""
10841
  msgid "Contact info"
10842
  msgstr "Kontaktní informace"
10843
 
10844
- #: app/features/organizers.php:278 app/features/popup/event.php:166
10845
  msgid "Insert a new organizer"
10846
  msgstr "Vložit nového organizátora"
10847
 
10848
- #: app/features/organizers.php:297 app/features/popup/event.php:187
10849
  msgid "Phone number."
10850
  msgstr "Telefonní číslo."
10851
 
10852
- #: app/features/organizers.php:298 app/features/popup/event.php:188
10853
  msgid "eg. +1 (234) 5678"
10854
  msgstr "např. + 420 123 456 789"
10855
 
10856
- #: app/features/organizers.php:301 app/features/popup/event.php:192
10857
  msgid "Email address."
10858
  msgstr "Emailová adresa."
10859
 
10860
- #: app/features/organizers.php:302 app/features/popup/event.php:193
10861
  msgid "eg. john@smith.com"
10862
  msgstr "např. info@itreseni.cz"
10863
 
10864
- #: app/features/organizers.php:306 app/features/popup/event.php:198
10865
  msgid "eg. https://webnus.net"
10866
  msgstr "např. https://webnus.net"
10867
 
10868
- #: app/features/organizers.php:326 app/libraries/main.php:7163
10869
- #: app/libraries/main.php:7210 app/skins/single.php:1446
10870
  msgid "Other Organizers"
10871
  msgstr "Další organizátoři"
10872
 
10873
- #: app/features/organizers.php:328
10874
  msgid ""
10875
  "You can select extra organizers in addition to main organizer if you like."
10876
  msgstr ""
@@ -11238,9 +11221,9 @@ msgid "Other Dates"
11238
  msgstr "Konec"
11239
 
11240
  #: app/features/wc.php:108 app/features/wc.php:131 app/libraries/main.php:2949
11241
- #: app/libraries/notifications.php:1600 app/libraries/notifications.php:1615
11242
- #: app/libraries/notifications.php:1626 app/libraries/notifications.php:1642
11243
- #: app/libraries/notifications.php:1949 app/libraries/notifications.php:1950
11244
  #, php-format
11245
  msgid "%s to %s"
11246
  msgstr ""
@@ -11255,25 +11238,25 @@ msgstr ""
11255
  msgid "Only %s slots remained for %s ticket so you cannot book %s ones."
11256
  msgstr ""
11257
 
11258
- #: app/features/wc.php:251 app/libraries/main.php:7147
11259
  #, php-format
11260
  msgid "Maximum allowed number of tickets that you can book is %s."
11261
  msgstr ""
11262
 
11263
- #: app/libraries/book.php:105
11264
  msgid " ("
11265
  msgstr ""
11266
 
11267
- #: app/libraries/book.php:141
11268
  #, php-format
11269
  msgid "%s Price"
11270
  msgstr "%s Cena"
11271
 
11272
- #: app/libraries/book.php:868 app/libraries/book.php:959
11273
  msgid "Discount"
11274
  msgstr "Sleva"
11275
 
11276
- #: app/libraries/book.php:1051 app/modules/booking/default.php:654
11277
  #: app/modules/booking/default.php:767
11278
  msgid "Download Invoice"
11279
  msgstr "Stáhnout fakturu"
@@ -11449,38 +11432,38 @@ msgstr "Zobrazení posuvníku"
11449
  msgid "Timeline View"
11450
  msgstr "Zobrazení rozvrhu"
11451
 
11452
- #: app/libraries/main.php:439 app/libraries/main.php:7130
11453
- #: app/libraries/main.php:7191
11454
  msgid "SU"
11455
  msgstr "NE"
11456
 
11457
- #: app/libraries/main.php:440 app/libraries/main.php:7131
11458
- #: app/libraries/main.php:7192
11459
  msgid "MO"
11460
  msgstr "PO"
11461
 
11462
- #: app/libraries/main.php:441 app/libraries/main.php:7132
11463
- #: app/libraries/main.php:7193
11464
  msgid "TU"
11465
  msgstr "ÚT"
11466
 
11467
- #: app/libraries/main.php:442 app/libraries/main.php:7133
11468
- #: app/libraries/main.php:7194
11469
  msgid "WE"
11470
  msgstr "ST"
11471
 
11472
- #: app/libraries/main.php:443 app/libraries/main.php:7134
11473
- #: app/libraries/main.php:7195
11474
  msgid "TH"
11475
  msgstr "ČT"
11476
 
11477
- #: app/libraries/main.php:444 app/libraries/main.php:7135
11478
- #: app/libraries/main.php:7196
11479
  msgid "FR"
11480
  msgstr "PÁ"
11481
 
11482
- #: app/libraries/main.php:445 app/libraries/main.php:7136
11483
- #: app/libraries/main.php:7197
11484
  msgid "SA"
11485
  msgstr "SO"
11486
 
@@ -11823,7 +11806,7 @@ msgstr ""
11823
  msgid "Free"
11824
  msgstr "Zdarma"
11825
 
11826
- #: app/libraries/main.php:4917 app/libraries/main.php:7517
11827
  msgid "M.E. Calender"
11828
  msgstr "M.E. Kalendář"
11829
 
@@ -11841,101 +11824,101 @@ msgstr "Událost byla rezervována."
11841
  msgid "%s booked %s event."
11842
  msgstr "%s zarezervoval %s událost."
11843
 
11844
- #: app/libraries/main.php:7113 app/libraries/main.php:7174
11845
  msgid "Taxonomies"
11846
  msgstr "Taxonomie"
11847
 
11848
  # Mrknout na kontext
11849
- #: app/libraries/main.php:7115 app/libraries/main.php:7176
11850
  msgid "Category Plural Label"
11851
  msgstr "Štítek množné kategorie"
11852
 
11853
  # Mrknout na kontext
11854
- #: app/libraries/main.php:7116 app/libraries/main.php:7177
11855
  msgid "Category Singular Label"
11856
  msgstr "Štítek jednotné kategorie"
11857
 
11858
- #: app/libraries/main.php:7117 app/libraries/main.php:7178
11859
  msgid "Label Plural Label"
11860
  msgstr "Štítek množného štítku"
11861
 
11862
- #: app/libraries/main.php:7118 app/libraries/main.php:7179
11863
  msgid "Label Singular Label"
11864
  msgstr "Štítek jednotného štítku"
11865
 
11866
- #: app/libraries/main.php:7118 app/libraries/main.php:7179
11867
  msgid "label"
11868
  msgstr "štítek"
11869
 
11870
- #: app/libraries/main.php:7119 app/libraries/main.php:7180
11871
  msgid "Location Plural Label"
11872
  msgstr "Štítek množného umístění"
11873
 
11874
- #: app/libraries/main.php:7120 app/libraries/main.php:7181
11875
  msgid "Location Singular Label"
11876
  msgstr "Štítek jednotného umístění"
11877
 
11878
- #: app/libraries/main.php:7121 app/libraries/main.php:7182
11879
  msgid "Organizer Plural Label"
11880
  msgstr "Štítek množného organizátora"
11881
 
11882
- #: app/libraries/main.php:7122 app/libraries/main.php:7183
11883
  msgid "Organizer Singular Label"
11884
  msgstr "Štítek jednotného organizátora"
11885
 
11886
- #: app/libraries/main.php:7123 app/libraries/main.php:7184
11887
  msgid "Speaker Plural Label"
11888
  msgstr "Štítek množného řečníka"
11889
 
11890
- #: app/libraries/main.php:7124 app/libraries/main.php:7185
11891
  msgid "Speaker Singular Label"
11892
  msgstr "Štítek jednotného řečníka"
11893
 
11894
- #: app/libraries/main.php:7130 app/libraries/main.php:7191
11895
  msgid "Sunday abbreviation"
11896
  msgstr "Neděle zkratka"
11897
 
11898
- #: app/libraries/main.php:7131 app/libraries/main.php:7192
11899
  msgid "Monday abbreviation"
11900
  msgstr "Pondělí zkratka"
11901
 
11902
- #: app/libraries/main.php:7132 app/libraries/main.php:7193
11903
  msgid "Tuesday abbreviation"
11904
  msgstr "Úterý zkratka"
11905
 
11906
- #: app/libraries/main.php:7133 app/libraries/main.php:7194
11907
  msgid "Wednesday abbreviation"
11908
  msgstr "Středa zkratka"
11909
 
11910
- #: app/libraries/main.php:7134 app/libraries/main.php:7195
11911
  msgid "Thursday abbreviation"
11912
  msgstr "Čtvrtek zkratka"
11913
 
11914
- #: app/libraries/main.php:7135 app/libraries/main.php:7196
11915
  msgid "Friday abbreviation"
11916
  msgstr "Pátek zkratka"
11917
 
11918
- #: app/libraries/main.php:7136 app/libraries/main.php:7197
11919
  msgid "Saturday abbreviation"
11920
  msgstr "Sobota zkratka"
11921
 
11922
- #: app/libraries/main.php:7142
11923
  #, fuzzy
11924
  #| msgid "Ticket (Singular)"
11925
  msgid "Booking (Singular)"
11926
  msgstr "Vstupenka (Jednotné)"
11927
 
11928
- #: app/libraries/main.php:7143
11929
  #, fuzzy
11930
  #| msgid "Tickets (Plural)"
11931
  msgid "Bookings (Plural)"
11932
  msgstr "Vstupenky (Množné)"
11933
 
11934
- #: app/libraries/main.php:7144
11935
  msgid "Booking Success Message"
11936
  msgstr "Zpráva o úspěchu rezervace"
11937
 
11938
- #: app/libraries/main.php:7144
11939
  #, fuzzy
11940
  #| msgid ""
11941
  #| "Thanks for your booking. Your tickets booked, booking verification might "
@@ -11947,72 +11930,72 @@ msgstr ""
11947
  "Děkujeme za vaši rezervaci. Vaše vstupenky jsou rezervovány, může být nutné "
11948
  "ověřit rezervaci. Zkontrolujte prosím svůj e-mail."
11949
 
11950
- #: app/libraries/main.php:7145
11951
  #, fuzzy
11952
  #| msgid "Booking Success Message"
11953
  msgid "Booking Restriction Message 1"
11954
  msgstr "Zpráva o úspěchu rezervace"
11955
 
11956
- #: app/libraries/main.php:7145
11957
  #, php-format
11958
  msgid ""
11959
  "You selected %s tickets to book but maximum number of tikets per user is %s "
11960
  "tickets."
11961
  msgstr ""
11962
 
11963
- #: app/libraries/main.php:7146
11964
  #, fuzzy
11965
  #| msgid "Booking Success Message"
11966
  msgid "Booking Restriction Message 2"
11967
  msgstr "Zpráva o úspěchu rezervace"
11968
 
11969
- #: app/libraries/main.php:7146
11970
  #, php-format
11971
  msgid ""
11972
  "You booked %s tickets till now but maximum number of tickets per user is %s "
11973
  "tickets."
11974
  msgstr ""
11975
 
11976
- #: app/libraries/main.php:7147
11977
  #, fuzzy
11978
  #| msgid "Booking Success Message"
11979
  msgid "Booking IP Restriction Message"
11980
  msgstr "Zpráva o úspěchu rezervace"
11981
 
11982
- #: app/libraries/main.php:7148
11983
  #, fuzzy
11984
  #| msgid "Booking Options"
11985
  msgid "Booking Button"
11986
  msgstr "Možnosti rezervace"
11987
 
11988
- #: app/libraries/main.php:7148
11989
  #, fuzzy
11990
  #| msgid "Booking Form"
11991
  msgid "Book Now"
11992
  msgstr "Rezervační formulář"
11993
 
11994
- #: app/libraries/main.php:7149
11995
  msgid "Ticket (Singular)"
11996
  msgstr "Vstupenka (Jednotné)"
11997
 
11998
- #: app/libraries/main.php:7150
11999
  msgid "Tickets (Plural)"
12000
  msgstr "Vstupenky (Množné)"
12001
 
12002
- #: app/libraries/main.php:7154 app/libraries/main.php:7201
12003
  msgid "Others"
12004
  msgstr "Další"
12005
 
12006
- #: app/libraries/main.php:7156 app/libraries/main.php:7203
12007
  #: app/widgets/single.php:128
12008
  msgid "Register Button"
12009
  msgstr "Registrační tlačítko"
12010
 
12011
- #: app/libraries/main.php:7157 app/libraries/main.php:7204
12012
  msgid "View Detail Button"
12013
  msgstr "Tlačítko Zobrazit detail"
12014
 
12015
- #: app/libraries/main.php:7157 app/libraries/main.php:7204
12016
  #: app/skins/carousel/render.php:105 app/skins/carousel/render.php:145
12017
  #: app/skins/grid/render.php:94 app/skins/grid/render.php:153
12018
  #: app/skins/grid/render.php:214 app/skins/grid/render.php:237
@@ -12024,214 +12007,214 @@ msgstr "Tlačítko Zobrazit detail"
12024
  msgid "View Detail"
12025
  msgstr "Zobrazit detail"
12026
 
12027
- #: app/libraries/main.php:7158 app/libraries/main.php:7205
12028
  msgid "Event Detail Button"
12029
  msgstr "Tlačítko Detail události"
12030
 
12031
- #: app/libraries/main.php:7158 app/libraries/main.php:7205
12032
  msgid "Event Detail"
12033
  msgstr "Zobrazit událost"
12034
 
12035
- #: app/libraries/main.php:7320
12036
  msgid "EventON"
12037
  msgstr "EventON"
12038
 
12039
- #: app/libraries/main.php:7321
12040
  msgid "The Events Calendar"
12041
  msgstr "The Events Calendar"
12042
 
12043
- #: app/libraries/main.php:7322
12044
  msgid "Events Schedule WP Plugin"
12045
  msgstr "Events Schedule WP Plugin"
12046
 
12047
- #: app/libraries/main.php:7323
12048
  msgid "Calendarize It"
12049
  msgstr "Calendarize It"
12050
 
12051
- #: app/libraries/main.php:7324
12052
  #, fuzzy
12053
  #| msgid "Event Speakers"
12054
  msgid "Event Espresso"
12055
  msgstr "Řečník události"
12056
 
12057
- #: app/libraries/main.php:7325
12058
  #, fuzzy
12059
  #| msgid "Event Repeating (Recurring events)"
12060
  msgid "Events Manager (Recurring)"
12061
  msgstr "Opakování události (opakující se události)"
12062
 
12063
- #: app/libraries/main.php:7326
12064
  #, fuzzy
12065
  #| msgid "Modern Events Calendar (Lite)"
12066
  msgid "Events Manager (Single)"
12067
  msgstr "Modern Events Calendar (Lite)"
12068
 
12069
- #: app/libraries/main.php:7327
12070
  #, fuzzy
12071
  #| msgid "Modern Events Calendar (Lite)"
12072
  msgid "WP Event Manager"
12073
  msgstr "Modern Events Calendar (Lite)"
12074
 
12075
- #: app/libraries/main.php:7547
12076
  #, fuzzy
12077
  #| msgid "Sunday"
12078
  msgid "Sun"
12079
  msgstr "Neděle"
12080
 
12081
- #: app/libraries/main.php:7547
12082
  #, fuzzy
12083
  #| msgid "Monday"
12084
  msgid "Mon"
12085
  msgstr "Pondělí"
12086
 
12087
- #: app/libraries/main.php:7547
12088
  #, fuzzy
12089
  #| msgid "Tel"
12090
  msgid "Tue"
12091
  msgstr "Tel"
12092
 
12093
- #: app/libraries/main.php:7547
12094
  msgid "Wed"
12095
  msgstr ""
12096
 
12097
- #: app/libraries/main.php:7547
12098
  msgid "Thu"
12099
  msgstr ""
12100
 
12101
- #: app/libraries/main.php:7547
12102
  #, fuzzy
12103
  #| msgid "Friday"
12104
  msgid "Fri"
12105
  msgstr "Pátek"
12106
 
12107
- #: app/libraries/main.php:7547
12108
  #, fuzzy
12109
  #| msgid "Start"
12110
  msgid "Sat"
12111
  msgstr "Začátek"
12112
 
12113
- #: app/libraries/main.php:7753 app/libraries/render.php:82
12114
  #: app/libraries/render.php:467
12115
  msgid "Skin controller does not exist."
12116
  msgstr "Ovladač vzhledu neexistuje."
12117
 
12118
- #: app/libraries/main.php:7990
12119
  msgid "Sold Out"
12120
  msgstr "Vyprodáno"
12121
 
12122
- #: app/libraries/main.php:8021
12123
  #, fuzzy
12124
  #| msgid "Ticket"
12125
  msgid "Last Few Tickets"
12126
  msgstr "Vstupenka"
12127
 
12128
- #: app/libraries/main.php:8293
12129
  #, fuzzy
12130
  #| msgid "Upcoming Events"
12131
  msgid "Ongoing"
12132
  msgstr "Nadcházející události"
12133
 
12134
- #: app/libraries/main.php:8295
12135
  #, fuzzy
12136
  #| msgid "Expired Events"
12137
  msgid "Expired"
12138
  msgstr "Události vypršely"
12139
 
12140
- #: app/libraries/main.php:8361 app/libraries/main.php:8378
12141
  #, fuzzy
12142
  #| msgid "minutes"
12143
  msgid "Minutes"
12144
  msgstr "minuty"
12145
 
12146
- #: app/libraries/main.php:8383
12147
  msgid "AM / PM"
12148
  msgstr ""
12149
 
12150
- #: app/libraries/main.php:8384
12151
  msgid "AM"
12152
  msgstr "dop."
12153
 
12154
- #: app/libraries/main.php:8385
12155
  msgid "PM"
12156
  msgstr "odp."
12157
 
12158
- #: app/libraries/main.php:8393
12159
  msgid "Ongoing..."
12160
  msgstr ""
12161
 
12162
- #: app/libraries/main.php:8394 app/skins/single.php:229
12163
  #, fuzzy
12164
  #| msgid "Expired Events"
12165
  msgid "Expired!"
12166
  msgstr "Události vypršely"
12167
 
12168
- #: app/libraries/main.php:9004
12169
  #, fuzzy
12170
  #| msgid "Categories"
12171
  msgid "Uncategorized"
12172
  msgstr "Kategorie"
12173
 
12174
- #: app/libraries/notifications.php:72
12175
  msgid "Please verify your email."
12176
  msgstr "Prosím, ověřte svůj e-mail."
12177
 
12178
- #: app/libraries/notifications.php:181
12179
  msgid "Your booking is received."
12180
  msgstr "Vaše rezervace je přijata."
12181
 
12182
- #: app/libraries/notifications.php:306
12183
  msgid "Your booking is confirmed."
12184
  msgstr "Vaše rezervace je potvrzena."
12185
 
12186
- #: app/libraries/notifications.php:492
12187
  msgid "booking canceled."
12188
  msgstr "rezervace zrušena."
12189
 
12190
- #: app/libraries/notifications.php:641
12191
  #, fuzzy
12192
  #| msgid "booking canceled."
12193
  msgid "booking rejected."
12194
  msgstr "rezervace zrušena."
12195
 
12196
- #: app/libraries/notifications.php:706
12197
  msgid "A new booking is received."
12198
  msgstr "Je přijata nová rezervace."
12199
 
12200
- #: app/libraries/notifications.php:967
12201
  msgid "A new event is added."
12202
  msgstr "Je přidána se nová událost."
12203
 
12204
- #: app/libraries/notifications.php:1105
12205
  msgid "Your event is published."
12206
  msgstr "Vaše událost je zveřejněna."
12207
 
12208
- #: app/libraries/notifications.php:1300
12209
  #, fuzzy
12210
  #| msgid "Event Color"
12211
  msgid "Event is soldout!"
12212
  msgstr "Barva události"
12213
 
12214
- #: app/libraries/notifications.php:1412
12215
  #, fuzzy
12216
  #| msgid "Thanks for your booking."
12217
  msgid "Thanks for your attention!"
12218
  msgstr "Děkujeme za vaši rezervaci."
12219
 
12220
- #: app/libraries/notifications.php:1889
12221
  msgid "to"
12222
  msgstr "do"
12223
 
12224
- #: app/libraries/notifications.php:1919 app/modules/export/details.php:80
12225
  msgid "+ Add to Google Calendar"
12226
  msgstr "+ Přidat do Google kalendáře"
12227
 
12228
- #: app/libraries/notifications.php:1920 app/modules/export/details.php:81
12229
  #, fuzzy
12230
  #| msgid "+ iCal export"
12231
  msgid "+ iCal / Outlook export"
12232
  msgstr "+ iCal export"
12233
 
12234
- #: app/libraries/notifications.php:1964
12235
  #, fuzzy, php-format
12236
  #| msgid "+ Add to Google Calendar"
12237
  msgid "+ %s to Google Calendar"
@@ -12627,7 +12610,7 @@ msgstr "Zobrazení rozvrhu"
12627
  msgid "No Events"
12628
  msgstr "Žádné události"
12629
 
12630
- #: app/skins/general_calendar/tpl.php:96
12631
  #, fuzzy
12632
  #| msgid "Found Events"
12633
  msgid "Find Events"
@@ -12786,6 +12769,26 @@ msgstr "Webnus Team"
12786
  msgid "http://webnus.net"
12787
  msgstr "http://webnus.net"
12788
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12789
  #~ msgid "Organizer Tel"
12790
  #~ msgstr "Organizátor Tel"
12791
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar Lite\n"
4
+ "POT-Creation-Date: 2021-11-17 13:15+0330\n"
5
+ "PO-Revision-Date: 2021-11-17 13:20+0330\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: cs_CZ\n"
94
  msgstr "Přidat nový zkrácený kód"
95
 
96
  #: app/core/src/Books/Book.php:106 app/features/ix.php:284
97
+ #: app/libraries/main.php:7457 app/libraries/main.php:7484
98
  msgid "Rejected"
99
  msgstr "Odmítnuto"
100
 
101
  #: app/core/src/Books/Book.php:111 app/features/ix.php:283
102
+ #: app/libraries/main.php:7456 app/libraries/main.php:7476
103
  msgid "Confirmed"
104
  msgstr "Potvrzeno"
105
 
106
  #: app/core/src/Books/Book.php:117 app/features/mec/settings.php:742
107
+ #: app/libraries/main.php:7458 app/libraries/main.php:7480
108
  msgid "Pending"
109
  msgstr "Nevyřízený"
110
 
111
  #: app/core/src/Books/Book.php:186 app/features/ix.php:289
112
  #: app/features/labels.php:119 app/features/labels.php:145
113
+ #: app/libraries/main.php:7505
114
  msgid "Canceled"
115
  msgstr "Zrušená"
116
 
117
  #: app/core/src/Books/Book.php:191 app/features/ix.php:288
118
+ #: app/features/mec/booking.php:1179 app/features/mec/booking.php:1201
119
+ #: app/features/mec/integrations.php:418 app/features/mec/integrations.php:440
120
  #: app/features/mec/modules.php:406 app/features/mec/modules.php:428
121
  #: app/features/mec/notifications.php:1919
122
  #: app/features/mec/notifications.php:1942 app/features/mec/settings.php:1584
123
  #: app/features/mec/settings.php:1606 app/features/mec/single.php:580
124
+ #: app/features/mec/single.php:602 app/libraries/main.php:7504
125
  msgid "Verified"
126
  msgstr "Ověřeno"
127
 
128
+ #: app/core/src/Books/Book.php:197 app/libraries/main.php:7506
129
  msgid "Waiting"
130
  msgstr "Čekající"
131
 
152
  #: app/core/src/Forms/FormFields.php:188 app/core/src/Forms/SettingsForm.php:93
153
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:70
154
  #: app/features/autoemails.php:60 app/features/events.php:602
155
+ #: app/features/events.php:2641 app/features/events.php:2708
156
+ #: app/features/events.php:2797 app/features/events.php:4396
157
  #: app/features/fes.php:259 app/features/fes/form.php:808
158
  #: app/features/login/login.php:5 app/features/mec/booking.php:57
159
+ #: app/features/mec/booking.php:793 app/features/mec/booking.php:891
160
  #: app/features/mec/settings.php:295 app/features/mec/single.php:288
161
  #: app/features/organizers.php:112 app/features/organizers.php:153
162
  #: app/features/profile/profile.php:195 app/features/speakers.php:128
163
  #: app/features/speakers.php:205 app/libraries/main.php:604
164
  #: app/libraries/main.php:2071 app/libraries/main.php:2140
165
+ #: app/libraries/main.php:3702 app/libraries/notifications.php:2069
166
  #: app/modules/booking/steps/form.php:68 app/modules/booking/steps/form.php:217
167
  #: app/skins/single.php:1406 app/skins/single.php:1473
168
  #: app/skins/single/default.php:347 app/skins/single/default.php:593
184
  #: app/core/src/Forms/FormFields.php:341 app/core/src/Forms/FormFields.php:372
185
  #: app/core/src/Forms/FormFields.php:396 app/core/src/Forms/FormFields.php:442
186
  #: app/core/src/Forms/FormFields.php:488 app/core/src/Forms/FormFields.php:544
187
+ #: app/core/src/Forms/FormFields.php:596 app/features/organizers.php:340
188
+ #: app/features/organizers.php:348 app/libraries/main.php:3610
189
  #: app/libraries/main.php:3641 app/libraries/main.php:3671
190
  #: app/libraries/main.php:3701 app/libraries/main.php:3732
191
  #: app/libraries/main.php:3763 app/libraries/main.php:3793
197
  msgstr "Seřadit"
198
 
199
  #: app/core/src/Forms/FormFields.php:52 app/core/src/Forms/SettingsForm.php:88
200
+ #: app/features/events.php:2707 app/features/events.php:2796
201
+ #: app/features/mec/booking.php:792 app/features/mec/booking.php:890
202
  #: app/features/mec/single.php:287 app/libraries/main.php:3611
203
  #: app/libraries/skins.php:1367
204
  msgid "Text"
229
  #: app/core/src/Forms/FormFields.php:505 app/core/src/Forms/FormFields.php:554
230
  #: app/core/src/Forms/FormFields.php:597 app/features/events.php:2105
231
  #: app/features/events.php:2131 app/features/events.php:2344
232
+ #: app/features/events.php:2481 app/features/events.php:2518
233
+ #: app/features/mec/booking.php:610 app/features/mec/booking.php:640
234
+ #: app/features/mec/booking.php:708 app/features/mec/booking.php:740
235
+ #: app/features/organizers.php:340 app/features/organizers.php:349
236
  #: app/libraries/hourlyschedule.php:53 app/libraries/hourlyschedule.php:74
237
  #: app/libraries/hourlyschedule.php:102 app/libraries/hourlyschedule.php:130
238
  #: app/libraries/hourlyschedule.php:154 app/libraries/main.php:3621
275
  msgid "MEC Last Name"
276
  msgstr "MEC Jméno"
277
 
278
+ #: app/core/src/Forms/FormFields.php:93 app/features/events.php:2705
279
+ #: app/features/mec/booking.php:790 app/libraries/main.php:3642
280
  msgid "MEC Name"
281
  msgstr "MEC Jméno"
282
 
283
  #: app/core/src/Forms/FormFields.php:158 app/core/src/Forms/SettingsForm.php:83
284
+ #: app/features/events.php:2706 app/features/mec/booking.php:791
285
  #: app/libraries/main.php:3672
286
  msgid "MEC Email"
287
  msgstr "MEC Email"
292
  msgstr ""
293
 
294
  #: app/core/src/Forms/FormFields.php:250
295
+ #: app/core/src/Forms/SettingsForm.php:108 app/features/events.php:2711
296
+ #: app/features/mec/booking.php:796 app/libraries/main.php:3764
297
  msgid "File"
298
  msgstr "Soubor"
299
 
300
  #: app/core/src/Forms/FormFields.php:280 app/core/src/Forms/SettingsForm.php:98
301
+ #: app/core/src/SingleBuilder/Widgets/EventDate/EventDate.php:47
302
+ #: app/features/events.php:1381 app/features/events.php:2709
303
+ #: app/features/events.php:2798 app/features/fes.php:259
304
+ #: app/features/mec/booking.php:794 app/features/mec/booking.php:892
305
  #: app/features/mec/single.php:290 app/features/profile/profile.php:59
306
  #: app/features/wc.php:84 app/libraries/main.php:3794
307
  #: app/libraries/skins.php:1279 app/modules/booking/steps/tickets.php:136
312
  msgstr "Datum"
313
 
314
  #: app/core/src/Forms/FormFields.php:311
315
+ #: app/core/src/Forms/SettingsForm.php:103 app/features/events.php:2710
316
+ #: app/features/events.php:2799 app/features/mec/booking.php:795
317
+ #: app/features/mec/booking.php:893 app/features/mec/single.php:291
318
  #: app/features/organizers.php:104 app/features/organizers.php:149
319
  #: app/features/speakers.php:120 app/features/speakers.php:201
320
  #: app/features/speakers.php:288 app/libraries/main.php:3825
322
  msgstr "Tel"
323
 
324
  #: app/core/src/Forms/FormFields.php:342
325
+ #: app/core/src/Forms/SettingsForm.php:113 app/features/events.php:2712
326
+ #: app/features/events.php:2800 app/features/mec/booking.php:797
327
+ #: app/features/mec/booking.php:894 app/features/mec/single.php:292
328
  #: app/libraries/main.php:3856
329
  msgid "Textarea"
330
  msgstr "Plocha textu"
331
 
332
  #: app/core/src/Forms/FormFields.php:373
333
+ #: app/core/src/Forms/SettingsForm.php:138 app/features/events.php:2717
334
+ #: app/features/events.php:2805 app/features/mec/booking.php:802
335
+ #: app/features/mec/booking.php:899 app/features/mec/settings.php:351
336
  #: app/features/mec/single.php:293 app/libraries/main.php:3894
337
  msgid "Paragraph"
338
  msgstr "Paragraf"
342
  msgstr "HTML a zkrácené kódy jsou povoleny."
343
 
344
  #: app/core/src/Forms/FormFields.php:397
345
+ #: app/core/src/Forms/SettingsForm.php:118 app/features/events.php:2713
346
+ #: app/features/events.php:2801 app/features/mec/booking.php:127
347
+ #: app/features/mec/booking.php:798 app/features/mec/booking.php:895
348
  #: app/features/mec/single.php:294 app/libraries/main.php:3918
349
  msgid "Checkboxes"
350
  msgstr "Zatržítko"
356
  msgstr "Možnost"
357
 
358
  #: app/core/src/Forms/FormFields.php:443
359
+ #: app/core/src/Forms/SettingsForm.php:123 app/features/events.php:2714
360
+ #: app/features/events.php:2802 app/features/mec/booking.php:799
361
+ #: app/features/mec/booking.php:896 app/features/mec/single.php:295
362
  #: app/libraries/main.php:3966
363
  msgid "Radio Buttons"
364
  msgstr "Přepínače"
365
 
366
  #: app/core/src/Forms/FormFields.php:489
367
+ #: app/core/src/Forms/SettingsForm.php:128 app/features/events.php:2715
368
+ #: app/features/events.php:2803 app/features/mec/booking.php:125
369
+ #: app/features/mec/booking.php:800 app/features/mec/booking.php:897
370
  #: app/features/mec/meta_boxes/search_form.php:67
371
  #: app/features/mec/meta_boxes/search_form.php:75
372
  #: app/features/mec/meta_boxes/search_form.php:83
457
  msgstr ""
458
 
459
  #: app/core/src/Forms/FormFields.php:545
460
+ #: app/core/src/Forms/SettingsForm.php:133 app/features/events.php:2716
461
+ #: app/features/events.php:2804 app/features/mec/booking.php:801
462
+ #: app/features/mec/booking.php:898 app/libraries/main.php:4072
463
  msgid "Agreement"
464
  msgstr "Smlouva"
465
 
490
  msgid "Insert a label for this option"
491
  msgstr "Vložte štítek pro tuto možnost"
492
 
493
+ #: app/core/src/Forms/FormFields.php:606 app/libraries/main.php:8674
494
  msgid "Mapping with Profile Fields"
495
  msgstr ""
496
 
640
  #: app/features/events.php:1834 app/features/events.php:2004
641
  #: app/features/events.php:2019 app/features/events.php:2261
642
  #: app/features/events.php:2274 app/features/events.php:2467
643
+ #: app/features/events.php:2504 app/features/fes/form.php:456
644
  #: app/features/fes/form.php:764 app/features/fes/form.php:887
645
  #: app/features/locations.php:341 app/features/mec/booking.php:109
646
  #: app/features/mec/booking.php:185 app/features/mec/booking.php:198
647
  #: app/features/mec/booking.php:234 app/features/mec/booking.php:299
648
  #: app/features/mec/booking.php:332 app/features/mec/booking.php:345
649
  #: app/features/mec/booking.php:411 app/features/mec/booking.php:462
650
+ #: app/features/mec/booking.php:597 app/features/mec/booking.php:627
651
+ #: app/features/mec/booking.php:693 app/features/mec/booking.php:703
652
+ #: app/features/mec/booking.php:725 app/features/mec/booking.php:735
653
+ #: app/features/mec/booking.php:1000 app/features/mec/booking.php:1028
654
  #: app/features/mec/dashboard.php:73 app/features/mec/integrations.php:52
655
  #: app/features/mec/integrations.php:65 app/features/mec/integrations.php:81
656
  #: app/features/mec/meta_boxes/display_options.php:97
718
  #: app/features/mec/single.php:382 app/features/mec/styling.php:123
719
  #: app/features/mec/styling.php:223 app/features/mec/styling.php:240
720
  #: app/features/mec/styling.php:254 app/features/occurrences.php:472
721
+ #: app/features/occurrences.php:499 app/features/organizers.php:289
722
  #: app/features/popup/event.php:127 app/features/popup/event.php:174
723
  #: app/features/popup/settings.php:78 app/features/popup/settings.php:161
724
  #: app/features/popup/settings.php:182 app/features/popup/settings.php:300
843
  msgstr ""
844
 
845
  #: app/core/src/SingleBuilder/Widgets/EventCategories/EventCategories.php:46
846
+ #: app/features/events.php:218 app/features/events.php:3828
847
  #: app/features/mec/meta_boxes/display_options.php:1651
848
  #: app/features/mec/meta_boxes/search_form.php:64
849
  #: app/features/mec/meta_boxes/search_form.php:152
860
  #: app/features/mec/settings.php:1150 app/features/mec/settings.php:1213
861
  #: app/features/mec/single.php:445 app/features/mec/single.php:498
862
  #: app/features/popup/settings.php:220 app/features/popup/settings.php:259
863
+ #: app/features/search.php:91 app/libraries/main.php:7118
864
+ #: app/libraries/main.php:7179 app/libraries/search.php:256
865
  #: app/libraries/skins.php:1080 app/skins/single.php:1097
866
  #: app/skins/single/default.php:299 app/skins/single/default.php:546
867
  #: app/skins/single/m1.php:229 app/skins/single/m2.php:148
884
  #: app/core/src/SingleBuilder/Widgets/EventCost/EventCost.php:47
885
  #: app/features/events.php:432 app/features/events.php:1277
886
  #: app/features/fes/form.php:864 app/features/mec/settings.php:1147
887
+ #: app/features/occurrences.php:511 app/libraries/main.php:7164
888
+ #: app/libraries/main.php:7211 app/libraries/skins.php:1395
889
  #: app/skins/single.php:1130 app/skins/single/default.php:215
890
  #: app/skins/single/default.php:464 app/skins/single/m1.php:81
891
  #: app/skins/single/modern.php:292
963
  msgstr ""
964
 
965
  #: app/core/src/SingleBuilder/Widgets/EventLabels/EventLabels.php:48
966
+ #: app/features/events.php:4150 app/features/fes/form.php:984
967
  #: app/features/labels.php:61 app/features/labels.php:227
968
  #: app/features/mec.php:494 app/features/mec/meta_boxes/filter.php:72
969
+ #: app/features/mec/meta_boxes/filter.php:135 app/libraries/main.php:7119
970
+ #: app/libraries/main.php:7180 app/skins/single.php:1260
971
  #: app/skins/single/default.php:247 app/skins/single/default.php:493
972
  #: app/skins/single/m1.php:96 app/skins/single/modern.php:307
973
  msgid "Labels"
999
  msgstr "Skrýt místo"
1000
 
1001
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:54
1002
+ #: app/features/events.php:3829 app/features/events.php:4143
1003
  #: app/features/locations.php:58 app/features/locations.php:267
1004
  #: app/features/locations.php:329 app/features/locations.php:331
1005
  #: app/features/locations.php:340
1022
  #: app/features/popup/event.php:117 app/features/popup/event.php:126
1023
  #: app/features/popup/settings.php:228 app/features/popup/settings.php:267
1024
  #: app/features/search.php:97 app/libraries/main.php:2914
1025
+ #: app/libraries/main.php:7122 app/libraries/main.php:7183
1026
  #: app/libraries/search.php:294 app/libraries/skins.php:1135
1027
  #: app/skins/single.php:1024 app/skins/single.php:1532
1028
  #: app/skins/single/default.php:268 app/skins/single/default.php:516
1057
  #: app/core/src/SingleBuilder/Widgets/EventMoreInfo/EventMoreInfo.php:48
1058
  #: app/features/events.php:1510 app/features/events.php:1523
1059
  #: app/features/fes/form.php:834 app/features/occurrences.php:525
1060
+ #: app/libraries/main.php:7162 app/libraries/main.php:7209
1061
  #: app/skins/single.php:1230 app/skins/single/default.php:232
1062
  #: app/skins/single/default.php:478 app/skins/single/m1.php:255
1063
  #: app/skins/single/m2.php:175 app/skins/single/modern.php:209
1106
  msgstr "Skrýt organizátora"
1107
 
1108
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:53
1109
+ #: app/features/events.php:431 app/features/events.php:3830
1110
+ #: app/features/events.php:4145 app/features/events.php:4146
1111
+ #: app/features/events.php:4147
1112
  #: app/features/mec/meta_boxes/display_options.php:1654
1113
  #: app/features/mec/meta_boxes/search_form.php:80
1114
  #: app/features/mec/meta_boxes/search_form.php:168
1126
  #: app/features/mec/single.php:502 app/features/occurrences.php:487
1127
  #: app/features/occurrences.php:489 app/features/occurrences.php:498
1128
  #: app/features/organizers.php:58 app/features/organizers.php:208
1129
+ #: app/features/organizers.php:277 app/features/organizers.php:279
1130
+ #: app/features/organizers.php:288 app/features/popup/event.php:164
1131
  #: app/features/popup/event.php:173 app/features/popup/settings.php:224
1132
  #: app/features/popup/settings.php:263 app/features/search.php:103
1133
+ #: app/libraries/main.php:7124 app/libraries/main.php:7185
1134
  #: app/libraries/search.php:314 app/libraries/skins.php:1164
1135
  #: app/skins/single.php:1388 app/skins/single/default.php:329
1136
  #: app/skins/single/default.php:575 app/skins/single/m1.php:124
1171
  msgstr "Registrační tlačítko"
1172
 
1173
  #: app/core/src/SingleBuilder/Widgets/EventRegisterButton/EventRegisterButton.php:48
1174
+ #: app/libraries/main.php:7158 app/libraries/main.php:7205
1175
  #: app/skins/available_spot/tpl.php:204 app/skins/carousel/render.php:105
1176
  #: app/skins/carousel/render.php:145 app/skins/grid/render.php:94
1177
  #: app/skins/grid/render.php:153 app/skins/grid/render.php:214
1324
  msgstr "Podrobnosti události"
1325
 
1326
  #: app/features/booking/calendar_novel.php:139
1327
+ #: app/features/search_bar/search_result.php:12 app/libraries/main.php:7167
1328
+ #: app/libraries/main.php:7214 app/libraries/notifications.php:1629
1329
  #: app/libraries/render.php:554 app/libraries/render.php:758
1330
  #: app/libraries/render.php:816 app/libraries/render.php:976
1331
  #: app/modules/local-time/details.php:49 app/modules/local-time/type1.php:47
1365
  msgstr "Nastavení"
1366
 
1367
  #: app/features/contextual.php:62 app/features/events.php:1556
1368
+ #: app/features/events.php:2646 app/features/mec/booking.php:755
1369
+ #: app/features/mec/booking.php:1026 app/features/mec/settings.php:1012
1370
  #: app/features/mec/support.php:29
1371
  msgid "Booking Form"
1372
  msgstr "Rezervační formulář"
1395
  "iframe>"
1396
 
1397
  #: app/features/contextual.php:70 app/features/events.php:1564
1398
+ #: app/features/mec/booking.php:967 app/features/mec/support-page.php:115
1399
  #: app/features/mec/support.php:36 app/libraries/main.php:640
1400
  msgid "Payment Gateways"
1401
  msgstr "Platební brány"
1552
  #: app/libraries/main.php:633 app/libraries/main.php:634
1553
  #: app/libraries/main.php:638 app/libraries/main.php:662
1554
  #: app/libraries/main.php:780 app/libraries/main.php:2976
1555
+ #: app/libraries/main.php:7142 app/libraries/main.php:7144
1556
  #: app/modules/booking/steps/checkout.php:146
1557
  msgid "Booking"
1558
  msgstr "Rezervace"
1559
 
1560
  #: app/features/contextual.php:318 app/features/mec/booking.php:552
1561
+ #: app/features/mec/booking.php:983 app/libraries/main.php:635
1562
  msgid "Coupons"
1563
  msgstr "Kupóny"
1564
 
1719
  msgid "No events found in Trash!"
1720
  msgstr "V koši nebyly nalezeny žádné události!"
1721
 
1722
+ #: app/features/events.php:219 app/features/events.php:3784
1723
+ #: app/features/events.php:4151 app/features/fes/form.php:958
1724
  #: app/features/mec.php:493 app/features/mec/meta_boxes/filter.php:69
1725
+ #: app/features/mec/meta_boxes/filter.php:81 app/libraries/main.php:7117
1726
+ #: app/libraries/main.php:7178
1727
  msgid "Categories"
1728
  msgstr "Kategorie"
1729
 
1809
  #: app/features/locations.php:162 app/features/locations.php:214
1810
  #: app/features/locations.php:393 app/features/locations.php:400
1811
  #: app/features/organizers.php:134 app/features/organizers.php:165
1812
+ #: app/features/organizers.php:316 app/features/organizers.php:323
1813
  #: app/features/speakers.php:182 app/features/speakers.php:233
1814
  msgid "Remove image"
1815
  msgstr "Odebrat obrázek"
1872
  msgid "Guest Data"
1873
  msgstr "Údaje hosta"
1874
 
1875
+ #: app/features/events.php:601 app/features/events.php:2632
1876
+ #: app/features/events.php:4393 app/features/fes.php:259
1877
  #: app/features/fes/form.php:812 app/features/labels.php:184
1878
+ #: app/features/mec/booking.php:45 app/features/organizers.php:296
1879
  #: app/features/popup/event.php:183 app/features/profile/profile.php:192
1880
+ #: app/libraries/notifications.php:2068 app/modules/booking/steps/form.php:59
1881
  msgid "Name"
1882
  msgstr "Jméno"
1883
 
1892
  msgstr "Datum a čas"
1893
 
1894
  #: app/features/events.php:618 app/features/events.php:622
1895
+ #: app/features/events.php:3831 app/features/events.php:4138
1896
  #: app/features/fes/form.php:286 app/features/fes/form.php:290
1897
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1507
1898
  #: app/features/mec/meta_boxes/display_options.php:57
1916
  msgstr "Počátečná den"
1917
 
1918
  #: app/features/events.php:637 app/features/events.php:641
1919
+ #: app/features/events.php:3832 app/features/events.php:4140
1920
  #: app/features/fes/form.php:305 app/features/fes/form.php:309
1921
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1508
1922
  #: app/features/mec/meta_boxes/display_options.php:73
1974
  #: app/features/events.php:1753 app/features/events.php:1763
1975
  #: app/features/events.php:1784 app/features/events.php:1804
1976
  #: app/features/events.php:1859 app/features/events.php:2429
1977
+ #: app/features/events.php:2552 app/features/events.php:2663
1978
  #: app/features/fes/form.php:346 app/features/fes/form.php:359
1979
  msgid "Inherit from global options"
1980
  msgstr "Zdědí z globálních možností"
2110
  #: app/features/events.php:868 app/features/events.php:1383
2111
  #: app/features/events.php:2075 app/features/events.php:2157
2112
  #: app/features/events.php:2323 app/features/events.php:2367
2113
+ #: app/features/events.php:2440 app/features/events.php:2557
2114
  #: app/features/fes/form.php:449 app/features/fes/form.php:1056
2115
+ #: app/features/occurrences.php:113 app/features/organizers.php:340
2116
  #: app/libraries/hourlyschedule.php:57 app/libraries/hourlyschedule.php:134
2117
  msgid "Add"
2118
  msgstr "Přidat"
2198
  msgid "Show only one occurrence of this event"
2199
  msgstr "Další výskyt dalších událostí"
2200
 
2201
+ #: app/features/events.php:1270 app/features/events.php:4148
2202
  #: app/features/fes/form.php:861
2203
  #: app/features/mec/meta_boxes/search_form.php:116
2204
  #: app/features/mec/meta_boxes/search_form.php:204
2224
  #: app/features/mec/notifications.php:1625
2225
  #: app/features/mec/notifications.php:1775 app/features/mec/settings.php:854
2226
  #: app/features/notifications.php:160 app/features/occurrences.php:508
2227
+ #: app/libraries/main.php:7163 app/libraries/main.php:7210
2228
  #: app/widgets/single.php:100
2229
  msgid "Event Cost"
2230
  msgstr "Cena události"
2319
 
2320
  #: app/features/events.php:1492 app/features/events.php:1500
2321
  #: app/features/fes/form.php:829 app/features/mec/settings.php:1148
2322
+ #: app/features/occurrences.php:520 app/libraries/main.php:7161
2323
+ #: app/libraries/main.php:7208
2324
  msgid "Event Link"
2325
  msgstr "Odkaz na událost"
2326
 
2386
  msgstr "Celkové limity rezervace uživatelů"
2387
 
2388
  #: app/features/events.php:1549 app/features/events.php:1915
2389
+ #: app/libraries/book.php:170 app/libraries/main.php:7152
2390
  #: app/modules/booking/steps/tickets.php:168
2391
  #: app/modules/booking/steps/tickets.php:174
2392
  msgid "Tickets"
2396
  msgid "Fees"
2397
  msgstr "Poplatky"
2398
 
2399
+ #: app/features/events.php:1554 app/features/events.php:2547
2400
  #: app/features/mec/settings.php:1024
2401
  msgid "Ticket Variations / Options"
2402
  msgstr "Varianty vstupenky / možnosti"
2403
 
2404
+ #: app/features/events.php:1558 app/features/mec/booking.php:1057
2405
  #: app/features/mec/support-page.php:118
2406
  msgid "Organizer Payment"
2407
  msgstr "Platba organizátora"
2408
 
2409
  #: app/features/events.php:1566 app/features/ix/export.php:58
2410
+ #: app/libraries/main.php:7145
2411
  msgid "Bookings"
2412
  msgstr "Rezervace"
2413
 
2522
  #: app/features/events.php:1754 app/features/events.php:1764
2523
  #: app/features/mec/booking.php:210 app/features/mec/booking.php:277
2524
  #: app/features/mec/booking.php:292 app/features/mec/booking.php:374
2525
+ #: app/features/mec/booking.php:994 app/features/mec/booking.php:1021
2526
  #: app/features/mec/meta_boxes/search_form.php:66
2527
  #: app/features/mec/meta_boxes/search_form.php:74
2528
  #: app/features/mec/meta_boxes/search_form.php:82
2660
 
2661
  #: app/features/events.php:1755 app/features/events.php:1765
2662
  #: app/features/mec/booking.php:209 app/features/mec/booking.php:276
2663
+ #: app/features/mec/booking.php:293 app/features/mec/booking.php:993
2664
+ #: app/features/mec/booking.php:1022 app/features/mec/modules.php:155
2665
  #: app/features/mec/settings.php:99 app/features/popup/settings.php:357
2666
  msgid "Enabled"
2667
  msgstr "Povoleno"
2758
  msgstr "Vstupenka"
2759
 
2760
  #: app/features/events.php:1935 app/features/events.php:2201
2761
+ #: app/features/events.php:4135 app/features/fes.php:259
2762
  #: app/features/labels.php:183 app/features/locations.php:266
2763
  #: app/features/organizers.php:207 app/features/speakers.php:285
2764
  msgid "ID"
2769
  msgstr "Název vstupenky"
2770
 
2771
  #: app/features/events.php:1947 app/features/events.php:2209
2772
+ #: app/features/events.php:4139 app/libraries/skins.php:1360
2773
  msgid "Start Time"
2774
  msgstr "Začátek"
2775
 
2776
  #: app/features/events.php:1960 app/features/events.php:2222
2777
+ #: app/features/events.php:4141 app/libraries/skins.php:1361
2778
  msgid "End Time"
2779
  msgstr "Konec"
2780
 
2781
  #: app/features/events.php:1978 app/features/events.php:2237
2782
+ #: app/features/events.php:4137 app/libraries/hourlyschedule.php:72
2783
  #: app/libraries/hourlyschedule.php:100 app/libraries/hourlyschedule.php:152
2784
  msgid "Description"
2785
  msgstr "Popis"
2802
  #: app/features/events.php:1997 app/features/events.php:2001
2803
  #: app/features/events.php:2099 app/features/events.php:2126
2804
  #: app/features/events.php:2255 app/features/events.php:2258
2805
+ #: app/features/events.php:2340 app/features/events.php:4692
2806
+ #: app/features/mec/booking.php:689 app/features/mec/booking.php:692
2807
+ #: app/features/mec/booking.php:721 app/features/mec/booking.php:724
2808
  #: app/libraries/ticketVariations.php:43 app/libraries/ticketVariations.php:46
2809
  #: app/modules/booking/steps/checkout.php:63
2810
  msgid "Price"
2906
  msgid "Inherit from event options"
2907
  msgstr "Zdědí z globálních možností"
2908
 
2909
+ #: app/features/events.php:2454 app/features/events.php:2493
2910
+ #: app/features/mec/booking.php:589 app/features/mec/booking.php:619
2911
  msgid "Fee Title"
2912
  msgstr "Název poplatku"
2913
 
2914
  #: app/features/events.php:2460 app/features/events.php:2464
2915
+ #: app/features/events.php:2498 app/features/events.php:2501
2916
  #: app/features/mec/booking.php:593 app/features/mec/booking.php:596
2917
+ #: app/features/mec/booking.php:623 app/features/mec/booking.php:626
2918
  msgid "Amount"
2919
  msgstr "Množství"
2920
 
2921
+ #: app/features/events.php:2465 app/features/events.php:2502
2922
+ #: app/features/mec/booking.php:597 app/features/mec/booking.php:627
2923
  msgid ""
2924
  "Fee amount, considered as fixed amount if you set the type to amount "
2925
  "otherwise considered as percentage"
2927
  "Výše poplatku, je považovaná za pevnou částku, pokud nastavíte typ na částku "
2928
  "odpovídající procentuální hodnotě"
2929
 
2930
+ #: app/features/events.php:2474 app/features/events.php:2511
2931
+ #: app/features/mec/booking.php:604 app/features/mec/booking.php:634
2932
  msgid "Percent"
2933
  msgstr "Procent"
2934
 
2935
+ #: app/features/events.php:2475 app/features/events.php:2512
2936
+ #: app/features/mec/booking.php:605 app/features/mec/booking.php:635
2937
  msgid "Amount (Per Ticket)"
2938
  msgstr "Částka (za vstupenku)"
2939
 
2940
+ #: app/features/events.php:2476 app/features/events.php:2513
2941
+ #: app/features/mec/booking.php:606 app/features/mec/booking.php:636
2942
+ #, fuzzy
2943
+ #| msgid "Amount (Per Ticket)"
2944
+ msgid "Amount (Per Date)"
2945
+ msgstr "Částka (za vstupenku)"
2946
+
2947
+ #: app/features/events.php:2477 app/features/events.php:2514
2948
+ #: app/features/mec/booking.php:607 app/features/mec/booking.php:637
2949
  msgid "Amount (Per Booking)"
2950
  msgstr "Částka (za rezervaci)"
2951
 
2952
+ #: app/features/events.php:2649
2953
  #, fuzzy
2954
  #| msgid ""
2955
  #| "You're translating an event so MEC will use the original event for "
2965
  "vstupenek a rezervace. Můžete přeložit pouze název a popis vstupenky. Prosím "
2966
  "definujte určité vstupenky, které jste definovali v původní události."
2967
 
2968
+ #: app/features/events.php:2675 app/features/mec/booking.php:757
2969
  #, fuzzy
2970
  #| msgid "Attendees Limit"
2971
  msgid "Per Attendee Fields"
2972
  msgstr "Limit účastníků"
2973
 
2974
+ #: app/features/events.php:2766 app/features/mec/booking.php:855
2975
  #, fuzzy
2976
  #| msgid "Required Field"
2977
  msgid "Fixed Fields"
2978
  msgstr "Požadovaná pole"
2979
 
2980
+ #: app/features/events.php:2878 app/features/events.php:4686
2981
  #: app/features/mec/settings.php:1030 app/features/profile/profile.php:65
2982
  #: app/libraries/main.php:3002
2983
  msgid "Attendees"
2984
  msgstr "Účastníci"
2985
 
2986
+ #: app/features/events.php:2881 app/features/occurrences.php:104
2987
  #, fuzzy
2988
  #| msgid "Next Occurrence"
2989
  msgid "Occurrence"
2990
  msgstr "Další výskyt"
2991
 
2992
+ #: app/features/events.php:2882 app/features/mec.php:1713
2993
  #: app/features/occurrences.php:105
2994
  #, fuzzy
2995
  #| msgid "Next Occurrence"
2996
  msgid "Previous Occurrences"
2997
  msgstr "Další výskyt"
2998
 
2999
+ #: app/features/events.php:2887 app/features/mec.php:1723
3000
  #: app/features/occurrences.php:110 app/modules/next-event/multiple.php:52
3001
  #, fuzzy
3002
  #| msgid "Next Occurrence"
3003
  msgid "Next Occurrences"
3004
  msgstr "Další výskyt"
3005
 
3006
+ #: app/features/events.php:3709 app/features/mec/meta_boxes/filter.php:199
3007
  #: app/features/mec/settings.php:517
3008
  msgid "Expired Events"
3009
  msgstr "Události vypršely"
3010
 
3011
+ #: app/features/events.php:3710 app/features/mec.php:1317
3012
  #: app/features/mec/dashboard.php:299 app/features/mec/settings.php:516
3013
  msgid "Upcoming Events"
3014
  msgstr "Nadcházející události"
3015
 
3016
+ #: app/features/events.php:3730 app/features/events.php:3748
3017
+ #: app/features/events.php:3766 app/features/events.php:3784
3018
  #, php-format
3019
  msgid "Show all %s"
3020
  msgstr "Ukázat všechny %s"
3021
 
3022
+ #: app/features/events.php:3730
3023
  msgid "labels"
3024
  msgstr "štítky"
3025
 
3026
+ #: app/features/events.php:3748
3027
  msgid "locations"
3028
  msgstr "umístění"
3029
 
3030
+ #: app/features/events.php:3766
3031
  msgid "organizers"
3032
  msgstr "organizátoři"
3033
 
3034
+ #: app/features/events.php:3800
3035
  #, fuzzy
3036
  #| msgid "Attendees Limit"
3037
  msgid "Attendees List"
3038
  msgstr "Limit účastníků"
3039
 
3040
+ #: app/features/events.php:3827 app/features/events.php:4136
3041
+ #: app/features/events.php:4683 app/features/fes/form.php:260
3042
+ #: app/features/mec/booking.php:685 app/features/mec/booking.php:717
3043
  #: app/features/mec/styling.php:134 app/libraries/hourlyschedule.php:49
3044
  #: app/libraries/hourlyschedule.php:65 app/libraries/hourlyschedule.php:93
3045
  #: app/libraries/hourlyschedule.php:125 app/libraries/hourlyschedule.php:145
3047
  msgid "Title"
3048
  msgstr "Název"
3049
 
3050
+ #: app/features/events.php:3835
3051
  #, fuzzy
3052
  #| msgid "Tickets"
3053
  msgid "Sold Tickets"
3054
  msgstr "Vstupenky"
3055
 
3056
+ #: app/features/events.php:3837
3057
  msgid "Repeat"
3058
  msgstr "Opakovat"
3059
 
3060
+ #: app/features/events.php:4006 app/features/events.php:4007
3061
  #, fuzzy
3062
  #| msgid "iCal Export"
3063
  msgid "iCal / Outlook Export"
3064
  msgstr "iCal Export"
3065
 
3066
+ #: app/features/events.php:4009 app/features/events.php:4010
3067
  msgid "CSV Export"
3068
  msgstr "CSV Export"
3069
 
3070
+ #: app/features/events.php:4012 app/features/events.php:4013
3071
  msgid "MS Excel Export"
3072
  msgstr "MS Excel Export"
3073
 
3074
+ #: app/features/events.php:4015 app/features/events.php:4016
3075
  msgid "XML Export"
3076
  msgstr "XML Export"
3077
 
3078
+ #: app/features/events.php:4018 app/features/events.php:4019
3079
  msgid "JSON Export"
3080
  msgstr "JSON Export"
3081
 
3082
+ #: app/features/events.php:4021 app/features/events.php:4022
3083
+ #: app/features/events.php:4248
3084
  msgid "Duplicate"
3085
  msgstr "Duplikát"
3086
 
3087
+ #: app/features/events.php:4142
3088
  msgid "Link"
3089
  msgstr "Odkaz"
3090
 
3091
+ #: app/features/events.php:4144 app/features/locations.php:111
3092
  #: app/features/locations.php:181 app/features/locations.php:268
3093
  #: app/features/mec/meta_boxes/search_form.php:108
3094
  #: app/features/mec/meta_boxes/search_form.php:196
3106
  msgid "Address"
3107
  msgstr "Adresa"
3108
 
3109
+ #: app/features/events.php:4146
3110
  #, php-format
3111
  msgid "%s Tel"
3112
  msgstr "%s Tel"
3113
 
3114
+ #: app/features/events.php:4147
3115
  #, php-format
3116
  msgid "%s Email"
3117
  msgstr "%s Email"
3118
 
3119
  # v kontextu
3120
+ #: app/features/events.php:4149 app/features/fes/form.php:937
3121
  #: app/features/mec/settings.php:860
3122
  msgid "Featured Image"
3123
  msgstr "Hlavní obrázek"
3124
 
3125
+ #: app/features/events.php:4152 app/features/fes/form.php:1030
3126
  #: app/features/mec.php:492 app/features/mec/meta_boxes/filter.php:73
3127
  #: app/features/mec/meta_boxes/filter.php:153 app/features/tag.php:59
3128
  msgid "Tags"
3129
  msgstr "Tagy"
3130
 
3131
+ #: app/features/events.php:4156 app/features/fes/form.php:1052
3132
  #: app/features/mec.php:501 app/features/mec/modules.php:34
3133
  #: app/features/mec/modules.php:43 app/features/mec/settings.php:931
3134
  #: app/features/popup/settings.php:299 app/features/speakers.php:61
3135
  #: app/libraries/hourlyschedule.php:77 app/libraries/hourlyschedule.php:105
3136
  #: app/libraries/hourlyschedule.php:157 app/libraries/main.php:644
3137
+ #: app/libraries/main.php:7125 app/libraries/main.php:7186
3138
  #: app/modules/speakers/details.php:18
3139
  msgid "Speakers"
3140
  msgstr "Řečníci"
3141
 
3142
+ #: app/features/events.php:4399 app/features/fes.php:259
3143
  #: app/features/profile/profile.php:198 app/libraries/main.php:3018
3144
+ #: app/libraries/main.php:7151
3145
  msgid "Ticket"
3146
  msgstr "Vstupenka"
3147
 
3148
+ #: app/features/events.php:4402 app/features/profile/profile.php:201
3149
  msgid "Variations"
3150
  msgstr "Variace"
3151
 
3152
+ #: app/features/events.php:4417 app/features/fes.php:335
3153
  msgid "Unknown"
3154
  msgstr "Neznámý"
3155
 
3156
+ #: app/features/events.php:4445
3157
  msgid ""
3158
  "If you want to send an email, first select your attendees and then click in "
3159
  "the button below, please."
3160
  msgstr ""
3161
 
3162
+ #: app/features/events.php:4445 app/features/mec/report.php:57
3163
  #, fuzzy
3164
  #| msgid "Organizer Email"
3165
  msgid "Send Email"
3166
  msgstr "Organizátor Email"
3167
 
3168
+ #: app/features/events.php:4449
3169
  #, fuzzy
3170
  #| msgid "Attendees Form"
3171
  msgid "No Attendees Found!"
3172
  msgstr "Formulář účastníků"
3173
 
3174
+ #: app/features/events.php:4689 app/features/fes.php:259
3175
  #: app/features/mec/booking.php:351 app/features/wc.php:86
3176
  #: app/libraries/main.php:2966 app/libraries/main.php:3081
3177
  msgid "Transaction ID"
3178
  msgstr "ID transakce"
3179
 
3180
+ #: app/features/events.php:4747
3181
  #, fuzzy
3182
  #| msgid "No bookings found!"
3183
  msgid "No Bookings Found!"
3396
  msgid "eg. yourname@gmail.com"
3397
  msgstr "např. vasejmeno@gmail.com"
3398
 
3399
+ #: app/features/fes/form.php:813 app/features/organizers.php:297
3400
  #: app/features/popup/event.php:184
3401
  msgid "eg. John Smith"
3402
  msgstr "např. Jan Novák"
3836
  msgid "Add to Google Calendar"
3837
  msgstr "Přidat do Google kalendáře"
3838
 
3839
+ #: app/features/ix/export_g_calendar.php:100 app/features/mec/booking.php:1181
3840
+ #: app/features/mec/integrations.php:420 app/features/mec/modules.php:408
3841
  #: app/features/mec/notifications.php:1921 app/features/mec/settings.php:1586
3842
  #: app/features/mec/single.php:582
3843
  msgid "Checking ..."
3890
  #: app/features/ix/import.php:58 app/features/ix/import.php:88
3891
  #: app/features/mec/booking.php:91 app/features/mec/booking.php:539
3892
  #: app/features/mec/booking.php:555 app/features/mec/booking.php:573
3893
+ #: app/features/mec/booking.php:669
3894
  #: app/features/mec/meta_boxes/display_options.php:244
3895
  #: app/features/mec/meta_boxes/display_options.php:522
3896
  #: app/features/mec/modules.php:60 app/features/mec/modules.php:217
3902
  #: app/features/ix/import.php:58 app/features/ix/import.php:88
3903
  #: app/features/ix/sync.php:22 app/features/mec/booking.php:91
3904
  #: app/features/mec/booking.php:539 app/features/mec/booking.php:555
3905
+ #: app/features/mec/booking.php:573 app/features/mec/booking.php:669
3906
  #: app/features/mec/meta_boxes/display_options.php:244
3907
  #: app/features/mec/meta_boxes/display_options.php:522
3908
  #: app/features/mec/meta_boxes/display_options.php:564
4350
 
4351
  #: app/features/locations.php:59 app/features/mec.php:495
4352
  #: app/features/mec/dashboard.php:281 app/features/mec/meta_boxes/filter.php:70
4353
+ #: app/features/mec/meta_boxes/filter.php:99 app/libraries/main.php:7121
4354
+ #: app/libraries/main.php:7182
4355
  msgid "Locations"
4356
  msgstr "Umístění"
4357
 
4401
  msgstr "Náhled"
4402
 
4403
  #: app/features/locations.php:329 app/features/occurrences.php:460
4404
+ #: app/features/occurrences.php:487 app/features/organizers.php:277
4405
  #, php-format
4406
  msgid "Event Main %s"
4407
  msgstr "Hlavní událost %s"
4458
  msgid "Get Latitude and Longitude"
4459
  msgstr "Získejte šířku a délku"
4460
 
4461
+ #: app/features/locations.php:392 app/features/organizers.php:315
4462
  #: app/features/popup/event.php:203
4463
  msgid "Choose image"
4464
  msgstr "Vyberte obrázek"
4468
  msgid "Don't show map in single event page"
4469
  msgstr "Nezobrazovat mapu na jednostránkové události"
4470
 
4471
+ #: app/features/locations.php:409 app/libraries/main.php:7166
4472
+ #: app/libraries/main.php:7213
4473
  msgid "Other Locations"
4474
  msgstr "Další místa"
4475
 
4557
  #: app/features/mec.php:496 app/features/mec/dashboard.php:288
4558
  #: app/features/mec/meta_boxes/filter.php:71
4559
  #: app/features/mec/meta_boxes/filter.php:117 app/features/organizers.php:59
4560
+ #: app/libraries/main.php:7123 app/libraries/main.php:7184
4561
  msgid "Organizers"
4562
  msgstr "Organizátoři"
4563
 
4748
  msgid "Line"
4749
  msgstr "Čára"
4750
 
4751
+ #: app/features/mec.php:1518 app/skins/general_calendar/tpl.php:145
4752
  msgid "Filter"
4753
  msgstr "Filtr"
4754
 
4801
  msgid "Search..."
4802
  msgstr "Vyhledávání ..."
4803
 
4804
+ #: app/features/mec/booking.php:72 app/features/mec/booking.php:905
4805
+ #: app/features/mec/booking.php:1097 app/features/mec/booking.php:1106
4806
+ #: app/features/mec/booking.php:1116 app/features/mec/booking.php:1198
4807
+ #: app/features/mec/booking.php:1212 app/features/mec/integrations.php:19
4808
+ #: app/features/mec/integrations.php:369 app/features/mec/integrations.php:379
4809
+ #: app/features/mec/integrations.php:437 app/features/mec/integrations.php:451
4810
  #: app/features/mec/messages.php:20 app/features/mec/messages.php:60
4811
  #: app/features/mec/messages.php:70 app/features/mec/messages.php:108
4812
  #: app/features/mec/messages.php:118 app/features/mec/modules.php:17
5263
  "Po povolení a uložení nastavení byste měli stránku znovu načíst a zobrazit "
5264
  "novou nabídku na řídícím panelu > Rezervace"
5265
 
5266
+ #: app/features/mec/booking.php:570 app/features/mec/booking.php:985
5267
  #: app/libraries/main.php:636
5268
  msgid "Taxes / Fees"
5269
  msgstr "Daně / poplatky"
5276
  msgid "Add Fee"
5277
  msgstr "Přidat poplatek"
5278
 
5279
+ #: app/features/mec/booking.php:647
5280
  #, fuzzy
5281
  #| msgid "Payment Gateways"
5282
  msgid "Disable Fees per Gateways"
5283
  msgstr "Platební brány"
5284
 
5285
+ #: app/features/mec/booking.php:666 app/libraries/main.php:637
5286
  msgid "Ticket Variations & Options"
5287
  msgstr "Varianty a možnosti vstupenek"
5288
 
5289
+ #: app/features/mec/booking.php:674
5290
  #, fuzzy
5291
  #| msgid "Enable ticket options module"
5292
  msgid "Enable ticket variations module"
5293
  msgstr "Povolit modul možností vstupenek"
5294
 
5295
+ #: app/features/mec/booking.php:679
5296
  msgid "Add Variation / Option"
5297
  msgstr "Přidat varianty / možnosti"
5298
 
5299
+ #: app/features/mec/booking.php:693 app/features/mec/booking.php:725
5300
  #: app/libraries/ticketVariations.php:49
5301
  msgid "Option Price"
5302
  msgstr "Možnosti ceny"
5303
 
5304
+ #: app/features/mec/booking.php:699 app/features/mec/booking.php:702
5305
+ #: app/features/mec/booking.php:731 app/features/mec/booking.php:734
5306
  #: app/libraries/ticketVariations.php:58 app/libraries/ticketVariations.php:61
5307
  msgid "Maximum Per Ticket"
5308
  msgstr "Maximum na jednu vstupenku"
5309
 
5310
+ #: app/features/mec/booking.php:703 app/features/mec/booking.php:735
5311
  #: app/libraries/ticketVariations.php:64
5312
  #, fuzzy
5313
  #| msgid "Maximum Per Ticket. Leave it blank for unlimited."
5314
  msgid "Maximum Per Ticket. Leave blank for unlimited."
5315
  msgstr "Maximum na jednu vstupenku. Ponechte to prázdné pro neomezené."
5316
 
5317
+ #: app/features/mec/booking.php:748
5318
  #, fuzzy
5319
  #| msgid "Enable cancellation notification"
5320
  msgid "Enable variations per ticket"
5321
  msgstr "Povolit oznámení o zrušení"
5322
 
5323
+ #: app/features/mec/booking.php:949 app/libraries/main.php:639
5324
  msgid "Upload Field"
5325
  msgstr "Nahrát pole"
5326
 
5327
+ #: app/features/mec/booking.php:951
5328
  msgid "Mime types"
5329
  msgstr "MIME typy"
5330
 
5331
+ #: app/features/mec/booking.php:955
5332
  msgid "Split mime types with \",\"."
5333
  msgstr "Rozdělte typy MIME pomocí “,“."
5334
 
5335
+ #: app/features/mec/booking.php:955
5336
  msgid "Default: jpeg,jpg,png,pdf"
5337
  msgstr "Výchozí: jpeg,jpg,png,pdf"
5338
 
5339
+ #: app/features/mec/booking.php:958
5340
  msgid "Maximum file size"
5341
  msgstr "Maximální velikost souboru"
5342
 
5343
+ #: app/features/mec/booking.php:962
5344
  msgid "The unit is Megabyte \"MB\""
5345
  msgstr "Jednotkou je Megabyte \"MB\""
5346
 
5347
+ #: app/features/mec/booking.php:975
5348
  msgid "Use WooCommerce as Payment System"
5349
  msgstr ""
5350
 
5351
+ #: app/features/mec/booking.php:977
5352
  msgid ""
5353
  "By enabling this feature, tickets will be added to WooCommerce cart and all "
5354
  "payment process would be done by WooCommerce so all of MEC payment related "
5356
  "fields etc, you need to configure WooCommerce on your website."
5357
  msgstr ""
5358
 
5359
+ #: app/features/mec/booking.php:979
5360
  msgid ""
5361
  "You cannot use following MEC features so you should use WooCommerc and its "
5362
  "addons if you need them."
5363
  msgstr ""
5364
 
5365
+ #: app/features/mec/booking.php:981
5366
  #, fuzzy
5367
  #| msgid "Payment Gateways"
5368
  msgid "Payment gateways"
5369
  msgstr "Platební brány"
5370
 
5371
+ #: app/features/mec/booking.php:982
5372
  #, fuzzy
5373
  #| msgid "Price per Date"
5374
  msgid "Price per dates of tickets"
5375
  msgstr "Cena za datum"
5376
 
5377
+ #: app/features/mec/booking.php:984
5378
  #, fuzzy
5379
  #| msgid "Ticket Variations / Options"
5380
  msgid "Ticket variations"
5381
  msgstr "Varianty vstupenky / možnosti"
5382
 
5383
+ #: app/features/mec/booking.php:986
5384
  #, fuzzy
5385
  #| msgid "Discount"
5386
  msgid "Discount Per Roles"
5387
  msgstr "Sleva"
5388
 
5389
+ #: app/features/mec/booking.php:990
5390
  msgid "Automatically complete WooCommerce orders"
5391
  msgstr ""
5392
 
5393
+ #: app/features/mec/booking.php:998
5394
  #, fuzzy
5395
  #| msgid "WooCommerce gateways"
5396
  msgid "Auto WooCommerce orders"
5397
  msgstr "Brána WooCommerce"
5398
 
5399
+ #: app/features/mec/booking.php:999
5400
  msgid "It applies only to the orders that are related to MEC."
5401
  msgstr ""
5402
 
5403
+ #: app/features/mec/booking.php:1007
5404
  msgid "After Add to Cart"
5405
  msgstr ""
5406
 
5407
+ #: app/features/mec/booking.php:1010
5408
  #, fuzzy
5409
  #| msgid "Get Directions"
5410
  msgid "Redirect to Cart"
5411
  msgstr "Získat směr"
5412
 
5413
+ #: app/features/mec/booking.php:1011
5414
  #, fuzzy
5415
  #| msgid "Get Directions"
5416
  msgid "Redirect to Checkout"
5417
  msgstr "Získat směr"
5418
 
5419
+ #: app/features/mec/booking.php:1012
5420
  #, fuzzy
5421
  #| msgid "View Detail Button"
5422
  msgid "Optional View Cart Button"
5423
  msgstr "Tlačítko Zobrazit detail"
5424
 
5425
+ #: app/features/mec/booking.php:1013
5426
  msgid "Optional Checkout Button"
5427
  msgstr ""
5428
 
5429
+ #: app/features/mec/booking.php:1018
5430
  #, fuzzy
5431
  #| msgid "Booking Form"
5432
  msgid "MEC Booking Form"
5433
  msgstr "Rezervační formulář"
5434
 
5435
+ #: app/features/mec/booking.php:1027
5436
  msgid ""
5437
  "If enabled then users should fill the booking form in MEC and then they will "
5438
  "be redirected to checkout."
5439
  msgstr ""
5440
 
5441
+ #: app/features/mec/booking.php:1053
5442
  msgid "Enable Organizer Payment Module"
5443
  msgstr "Povolit platební modul organizátora"
5444
 
5445
+ #: app/features/mec/booking.php:1058
5446
  msgid ""
5447
  "By enabling this module, organizers are able to insert their own payment "
5448
  "credentials for enabled gateways per event and receive the payments directly!"
5450
  "Po aktivaci tohoto modulu mohou organizátoři vkládat své vlastní platební "
5451
  "údaje pro povolené brány pro události a přijímat platby přímo!"
5452
 
5453
+ #: app/features/mec/booking.php:1068
5454
  msgid "Disable / Enable payment gateways per event"
5455
  msgstr ""
5456
 
5457
+ #: app/features/mec/booking.php:1072
5458
  #, fuzzy
5459
  #| msgid "Payment Gateways"
5460
  msgid "Payment Gateways Per Event"
5461
  msgstr "Platební brány"
5462
 
5463
+ #: app/features/mec/booking.php:1073
5464
  #, fuzzy
5465
  #| msgid ""
5466
  #| "By enabling this module, organizers are able to insert their own payment "
5473
  "Po aktivaci tohoto modulu mohou organizátoři vkládat své vlastní platební "
5474
  "údaje pro povolené brány pro události a přijímat platby přímo!"
5475
 
5476
+ #: app/features/mec/booking.php:1083
5477
  msgid "Automatically refund the payment"
5478
  msgstr ""
5479
 
5480
+ #: app/features/mec/booking.php:1087
5481
  msgid "Auto Refund"
5482
  msgstr ""
5483
 
5484
+ #: app/features/mec/booking.php:1088
5485
  msgid ""
5486
  "Automatically refund the payment when a booking paid by applicable gateways "
5487
  "(Stripe) got canceled."
5488
  msgstr ""
5489
 
5490
+ #: app/features/mec/booking.php:1176 app/features/mec/integrations.php:415
5491
  #: app/features/mec/messages.php:90 app/features/mec/modules.php:403
5492
  #: app/features/mec/notifications.php:1916 app/features/mec/settings.php:1581
5493
  #: app/features/mec/single.php:577 app/features/mec/styles.php:62
5495
  msgid "Saved"
5496
  msgstr "Uloženo"
5497
 
5498
+ #: app/features/mec/booking.php:1177 app/features/mec/integrations.php:416
5499
  #: app/features/mec/messages.php:91 app/features/mec/modules.php:404
5500
  #: app/features/mec/notifications.php:1917 app/features/mec/settings.php:1582
5501
  #: app/features/mec/single.php:578 app/features/mec/styles.php:63
5503
  msgid "Settings Saved!"
5504
  msgstr "Nastavení uložena!"
5505
 
5506
+ #: app/features/mec/booking.php:1203 app/features/mec/integrations.php:442
5507
  #: app/features/mec/modules.php:430 app/features/mec/notifications.php:1944
5508
  #: app/features/mec/settings.php:1608 app/features/mec/single.php:604
5509
  msgid "Please Refresh Page"
5844
  msgid "Enable BuddyPress Integration"
5845
  msgstr "Povolit integraci BuddyPress"
5846
 
5847
+ #: app/features/mec/integrations.php:319
 
 
 
 
 
 
 
 
 
 
 
 
5848
  msgid "Show \"Attendees Module\" in event details page"
5849
  msgstr "Zobrazit \"Účastnický modul\" na stránce s podrobnostmi o události"
5850
 
5851
+ #: app/features/mec/integrations.php:323
5852
  #, fuzzy
5853
  #| msgid "Attendees Limit"
5854
  msgid "Attendee Limit"
5855
  msgstr "Limit účastníků"
5856
 
5857
+ #: app/features/mec/integrations.php:331
5858
  msgid "Add booking activity to user profile"
5859
  msgstr "Přidejte do uživatelského profilu rezervační aktivitu"
5860
 
5861
+ #: app/features/mec/integrations.php:337
5862
  #, fuzzy
5863
  #| msgid "Add booking activity to user profile"
5864
  msgid "Add events menu to user profile"
5865
  msgstr "Přidejte do uživatelského profilu rezervační aktivitu"
5866
 
5867
+ #: app/features/mec/integrations.php:343 app/libraries/main.php:617
 
 
 
 
 
 
 
 
 
 
 
 
5868
  #, fuzzy
5869
  #| msgid "No Search Options"
5870
  msgid "LearnDash"
5871
  msgstr "Žádné možnosti vyhledávání"
5872
 
5873
+ #: app/features/mec/integrations.php:347
5874
  #, fuzzy
5875
  #| msgid "Enable Mailchimp Integration"
5876
  msgid "Enable LearnDash Integration"
5877
  msgstr "Povolit integraci Mailchimp"
5878
 
5879
+ #: app/features/mec/integrations.php:350
5880
  #, fuzzy
5881
  #| msgid "Third Party plugin is not installed and activated!"
5882
  msgid "LearnDash plugin should be installed and activated."
5883
  msgstr "Plugin třetích stran není nainstalován a aktivován!"
5884
 
5885
+ #: app/features/mec/integrations.php:353 app/libraries/main.php:618
5886
  #, fuzzy
5887
  #| msgid "Mailchimp Integration"
5888
  msgid "PaidMembership Pro"
5889
  msgstr "Integrace Mailchimp"
5890
 
5891
+ #: app/features/mec/integrations.php:357
5892
  #, fuzzy
5893
  #| msgid "Enable Mailchimp Integration"
5894
  msgid "Enable PaidMembership Pro Integration"
5895
  msgstr "Povolit integraci Mailchimp"
5896
 
5897
+ #: app/features/mec/integrations.php:360
5898
  #, fuzzy
5899
  #| msgid "Third Party plugin is not installed and activated!"
5900
  msgid "PaidMembership Pro plugin should be installed and activated."
7148
  #: app/features/mec/single.php:511 app/features/popup/settings.php:233
7149
  #: app/features/popup/settings.php:272 app/features/search.php:109
7150
  #: app/features/speakers.php:60 app/features/speakers.php:286
7151
+ #: app/libraries/main.php:7126 app/libraries/main.php:7187
7152
  #: app/libraries/search.php:334 app/libraries/skins.php:1193
7153
  #: app/modules/speakers/details.php:18
7154
  msgid "Speaker"
8442
  msgstr "Zašle správci informaci o přijetí nové rezervace."
8443
 
8444
  #: app/features/mec/notifications.php:1230 app/features/notifications.php:120
8445
+ #: app/libraries/main.php:667 app/libraries/notifications.php:833
8446
  msgid "Booking Reminder"
8447
  msgstr "Připomenutí rezervace"
8448
 
8472
  msgid "only once per hour"
8473
  msgstr "pouze jednou denně"
8474
 
8475
+ #: app/features/mec/notifications.php:1312 app/libraries/main.php:8357
8476
+ #: app/libraries/main.php:8374
8477
  #, fuzzy
8478
  #| msgid "hours"
8479
  msgid "Hours"
8810
  msgstr "Můžete povolit nebo zakázat skripty schématu"
8811
 
8812
  #: app/features/mec/settings.php:137 app/features/mec/settings.php:148
8813
+ #: app/features/popup/settings.php:41 app/libraries/main.php:7130
8814
+ #: app/libraries/main.php:7191
8815
  msgid "Weekdays"
8816
  msgstr "Pracovní dny"
8817
 
9296
  msgstr "Zobrazit cenu události"
9297
 
9298
  #: app/features/mec/settings.php:751 app/features/mec/settings.php:917
9299
+ #: app/libraries/notifications.php:2088
9300
  msgid "No"
9301
  msgstr "Ne"
9302
 
9303
  #: app/features/mec/settings.php:752 app/features/mec/settings.php:916
9304
+ #: app/libraries/notifications.php:2088
9305
  msgid "Yes"
9306
  msgstr "Ano"
9307
 
9483
  msgid "Required Fields"
9484
  msgstr "Požadovaná pole"
9485
 
9486
+ #: app/features/mec/settings.php:1149 app/libraries/main.php:7162
9487
+ #: app/libraries/main.php:7209
9488
  msgid "More Info Link"
9489
  msgstr "Odkaz na více informací"
9490
 
10791
  msgid "Choose one of saved locations."
10792
  msgstr "Vyberte jedno z uložených míst nebo vložte nové."
10793
 
10794
+ #: app/features/occurrences.php:491 app/features/organizers.php:280
10795
  #: app/features/popup/event.php:165
10796
  msgid "Hide organizer"
10797
  msgstr "Skrýt organizátora"
10798
 
10799
+ #: app/features/occurrences.php:499 app/features/organizers.php:289
10800
  #: app/features/popup/event.php:174
10801
  msgid "Choose one of saved organizers or insert new one below."
10802
  msgstr "Vyberte některého z uložených organizátorů nebo vložte nového."
10810
  msgstr "Vložit email organizátora."
10811
 
10812
  #: app/features/organizers.php:120 app/features/organizers.php:157
10813
+ #: app/features/organizers.php:308 app/features/popup/event.php:197
10814
  msgid "Link to organizer page"
10815
  msgstr "Odkaz na stránku organizátora"
10816
 
10824
  msgid "Contact info"
10825
  msgstr "Kontaktní informace"
10826
 
10827
+ #: app/features/organizers.php:281 app/features/popup/event.php:166
10828
  msgid "Insert a new organizer"
10829
  msgstr "Vložit nového organizátora"
10830
 
10831
+ #: app/features/organizers.php:300 app/features/popup/event.php:187
10832
  msgid "Phone number."
10833
  msgstr "Telefonní číslo."
10834
 
10835
+ #: app/features/organizers.php:301 app/features/popup/event.php:188
10836
  msgid "eg. +1 (234) 5678"
10837
  msgstr "např. + 420 123 456 789"
10838
 
10839
+ #: app/features/organizers.php:304 app/features/popup/event.php:192
10840
  msgid "Email address."
10841
  msgstr "Emailová adresa."
10842
 
10843
+ #: app/features/organizers.php:305 app/features/popup/event.php:193
10844
  msgid "eg. john@smith.com"
10845
  msgstr "např. info@itreseni.cz"
10846
 
10847
+ #: app/features/organizers.php:309 app/features/popup/event.php:198
10848
  msgid "eg. https://webnus.net"
10849
  msgstr "např. https://webnus.net"
10850
 
10851
+ #: app/features/organizers.php:329 app/libraries/main.php:7165
10852
+ #: app/libraries/main.php:7212 app/skins/single.php:1446
10853
  msgid "Other Organizers"
10854
  msgstr "Další organizátoři"
10855
 
10856
+ #: app/features/organizers.php:331
10857
  msgid ""
10858
  "You can select extra organizers in addition to main organizer if you like."
10859
  msgstr ""
11221
  msgstr "Konec"
11222
 
11223
  #: app/features/wc.php:108 app/features/wc.php:131 app/libraries/main.php:2949
11224
+ #: app/libraries/notifications.php:1614 app/libraries/notifications.php:1629
11225
+ #: app/libraries/notifications.php:1640 app/libraries/notifications.php:1656
11226
+ #: app/libraries/notifications.php:1965 app/libraries/notifications.php:1966
11227
  #, php-format
11228
  msgid "%s to %s"
11229
  msgstr ""
11238
  msgid "Only %s slots remained for %s ticket so you cannot book %s ones."
11239
  msgstr ""
11240
 
11241
+ #: app/features/wc.php:251 app/libraries/main.php:7149
11242
  #, php-format
11243
  msgid "Maximum allowed number of tickets that you can book is %s."
11244
  msgstr ""
11245
 
11246
+ #: app/libraries/book.php:107
11247
  msgid " ("
11248
  msgstr ""
11249
 
11250
+ #: app/libraries/book.php:170
11251
  #, php-format
11252
  msgid "%s Price"
11253
  msgstr "%s Cena"
11254
 
11255
+ #: app/libraries/book.php:897 app/libraries/book.php:991
11256
  msgid "Discount"
11257
  msgstr "Sleva"
11258
 
11259
+ #: app/libraries/book.php:1084 app/modules/booking/default.php:654
11260
  #: app/modules/booking/default.php:767
11261
  msgid "Download Invoice"
11262
  msgstr "Stáhnout fakturu"
11432
  msgid "Timeline View"
11433
  msgstr "Zobrazení rozvrhu"
11434
 
11435
+ #: app/libraries/main.php:439 app/libraries/main.php:7132
11436
+ #: app/libraries/main.php:7193
11437
  msgid "SU"
11438
  msgstr "NE"
11439
 
11440
+ #: app/libraries/main.php:440 app/libraries/main.php:7133
11441
+ #: app/libraries/main.php:7194
11442
  msgid "MO"
11443
  msgstr "PO"
11444
 
11445
+ #: app/libraries/main.php:441 app/libraries/main.php:7134
11446
+ #: app/libraries/main.php:7195
11447
  msgid "TU"
11448
  msgstr "ÚT"
11449
 
11450
+ #: app/libraries/main.php:442 app/libraries/main.php:7135
11451
+ #: app/libraries/main.php:7196
11452
  msgid "WE"
11453
  msgstr "ST"
11454
 
11455
+ #: app/libraries/main.php:443 app/libraries/main.php:7136
11456
+ #: app/libraries/main.php:7197
11457
  msgid "TH"
11458
  msgstr "ČT"
11459
 
11460
+ #: app/libraries/main.php:444 app/libraries/main.php:7137
11461
+ #: app/libraries/main.php:7198
11462
  msgid "FR"
11463
  msgstr "PÁ"
11464
 
11465
+ #: app/libraries/main.php:445 app/libraries/main.php:7138
11466
+ #: app/libraries/main.php:7199
11467
  msgid "SA"
11468
  msgstr "SO"
11469
 
11806
  msgid "Free"
11807
  msgstr "Zdarma"
11808
 
11809
+ #: app/libraries/main.php:4917 app/libraries/main.php:7519
11810
  msgid "M.E. Calender"
11811
  msgstr "M.E. Kalendář"
11812
 
11824
  msgid "%s booked %s event."
11825
  msgstr "%s zarezervoval %s událost."
11826
 
11827
+ #: app/libraries/main.php:7115 app/libraries/main.php:7176
11828
  msgid "Taxonomies"
11829
  msgstr "Taxonomie"
11830
 
11831
  # Mrknout na kontext
11832
+ #: app/libraries/main.php:7117 app/libraries/main.php:7178
11833
  msgid "Category Plural Label"
11834
  msgstr "Štítek množné kategorie"
11835
 
11836
  # Mrknout na kontext
11837
+ #: app/libraries/main.php:7118 app/libraries/main.php:7179
11838
  msgid "Category Singular Label"
11839
  msgstr "Štítek jednotné kategorie"
11840
 
11841
+ #: app/libraries/main.php:7119 app/libraries/main.php:7180
11842
  msgid "Label Plural Label"
11843
  msgstr "Štítek množného štítku"
11844
 
11845
+ #: app/libraries/main.php:7120 app/libraries/main.php:7181
11846
  msgid "Label Singular Label"
11847
  msgstr "Štítek jednotného štítku"
11848
 
11849
+ #: app/libraries/main.php:7120 app/libraries/main.php:7181
11850
  msgid "label"
11851
  msgstr "štítek"
11852
 
11853
+ #: app/libraries/main.php:7121 app/libraries/main.php:7182
11854
  msgid "Location Plural Label"
11855
  msgstr "Štítek množného umístění"
11856
 
11857
+ #: app/libraries/main.php:7122 app/libraries/main.php:7183
11858
  msgid "Location Singular Label"
11859
  msgstr "Štítek jednotného umístění"
11860
 
11861
+ #: app/libraries/main.php:7123 app/libraries/main.php:7184
11862
  msgid "Organizer Plural Label"
11863
  msgstr "Štítek množného organizátora"
11864
 
11865
+ #: app/libraries/main.php:7124 app/libraries/main.php:7185
11866
  msgid "Organizer Singular Label"
11867
  msgstr "Štítek jednotného organizátora"
11868
 
11869
+ #: app/libraries/main.php:7125 app/libraries/main.php:7186
11870
  msgid "Speaker Plural Label"
11871
  msgstr "Štítek množného řečníka"
11872
 
11873
+ #: app/libraries/main.php:7126 app/libraries/main.php:7187
11874
  msgid "Speaker Singular Label"
11875
  msgstr "Štítek jednotného řečníka"
11876
 
11877
+ #: app/libraries/main.php:7132 app/libraries/main.php:7193
11878
  msgid "Sunday abbreviation"
11879
  msgstr "Neděle zkratka"
11880
 
11881
+ #: app/libraries/main.php:7133 app/libraries/main.php:7194
11882
  msgid "Monday abbreviation"
11883
  msgstr "Pondělí zkratka"
11884
 
11885
+ #: app/libraries/main.php:7134 app/libraries/main.php:7195
11886
  msgid "Tuesday abbreviation"
11887
  msgstr "Úterý zkratka"
11888
 
11889
+ #: app/libraries/main.php:7135 app/libraries/main.php:7196
11890
  msgid "Wednesday abbreviation"
11891
  msgstr "Středa zkratka"
11892
 
11893
+ #: app/libraries/main.php:7136 app/libraries/main.php:7197
11894
  msgid "Thursday abbreviation"
11895
  msgstr "Čtvrtek zkratka"
11896
 
11897
+ #: app/libraries/main.php:7137 app/libraries/main.php:7198
11898
  msgid "Friday abbreviation"
11899
  msgstr "Pátek zkratka"
11900
 
11901
+ #: app/libraries/main.php:7138 app/libraries/main.php:7199
11902
  msgid "Saturday abbreviation"
11903
  msgstr "Sobota zkratka"
11904
 
11905
+ #: app/libraries/main.php:7144
11906
  #, fuzzy
11907
  #| msgid "Ticket (Singular)"
11908
  msgid "Booking (Singular)"
11909
  msgstr "Vstupenka (Jednotné)"
11910
 
11911
+ #: app/libraries/main.php:7145
11912
  #, fuzzy
11913
  #| msgid "Tickets (Plural)"
11914
  msgid "Bookings (Plural)"
11915
  msgstr "Vstupenky (Množné)"
11916
 
11917
+ #: app/libraries/main.php:7146
11918
  msgid "Booking Success Message"
11919
  msgstr "Zpráva o úspěchu rezervace"
11920
 
11921
+ #: app/libraries/main.php:7146
11922
  #, fuzzy
11923
  #| msgid ""
11924
  #| "Thanks for your booking. Your tickets booked, booking verification might "
11930
  "Děkujeme za vaši rezervaci. Vaše vstupenky jsou rezervovány, může být nutné "
11931
  "ověřit rezervaci. Zkontrolujte prosím svůj e-mail."
11932
 
11933
+ #: app/libraries/main.php:7147
11934
  #, fuzzy
11935
  #| msgid "Booking Success Message"
11936
  msgid "Booking Restriction Message 1"
11937
  msgstr "Zpráva o úspěchu rezervace"
11938
 
11939
+ #: app/libraries/main.php:7147
11940
  #, php-format
11941
  msgid ""
11942
  "You selected %s tickets to book but maximum number of tikets per user is %s "
11943
  "tickets."
11944
  msgstr ""
11945
 
11946
+ #: app/libraries/main.php:7148
11947
  #, fuzzy
11948
  #| msgid "Booking Success Message"
11949
  msgid "Booking Restriction Message 2"
11950
  msgstr "Zpráva o úspěchu rezervace"
11951
 
11952
+ #: app/libraries/main.php:7148
11953
  #, php-format
11954
  msgid ""
11955
  "You booked %s tickets till now but maximum number of tickets per user is %s "
11956
  "tickets."
11957
  msgstr ""
11958
 
11959
+ #: app/libraries/main.php:7149
11960
  #, fuzzy
11961
  #| msgid "Booking Success Message"
11962
  msgid "Booking IP Restriction Message"
11963
  msgstr "Zpráva o úspěchu rezervace"
11964
 
11965
+ #: app/libraries/main.php:7150
11966
  #, fuzzy
11967
  #| msgid "Booking Options"
11968
  msgid "Booking Button"
11969
  msgstr "Možnosti rezervace"
11970
 
11971
+ #: app/libraries/main.php:7150
11972
  #, fuzzy
11973
  #| msgid "Booking Form"
11974
  msgid "Book Now"
11975
  msgstr "Rezervační formulář"
11976
 
11977
+ #: app/libraries/main.php:7151
11978
  msgid "Ticket (Singular)"
11979
  msgstr "Vstupenka (Jednotné)"
11980
 
11981
+ #: app/libraries/main.php:7152
11982
  msgid "Tickets (Plural)"
11983
  msgstr "Vstupenky (Množné)"
11984
 
11985
+ #: app/libraries/main.php:7156 app/libraries/main.php:7203
11986
  msgid "Others"
11987
  msgstr "Další"
11988
 
11989
+ #: app/libraries/main.php:7158 app/libraries/main.php:7205
11990
  #: app/widgets/single.php:128
11991
  msgid "Register Button"
11992
  msgstr "Registrační tlačítko"
11993
 
11994
+ #: app/libraries/main.php:7159 app/libraries/main.php:7206
11995
  msgid "View Detail Button"
11996
  msgstr "Tlačítko Zobrazit detail"
11997
 
11998
+ #: app/libraries/main.php:7159 app/libraries/main.php:7206
11999
  #: app/skins/carousel/render.php:105 app/skins/carousel/render.php:145
12000
  #: app/skins/grid/render.php:94 app/skins/grid/render.php:153
12001
  #: app/skins/grid/render.php:214 app/skins/grid/render.php:237
12007
  msgid "View Detail"
12008
  msgstr "Zobrazit detail"
12009
 
12010
+ #: app/libraries/main.php:7160 app/libraries/main.php:7207
12011
  msgid "Event Detail Button"
12012
  msgstr "Tlačítko Detail události"
12013
 
12014
+ #: app/libraries/main.php:7160 app/libraries/main.php:7207
12015
  msgid "Event Detail"
12016
  msgstr "Zobrazit událost"
12017
 
12018
+ #: app/libraries/main.php:7322
12019
  msgid "EventON"
12020
  msgstr "EventON"
12021
 
12022
+ #: app/libraries/main.php:7323
12023
  msgid "The Events Calendar"
12024
  msgstr "The Events Calendar"
12025
 
12026
+ #: app/libraries/main.php:7324
12027
  msgid "Events Schedule WP Plugin"
12028
  msgstr "Events Schedule WP Plugin"
12029
 
12030
+ #: app/libraries/main.php:7325
12031
  msgid "Calendarize It"
12032
  msgstr "Calendarize It"
12033
 
12034
+ #: app/libraries/main.php:7326
12035
  #, fuzzy
12036
  #| msgid "Event Speakers"
12037
  msgid "Event Espresso"
12038
  msgstr "Řečník události"
12039
 
12040
+ #: app/libraries/main.php:7327
12041
  #, fuzzy
12042
  #| msgid "Event Repeating (Recurring events)"
12043
  msgid "Events Manager (Recurring)"
12044
  msgstr "Opakování události (opakující se události)"
12045
 
12046
+ #: app/libraries/main.php:7328
12047
  #, fuzzy
12048
  #| msgid "Modern Events Calendar (Lite)"
12049
  msgid "Events Manager (Single)"
12050
  msgstr "Modern Events Calendar (Lite)"
12051
 
12052
+ #: app/libraries/main.php:7329
12053
  #, fuzzy
12054
  #| msgid "Modern Events Calendar (Lite)"
12055
  msgid "WP Event Manager"
12056
  msgstr "Modern Events Calendar (Lite)"
12057
 
12058
+ #: app/libraries/main.php:7549
12059
  #, fuzzy
12060
  #| msgid "Sunday"
12061
  msgid "Sun"
12062
  msgstr "Neděle"
12063
 
12064
+ #: app/libraries/main.php:7549
12065
  #, fuzzy
12066
  #| msgid "Monday"
12067
  msgid "Mon"
12068
  msgstr "Pondělí"
12069
 
12070
+ #: app/libraries/main.php:7549
12071
  #, fuzzy
12072
  #| msgid "Tel"
12073
  msgid "Tue"
12074
  msgstr "Tel"
12075
 
12076
+ #: app/libraries/main.php:7549
12077
  msgid "Wed"
12078
  msgstr ""
12079
 
12080
+ #: app/libraries/main.php:7549
12081
  msgid "Thu"
12082
  msgstr ""
12083
 
12084
+ #: app/libraries/main.php:7549
12085
  #, fuzzy
12086
  #| msgid "Friday"
12087
  msgid "Fri"
12088
  msgstr "Pátek"
12089
 
12090
+ #: app/libraries/main.php:7549
12091
  #, fuzzy
12092
  #| msgid "Start"
12093
  msgid "Sat"
12094
  msgstr "Začátek"
12095
 
12096
+ #: app/libraries/main.php:7755 app/libraries/render.php:82
12097
  #: app/libraries/render.php:467
12098
  msgid "Skin controller does not exist."
12099
  msgstr "Ovladač vzhledu neexistuje."
12100
 
12101
+ #: app/libraries/main.php:7992
12102
  msgid "Sold Out"
12103
  msgstr "Vyprodáno"
12104
 
12105
+ #: app/libraries/main.php:8023
12106
  #, fuzzy
12107
  #| msgid "Ticket"
12108
  msgid "Last Few Tickets"
12109
  msgstr "Vstupenka"
12110
 
12111
+ #: app/libraries/main.php:8295
12112
  #, fuzzy
12113
  #| msgid "Upcoming Events"
12114
  msgid "Ongoing"
12115
  msgstr "Nadcházející události"
12116
 
12117
+ #: app/libraries/main.php:8297
12118
  #, fuzzy
12119
  #| msgid "Expired Events"
12120
  msgid "Expired"
12121
  msgstr "Události vypršely"
12122
 
12123
+ #: app/libraries/main.php:8363 app/libraries/main.php:8380
12124
  #, fuzzy
12125
  #| msgid "minutes"
12126
  msgid "Minutes"
12127
  msgstr "minuty"
12128
 
12129
+ #: app/libraries/main.php:8385
12130
  msgid "AM / PM"
12131
  msgstr ""
12132
 
12133
+ #: app/libraries/main.php:8386
12134
  msgid "AM"
12135
  msgstr "dop."
12136
 
12137
+ #: app/libraries/main.php:8387
12138
  msgid "PM"
12139
  msgstr "odp."
12140
 
12141
+ #: app/libraries/main.php:8395
12142
  msgid "Ongoing..."
12143
  msgstr ""
12144
 
12145
+ #: app/libraries/main.php:8396 app/skins/single.php:229
12146
  #, fuzzy
12147
  #| msgid "Expired Events"
12148
  msgid "Expired!"
12149
  msgstr "Události vypršely"
12150
 
12151
+ #: app/libraries/main.php:9006
12152
  #, fuzzy
12153
  #| msgid "Categories"
12154
  msgid "Uncategorized"
12155
  msgstr "Kategorie"
12156
 
12157
+ #: app/libraries/notifications.php:75
12158
  msgid "Please verify your email."
12159
  msgstr "Prosím, ověřte svůj e-mail."
12160
 
12161
+ #: app/libraries/notifications.php:184
12162
  msgid "Your booking is received."
12163
  msgstr "Vaše rezervace je přijata."
12164
 
12165
+ #: app/libraries/notifications.php:316
12166
  msgid "Your booking is confirmed."
12167
  msgstr "Vaše rezervace je potvrzena."
12168
 
12169
+ #: app/libraries/notifications.php:502
12170
  msgid "booking canceled."
12171
  msgstr "rezervace zrušena."
12172
 
12173
+ #: app/libraries/notifications.php:651
12174
  #, fuzzy
12175
  #| msgid "booking canceled."
12176
  msgid "booking rejected."
12177
  msgstr "rezervace zrušena."
12178
 
12179
+ #: app/libraries/notifications.php:716
12180
  msgid "A new booking is received."
12181
  msgstr "Je přijata nová rezervace."
12182
 
12183
+ #: app/libraries/notifications.php:977
12184
  msgid "A new event is added."
12185
  msgstr "Je přidána se nová událost."
12186
 
12187
+ #: app/libraries/notifications.php:1117
12188
  msgid "Your event is published."
12189
  msgstr "Vaše událost je zveřejněna."
12190
 
12191
+ #: app/libraries/notifications.php:1314
12192
  #, fuzzy
12193
  #| msgid "Event Color"
12194
  msgid "Event is soldout!"
12195
  msgstr "Barva události"
12196
 
12197
+ #: app/libraries/notifications.php:1426
12198
  #, fuzzy
12199
  #| msgid "Thanks for your booking."
12200
  msgid "Thanks for your attention!"
12201
  msgstr "Děkujeme za vaši rezervaci."
12202
 
12203
+ #: app/libraries/notifications.php:1903
12204
  msgid "to"
12205
  msgstr "do"
12206
 
12207
+ #: app/libraries/notifications.php:1935 app/modules/export/details.php:80
12208
  msgid "+ Add to Google Calendar"
12209
  msgstr "+ Přidat do Google kalendáře"
12210
 
12211
+ #: app/libraries/notifications.php:1936 app/modules/export/details.php:81
12212
  #, fuzzy
12213
  #| msgid "+ iCal export"
12214
  msgid "+ iCal / Outlook export"
12215
  msgstr "+ iCal export"
12216
 
12217
+ #: app/libraries/notifications.php:1980
12218
  #, fuzzy, php-format
12219
  #| msgid "+ Add to Google Calendar"
12220
  msgid "+ %s to Google Calendar"
12610
  msgid "No Events"
12611
  msgstr "Žádné události"
12612
 
12613
+ #: app/skins/general_calendar/tpl.php:99
12614
  #, fuzzy
12615
  #| msgid "Found Events"
12616
  msgid "Find Events"
12769
  msgid "http://webnus.net"
12770
  msgstr "http://webnus.net"
12771
 
12772
+ #, fuzzy
12773
+ #~| msgid "Time Format"
12774
+ #~ msgid "DateTime Format"
12775
+ #~ msgstr "Formát času"
12776
+
12777
+ #, fuzzy
12778
+ #~| msgid "Hide Events"
12779
+ #~ msgid "Hide group events"
12780
+ #~ msgstr "Skrýt události"
12781
+
12782
+ #, fuzzy
12783
+ #~| msgid "Frontend Event Submission"
12784
+ #~ msgid "Event submission roles"
12785
+ #~ msgstr "Předání události frontendu"
12786
+
12787
+ #, fuzzy
12788
+ #~| msgid "Sorry! You don't have access to modify this event."
12789
+ #~ msgid "Select roles that have access to submission events"
12790
+ #~ msgstr "Promiňte! Nemáte přístup k úpravě této události."
12791
+
12792
  #~ msgid "Organizer Tel"
12793
  #~ msgstr "Organizátor Tel"
12794
 
languages/modern-events-calendar-lite-de_DE.mo CHANGED
Binary file
languages/modern-events-calendar-lite-de_DE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: ME Calender\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2021-11-10 13:40+0330\n"
6
- "PO-Revision-Date: 2021-11-10 13:42+0330\n"
7
  "Last-Translator: Jogon <koenig@kafinanz.de>\n"
8
  "Language-Team: German\n"
9
  "Language: de_DE\n"
@@ -96,38 +96,38 @@ msgid "Select Shortcode"
96
  msgstr "Neuen Shortcode hinzufügen"
97
 
98
  #: app/core/src/Books/Book.php:106 app/features/ix.php:284
99
- #: app/libraries/main.php:7455 app/libraries/main.php:7482
100
  msgid "Rejected"
101
  msgstr "Abgelehnt"
102
 
103
  #: app/core/src/Books/Book.php:111 app/features/ix.php:283
104
- #: app/libraries/main.php:7454 app/libraries/main.php:7474
105
  msgid "Confirmed"
106
  msgstr "Bestätigt"
107
 
108
  #: app/core/src/Books/Book.php:117 app/features/mec/settings.php:742
109
- #: app/libraries/main.php:7456 app/libraries/main.php:7478
110
  msgid "Pending"
111
  msgstr "Ausstehend"
112
 
113
  #: app/core/src/Books/Book.php:186 app/features/ix.php:289
114
  #: app/features/labels.php:119 app/features/labels.php:145
115
- #: app/libraries/main.php:7503
116
  msgid "Canceled"
117
  msgstr "Abgesagt"
118
 
119
  #: app/core/src/Books/Book.php:191 app/features/ix.php:288
120
- #: app/features/mec/booking.php:1177 app/features/mec/booking.php:1199
121
- #: app/features/mec/integrations.php:456 app/features/mec/integrations.php:478
122
  #: app/features/mec/modules.php:406 app/features/mec/modules.php:428
123
  #: app/features/mec/notifications.php:1919
124
  #: app/features/mec/notifications.php:1942 app/features/mec/settings.php:1584
125
  #: app/features/mec/settings.php:1606 app/features/mec/single.php:580
126
- #: app/features/mec/single.php:602 app/libraries/main.php:7502
127
  msgid "Verified"
128
  msgstr "Verifiziert"
129
 
130
- #: app/core/src/Books/Book.php:197 app/libraries/main.php:7504
131
  msgid "Waiting"
132
  msgstr "in Bearbeitung"
133
 
@@ -154,17 +154,17 @@ msgstr "Vorname"
154
  #: app/core/src/Forms/FormFields.php:188 app/core/src/Forms/SettingsForm.php:93
155
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:70
156
  #: app/features/autoemails.php:60 app/features/events.php:602
157
- #: app/features/events.php:2639 app/features/events.php:2706
158
- #: app/features/events.php:2795 app/features/events.php:4394
159
  #: app/features/fes.php:259 app/features/fes/form.php:808
160
  #: app/features/login/login.php:5 app/features/mec/booking.php:57
161
- #: app/features/mec/booking.php:791 app/features/mec/booking.php:889
162
  #: app/features/mec/settings.php:295 app/features/mec/single.php:288
163
  #: app/features/organizers.php:112 app/features/organizers.php:153
164
  #: app/features/profile/profile.php:195 app/features/speakers.php:128
165
  #: app/features/speakers.php:205 app/libraries/main.php:604
166
  #: app/libraries/main.php:2071 app/libraries/main.php:2140
167
- #: app/libraries/main.php:3702 app/libraries/notifications.php:2053
168
  #: app/modules/booking/steps/form.php:68 app/modules/booking/steps/form.php:217
169
  #: app/skins/single.php:1406 app/skins/single.php:1473
170
  #: app/skins/single/default.php:347 app/skins/single/default.php:593
@@ -186,8 +186,8 @@ msgstr "Geben Sie eine Bezeichnung (Label) für dieses Feld ein."
186
  #: app/core/src/Forms/FormFields.php:341 app/core/src/Forms/FormFields.php:372
187
  #: app/core/src/Forms/FormFields.php:396 app/core/src/Forms/FormFields.php:442
188
  #: app/core/src/Forms/FormFields.php:488 app/core/src/Forms/FormFields.php:544
189
- #: app/core/src/Forms/FormFields.php:596 app/features/organizers.php:337
190
- #: app/features/organizers.php:345 app/libraries/main.php:3610
191
  #: app/libraries/main.php:3641 app/libraries/main.php:3671
192
  #: app/libraries/main.php:3701 app/libraries/main.php:3732
193
  #: app/libraries/main.php:3763 app/libraries/main.php:3793
@@ -199,8 +199,8 @@ msgid "Sort"
199
  msgstr "Sortieren"
200
 
201
  #: app/core/src/Forms/FormFields.php:52 app/core/src/Forms/SettingsForm.php:88
202
- #: app/features/events.php:2705 app/features/events.php:2794
203
- #: app/features/mec/booking.php:790 app/features/mec/booking.php:888
204
  #: app/features/mec/single.php:287 app/libraries/main.php:3611
205
  #: app/libraries/skins.php:1367
206
  msgid "Text"
@@ -231,10 +231,10 @@ msgstr "Pflichtfeld"
231
  #: app/core/src/Forms/FormFields.php:505 app/core/src/Forms/FormFields.php:554
232
  #: app/core/src/Forms/FormFields.php:597 app/features/events.php:2105
233
  #: app/features/events.php:2131 app/features/events.php:2344
234
- #: app/features/events.php:2480 app/features/events.php:2516
235
- #: app/features/mec/booking.php:609 app/features/mec/booking.php:638
236
- #: app/features/mec/booking.php:706 app/features/mec/booking.php:738
237
- #: app/features/organizers.php:337 app/features/organizers.php:346
238
  #: app/libraries/hourlyschedule.php:53 app/libraries/hourlyschedule.php:74
239
  #: app/libraries/hourlyschedule.php:102 app/libraries/hourlyschedule.php:130
240
  #: app/libraries/hourlyschedule.php:154 app/libraries/main.php:3621
@@ -277,13 +277,13 @@ msgstr "Vorname"
277
  msgid "MEC Last Name"
278
  msgstr "MEC Name"
279
 
280
- #: app/core/src/Forms/FormFields.php:93 app/features/events.php:2703
281
- #: app/features/mec/booking.php:788 app/libraries/main.php:3642
282
  msgid "MEC Name"
283
  msgstr "MEC Name"
284
 
285
  #: app/core/src/Forms/FormFields.php:158 app/core/src/Forms/SettingsForm.php:83
286
- #: app/features/events.php:2704 app/features/mec/booking.php:789
287
  #: app/libraries/main.php:3672
288
  msgid "MEC Email"
289
  msgstr "MEC Email"
@@ -294,16 +294,16 @@ msgid "URL"
294
  msgstr ""
295
 
296
  #: app/core/src/Forms/FormFields.php:250
297
- #: app/core/src/Forms/SettingsForm.php:108 app/features/events.php:2709
298
- #: app/features/mec/booking.php:794 app/libraries/main.php:3764
299
  msgid "File"
300
  msgstr "Datei"
301
 
302
  #: app/core/src/Forms/FormFields.php:280 app/core/src/Forms/SettingsForm.php:98
303
- #: app/core/src/SingleBuilder/Widgets/EventDate/EventDate.php:44
304
- #: app/features/events.php:1381 app/features/events.php:2707
305
- #: app/features/events.php:2796 app/features/fes.php:259
306
- #: app/features/mec/booking.php:792 app/features/mec/booking.php:890
307
  #: app/features/mec/single.php:290 app/features/profile/profile.php:59
308
  #: app/features/wc.php:84 app/libraries/main.php:3794
309
  #: app/libraries/skins.php:1279 app/modules/booking/steps/tickets.php:136
@@ -314,9 +314,9 @@ msgid "Date"
314
  msgstr "Datum"
315
 
316
  #: app/core/src/Forms/FormFields.php:311
317
- #: app/core/src/Forms/SettingsForm.php:103 app/features/events.php:2708
318
- #: app/features/events.php:2797 app/features/mec/booking.php:793
319
- #: app/features/mec/booking.php:891 app/features/mec/single.php:291
320
  #: app/features/organizers.php:104 app/features/organizers.php:149
321
  #: app/features/speakers.php:120 app/features/speakers.php:201
322
  #: app/features/speakers.php:288 app/libraries/main.php:3825
@@ -324,17 +324,17 @@ msgid "Tel"
324
  msgstr "Tel"
325
 
326
  #: app/core/src/Forms/FormFields.php:342
327
- #: app/core/src/Forms/SettingsForm.php:113 app/features/events.php:2710
328
- #: app/features/events.php:2798 app/features/mec/booking.php:795
329
- #: app/features/mec/booking.php:892 app/features/mec/single.php:292
330
  #: app/libraries/main.php:3856
331
  msgid "Textarea"
332
  msgstr "Textbereich"
333
 
334
  #: app/core/src/Forms/FormFields.php:373
335
- #: app/core/src/Forms/SettingsForm.php:138 app/features/events.php:2715
336
- #: app/features/events.php:2803 app/features/mec/booking.php:800
337
- #: app/features/mec/booking.php:897 app/features/mec/settings.php:351
338
  #: app/features/mec/single.php:293 app/libraries/main.php:3894
339
  msgid "Paragraph"
340
  msgstr "Absatz"
@@ -344,9 +344,9 @@ msgid "HTML and shortcode are allowed."
344
  msgstr "HTML und shortcodes sind erlaubt."
345
 
346
  #: app/core/src/Forms/FormFields.php:397
347
- #: app/core/src/Forms/SettingsForm.php:118 app/features/events.php:2711
348
- #: app/features/events.php:2799 app/features/mec/booking.php:127
349
- #: app/features/mec/booking.php:796 app/features/mec/booking.php:893
350
  #: app/features/mec/single.php:294 app/libraries/main.php:3918
351
  msgid "Checkboxes"
352
  msgstr "Checkboxes"
@@ -358,17 +358,17 @@ msgid "Option"
358
  msgstr "Option"
359
 
360
  #: app/core/src/Forms/FormFields.php:443
361
- #: app/core/src/Forms/SettingsForm.php:123 app/features/events.php:2712
362
- #: app/features/events.php:2800 app/features/mec/booking.php:797
363
- #: app/features/mec/booking.php:894 app/features/mec/single.php:295
364
  #: app/libraries/main.php:3966
365
  msgid "Radio Buttons"
366
  msgstr "Radio Buttons"
367
 
368
  #: app/core/src/Forms/FormFields.php:489
369
- #: app/core/src/Forms/SettingsForm.php:128 app/features/events.php:2713
370
- #: app/features/events.php:2801 app/features/mec/booking.php:125
371
- #: app/features/mec/booking.php:798 app/features/mec/booking.php:895
372
  #: app/features/mec/meta_boxes/search_form.php:67
373
  #: app/features/mec/meta_boxes/search_form.php:75
374
  #: app/features/mec/meta_boxes/search_form.php:83
@@ -459,9 +459,9 @@ msgid "Consider first item as placeholder"
459
  msgstr ""
460
 
461
  #: app/core/src/Forms/FormFields.php:545
462
- #: app/core/src/Forms/SettingsForm.php:133 app/features/events.php:2714
463
- #: app/features/events.php:2802 app/features/mec/booking.php:799
464
- #: app/features/mec/booking.php:896 app/libraries/main.php:4072
465
  msgid "Agreement"
466
  msgstr "Zustimmung"
467
 
@@ -492,7 +492,7 @@ msgstr ""
492
  msgid "Insert a label for this option"
493
  msgstr "Ein neues Label für diese Option einfügen"
494
 
495
- #: app/core/src/Forms/FormFields.php:606 app/libraries/main.php:8672
496
  msgid "Mapping with Profile Fields"
497
  msgstr ""
498
 
@@ -642,17 +642,17 @@ msgstr "Geben Sie mit Komma getrennte email-Adressen ein für mehrere Empfänger
642
  #: app/features/events.php:1834 app/features/events.php:2004
643
  #: app/features/events.php:2019 app/features/events.php:2261
644
  #: app/features/events.php:2274 app/features/events.php:2467
645
- #: app/features/events.php:2503 app/features/fes/form.php:456
646
  #: app/features/fes/form.php:764 app/features/fes/form.php:887
647
  #: app/features/locations.php:341 app/features/mec/booking.php:109
648
  #: app/features/mec/booking.php:185 app/features/mec/booking.php:198
649
  #: app/features/mec/booking.php:234 app/features/mec/booking.php:299
650
  #: app/features/mec/booking.php:332 app/features/mec/booking.php:345
651
  #: app/features/mec/booking.php:411 app/features/mec/booking.php:462
652
- #: app/features/mec/booking.php:597 app/features/mec/booking.php:626
653
- #: app/features/mec/booking.php:691 app/features/mec/booking.php:701
654
- #: app/features/mec/booking.php:723 app/features/mec/booking.php:733
655
- #: app/features/mec/booking.php:998 app/features/mec/booking.php:1026
656
  #: app/features/mec/dashboard.php:73 app/features/mec/integrations.php:52
657
  #: app/features/mec/integrations.php:65 app/features/mec/integrations.php:81
658
  #: app/features/mec/meta_boxes/display_options.php:97
@@ -720,7 +720,7 @@ msgstr "Geben Sie mit Komma getrennte email-Adressen ein für mehrere Empfänger
720
  #: app/features/mec/single.php:382 app/features/mec/styling.php:123
721
  #: app/features/mec/styling.php:223 app/features/mec/styling.php:240
722
  #: app/features/mec/styling.php:254 app/features/occurrences.php:472
723
- #: app/features/occurrences.php:499 app/features/organizers.php:286
724
  #: app/features/popup/event.php:127 app/features/popup/event.php:174
725
  #: app/features/popup/settings.php:78 app/features/popup/settings.php:161
726
  #: app/features/popup/settings.php:182 app/features/popup/settings.php:300
@@ -845,7 +845,7 @@ msgid "How to set category"
845
  msgstr ""
846
 
847
  #: app/core/src/SingleBuilder/Widgets/EventCategories/EventCategories.php:46
848
- #: app/features/events.php:218 app/features/events.php:3826
849
  #: app/features/mec/meta_boxes/display_options.php:1651
850
  #: app/features/mec/meta_boxes/search_form.php:64
851
  #: app/features/mec/meta_boxes/search_form.php:152
@@ -862,8 +862,8 @@ msgstr ""
862
  #: app/features/mec/settings.php:1150 app/features/mec/settings.php:1213
863
  #: app/features/mec/single.php:445 app/features/mec/single.php:498
864
  #: app/features/popup/settings.php:220 app/features/popup/settings.php:259
865
- #: app/features/search.php:91 app/libraries/main.php:7116
866
- #: app/libraries/main.php:7177 app/libraries/search.php:256
867
  #: app/libraries/skins.php:1080 app/skins/single.php:1097
868
  #: app/skins/single/default.php:299 app/skins/single/default.php:546
869
  #: app/skins/single/m1.php:229 app/skins/single/m2.php:148
@@ -886,8 +886,8 @@ msgstr ""
886
  #: app/core/src/SingleBuilder/Widgets/EventCost/EventCost.php:47
887
  #: app/features/events.php:432 app/features/events.php:1277
888
  #: app/features/fes/form.php:864 app/features/mec/settings.php:1147
889
- #: app/features/occurrences.php:511 app/libraries/main.php:7162
890
- #: app/libraries/main.php:7209 app/libraries/skins.php:1395
891
  #: app/skins/single.php:1130 app/skins/single/default.php:215
892
  #: app/skins/single/default.php:464 app/skins/single/m1.php:81
893
  #: app/skins/single/modern.php:292
@@ -965,11 +965,11 @@ msgid "How to set label"
965
  msgstr ""
966
 
967
  #: app/core/src/SingleBuilder/Widgets/EventLabels/EventLabels.php:48
968
- #: app/features/events.php:4148 app/features/fes/form.php:984
969
  #: app/features/labels.php:61 app/features/labels.php:227
970
  #: app/features/mec.php:494 app/features/mec/meta_boxes/filter.php:72
971
- #: app/features/mec/meta_boxes/filter.php:135 app/libraries/main.php:7117
972
- #: app/libraries/main.php:7178 app/skins/single.php:1260
973
  #: app/skins/single/default.php:247 app/skins/single/default.php:493
974
  #: app/skins/single/m1.php:96 app/skins/single/modern.php:307
975
  msgid "Labels"
@@ -1001,7 +1001,7 @@ msgid "How to set location"
1001
  msgstr "Ort verbergen"
1002
 
1003
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:54
1004
- #: app/features/events.php:3827 app/features/events.php:4141
1005
  #: app/features/locations.php:58 app/features/locations.php:267
1006
  #: app/features/locations.php:329 app/features/locations.php:331
1007
  #: app/features/locations.php:340
@@ -1024,7 +1024,7 @@ msgstr "Ort verbergen"
1024
  #: app/features/popup/event.php:117 app/features/popup/event.php:126
1025
  #: app/features/popup/settings.php:228 app/features/popup/settings.php:267
1026
  #: app/features/search.php:97 app/libraries/main.php:2914
1027
- #: app/libraries/main.php:7120 app/libraries/main.php:7181
1028
  #: app/libraries/search.php:294 app/libraries/skins.php:1135
1029
  #: app/skins/single.php:1024 app/skins/single.php:1532
1030
  #: app/skins/single/default.php:268 app/skins/single/default.php:516
@@ -1059,7 +1059,7 @@ msgstr ""
1059
  #: app/core/src/SingleBuilder/Widgets/EventMoreInfo/EventMoreInfo.php:48
1060
  #: app/features/events.php:1510 app/features/events.php:1523
1061
  #: app/features/fes/form.php:834 app/features/occurrences.php:525
1062
- #: app/libraries/main.php:7160 app/libraries/main.php:7207
1063
  #: app/skins/single.php:1230 app/skins/single/default.php:232
1064
  #: app/skins/single/default.php:478 app/skins/single/m1.php:255
1065
  #: app/skins/single/m2.php:175 app/skins/single/modern.php:209
@@ -1108,9 +1108,9 @@ msgid "How to set organizer"
1108
  msgstr "Veranstalter verbergen"
1109
 
1110
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:53
1111
- #: app/features/events.php:431 app/features/events.php:3828
1112
- #: app/features/events.php:4143 app/features/events.php:4144
1113
- #: app/features/events.php:4145
1114
  #: app/features/mec/meta_boxes/display_options.php:1654
1115
  #: app/features/mec/meta_boxes/search_form.php:80
1116
  #: app/features/mec/meta_boxes/search_form.php:168
@@ -1128,11 +1128,11 @@ msgstr "Veranstalter verbergen"
1128
  #: app/features/mec/single.php:502 app/features/occurrences.php:487
1129
  #: app/features/occurrences.php:489 app/features/occurrences.php:498
1130
  #: app/features/organizers.php:58 app/features/organizers.php:208
1131
- #: app/features/organizers.php:274 app/features/organizers.php:276
1132
- #: app/features/organizers.php:285 app/features/popup/event.php:164
1133
  #: app/features/popup/event.php:173 app/features/popup/settings.php:224
1134
  #: app/features/popup/settings.php:263 app/features/search.php:103
1135
- #: app/libraries/main.php:7122 app/libraries/main.php:7183
1136
  #: app/libraries/search.php:314 app/libraries/skins.php:1164
1137
  #: app/skins/single.php:1388 app/skins/single/default.php:329
1138
  #: app/skins/single/default.php:575 app/skins/single/m1.php:124
@@ -1175,7 +1175,7 @@ msgid "How to set register button"
1175
  msgstr "Register Button"
1176
 
1177
  #: app/core/src/SingleBuilder/Widgets/EventRegisterButton/EventRegisterButton.php:48
1178
- #: app/libraries/main.php:7156 app/libraries/main.php:7203
1179
  #: app/skins/available_spot/tpl.php:204 app/skins/carousel/render.php:105
1180
  #: app/skins/carousel/render.php:145 app/skins/grid/render.php:94
1181
  #: app/skins/grid/render.php:153 app/skins/grid/render.php:214
@@ -1329,8 +1329,8 @@ msgid "Details"
1329
  msgstr "Veranstaltungsdetails"
1330
 
1331
  #: app/features/booking/calendar_novel.php:139
1332
- #: app/features/search_bar/search_result.php:12 app/libraries/main.php:7165
1333
- #: app/libraries/main.php:7212 app/libraries/notifications.php:1615
1334
  #: app/libraries/render.php:554 app/libraries/render.php:758
1335
  #: app/libraries/render.php:816 app/libraries/render.php:976
1336
  #: app/modules/local-time/details.php:49 app/modules/local-time/type1.php:47
@@ -1370,8 +1370,8 @@ msgid "Settings"
1370
  msgstr "Einstellungen"
1371
 
1372
  #: app/features/contextual.php:62 app/features/events.php:1556
1373
- #: app/features/events.php:2644 app/features/mec/booking.php:753
1374
- #: app/features/mec/booking.php:1024 app/features/mec/settings.php:1012
1375
  #: app/features/mec/support.php:29
1376
  msgid "Booking Form"
1377
  msgstr "Buchungsformular"
@@ -1399,7 +1399,7 @@ msgstr ""
1399
  "YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
1400
 
1401
  #: app/features/contextual.php:70 app/features/events.php:1564
1402
- #: app/features/mec/booking.php:965 app/features/mec/support-page.php:115
1403
  #: app/features/mec/support.php:36 app/libraries/main.php:640
1404
  msgid "Payment Gateways"
1405
  msgstr "Zahlungs-Gateways"
@@ -1556,13 +1556,13 @@ msgstr "Herausgenommene Tage "
1556
  #: app/libraries/main.php:633 app/libraries/main.php:634
1557
  #: app/libraries/main.php:638 app/libraries/main.php:662
1558
  #: app/libraries/main.php:780 app/libraries/main.php:2976
1559
- #: app/libraries/main.php:7140 app/libraries/main.php:7142
1560
  #: app/modules/booking/steps/checkout.php:146
1561
  msgid "Booking"
1562
  msgstr "Buchung / Reservierung"
1563
 
1564
  #: app/features/contextual.php:318 app/features/mec/booking.php:552
1565
- #: app/features/mec/booking.php:981 app/libraries/main.php:635
1566
  msgid "Coupons"
1567
  msgstr "Gutscheine"
1568
 
@@ -1721,11 +1721,11 @@ msgstr "Veranstaltung ansehen"
1721
  msgid "No events found in Trash!"
1722
  msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
1723
 
1724
- #: app/features/events.php:219 app/features/events.php:3782
1725
- #: app/features/events.php:4149 app/features/fes/form.php:958
1726
  #: app/features/mec.php:493 app/features/mec/meta_boxes/filter.php:69
1727
- #: app/features/mec/meta_boxes/filter.php:81 app/libraries/main.php:7115
1728
- #: app/libraries/main.php:7176
1729
  msgid "Categories"
1730
  msgstr "Kategorien"
1731
 
@@ -1811,7 +1811,7 @@ msgstr "Bild hochladen/hinzufügen"
1811
  #: app/features/locations.php:162 app/features/locations.php:214
1812
  #: app/features/locations.php:393 app/features/locations.php:400
1813
  #: app/features/organizers.php:134 app/features/organizers.php:165
1814
- #: app/features/organizers.php:313 app/features/organizers.php:320
1815
  #: app/features/speakers.php:182 app/features/speakers.php:233
1816
  msgid "Remove image"
1817
  msgstr "Bild entfernen"
@@ -1868,12 +1868,12 @@ msgstr "Zusätzliche Anmerkungen zum Event "
1868
  msgid "Guest Data"
1869
  msgstr "Gäste Daten"
1870
 
1871
- #: app/features/events.php:601 app/features/events.php:2630
1872
- #: app/features/events.php:4391 app/features/fes.php:259
1873
  #: app/features/fes/form.php:812 app/features/labels.php:184
1874
- #: app/features/mec/booking.php:45 app/features/organizers.php:293
1875
  #: app/features/popup/event.php:183 app/features/profile/profile.php:192
1876
- #: app/libraries/notifications.php:2052 app/modules/booking/steps/form.php:59
1877
  msgid "Name"
1878
  msgstr "Name"
1879
 
@@ -1888,7 +1888,7 @@ msgid "Date and Time"
1888
  msgstr "Datum und Uhrzeit"
1889
 
1890
  #: app/features/events.php:618 app/features/events.php:622
1891
- #: app/features/events.php:3829 app/features/events.php:4136
1892
  #: app/features/fes/form.php:286 app/features/fes/form.php:290
1893
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1507
1894
  #: app/features/mec/meta_boxes/display_options.php:57
@@ -1912,7 +1912,7 @@ msgid "Start Date"
1912
  msgstr "Start Datum"
1913
 
1914
  #: app/features/events.php:637 app/features/events.php:641
1915
- #: app/features/events.php:3830 app/features/events.php:4138
1916
  #: app/features/fes/form.php:305 app/features/fes/form.php:309
1917
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1508
1918
  #: app/features/mec/meta_boxes/display_options.php:73
@@ -1970,7 +1970,7 @@ msgstr "Zeitzone: %s"
1970
  #: app/features/events.php:1753 app/features/events.php:1763
1971
  #: app/features/events.php:1784 app/features/events.php:1804
1972
  #: app/features/events.php:1859 app/features/events.php:2429
1973
- #: app/features/events.php:2550 app/features/events.php:2661
1974
  #: app/features/fes/form.php:346 app/features/fes/form.php:359
1975
  msgid "Inherit from global options"
1976
  msgstr "Aus den globalen Einstellungen übernehmen"
@@ -2106,9 +2106,9 @@ msgstr "Start"
2106
  #: app/features/events.php:868 app/features/events.php:1383
2107
  #: app/features/events.php:2075 app/features/events.php:2157
2108
  #: app/features/events.php:2323 app/features/events.php:2367
2109
- #: app/features/events.php:2440 app/features/events.php:2555
2110
  #: app/features/fes/form.php:449 app/features/fes/form.php:1056
2111
- #: app/features/occurrences.php:113 app/features/organizers.php:337
2112
  #: app/libraries/hourlyschedule.php:57 app/libraries/hourlyschedule.php:134
2113
  msgid "Add"
2114
  msgstr "Hinzufügen"
@@ -2185,7 +2185,7 @@ msgstr ""
2185
  msgid "Show only one occurrence of this event"
2186
  msgstr "Nächstes Auftreten von anderen Events."
2187
 
2188
- #: app/features/events.php:1270 app/features/events.php:4146
2189
  #: app/features/fes/form.php:861
2190
  #: app/features/mec/meta_boxes/search_form.php:116
2191
  #: app/features/mec/meta_boxes/search_form.php:204
@@ -2211,7 +2211,7 @@ msgstr "Nächstes Auftreten von anderen Events."
2211
  #: app/features/mec/notifications.php:1625
2212
  #: app/features/mec/notifications.php:1775 app/features/mec/settings.php:854
2213
  #: app/features/notifications.php:160 app/features/occurrences.php:508
2214
- #: app/libraries/main.php:7161 app/libraries/main.php:7208
2215
  #: app/widgets/single.php:100
2216
  msgid "Event Cost"
2217
  msgstr ""
@@ -2306,8 +2306,8 @@ msgstr "Veranstaltungslinks"
2306
 
2307
  #: app/features/events.php:1492 app/features/events.php:1500
2308
  #: app/features/fes/form.php:829 app/features/mec/settings.php:1148
2309
- #: app/features/occurrences.php:520 app/libraries/main.php:7159
2310
- #: app/libraries/main.php:7206
2311
  msgid "Event Link"
2312
  msgstr "Veranstaltungslink"
2313
 
@@ -2375,7 +2375,7 @@ msgid "Total User Booking Limits"
2375
  msgstr "Gesamt Verfügbare Plätze"
2376
 
2377
  #: app/features/events.php:1549 app/features/events.php:1915
2378
- #: app/libraries/book.php:141 app/libraries/main.php:7150
2379
  #: app/modules/booking/steps/tickets.php:168
2380
  #: app/modules/booking/steps/tickets.php:174
2381
  msgid "Tickets"
@@ -2385,12 +2385,12 @@ msgstr "Tickets"
2385
  msgid "Fees"
2386
  msgstr "Gebühren"
2387
 
2388
- #: app/features/events.php:1554 app/features/events.php:2545
2389
  #: app/features/mec/settings.php:1024
2390
  msgid "Ticket Variations / Options"
2391
  msgstr ""
2392
 
2393
- #: app/features/events.php:1558 app/features/mec/booking.php:1055
2394
  #: app/features/mec/support-page.php:118
2395
  #, fuzzy
2396
  #| msgid "Organizer Tel"
@@ -2398,7 +2398,7 @@ msgid "Organizer Payment"
2398
  msgstr "Organisator Telefon"
2399
 
2400
  #: app/features/events.php:1566 app/features/ix/export.php:58
2401
- #: app/libraries/main.php:7143
2402
  msgid "Bookings"
2403
  msgstr "Buchungen / Reservierungen"
2404
 
@@ -2507,7 +2507,7 @@ msgstr "Email-Verifizierung"
2507
  #: app/features/events.php:1754 app/features/events.php:1764
2508
  #: app/features/mec/booking.php:210 app/features/mec/booking.php:277
2509
  #: app/features/mec/booking.php:292 app/features/mec/booking.php:374
2510
- #: app/features/mec/booking.php:992 app/features/mec/booking.php:1019
2511
  #: app/features/mec/meta_boxes/search_form.php:66
2512
  #: app/features/mec/meta_boxes/search_form.php:74
2513
  #: app/features/mec/meta_boxes/search_form.php:82
@@ -2645,8 +2645,8 @@ msgstr "Deaktiviert"
2645
 
2646
  #: app/features/events.php:1755 app/features/events.php:1765
2647
  #: app/features/mec/booking.php:209 app/features/mec/booking.php:276
2648
- #: app/features/mec/booking.php:293 app/features/mec/booking.php:991
2649
- #: app/features/mec/booking.php:1020 app/features/mec/modules.php:155
2650
  #: app/features/mec/settings.php:99 app/features/popup/settings.php:357
2651
  msgid "Enabled"
2652
  msgstr "Aktiviert"
@@ -2736,7 +2736,7 @@ msgid "Ticket ID"
2736
  msgstr "Ticket"
2737
 
2738
  #: app/features/events.php:1935 app/features/events.php:2201
2739
- #: app/features/events.php:4133 app/features/fes.php:259
2740
  #: app/features/labels.php:183 app/features/locations.php:266
2741
  #: app/features/organizers.php:207 app/features/speakers.php:285
2742
  msgid "ID"
@@ -2747,17 +2747,17 @@ msgid "Ticket Name"
2747
  msgstr "Ticket Name"
2748
 
2749
  #: app/features/events.php:1947 app/features/events.php:2209
2750
- #: app/features/events.php:4137 app/libraries/skins.php:1360
2751
  msgid "Start Time"
2752
  msgstr "Uhrzeit des Beginns"
2753
 
2754
  #: app/features/events.php:1960 app/features/events.php:2222
2755
- #: app/features/events.php:4139 app/libraries/skins.php:1361
2756
  msgid "End Time"
2757
  msgstr "Uhrzeit Ende"
2758
 
2759
  #: app/features/events.php:1978 app/features/events.php:2237
2760
- #: app/features/events.php:4135 app/libraries/hourlyschedule.php:72
2761
  #: app/libraries/hourlyschedule.php:100 app/libraries/hourlyschedule.php:152
2762
  msgid "Description"
2763
  msgstr "Beschreibung"
@@ -2780,9 +2780,9 @@ msgstr ""
2780
  #: app/features/events.php:1997 app/features/events.php:2001
2781
  #: app/features/events.php:2099 app/features/events.php:2126
2782
  #: app/features/events.php:2255 app/features/events.php:2258
2783
- #: app/features/events.php:2340 app/features/events.php:4690
2784
- #: app/features/mec/booking.php:687 app/features/mec/booking.php:690
2785
- #: app/features/mec/booking.php:719 app/features/mec/booking.php:722
2786
  #: app/libraries/ticketVariations.php:43 app/libraries/ticketVariations.php:46
2787
  #: app/modules/booking/steps/checkout.php:63
2788
  msgid "Price"
@@ -2878,20 +2878,20 @@ msgstr "Maximum pro Ticket"
2878
  msgid "Inherit from event options"
2879
  msgstr "Aus den globalen Einstellungen übernehmen"
2880
 
2881
- #: app/features/events.php:2454 app/features/events.php:2492
2882
- #: app/features/mec/booking.php:589 app/features/mec/booking.php:618
2883
  msgid "Fee Title"
2884
  msgstr "Gebühren Name"
2885
 
2886
  #: app/features/events.php:2460 app/features/events.php:2464
2887
- #: app/features/events.php:2497 app/features/events.php:2500
2888
  #: app/features/mec/booking.php:593 app/features/mec/booking.php:596
2889
- #: app/features/mec/booking.php:622 app/features/mec/booking.php:625
2890
  msgid "Amount"
2891
  msgstr "Betrag"
2892
 
2893
- #: app/features/events.php:2465 app/features/events.php:2501
2894
- #: app/features/mec/booking.php:597 app/features/mec/booking.php:626
2895
  msgid ""
2896
  "Fee amount, considered as fixed amount if you set the type to amount "
2897
  "otherwise considered as percentage"
@@ -2899,101 +2899,108 @@ msgstr ""
2899
  "Gebührenbetrag, gilt als fester Betrag, wenn Sie die Art auf Betrag setzen, "
2900
  "sonst als Prozentsatz"
2901
 
2902
- #: app/features/events.php:2474 app/features/events.php:2510
2903
- #: app/features/mec/booking.php:604 app/features/mec/booking.php:633
2904
  msgid "Percent"
2905
  msgstr "Prozent"
2906
 
2907
- #: app/features/events.php:2475 app/features/events.php:2511
2908
- #: app/features/mec/booking.php:605 app/features/mec/booking.php:634
2909
  msgid "Amount (Per Ticket)"
2910
  msgstr "Betrag (pro Ticket)"
2911
 
2912
- #: app/features/events.php:2476 app/features/events.php:2512
2913
- #: app/features/mec/booking.php:606 app/features/mec/booking.php:635
 
 
 
 
 
 
 
2914
  msgid "Amount (Per Booking)"
2915
  msgstr "Betrag (pro Buchung)"
2916
 
2917
- #: app/features/events.php:2647
2918
  msgid ""
2919
  "You're translating an event so MEC will use the original event for booking "
2920
  "form. You can only translate the field name and options. Please define exact "
2921
  "fields that you defined in the original event here."
2922
  msgstr ""
2923
 
2924
- #: app/features/events.php:2673 app/features/mec/booking.php:755
2925
  #, fuzzy
2926
  #| msgid "Attendees List"
2927
  msgid "Per Attendee Fields"
2928
  msgstr "Teilnehmer Liste"
2929
 
2930
- #: app/features/events.php:2764 app/features/mec/booking.php:853
2931
  #, fuzzy
2932
  #| msgid "Required Field"
2933
  msgid "Fixed Fields"
2934
  msgstr "Pflichtfeld"
2935
 
2936
- #: app/features/events.php:2876 app/features/events.php:4684
2937
  #: app/features/mec/settings.php:1030 app/features/profile/profile.php:65
2938
  #: app/libraries/main.php:3002
2939
  msgid "Attendees"
2940
  msgstr "Teilnehmer"
2941
 
2942
- #: app/features/events.php:2879 app/features/occurrences.php:104
2943
  #, fuzzy
2944
  #| msgid "Next Occurrence"
2945
  msgid "Occurrence"
2946
  msgstr "Nächstes Event"
2947
 
2948
- #: app/features/events.php:2880 app/features/mec.php:1713
2949
  #: app/features/occurrences.php:105
2950
  #, fuzzy
2951
  #| msgid "Next Occurrence"
2952
  msgid "Previous Occurrences"
2953
  msgstr "Nächstes Event"
2954
 
2955
- #: app/features/events.php:2885 app/features/mec.php:1723
2956
  #: app/features/occurrences.php:110 app/modules/next-event/multiple.php:52
2957
  #, fuzzy
2958
  #| msgid "Next Occurrence"
2959
  msgid "Next Occurrences"
2960
  msgstr "Nächstes Event"
2961
 
2962
- #: app/features/events.php:3707 app/features/mec/meta_boxes/filter.php:199
2963
  #: app/features/mec/settings.php:517
2964
  msgid "Expired Events"
2965
  msgstr "Abgelaufene Events"
2966
 
2967
- #: app/features/events.php:3708 app/features/mec.php:1317
2968
  #: app/features/mec/dashboard.php:299 app/features/mec/settings.php:516
2969
  msgid "Upcoming Events"
2970
  msgstr "Bevorstehende Events"
2971
 
2972
- #: app/features/events.php:3728 app/features/events.php:3746
2973
- #: app/features/events.php:3764 app/features/events.php:3782
2974
  #, php-format
2975
  msgid "Show all %s"
2976
  msgstr "Zeige alle %s"
2977
 
2978
- #: app/features/events.php:3728
2979
  msgid "labels"
2980
  msgstr "Labels + Eventstatus"
2981
 
2982
- #: app/features/events.php:3746
2983
  msgid "locations"
2984
  msgstr "Orte"
2985
 
2986
- #: app/features/events.php:3764
2987
  msgid "organizers"
2988
  msgstr "Veranstalter"
2989
 
2990
- #: app/features/events.php:3798
2991
  msgid "Attendees List"
2992
  msgstr "Teilnehmer Liste"
2993
 
2994
- #: app/features/events.php:3825 app/features/events.php:4134
2995
- #: app/features/events.php:4681 app/features/fes/form.php:260
2996
- #: app/features/mec/booking.php:683 app/features/mec/booking.php:715
2997
  #: app/features/mec/styling.php:134 app/libraries/hourlyschedule.php:49
2998
  #: app/libraries/hourlyschedule.php:65 app/libraries/hourlyschedule.php:93
2999
  #: app/libraries/hourlyschedule.php:125 app/libraries/hourlyschedule.php:145
@@ -3001,48 +3008,48 @@ msgstr "Teilnehmer Liste"
3001
  msgid "Title"
3002
  msgstr "Titel"
3003
 
3004
- #: app/features/events.php:3833
3005
  #, fuzzy
3006
  #| msgid "Tickets"
3007
  msgid "Sold Tickets"
3008
  msgstr "Tickets"
3009
 
3010
- #: app/features/events.php:3835
3011
  msgid "Repeat"
3012
  msgstr "Wiederholen"
3013
 
3014
- #: app/features/events.php:4004 app/features/events.php:4005
3015
  #, fuzzy
3016
  #| msgid "iCal Export"
3017
  msgid "iCal / Outlook Export"
3018
  msgstr "ical Export"
3019
 
3020
- #: app/features/events.php:4007 app/features/events.php:4008
3021
  msgid "CSV Export"
3022
  msgstr "CSV Export"
3023
 
3024
- #: app/features/events.php:4010 app/features/events.php:4011
3025
  msgid "MS Excel Export"
3026
  msgstr "MS Excel Export"
3027
 
3028
- #: app/features/events.php:4013 app/features/events.php:4014
3029
  msgid "XML Export"
3030
  msgstr "XML Export"
3031
 
3032
- #: app/features/events.php:4016 app/features/events.php:4017
3033
  msgid "JSON Export"
3034
  msgstr "JSON Export"
3035
 
3036
- #: app/features/events.php:4019 app/features/events.php:4020
3037
- #: app/features/events.php:4246
3038
  msgid "Duplicate"
3039
  msgstr "Kopie"
3040
 
3041
- #: app/features/events.php:4140
3042
  msgid "Link"
3043
  msgstr "Link"
3044
 
3045
- #: app/features/events.php:4142 app/features/locations.php:111
3046
  #: app/features/locations.php:181 app/features/locations.php:268
3047
  #: app/features/mec/meta_boxes/search_form.php:108
3048
  #: app/features/mec/meta_boxes/search_form.php:196
@@ -3060,73 +3067,73 @@ msgstr "Link"
3060
  msgid "Address"
3061
  msgstr "Adresse"
3062
 
3063
- #: app/features/events.php:4144
3064
  #, php-format
3065
  msgid "%s Tel"
3066
  msgstr "%s Tel"
3067
 
3068
- #: app/features/events.php:4145
3069
  #, php-format
3070
  msgid "%s Email"
3071
  msgstr "%s Email"
3072
 
3073
- #: app/features/events.php:4147 app/features/fes/form.php:937
3074
  #: app/features/mec/settings.php:860
3075
  msgid "Featured Image"
3076
  msgstr "Ausgewähltes Bild"
3077
 
3078
- #: app/features/events.php:4150 app/features/fes/form.php:1030
3079
  #: app/features/mec.php:492 app/features/mec/meta_boxes/filter.php:73
3080
  #: app/features/mec/meta_boxes/filter.php:153 app/features/tag.php:59
3081
  msgid "Tags"
3082
  msgstr "Schlagworte"
3083
 
3084
- #: app/features/events.php:4154 app/features/fes/form.php:1052
3085
  #: app/features/mec.php:501 app/features/mec/modules.php:34
3086
  #: app/features/mec/modules.php:43 app/features/mec/settings.php:931
3087
  #: app/features/popup/settings.php:299 app/features/speakers.php:61
3088
  #: app/libraries/hourlyschedule.php:77 app/libraries/hourlyschedule.php:105
3089
  #: app/libraries/hourlyschedule.php:157 app/libraries/main.php:644
3090
- #: app/libraries/main.php:7123 app/libraries/main.php:7184
3091
  #: app/modules/speakers/details.php:18
3092
  msgid "Speakers"
3093
  msgstr "Sprecher"
3094
 
3095
- #: app/features/events.php:4397 app/features/fes.php:259
3096
  #: app/features/profile/profile.php:198 app/libraries/main.php:3018
3097
- #: app/libraries/main.php:7149
3098
  msgid "Ticket"
3099
  msgstr "Ticket"
3100
 
3101
- #: app/features/events.php:4400 app/features/profile/profile.php:201
3102
  msgid "Variations"
3103
  msgstr "Variationen"
3104
 
3105
- #: app/features/events.php:4415 app/features/fes.php:335
3106
  msgid "Unknown"
3107
  msgstr "Unbekannt"
3108
 
3109
- #: app/features/events.php:4443
3110
  msgid ""
3111
  "If you want to send an email, first select your attendees and then click in "
3112
  "the button below, please."
3113
  msgstr ""
3114
 
3115
- #: app/features/events.php:4443 app/features/mec/report.php:57
3116
  msgid "Send Email"
3117
  msgstr "E-Mail senden"
3118
 
3119
- #: app/features/events.php:4447
3120
  msgid "No Attendees Found!"
3121
  msgstr "Keine Teilnehmer gefunden!"
3122
 
3123
- #: app/features/events.php:4687 app/features/fes.php:259
3124
  #: app/features/mec/booking.php:351 app/features/wc.php:86
3125
  #: app/libraries/main.php:2966 app/libraries/main.php:3081
3126
  msgid "Transaction ID"
3127
  msgstr "Transaktions-ID"
3128
 
3129
- #: app/features/events.php:4745
3130
  #, fuzzy
3131
  #| msgid "No bookings found!"
3132
  msgid "No Bookings Found!"
@@ -3341,7 +3348,7 @@ msgstr "Benutzerdaten"
3341
  msgid "eg. yourname@gmail.com"
3342
  msgstr "z.B. IhrName@ihrewebseite.de"
3343
 
3344
- #: app/features/fes/form.php:813 app/features/organizers.php:294
3345
  #: app/features/popup/event.php:184
3346
  msgid "eg. John Smith"
3347
  msgstr "z.B. Max Mustermann"
@@ -3781,8 +3788,8 @@ msgstr "Event Teilnehmer"
3781
  msgid "Add to Google Calendar"
3782
  msgstr "Zum Google Kalender hinzufügen"
3783
 
3784
- #: app/features/ix/export_g_calendar.php:100 app/features/mec/booking.php:1179
3785
- #: app/features/mec/integrations.php:458 app/features/mec/modules.php:408
3786
  #: app/features/mec/notifications.php:1921 app/features/mec/settings.php:1586
3787
  #: app/features/mec/single.php:582
3788
  msgid "Checking ..."
@@ -3830,7 +3837,7 @@ msgstr ""
3830
  #: app/features/ix/import.php:58 app/features/ix/import.php:88
3831
  #: app/features/mec/booking.php:91 app/features/mec/booking.php:539
3832
  #: app/features/mec/booking.php:555 app/features/mec/booking.php:573
3833
- #: app/features/mec/booking.php:667
3834
  #: app/features/mec/meta_boxes/display_options.php:244
3835
  #: app/features/mec/meta_boxes/display_options.php:522
3836
  #: app/features/mec/modules.php:60 app/features/mec/modules.php:217
@@ -3842,7 +3849,7 @@ msgstr ""
3842
  #: app/features/ix/import.php:58 app/features/ix/import.php:88
3843
  #: app/features/ix/sync.php:22 app/features/mec/booking.php:91
3844
  #: app/features/mec/booking.php:539 app/features/mec/booking.php:555
3845
- #: app/features/mec/booking.php:573 app/features/mec/booking.php:667
3846
  #: app/features/mec/meta_boxes/display_options.php:244
3847
  #: app/features/mec/meta_boxes/display_options.php:522
3848
  #: app/features/mec/meta_boxes/display_options.php:564
@@ -4310,8 +4317,8 @@ msgstr "Event %s"
4310
 
4311
  #: app/features/locations.php:59 app/features/mec.php:495
4312
  #: app/features/mec/dashboard.php:281 app/features/mec/meta_boxes/filter.php:70
4313
- #: app/features/mec/meta_boxes/filter.php:99 app/libraries/main.php:7119
4314
- #: app/libraries/main.php:7180
4315
  msgid "Locations"
4316
  msgstr "Orte"
4317
 
@@ -4361,7 +4368,7 @@ msgid "Thumbnail"
4361
  msgstr "Miniaturansicht"
4362
 
4363
  #: app/features/locations.php:329 app/features/occurrences.php:460
4364
- #: app/features/occurrences.php:487 app/features/organizers.php:274
4365
  #, php-format
4366
  msgid "Event Main %s"
4367
  msgstr "Hauptevent % s"
@@ -4420,7 +4427,7 @@ msgstr ""
4420
  msgid "Get Latitude and Longitude"
4421
  msgstr ""
4422
 
4423
- #: app/features/locations.php:392 app/features/organizers.php:312
4424
  #: app/features/popup/event.php:203
4425
  msgid "Choose image"
4426
  msgstr "Bild wählen"
@@ -4430,8 +4437,8 @@ msgstr "Bild wählen"
4430
  msgid "Don't show map in single event page"
4431
  msgstr "Karte in Einzelansicht nicht anzeigen"
4432
 
4433
- #: app/features/locations.php:409 app/libraries/main.php:7164
4434
- #: app/libraries/main.php:7211
4435
  msgid "Other Locations"
4436
  msgstr "Andere Orte"
4437
 
@@ -4515,7 +4522,7 @@ msgstr "Support"
4515
  #: app/features/mec.php:496 app/features/mec/dashboard.php:288
4516
  #: app/features/mec/meta_boxes/filter.php:71
4517
  #: app/features/mec/meta_boxes/filter.php:117 app/features/organizers.php:59
4518
- #: app/libraries/main.php:7121 app/libraries/main.php:7182
4519
  msgid "Organizers"
4520
  msgstr "Veranstalter"
4521
 
@@ -4706,7 +4713,7 @@ msgstr "Bar"
4706
  msgid "Line"
4707
  msgstr "Linie"
4708
 
4709
- #: app/features/mec.php:1518 app/skins/general_calendar/tpl.php:142
4710
  msgid "Filter"
4711
  msgstr "Filter"
4712
 
@@ -4756,12 +4763,12 @@ msgstr ""
4756
  msgid "Search..."
4757
  msgstr "Suche…"
4758
 
4759
- #: app/features/mec/booking.php:72 app/features/mec/booking.php:903
4760
- #: app/features/mec/booking.php:1095 app/features/mec/booking.php:1104
4761
- #: app/features/mec/booking.php:1114 app/features/mec/booking.php:1196
4762
- #: app/features/mec/booking.php:1210 app/features/mec/integrations.php:19
4763
- #: app/features/mec/integrations.php:407 app/features/mec/integrations.php:417
4764
- #: app/features/mec/integrations.php:475 app/features/mec/integrations.php:489
4765
  #: app/features/mec/messages.php:20 app/features/mec/messages.php:60
4766
  #: app/features/mec/messages.php:70 app/features/mec/messages.php:108
4767
  #: app/features/mec/messages.php:118 app/features/mec/modules.php:17
@@ -5201,7 +5208,7 @@ msgid ""
5201
  "new menu on the Dashboard > Booking"
5202
  msgstr ""
5203
 
5204
- #: app/features/mec/booking.php:570 app/features/mec/booking.php:983
5205
  #: app/libraries/main.php:636
5206
  msgid "Taxes / Fees"
5207
  msgstr "Steuern/Gebühren"
@@ -5214,83 +5221,83 @@ msgstr "Modul für Gebühren/Steuern aktivieren"
5214
  msgid "Add Fee"
5215
  msgstr "Gebühr hinzufügen"
5216
 
5217
- #: app/features/mec/booking.php:645
5218
  #, fuzzy
5219
  #| msgid "Payment Gateways"
5220
  msgid "Disable Fees per Gateways"
5221
  msgstr "Zahlungs-Gateways"
5222
 
5223
- #: app/features/mec/booking.php:664 app/libraries/main.php:637
5224
  msgid "Ticket Variations & Options"
5225
  msgstr ""
5226
 
5227
- #: app/features/mec/booking.php:672
5228
  #, fuzzy
5229
  #| msgid "Enable ticket options module"
5230
  msgid "Enable ticket variations module"
5231
  msgstr "Ticket Optionen aktivieren"
5232
 
5233
- #: app/features/mec/booking.php:677
5234
  msgid "Add Variation / Option"
5235
  msgstr ""
5236
 
5237
- #: app/features/mec/booking.php:691 app/features/mec/booking.php:723
5238
  #: app/libraries/ticketVariations.php:49
5239
  msgid "Option Price"
5240
  msgstr "Preis Optionen"
5241
 
5242
- #: app/features/mec/booking.php:697 app/features/mec/booking.php:700
5243
- #: app/features/mec/booking.php:729 app/features/mec/booking.php:732
5244
  #: app/libraries/ticketVariations.php:58 app/libraries/ticketVariations.php:61
5245
  msgid "Maximum Per Ticket"
5246
  msgstr "Maximum pro Ticket"
5247
 
5248
- #: app/features/mec/booking.php:701 app/features/mec/booking.php:733
5249
  #: app/libraries/ticketVariations.php:64
5250
  #, fuzzy
5251
  #| msgid "Maximum Per Ticket. Leave it blank for unlimited."
5252
  msgid "Maximum Per Ticket. Leave blank for unlimited."
5253
  msgstr "Maximum pro Ticket. Leerlassen für unendlich."
5254
 
5255
- #: app/features/mec/booking.php:746
5256
  #, fuzzy
5257
  #| msgid "Enable cancellation notification"
5258
  msgid "Enable variations per ticket"
5259
  msgstr "Benachrichtigung bei stornierter Buchung"
5260
 
5261
- #: app/features/mec/booking.php:947 app/libraries/main.php:639
5262
  #, fuzzy
5263
  #| msgid "Upload/Add image"
5264
  msgid "Upload Field"
5265
  msgstr "Bild hochladen/hinzufügen"
5266
 
5267
- #: app/features/mec/booking.php:949
5268
  msgid "Mime types"
5269
  msgstr ""
5270
 
5271
- #: app/features/mec/booking.php:953
5272
  msgid "Split mime types with \",\"."
5273
  msgstr ""
5274
 
5275
- #: app/features/mec/booking.php:953
5276
  msgid "Default: jpeg,jpg,png,pdf"
5277
  msgstr ""
5278
 
5279
- #: app/features/mec/booking.php:956
5280
  #, fuzzy
5281
  #| msgid "Amount (Per Ticket)"
5282
  msgid "Maximum file size"
5283
  msgstr "Betrag (pro Ticket)"
5284
 
5285
- #: app/features/mec/booking.php:960
5286
  msgid "The unit is Megabyte \"MB\""
5287
  msgstr ""
5288
 
5289
- #: app/features/mec/booking.php:973
5290
  msgid "Use WooCommerce as Payment System"
5291
  msgstr ""
5292
 
5293
- #: app/features/mec/booking.php:975
5294
  msgid ""
5295
  "By enabling this feature, tickets will be added to WooCommerce cart and all "
5296
  "payment process would be done by WooCommerce so all of MEC payment related "
@@ -5298,133 +5305,133 @@ msgid ""
5298
  "fields etc, you need to configure WooCommerce on your website."
5299
  msgstr ""
5300
 
5301
- #: app/features/mec/booking.php:977
5302
  msgid ""
5303
  "You cannot use following MEC features so you should use WooCommerc and its "
5304
  "addons if you need them."
5305
  msgstr ""
5306
 
5307
- #: app/features/mec/booking.php:979
5308
  #, fuzzy
5309
  #| msgid "Payment Gateways"
5310
  msgid "Payment gateways"
5311
  msgstr "Zahlungs-Gateways"
5312
 
5313
- #: app/features/mec/booking.php:980
5314
  #, fuzzy
5315
  #| msgid "Price per Date"
5316
  msgid "Price per dates of tickets"
5317
  msgstr "Preis pro Datum"
5318
 
5319
- #: app/features/mec/booking.php:982
5320
  #, fuzzy
5321
  #| msgid "Ticket Variation"
5322
  msgid "Ticket variations"
5323
  msgstr "Ticket Variationen"
5324
 
5325
- #: app/features/mec/booking.php:984
5326
  #, fuzzy
5327
  #| msgid "Discount Type"
5328
  msgid "Discount Per Roles"
5329
  msgstr "Rabatt-Art"
5330
 
5331
- #: app/features/mec/booking.php:988
5332
  #, fuzzy
5333
  #| msgid "Automatically complete WC orders"
5334
  msgid "Automatically complete WooCommerce orders"
5335
  msgstr "WC-Aufträge automatisch abschließen"
5336
 
5337
- #: app/features/mec/booking.php:996
5338
  #, fuzzy
5339
  #| msgid "Automatically complete WC orders"
5340
  msgid "Auto WooCommerce orders"
5341
  msgstr "WC-Aufträge automatisch abschließen"
5342
 
5343
- #: app/features/mec/booking.php:997
5344
  msgid "It applies only to the orders that are related to MEC."
5345
  msgstr "Sie gilt nur für Aufträge, die mit MEC zusammenhängen."
5346
 
5347
- #: app/features/mec/booking.php:1005
5348
  #, fuzzy
5349
  #| msgid "Add to Cart"
5350
  msgid "After Add to Cart"
5351
  msgstr "in den Warenkorb legen"
5352
 
5353
- #: app/features/mec/booking.php:1008
5354
  #, fuzzy
5355
  #| msgid "Redirection Page"
5356
  msgid "Redirect to Cart"
5357
  msgstr "Weiterleitungs Seite "
5358
 
5359
- #: app/features/mec/booking.php:1009
5360
  #, fuzzy
5361
  #| msgid "Redirection Page"
5362
  msgid "Redirect to Checkout"
5363
  msgstr "Weiterleitungs Seite "
5364
 
5365
- #: app/features/mec/booking.php:1010
5366
  #, fuzzy
5367
  #| msgid "View Detail Button"
5368
  msgid "Optional View Cart Button"
5369
  msgstr "Ansicht Detail Button"
5370
 
5371
- #: app/features/mec/booking.php:1011
5372
  msgid "Optional Checkout Button"
5373
  msgstr ""
5374
 
5375
- #: app/features/mec/booking.php:1016
5376
  #, fuzzy
5377
  #| msgid "Booking Form"
5378
  msgid "MEC Booking Form"
5379
  msgstr "Buchungsformular"
5380
 
5381
- #: app/features/mec/booking.php:1025
5382
  msgid ""
5383
  "If enabled then users should fill the booking form in MEC and then they will "
5384
  "be redirected to checkout."
5385
  msgstr ""
5386
 
5387
- #: app/features/mec/booking.php:1051
5388
  msgid "Enable Organizer Payment Module"
5389
  msgstr ""
5390
 
5391
- #: app/features/mec/booking.php:1056
5392
  msgid ""
5393
  "By enabling this module, organizers are able to insert their own payment "
5394
  "credentials for enabled gateways per event and receive the payments directly!"
5395
  msgstr ""
5396
 
5397
- #: app/features/mec/booking.php:1066
5398
  msgid "Disable / Enable payment gateways per event"
5399
  msgstr ""
5400
 
5401
- #: app/features/mec/booking.php:1070
5402
  #, fuzzy
5403
  #| msgid "Payment Gateways"
5404
  msgid "Payment Gateways Per Event"
5405
  msgstr "Zahlungs-Gateways"
5406
 
5407
- #: app/features/mec/booking.php:1071
5408
  msgid ""
5409
  "By enabling this module, users are able to disable / enable payment gateways "
5410
  "per event"
5411
  msgstr ""
5412
 
5413
- #: app/features/mec/booking.php:1081
5414
  msgid "Automatically refund the payment"
5415
  msgstr ""
5416
 
5417
- #: app/features/mec/booking.php:1085
5418
  msgid "Auto Refund"
5419
  msgstr ""
5420
 
5421
- #: app/features/mec/booking.php:1086
5422
  msgid ""
5423
  "Automatically refund the payment when a booking paid by applicable gateways "
5424
  "(Stripe) got canceled."
5425
  msgstr ""
5426
 
5427
- #: app/features/mec/booking.php:1174 app/features/mec/integrations.php:453
5428
  #: app/features/mec/messages.php:90 app/features/mec/modules.php:403
5429
  #: app/features/mec/notifications.php:1916 app/features/mec/settings.php:1581
5430
  #: app/features/mec/single.php:577 app/features/mec/styles.php:62
@@ -5432,7 +5439,7 @@ msgstr ""
5432
  msgid "Saved"
5433
  msgstr "Gesichert"
5434
 
5435
- #: app/features/mec/booking.php:1175 app/features/mec/integrations.php:454
5436
  #: app/features/mec/messages.php:91 app/features/mec/modules.php:404
5437
  #: app/features/mec/notifications.php:1917 app/features/mec/settings.php:1582
5438
  #: app/features/mec/single.php:578 app/features/mec/styles.php:63
@@ -5440,7 +5447,7 @@ msgstr "Gesichert"
5440
  msgid "Settings Saved!"
5441
  msgstr "Einstellungen gespeichert!"
5442
 
5443
- #: app/features/mec/booking.php:1201 app/features/mec/integrations.php:480
5444
  #: app/features/mec/modules.php:430 app/features/mec/notifications.php:1944
5445
  #: app/features/mec/settings.php:1608 app/features/mec/single.php:604
5446
  msgid "Please Refresh Page"
@@ -5768,82 +5775,57 @@ msgstr "Adresse"
5768
  msgid "Enable BuddyPress Integration"
5769
  msgstr "Buddy Press Integration deaktivieren"
5770
 
5771
- #: app/features/mec/integrations.php:317
5772
- #, fuzzy
5773
- #| msgid "Time Format"
5774
- msgid "DateTime Format"
5775
- msgstr "Zeitformat"
5776
-
5777
- #: app/features/mec/integrations.php:325
5778
- #, fuzzy
5779
- #| msgid "Hide Events"
5780
- msgid "Hide group events"
5781
- msgstr "Events verbergen"
5782
-
5783
- #: app/features/mec/integrations.php:331
5784
  msgid "Show \"Attendees Module\" in event details page"
5785
  msgstr "Zeigt \"Teilnehmermodul\" in Event Details Seite"
5786
 
5787
- #: app/features/mec/integrations.php:335
5788
  #, fuzzy
5789
  #| msgid "Attendees Limit"
5790
  msgid "Attendee Limit"
5791
  msgstr "Teilnehmer Limit, maximale Anzahl"
5792
 
5793
- #: app/features/mec/integrations.php:343
5794
  msgid "Add booking activity to user profile"
5795
  msgstr "Fügt Buchungsaktivitäten dem Benutzerprofil hinzu"
5796
 
5797
- #: app/features/mec/integrations.php:349
5798
  #, fuzzy
5799
  #| msgid "Add booking activity to user profile"
5800
  msgid "Add events menu to user profile"
5801
  msgstr "Fügt Buchungsaktivitäten dem Benutzerprofil hinzu"
5802
 
5803
- #: app/features/mec/integrations.php:355 app/features/mec/integrations.php:371
5804
- #, fuzzy
5805
- #| msgid "Frontend Event Submission"
5806
- msgid "Event submission roles"
5807
- msgstr "Erstellung von Veranstaltungen im Frontend"
5808
-
5809
- #: app/features/mec/integrations.php:372
5810
- #, fuzzy
5811
- #| msgid "Sorry! You don't have access to modify this event."
5812
- msgid "Select roles that have access to submission events"
5813
- msgstr ""
5814
- "Entschuldigung! Sie haben keine Berechtigung zum Ändern dieser Veranstaltung"
5815
-
5816
- #: app/features/mec/integrations.php:381 app/libraries/main.php:617
5817
  #, fuzzy
5818
  #| msgid "Search Coupons"
5819
  msgid "LearnDash"
5820
  msgstr "Gutscheine suchen"
5821
 
5822
- #: app/features/mec/integrations.php:385
5823
  #, fuzzy
5824
  #| msgid "Enable Mailchimp Integration"
5825
  msgid "Enable LearnDash Integration"
5826
  msgstr "Mailchimp Integration deaktivieren"
5827
 
5828
- #: app/features/mec/integrations.php:388
5829
  #, fuzzy
5830
  #| msgid "Third Party plugin is not installed and activated!"
5831
  msgid "LearnDash plugin should be installed and activated."
5832
  msgstr "Drittanbieter-Plugin ist nicht installiert und aktiviert!"
5833
 
5834
- #: app/features/mec/integrations.php:391 app/libraries/main.php:618
5835
  #, fuzzy
5836
  #| msgid "Mailchimp Integration"
5837
  msgid "PaidMembership Pro"
5838
  msgstr "Mailchimp Integration"
5839
 
5840
- #: app/features/mec/integrations.php:395
5841
  #, fuzzy
5842
  #| msgid "Enable Mailchimp Integration"
5843
  msgid "Enable PaidMembership Pro Integration"
5844
  msgstr "Mailchimp Integration deaktivieren"
5845
 
5846
- #: app/features/mec/integrations.php:398
5847
  #, fuzzy
5848
  #| msgid "Third Party plugin is not installed and activated!"
5849
  msgid "PaidMembership Pro plugin should be installed and activated."
@@ -7105,7 +7087,7 @@ msgstr ""
7105
  #: app/features/mec/single.php:511 app/features/popup/settings.php:233
7106
  #: app/features/popup/settings.php:272 app/features/search.php:109
7107
  #: app/features/speakers.php:60 app/features/speakers.php:286
7108
- #: app/libraries/main.php:7124 app/libraries/main.php:7185
7109
  #: app/libraries/search.php:334 app/libraries/skins.php:1193
7110
  #: app/modules/speakers/details.php:18
7111
  msgid "Speaker"
@@ -8408,7 +8390,7 @@ msgstr ""
8408
  "Informieren, dass eine neue Buchung eingegangen ist."
8409
 
8410
  #: app/features/mec/notifications.php:1230 app/features/notifications.php:120
8411
- #: app/libraries/main.php:667 app/libraries/notifications.php:823
8412
  msgid "Booking Reminder"
8413
  msgstr "Buchungs Erinnerung"
8414
 
@@ -8439,8 +8421,8 @@ msgstr ""
8439
  msgid "only once per hour"
8440
  msgstr "nur einmal pro Tag"
8441
 
8442
- #: app/features/mec/notifications.php:1312 app/libraries/main.php:8355
8443
- #: app/libraries/main.php:8372
8444
  #, fuzzy
8445
  #| msgid "Hour"
8446
  msgid "Hours"
@@ -8770,8 +8752,8 @@ msgid "You can enable/disable Schema scripts"
8770
  msgstr ""
8771
 
8772
  #: app/features/mec/settings.php:137 app/features/mec/settings.php:148
8773
- #: app/features/popup/settings.php:41 app/libraries/main.php:7128
8774
- #: app/libraries/main.php:7189
8775
  msgid "Weekdays"
8776
  msgstr "Wochentage"
8777
 
@@ -9269,12 +9251,12 @@ msgid "Display Event Date in List"
9269
  msgstr "Mehrtagesveranstaltung"
9270
 
9271
  #: app/features/mec/settings.php:751 app/features/mec/settings.php:917
9272
- #: app/libraries/notifications.php:2072
9273
  msgid "No"
9274
  msgstr "Nein"
9275
 
9276
  #: app/features/mec/settings.php:752 app/features/mec/settings.php:916
9277
- #: app/libraries/notifications.php:2072
9278
  msgid "Yes"
9279
  msgstr "Ja"
9280
 
@@ -9458,8 +9440,8 @@ msgstr ""
9458
  msgid "Required Fields"
9459
  msgstr "Pflichtfeld"
9460
 
9461
- #: app/features/mec/settings.php:1149 app/libraries/main.php:7160
9462
- #: app/libraries/main.php:7207
9463
  msgid "More Info Link"
9464
  msgstr "Link Mehr Informationen"
9465
 
@@ -10750,12 +10732,12 @@ msgid "Choose one of saved locations."
10750
  msgstr ""
10751
  "Wählen Sie einen der gespeicherten Orte aus, oder fügen Sie einen neuen ein."
10752
 
10753
- #: app/features/occurrences.php:491 app/features/organizers.php:277
10754
  #: app/features/popup/event.php:165
10755
  msgid "Hide organizer"
10756
  msgstr "Veranstalter verbergen"
10757
 
10758
- #: app/features/occurrences.php:499 app/features/organizers.php:286
10759
  #: app/features/popup/event.php:174
10760
  msgid "Choose one of saved organizers or insert new one below."
10761
  msgstr ""
@@ -10771,7 +10753,7 @@ msgid "Insert organizer email address."
10771
  msgstr "Veranstalter Email-Adresse einfügen"
10772
 
10773
  #: app/features/organizers.php:120 app/features/organizers.php:157
10774
- #: app/features/organizers.php:305 app/features/popup/event.php:197
10775
  msgid "Link to organizer page"
10776
  msgstr "Link zur Seite des Veranstalters"
10777
 
@@ -10785,38 +10767,38 @@ msgstr ""
10785
  msgid "Contact info"
10786
  msgstr "Kontaktdaten"
10787
 
10788
- #: app/features/organizers.php:278 app/features/popup/event.php:166
10789
  msgid "Insert a new organizer"
10790
  msgstr "Neuen Veranstalter einfügen"
10791
 
10792
- #: app/features/organizers.php:297 app/features/popup/event.php:187
10793
  msgid "Phone number."
10794
  msgstr "Telefon"
10795
 
10796
- #: app/features/organizers.php:298 app/features/popup/event.php:188
10797
  msgid "eg. +1 (234) 5678"
10798
  msgstr "z.B. +49 (1234) 56789"
10799
 
10800
- #: app/features/organizers.php:301 app/features/popup/event.php:192
10801
  msgid "Email address."
10802
  msgstr "Mailadresse"
10803
 
10804
- #: app/features/organizers.php:302 app/features/popup/event.php:193
10805
  msgid "eg. john@smith.com"
10806
  msgstr "z.B.. max@mustermann.com"
10807
 
10808
- #: app/features/organizers.php:306 app/features/popup/event.php:198
10809
  #, fuzzy
10810
  #| msgid "http://webnus.net"
10811
  msgid "eg. https://webnus.net"
10812
  msgstr "http://webnus.net"
10813
 
10814
- #: app/features/organizers.php:326 app/libraries/main.php:7163
10815
- #: app/libraries/main.php:7210 app/skins/single.php:1446
10816
  msgid "Other Organizers"
10817
  msgstr "Andere Veranstalter"
10818
 
10819
- #: app/features/organizers.php:328
10820
  msgid ""
10821
  "You can select extra organizers in addition to main organizer if you like."
10822
  msgstr ""
@@ -11196,9 +11178,9 @@ msgid "Other Dates"
11196
  msgstr "Datum Bestellung"
11197
 
11198
  #: app/features/wc.php:108 app/features/wc.php:131 app/libraries/main.php:2949
11199
- #: app/libraries/notifications.php:1600 app/libraries/notifications.php:1615
11200
- #: app/libraries/notifications.php:1626 app/libraries/notifications.php:1642
11201
- #: app/libraries/notifications.php:1949 app/libraries/notifications.php:1950
11202
  #, php-format
11203
  msgid "%s to %s"
11204
  msgstr "%s zu %s"
@@ -11213,25 +11195,25 @@ msgstr ""
11213
  msgid "Only %s slots remained for %s ticket so you cannot book %s ones."
11214
  msgstr ""
11215
 
11216
- #: app/features/wc.php:251 app/libraries/main.php:7147
11217
  #, php-format
11218
  msgid "Maximum allowed number of tickets that you can book is %s."
11219
  msgstr ""
11220
 
11221
- #: app/libraries/book.php:105
11222
  msgid " ("
11223
  msgstr ""
11224
 
11225
- #: app/libraries/book.php:141
11226
  #, php-format
11227
  msgid "%s Price"
11228
  msgstr "%s Preis"
11229
 
11230
- #: app/libraries/book.php:868 app/libraries/book.php:959
11231
  msgid "Discount"
11232
  msgstr "Rabatt"
11233
 
11234
- #: app/libraries/book.php:1051 app/modules/booking/default.php:654
11235
  #: app/modules/booking/default.php:767
11236
  msgid "Download Invoice"
11237
  msgstr "Download Rechnung"
@@ -11408,38 +11390,38 @@ msgstr "Slideransicht"
11408
  msgid "Timeline View"
11409
  msgstr "Stundenplan"
11410
 
11411
- #: app/libraries/main.php:439 app/libraries/main.php:7130
11412
- #: app/libraries/main.php:7191
11413
  msgid "SU"
11414
  msgstr "SO"
11415
 
11416
- #: app/libraries/main.php:440 app/libraries/main.php:7131
11417
- #: app/libraries/main.php:7192
11418
  msgid "MO"
11419
  msgstr "MO"
11420
 
11421
- #: app/libraries/main.php:441 app/libraries/main.php:7132
11422
- #: app/libraries/main.php:7193
11423
  msgid "TU"
11424
  msgstr "DI"
11425
 
11426
- #: app/libraries/main.php:442 app/libraries/main.php:7133
11427
- #: app/libraries/main.php:7194
11428
  msgid "WE"
11429
  msgstr "MI"
11430
 
11431
- #: app/libraries/main.php:443 app/libraries/main.php:7134
11432
- #: app/libraries/main.php:7195
11433
  msgid "TH"
11434
  msgstr "DO"
11435
 
11436
- #: app/libraries/main.php:444 app/libraries/main.php:7135
11437
- #: app/libraries/main.php:7196
11438
  msgid "FR"
11439
  msgstr "FR"
11440
 
11441
- #: app/libraries/main.php:445 app/libraries/main.php:7136
11442
- #: app/libraries/main.php:7197
11443
  msgid "SA"
11444
  msgstr "SA"
11445
 
@@ -11770,7 +11752,7 @@ msgstr ""
11770
  msgid "Free"
11771
  msgstr "kostenfrei"
11772
 
11773
- #: app/libraries/main.php:4917 app/libraries/main.php:7517
11774
  msgid "M.E. Calender"
11775
  msgstr "M.E. Calender"
11776
 
@@ -11788,103 +11770,103 @@ msgstr "Eine Veranstaltung wurde gebucht."
11788
  msgid "%s booked %s event."
11789
  msgstr "%s gebuchtes %s Event"
11790
 
11791
- #: app/libraries/main.php:7113 app/libraries/main.php:7174
11792
  msgid "Taxonomies"
11793
  msgstr "Klassifizierung "
11794
 
11795
- #: app/libraries/main.php:7115 app/libraries/main.php:7176
11796
  msgid "Category Plural Label"
11797
  msgstr "Kategorien"
11798
 
11799
- #: app/libraries/main.php:7116 app/libraries/main.php:7177
11800
  msgid "Category Singular Label"
11801
  msgstr "Kategorie"
11802
 
11803
- #: app/libraries/main.php:7117 app/libraries/main.php:7178
11804
  msgid "Label Plural Label"
11805
  msgstr "Labels"
11806
 
11807
- #: app/libraries/main.php:7118 app/libraries/main.php:7179
11808
  msgid "Label Singular Label"
11809
  msgstr "Label"
11810
 
11811
- #: app/libraries/main.php:7118 app/libraries/main.php:7179
11812
  msgid "label"
11813
  msgstr "label"
11814
 
11815
- #: app/libraries/main.php:7119 app/libraries/main.php:7180
11816
  msgid "Location Plural Label"
11817
  msgstr "Veranstaltungsorte"
11818
 
11819
- #: app/libraries/main.php:7120 app/libraries/main.php:7181
11820
  msgid "Location Singular Label"
11821
  msgstr "Veranstaltungsort"
11822
 
11823
- #: app/libraries/main.php:7121 app/libraries/main.php:7182
11824
  msgid "Organizer Plural Label"
11825
  msgstr "Veranstalter"
11826
 
11827
- #: app/libraries/main.php:7122 app/libraries/main.php:7183
11828
  msgid "Organizer Singular Label"
11829
  msgstr "Veranstalter"
11830
 
11831
- #: app/libraries/main.php:7123 app/libraries/main.php:7184
11832
  #, fuzzy
11833
  #| msgid "Label Plural Label"
11834
  msgid "Speaker Plural Label"
11835
  msgstr "Labels"
11836
 
11837
- #: app/libraries/main.php:7124 app/libraries/main.php:7185
11838
  #, fuzzy
11839
  #| msgid "Label Singular Label"
11840
  msgid "Speaker Singular Label"
11841
  msgstr "Label"
11842
 
11843
- #: app/libraries/main.php:7130 app/libraries/main.php:7191
11844
  msgid "Sunday abbreviation"
11845
  msgstr "Sonntag Abkürzung"
11846
 
11847
- #: app/libraries/main.php:7131 app/libraries/main.php:7192
11848
  msgid "Monday abbreviation"
11849
  msgstr "Montag Abkürzung"
11850
 
11851
- #: app/libraries/main.php:7132 app/libraries/main.php:7193
11852
  msgid "Tuesday abbreviation"
11853
  msgstr "Dienstag Abkürzung"
11854
 
11855
- #: app/libraries/main.php:7133 app/libraries/main.php:7194
11856
  msgid "Wednesday abbreviation"
11857
  msgstr "Mittwoch Abkürzung"
11858
 
11859
- #: app/libraries/main.php:7134 app/libraries/main.php:7195
11860
  msgid "Thursday abbreviation"
11861
  msgstr "Donnerstag Abkürzung"
11862
 
11863
- #: app/libraries/main.php:7135 app/libraries/main.php:7196
11864
  msgid "Friday abbreviation"
11865
  msgstr "Freitag Abkürzung"
11866
 
11867
- #: app/libraries/main.php:7136 app/libraries/main.php:7197
11868
  msgid "Saturday abbreviation"
11869
  msgstr "Samstag Abkürzung "
11870
 
11871
- #: app/libraries/main.php:7142
11872
  #, fuzzy
11873
  #| msgid "Ticket (Singular)"
11874
  msgid "Booking (Singular)"
11875
  msgstr "Ticket"
11876
 
11877
- #: app/libraries/main.php:7143
11878
  #, fuzzy
11879
  #| msgid "Tickets (Plural)"
11880
  msgid "Bookings (Plural)"
11881
  msgstr "Tickets"
11882
 
11883
- #: app/libraries/main.php:7144
11884
  msgid "Booking Success Message"
11885
  msgstr "Buchung erfolgreich Mitteilung"
11886
 
11887
- #: app/libraries/main.php:7144
11888
  #, fuzzy
11889
  #| msgid ""
11890
  #| "Thanks for your booking. Your tickets booked, booking verification might "
@@ -11896,72 +11878,72 @@ msgstr ""
11896
  "Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
11897
  "Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
11898
 
11899
- #: app/libraries/main.php:7145
11900
  #, fuzzy
11901
  #| msgid "Booking Success Message"
11902
  msgid "Booking Restriction Message 1"
11903
  msgstr "Buchung erfolgreich Mitteilung"
11904
 
11905
- #: app/libraries/main.php:7145
11906
  #, php-format
11907
  msgid ""
11908
  "You selected %s tickets to book but maximum number of tikets per user is %s "
11909
  "tickets."
11910
  msgstr ""
11911
 
11912
- #: app/libraries/main.php:7146
11913
  #, fuzzy
11914
  #| msgid "Booking Success Message"
11915
  msgid "Booking Restriction Message 2"
11916
  msgstr "Buchung erfolgreich Mitteilung"
11917
 
11918
- #: app/libraries/main.php:7146
11919
  #, php-format
11920
  msgid ""
11921
  "You booked %s tickets till now but maximum number of tickets per user is %s "
11922
  "tickets."
11923
  msgstr ""
11924
 
11925
- #: app/libraries/main.php:7147
11926
  #, fuzzy
11927
  #| msgid "Booking Success Message"
11928
  msgid "Booking IP Restriction Message"
11929
  msgstr "Buchung erfolgreich Mitteilung"
11930
 
11931
- #: app/libraries/main.php:7148
11932
  #, fuzzy
11933
  #| msgid "Booking Options"
11934
  msgid "Booking Button"
11935
  msgstr "Buchungsoptionen"
11936
 
11937
- #: app/libraries/main.php:7148
11938
  #, fuzzy
11939
  #| msgid "Booking Form"
11940
  msgid "Book Now"
11941
  msgstr "Buchungsformular"
11942
 
11943
- #: app/libraries/main.php:7149
11944
  msgid "Ticket (Singular)"
11945
  msgstr "Ticket"
11946
 
11947
- #: app/libraries/main.php:7150
11948
  msgid "Tickets (Plural)"
11949
  msgstr "Tickets"
11950
 
11951
- #: app/libraries/main.php:7154 app/libraries/main.php:7201
11952
  msgid "Others"
11953
  msgstr "Andere"
11954
 
11955
- #: app/libraries/main.php:7156 app/libraries/main.php:7203
11956
  #: app/widgets/single.php:128
11957
  msgid "Register Button"
11958
  msgstr "Register Button"
11959
 
11960
- #: app/libraries/main.php:7157 app/libraries/main.php:7204
11961
  msgid "View Detail Button"
11962
  msgstr "Ansicht Detail Button"
11963
 
11964
- #: app/libraries/main.php:7157 app/libraries/main.php:7204
11965
  #: app/skins/carousel/render.php:105 app/skins/carousel/render.php:145
11966
  #: app/skins/grid/render.php:94 app/skins/grid/render.php:153
11967
  #: app/skins/grid/render.php:214 app/skins/grid/render.php:237
@@ -11973,210 +11955,210 @@ msgstr "Ansicht Detail Button"
11973
  msgid "View Detail"
11974
  msgstr "Details "
11975
 
11976
- #: app/libraries/main.php:7158 app/libraries/main.php:7205
11977
  msgid "Event Detail Button"
11978
  msgstr "Event Detail Button"
11979
 
11980
- #: app/libraries/main.php:7158 app/libraries/main.php:7205
11981
  msgid "Event Detail"
11982
  msgstr "Veranstaltungsdetails"
11983
 
11984
- #: app/libraries/main.php:7320
11985
  msgid "EventON"
11986
  msgstr "EventON"
11987
 
11988
- #: app/libraries/main.php:7321
11989
  msgid "The Events Calendar"
11990
  msgstr "The Events Calendar"
11991
 
11992
- #: app/libraries/main.php:7322
11993
  msgid "Events Schedule WP Plugin"
11994
  msgstr "Event Zeitplan WP-Plugin"
11995
 
11996
- #: app/libraries/main.php:7323
11997
  msgid "Calendarize It"
11998
  msgstr ""
11999
 
12000
- #: app/libraries/main.php:7324
12001
  #, fuzzy
12002
  #| msgid "No Search Options"
12003
  msgid "Event Espresso"
12004
  msgstr "Keine Suchoptionen"
12005
 
12006
- #: app/libraries/main.php:7325
12007
  msgid "Events Manager (Recurring)"
12008
  msgstr "Wiederholende Veranstaltung"
12009
 
12010
- #: app/libraries/main.php:7326
12011
  msgid "Events Manager (Single)"
12012
  msgstr "Moderner Event Kalender"
12013
 
12014
- #: app/libraries/main.php:7327
12015
  #, fuzzy
12016
  #| msgid "Events Manager (Single)"
12017
  msgid "WP Event Manager"
12018
  msgstr "Moderner Event Kalender"
12019
 
12020
- #: app/libraries/main.php:7547
12021
  #, fuzzy
12022
  #| msgid "Sunday"
12023
  msgid "Sun"
12024
  msgstr "Sonntag"
12025
 
12026
- #: app/libraries/main.php:7547
12027
  #, fuzzy
12028
  #| msgid "Month"
12029
  msgid "Mon"
12030
  msgstr "Monat "
12031
 
12032
- #: app/libraries/main.php:7547
12033
  #, fuzzy
12034
  #| msgid "Tel"
12035
  msgid "Tue"
12036
  msgstr "Tel"
12037
 
12038
- #: app/libraries/main.php:7547
12039
  msgid "Wed"
12040
  msgstr ""
12041
 
12042
- #: app/libraries/main.php:7547
12043
  msgid "Thu"
12044
  msgstr ""
12045
 
12046
- #: app/libraries/main.php:7547
12047
  #, fuzzy
12048
  #| msgid "Friday"
12049
  msgid "Fri"
12050
  msgstr "Freitag"
12051
 
12052
- #: app/libraries/main.php:7547
12053
  #, fuzzy
12054
  #| msgid "Start"
12055
  msgid "Sat"
12056
  msgstr "Start"
12057
 
12058
- #: app/libraries/main.php:7753 app/libraries/render.php:82
12059
  #: app/libraries/render.php:467
12060
  msgid "Skin controller does not exist."
12061
  msgstr "Skin contoller existiert nicht."
12062
 
12063
- #: app/libraries/main.php:7990
12064
  msgid "Sold Out"
12065
  msgstr "Ausgebucht"
12066
 
12067
- #: app/libraries/main.php:8021
12068
  msgid "Last Few Tickets"
12069
  msgstr "Nur noch wenige Tickets verfügbar."
12070
 
12071
- #: app/libraries/main.php:8293
12072
  #, fuzzy
12073
  #| msgid "Loading..."
12074
  msgid "Ongoing"
12075
  msgstr "Laden…"
12076
 
12077
- #: app/libraries/main.php:8295
12078
  #, fuzzy
12079
  #| msgid "Expired Events"
12080
  msgid "Expired"
12081
  msgstr "Abgelaufene Events"
12082
 
12083
- #: app/libraries/main.php:8361 app/libraries/main.php:8378
12084
  #, fuzzy
12085
  #| msgid "minutes"
12086
  msgid "Minutes"
12087
  msgstr "Minuten"
12088
 
12089
- #: app/libraries/main.php:8383
12090
  msgid "AM / PM"
12091
  msgstr ""
12092
 
12093
- #: app/libraries/main.php:8384
12094
  msgid "AM"
12095
  msgstr "AM"
12096
 
12097
- #: app/libraries/main.php:8385
12098
  msgid "PM"
12099
  msgstr "PM"
12100
 
12101
- #: app/libraries/main.php:8393
12102
  #, fuzzy
12103
  #| msgid "Loading..."
12104
  msgid "Ongoing..."
12105
  msgstr "Laden…"
12106
 
12107
- #: app/libraries/main.php:8394 app/skins/single.php:229
12108
  #, fuzzy
12109
  #| msgid "Expired Events"
12110
  msgid "Expired!"
12111
  msgstr "Abgelaufene Events"
12112
 
12113
- #: app/libraries/main.php:9004
12114
  #, fuzzy
12115
  #| msgid "Categories"
12116
  msgid "Uncategorized"
12117
  msgstr "Kategorien"
12118
 
12119
- #: app/libraries/notifications.php:72
12120
  msgid "Please verify your email."
12121
  msgstr "Bitte bestätigen Sie Ihre email."
12122
 
12123
- #: app/libraries/notifications.php:181
12124
  msgid "Your booking is received."
12125
  msgstr "Ihre Buchung ist eingegangen"
12126
 
12127
- #: app/libraries/notifications.php:306
12128
  msgid "Your booking is confirmed."
12129
  msgstr "Ihre Buchung wurde bestätigt."
12130
 
12131
- #: app/libraries/notifications.php:492
12132
  msgid "booking canceled."
12133
  msgstr "Ihre Buchung wurde storniert"
12134
 
12135
- #: app/libraries/notifications.php:641
12136
  #, fuzzy
12137
  #| msgid "booking canceled."
12138
  msgid "booking rejected."
12139
  msgstr "Ihre Buchung wurde storniert"
12140
 
12141
- #: app/libraries/notifications.php:706
12142
  msgid "A new booking is received."
12143
  msgstr "Eine neue Buchung ist eingegangen."
12144
 
12145
- #: app/libraries/notifications.php:967
12146
  msgid "A new event is added."
12147
  msgstr "Eine neue Veranstaltung wurde hinzugefügt."
12148
 
12149
- #: app/libraries/notifications.php:1105
12150
  msgid "Your event is published."
12151
  msgstr "Die Veranstaltung wurde veröffentlicht."
12152
 
12153
- #: app/libraries/notifications.php:1300
12154
  #, fuzzy
12155
  #| msgid "Event Color"
12156
  msgid "Event is soldout!"
12157
  msgstr "Farbe der Veranstaltung"
12158
 
12159
- #: app/libraries/notifications.php:1412
12160
  #, fuzzy
12161
  #| msgid "Thanks for your booking."
12162
  msgid "Thanks for your attention!"
12163
  msgstr "Vielen Dank für Ihre Buchung."
12164
 
12165
- #: app/libraries/notifications.php:1889
12166
  msgid "to"
12167
  msgstr ""
12168
 
12169
- #: app/libraries/notifications.php:1919 app/modules/export/details.php:80
12170
  msgid "+ Add to Google Calendar"
12171
  msgstr "+ zum Google Calendar hinzufügen"
12172
 
12173
- #: app/libraries/notifications.php:1920 app/modules/export/details.php:81
12174
  #, fuzzy
12175
  #| msgid "+ iCal export"
12176
  msgid "+ iCal / Outlook export"
12177
  msgstr "+ zu iCal exportieren"
12178
 
12179
- #: app/libraries/notifications.php:1964
12180
  #, fuzzy, php-format
12181
  #| msgid "+ Add to Google Calendar"
12182
  msgid "+ %s to Google Calendar"
@@ -12568,7 +12550,7 @@ msgstr "Stundenplan"
12568
  msgid "No Events"
12569
  msgstr "Keine Veranstaltungen"
12570
 
12571
- #: app/skins/general_calendar/tpl.php:96
12572
  #, fuzzy
12573
  #| msgid "Found Events"
12574
  msgid "Find Events"
@@ -12741,6 +12723,28 @@ msgstr "z.B. Webnus"
12741
  msgid "http://webnus.net"
12742
  msgstr "http://webnus.net"
12743
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12744
  #~ msgid "Organizer Tel"
12745
  #~ msgstr "Organisator Telefon"
12746
 
2
  msgstr ""
3
  "Project-Id-Version: ME Calender\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-11-17 13:15+0330\n"
6
+ "PO-Revision-Date: 2021-11-17 13:20+0330\n"
7
  "Last-Translator: Jogon <koenig@kafinanz.de>\n"
8
  "Language-Team: German\n"
9
  "Language: de_DE\n"
96
  msgstr "Neuen Shortcode hinzufügen"
97
 
98
  #: app/core/src/Books/Book.php:106 app/features/ix.php:284
99
+ #: app/libraries/main.php:7457 app/libraries/main.php:7484
100
  msgid "Rejected"
101
  msgstr "Abgelehnt"
102
 
103
  #: app/core/src/Books/Book.php:111 app/features/ix.php:283
104
+ #: app/libraries/main.php:7456 app/libraries/main.php:7476
105
  msgid "Confirmed"
106
  msgstr "Bestätigt"
107
 
108
  #: app/core/src/Books/Book.php:117 app/features/mec/settings.php:742
109
+ #: app/libraries/main.php:7458 app/libraries/main.php:7480
110
  msgid "Pending"
111
  msgstr "Ausstehend"
112
 
113
  #: app/core/src/Books/Book.php:186 app/features/ix.php:289
114
  #: app/features/labels.php:119 app/features/labels.php:145
115
+ #: app/libraries/main.php:7505
116
  msgid "Canceled"
117
  msgstr "Abgesagt"
118
 
119
  #: app/core/src/Books/Book.php:191 app/features/ix.php:288
120
+ #: app/features/mec/booking.php:1179 app/features/mec/booking.php:1201
121
+ #: app/features/mec/integrations.php:418 app/features/mec/integrations.php:440
122
  #: app/features/mec/modules.php:406 app/features/mec/modules.php:428
123
  #: app/features/mec/notifications.php:1919
124
  #: app/features/mec/notifications.php:1942 app/features/mec/settings.php:1584
125
  #: app/features/mec/settings.php:1606 app/features/mec/single.php:580
126
+ #: app/features/mec/single.php:602 app/libraries/main.php:7504
127
  msgid "Verified"
128
  msgstr "Verifiziert"
129
 
130
+ #: app/core/src/Books/Book.php:197 app/libraries/main.php:7506
131
  msgid "Waiting"
132
  msgstr "in Bearbeitung"
133
 
154
  #: app/core/src/Forms/FormFields.php:188 app/core/src/Forms/SettingsForm.php:93
155
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:70
156
  #: app/features/autoemails.php:60 app/features/events.php:602
157
+ #: app/features/events.php:2641 app/features/events.php:2708
158
+ #: app/features/events.php:2797 app/features/events.php:4396
159
  #: app/features/fes.php:259 app/features/fes/form.php:808
160
  #: app/features/login/login.php:5 app/features/mec/booking.php:57
161
+ #: app/features/mec/booking.php:793 app/features/mec/booking.php:891
162
  #: app/features/mec/settings.php:295 app/features/mec/single.php:288
163
  #: app/features/organizers.php:112 app/features/organizers.php:153
164
  #: app/features/profile/profile.php:195 app/features/speakers.php:128
165
  #: app/features/speakers.php:205 app/libraries/main.php:604
166
  #: app/libraries/main.php:2071 app/libraries/main.php:2140
167
+ #: app/libraries/main.php:3702 app/libraries/notifications.php:2069
168
  #: app/modules/booking/steps/form.php:68 app/modules/booking/steps/form.php:217
169
  #: app/skins/single.php:1406 app/skins/single.php:1473
170
  #: app/skins/single/default.php:347 app/skins/single/default.php:593
186
  #: app/core/src/Forms/FormFields.php:341 app/core/src/Forms/FormFields.php:372
187
  #: app/core/src/Forms/FormFields.php:396 app/core/src/Forms/FormFields.php:442
188
  #: app/core/src/Forms/FormFields.php:488 app/core/src/Forms/FormFields.php:544
189
+ #: app/core/src/Forms/FormFields.php:596 app/features/organizers.php:340
190
+ #: app/features/organizers.php:348 app/libraries/main.php:3610
191
  #: app/libraries/main.php:3641 app/libraries/main.php:3671
192
  #: app/libraries/main.php:3701 app/libraries/main.php:3732
193
  #: app/libraries/main.php:3763 app/libraries/main.php:3793
199
  msgstr "Sortieren"
200
 
201
  #: app/core/src/Forms/FormFields.php:52 app/core/src/Forms/SettingsForm.php:88
202
+ #: app/features/events.php:2707 app/features/events.php:2796
203
+ #: app/features/mec/booking.php:792 app/features/mec/booking.php:890
204
  #: app/features/mec/single.php:287 app/libraries/main.php:3611
205
  #: app/libraries/skins.php:1367
206
  msgid "Text"
231
  #: app/core/src/Forms/FormFields.php:505 app/core/src/Forms/FormFields.php:554
232
  #: app/core/src/Forms/FormFields.php:597 app/features/events.php:2105
233
  #: app/features/events.php:2131 app/features/events.php:2344
234
+ #: app/features/events.php:2481 app/features/events.php:2518
235
+ #: app/features/mec/booking.php:610 app/features/mec/booking.php:640
236
+ #: app/features/mec/booking.php:708 app/features/mec/booking.php:740
237
+ #: app/features/organizers.php:340 app/features/organizers.php:349
238
  #: app/libraries/hourlyschedule.php:53 app/libraries/hourlyschedule.php:74
239
  #: app/libraries/hourlyschedule.php:102 app/libraries/hourlyschedule.php:130
240
  #: app/libraries/hourlyschedule.php:154 app/libraries/main.php:3621
277
  msgid "MEC Last Name"
278
  msgstr "MEC Name"
279
 
280
+ #: app/core/src/Forms/FormFields.php:93 app/features/events.php:2705
281
+ #: app/features/mec/booking.php:790 app/libraries/main.php:3642
282
  msgid "MEC Name"
283
  msgstr "MEC Name"
284
 
285
  #: app/core/src/Forms/FormFields.php:158 app/core/src/Forms/SettingsForm.php:83
286
+ #: app/features/events.php:2706 app/features/mec/booking.php:791
287
  #: app/libraries/main.php:3672
288
  msgid "MEC Email"
289
  msgstr "MEC Email"
294
  msgstr ""
295
 
296
  #: app/core/src/Forms/FormFields.php:250
297
+ #: app/core/src/Forms/SettingsForm.php:108 app/features/events.php:2711
298
+ #: app/features/mec/booking.php:796 app/libraries/main.php:3764
299
  msgid "File"
300
  msgstr "Datei"
301
 
302
  #: app/core/src/Forms/FormFields.php:280 app/core/src/Forms/SettingsForm.php:98
303
+ #: app/core/src/SingleBuilder/Widgets/EventDate/EventDate.php:47
304
+ #: app/features/events.php:1381 app/features/events.php:2709
305
+ #: app/features/events.php:2798 app/features/fes.php:259
306
+ #: app/features/mec/booking.php:794 app/features/mec/booking.php:892
307
  #: app/features/mec/single.php:290 app/features/profile/profile.php:59
308
  #: app/features/wc.php:84 app/libraries/main.php:3794
309
  #: app/libraries/skins.php:1279 app/modules/booking/steps/tickets.php:136
314
  msgstr "Datum"
315
 
316
  #: app/core/src/Forms/FormFields.php:311
317
+ #: app/core/src/Forms/SettingsForm.php:103 app/features/events.php:2710
318
+ #: app/features/events.php:2799 app/features/mec/booking.php:795
319
+ #: app/features/mec/booking.php:893 app/features/mec/single.php:291
320
  #: app/features/organizers.php:104 app/features/organizers.php:149
321
  #: app/features/speakers.php:120 app/features/speakers.php:201
322
  #: app/features/speakers.php:288 app/libraries/main.php:3825
324
  msgstr "Tel"
325
 
326
  #: app/core/src/Forms/FormFields.php:342
327
+ #: app/core/src/Forms/SettingsForm.php:113 app/features/events.php:2712
328
+ #: app/features/events.php:2800 app/features/mec/booking.php:797
329
+ #: app/features/mec/booking.php:894 app/features/mec/single.php:292
330
  #: app/libraries/main.php:3856
331
  msgid "Textarea"
332
  msgstr "Textbereich"
333
 
334
  #: app/core/src/Forms/FormFields.php:373
335
+ #: app/core/src/Forms/SettingsForm.php:138 app/features/events.php:2717
336
+ #: app/features/events.php:2805 app/features/mec/booking.php:802
337
+ #: app/features/mec/booking.php:899 app/features/mec/settings.php:351
338
  #: app/features/mec/single.php:293 app/libraries/main.php:3894
339
  msgid "Paragraph"
340
  msgstr "Absatz"
344
  msgstr "HTML und shortcodes sind erlaubt."
345
 
346
  #: app/core/src/Forms/FormFields.php:397
347
+ #: app/core/src/Forms/SettingsForm.php:118 app/features/events.php:2713
348
+ #: app/features/events.php:2801 app/features/mec/booking.php:127
349
+ #: app/features/mec/booking.php:798 app/features/mec/booking.php:895
350
  #: app/features/mec/single.php:294 app/libraries/main.php:3918
351
  msgid "Checkboxes"
352
  msgstr "Checkboxes"
358
  msgstr "Option"
359
 
360
  #: app/core/src/Forms/FormFields.php:443
361
+ #: app/core/src/Forms/SettingsForm.php:123 app/features/events.php:2714
362
+ #: app/features/events.php:2802 app/features/mec/booking.php:799
363
+ #: app/features/mec/booking.php:896 app/features/mec/single.php:295
364
  #: app/libraries/main.php:3966
365
  msgid "Radio Buttons"
366
  msgstr "Radio Buttons"
367
 
368
  #: app/core/src/Forms/FormFields.php:489
369
+ #: app/core/src/Forms/SettingsForm.php:128 app/features/events.php:2715
370
+ #: app/features/events.php:2803 app/features/mec/booking.php:125
371
+ #: app/features/mec/booking.php:800 app/features/mec/booking.php:897
372
  #: app/features/mec/meta_boxes/search_form.php:67
373
  #: app/features/mec/meta_boxes/search_form.php:75
374
  #: app/features/mec/meta_boxes/search_form.php:83
459
  msgstr ""
460
 
461
  #: app/core/src/Forms/FormFields.php:545
462
+ #: app/core/src/Forms/SettingsForm.php:133 app/features/events.php:2716
463
+ #: app/features/events.php:2804 app/features/mec/booking.php:801
464
+ #: app/features/mec/booking.php:898 app/libraries/main.php:4072
465
  msgid "Agreement"
466
  msgstr "Zustimmung"
467
 
492
  msgid "Insert a label for this option"
493
  msgstr "Ein neues Label für diese Option einfügen"
494
 
495
+ #: app/core/src/Forms/FormFields.php:606 app/libraries/main.php:8674
496
  msgid "Mapping with Profile Fields"
497
  msgstr ""
498
 
642
  #: app/features/events.php:1834 app/features/events.php:2004
643
  #: app/features/events.php:2019 app/features/events.php:2261
644
  #: app/features/events.php:2274 app/features/events.php:2467
645
+ #: app/features/events.php:2504 app/features/fes/form.php:456
646
  #: app/features/fes/form.php:764 app/features/fes/form.php:887
647
  #: app/features/locations.php:341 app/features/mec/booking.php:109
648
  #: app/features/mec/booking.php:185 app/features/mec/booking.php:198
649
  #: app/features/mec/booking.php:234 app/features/mec/booking.php:299
650
  #: app/features/mec/booking.php:332 app/features/mec/booking.php:345
651
  #: app/features/mec/booking.php:411 app/features/mec/booking.php:462
652
+ #: app/features/mec/booking.php:597 app/features/mec/booking.php:627
653
+ #: app/features/mec/booking.php:693 app/features/mec/booking.php:703
654
+ #: app/features/mec/booking.php:725 app/features/mec/booking.php:735
655
+ #: app/features/mec/booking.php:1000 app/features/mec/booking.php:1028
656
  #: app/features/mec/dashboard.php:73 app/features/mec/integrations.php:52
657
  #: app/features/mec/integrations.php:65 app/features/mec/integrations.php:81
658
  #: app/features/mec/meta_boxes/display_options.php:97
720
  #: app/features/mec/single.php:382 app/features/mec/styling.php:123
721
  #: app/features/mec/styling.php:223 app/features/mec/styling.php:240
722
  #: app/features/mec/styling.php:254 app/features/occurrences.php:472
723
+ #: app/features/occurrences.php:499 app/features/organizers.php:289
724
  #: app/features/popup/event.php:127 app/features/popup/event.php:174
725
  #: app/features/popup/settings.php:78 app/features/popup/settings.php:161
726
  #: app/features/popup/settings.php:182 app/features/popup/settings.php:300
845
  msgstr ""
846
 
847
  #: app/core/src/SingleBuilder/Widgets/EventCategories/EventCategories.php:46
848
+ #: app/features/events.php:218 app/features/events.php:3828
849
  #: app/features/mec/meta_boxes/display_options.php:1651
850
  #: app/features/mec/meta_boxes/search_form.php:64
851
  #: app/features/mec/meta_boxes/search_form.php:152
862
  #: app/features/mec/settings.php:1150 app/features/mec/settings.php:1213
863
  #: app/features/mec/single.php:445 app/features/mec/single.php:498
864
  #: app/features/popup/settings.php:220 app/features/popup/settings.php:259
865
+ #: app/features/search.php:91 app/libraries/main.php:7118
866
+ #: app/libraries/main.php:7179 app/libraries/search.php:256
867
  #: app/libraries/skins.php:1080 app/skins/single.php:1097
868
  #: app/skins/single/default.php:299 app/skins/single/default.php:546
869
  #: app/skins/single/m1.php:229 app/skins/single/m2.php:148
886
  #: app/core/src/SingleBuilder/Widgets/EventCost/EventCost.php:47
887
  #: app/features/events.php:432 app/features/events.php:1277
888
  #: app/features/fes/form.php:864 app/features/mec/settings.php:1147
889
+ #: app/features/occurrences.php:511 app/libraries/main.php:7164
890
+ #: app/libraries/main.php:7211 app/libraries/skins.php:1395
891
  #: app/skins/single.php:1130 app/skins/single/default.php:215
892
  #: app/skins/single/default.php:464 app/skins/single/m1.php:81
893
  #: app/skins/single/modern.php:292
965
  msgstr ""
966
 
967
  #: app/core/src/SingleBuilder/Widgets/EventLabels/EventLabels.php:48
968
+ #: app/features/events.php:4150 app/features/fes/form.php:984
969
  #: app/features/labels.php:61 app/features/labels.php:227
970
  #: app/features/mec.php:494 app/features/mec/meta_boxes/filter.php:72
971
+ #: app/features/mec/meta_boxes/filter.php:135 app/libraries/main.php:7119
972
+ #: app/libraries/main.php:7180 app/skins/single.php:1260
973
  #: app/skins/single/default.php:247 app/skins/single/default.php:493
974
  #: app/skins/single/m1.php:96 app/skins/single/modern.php:307
975
  msgid "Labels"
1001
  msgstr "Ort verbergen"
1002
 
1003
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:54
1004
+ #: app/features/events.php:3829 app/features/events.php:4143
1005
  #: app/features/locations.php:58 app/features/locations.php:267
1006
  #: app/features/locations.php:329 app/features/locations.php:331
1007
  #: app/features/locations.php:340
1024
  #: app/features/popup/event.php:117 app/features/popup/event.php:126
1025
  #: app/features/popup/settings.php:228 app/features/popup/settings.php:267
1026
  #: app/features/search.php:97 app/libraries/main.php:2914
1027
+ #: app/libraries/main.php:7122 app/libraries/main.php:7183
1028
  #: app/libraries/search.php:294 app/libraries/skins.php:1135
1029
  #: app/skins/single.php:1024 app/skins/single.php:1532
1030
  #: app/skins/single/default.php:268 app/skins/single/default.php:516
1059
  #: app/core/src/SingleBuilder/Widgets/EventMoreInfo/EventMoreInfo.php:48
1060
  #: app/features/events.php:1510 app/features/events.php:1523
1061
  #: app/features/fes/form.php:834 app/features/occurrences.php:525
1062
+ #: app/libraries/main.php:7162 app/libraries/main.php:7209
1063
  #: app/skins/single.php:1230 app/skins/single/default.php:232
1064
  #: app/skins/single/default.php:478 app/skins/single/m1.php:255
1065
  #: app/skins/single/m2.php:175 app/skins/single/modern.php:209
1108
  msgstr "Veranstalter verbergen"
1109
 
1110
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:53
1111
+ #: app/features/events.php:431 app/features/events.php:3830
1112
+ #: app/features/events.php:4145 app/features/events.php:4146
1113
+ #: app/features/events.php:4147
1114
  #: app/features/mec/meta_boxes/display_options.php:1654
1115
  #: app/features/mec/meta_boxes/search_form.php:80
1116
  #: app/features/mec/meta_boxes/search_form.php:168
1128
  #: app/features/mec/single.php:502 app/features/occurrences.php:487
1129
  #: app/features/occurrences.php:489 app/features/occurrences.php:498
1130
  #: app/features/organizers.php:58 app/features/organizers.php:208
1131
+ #: app/features/organizers.php:277 app/features/organizers.php:279
1132
+ #: app/features/organizers.php:288 app/features/popup/event.php:164
1133
  #: app/features/popup/event.php:173 app/features/popup/settings.php:224
1134
  #: app/features/popup/settings.php:263 app/features/search.php:103
1135
+ #: app/libraries/main.php:7124 app/libraries/main.php:7185
1136
  #: app/libraries/search.php:314 app/libraries/skins.php:1164
1137
  #: app/skins/single.php:1388 app/skins/single/default.php:329
1138
  #: app/skins/single/default.php:575 app/skins/single/m1.php:124
1175
  msgstr "Register Button"
1176
 
1177
  #: app/core/src/SingleBuilder/Widgets/EventRegisterButton/EventRegisterButton.php:48
1178
+ #: app/libraries/main.php:7158 app/libraries/main.php:7205
1179
  #: app/skins/available_spot/tpl.php:204 app/skins/carousel/render.php:105
1180
  #: app/skins/carousel/render.php:145 app/skins/grid/render.php:94
1181
  #: app/skins/grid/render.php:153 app/skins/grid/render.php:214
1329
  msgstr "Veranstaltungsdetails"
1330
 
1331
  #: app/features/booking/calendar_novel.php:139
1332
+ #: app/features/search_bar/search_result.php:12 app/libraries/main.php:7167
1333
+ #: app/libraries/main.php:7214 app/libraries/notifications.php:1629
1334
  #: app/libraries/render.php:554 app/libraries/render.php:758
1335
  #: app/libraries/render.php:816 app/libraries/render.php:976
1336
  #: app/modules/local-time/details.php:49 app/modules/local-time/type1.php:47
1370
  msgstr "Einstellungen"
1371
 
1372
  #: app/features/contextual.php:62 app/features/events.php:1556
1373
+ #: app/features/events.php:2646 app/features/mec/booking.php:755
1374
+ #: app/features/mec/booking.php:1026 app/features/mec/settings.php:1012
1375
  #: app/features/mec/support.php:29
1376
  msgid "Booking Form"
1377
  msgstr "Buchungsformular"
1399
  "YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
1400
 
1401
  #: app/features/contextual.php:70 app/features/events.php:1564
1402
+ #: app/features/mec/booking.php:967 app/features/mec/support-page.php:115
1403
  #: app/features/mec/support.php:36 app/libraries/main.php:640
1404
  msgid "Payment Gateways"
1405
  msgstr "Zahlungs-Gateways"
1556
  #: app/libraries/main.php:633 app/libraries/main.php:634
1557
  #: app/libraries/main.php:638 app/libraries/main.php:662
1558
  #: app/libraries/main.php:780 app/libraries/main.php:2976
1559
+ #: app/libraries/main.php:7142 app/libraries/main.php:7144
1560
  #: app/modules/booking/steps/checkout.php:146
1561
  msgid "Booking"
1562
  msgstr "Buchung / Reservierung"
1563
 
1564
  #: app/features/contextual.php:318 app/features/mec/booking.php:552
1565
+ #: app/features/mec/booking.php:983 app/libraries/main.php:635
1566
  msgid "Coupons"
1567
  msgstr "Gutscheine"
1568
 
1721
  msgid "No events found in Trash!"
1722
  msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
1723
 
1724
+ #: app/features/events.php:219 app/features/events.php:3784
1725
+ #: app/features/events.php:4151 app/features/fes/form.php:958
1726
  #: app/features/mec.php:493 app/features/mec/meta_boxes/filter.php:69
1727
+ #: app/features/mec/meta_boxes/filter.php:81 app/libraries/main.php:7117
1728
+ #: app/libraries/main.php:7178
1729
  msgid "Categories"
1730
  msgstr "Kategorien"
1731
 
1811
  #: app/features/locations.php:162 app/features/locations.php:214
1812
  #: app/features/locations.php:393 app/features/locations.php:400
1813
  #: app/features/organizers.php:134 app/features/organizers.php:165
1814
+ #: app/features/organizers.php:316 app/features/organizers.php:323
1815
  #: app/features/speakers.php:182 app/features/speakers.php:233
1816
  msgid "Remove image"
1817
  msgstr "Bild entfernen"
1868
  msgid "Guest Data"
1869
  msgstr "Gäste Daten"
1870
 
1871
+ #: app/features/events.php:601 app/features/events.php:2632
1872
+ #: app/features/events.php:4393 app/features/fes.php:259
1873
  #: app/features/fes/form.php:812 app/features/labels.php:184
1874
+ #: app/features/mec/booking.php:45 app/features/organizers.php:296
1875
  #: app/features/popup/event.php:183 app/features/profile/profile.php:192
1876
+ #: app/libraries/notifications.php:2068 app/modules/booking/steps/form.php:59
1877
  msgid "Name"
1878
  msgstr "Name"
1879
 
1888
  msgstr "Datum und Uhrzeit"
1889
 
1890
  #: app/features/events.php:618 app/features/events.php:622
1891
+ #: app/features/events.php:3831 app/features/events.php:4138
1892
  #: app/features/fes/form.php:286 app/features/fes/form.php:290
1893
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1507
1894
  #: app/features/mec/meta_boxes/display_options.php:57
1912
  msgstr "Start Datum"
1913
 
1914
  #: app/features/events.php:637 app/features/events.php:641
1915
+ #: app/features/events.php:3832 app/features/events.php:4140
1916
  #: app/features/fes/form.php:305 app/features/fes/form.php:309
1917
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1508
1918
  #: app/features/mec/meta_boxes/display_options.php:73
1970
  #: app/features/events.php:1753 app/features/events.php:1763
1971
  #: app/features/events.php:1784 app/features/events.php:1804
1972
  #: app/features/events.php:1859 app/features/events.php:2429
1973
+ #: app/features/events.php:2552 app/features/events.php:2663
1974
  #: app/features/fes/form.php:346 app/features/fes/form.php:359
1975
  msgid "Inherit from global options"
1976
  msgstr "Aus den globalen Einstellungen übernehmen"
2106
  #: app/features/events.php:868 app/features/events.php:1383
2107
  #: app/features/events.php:2075 app/features/events.php:2157
2108
  #: app/features/events.php:2323 app/features/events.php:2367
2109
+ #: app/features/events.php:2440 app/features/events.php:2557
2110
  #: app/features/fes/form.php:449 app/features/fes/form.php:1056
2111
+ #: app/features/occurrences.php:113 app/features/organizers.php:340
2112
  #: app/libraries/hourlyschedule.php:57 app/libraries/hourlyschedule.php:134
2113
  msgid "Add"
2114
  msgstr "Hinzufügen"
2185
  msgid "Show only one occurrence of this event"
2186
  msgstr "Nächstes Auftreten von anderen Events."
2187
 
2188
+ #: app/features/events.php:1270 app/features/events.php:4148
2189
  #: app/features/fes/form.php:861
2190
  #: app/features/mec/meta_boxes/search_form.php:116
2191
  #: app/features/mec/meta_boxes/search_form.php:204
2211
  #: app/features/mec/notifications.php:1625
2212
  #: app/features/mec/notifications.php:1775 app/features/mec/settings.php:854
2213
  #: app/features/notifications.php:160 app/features/occurrences.php:508
2214
+ #: app/libraries/main.php:7163 app/libraries/main.php:7210
2215
  #: app/widgets/single.php:100
2216
  msgid "Event Cost"
2217
  msgstr ""
2306
 
2307
  #: app/features/events.php:1492 app/features/events.php:1500
2308
  #: app/features/fes/form.php:829 app/features/mec/settings.php:1148
2309
+ #: app/features/occurrences.php:520 app/libraries/main.php:7161
2310
+ #: app/libraries/main.php:7208
2311
  msgid "Event Link"
2312
  msgstr "Veranstaltungslink"
2313
 
2375
  msgstr "Gesamt Verfügbare Plätze"
2376
 
2377
  #: app/features/events.php:1549 app/features/events.php:1915
2378
+ #: app/libraries/book.php:170 app/libraries/main.php:7152
2379
  #: app/modules/booking/steps/tickets.php:168
2380
  #: app/modules/booking/steps/tickets.php:174
2381
  msgid "Tickets"
2385
  msgid "Fees"
2386
  msgstr "Gebühren"
2387
 
2388
+ #: app/features/events.php:1554 app/features/events.php:2547
2389
  #: app/features/mec/settings.php:1024
2390
  msgid "Ticket Variations / Options"
2391
  msgstr ""
2392
 
2393
+ #: app/features/events.php:1558 app/features/mec/booking.php:1057
2394
  #: app/features/mec/support-page.php:118
2395
  #, fuzzy
2396
  #| msgid "Organizer Tel"
2398
  msgstr "Organisator Telefon"
2399
 
2400
  #: app/features/events.php:1566 app/features/ix/export.php:58
2401
+ #: app/libraries/main.php:7145
2402
  msgid "Bookings"
2403
  msgstr "Buchungen / Reservierungen"
2404
 
2507
  #: app/features/events.php:1754 app/features/events.php:1764
2508
  #: app/features/mec/booking.php:210 app/features/mec/booking.php:277
2509
  #: app/features/mec/booking.php:292 app/features/mec/booking.php:374
2510
+ #: app/features/mec/booking.php:994 app/features/mec/booking.php:1021
2511
  #: app/features/mec/meta_boxes/search_form.php:66
2512
  #: app/features/mec/meta_boxes/search_form.php:74
2513
  #: app/features/mec/meta_boxes/search_form.php:82
2645
 
2646
  #: app/features/events.php:1755 app/features/events.php:1765
2647
  #: app/features/mec/booking.php:209 app/features/mec/booking.php:276
2648
+ #: app/features/mec/booking.php:293 app/features/mec/booking.php:993
2649
+ #: app/features/mec/booking.php:1022 app/features/mec/modules.php:155
2650
  #: app/features/mec/settings.php:99 app/features/popup/settings.php:357
2651
  msgid "Enabled"
2652
  msgstr "Aktiviert"
2736
  msgstr "Ticket"
2737
 
2738
  #: app/features/events.php:1935 app/features/events.php:2201
2739
+ #: app/features/events.php:4135 app/features/fes.php:259
2740
  #: app/features/labels.php:183 app/features/locations.php:266
2741
  #: app/features/organizers.php:207 app/features/speakers.php:285
2742
  msgid "ID"
2747
  msgstr "Ticket Name"
2748
 
2749
  #: app/features/events.php:1947 app/features/events.php:2209
2750
+ #: app/features/events.php:4139 app/libraries/skins.php:1360
2751
  msgid "Start Time"
2752
  msgstr "Uhrzeit des Beginns"
2753
 
2754
  #: app/features/events.php:1960 app/features/events.php:2222
2755
+ #: app/features/events.php:4141 app/libraries/skins.php:1361
2756
  msgid "End Time"
2757
  msgstr "Uhrzeit Ende"
2758
 
2759
  #: app/features/events.php:1978 app/features/events.php:2237
2760
+ #: app/features/events.php:4137 app/libraries/hourlyschedule.php:72
2761
  #: app/libraries/hourlyschedule.php:100 app/libraries/hourlyschedule.php:152
2762
  msgid "Description"
2763
  msgstr "Beschreibung"
2780
  #: app/features/events.php:1997 app/features/events.php:2001
2781
  #: app/features/events.php:2099 app/features/events.php:2126
2782
  #: app/features/events.php:2255 app/features/events.php:2258
2783
+ #: app/features/events.php:2340 app/features/events.php:4692
2784
+ #: app/features/mec/booking.php:689 app/features/mec/booking.php:692
2785
+ #: app/features/mec/booking.php:721 app/features/mec/booking.php:724
2786
  #: app/libraries/ticketVariations.php:43 app/libraries/ticketVariations.php:46
2787
  #: app/modules/booking/steps/checkout.php:63
2788
  msgid "Price"
2878
  msgid "Inherit from event options"
2879
  msgstr "Aus den globalen Einstellungen übernehmen"
2880
 
2881
+ #: app/features/events.php:2454 app/features/events.php:2493
2882
+ #: app/features/mec/booking.php:589 app/features/mec/booking.php:619
2883
  msgid "Fee Title"
2884
  msgstr "Gebühren Name"
2885
 
2886
  #: app/features/events.php:2460 app/features/events.php:2464
2887
+ #: app/features/events.php:2498 app/features/events.php:2501
2888
  #: app/features/mec/booking.php:593 app/features/mec/booking.php:596
2889
+ #: app/features/mec/booking.php:623 app/features/mec/booking.php:626
2890
  msgid "Amount"
2891
  msgstr "Betrag"
2892
 
2893
+ #: app/features/events.php:2465 app/features/events.php:2502
2894
+ #: app/features/mec/booking.php:597 app/features/mec/booking.php:627
2895
  msgid ""
2896
  "Fee amount, considered as fixed amount if you set the type to amount "
2897
  "otherwise considered as percentage"
2899
  "Gebührenbetrag, gilt als fester Betrag, wenn Sie die Art auf Betrag setzen, "
2900
  "sonst als Prozentsatz"
2901
 
2902
+ #: app/features/events.php:2474 app/features/events.php:2511
2903
+ #: app/features/mec/booking.php:604 app/features/mec/booking.php:634
2904
  msgid "Percent"
2905
  msgstr "Prozent"
2906
 
2907
+ #: app/features/events.php:2475 app/features/events.php:2512
2908
+ #: app/features/mec/booking.php:605 app/features/mec/booking.php:635
2909
  msgid "Amount (Per Ticket)"
2910
  msgstr "Betrag (pro Ticket)"
2911
 
2912
+ #: app/features/events.php:2476 app/features/events.php:2513
2913
+ #: app/features/mec/booking.php:606 app/features/mec/booking.php:636
2914
+ #, fuzzy
2915
+ #| msgid "Amount (Per Ticket)"
2916
+ msgid "Amount (Per Date)"
2917
+ msgstr "Betrag (pro Ticket)"
2918
+
2919
+ #: app/features/events.php:2477 app/features/events.php:2514
2920
+ #: app/features/mec/booking.php:607 app/features/mec/booking.php:637
2921
  msgid "Amount (Per Booking)"
2922
  msgstr "Betrag (pro Buchung)"
2923
 
2924
+ #: app/features/events.php:2649
2925
  msgid ""
2926
  "You're translating an event so MEC will use the original event for booking "
2927
  "form. You can only translate the field name and options. Please define exact "
2928
  "fields that you defined in the original event here."
2929
  msgstr ""
2930
 
2931
+ #: app/features/events.php:2675 app/features/mec/booking.php:757
2932
  #, fuzzy
2933
  #| msgid "Attendees List"
2934
  msgid "Per Attendee Fields"
2935
  msgstr "Teilnehmer Liste"
2936
 
2937
+ #: app/features/events.php:2766 app/features/mec/booking.php:855
2938
  #, fuzzy
2939
  #| msgid "Required Field"
2940
  msgid "Fixed Fields"
2941
  msgstr "Pflichtfeld"
2942
 
2943
+ #: app/features/events.php:2878 app/features/events.php:4686
2944
  #: app/features/mec/settings.php:1030 app/features/profile/profile.php:65
2945
  #: app/libraries/main.php:3002
2946
  msgid "Attendees"
2947
  msgstr "Teilnehmer"
2948
 
2949
+ #: app/features/events.php:2881 app/features/occurrences.php:104
2950
  #, fuzzy
2951
  #| msgid "Next Occurrence"
2952
  msgid "Occurrence"
2953
  msgstr "Nächstes Event"
2954
 
2955
+ #: app/features/events.php:2882 app/features/mec.php:1713
2956
  #: app/features/occurrences.php:105
2957
  #, fuzzy
2958
  #| msgid "Next Occurrence"
2959
  msgid "Previous Occurrences"
2960
  msgstr "Nächstes Event"
2961
 
2962
+ #: app/features/events.php:2887 app/features/mec.php:1723
2963
  #: app/features/occurrences.php:110 app/modules/next-event/multiple.php:52
2964
  #, fuzzy
2965
  #| msgid "Next Occurrence"
2966
  msgid "Next Occurrences"
2967
  msgstr "Nächstes Event"
2968
 
2969
+ #: app/features/events.php:3709 app/features/mec/meta_boxes/filter.php:199
2970
  #: app/features/mec/settings.php:517
2971
  msgid "Expired Events"
2972
  msgstr "Abgelaufene Events"
2973
 
2974
+ #: app/features/events.php:3710 app/features/mec.php:1317
2975
  #: app/features/mec/dashboard.php:299 app/features/mec/settings.php:516
2976
  msgid "Upcoming Events"
2977
  msgstr "Bevorstehende Events"
2978
 
2979
+ #: app/features/events.php:3730 app/features/events.php:3748
2980
+ #: app/features/events.php:3766 app/features/events.php:3784
2981
  #, php-format
2982
  msgid "Show all %s"
2983
  msgstr "Zeige alle %s"
2984
 
2985
+ #: app/features/events.php:3730
2986
  msgid "labels"
2987
  msgstr "Labels + Eventstatus"
2988
 
2989
+ #: app/features/events.php:3748
2990
  msgid "locations"
2991
  msgstr "Orte"
2992
 
2993
+ #: app/features/events.php:3766
2994
  msgid "organizers"
2995
  msgstr "Veranstalter"
2996
 
2997
+ #: app/features/events.php:3800
2998
  msgid "Attendees List"
2999
  msgstr "Teilnehmer Liste"
3000
 
3001
+ #: app/features/events.php:3827 app/features/events.php:4136
3002
+ #: app/features/events.php:4683 app/features/fes/form.php:260
3003
+ #: app/features/mec/booking.php:685 app/features/mec/booking.php:717
3004
  #: app/features/mec/styling.php:134 app/libraries/hourlyschedule.php:49
3005
  #: app/libraries/hourlyschedule.php:65 app/libraries/hourlyschedule.php:93
3006
  #: app/libraries/hourlyschedule.php:125 app/libraries/hourlyschedule.php:145
3008
  msgid "Title"
3009
  msgstr "Titel"
3010
 
3011
+ #: app/features/events.php:3835
3012
  #, fuzzy
3013
  #| msgid "Tickets"
3014
  msgid "Sold Tickets"
3015
  msgstr "Tickets"
3016
 
3017
+ #: app/features/events.php:3837
3018
  msgid "Repeat"
3019
  msgstr "Wiederholen"
3020
 
3021
+ #: app/features/events.php:4006 app/features/events.php:4007
3022
  #, fuzzy
3023
  #| msgid "iCal Export"
3024
  msgid "iCal / Outlook Export"
3025
  msgstr "ical Export"
3026
 
3027
+ #: app/features/events.php:4009 app/features/events.php:4010
3028
  msgid "CSV Export"
3029
  msgstr "CSV Export"
3030
 
3031
+ #: app/features/events.php:4012 app/features/events.php:4013
3032
  msgid "MS Excel Export"
3033
  msgstr "MS Excel Export"
3034
 
3035
+ #: app/features/events.php:4015 app/features/events.php:4016
3036
  msgid "XML Export"
3037
  msgstr "XML Export"
3038
 
3039
+ #: app/features/events.php:4018 app/features/events.php:4019
3040
  msgid "JSON Export"
3041
  msgstr "JSON Export"
3042
 
3043
+ #: app/features/events.php:4021 app/features/events.php:4022
3044
+ #: app/features/events.php:4248
3045
  msgid "Duplicate"
3046
  msgstr "Kopie"
3047
 
3048
+ #: app/features/events.php:4142
3049
  msgid "Link"
3050
  msgstr "Link"
3051
 
3052
+ #: app/features/events.php:4144 app/features/locations.php:111
3053
  #: app/features/locations.php:181 app/features/locations.php:268
3054
  #: app/features/mec/meta_boxes/search_form.php:108
3055
  #: app/features/mec/meta_boxes/search_form.php:196
3067
  msgid "Address"
3068
  msgstr "Adresse"
3069
 
3070
+ #: app/features/events.php:4146
3071
  #, php-format
3072
  msgid "%s Tel"
3073
  msgstr "%s Tel"
3074
 
3075
+ #: app/features/events.php:4147
3076
  #, php-format
3077
  msgid "%s Email"
3078
  msgstr "%s Email"
3079
 
3080
+ #: app/features/events.php:4149 app/features/fes/form.php:937
3081
  #: app/features/mec/settings.php:860
3082
  msgid "Featured Image"
3083
  msgstr "Ausgewähltes Bild"
3084
 
3085
+ #: app/features/events.php:4152 app/features/fes/form.php:1030
3086
  #: app/features/mec.php:492 app/features/mec/meta_boxes/filter.php:73
3087
  #: app/features/mec/meta_boxes/filter.php:153 app/features/tag.php:59
3088
  msgid "Tags"
3089
  msgstr "Schlagworte"
3090
 
3091
+ #: app/features/events.php:4156 app/features/fes/form.php:1052
3092
  #: app/features/mec.php:501 app/features/mec/modules.php:34
3093
  #: app/features/mec/modules.php:43 app/features/mec/settings.php:931
3094
  #: app/features/popup/settings.php:299 app/features/speakers.php:61
3095
  #: app/libraries/hourlyschedule.php:77 app/libraries/hourlyschedule.php:105
3096
  #: app/libraries/hourlyschedule.php:157 app/libraries/main.php:644
3097
+ #: app/libraries/main.php:7125 app/libraries/main.php:7186
3098
  #: app/modules/speakers/details.php:18
3099
  msgid "Speakers"
3100
  msgstr "Sprecher"
3101
 
3102
+ #: app/features/events.php:4399 app/features/fes.php:259
3103
  #: app/features/profile/profile.php:198 app/libraries/main.php:3018
3104
+ #: app/libraries/main.php:7151
3105
  msgid "Ticket"
3106
  msgstr "Ticket"
3107
 
3108
+ #: app/features/events.php:4402 app/features/profile/profile.php:201
3109
  msgid "Variations"
3110
  msgstr "Variationen"
3111
 
3112
+ #: app/features/events.php:4417 app/features/fes.php:335
3113
  msgid "Unknown"
3114
  msgstr "Unbekannt"
3115
 
3116
+ #: app/features/events.php:4445
3117
  msgid ""
3118
  "If you want to send an email, first select your attendees and then click in "
3119
  "the button below, please."
3120
  msgstr ""
3121
 
3122
+ #: app/features/events.php:4445 app/features/mec/report.php:57
3123
  msgid "Send Email"
3124
  msgstr "E-Mail senden"
3125
 
3126
+ #: app/features/events.php:4449
3127
  msgid "No Attendees Found!"
3128
  msgstr "Keine Teilnehmer gefunden!"
3129
 
3130
+ #: app/features/events.php:4689 app/features/fes.php:259
3131
  #: app/features/mec/booking.php:351 app/features/wc.php:86
3132
  #: app/libraries/main.php:2966 app/libraries/main.php:3081
3133
  msgid "Transaction ID"
3134
  msgstr "Transaktions-ID"
3135
 
3136
+ #: app/features/events.php:4747
3137
  #, fuzzy
3138
  #| msgid "No bookings found!"
3139
  msgid "No Bookings Found!"
3348
  msgid "eg. yourname@gmail.com"
3349
  msgstr "z.B. IhrName@ihrewebseite.de"
3350
 
3351
+ #: app/features/fes/form.php:813 app/features/organizers.php:297
3352
  #: app/features/popup/event.php:184
3353
  msgid "eg. John Smith"
3354
  msgstr "z.B. Max Mustermann"
3788
  msgid "Add to Google Calendar"
3789
  msgstr "Zum Google Kalender hinzufügen"
3790
 
3791
+ #: app/features/ix/export_g_calendar.php:100 app/features/mec/booking.php:1181
3792
+ #: app/features/mec/integrations.php:420 app/features/mec/modules.php:408
3793
  #: app/features/mec/notifications.php:1921 app/features/mec/settings.php:1586
3794
  #: app/features/mec/single.php:582
3795
  msgid "Checking ..."
3837
  #: app/features/ix/import.php:58 app/features/ix/import.php:88
3838
  #: app/features/mec/booking.php:91 app/features/mec/booking.php:539
3839
  #: app/features/mec/booking.php:555 app/features/mec/booking.php:573
3840
+ #: app/features/mec/booking.php:669
3841
  #: app/features/mec/meta_boxes/display_options.php:244
3842
  #: app/features/mec/meta_boxes/display_options.php:522
3843
  #: app/features/mec/modules.php:60 app/features/mec/modules.php:217
3849
  #: app/features/ix/import.php:58 app/features/ix/import.php:88
3850
  #: app/features/ix/sync.php:22 app/features/mec/booking.php:91
3851
  #: app/features/mec/booking.php:539 app/features/mec/booking.php:555
3852
+ #: app/features/mec/booking.php:573 app/features/mec/booking.php:669
3853
  #: app/features/mec/meta_boxes/display_options.php:244
3854
  #: app/features/mec/meta_boxes/display_options.php:522
3855
  #: app/features/mec/meta_boxes/display_options.php:564
4317
 
4318
  #: app/features/locations.php:59 app/features/mec.php:495
4319
  #: app/features/mec/dashboard.php:281 app/features/mec/meta_boxes/filter.php:70
4320
+ #: app/features/mec/meta_boxes/filter.php:99 app/libraries/main.php:7121
4321
+ #: app/libraries/main.php:7182
4322
  msgid "Locations"
4323
  msgstr "Orte"
4324
 
4368
  msgstr "Miniaturansicht"
4369
 
4370
  #: app/features/locations.php:329 app/features/occurrences.php:460
4371
+ #: app/features/occurrences.php:487 app/features/organizers.php:277
4372
  #, php-format
4373
  msgid "Event Main %s"
4374
  msgstr "Hauptevent % s"
4427
  msgid "Get Latitude and Longitude"
4428
  msgstr ""
4429
 
4430
+ #: app/features/locations.php:392 app/features/organizers.php:315
4431
  #: app/features/popup/event.php:203
4432
  msgid "Choose image"
4433
  msgstr "Bild wählen"
4437
  msgid "Don't show map in single event page"
4438
  msgstr "Karte in Einzelansicht nicht anzeigen"
4439
 
4440
+ #: app/features/locations.php:409 app/libraries/main.php:7166
4441
+ #: app/libraries/main.php:7213
4442
  msgid "Other Locations"
4443
  msgstr "Andere Orte"
4444
 
4522
  #: app/features/mec.php:496 app/features/mec/dashboard.php:288
4523
  #: app/features/mec/meta_boxes/filter.php:71
4524
  #: app/features/mec/meta_boxes/filter.php:117 app/features/organizers.php:59
4525
+ #: app/libraries/main.php:7123 app/libraries/main.php:7184
4526
  msgid "Organizers"
4527
  msgstr "Veranstalter"
4528
 
4713
  msgid "Line"
4714
  msgstr "Linie"
4715
 
4716
+ #: app/features/mec.php:1518 app/skins/general_calendar/tpl.php:145
4717
  msgid "Filter"
4718
  msgstr "Filter"
4719
 
4763
  msgid "Search..."
4764
  msgstr "Suche…"
4765
 
4766
+ #: app/features/mec/booking.php:72 app/features/mec/booking.php:905
4767
+ #: app/features/mec/booking.php:1097 app/features/mec/booking.php:1106
4768
+ #: app/features/mec/booking.php:1116 app/features/mec/booking.php:1198
4769
+ #: app/features/mec/booking.php:1212 app/features/mec/integrations.php:19
4770
+ #: app/features/mec/integrations.php:369 app/features/mec/integrations.php:379
4771
+ #: app/features/mec/integrations.php:437 app/features/mec/integrations.php:451
4772
  #: app/features/mec/messages.php:20 app/features/mec/messages.php:60
4773
  #: app/features/mec/messages.php:70 app/features/mec/messages.php:108
4774
  #: app/features/mec/messages.php:118 app/features/mec/modules.php:17
5208
  "new menu on the Dashboard > Booking"
5209
  msgstr ""
5210
 
5211
+ #: app/features/mec/booking.php:570 app/features/mec/booking.php:985
5212
  #: app/libraries/main.php:636
5213
  msgid "Taxes / Fees"
5214
  msgstr "Steuern/Gebühren"
5221
  msgid "Add Fee"
5222
  msgstr "Gebühr hinzufügen"
5223
 
5224
+ #: app/features/mec/booking.php:647
5225
  #, fuzzy
5226
  #| msgid "Payment Gateways"
5227
  msgid "Disable Fees per Gateways"
5228
  msgstr "Zahlungs-Gateways"
5229
 
5230
+ #: app/features/mec/booking.php:666 app/libraries/main.php:637
5231
  msgid "Ticket Variations & Options"
5232
  msgstr ""
5233
 
5234
+ #: app/features/mec/booking.php:674
5235
  #, fuzzy
5236
  #| msgid "Enable ticket options module"
5237
  msgid "Enable ticket variations module"
5238
  msgstr "Ticket Optionen aktivieren"
5239
 
5240
+ #: app/features/mec/booking.php:679
5241
  msgid "Add Variation / Option"
5242
  msgstr ""
5243
 
5244
+ #: app/features/mec/booking.php:693 app/features/mec/booking.php:725
5245
  #: app/libraries/ticketVariations.php:49
5246
  msgid "Option Price"
5247
  msgstr "Preis Optionen"
5248
 
5249
+ #: app/features/mec/booking.php:699 app/features/mec/booking.php:702
5250
+ #: app/features/mec/booking.php:731 app/features/mec/booking.php:734
5251
  #: app/libraries/ticketVariations.php:58 app/libraries/ticketVariations.php:61
5252
  msgid "Maximum Per Ticket"
5253
  msgstr "Maximum pro Ticket"
5254
 
5255
+ #: app/features/mec/booking.php:703 app/features/mec/booking.php:735
5256
  #: app/libraries/ticketVariations.php:64
5257
  #, fuzzy
5258
  #| msgid "Maximum Per Ticket. Leave it blank for unlimited."
5259
  msgid "Maximum Per Ticket. Leave blank for unlimited."
5260
  msgstr "Maximum pro Ticket. Leerlassen für unendlich."
5261
 
5262
+ #: app/features/mec/booking.php:748
5263
  #, fuzzy
5264
  #| msgid "Enable cancellation notification"
5265
  msgid "Enable variations per ticket"
5266
  msgstr "Benachrichtigung bei stornierter Buchung"
5267
 
5268
+ #: app/features/mec/booking.php:949 app/libraries/main.php:639
5269
  #, fuzzy
5270
  #| msgid "Upload/Add image"
5271
  msgid "Upload Field"
5272
  msgstr "Bild hochladen/hinzufügen"
5273
 
5274
+ #: app/features/mec/booking.php:951
5275
  msgid "Mime types"
5276
  msgstr ""
5277
 
5278
+ #: app/features/mec/booking.php:955
5279
  msgid "Split mime types with \",\"."
5280
  msgstr ""
5281
 
5282
+ #: app/features/mec/booking.php:955
5283
  msgid "Default: jpeg,jpg,png,pdf"
5284
  msgstr ""
5285
 
5286
+ #: app/features/mec/booking.php:958
5287
  #, fuzzy
5288
  #| msgid "Amount (Per Ticket)"
5289
  msgid "Maximum file size"
5290
  msgstr "Betrag (pro Ticket)"
5291
 
5292
+ #: app/features/mec/booking.php:962
5293
  msgid "The unit is Megabyte \"MB\""
5294
  msgstr ""
5295
 
5296
+ #: app/features/mec/booking.php:975
5297
  msgid "Use WooCommerce as Payment System"
5298
  msgstr ""
5299
 
5300
+ #: app/features/mec/booking.php:977
5301
  msgid ""
5302
  "By enabling this feature, tickets will be added to WooCommerce cart and all "
5303
  "payment process would be done by WooCommerce so all of MEC payment related "
5305
  "fields etc, you need to configure WooCommerce on your website."
5306
  msgstr ""
5307
 
5308
+ #: app/features/mec/booking.php:979
5309
  msgid ""
5310
  "You cannot use following MEC features so you should use WooCommerc and its "
5311
  "addons if you need them."
5312
  msgstr ""
5313
 
5314
+ #: app/features/mec/booking.php:981
5315
  #, fuzzy
5316
  #| msgid "Payment Gateways"
5317
  msgid "Payment gateways"
5318
  msgstr "Zahlungs-Gateways"
5319
 
5320
+ #: app/features/mec/booking.php:982
5321
  #, fuzzy
5322
  #| msgid "Price per Date"
5323
  msgid "Price per dates of tickets"
5324
  msgstr "Preis pro Datum"
5325
 
5326
+ #: app/features/mec/booking.php:984
5327
  #, fuzzy
5328
  #| msgid "Ticket Variation"
5329
  msgid "Ticket variations"
5330
  msgstr "Ticket Variationen"
5331
 
5332
+ #: app/features/mec/booking.php:986
5333
  #, fuzzy
5334
  #| msgid "Discount Type"
5335
  msgid "Discount Per Roles"
5336
  msgstr "Rabatt-Art"
5337
 
5338
+ #: app/features/mec/booking.php:990
5339
  #, fuzzy
5340
  #| msgid "Automatically complete WC orders"
5341
  msgid "Automatically complete WooCommerce orders"
5342
  msgstr "WC-Aufträge automatisch abschließen"
5343
 
5344
+ #: app/features/mec/booking.php:998
5345
  #, fuzzy
5346
  #| msgid "Automatically complete WC orders"
5347
  msgid "Auto WooCommerce orders"
5348
  msgstr "WC-Aufträge automatisch abschließen"
5349
 
5350
+ #: app/features/mec/booking.php:999
5351
  msgid "It applies only to the orders that are related to MEC."
5352
  msgstr "Sie gilt nur für Aufträge, die mit MEC zusammenhängen."
5353
 
5354
+ #: app/features/mec/booking.php:1007
5355
  #, fuzzy
5356
  #| msgid "Add to Cart"
5357
  msgid "After Add to Cart"
5358
  msgstr "in den Warenkorb legen"
5359
 
5360
+ #: app/features/mec/booking.php:1010
5361
  #, fuzzy
5362
  #| msgid "Redirection Page"
5363
  msgid "Redirect to Cart"
5364
  msgstr "Weiterleitungs Seite "
5365
 
5366
+ #: app/features/mec/booking.php:1011
5367
  #, fuzzy
5368
  #| msgid "Redirection Page"
5369
  msgid "Redirect to Checkout"
5370
  msgstr "Weiterleitungs Seite "
5371
 
5372
+ #: app/features/mec/booking.php:1012
5373
  #, fuzzy
5374
  #| msgid "View Detail Button"
5375
  msgid "Optional View Cart Button"
5376
  msgstr "Ansicht Detail Button"
5377
 
5378
+ #: app/features/mec/booking.php:1013
5379
  msgid "Optional Checkout Button"
5380
  msgstr ""
5381
 
5382
+ #: app/features/mec/booking.php:1018
5383
  #, fuzzy
5384
  #| msgid "Booking Form"
5385
  msgid "MEC Booking Form"
5386
  msgstr "Buchungsformular"
5387
 
5388
+ #: app/features/mec/booking.php:1027
5389
  msgid ""
5390
  "If enabled then users should fill the booking form in MEC and then they will "
5391
  "be redirected to checkout."
5392
  msgstr ""
5393
 
5394
+ #: app/features/mec/booking.php:1053
5395
  msgid "Enable Organizer Payment Module"
5396
  msgstr ""
5397
 
5398
+ #: app/features/mec/booking.php:1058
5399
  msgid ""
5400
  "By enabling this module, organizers are able to insert their own payment "
5401
  "credentials for enabled gateways per event and receive the payments directly!"
5402
  msgstr ""
5403
 
5404
+ #: app/features/mec/booking.php:1068
5405
  msgid "Disable / Enable payment gateways per event"
5406
  msgstr ""
5407
 
5408
+ #: app/features/mec/booking.php:1072
5409
  #, fuzzy
5410
  #| msgid "Payment Gateways"
5411
  msgid "Payment Gateways Per Event"
5412
  msgstr "Zahlungs-Gateways"
5413
 
5414
+ #: app/features/mec/booking.php:1073
5415
  msgid ""
5416
  "By enabling this module, users are able to disable / enable payment gateways "
5417
  "per event"
5418
  msgstr ""
5419
 
5420
+ #: app/features/mec/booking.php:1083
5421
  msgid "Automatically refund the payment"
5422
  msgstr ""
5423
 
5424
+ #: app/features/mec/booking.php:1087
5425
  msgid "Auto Refund"
5426
  msgstr ""
5427
 
5428
+ #: app/features/mec/booking.php:1088
5429
  msgid ""
5430
  "Automatically refund the payment when a booking paid by applicable gateways "
5431
  "(Stripe) got canceled."
5432
  msgstr ""
5433
 
5434
+ #: app/features/mec/booking.php:1176 app/features/mec/integrations.php:415
5435
  #: app/features/mec/messages.php:90 app/features/mec/modules.php:403
5436
  #: app/features/mec/notifications.php:1916 app/features/mec/settings.php:1581
5437
  #: app/features/mec/single.php:577 app/features/mec/styles.php:62
5439
  msgid "Saved"
5440
  msgstr "Gesichert"
5441
 
5442
+ #: app/features/mec/booking.php:1177 app/features/mec/integrations.php:416
5443
  #: app/features/mec/messages.php:91 app/features/mec/modules.php:404
5444
  #: app/features/mec/notifications.php:1917 app/features/mec/settings.php:1582
5445
  #: app/features/mec/single.php:578 app/features/mec/styles.php:63
5447
  msgid "Settings Saved!"
5448
  msgstr "Einstellungen gespeichert!"
5449
 
5450
+ #: app/features/mec/booking.php:1203 app/features/mec/integrations.php:442
5451
  #: app/features/mec/modules.php:430 app/features/mec/notifications.php:1944
5452
  #: app/features/mec/settings.php:1608 app/features/mec/single.php:604
5453
  msgid "Please Refresh Page"
5775
  msgid "Enable BuddyPress Integration"
5776
  msgstr "Buddy Press Integration deaktivieren"
5777
 
5778
+ #: app/features/mec/integrations.php:319
 
 
 
 
 
 
 
 
 
 
 
 
5779
  msgid "Show \"Attendees Module\" in event details page"
5780
  msgstr "Zeigt \"Teilnehmermodul\" in Event Details Seite"
5781
 
5782
+ #: app/features/mec/integrations.php:323
5783
  #, fuzzy
5784
  #| msgid "Attendees Limit"
5785
  msgid "Attendee Limit"
5786
  msgstr "Teilnehmer Limit, maximale Anzahl"
5787
 
5788
+ #: app/features/mec/integrations.php:331
5789
  msgid "Add booking activity to user profile"
5790
  msgstr "Fügt Buchungsaktivitäten dem Benutzerprofil hinzu"
5791
 
5792
+ #: app/features/mec/integrations.php:337
5793
  #, fuzzy
5794
  #| msgid "Add booking activity to user profile"
5795
  msgid "Add events menu to user profile"
5796
  msgstr "Fügt Buchungsaktivitäten dem Benutzerprofil hinzu"
5797
 
5798
+ #: app/features/mec/integrations.php:343 app/libraries/main.php:617
 
 
 
 
 
 
 
 
 
 
 
 
 
5799
  #, fuzzy
5800
  #| msgid "Search Coupons"
5801
  msgid "LearnDash"
5802
  msgstr "Gutscheine suchen"
5803
 
5804
+ #: app/features/mec/integrations.php:347
5805
  #, fuzzy
5806
  #| msgid "Enable Mailchimp Integration"
5807
  msgid "Enable LearnDash Integration"
5808
  msgstr "Mailchimp Integration deaktivieren"
5809
 
5810
+ #: app/features/mec/integrations.php:350
5811
  #, fuzzy
5812
  #| msgid "Third Party plugin is not installed and activated!"
5813
  msgid "LearnDash plugin should be installed and activated."
5814
  msgstr "Drittanbieter-Plugin ist nicht installiert und aktiviert!"
5815
 
5816
+ #: app/features/mec/integrations.php:353 app/libraries/main.php:618
5817
  #, fuzzy
5818
  #| msgid "Mailchimp Integration"
5819
  msgid "PaidMembership Pro"
5820
  msgstr "Mailchimp Integration"
5821
 
5822
+ #: app/features/mec/integrations.php:357
5823
  #, fuzzy
5824
  #| msgid "Enable Mailchimp Integration"
5825
  msgid "Enable PaidMembership Pro Integration"
5826
  msgstr "Mailchimp Integration deaktivieren"
5827
 
5828
+ #: app/features/mec/integrations.php:360
5829
  #, fuzzy
5830
  #| msgid "Third Party plugin is not installed and activated!"
5831
  msgid "PaidMembership Pro plugin should be installed and activated."
7087
  #: app/features/mec/single.php:511 app/features/popup/settings.php:233
7088
  #: app/features/popup/settings.php:272 app/features/search.php:109
7089
  #: app/features/speakers.php:60 app/features/speakers.php:286
7090
+ #: app/libraries/main.php:7126 app/libraries/main.php:7187
7091
  #: app/libraries/search.php:334 app/libraries/skins.php:1193
7092
  #: app/modules/speakers/details.php:18
7093
  msgid "Speaker"
8390
  "Informieren, dass eine neue Buchung eingegangen ist."
8391
 
8392
  #: app/features/mec/notifications.php:1230 app/features/notifications.php:120
8393
+ #: app/libraries/main.php:667 app/libraries/notifications.php:833
8394
  msgid "Booking Reminder"
8395
  msgstr "Buchungs Erinnerung"
8396
 
8421
  msgid "only once per hour"
8422
  msgstr "nur einmal pro Tag"
8423
 
8424
+ #: app/features/mec/notifications.php:1312 app/libraries/main.php:8357
8425
+ #: app/libraries/main.php:8374
8426
  #, fuzzy
8427
  #| msgid "Hour"
8428
  msgid "Hours"
8752
  msgstr ""
8753
 
8754
  #: app/features/mec/settings.php:137 app/features/mec/settings.php:148
8755
+ #: app/features/popup/settings.php:41 app/libraries/main.php:7130
8756
+ #: app/libraries/main.php:7191
8757
  msgid "Weekdays"
8758
  msgstr "Wochentage"
8759
 
9251
  msgstr "Mehrtagesveranstaltung"
9252
 
9253
  #: app/features/mec/settings.php:751 app/features/mec/settings.php:917
9254
+ #: app/libraries/notifications.php:2088
9255
  msgid "No"
9256
  msgstr "Nein"
9257
 
9258
  #: app/features/mec/settings.php:752 app/features/mec/settings.php:916
9259
+ #: app/libraries/notifications.php:2088
9260
  msgid "Yes"
9261
  msgstr "Ja"
9262
 
9440
  msgid "Required Fields"
9441
  msgstr "Pflichtfeld"
9442
 
9443
+ #: app/features/mec/settings.php:1149 app/libraries/main.php:7162
9444
+ #: app/libraries/main.php:7209
9445
  msgid "More Info Link"
9446
  msgstr "Link Mehr Informationen"
9447
 
10732
  msgstr ""
10733
  "Wählen Sie einen der gespeicherten Orte aus, oder fügen Sie einen neuen ein."
10734
 
10735
+ #: app/features/occurrences.php:491 app/features/organizers.php:280
10736
  #: app/features/popup/event.php:165
10737
  msgid "Hide organizer"
10738
  msgstr "Veranstalter verbergen"
10739
 
10740
+ #: app/features/occurrences.php:499 app/features/organizers.php:289
10741
  #: app/features/popup/event.php:174
10742
  msgid "Choose one of saved organizers or insert new one below."
10743
  msgstr ""
10753
  msgstr "Veranstalter Email-Adresse einfügen"
10754
 
10755
  #: app/features/organizers.php:120 app/features/organizers.php:157
10756
+ #: app/features/organizers.php:308 app/features/popup/event.php:197
10757
  msgid "Link to organizer page"
10758
  msgstr "Link zur Seite des Veranstalters"
10759
 
10767
  msgid "Contact info"
10768
  msgstr "Kontaktdaten"
10769
 
10770
+ #: app/features/organizers.php:281 app/features/popup/event.php:166
10771
  msgid "Insert a new organizer"
10772
  msgstr "Neuen Veranstalter einfügen"
10773
 
10774
+ #: app/features/organizers.php:300 app/features/popup/event.php:187
10775
  msgid "Phone number."
10776
  msgstr "Telefon"
10777
 
10778
+ #: app/features/organizers.php:301 app/features/popup/event.php:188
10779
  msgid "eg. +1 (234) 5678"
10780
  msgstr "z.B. +49 (1234) 56789"
10781
 
10782
+ #: app/features/organizers.php:304 app/features/popup/event.php:192
10783
  msgid "Email address."
10784
  msgstr "Mailadresse"
10785
 
10786
+ #: app/features/organizers.php:305 app/features/popup/event.php:193
10787
  msgid "eg. john@smith.com"
10788
  msgstr "z.B.. max@mustermann.com"
10789
 
10790
+ #: app/features/organizers.php:309 app/features/popup/event.php:198
10791
  #, fuzzy
10792
  #| msgid "http://webnus.net"
10793
  msgid "eg. https://webnus.net"
10794
  msgstr "http://webnus.net"
10795
 
10796
+ #: app/features/organizers.php:329 app/libraries/main.php:7165
10797
+ #: app/libraries/main.php:7212 app/skins/single.php:1446
10798
  msgid "Other Organizers"
10799
  msgstr "Andere Veranstalter"
10800
 
10801
+ #: app/features/organizers.php:331
10802
  msgid ""
10803
  "You can select extra organizers in addition to main organizer if you like."
10804
  msgstr ""
11178
  msgstr "Datum Bestellung"
11179
 
11180
  #: app/features/wc.php:108 app/features/wc.php:131 app/libraries/main.php:2949
11181
+ #: app/libraries/notifications.php:1614 app/libraries/notifications.php:1629
11182
+ #: app/libraries/notifications.php:1640 app/libraries/notifications.php:1656
11183
+ #: app/libraries/notifications.php:1965 app/libraries/notifications.php:1966
11184
  #, php-format
11185
  msgid "%s to %s"
11186
  msgstr "%s zu %s"
11195
  msgid "Only %s slots remained for %s ticket so you cannot book %s ones."
11196
  msgstr ""
11197
 
11198
+ #: app/features/wc.php:251 app/libraries/main.php:7149
11199
  #, php-format
11200
  msgid "Maximum allowed number of tickets that you can book is %s."
11201
  msgstr ""
11202
 
11203
+ #: app/libraries/book.php:107
11204
  msgid " ("
11205
  msgstr ""
11206
 
11207
+ #: app/libraries/book.php:170
11208
  #, php-format
11209
  msgid "%s Price"
11210
  msgstr "%s Preis"
11211
 
11212
+ #: app/libraries/book.php:897 app/libraries/book.php:991
11213
  msgid "Discount"
11214
  msgstr "Rabatt"
11215
 
11216
+ #: app/libraries/book.php:1084 app/modules/booking/default.php:654
11217
  #: app/modules/booking/default.php:767
11218
  msgid "Download Invoice"
11219
  msgstr "Download Rechnung"
11390
  msgid "Timeline View"
11391
  msgstr "Stundenplan"
11392
 
11393
+ #: app/libraries/main.php:439 app/libraries/main.php:7132
11394
+ #: app/libraries/main.php:7193
11395
  msgid "SU"
11396
  msgstr "SO"
11397
 
11398
+ #: app/libraries/main.php:440 app/libraries/main.php:7133
11399
+ #: app/libraries/main.php:7194
11400
  msgid "MO"
11401
  msgstr "MO"
11402
 
11403
+ #: app/libraries/main.php:441 app/libraries/main.php:7134
11404
+ #: app/libraries/main.php:7195
11405
  msgid "TU"
11406
  msgstr "DI"
11407
 
11408
+ #: app/libraries/main.php:442 app/libraries/main.php:7135
11409
+ #: app/libraries/main.php:7196
11410
  msgid "WE"
11411
  msgstr "MI"
11412
 
11413
+ #: app/libraries/main.php:443 app/libraries/main.php:7136
11414
+ #: app/libraries/main.php:7197
11415
  msgid "TH"
11416
  msgstr "DO"
11417
 
11418
+ #: app/libraries/main.php:444 app/libraries/main.php:7137
11419
+ #: app/libraries/main.php:7198
11420
  msgid "FR"
11421
  msgstr "FR"
11422
 
11423
+ #: app/libraries/main.php:445 app/libraries/main.php:7138
11424
+ #: app/libraries/main.php:7199
11425
  msgid "SA"
11426
  msgstr "SA"
11427
 
11752
  msgid "Free"
11753
  msgstr "kostenfrei"
11754
 
11755
+ #: app/libraries/main.php:4917 app/libraries/main.php:7519
11756
  msgid "M.E. Calender"
11757
  msgstr "M.E. Calender"
11758
 
11770
  msgid "%s booked %s event."
11771
  msgstr "%s gebuchtes %s Event"
11772
 
11773
+ #: app/libraries/main.php:7115 app/libraries/main.php:7176
11774
  msgid "Taxonomies"
11775
  msgstr "Klassifizierung "
11776
 
11777
+ #: app/libraries/main.php:7117 app/libraries/main.php:7178
11778
  msgid "Category Plural Label"
11779
  msgstr "Kategorien"
11780
 
11781
+ #: app/libraries/main.php:7118 app/libraries/main.php:7179
11782
  msgid "Category Singular Label"
11783
  msgstr "Kategorie"
11784
 
11785
+ #: app/libraries/main.php:7119 app/libraries/main.php:7180
11786
  msgid "Label Plural Label"
11787
  msgstr "Labels"
11788
 
11789
+ #: app/libraries/main.php:7120 app/libraries/main.php:7181
11790
  msgid "Label Singular Label"
11791
  msgstr "Label"
11792
 
11793
+ #: app/libraries/main.php:7120 app/libraries/main.php:7181
11794
  msgid "label"
11795
  msgstr "label"
11796
 
11797
+ #: app/libraries/main.php:7121 app/libraries/main.php:7182
11798
  msgid "Location Plural Label"
11799
  msgstr "Veranstaltungsorte"
11800
 
11801
+ #: app/libraries/main.php:7122 app/libraries/main.php:7183
11802
  msgid "Location Singular Label"
11803
  msgstr "Veranstaltungsort"
11804
 
11805
+ #: app/libraries/main.php:7123 app/libraries/main.php:7184
11806
  msgid "Organizer Plural Label"
11807
  msgstr "Veranstalter"
11808
 
11809
+ #: app/libraries/main.php:7124 app/libraries/main.php:7185
11810
  msgid "Organizer Singular Label"
11811
  msgstr "Veranstalter"
11812
 
11813
+ #: app/libraries/main.php:7125 app/libraries/main.php:7186
11814
  #, fuzzy
11815
  #| msgid "Label Plural Label"
11816
  msgid "Speaker Plural Label"
11817
  msgstr "Labels"
11818
 
11819
+ #: app/libraries/main.php:7126 app/libraries/main.php:7187
11820
  #, fuzzy
11821
  #| msgid "Label Singular Label"
11822
  msgid "Speaker Singular Label"
11823
  msgstr "Label"
11824
 
11825
+ #: app/libraries/main.php:7132 app/libraries/main.php:7193
11826
  msgid "Sunday abbreviation"
11827
  msgstr "Sonntag Abkürzung"
11828
 
11829
+ #: app/libraries/main.php:7133 app/libraries/main.php:7194
11830
  msgid "Monday abbreviation"
11831
  msgstr "Montag Abkürzung"
11832
 
11833
+ #: app/libraries/main.php:7134 app/libraries/main.php:7195
11834
  msgid "Tuesday abbreviation"
11835
  msgstr "Dienstag Abkürzung"
11836
 
11837
+ #: app/libraries/main.php:7135 app/libraries/main.php:7196
11838
  msgid "Wednesday abbreviation"
11839
  msgstr "Mittwoch Abkürzung"
11840
 
11841
+ #: app/libraries/main.php:7136 app/libraries/main.php:7197
11842
  msgid "Thursday abbreviation"
11843
  msgstr "Donnerstag Abkürzung"
11844
 
11845
+ #: app/libraries/main.php:7137 app/libraries/main.php:7198
11846
  msgid "Friday abbreviation"
11847
  msgstr "Freitag Abkürzung"
11848
 
11849
+ #: app/libraries/main.php:7138 app/libraries/main.php:7199
11850
  msgid "Saturday abbreviation"
11851
  msgstr "Samstag Abkürzung "
11852
 
11853
+ #: app/libraries/main.php:7144
11854
  #, fuzzy
11855
  #| msgid "Ticket (Singular)"
11856
  msgid "Booking (Singular)"
11857
  msgstr "Ticket"
11858
 
11859
+ #: app/libraries/main.php:7145
11860
  #, fuzzy
11861
  #| msgid "Tickets (Plural)"
11862
  msgid "Bookings (Plural)"
11863
  msgstr "Tickets"
11864
 
11865
+ #: app/libraries/main.php:7146
11866
  msgid "Booking Success Message"
11867
  msgstr "Buchung erfolgreich Mitteilung"
11868
 
11869
+ #: app/libraries/main.php:7146
11870
  #, fuzzy
11871
  #| msgid ""
11872
  #| "Thanks for your booking. Your tickets booked, booking verification might "
11878
  "Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
11879
  "Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
11880
 
11881
+ #: app/libraries/main.php:7147
11882
  #, fuzzy
11883
  #| msgid "Booking Success Message"
11884
  msgid "Booking Restriction Message 1"
11885
  msgstr "Buchung erfolgreich Mitteilung"
11886
 
11887
+ #: app/libraries/main.php:7147
11888
  #, php-format
11889
  msgid ""
11890
  "You selected %s tickets to book but maximum number of tikets per user is %s "
11891
  "tickets."
11892
  msgstr ""
11893
 
11894
+ #: app/libraries/main.php:7148
11895
  #, fuzzy
11896
  #| msgid "Booking Success Message"
11897
  msgid "Booking Restriction Message 2"
11898
  msgstr "Buchung erfolgreich Mitteilung"
11899
 
11900
+ #: app/libraries/main.php:7148
11901
  #, php-format
11902
  msgid ""
11903
  "You booked %s tickets till now but maximum number of tickets per user is %s "
11904
  "tickets."
11905
  msgstr ""
11906
 
11907
+ #: app/libraries/main.php:7149
11908
  #, fuzzy
11909
  #| msgid "Booking Success Message"
11910
  msgid "Booking IP Restriction Message"
11911
  msgstr "Buchung erfolgreich Mitteilung"
11912
 
11913
+ #: app/libraries/main.php:7150
11914
  #, fuzzy
11915
  #| msgid "Booking Options"
11916
  msgid "Booking Button"
11917
  msgstr "Buchungsoptionen"
11918
 
11919
+ #: app/libraries/main.php:7150
11920
  #, fuzzy
11921
  #| msgid "Booking Form"
11922
  msgid "Book Now"
11923
  msgstr "Buchungsformular"
11924
 
11925
+ #: app/libraries/main.php:7151
11926
  msgid "Ticket (Singular)"
11927
  msgstr "Ticket"
11928
 
11929
+ #: app/libraries/main.php:7152
11930
  msgid "Tickets (Plural)"
11931
  msgstr "Tickets"
11932
 
11933
+ #: app/libraries/main.php:7156 app/libraries/main.php:7203
11934
  msgid "Others"
11935
  msgstr "Andere"
11936
 
11937
+ #: app/libraries/main.php:7158 app/libraries/main.php:7205
11938
  #: app/widgets/single.php:128
11939
  msgid "Register Button"
11940
  msgstr "Register Button"
11941
 
11942
+ #: app/libraries/main.php:7159 app/libraries/main.php:7206
11943
  msgid "View Detail Button"
11944
  msgstr "Ansicht Detail Button"
11945
 
11946
+ #: app/libraries/main.php:7159 app/libraries/main.php:7206
11947
  #: app/skins/carousel/render.php:105 app/skins/carousel/render.php:145
11948
  #: app/skins/grid/render.php:94 app/skins/grid/render.php:153
11949
  #: app/skins/grid/render.php:214 app/skins/grid/render.php:237
11955
  msgid "View Detail"
11956
  msgstr "Details "
11957
 
11958
+ #: app/libraries/main.php:7160 app/libraries/main.php:7207
11959
  msgid "Event Detail Button"
11960
  msgstr "Event Detail Button"
11961
 
11962
+ #: app/libraries/main.php:7160 app/libraries/main.php:7207
11963
  msgid "Event Detail"
11964
  msgstr "Veranstaltungsdetails"
11965
 
11966
+ #: app/libraries/main.php:7322
11967
  msgid "EventON"
11968
  msgstr "EventON"
11969
 
11970
+ #: app/libraries/main.php:7323
11971
  msgid "The Events Calendar"
11972
  msgstr "The Events Calendar"
11973
 
11974
+ #: app/libraries/main.php:7324
11975
  msgid "Events Schedule WP Plugin"
11976
  msgstr "Event Zeitplan WP-Plugin"
11977
 
11978
+ #: app/libraries/main.php:7325
11979
  msgid "Calendarize It"
11980
  msgstr ""
11981
 
11982
+ #: app/libraries/main.php:7326
11983
  #, fuzzy
11984
  #| msgid "No Search Options"
11985
  msgid "Event Espresso"
11986
  msgstr "Keine Suchoptionen"
11987
 
11988
+ #: app/libraries/main.php:7327
11989
  msgid "Events Manager (Recurring)"
11990
  msgstr "Wiederholende Veranstaltung"
11991
 
11992
+ #: app/libraries/main.php:7328
11993
  msgid "Events Manager (Single)"
11994
  msgstr "Moderner Event Kalender"
11995
 
11996
+ #: app/libraries/main.php:7329
11997
  #, fuzzy
11998
  #| msgid "Events Manager (Single)"
11999
  msgid "WP Event Manager"
12000
  msgstr "Moderner Event Kalender"
12001
 
12002
+ #: app/libraries/main.php:7549
12003
  #, fuzzy
12004
  #| msgid "Sunday"
12005
  msgid "Sun"
12006
  msgstr "Sonntag"
12007
 
12008
+ #: app/libraries/main.php:7549
12009
  #, fuzzy
12010
  #| msgid "Month"
12011
  msgid "Mon"
12012
  msgstr "Monat "
12013
 
12014
+ #: app/libraries/main.php:7549
12015
  #, fuzzy
12016
  #| msgid "Tel"
12017
  msgid "Tue"
12018
  msgstr "Tel"
12019
 
12020
+ #: app/libraries/main.php:7549
12021
  msgid "Wed"
12022
  msgstr ""
12023
 
12024
+ #: app/libraries/main.php:7549
12025
  msgid "Thu"
12026
  msgstr ""
12027
 
12028
+ #: app/libraries/main.php:7549
12029
  #, fuzzy
12030
  #| msgid "Friday"
12031
  msgid "Fri"
12032
  msgstr "Freitag"
12033
 
12034
+ #: app/libraries/main.php:7549
12035
  #, fuzzy
12036
  #| msgid "Start"
12037
  msgid "Sat"
12038
  msgstr "Start"
12039
 
12040
+ #: app/libraries/main.php:7755 app/libraries/render.php:82
12041
  #: app/libraries/render.php:467
12042
  msgid "Skin controller does not exist."
12043
  msgstr "Skin contoller existiert nicht."
12044
 
12045
+ #: app/libraries/main.php:7992
12046
  msgid "Sold Out"
12047
  msgstr "Ausgebucht"
12048
 
12049
+ #: app/libraries/main.php:8023
12050
  msgid "Last Few Tickets"
12051
  msgstr "Nur noch wenige Tickets verfügbar."
12052
 
12053
+ #: app/libraries/main.php:8295
12054
  #, fuzzy
12055
  #| msgid "Loading..."
12056
  msgid "Ongoing"
12057
  msgstr "Laden…"
12058
 
12059
+ #: app/libraries/main.php:8297
12060
  #, fuzzy
12061
  #| msgid "Expired Events"
12062
  msgid "Expired"
12063
  msgstr "Abgelaufene Events"
12064
 
12065
+ #: app/libraries/main.php:8363 app/libraries/main.php:8380
12066
  #, fuzzy
12067
  #| msgid "minutes"
12068
  msgid "Minutes"
12069
  msgstr "Minuten"
12070
 
12071
+ #: app/libraries/main.php:8385
12072
  msgid "AM / PM"
12073
  msgstr ""
12074
 
12075
+ #: app/libraries/main.php:8386
12076
  msgid "AM"
12077
  msgstr "AM"
12078
 
12079
+ #: app/libraries/main.php:8387
12080
  msgid "PM"
12081
  msgstr "PM"
12082
 
12083
+ #: app/libraries/main.php:8395
12084
  #, fuzzy
12085
  #| msgid "Loading..."
12086
  msgid "Ongoing..."
12087
  msgstr "Laden…"
12088
 
12089
+ #: app/libraries/main.php:8396 app/skins/single.php:229
12090
  #, fuzzy
12091
  #| msgid "Expired Events"
12092
  msgid "Expired!"
12093
  msgstr "Abgelaufene Events"
12094
 
12095
+ #: app/libraries/main.php:9006
12096
  #, fuzzy
12097
  #| msgid "Categories"
12098
  msgid "Uncategorized"
12099
  msgstr "Kategorien"
12100
 
12101
+ #: app/libraries/notifications.php:75
12102
  msgid "Please verify your email."
12103
  msgstr "Bitte bestätigen Sie Ihre email."
12104
 
12105
+ #: app/libraries/notifications.php:184
12106
  msgid "Your booking is received."
12107
  msgstr "Ihre Buchung ist eingegangen"
12108
 
12109
+ #: app/libraries/notifications.php:316
12110
  msgid "Your booking is confirmed."
12111
  msgstr "Ihre Buchung wurde bestätigt."
12112
 
12113
+ #: app/libraries/notifications.php:502
12114
  msgid "booking canceled."
12115
  msgstr "Ihre Buchung wurde storniert"
12116
 
12117
+ #: app/libraries/notifications.php:651
12118
  #, fuzzy
12119
  #| msgid "booking canceled."
12120
  msgid "booking rejected."
12121
  msgstr "Ihre Buchung wurde storniert"
12122
 
12123
+ #: app/libraries/notifications.php:716
12124
  msgid "A new booking is received."
12125
  msgstr "Eine neue Buchung ist eingegangen."
12126
 
12127
+ #: app/libraries/notifications.php:977
12128
  msgid "A new event is added."
12129
  msgstr "Eine neue Veranstaltung wurde hinzugefügt."
12130
 
12131
+ #: app/libraries/notifications.php:1117
12132
  msgid "Your event is published."
12133
  msgstr "Die Veranstaltung wurde veröffentlicht."
12134
 
12135
+ #: app/libraries/notifications.php:1314
12136
  #, fuzzy
12137
  #| msgid "Event Color"
12138
  msgid "Event is soldout!"
12139
  msgstr "Farbe der Veranstaltung"
12140
 
12141
+ #: app/libraries/notifications.php:1426
12142
  #, fuzzy
12143
  #| msgid "Thanks for your booking."
12144
  msgid "Thanks for your attention!"
12145
  msgstr "Vielen Dank für Ihre Buchung."
12146
 
12147
+ #: app/libraries/notifications.php:1903
12148
  msgid "to"
12149
  msgstr ""
12150
 
12151
+ #: app/libraries/notifications.php:1935 app/modules/export/details.php:80
12152
  msgid "+ Add to Google Calendar"
12153
  msgstr "+ zum Google Calendar hinzufügen"
12154
 
12155
+ #: app/libraries/notifications.php:1936 app/modules/export/details.php:81
12156
  #, fuzzy
12157
  #| msgid "+ iCal export"
12158
  msgid "+ iCal / Outlook export"
12159
  msgstr "+ zu iCal exportieren"
12160
 
12161
+ #: app/libraries/notifications.php:1980
12162
  #, fuzzy, php-format
12163
  #| msgid "+ Add to Google Calendar"
12164
  msgid "+ %s to Google Calendar"
12550
  msgid "No Events"
12551
  msgstr "Keine Veranstaltungen"
12552
 
12553
+ #: app/skins/general_calendar/tpl.php:99
12554
  #, fuzzy
12555
  #| msgid "Found Events"
12556
  msgid "Find Events"
12723
  msgid "http://webnus.net"
12724
  msgstr "http://webnus.net"
12725
 
12726
+ #, fuzzy
12727
+ #~| msgid "Time Format"
12728
+ #~ msgid "DateTime Format"
12729
+ #~ msgstr "Zeitformat"
12730
+
12731
+ #, fuzzy
12732
+ #~| msgid "Hide Events"
12733
+ #~ msgid "Hide group events"
12734
+ #~ msgstr "Events verbergen"
12735
+
12736
+ #, fuzzy
12737
+ #~| msgid "Frontend Event Submission"
12738
+ #~ msgid "Event submission roles"
12739
+ #~ msgstr "Erstellung von Veranstaltungen im Frontend"
12740
+
12741
+ #, fuzzy
12742
+ #~| msgid "Sorry! You don't have access to modify this event."
12743
+ #~ msgid "Select roles that have access to submission events"
12744
+ #~ msgstr ""
12745
+ #~ "Entschuldigung! Sie haben keine Berechtigung zum Ändern dieser "
12746
+ #~ "Veranstaltung"
12747
+
12748
  #~ msgid "Organizer Tel"
12749
  #~ msgstr "Organisator Telefon"
12750
 
languages/modern-events-calendar-lite-en_US.mo CHANGED
Binary file
languages/modern-events-calendar-lite-en_US.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: modern-events-calendar\n"
4
- "POT-Creation-Date: 2021-11-10 13:40+0330\n"
5
- "PO-Revision-Date: 2021-11-10 13:42+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: en_US\n"
@@ -81,38 +81,38 @@ msgid "Select Shortcode"
81
  msgstr ""
82
 
83
  #: app/core/src/Books/Book.php:106 app/features/ix.php:284
84
- #: app/libraries/main.php:7455 app/libraries/main.php:7482
85
  msgid "Rejected"
86
  msgstr ""
87
 
88
  #: app/core/src/Books/Book.php:111 app/features/ix.php:283
89
- #: app/libraries/main.php:7454 app/libraries/main.php:7474
90
  msgid "Confirmed"
91
  msgstr ""
92
 
93
  #: app/core/src/Books/Book.php:117 app/features/mec/settings.php:742
94
- #: app/libraries/main.php:7456 app/libraries/main.php:7478
95
  msgid "Pending"
96
  msgstr ""
97
 
98
  #: app/core/src/Books/Book.php:186 app/features/ix.php:289
99
  #: app/features/labels.php:119 app/features/labels.php:145
100
- #: app/libraries/main.php:7503
101
  msgid "Canceled"
102
  msgstr ""
103
 
104
  #: app/core/src/Books/Book.php:191 app/features/ix.php:288
105
- #: app/features/mec/booking.php:1177 app/features/mec/booking.php:1199
106
- #: app/features/mec/integrations.php:456 app/features/mec/integrations.php:478
107
  #: app/features/mec/modules.php:406 app/features/mec/modules.php:428
108
  #: app/features/mec/notifications.php:1919
109
  #: app/features/mec/notifications.php:1942 app/features/mec/settings.php:1584
110
  #: app/features/mec/settings.php:1606 app/features/mec/single.php:580
111
- #: app/features/mec/single.php:602 app/libraries/main.php:7502
112
  msgid "Verified"
113
  msgstr ""
114
 
115
- #: app/core/src/Books/Book.php:197 app/libraries/main.php:7504
116
  msgid "Waiting"
117
  msgstr ""
118
 
@@ -135,17 +135,17 @@ msgstr ""
135
  #: app/core/src/Forms/FormFields.php:188 app/core/src/Forms/SettingsForm.php:93
136
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:70
137
  #: app/features/autoemails.php:60 app/features/events.php:602
138
- #: app/features/events.php:2639 app/features/events.php:2706
139
- #: app/features/events.php:2795 app/features/events.php:4394
140
  #: app/features/fes.php:259 app/features/fes/form.php:808
141
  #: app/features/login/login.php:5 app/features/mec/booking.php:57
142
- #: app/features/mec/booking.php:791 app/features/mec/booking.php:889
143
  #: app/features/mec/settings.php:295 app/features/mec/single.php:288
144
  #: app/features/organizers.php:112 app/features/organizers.php:153
145
  #: app/features/profile/profile.php:195 app/features/speakers.php:128
146
  #: app/features/speakers.php:205 app/libraries/main.php:604
147
  #: app/libraries/main.php:2071 app/libraries/main.php:2140
148
- #: app/libraries/main.php:3702 app/libraries/notifications.php:2053
149
  #: app/modules/booking/steps/form.php:68 app/modules/booking/steps/form.php:217
150
  #: app/skins/single.php:1406 app/skins/single.php:1473
151
  #: app/skins/single/default.php:347 app/skins/single/default.php:593
@@ -165,8 +165,8 @@ msgstr ""
165
  #: app/core/src/Forms/FormFields.php:341 app/core/src/Forms/FormFields.php:372
166
  #: app/core/src/Forms/FormFields.php:396 app/core/src/Forms/FormFields.php:442
167
  #: app/core/src/Forms/FormFields.php:488 app/core/src/Forms/FormFields.php:544
168
- #: app/core/src/Forms/FormFields.php:596 app/features/organizers.php:337
169
- #: app/features/organizers.php:345 app/libraries/main.php:3610
170
  #: app/libraries/main.php:3641 app/libraries/main.php:3671
171
  #: app/libraries/main.php:3701 app/libraries/main.php:3732
172
  #: app/libraries/main.php:3763 app/libraries/main.php:3793
@@ -178,8 +178,8 @@ msgid "Sort"
178
  msgstr ""
179
 
180
  #: app/core/src/Forms/FormFields.php:52 app/core/src/Forms/SettingsForm.php:88
181
- #: app/features/events.php:2705 app/features/events.php:2794
182
- #: app/features/mec/booking.php:790 app/features/mec/booking.php:888
183
  #: app/features/mec/single.php:287 app/libraries/main.php:3611
184
  #: app/libraries/skins.php:1367
185
  msgid "Text"
@@ -210,10 +210,10 @@ msgstr ""
210
  #: app/core/src/Forms/FormFields.php:505 app/core/src/Forms/FormFields.php:554
211
  #: app/core/src/Forms/FormFields.php:597 app/features/events.php:2105
212
  #: app/features/events.php:2131 app/features/events.php:2344
213
- #: app/features/events.php:2480 app/features/events.php:2516
214
- #: app/features/mec/booking.php:609 app/features/mec/booking.php:638
215
- #: app/features/mec/booking.php:706 app/features/mec/booking.php:738
216
- #: app/features/organizers.php:337 app/features/organizers.php:346
217
  #: app/libraries/hourlyschedule.php:53 app/libraries/hourlyschedule.php:74
218
  #: app/libraries/hourlyschedule.php:102 app/libraries/hourlyschedule.php:130
219
  #: app/libraries/hourlyschedule.php:154 app/libraries/main.php:3621
@@ -252,13 +252,13 @@ msgstr ""
252
  msgid "MEC Last Name"
253
  msgstr ""
254
 
255
- #: app/core/src/Forms/FormFields.php:93 app/features/events.php:2703
256
- #: app/features/mec/booking.php:788 app/libraries/main.php:3642
257
  msgid "MEC Name"
258
  msgstr ""
259
 
260
  #: app/core/src/Forms/FormFields.php:158 app/core/src/Forms/SettingsForm.php:83
261
- #: app/features/events.php:2704 app/features/mec/booking.php:789
262
  #: app/libraries/main.php:3672
263
  msgid "MEC Email"
264
  msgstr ""
@@ -269,16 +269,16 @@ msgid "URL"
269
  msgstr ""
270
 
271
  #: app/core/src/Forms/FormFields.php:250
272
- #: app/core/src/Forms/SettingsForm.php:108 app/features/events.php:2709
273
- #: app/features/mec/booking.php:794 app/libraries/main.php:3764
274
  msgid "File"
275
  msgstr ""
276
 
277
  #: app/core/src/Forms/FormFields.php:280 app/core/src/Forms/SettingsForm.php:98
278
- #: app/core/src/SingleBuilder/Widgets/EventDate/EventDate.php:44
279
- #: app/features/events.php:1381 app/features/events.php:2707
280
- #: app/features/events.php:2796 app/features/fes.php:259
281
- #: app/features/mec/booking.php:792 app/features/mec/booking.php:890
282
  #: app/features/mec/single.php:290 app/features/profile/profile.php:59
283
  #: app/features/wc.php:84 app/libraries/main.php:3794
284
  #: app/libraries/skins.php:1279 app/modules/booking/steps/tickets.php:136
@@ -289,9 +289,9 @@ msgid "Date"
289
  msgstr ""
290
 
291
  #: app/core/src/Forms/FormFields.php:311
292
- #: app/core/src/Forms/SettingsForm.php:103 app/features/events.php:2708
293
- #: app/features/events.php:2797 app/features/mec/booking.php:793
294
- #: app/features/mec/booking.php:891 app/features/mec/single.php:291
295
  #: app/features/organizers.php:104 app/features/organizers.php:149
296
  #: app/features/speakers.php:120 app/features/speakers.php:201
297
  #: app/features/speakers.php:288 app/libraries/main.php:3825
@@ -299,17 +299,17 @@ msgid "Tel"
299
  msgstr ""
300
 
301
  #: app/core/src/Forms/FormFields.php:342
302
- #: app/core/src/Forms/SettingsForm.php:113 app/features/events.php:2710
303
- #: app/features/events.php:2798 app/features/mec/booking.php:795
304
- #: app/features/mec/booking.php:892 app/features/mec/single.php:292
305
  #: app/libraries/main.php:3856
306
  msgid "Textarea"
307
  msgstr ""
308
 
309
  #: app/core/src/Forms/FormFields.php:373
310
- #: app/core/src/Forms/SettingsForm.php:138 app/features/events.php:2715
311
- #: app/features/events.php:2803 app/features/mec/booking.php:800
312
- #: app/features/mec/booking.php:897 app/features/mec/settings.php:351
313
  #: app/features/mec/single.php:293 app/libraries/main.php:3894
314
  msgid "Paragraph"
315
  msgstr ""
@@ -319,9 +319,9 @@ msgid "HTML and shortcode are allowed."
319
  msgstr ""
320
 
321
  #: app/core/src/Forms/FormFields.php:397
322
- #: app/core/src/Forms/SettingsForm.php:118 app/features/events.php:2711
323
- #: app/features/events.php:2799 app/features/mec/booking.php:127
324
- #: app/features/mec/booking.php:796 app/features/mec/booking.php:893
325
  #: app/features/mec/single.php:294 app/libraries/main.php:3918
326
  msgid "Checkboxes"
327
  msgstr ""
@@ -333,17 +333,17 @@ msgid "Option"
333
  msgstr ""
334
 
335
  #: app/core/src/Forms/FormFields.php:443
336
- #: app/core/src/Forms/SettingsForm.php:123 app/features/events.php:2712
337
- #: app/features/events.php:2800 app/features/mec/booking.php:797
338
- #: app/features/mec/booking.php:894 app/features/mec/single.php:295
339
  #: app/libraries/main.php:3966
340
  msgid "Radio Buttons"
341
  msgstr ""
342
 
343
  #: app/core/src/Forms/FormFields.php:489
344
- #: app/core/src/Forms/SettingsForm.php:128 app/features/events.php:2713
345
- #: app/features/events.php:2801 app/features/mec/booking.php:125
346
- #: app/features/mec/booking.php:798 app/features/mec/booking.php:895
347
  #: app/features/mec/meta_boxes/search_form.php:67
348
  #: app/features/mec/meta_boxes/search_form.php:75
349
  #: app/features/mec/meta_boxes/search_form.php:83
@@ -434,9 +434,9 @@ msgid "Consider first item as placeholder"
434
  msgstr ""
435
 
436
  #: app/core/src/Forms/FormFields.php:545
437
- #: app/core/src/Forms/SettingsForm.php:133 app/features/events.php:2714
438
- #: app/features/events.php:2802 app/features/mec/booking.php:799
439
- #: app/features/mec/booking.php:896 app/libraries/main.php:4072
440
  msgid "Agreement"
441
  msgstr ""
442
 
@@ -467,7 +467,7 @@ msgstr ""
467
  msgid "Insert a label for this option"
468
  msgstr ""
469
 
470
- #: app/core/src/Forms/FormFields.php:606 app/libraries/main.php:8672
471
  msgid "Mapping with Profile Fields"
472
  msgstr ""
473
 
@@ -617,17 +617,17 @@ msgstr ""
617
  #: app/features/events.php:1834 app/features/events.php:2004
618
  #: app/features/events.php:2019 app/features/events.php:2261
619
  #: app/features/events.php:2274 app/features/events.php:2467
620
- #: app/features/events.php:2503 app/features/fes/form.php:456
621
  #: app/features/fes/form.php:764 app/features/fes/form.php:887
622
  #: app/features/locations.php:341 app/features/mec/booking.php:109
623
  #: app/features/mec/booking.php:185 app/features/mec/booking.php:198
624
  #: app/features/mec/booking.php:234 app/features/mec/booking.php:299
625
  #: app/features/mec/booking.php:332 app/features/mec/booking.php:345
626
  #: app/features/mec/booking.php:411 app/features/mec/booking.php:462
627
- #: app/features/mec/booking.php:597 app/features/mec/booking.php:626
628
- #: app/features/mec/booking.php:691 app/features/mec/booking.php:701
629
- #: app/features/mec/booking.php:723 app/features/mec/booking.php:733
630
- #: app/features/mec/booking.php:998 app/features/mec/booking.php:1026
631
  #: app/features/mec/dashboard.php:73 app/features/mec/integrations.php:52
632
  #: app/features/mec/integrations.php:65 app/features/mec/integrations.php:81
633
  #: app/features/mec/meta_boxes/display_options.php:97
@@ -695,7 +695,7 @@ msgstr ""
695
  #: app/features/mec/single.php:382 app/features/mec/styling.php:123
696
  #: app/features/mec/styling.php:223 app/features/mec/styling.php:240
697
  #: app/features/mec/styling.php:254 app/features/occurrences.php:472
698
- #: app/features/occurrences.php:499 app/features/organizers.php:286
699
  #: app/features/popup/event.php:127 app/features/popup/event.php:174
700
  #: app/features/popup/settings.php:78 app/features/popup/settings.php:161
701
  #: app/features/popup/settings.php:182 app/features/popup/settings.php:300
@@ -810,7 +810,7 @@ msgid "How to set category"
810
  msgstr ""
811
 
812
  #: app/core/src/SingleBuilder/Widgets/EventCategories/EventCategories.php:46
813
- #: app/features/events.php:218 app/features/events.php:3826
814
  #: app/features/mec/meta_boxes/display_options.php:1651
815
  #: app/features/mec/meta_boxes/search_form.php:64
816
  #: app/features/mec/meta_boxes/search_form.php:152
@@ -827,8 +827,8 @@ msgstr ""
827
  #: app/features/mec/settings.php:1150 app/features/mec/settings.php:1213
828
  #: app/features/mec/single.php:445 app/features/mec/single.php:498
829
  #: app/features/popup/settings.php:220 app/features/popup/settings.php:259
830
- #: app/features/search.php:91 app/libraries/main.php:7116
831
- #: app/libraries/main.php:7177 app/libraries/search.php:256
832
  #: app/libraries/skins.php:1080 app/skins/single.php:1097
833
  #: app/skins/single/default.php:299 app/skins/single/default.php:546
834
  #: app/skins/single/m1.php:229 app/skins/single/m2.php:148
@@ -851,8 +851,8 @@ msgstr ""
851
  #: app/core/src/SingleBuilder/Widgets/EventCost/EventCost.php:47
852
  #: app/features/events.php:432 app/features/events.php:1277
853
  #: app/features/fes/form.php:864 app/features/mec/settings.php:1147
854
- #: app/features/occurrences.php:511 app/libraries/main.php:7162
855
- #: app/libraries/main.php:7209 app/libraries/skins.php:1395
856
  #: app/skins/single.php:1130 app/skins/single/default.php:215
857
  #: app/skins/single/default.php:464 app/skins/single/m1.php:81
858
  #: app/skins/single/modern.php:292
@@ -922,11 +922,11 @@ msgid "How to set label"
922
  msgstr ""
923
 
924
  #: app/core/src/SingleBuilder/Widgets/EventLabels/EventLabels.php:48
925
- #: app/features/events.php:4148 app/features/fes/form.php:984
926
  #: app/features/labels.php:61 app/features/labels.php:227
927
  #: app/features/mec.php:494 app/features/mec/meta_boxes/filter.php:72
928
- #: app/features/mec/meta_boxes/filter.php:135 app/libraries/main.php:7117
929
- #: app/libraries/main.php:7178 app/skins/single.php:1260
930
  #: app/skins/single/default.php:247 app/skins/single/default.php:493
931
  #: app/skins/single/m1.php:96 app/skins/single/modern.php:307
932
  msgid "Labels"
@@ -954,7 +954,7 @@ msgid "How to set location"
954
  msgstr ""
955
 
956
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:54
957
- #: app/features/events.php:3827 app/features/events.php:4141
958
  #: app/features/locations.php:58 app/features/locations.php:267
959
  #: app/features/locations.php:329 app/features/locations.php:331
960
  #: app/features/locations.php:340
@@ -977,7 +977,7 @@ msgstr ""
977
  #: app/features/popup/event.php:117 app/features/popup/event.php:126
978
  #: app/features/popup/settings.php:228 app/features/popup/settings.php:267
979
  #: app/features/search.php:97 app/libraries/main.php:2914
980
- #: app/libraries/main.php:7120 app/libraries/main.php:7181
981
  #: app/libraries/search.php:294 app/libraries/skins.php:1135
982
  #: app/skins/single.php:1024 app/skins/single.php:1532
983
  #: app/skins/single/default.php:268 app/skins/single/default.php:516
@@ -1012,7 +1012,7 @@ msgstr ""
1012
  #: app/core/src/SingleBuilder/Widgets/EventMoreInfo/EventMoreInfo.php:48
1013
  #: app/features/events.php:1510 app/features/events.php:1523
1014
  #: app/features/fes/form.php:834 app/features/occurrences.php:525
1015
- #: app/libraries/main.php:7160 app/libraries/main.php:7207
1016
  #: app/skins/single.php:1230 app/skins/single/default.php:232
1017
  #: app/skins/single/default.php:478 app/skins/single/m1.php:255
1018
  #: app/skins/single/m2.php:175 app/skins/single/modern.php:209
@@ -1055,9 +1055,9 @@ msgid "How to set organizer"
1055
  msgstr ""
1056
 
1057
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:53
1058
- #: app/features/events.php:431 app/features/events.php:3828
1059
- #: app/features/events.php:4143 app/features/events.php:4144
1060
- #: app/features/events.php:4145
1061
  #: app/features/mec/meta_boxes/display_options.php:1654
1062
  #: app/features/mec/meta_boxes/search_form.php:80
1063
  #: app/features/mec/meta_boxes/search_form.php:168
@@ -1075,11 +1075,11 @@ msgstr ""
1075
  #: app/features/mec/single.php:502 app/features/occurrences.php:487
1076
  #: app/features/occurrences.php:489 app/features/occurrences.php:498
1077
  #: app/features/organizers.php:58 app/features/organizers.php:208
1078
- #: app/features/organizers.php:274 app/features/organizers.php:276
1079
- #: app/features/organizers.php:285 app/features/popup/event.php:164
1080
  #: app/features/popup/event.php:173 app/features/popup/settings.php:224
1081
  #: app/features/popup/settings.php:263 app/features/search.php:103
1082
- #: app/libraries/main.php:7122 app/libraries/main.php:7183
1083
  #: app/libraries/search.php:314 app/libraries/skins.php:1164
1084
  #: app/skins/single.php:1388 app/skins/single/default.php:329
1085
  #: app/skins/single/default.php:575 app/skins/single/m1.php:124
@@ -1118,7 +1118,7 @@ msgid "How to set register button"
1118
  msgstr ""
1119
 
1120
  #: app/core/src/SingleBuilder/Widgets/EventRegisterButton/EventRegisterButton.php:48
1121
- #: app/libraries/main.php:7156 app/libraries/main.php:7203
1122
  #: app/skins/available_spot/tpl.php:204 app/skins/carousel/render.php:105
1123
  #: app/skins/carousel/render.php:145 app/skins/grid/render.php:94
1124
  #: app/skins/grid/render.php:153 app/skins/grid/render.php:214
@@ -1257,8 +1257,8 @@ msgid "Details"
1257
  msgstr ""
1258
 
1259
  #: app/features/booking/calendar_novel.php:139
1260
- #: app/features/search_bar/search_result.php:12 app/libraries/main.php:7165
1261
- #: app/libraries/main.php:7212 app/libraries/notifications.php:1615
1262
  #: app/libraries/render.php:554 app/libraries/render.php:758
1263
  #: app/libraries/render.php:816 app/libraries/render.php:976
1264
  #: app/modules/local-time/details.php:49 app/modules/local-time/type1.php:47
@@ -1292,8 +1292,8 @@ msgid "Settings"
1292
  msgstr ""
1293
 
1294
  #: app/features/contextual.php:62 app/features/events.php:1556
1295
- #: app/features/events.php:2644 app/features/mec/booking.php:753
1296
- #: app/features/mec/booking.php:1024 app/features/mec/settings.php:1012
1297
  #: app/features/mec/support.php:29
1298
  msgid "Booking Form"
1299
  msgstr ""
@@ -1308,7 +1308,7 @@ msgid ""
1308
  msgstr ""
1309
 
1310
  #: app/features/contextual.php:70 app/features/events.php:1564
1311
- #: app/features/mec/booking.php:965 app/features/mec/support-page.php:115
1312
  #: app/features/mec/support.php:36 app/libraries/main.php:640
1313
  msgid "Payment Gateways"
1314
  msgstr ""
@@ -1440,13 +1440,13 @@ msgstr ""
1440
  #: app/libraries/main.php:633 app/libraries/main.php:634
1441
  #: app/libraries/main.php:638 app/libraries/main.php:662
1442
  #: app/libraries/main.php:780 app/libraries/main.php:2976
1443
- #: app/libraries/main.php:7140 app/libraries/main.php:7142
1444
  #: app/modules/booking/steps/checkout.php:146
1445
  msgid "Booking"
1446
  msgstr ""
1447
 
1448
  #: app/features/contextual.php:318 app/features/mec/booking.php:552
1449
- #: app/features/mec/booking.php:981 app/libraries/main.php:635
1450
  msgid "Coupons"
1451
  msgstr ""
1452
 
@@ -1585,11 +1585,11 @@ msgstr ""
1585
  msgid "No events found in Trash!"
1586
  msgstr ""
1587
 
1588
- #: app/features/events.php:219 app/features/events.php:3782
1589
- #: app/features/events.php:4149 app/features/fes/form.php:958
1590
  #: app/features/mec.php:493 app/features/mec/meta_boxes/filter.php:69
1591
- #: app/features/mec/meta_boxes/filter.php:81 app/libraries/main.php:7115
1592
- #: app/libraries/main.php:7176
1593
  msgid "Categories"
1594
  msgstr ""
1595
 
@@ -1675,7 +1675,7 @@ msgstr ""
1675
  #: app/features/locations.php:162 app/features/locations.php:214
1676
  #: app/features/locations.php:393 app/features/locations.php:400
1677
  #: app/features/organizers.php:134 app/features/organizers.php:165
1678
- #: app/features/organizers.php:313 app/features/organizers.php:320
1679
  #: app/features/speakers.php:182 app/features/speakers.php:233
1680
  msgid "Remove image"
1681
  msgstr ""
@@ -1726,12 +1726,12 @@ msgstr ""
1726
  msgid "Guest Data"
1727
  msgstr ""
1728
 
1729
- #: app/features/events.php:601 app/features/events.php:2630
1730
- #: app/features/events.php:4391 app/features/fes.php:259
1731
  #: app/features/fes/form.php:812 app/features/labels.php:184
1732
- #: app/features/mec/booking.php:45 app/features/organizers.php:293
1733
  #: app/features/popup/event.php:183 app/features/profile/profile.php:192
1734
- #: app/libraries/notifications.php:2052 app/modules/booking/steps/form.php:59
1735
  msgid "Name"
1736
  msgstr ""
1737
 
@@ -1746,7 +1746,7 @@ msgid "Date and Time"
1746
  msgstr ""
1747
 
1748
  #: app/features/events.php:618 app/features/events.php:622
1749
- #: app/features/events.php:3829 app/features/events.php:4136
1750
  #: app/features/fes/form.php:286 app/features/fes/form.php:290
1751
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1507
1752
  #: app/features/mec/meta_boxes/display_options.php:57
@@ -1770,7 +1770,7 @@ msgid "Start Date"
1770
  msgstr ""
1771
 
1772
  #: app/features/events.php:637 app/features/events.php:641
1773
- #: app/features/events.php:3830 app/features/events.php:4138
1774
  #: app/features/fes/form.php:305 app/features/fes/form.php:309
1775
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1508
1776
  #: app/features/mec/meta_boxes/display_options.php:73
@@ -1816,7 +1816,7 @@ msgstr ""
1816
  #: app/features/events.php:1753 app/features/events.php:1763
1817
  #: app/features/events.php:1784 app/features/events.php:1804
1818
  #: app/features/events.php:1859 app/features/events.php:2429
1819
- #: app/features/events.php:2550 app/features/events.php:2661
1820
  #: app/features/fes/form.php:346 app/features/fes/form.php:359
1821
  msgid "Inherit from global options"
1822
  msgstr ""
@@ -1938,9 +1938,9 @@ msgstr ""
1938
  #: app/features/events.php:868 app/features/events.php:1383
1939
  #: app/features/events.php:2075 app/features/events.php:2157
1940
  #: app/features/events.php:2323 app/features/events.php:2367
1941
- #: app/features/events.php:2440 app/features/events.php:2555
1942
  #: app/features/fes/form.php:449 app/features/fes/form.php:1056
1943
- #: app/features/occurrences.php:113 app/features/organizers.php:337
1944
  #: app/libraries/hourlyschedule.php:57 app/libraries/hourlyschedule.php:134
1945
  msgid "Add"
1946
  msgstr ""
@@ -2009,7 +2009,7 @@ msgstr ""
2009
  msgid "Show only one occurrence of this event"
2010
  msgstr ""
2011
 
2012
- #: app/features/events.php:1270 app/features/events.php:4146
2013
  #: app/features/fes/form.php:861
2014
  #: app/features/mec/meta_boxes/search_form.php:116
2015
  #: app/features/mec/meta_boxes/search_form.php:204
@@ -2035,7 +2035,7 @@ msgstr ""
2035
  #: app/features/mec/notifications.php:1625
2036
  #: app/features/mec/notifications.php:1775 app/features/mec/settings.php:854
2037
  #: app/features/notifications.php:160 app/features/occurrences.php:508
2038
- #: app/libraries/main.php:7161 app/libraries/main.php:7208
2039
  #: app/widgets/single.php:100
2040
  msgid "Event Cost"
2041
  msgstr ""
@@ -2123,8 +2123,8 @@ msgstr ""
2123
 
2124
  #: app/features/events.php:1492 app/features/events.php:1500
2125
  #: app/features/fes/form.php:829 app/features/mec/settings.php:1148
2126
- #: app/features/occurrences.php:520 app/libraries/main.php:7159
2127
- #: app/libraries/main.php:7206
2128
  msgid "Event Link"
2129
  msgstr ""
2130
 
@@ -2178,7 +2178,7 @@ msgid "Total User Booking Limits"
2178
  msgstr ""
2179
 
2180
  #: app/features/events.php:1549 app/features/events.php:1915
2181
- #: app/libraries/book.php:141 app/libraries/main.php:7150
2182
  #: app/modules/booking/steps/tickets.php:168
2183
  #: app/modules/booking/steps/tickets.php:174
2184
  msgid "Tickets"
@@ -2188,18 +2188,18 @@ msgstr ""
2188
  msgid "Fees"
2189
  msgstr ""
2190
 
2191
- #: app/features/events.php:1554 app/features/events.php:2545
2192
  #: app/features/mec/settings.php:1024
2193
  msgid "Ticket Variations / Options"
2194
  msgstr ""
2195
 
2196
- #: app/features/events.php:1558 app/features/mec/booking.php:1055
2197
  #: app/features/mec/support-page.php:118
2198
  msgid "Organizer Payment"
2199
  msgstr ""
2200
 
2201
  #: app/features/events.php:1566 app/features/ix/export.php:58
2202
- #: app/libraries/main.php:7143
2203
  msgid "Bookings"
2204
  msgstr ""
2205
 
@@ -2294,7 +2294,7 @@ msgstr ""
2294
  #: app/features/events.php:1754 app/features/events.php:1764
2295
  #: app/features/mec/booking.php:210 app/features/mec/booking.php:277
2296
  #: app/features/mec/booking.php:292 app/features/mec/booking.php:374
2297
- #: app/features/mec/booking.php:992 app/features/mec/booking.php:1019
2298
  #: app/features/mec/meta_boxes/search_form.php:66
2299
  #: app/features/mec/meta_boxes/search_form.php:74
2300
  #: app/features/mec/meta_boxes/search_form.php:82
@@ -2432,8 +2432,8 @@ msgstr ""
2432
 
2433
  #: app/features/events.php:1755 app/features/events.php:1765
2434
  #: app/features/mec/booking.php:209 app/features/mec/booking.php:276
2435
- #: app/features/mec/booking.php:293 app/features/mec/booking.php:991
2436
- #: app/features/mec/booking.php:1020 app/features/mec/modules.php:155
2437
  #: app/features/mec/settings.php:99 app/features/popup/settings.php:357
2438
  msgid "Enabled"
2439
  msgstr ""
@@ -2515,7 +2515,7 @@ msgid "Ticket ID"
2515
  msgstr ""
2516
 
2517
  #: app/features/events.php:1935 app/features/events.php:2201
2518
- #: app/features/events.php:4133 app/features/fes.php:259
2519
  #: app/features/labels.php:183 app/features/locations.php:266
2520
  #: app/features/organizers.php:207 app/features/speakers.php:285
2521
  msgid "ID"
@@ -2526,17 +2526,17 @@ msgid "Ticket Name"
2526
  msgstr ""
2527
 
2528
  #: app/features/events.php:1947 app/features/events.php:2209
2529
- #: app/features/events.php:4137 app/libraries/skins.php:1360
2530
  msgid "Start Time"
2531
  msgstr ""
2532
 
2533
  #: app/features/events.php:1960 app/features/events.php:2222
2534
- #: app/features/events.php:4139 app/libraries/skins.php:1361
2535
  msgid "End Time"
2536
  msgstr ""
2537
 
2538
  #: app/features/events.php:1978 app/features/events.php:2237
2539
- #: app/features/events.php:4135 app/libraries/hourlyschedule.php:72
2540
  #: app/libraries/hourl
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: modern-events-calendar\n"
4
+ "POT-Creation-Date: 2021-11-17 13:15+0330\n"
5
+ "PO-Revision-Date: 2021-11-17 13:20+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: en_US\n"
81
  msgstr ""
82
 
83
  #: app/core/src/Books/Book.php:106 app/features/ix.php:284
84
+ #: app/libraries/main.php:7457 app/libraries/main.php:7484
85
  msgid "Rejected"
86
  msgstr ""
87
 
88
  #: app/core/src/Books/Book.php:111 app/features/ix.php:283
89
+ #: app/libraries/main.php:7456 app/libraries/main.php:7476
90
  msgid "Confirmed"
91
  msgstr ""
92
 
93
  #: app/core/src/Books/Book.php:117 app/features/mec/settings.php:742
94
+ #: app/libraries/main.php:7458 app/libraries/main.php:7480
95
  msgid "Pending"
96
  msgstr ""
97
 
98
  #: app/core/src/Books/Book.php:186 app/features/ix.php:289
99
  #: app/features/labels.php:119 app/features/labels.php:145
100
+ #: app/libraries/main.php:7505
101
  msgid "Canceled"
102
  msgstr ""
103
 
104
  #: app/core/src/Books/Book.php:191 app/features/ix.php:288
105
+ #: app/features/mec/booking.php:1179 app/features/mec/booking.php:1201
106
+ #: app/features/mec/integrations.php:418 app/features/mec/integrations.php:440
107
  #: app/features/mec/modules.php:406 app/features/mec/modules.php:428
108
  #: app/features/mec/notifications.php:1919
109
  #: app/features/mec/notifications.php:1942 app/features/mec/settings.php:1584
110
  #: app/features/mec/settings.php:1606 app/features/mec/single.php:580
111
+ #: app/features/mec/single.php:602 app/libraries/main.php:7504
112
  msgid "Verified"
113
  msgstr ""
114
 
115
+ #: app/core/src/Books/Book.php:197 app/libraries/main.php:7506
116
  msgid "Waiting"
117
  msgstr ""
118
 
135
  #: app/core/src/Forms/FormFields.php:188 app/core/src/Forms/SettingsForm.php:93
136
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:70
137
  #: app/features/autoemails.php:60 app/features/events.php:602
138
+ #: app/features/events.php:2641 app/features/events.php:2708
139
+ #: app/features/events.php:2797 app/features/events.php:4396
140
  #: app/features/fes.php:259 app/features/fes/form.php:808
141
  #: app/features/login/login.php:5 app/features/mec/booking.php:57
142
+ #: app/features/mec/booking.php:793 app/features/mec/booking.php:891
143
  #: app/features/mec/settings.php:295 app/features/mec/single.php:288
144
  #: app/features/organizers.php:112 app/features/organizers.php:153
145
  #: app/features/profile/profile.php:195 app/features/speakers.php:128
146
  #: app/features/speakers.php:205 app/libraries/main.php:604
147
  #: app/libraries/main.php:2071 app/libraries/main.php:2140
148
+ #: app/libraries/main.php:3702 app/libraries/notifications.php:2069
149
  #: app/modules/booking/steps/form.php:68 app/modules/booking/steps/form.php:217
150
  #: app/skins/single.php:1406 app/skins/single.php:1473
151
  #: app/skins/single/default.php:347 app/skins/single/default.php:593
165
  #: app/core/src/Forms/FormFields.php:341 app/core/src/Forms/FormFields.php:372
166
  #: app/core/src/Forms/FormFields.php:396 app/core/src/Forms/FormFields.php:442
167
  #: app/core/src/Forms/FormFields.php:488 app/core/src/Forms/FormFields.php:544
168
+ #: app/core/src/Forms/FormFields.php:596 app/features/organizers.php:340
169
+ #: app/features/organizers.php:348 app/libraries/main.php:3610
170
  #: app/libraries/main.php:3641 app/libraries/main.php:3671
171
  #: app/libraries/main.php:3701 app/libraries/main.php:3732
172
  #: app/libraries/main.php:3763 app/libraries/main.php:3793
178
  msgstr ""
179
 
180
  #: app/core/src/Forms/FormFields.php:52 app/core/src/Forms/SettingsForm.php:88
181
+ #: app/features/events.php:2707 app/features/events.php:2796
182
+ #: app/features/mec/booking.php:792 app/features/mec/booking.php:890
183
  #: app/features/mec/single.php:287 app/libraries/main.php:3611
184
  #: app/libraries/skins.php:1367
185
  msgid "Text"
210
  #: app/core/src/Forms/FormFields.php:505 app/core/src/Forms/FormFields.php:554
211
  #: app/core/src/Forms/FormFields.php:597 app/features/events.php:2105
212
  #: app/features/events.php:2131 app/features/events.php:2344
213
+ #: app/features/events.php:2481 app/features/events.php:2518
214
+ #: app/features/mec/booking.php:610 app/features/mec/booking.php:640
215
+ #: app/features/mec/booking.php:708 app/features/mec/booking.php:740
216
+ #: app/features/organizers.php:340 app/features/organizers.php:349
217
  #: app/libraries/hourlyschedule.php:53 app/libraries/hourlyschedule.php:74
218
  #: app/libraries/hourlyschedule.php:102 app/libraries/hourlyschedule.php:130
219
  #: app/libraries/hourlyschedule.php:154 app/libraries/main.php:3621
252
  msgid "MEC Last Name"
253
  msgstr ""
254
 
255
+ #: app/core/src/Forms/FormFields.php:93 app/features/events.php:2705
256
+ #: app/features/mec/booking.php:790 app/libraries/main.php:3642
257
  msgid "MEC Name"
258
  msgstr ""
259
 
260
  #: app/core/src/Forms/FormFields.php:158 app/core/src/Forms/SettingsForm.php:83
261
+ #: app/features/events.php:2706 app/features/mec/booking.php:791
262
  #: app/libraries/main.php:3672
263
  msgid "MEC Email"
264
  msgstr ""
269
  msgstr ""
270
 
271
  #: app/core/src/Forms/FormFields.php:250
272
+ #: app/core/src/Forms/SettingsForm.php:108 app/features/events.php:2711
273
+ #: app/features/mec/booking.php:796 app/libraries/main.php:3764
274
  msgid "File"
275
  msgstr ""
276
 
277
  #: app/core/src/Forms/FormFields.php:280 app/core/src/Forms/SettingsForm.php:98
278
+ #: app/core/src/SingleBuilder/Widgets/EventDate/EventDate.php:47
279
+ #: app/features/events.php:1381 app/features/events.php:2709
280
+ #: app/features/events.php:2798 app/features/fes.php:259
281
+ #: app/features/mec/booking.php:794 app/features/mec/booking.php:892
282
  #: app/features/mec/single.php:290 app/features/profile/profile.php:59
283
  #: app/features/wc.php:84 app/libraries/main.php:3794
284
  #: app/libraries/skins.php:1279 app/modules/booking/steps/tickets.php:136
289
  msgstr ""
290
 
291
  #: app/core/src/Forms/FormFields.php:311
292
+ #: app/core/src/Forms/SettingsForm.php:103 app/features/events.php:2710
293
+ #: app/features/events.php:2799 app/features/mec/booking.php:795
294
+ #: app/features/mec/booking.php:893 app/features/mec/single.php:291
295
  #: app/features/organizers.php:104 app/features/organizers.php:149
296
  #: app/features/speakers.php:120 app/features/speakers.php:201
297
  #: app/features/speakers.php:288 app/libraries/main.php:3825
299
  msgstr ""
300
 
301
  #: app/core/src/Forms/FormFields.php:342
302
+ #: app/core/src/Forms/SettingsForm.php:113 app/features/events.php:2712
303
+ #: app/features/events.php:2800 app/features/mec/booking.php:797
304
+ #: app/features/mec/booking.php:894 app/features/mec/single.php:292
305
  #: app/libraries/main.php:3856
306
  msgid "Textarea"
307
  msgstr ""
308
 
309
  #: app/core/src/Forms/FormFields.php:373
310
+ #: app/core/src/Forms/SettingsForm.php:138 app/features/events.php:2717
311
+ #: app/features/events.php:2805 app/features/mec/booking.php:802
312
+ #: app/features/mec/booking.php:899 app/features/mec/settings.php:351
313
  #: app/features/mec/single.php:293 app/libraries/main.php:3894
314
  msgid "Paragraph"
315
  msgstr ""
319
  msgstr ""
320
 
321
  #: app/core/src/Forms/FormFields.php:397
322
+ #: app/core/src/Forms/SettingsForm.php:118 app/features/events.php:2713
323
+ #: app/features/events.php:2801 app/features/mec/booking.php:127
324
+ #: app/features/mec/booking.php:798 app/features/mec/booking.php:895
325
  #: app/features/mec/single.php:294 app/libraries/main.php:3918
326
  msgid "Checkboxes"
327
  msgstr ""
333
  msgstr ""
334
 
335
  #: app/core/src/Forms/FormFields.php:443
336
+ #: app/core/src/Forms/SettingsForm.php:123 app/features/events.php:2714
337
+ #: app/features/events.php:2802 app/features/mec/booking.php:799
338
+ #: app/features/mec/booking.php:896 app/features/mec/single.php:295
339
  #: app/libraries/main.php:3966
340
  msgid "Radio Buttons"
341
  msgstr ""
342
 
343
  #: app/core/src/Forms/FormFields.php:489
344
+ #: app/core/src/Forms/SettingsForm.php:128 app/features/events.php:2715
345
+ #: app/features/events.php:2803 app/features/mec/booking.php:125
346
+ #: app/features/mec/booking.php:800 app/features/mec/booking.php:897
347
  #: app/features/mec/meta_boxes/search_form.php:67
348
  #: app/features/mec/meta_boxes/search_form.php:75
349
  #: app/features/mec/meta_boxes/search_form.php:83
434
  msgstr ""
435
 
436
  #: app/core/src/Forms/FormFields.php:545
437
+ #: app/core/src/Forms/SettingsForm.php:133 app/features/events.php:2716
438
+ #: app/features/events.php:2804 app/features/mec/booking.php:801
439
+ #: app/features/mec/booking.php:898 app/libraries/main.php:4072
440
  msgid "Agreement"
441
  msgstr ""
442
 
467
  msgid "Insert a label for this option"
468
  msgstr ""
469
 
470
+ #: app/core/src/Forms/FormFields.php:606 app/libraries/main.php:8674
471
  msgid "Mapping with Profile Fields"
472
  msgstr ""
473
 
617
  #: app/features/events.php:1834 app/features/events.php:2004
618
  #: app/features/events.php:2019 app/features/events.php:2261
619
  #: app/features/events.php:2274 app/features/events.php:2467
620
+ #: app/features/events.php:2504 app/features/fes/form.php:456
621
  #: app/features/fes/form.php:764 app/features/fes/form.php:887
622
  #: app/features/locations.php:341 app/features/mec/booking.php:109
623
  #: app/features/mec/booking.php:185 app/features/mec/booking.php:198
624
  #: app/features/mec/booking.php:234 app/features/mec/booking.php:299
625
  #: app/features/mec/booking.php:332 app/features/mec/booking.php:345
626
  #: app/features/mec/booking.php:411 app/features/mec/booking.php:462
627
+ #: app/features/mec/booking.php:597 app/features/mec/booking.php:627
628
+ #: app/features/mec/booking.php:693 app/features/mec/booking.php:703
629
+ #: app/features/mec/booking.php:725 app/features/mec/booking.php:735
630
+ #: app/features/mec/booking.php:1000 app/features/mec/booking.php:1028
631
  #: app/features/mec/dashboard.php:73 app/features/mec/integrations.php:52
632
  #: app/features/mec/integrations.php:65 app/features/mec/integrations.php:81
633
  #: app/features/mec/meta_boxes/display_options.php:97
695
  #: app/features/mec/single.php:382 app/features/mec/styling.php:123
696
  #: app/features/mec/styling.php:223 app/features/mec/styling.php:240
697
  #: app/features/mec/styling.php:254 app/features/occurrences.php:472
698
+ #: app/features/occurrences.php:499 app/features/organizers.php:289
699
  #: app/features/popup/event.php:127 app/features/popup/event.php:174
700
  #: app/features/popup/settings.php:78 app/features/popup/settings.php:161
701
  #: app/features/popup/settings.php:182 app/features/popup/settings.php:300
810
  msgstr ""
811
 
812
  #: app/core/src/SingleBuilder/Widgets/EventCategories/EventCategories.php:46
813
+ #: app/features/events.php:218 app/features/events.php:3828
814
  #: app/features/mec/meta_boxes/display_options.php:1651
815
  #: app/features/mec/meta_boxes/search_form.php:64
816
  #: app/features/mec/meta_boxes/search_form.php:152
827
  #: app/features/mec/settings.php:1150 app/features/mec/settings.php:1213
828
  #: app/features/mec/single.php:445 app/features/mec/single.php:498
829
  #: app/features/popup/settings.php:220 app/features/popup/settings.php:259
830
+ #: app/features/search.php:91 app/libraries/main.php:7118
831
+ #: app/libraries/main.php:7179 app/libraries/search.php:256
832
  #: app/libraries/skins.php:1080 app/skins/single.php:1097
833
  #: app/skins/single/default.php:299 app/skins/single/default.php:546
834
  #: app/skins/single/m1.php:229 app/skins/single/m2.php:148
851
  #: app/core/src/SingleBuilder/Widgets/EventCost/EventCost.php:47
852
  #: app/features/events.php:432 app/features/events.php:1277
853
  #: app/features/fes/form.php:864 app/features/mec/settings.php:1147
854
+ #: app/features/occurrences.php:511 app/libraries/main.php:7164
855
+ #: app/libraries/main.php:7211 app/libraries/skins.php:1395
856
  #: app/skins/single.php:1130 app/skins/single/default.php:215
857
  #: app/skins/single/default.php:464 app/skins/single/m1.php:81
858
  #: app/skins/single/modern.php:292
922
  msgstr ""
923
 
924
  #: app/core/src/SingleBuilder/Widgets/EventLabels/EventLabels.php:48
925
+ #: app/features/events.php:4150 app/features/fes/form.php:984
926
  #: app/features/labels.php:61 app/features/labels.php:227
927
  #: app/features/mec.php:494 app/features/mec/meta_boxes/filter.php:72
928
+ #: app/features/mec/meta_boxes/filter.php:135 app/libraries/main.php:7119
929
+ #: app/libraries/main.php:7180 app/skins/single.php:1260
930
  #: app/skins/single/default.php:247 app/skins/single/default.php:493
931
  #: app/skins/single/m1.php:96 app/skins/single/modern.php:307
932
  msgid "Labels"
954
  msgstr ""
955
 
956
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:54
957
+ #: app/features/events.php:3829 app/features/events.php:4143
958
  #: app/features/locations.php:58 app/features/locations.php:267
959
  #: app/features/locations.php:329 app/features/locations.php:331
960
  #: app/features/locations.php:340
977
  #: app/features/popup/event.php:117 app/features/popup/event.php:126
978
  #: app/features/popup/settings.php:228 app/features/popup/settings.php:267
979
  #: app/features/search.php:97 app/libraries/main.php:2914
980
+ #: app/libraries/main.php:7122 app/libraries/main.php:7183
981
  #: app/libraries/search.php:294 app/libraries/skins.php:1135
982
  #: app/skins/single.php:1024 app/skins/single.php:1532
983
  #: app/skins/single/default.php:268 app/skins/single/default.php:516
1012
  #: app/core/src/SingleBuilder/Widgets/EventMoreInfo/EventMoreInfo.php:48
1013
  #: app/features/events.php:1510 app/features/events.php:1523
1014
  #: app/features/fes/form.php:834 app/features/occurrences.php:525
1015
+ #: app/libraries/main.php:7162 app/libraries/main.php:7209
1016
  #: app/skins/single.php:1230 app/skins/single/default.php:232
1017
  #: app/skins/single/default.php:478 app/skins/single/m1.php:255
1018
  #: app/skins/single/m2.php:175 app/skins/single/modern.php:209
1055
  msgstr ""
1056
 
1057
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:53
1058
+ #: app/features/events.php:431 app/features/events.php:3830
1059
+ #: app/features/events.php:4145 app/features/events.php:4146
1060
+ #: app/features/events.php:4147
1061
  #: app/features/mec/meta_boxes/display_options.php:1654
1062
  #: app/features/mec/meta_boxes/search_form.php:80
1063
  #: app/features/mec/meta_boxes/search_form.php:168
1075
  #: app/features/mec/single.php:502 app/features/occurrences.php:487
1076
  #: app/features/occurrences.php:489 app/features/occurrences.php:498
1077
  #: app/features/organizers.php:58 app/features/organizers.php:208
1078
+ #: app/features/organizers.php:277 app/features/organizers.php:279
1079
+ #: app/features/organizers.php:288 app/features/popup/event.php:164
1080
  #: app/features/popup/event.php:173 app/features/popup/settings.php:224
1081
  #: app/features/popup/settings.php:263 app/features/search.php:103
1082
+ #: app/libraries/main.php:7124 app/libraries/main.php:7185
1083
  #: app/libraries/search.php:314 app/libraries/skins.php:1164
1084
  #: app/skins/single.php:1388 app/skins/single/default.php:329
1085
  #: app/skins/single/default.php:575 app/skins/single/m1.php:124
1118
  msgstr ""
1119
 
1120
  #: app/core/src/SingleBuilder/Widgets/EventRegisterButton/EventRegisterButton.php:48
1121
+ #: app/libraries/main.php:7158 app/libraries/main.php:7205
1122
  #: app/skins/available_spot/tpl.php:204 app/skins/carousel/render.php:105
1123
  #: app/skins/carousel/render.php:145 app/skins/grid/render.php:94
1124
  #: app/skins/grid/render.php:153 app/skins/grid/render.php:214
1257
  msgstr ""
1258
 
1259
  #: app/features/booking/calendar_novel.php:139
1260
+ #: app/features/search_bar/search_result.php:12 app/libraries/main.php:7167
1261
+ #: app/libraries/main.php:7214 app/libraries/notifications.php:1629
1262
  #: app/libraries/render.php:554 app/libraries/render.php:758
1263
  #: app/libraries/render.php:816 app/libraries/render.php:976
1264
  #: app/modules/local-time/details.php:49 app/modules/local-time/type1.php:47
1292
  msgstr ""
1293
 
1294
  #: app/features/contextual.php:62 app/features/events.php:1556
1295
+ #: app/features/events.php:2646 app/features/mec/booking.php:755
1296
+ #: app/features/mec/booking.php:1026 app/features/mec/settings.php:1012
1297
  #: app/features/mec/support.php:29
1298
  msgid "Booking Form"
1299
  msgstr ""
1308
  msgstr ""
1309
 
1310
  #: app/features/contextual.php:70 app/features/events.php:1564
1311
+ #: app/features/mec/booking.php:967 app/features/mec/support-page.php:115
1312
  #: app/features/mec/support.php:36 app/libraries/main.php:640
1313
  msgid "Payment Gateways"
1314
  msgstr ""
1440
  #: app/libraries/main.php:633 app/libraries/main.php:634
1441
  #: app/libraries/main.php:638 app/libraries/main.php:662
1442
  #: app/libraries/main.php:780 app/libraries/main.php:2976
1443
+ #: app/libraries/main.php:7142 app/libraries/main.php:7144
1444
  #: app/modules/booking/steps/checkout.php:146
1445
  msgid "Booking"
1446
  msgstr ""
1447
 
1448
  #: app/features/contextual.php:318 app/features/mec/booking.php:552
1449
+ #: app/features/mec/booking.php:983 app/libraries/main.php:635
1450
  msgid "Coupons"
1451
  msgstr ""
1452
 
1585
  msgid "No events found in Trash!"
1586
  msgstr ""
1587
 
1588
+ #: app/features/events.php:219 app/features/events.php:3784
1589
+ #: app/features/events.php:4151 app/features/fes/form.php:958
1590
  #: app/features/mec.php:493 app/features/mec/meta_boxes/filter.php:69
1591
+ #: app/features/mec/meta_boxes/filter.php:81 app/libraries/main.php:7117
1592
+ #: app/libraries/main.php:7178
1593
  msgid "Categories"
1594
  msgstr ""
1595
 
1675
  #: app/features/locations.php:162 app/features/locations.php:214
1676
  #: app/features/locations.php:393 app/features/locations.php:400
1677
  #: app/features/organizers.php:134 app/features/organizers.php:165
1678
+ #: app/features/organizers.php:316 app/features/organizers.php:323
1679
  #: app/features/speakers.php:182 app/features/speakers.php:233
1680
  msgid "Remove image"
1681
  msgstr ""
1726
  msgid "Guest Data"
1727
  msgstr ""
1728
 
1729
+ #: app/features/events.php:601 app/features/events.php:2632
1730
+ #: app/features/events.php:4393 app/features/fes.php:259
1731
  #: app/features/fes/form.php:812 app/features/labels.php:184
1732
+ #: app/features/mec/booking.php:45 app/features/organizers.php:296
1733
  #: app/features/popup/event.php:183 app/features/profile/profile.php:192
1734
+ #: app/libraries/notifications.php:2068 app/modules/booking/steps/form.php:59
1735
  msgid "Name"
1736
  msgstr ""
1737
 
1746
  msgstr ""
1747
 
1748
  #: app/features/events.php:618 app/features/events.php:622
1749
+ #: app/features/events.php:3831 app/features/events.php:4138
1750
  #: app/features/fes/form.php:286 app/features/fes/form.php:290
1751
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1507
1752
  #: app/features/mec/meta_boxes/display_options.php:57
1770
  msgstr ""
1771
 
1772
  #: app/features/events.php:637 app/features/events.php:641
1773
+ #: app/features/events.php:3832 app/features/events.php:4140
1774
  #: app/features/fes/form.php:305 app/features/fes/form.php:309
1775
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1508
1776
  #: app/features/mec/meta_boxes/display_options.php:73
1816
  #: app/features/events.php:1753 app/features/events.php:1763
1817
  #: app/features/events.php:1784 app/features/events.php:1804
1818
  #: app/features/events.php:1859 app/features/events.php:2429
1819
+ #: app/features/events.php:2552 app/features/events.php:2663
1820
  #: app/features/fes/form.php:346 app/features/fes/form.php:359
1821
  msgid "Inherit from global options"
1822
  msgstr ""
1938
  #: app/features/events.php:868 app/features/events.php:1383
1939
  #: app/features/events.php:2075 app/features/events.php:2157
1940
  #: app/features/events.php:2323 app/features/events.php:2367
1941
+ #: app/features/events.php:2440 app/features/events.php:2557
1942
  #: app/features/fes/form.php:449 app/features/fes/form.php:1056
1943
+ #: app/features/occurrences.php:113 app/features/organizers.php:340
1944
  #: app/libraries/hourlyschedule.php:57 app/libraries/hourlyschedule.php:134
1945
  msgid "Add"
1946
  msgstr ""
2009
  msgid "Show only one occurrence of this event"
2010
  msgstr ""
2011
 
2012
+ #: app/features/events.php:1270 app/features/events.php:4148
2013
  #: app/features/fes/form.php:861
2014
  #: app/features/mec/meta_boxes/search_form.php:116
2015
  #: app/features/mec/meta_boxes/search_form.php:204
2035
  #: app/features/mec/notifications.php:1625
2036
  #: app/features/mec/notifications.php:1775 app/features/mec/settings.php:854
2037
  #: app/features/notifications.php:160 app/features/occurrences.php:508
2038
+ #: app/libraries/main.php:7163 app/libraries/main.php:7210
2039
  #: app/widgets/single.php:100
2040
  msgid "Event Cost"
2041
  msgstr ""
2123
 
2124
  #: app/features/events.php:1492 app/features/events.php:1500
2125
  #: app/features/fes/form.php:829 app/features/mec/settings.php:1148
2126
+ #: app/features/occurrences.php:520 app/libraries/main.php:7161
2127
+ #: app/libraries/main.php:7208
2128
  msgid "Event Link"
2129
  msgstr ""
2130
 
2178
  msgstr ""
2179
 
2180
  #: app/features/events.php:1549 app/features/events.php:1915
2181
+ #: app/libraries/book.php:170 app/libraries/main.php:7152
2182
  #: app/modules/booking/steps/tickets.php:168
2183
  #: app/modules/booking/steps/tickets.php:174
2184
  msgid "Tickets"
2188
  msgid "Fees"
2189
  msgstr ""
2190
 
2191
+ #: app/features/events.php:1554 app/features/events.php:2547
2192
  #: app/features/mec/settings.php:1024
2193
  msgid "Ticket Variations / Options"
2194
  msgstr ""
2195
 
2196
+ #: app/features/events.php:1558 app/features/mec/booking.php:1057
2197
  #: app/features/mec/support-page.php:118
2198
  msgid "Organizer Payment"
2199
  msgstr ""
2200
 
2201
  #: app/features/events.php:1566 app/features/ix/export.php:58
2202
+ #: app/libraries/main.php:7145
2203
  msgid "Bookings"
2204
  msgstr ""
2205
 
2294
  #: app/features/events.php:1754 app/features/events.php:1764
2295
  #: app/features/mec/booking.php:210 app/features/mec/booking.php:277
2296
  #: app/features/mec/booking.php:292 app/features/mec/booking.php:374
2297
+ #: app/features/mec/booking.php:994 app/features/mec/booking.php:1021
2298
  #: app/features/mec/meta_boxes/search_form.php:66
2299
  #: app/features/mec/meta_boxes/search_form.php:74
2300
  #: app/features/mec/meta_boxes/search_form.php:82
2432
 
2433
  #: app/features/events.php:1755 app/features/events.php:1765
2434
  #: app/features/mec/booking.php:209 app/features/mec/booking.php:276
2435
+ #: app/features/mec/booking.php:293 app/features/mec/booking.php:993
2436
+ #: app/features/mec/booking.php:1022 app/features/mec/modules.php:155
2437
  #: app/features/mec/settings.php:99 app/features/popup/settings.php:357
2438
  msgid "Enabled"
2439
  msgstr ""
2515
  msgstr ""
2516
 
2517
  #: app/features/events.php:1935 app/features/events.php:2201
2518
+ #: app/features/events.php:4135 app/features/fes.php:259
2519
  #: app/features/labels.php:183 app/features/locations.php:266
2520
  #: app/features/organizers.php:207 app/features/speakers.php:285
2521
  msgid "ID"
2526
  msgstr ""
2527
 
2528
  #: app/features/events.php:1947 app/features/events.php:2209
2529
+ #: app/features/events.php:4139 app/libraries/skins.php:1360
2530
  msgid "Start Time"
2531
  msgstr ""
2532
 
2533
  #: app/features/events.php:1960 app/features/events.php:2222
2534
+ #: app/features/events.php:4141 app/libraries/skins.php:1361
2535
  msgid "End Time"
2536
  msgstr ""
2537
 
2538
  #: app/features/events.php:1978 app/features/events.php:2237
2539
+ #: app/features/events.php:4137 app/libraries/hourlyschedule.php:72
2540
  #: app/libraries/hourl