Modern Events Calendar Lite - Version 4.4.7

Version Description

  • Added: Modern style search bar
  • Added: Auto set cronjobs for synchronization
  • Added: An option to not open current day in MEC widget
  • Added: ID column and sort by ID in booking menu
  • Added: Filter by ticket name in bookings menu
  • Added: Advanced clustering feature for Google Maps
  • Added: Duplicate link in event action links
  • Added: An option for disabling Schema
  • Fixed: Double tap feature for monthly calendar (simple skin)
  • Fixed: Advanced repeat type
  • Fixed: Countdown in module view and Countdown skin
  • Fixed: Carousel view and "load more" button in Internet explorer
Download this release

Release Info

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

Code changes from version 4.4.6 to 4.4.7

Files changed (67) hide show
  1. app/features/events.php +71 -10
  2. app/features/ix.php +3 -0
  3. app/features/ix/sync.php +26 -4
  4. app/features/mec.php +3 -0
  5. app/features/mec/booking.php +1 -207
  6. app/features/mec/gateways.php +1 -160
  7. app/features/mec/ie.php +1 -160
  8. app/features/mec/messages.php +1 -160
  9. app/features/mec/modules.php +2 -236
  10. app/features/mec/regform.php +1 -158
  11. app/features/mec/settings.php +23 -237
  12. app/features/mec/single.php +1 -215
  13. app/features/mec/styles.php +1 -160
  14. app/features/mec/styling.php +1 -160
  15. app/features/mec/support.php +1 -1
  16. app/features/search.php +1 -1
  17. app/features/search_bar/search_bar.php +7 -1
  18. app/features/update.php +6 -0
  19. app/libraries/base.php +11 -0
  20. app/libraries/factory.php +2 -0
  21. app/libraries/main.php +349 -6
  22. app/libraries/render.php +4 -4
  23. app/libraries/syncSchedule.php +50 -0
  24. app/modules/countdown/details.php +1 -1
  25. app/skins/agenda/render.php +6 -2
  26. app/skins/available_spot/tpl.php +5 -0
  27. app/skins/carousel/render.php +7 -1
  28. app/skins/countdown/tpl.php +7 -1
  29. app/skins/cover/tpl.php +7 -1
  30. app/skins/daily_view/render.php +3 -0
  31. app/skins/grid/render.php +3 -1
  32. app/skins/list/render.php +3 -0
  33. app/skins/map.php +2 -2
  34. app/skins/map/tpl.php +1 -0
  35. app/skins/masonry/render.php +3 -0
  36. app/skins/monthly_view/calendar.php +4 -1
  37. app/skins/monthly_view/calendar_clean.php +3 -0
  38. app/skins/monthly_view/calendar_novel.php +3 -1
  39. app/skins/monthly_view/calendar_simple.php +3 -0
  40. app/skins/single.php +1 -0
  41. app/skins/single/default.php +5 -1
  42. app/skins/single/modern.php +4 -1
  43. app/skins/slider/render.php +15 -0
  44. app/skins/timetable/render.php +3 -0
  45. app/skins/weekly_view/render.php +3 -0
  46. app/skins/yearly_view/render.php +3 -0
  47. app/widgets/MEC.php +15 -7
  48. assets/css/backend.css +78 -0
  49. assets/css/backend.min.css +1 -1
  50. assets/css/frontend.css +65 -20
  51. assets/css/frontend.min.css +1 -1
  52. assets/img/cluster1/index.html +0 -0
  53. assets/img/cluster1/m1.png +0 -0
  54. assets/img/cluster1/m2.png +0 -0
  55. assets/img/cluster1/m3.png +0 -0
  56. assets/img/cluster1/m4.png +0 -0
  57. assets/img/cluster1/m5.png +0 -0
  58. assets/js/backend.js +14 -0
  59. assets/js/frontend.js +86 -20
  60. assets/packages/clusterer/index.html +0 -0
  61. assets/packages/clusterer/markerclusterer.js +1315 -0
  62. assets/packages/clusterer/markerclusterer.min.js +1 -0
  63. changelog.txt +15 -1
  64. languages/modern-events-calendar-lite-de_DE.mo +0 -0
  65. languages/modern-events-calendar-lite-de_DE.po +1148 -1302
  66. languages/modern-events-calendar-lite-en_US.mo +0 -0
  67. languages/modern-events-calendar-lite-en_US.po +129 -234
app/features/events.php CHANGED
@@ -56,6 +56,9 @@ class MEC_feature_events extends MEC_base
56
  $this->factory->action('save_post', array($this, 'save_event'), 10);
57
  $this->factory->action('delete_post', array($this, 'delete_event'), 10);
58
 
 
 
 
59
  $this->factory->action('add_meta_boxes', array($this, 'register_meta_boxes'), 1);
60
  $this->factory->action('restrict_manage_posts', array($this, 'add_filters'));
61
  $this->factory->action('pre_get_posts', array($this, 'sort'));
@@ -67,25 +70,29 @@ class MEC_feature_events extends MEC_base
67
  $this->factory->action('mec_metabox_details', array($this, 'meta_box_cost'), 50);
68
 
69
  // Hourly Schedule for FES
70
- if (!isset($this->settings['fes_section_hourly_schedule']) or (isset($this->settings['fes_section_hourly_schedule']) and $this->settings['fes_section_hourly_schedule'])) {
 
71
  $this->factory->action('mec_fes_metabox_details', array($this, 'meta_box_hourly_schedule'), 30);
72
  }
73
 
74
  // Show exceptional days if enabled
75
- if (isset($this->settings['exceptional_days']) and $this->settings['exceptional_days']) {
 
76
  $this->factory->action('mec_metabox_details', array($this, 'meta_box_exceptional_days'), 25);
77
  $this->factory->action('mec_fes_metabox_details', array($this, 'meta_box_exceptional_days'), 25);
78
  }
79
 
80
  // Show Booking meta box only if booking module is enabled
81
  $booking_status = (isset($this->settings['booking_status']) and $this->settings['booking_status']) ? true : false;
82
- if ($booking_status) {
 
83
  $this->factory->action('mec_metabox_booking', array($this, 'meta_box_booking_options'), 5);
84
  $this->factory->action('mec_metabox_booking', array($this, 'meta_box_tickets'), 10);
85
  $this->factory->action('mec_metabox_booking', array($this, 'meta_box_regform'), 20);
86
 
87
  // Booking Options for FES
88
- if (!isset($this->settings['fes_section_booking']) or (isset($this->settings['fes_section_booking']) and $this->settings['fes_section_booking'])) {
 
89
  $this->factory->action('mec_fes_metabox_details', array($this, 'meta_box_booking_options'), 35);
90
  $this->factory->action('mec_fes_metabox_details', array($this, 'meta_box_tickets'), 40);
91
  $this->factory->action('mec_fes_metabox_details', array($this, 'meta_box_regform'), 45);
@@ -93,21 +100,25 @@ class MEC_feature_events extends MEC_base
93
  }
94
 
95
  // Show fees meta box only if fees module is enabled
96
- if (isset($this->settings['taxes_fees_status']) and $this->settings['taxes_fees_status']) {
 
97
  $this->factory->action('mec_metabox_booking', array($this, 'meta_box_fees'), 15);
98
 
99
  // Fees for FES
100
- if ($booking_status and (!isset($this->settings['fes_section_fees']) or (isset($this->settings['fes_section_fees']) and $this->settings['fes_section_fees']))) {
 
101
  $this->factory->action('mec_fes_metabox_details', array($this, 'meta_box_fees'), 45);
102
  }
103
  }
104
 
105
  // Show ticket variations meta box only if the module is enabled
106
- if (isset($this->settings['ticket_variations_status']) and $this->settings['ticket_variations_status']) {
 
107
  $this->factory->action('mec_metabox_booking', array($this, 'meta_box_ticket_variations'), 16);
108
 
109
  // Ticket Variations for FES
110
- if ($booking_status and (!isset($this->settings['fes_section_ticket_variations']) or (isset($this->settings['fes_section_ticket_variations']) and $this->settings['fes_section_ticket_variations']))) {
 
111
  $this->factory->action('mec_fes_metabox_details', array($this, 'meta_box_ticket_variations'), 46);
112
  }
113
  }
@@ -2964,6 +2975,23 @@ class MEC_feature_events extends MEC_base
2964
  )
2965
  );
2966
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2967
  }
2968
 
2969
  /**
@@ -2981,6 +3009,7 @@ class MEC_feature_events extends MEC_base
2981
  unset($columns['tags']);
2982
 
2983
  $columns['title'] = __('Title', 'modern-events-calendar-lite');
 
2984
  $columns['location'] = $this->main->m('taxonomy_location', __('Location', 'modern-events-calendar-lite'));
2985
  $columns['organizer'] = $this->main->m('taxonomy_organizer', __('Organizer', 'modern-events-calendar-lite'));
2986
  $columns['start_date'] = __('Start Date', 'modern-events-calendar-lite');
@@ -3029,8 +3058,16 @@ class MEC_feature_events extends MEC_base
3029
  echo date('Y-n-d', strtotime(get_post_meta($post_id, 'mec_end_date', true)));
3030
  } elseif ($column_name == 'repeat') {
3031
  $repeat_type = get_post_meta($post_id, 'mec_repeat_type', true);
3032
-
3033
  echo ucwords(str_replace('_', ' ', $repeat_type));
 
 
 
 
 
 
 
 
 
3034
  }
3035
  }
3036
 
@@ -3292,4 +3329,28 @@ class MEC_feature_events extends MEC_base
3292
  wp_redirect('edit.php?post_type=' . $this->main->get_main_post_type());
3293
  exit;
3294
  }
3295
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
56
  $this->factory->action('save_post', array($this, 'save_event'), 10);
57
  $this->factory->action('delete_post', array($this, 'delete_event'), 10);
58
 
59
+ $this->factory->filter('post_row_actions', array($this, 'action_links'), 10, 2);
60
+ $this->factory->action('init', array($this, 'duplicate_event'));
61
+
62
  $this->factory->action('add_meta_boxes', array($this, 'register_meta_boxes'), 1);
63
  $this->factory->action('restrict_manage_posts', array($this, 'add_filters'));
64
  $this->factory->action('pre_get_posts', array($this, 'sort'));
70
  $this->factory->action('mec_metabox_details', array($this, 'meta_box_cost'), 50);
71
 
72
  // Hourly Schedule for FES
73
+ if(!isset($this->settings['fes_section_hourly_schedule']) or (isset($this->settings['fes_section_hourly_schedule']) and $this->settings['fes_section_hourly_schedule']))
74
+ {
75
  $this->factory->action('mec_fes_metabox_details', array($this, 'meta_box_hourly_schedule'), 30);
76
  }
77
 
78
  // Show exceptional days if enabled
79
+ if(isset($this->settings['exceptional_days']) and $this->settings['exceptional_days'])
80
+ {
81
  $this->factory->action('mec_metabox_details', array($this, 'meta_box_exceptional_days'), 25);
82
  $this->factory->action('mec_fes_metabox_details', array($this, 'meta_box_exceptional_days'), 25);
83
  }
84
 
85
  // Show Booking meta box only if booking module is enabled
86
  $booking_status = (isset($this->settings['booking_status']) and $this->settings['booking_status']) ? true : false;
87
+ if($booking_status)
88
+ {
89
  $this->factory->action('mec_metabox_booking', array($this, 'meta_box_booking_options'), 5);
90
  $this->factory->action('mec_metabox_booking', array($this, 'meta_box_tickets'), 10);
91
  $this->factory->action('mec_metabox_booking', array($this, 'meta_box_regform'), 20);
92
 
93
  // Booking Options for FES
94
+ if(!isset($this->settings['fes_section_booking']) or (isset($this->settings['fes_section_booking']) and $this->settings['fes_section_booking']))
95
+ {
96
  $this->factory->action('mec_fes_metabox_details', array($this, 'meta_box_booking_options'), 35);
97
  $this->factory->action('mec_fes_metabox_details', array($this, 'meta_box_tickets'), 40);
98
  $this->factory->action('mec_fes_metabox_details', array($this, 'meta_box_regform'), 45);
100
  }
101
 
102
  // Show fees meta box only if fees module is enabled
103
+ if(isset($this->settings['taxes_fees_status']) and $this->settings['taxes_fees_status'])
104
+ {
105
  $this->factory->action('mec_metabox_booking', array($this, 'meta_box_fees'), 15);
106
 
107
  // Fees for FES
108
+ if($booking_status and (!isset($this->settings['fes_section_fees']) or (isset($this->settings['fes_section_fees']) and $this->settings['fes_section_fees'])))
109
+ {
110
  $this->factory->action('mec_fes_metabox_details', array($this, 'meta_box_fees'), 45);
111
  }
112
  }
113
 
114
  // Show ticket variations meta box only if the module is enabled
115
+ if(isset($this->settings['ticket_variations_status']) and $this->settings['ticket_variations_status'])
116
+ {
117
  $this->factory->action('mec_metabox_booking', array($this, 'meta_box_ticket_variations'), 16);
118
 
119
  // Ticket Variations for FES
120
+ if($booking_status and (!isset($this->settings['fes_section_ticket_variations']) or (isset($this->settings['fes_section_ticket_variations']) and $this->settings['fes_section_ticket_variations'])))
121
+ {
122
  $this->factory->action('mec_fes_metabox_details', array($this, 'meta_box_ticket_variations'), 46);
123
  }
124
  }
2975
  )
2976
  );
2977
  }
2978
+
2979
+ $taxonomy = 'mec_category';
2980
+ if (wp_count_terms($taxonomy)) {
2981
+ wp_dropdown_categories(
2982
+ array(
2983
+ 'show_option_all' => sprintf(__('Show all %s', 'modern-events-calendar-lite'), $this->main->m('taxonomy_categorys', __('Categories', 'modern-events-calendar-lite'))),
2984
+ 'taxonomy' => $taxonomy,
2985
+ 'name' => $taxonomy,
2986
+ 'value_field' => 'slug',
2987
+ 'orderby' => 'name',
2988
+ 'order' => 'ASC',
2989
+ 'selected' => (isset($_GET[$taxonomy]) ? sanitize_text_field($_GET[$taxonomy]) : ''),
2990
+ 'show_count' => false,
2991
+ 'hide_empty' => false,
2992
+ )
2993
+ );
2994
+ }
2995
  }
2996
 
2997
  /**
3009
  unset($columns['tags']);
3010
 
3011
  $columns['title'] = __('Title', 'modern-events-calendar-lite');
3012
+ $columns['category'] = __('Category', 'modern-events-calendar-lite');
3013
  $columns['location'] = $this->main->m('taxonomy_location', __('Location', 'modern-events-calendar-lite'));
3014
  $columns['organizer'] = $this->main->m('taxonomy_organizer', __('Organizer', 'modern-events-calendar-lite'));
3015
  $columns['start_date'] = __('Start Date', 'modern-events-calendar-lite');
3058
  echo date('Y-n-d', strtotime(get_post_meta($post_id, 'mec_end_date', true)));
3059
  } elseif ($column_name == 'repeat') {
3060
  $repeat_type = get_post_meta($post_id, 'mec_repeat_type', true);
 
3061
  echo ucwords(str_replace('_', ' ', $repeat_type));
3062
+ } elseif ($column_name == 'category') {
3063
+ $post_categories = get_the_terms($post_id, 'mec_category');
3064
+ if($post_categories) foreach($post_categories as $post_category) $categories[] = $post_category->name;
3065
+ if (!empty($categories))
3066
+ {
3067
+ $category_name = implode(",", $categories);
3068
+ echo $category_name;
3069
+ }
3070
+
3071
  }
3072
  }
3073
 
3329
  wp_redirect('edit.php?post_type=' . $this->main->get_main_post_type());
3330
  exit;
3331
  }
3332
+
3333
+ public function action_links($actions, $post)
3334
+ {
3335
+ if($post->post_type != $this->PT) return $actions;
3336
+
3337
+ $actions['mec-duplicate'] = '<a href="'.$this->main->add_qs_vars(array('mec-action'=>'duplicate-event', 'id'=>$post->ID)).'">'.__('Duplicate', 'modern-events-calendar-lite').'</a>';
3338
+ return $actions;
3339
+ }
3340
+
3341
+ public function duplicate_event()
3342
+ {
3343
+ // It's not a duplicate request
3344
+ if(!isset($_GET['mec-action']) or (isset($_GET['mec-action']) and $_GET['mec-action'] != 'duplicate-event')) return false;
3345
+
3346
+ // Event ID to duplicate
3347
+ $id = isset($_GET['id']) ? $_GET['id'] : 0;
3348
+ if(!$id) return false;
3349
+
3350
+ // Duplicate
3351
+ $new_post_id = $this->main->duplicate((int) $id);
3352
+
3353
+ wp_redirect('post.php?post=' . $new_post_id . '&action=edit');
3354
+ exit;
3355
+ }
3356
+ }
app/features/ix.php CHANGED
@@ -156,9 +156,12 @@ class MEC_feature_ix extends MEC_base
156
  // Save options
157
  $this->main->save_ix_options(array(
158
  'sync_g_import'=>isset($this->ix['sync_g_import']) ? $this->ix['sync_g_import'] : 0,
 
159
  'sync_g_export'=>isset($this->ix['sync_g_export']) ? $this->ix['sync_g_export'] : 0,
 
160
  'sync_f_import'=>isset($this->ix['sync_f_import']) ? $this->ix['sync_f_import'] : 0,
161
  'sync_meetup_import'=>isset($this->ix['sync_meetup_import']) ? $this->ix['sync_meetup_import'] : 0,
 
162
  ));
163
  }
164
 
156
  // Save options
157
  $this->main->save_ix_options(array(
158
  'sync_g_import'=>isset($this->ix['sync_g_import']) ? $this->ix['sync_g_import'] : 0,
159
+ 'sync_g_import_auto'=>isset($this->ix['sync_g_import_auto']) ? $this->ix['sync_g_import_auto'] : 0,
160
  'sync_g_export'=>isset($this->ix['sync_g_export']) ? $this->ix['sync_g_export'] : 0,
161
+ 'sync_g_export_auto'=>isset($this->ix['sync_g_export_auto']) ? $this->ix['sync_g_export_auto'] : 0,
162
  'sync_f_import'=>isset($this->ix['sync_f_import']) ? $this->ix['sync_f_import'] : 0,
163
  'sync_meetup_import'=>isset($this->ix['sync_meetup_import']) ? $this->ix['sync_meetup_import'] : 0,
164
+ 'sync_meetup_import_auto'=>isset($this->ix['sync_meetup_import_auto']) ? $this->ix['sync_meetup_import_auto'] : 0,
165
  ));
166
  }
167
 
app/features/ix/sync.php CHANGED
@@ -22,7 +22,7 @@ $ix = $this->main->get_ix_options();
22
  <div class="info-msg"><?php echo sprintf(__("%s is required to use synchronization feature.", 'modern-events-calendar-lite'), '<a href="'.$this->main->get_pro_link().'" target="_blank">'.__('Pro version of Modern Events Calendar', 'modern-events-calendar-lite').'</a>'); ?></div>
23
  <?php else: ?>
24
  <form id="mec_ix_sync_form" action="<?php echo $this->main->get_full_url(); ?>" method="POST">
25
- <div class="mec-form-row">
26
  <input type="hidden" name="ix[sync_g_import]" value="0" />
27
  <label class="mec-col-3" for="mec_ix_sync_g_import">
28
  <input type="checkbox" id="mec_ix_sync_g_import" name="ix[sync_g_import]" value="1" <?php echo (isset($ix['sync_g_import']) and $ix['sync_g_import'] == '1') ? 'checked="checked"' : ''; ?> onchange="jQuery('#mec_sync_g_import_cron').toggleClass('mec-util-hidden');" />
@@ -31,7 +31,7 @@ $ix = $this->main->get_ix_options();
31
  <?php $cron = MEC_ABSPATH.'app'.DS.'crons'.DS.'g-import.php'; ?>
32
  <p id="mec_sync_g_import_cron" class="mec-col-12 <?php echo (isset($ix['sync_g_import']) and $ix['sync_g_import'] == '1') ? '' : 'mec-util-hidden'; ?>"><strong><?php _e('Important Note', 'modern-events-calendar-lite'); ?>: </strong><?php echo sprintf(__("Set a cronjob to call %s file atleast once per day otherwise it won't import Google Calendar events.", 'modern-events-calendar-lite'), '<code>'.$cron.'</code>'); ?></p>
33
  </div>
34
- <div class="mec-form-row">
35
  <input type="hidden" name="ix[sync_g_export]" value="0" />
36
  <label class="mec-col-3" for="mec_ix_sync_g_export">
37
  <input type="checkbox" id="mec_ix_sync_g_export" name="ix[sync_g_export]" value="1" <?php echo (isset($ix['sync_g_export']) and $ix['sync_g_export'] == '1') ? 'checked="checked"' : ''; ?> onchange="jQuery('#mec_sync_g_export_cron').toggleClass('mec-util-hidden');" />
@@ -42,7 +42,7 @@ $ix = $this->main->get_ix_options();
42
  </div>
43
 
44
  <?php if(false): // Disabled for Now ?>
45
- <div class="mec-form-row">
46
  <input type="hidden" name="ix[sync_f_import]" value="0" />
47
  <label class="mec-col-3" for="mec_ix_sync_f_import">
48
  <input type="checkbox" id="mec_ix_sync_f_import" name="ix[sync_f_import]" value="1" <?php echo (isset($ix['sync_f_import']) and $ix['sync_f_import'] == '1') ? 'checked="checked"' : ''; ?> onchange="jQuery('#mec_sync_f_import_cron').toggleClass('mec-util-hidden');" />
@@ -53,7 +53,7 @@ $ix = $this->main->get_ix_options();
53
  </div>
54
  <?php endif; ?>
55
 
56
- <div class="mec-form-row">
57
  <input type="hidden" name="ix[sync_meetup_import]" value="0" />
58
  <label class="mec-col-3" for="mec_ix_sync_meetup_import">
59
  <input type="checkbox" id="mec_ix_sync_meetup_import" name="ix[sync_meetup_import]" value="1" <?php echo (isset($ix['sync_meetup_import']) and $ix['sync_meetup_import'] == '1') ? 'checked="checked"' : ''; ?> onchange="jQuery('#mec_sync_meetup_import_cron').toggleClass('mec-util-hidden');" />
@@ -63,6 +63,28 @@ $ix = $this->main->get_ix_options();
63
  <p id="mec_sync_meetup_import_cron" class="mec-col-12 <?php echo (isset($ix['sync_meetup_import']) and $ix['sync_meetup_import'] == '1') ? '' : 'mec-util-hidden'; ?>"><strong><?php _e('Important Note', 'modern-events-calendar-lite'); ?>: </strong><?php echo sprintf(__("Set a cronjob to call %s file atleast once per day otherwise it won't import any event from Meetup.", 'modern-events-calendar-lite'), '<code>'.$cron.'</code>'); ?></p>
64
  </div>
65
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
66
  <div class="mec-options-fields">
67
  <input type="hidden" name="mec-ix-action" value="save-sync-options" />
68
  <button class="button button-primary mec-button-primary" type="submit"><?php _e('Save', 'modern-events-calendar-lite'); ?></button>
22
  <div class="info-msg"><?php echo sprintf(__("%s is required to use synchronization feature.", 'modern-events-calendar-lite'), '<a href="'.$this->main->get_pro_link().'" target="_blank">'.__('Pro version of Modern Events Calendar', 'modern-events-calendar-lite').'</a>'); ?></div>
23
  <?php else: ?>
24
  <form id="mec_ix_sync_form" action="<?php echo $this->main->get_full_url(); ?>" method="POST">
25
+ <div class="mec-form-row mec-syn-schedule">
26
  <input type="hidden" name="ix[sync_g_import]" value="0" />
27
  <label class="mec-col-3" for="mec_ix_sync_g_import">
28
  <input type="checkbox" id="mec_ix_sync_g_import" name="ix[sync_g_import]" value="1" <?php echo (isset($ix['sync_g_import']) and $ix['sync_g_import'] == '1') ? 'checked="checked"' : ''; ?> onchange="jQuery('#mec_sync_g_import_cron').toggleClass('mec-util-hidden');" />
31
  <?php $cron = MEC_ABSPATH.'app'.DS.'crons'.DS.'g-import.php'; ?>
32
  <p id="mec_sync_g_import_cron" class="mec-col-12 <?php echo (isset($ix['sync_g_import']) and $ix['sync_g_import'] == '1') ? '' : 'mec-util-hidden'; ?>"><strong><?php _e('Important Note', 'modern-events-calendar-lite'); ?>: </strong><?php echo sprintf(__("Set a cronjob to call %s file atleast once per day otherwise it won't import Google Calendar events.", 'modern-events-calendar-lite'), '<code>'.$cron.'</code>'); ?></p>
33
  </div>
34
+ <div class="mec-form-row mec-syn-schedule">
35
  <input type="hidden" name="ix[sync_g_export]" value="0" />
36
  <label class="mec-col-3" for="mec_ix_sync_g_export">
37
  <input type="checkbox" id="mec_ix_sync_g_export" name="ix[sync_g_export]" value="1" <?php echo (isset($ix['sync_g_export']) and $ix['sync_g_export'] == '1') ? 'checked="checked"' : ''; ?> onchange="jQuery('#mec_sync_g_export_cron').toggleClass('mec-util-hidden');" />
42
  </div>
43
 
44
  <?php if(false): // Disabled for Now ?>
45
+ <div class="mec-form-row mec-syn-schedule">
46
  <input type="hidden" name="ix[sync_f_import]" value="0" />
47
  <label class="mec-col-3" for="mec_ix_sync_f_import">
48
  <input type="checkbox" id="mec_ix_sync_f_import" name="ix[sync_f_import]" value="1" <?php echo (isset($ix['sync_f_import']) and $ix['sync_f_import'] == '1') ? 'checked="checked"' : ''; ?> onchange="jQuery('#mec_sync_f_import_cron').toggleClass('mec-util-hidden');" />
53
  </div>
54
  <?php endif; ?>
55
 
56
+ <div class="mec-form-row mec-syn-schedule">
57
  <input type="hidden" name="ix[sync_meetup_import]" value="0" />
58
  <label class="mec-col-3" for="mec_ix_sync_meetup_import">
59
  <input type="checkbox" id="mec_ix_sync_meetup_import" name="ix[sync_meetup_import]" value="1" <?php echo (isset($ix['sync_meetup_import']) and $ix['sync_meetup_import'] == '1') ? 'checked="checked"' : ''; ?> onchange="jQuery('#mec_sync_meetup_import_cron').toggleClass('mec-util-hidden');" />
63
  <p id="mec_sync_meetup_import_cron" class="mec-col-12 <?php echo (isset($ix['sync_meetup_import']) and $ix['sync_meetup_import'] == '1') ? '' : 'mec-util-hidden'; ?>"><strong><?php _e('Important Note', 'modern-events-calendar-lite'); ?>: </strong><?php echo sprintf(__("Set a cronjob to call %s file atleast once per day otherwise it won't import any event from Meetup.", 'modern-events-calendar-lite'), '<code>'.$cron.'</code>'); ?></p>
64
  </div>
65
 
66
+ <div class="mec-form-row mec-syn-schedule">
67
+ <h2><?php _e('Auto set cronjobs (Once Daily)', 'modern-events-calendar-lite'); ?></h2>
68
+ <h4>- <?php _e('First you need to enable above options for each to be able to use this.', 'modern-events-calendar-lite'); ?></h4>
69
+ <h4>- <?php _e('If you cannot set Cron Job on your server, you can use the options below. Please make sure to NOT use the following options and set on the server manually together.', 'modern-events-calendar-lite'); ?></h4>
70
+ <input type="hidden" name="ix[sync_g_import_auto]" value="0" />
71
+ <label class="mec-col-3" for="mec_ix_sync_g_import_auto">
72
+ <input type="checkbox" id="mec_ix_sync_g_import_auto" name="ix[sync_g_import_auto]" value="1" <?php echo (isset($ix['sync_g_import_auto']) and $ix['sync_g_import_auto'] == '1') ? 'checked="checked"' : ''; ?> />
73
+ <?php _e('Google import', 'modern-events-calendar-lite'); ?>
74
+ </label>
75
+ <input type="hidden" name="ix[sync_g_export_auto]" value="0" />
76
+ <label class="mec-col-3" for="mec_ix_sync_g_export_auto">
77
+ <input type="checkbox" id="mec_ix_sync_g_export_auto" name="ix[sync_g_export_auto]" value="1" <?php echo (isset($ix['sync_g_export_auto']) and $ix['sync_g_export_auto'] == '1') ? 'checked="checked"' : ''; ?> />
78
+ <?php _e('Google export', 'modern-events-calendar-lite'); ?>
79
+ </label>
80
+ <input type="hidden" name="ix[sync_meetup_import_auto]" value="0" />
81
+ <label class="mec-col-3" for="mec_ix_sync_meetup_import_auto">
82
+ <input type="checkbox" id="mec_ix_sync_meetup_import_auto" name="ix[sync_meetup_import_auto]" value="1" <?php echo (isset($ix['sync_meetup_import_auto']) and $ix['sync_meetup_import_auto'] == '1') ? 'checked="checked"' : ''; ?> />
83
+ <?php _e('Meetup import', 'modern-events-calendar-lite'); ?>
84
+ </label>
85
+
86
+ </div>
87
+
88
  <div class="mec-options-fields">
89
  <input type="hidden" name="mec-ix-action" value="save-sync-options" />
90
  <button class="button button-primary mec-button-primary" type="submit"><?php _e('Save', 'modern-events-calendar-lite'); ?></button>
app/features/mec.php CHANGED
@@ -125,6 +125,9 @@ class MEC_feature_mec extends MEC_base
125
  // Scheduler Cronjob
126
  $schedule = $this->getSchedule();
127
  $this->factory->action('mec_scheduler', array($schedule, 'cron'));
 
 
 
128
  }
129
 
130
  /* Activate License */
125
  // Scheduler Cronjob
126
  $schedule = $this->getSchedule();
127
  $this->factory->action('mec_scheduler', array($schedule, 'cron'));
128
+
129
+ $syncSchedule = $this->getSyncSchedule();
130
+ $this->factory->action('mec_syncScheduler', array($syncSchedule, 'sync'));
131
  }
132
 
133
  /* Activate License */
app/features/mec/booking.php CHANGED
@@ -25,188 +25,7 @@ if($this->getPRO())
25
  </div>
26
 
27
  <div class="wns-be-sidebar">
28
- <ul class="wns-be-group-menu">
29
-
30
- <li class="wns-be-group-menu-li">
31
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>" id="" class="wns-be-group-tab-link-a">
32
- <i class="mec-sl-settings"></i>
33
- <span class="wns-be-group-menu-title"><?php echo __('Settings', 'modern-events-calendar-lite'); ?></span>
34
- </a>
35
- <ul id="" class="submneu-hover">
36
- <li class="submenu-item">
37
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#general_option"><?php _e('General Options', 'modern-events-calendar-lite'); ?></a>
38
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#archive_options"><?php _e('Archive Pages', 'modern-events-calendar-lite'); ?></a>
39
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#slug_option"><?php _e('Slugs/Permalinks', 'modern-events-calendar-lite'); ?></a>
40
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#currency_option"><?php _e('Currency Options', 'modern-events-calendar-lite'); ?></a>
41
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#recaptcha_option"><?php _e('Google Recaptcha Options', 'modern-events-calendar-lite'); ?></a>
42
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#fes_option"><?php _e('Frontend Event Submission', 'modern-events-calendar-lite'); ?></a>
43
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#user_profile_options"><?php _e('User Profile', 'modern-events-calendar-lite'); ?></a>
44
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#search_bar_options"><?php _e('Search Bar', 'modern-events-calendar-lite'); ?></a>
45
- <?php if($this->main->getPRO()): ?>
46
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#mailchimp_option"><?php _e('Mailchimp Integration', 'modern-events-calendar-lite'); ?></a>
47
- <?php endif; ?>
48
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#uploadfield_option"><?php _e('Upload Field', 'modern-events-calendar-lite'); ?></a>
49
- </li>
50
- </ul>
51
- </li>
52
-
53
- <li class="wns-be-group-menu-li">
54
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>" id="" class="wns-be-group-tab-link-a">
55
- <i class="mec-sl-note"></i>
56
- <span class="wns-be-group-menu-title"><?php echo __('Single Event', 'modern-events-calendar-lite'); ?></span>
57
- </a>
58
- <ul id="" class="submneu-hover">
59
- <li class="submenu-item">
60
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#event_options"><?php _e('Single Event Page', 'modern-events-calendar-lite'); ?></a>
61
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#countdown_option"><?php _e('Countdown Options', 'modern-events-calendar-lite'); ?></a>
62
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#exceptional_option"><?php _e('Exceptional Days', 'modern-events-calendar-lite'); ?></a>
63
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_organizers"><?php _e('Additional Organizers', 'modern-events-calendar-lite'); ?></a>
64
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_locations"><?php _e('Additional Locations', 'modern-events-calendar-lite'); ?></a>
65
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#related_events"><?php _e('Related Events', 'modern-events-calendar-lite'); ?></a>
66
- </li>
67
- </ul>
68
- </li>
69
-
70
- <?php if($this->main->getPRO()): ?>
71
-
72
- <li class="wns-be-group-menu-li has-sub active">
73
-
74
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>" id="" class="wns-be-group-tab-link-a">
75
- <span class="extra-icon">
76
- <i class="mec-sl-arrow-down"></i>
77
- </span>
78
- <i class="mec-sl-credit-card"></i>
79
- <span class="wns-be-group-menu-title"><?php echo __('Booking', 'modern-events-calendar-lite'); ?></span>
80
- </a>
81
-
82
- <ul id="" class="subsection" style="display: block;">
83
-
84
- <li id="" class="pr-be-group-menu-li active">
85
- <a data-id="booking_option" class="wns-be-group-tab-link-a WnTabLinks">
86
- <span class="pr-be-group-menu-title"><?php _e('Booking', 'modern-events-calendar-lite'); ?></span>
87
- </a>
88
- </li>
89
-
90
- <?php if(isset($this->settings['booking_status']) and $this->settings['booking_status']): ?>
91
-
92
- <li id="" class="pr-be-group-menu-li">
93
- <a data-id="coupon_option" class="wns-be-group-tab-link-a WnTabLinks">
94
- <span class="pr-be-group-menu-title"><?php _e('Coupons', 'modern-events-calendar-lite'); ?></span>
95
- </a>
96
- </li>
97
-
98
- <li id="" class="pr-be-group-menu-li">
99
- <a data-id="taxes_option" class="wns-be-group-tab-link-a WnTabLinks">
100
- <span class="pr-be-group-menu-title"><?php _e('Taxes / Fees', 'modern-events-calendar-lite'); ?></span>
101
- </a>
102
- </li>
103
-
104
- <li id="" class="pr-be-group-menu-li">
105
- <a data-id="ticket_variations_option" class="wns-be-group-tab-link-a WnTabLinks">
106
- <span class="pr-be-group-menu-title"><?php _e('Ticket Variations & Options', 'modern-events-calendar-lite'); ?></span>
107
- </a>
108
- </li>
109
-
110
- <?php endif; ?>
111
-
112
- </ul>
113
- </li>
114
-
115
- <?php endif; ?>
116
-
117
- <li class="wns-be-group-menu-li">
118
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>" id="" class="wns-be-group-tab-link-a">
119
- <i class="mec-sl-grid"></i>
120
- <span class="wns-be-group-menu-title"><?php echo __('Modules', 'modern-events-calendar-lite'); ?></span>
121
- </a>
122
- <ul id="" class="submneu-hover">
123
- <li class="submenu-item">
124
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#speakers_option"><?php _e('Speakers', 'modern-events-calendar-lite'); ?></a>
125
- <?php if($this->main->getPRO()): ?>
126
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#googlemap_option"><?php _e('Google Maps Options', 'modern-events-calendar-lite'); ?></a>
127
- <?php endif; ?>
128
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#export_module_option"><?php _e('Export Options', 'modern-events-calendar-lite'); ?></a>
129
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#time_module_option"><?php _e('Local Time', 'modern-events-calendar-lite'); ?></a>
130
- <?php if($this->main->getPRO()): ?>
131
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#qrcode_module_option"><?php _e('QR Code', 'modern-events-calendar-lite'); ?></a>
132
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#weather_module_option"><?php _e('Weather', 'modern-events-calendar-lite'); ?></a>
133
- <?php endif; ?>
134
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#social_options"><?php _e('Social Networks', 'modern-events-calendar-lite'); ?></a>
135
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#next_event_option"><?php _e('Next Event', 'modern-events-calendar-lite'); ?></a>
136
- <?php if($this->main->getPRO()): ?>
137
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#buddy_option"><?php _e('BuddyPress Integration', 'modern-events-calendar-lite'); ?></a>
138
- <?php endif; ?>
139
- </li>
140
- </ul>
141
- </li>
142
-
143
- <?php if($this->main->getPRO() and isset($this->settings['booking_status']) and $this->settings['booking_status']): ?>
144
-
145
- <li class="wns-be-group-menu-li">
146
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-reg-form'); ?>" id="" class="wns-be-group-tab-link-a">
147
- <i class="mec-sl-layers"></i>
148
- <span class="wns-be-group-menu-title"><?php _e('Booking Form', 'modern-events-calendar-lite'); ?></span>
149
- </a>
150
- </li>
151
-
152
- <li class="wns-be-group-menu-li">
153
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-gateways'); ?>" id="" class="wns-be-group-tab-link-a">
154
- <i class="mec-sl-wallet"></i>
155
- <span class="wns-be-group-menu-title"><?php _e('Payment Gateways', 'modern-events-calendar-lite'); ?></span>
156
- </a>
157
- </li>
158
-
159
- <?php endif;?>
160
-
161
- <li class="wns-be-group-menu-li">
162
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>" id="" class="wns-be-group-tab-link-a">
163
- <i class="mec-sl-envelope"></i>
164
- <span class="wns-be-group-menu-title"><?php _e('Notifications', 'modern-events-calendar-lite'); ?></span>
165
- </a>
166
- <ul id="" class="submneu-hover">
167
- <li class="submenu-item">
168
- <?php if(isset($this->settings['booking_status']) and $this->settings['booking_status']): ?>
169
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#booking_notification"><?php _e('Booking', 'modern-events-calendar-lite'); ?></a>
170
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#booking_verification"><?php _e('Booking Verification', 'modern-events-calendar-lite'); ?></a>
171
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#booking_confirmation"><?php _e('Booking Confirmation', 'modern-events-calendar-lite'); ?></a>
172
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#cancellation_notification"><?php _e('Booking Cancellation', 'modern-events-calendar-lite'); ?></a>
173
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#admin_notification"><?php _e('Admin', 'modern-events-calendar-lite'); ?></a>
174
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#booking_reminder"><?php _e('Booking Reminder', 'modern-events-calendar-lite'); ?></a>
175
- <?php endif; ?>
176
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#new_event"><?php _e('New Event', 'modern-events-calendar-lite'); ?></a>
177
- </li>
178
- </ul>
179
- </li>
180
-
181
- <li class="wns-be-group-menu-li">
182
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-styling'); ?>" id="" class="wns-be-group-tab-link-a">
183
- <i class="mec-sl-equalizer"></i>
184
- <span class="wns-be-group-menu-title"><?php _e('Styling Options', 'modern-events-calendar-lite'); ?></span>
185
- </a>
186
- </li>
187
-
188
- <li class="wns-be-group-menu-li">
189
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-customcss'); ?>" id="" class="wns-be-group-tab-link-a">
190
- <i class="mec-sl-wrench"></i>
191
- <span class="wns-be-group-menu-title"><?php _e('Custom CSS', 'modern-events-calendar-lite'); ?></span>
192
- </a>
193
- </li>
194
-
195
- <li class="wns-be-group-menu-li">
196
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-messages'); ?>" id="" class="wns-be-group-tab-link-a">
197
- <i class="mec-sl-bubble"></i>
198
- <span class="wns-be-group-menu-title"><?php _e('Messages', 'modern-events-calendar-lite'); ?></span>
199
- </a>
200
- </li>
201
-
202
- <li class="wns-be-group-menu-li">
203
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-ie'); ?>" id="" class="wns-be-group-tab-link-a">
204
- <i class="mec-sl-refresh"></i>
205
- <span class="wns-be-group-menu-title"><?php _e('Import / Export', 'modern-events-calendar-lite'); ?></span>
206
- </a>
207
- </li>
208
-
209
- </ul>
210
  </div>
211
 
212
  <div class="wns-be-main">
@@ -552,35 +371,10 @@ if($this->getPRO())
552
  <script type="text/javascript">
553
  jQuery(document).ready(function()
554
  {
555
- jQuery('.WnTabLinks').each(function()
556
- {
557
- var ContentId = jQuery(this).attr('data-id');
558
- jQuery(this).click(function()
559
- {
560
- jQuery('.pr-be-group-menu-li').removeClass('active');
561
- jQuery(this).parent().addClass('active');
562
- jQuery(".mec-options-fields").hide();
563
- jQuery(".mec-options-fields").removeClass('active');
564
- jQuery("#"+ContentId+"").show();
565
- jQuery("#"+ContentId+"").addClass('active');
566
- jQuery('html, body').animate({
567
- scrollTop: jQuery("#"+ContentId+"").offset().top - 140
568
- }, 300);
569
- });
570
- var hash = window.location.hash.replace('#', '');
571
- jQuery('[data-id="'+hash+'"]').trigger('click');
572
- });
573
-
574
  jQuery(".dpr-save-btn").on('click', function(event)
575
  {
576
  event.preventDefault();
577
  jQuery("#mec_booking_form_button").trigger('click');
578
- });
579
-
580
- jQuery(".wns-be-sidebar .pr-be-group-menu-li").on('click', function(event)
581
- {
582
- jQuery(".wns-be-sidebar .pr-be-group-menu-li").removeClass('active');
583
- jQuery(this).addClass('active');
584
  });
585
  });
586
 
25
  </div>
26
 
27
  <div class="wns-be-sidebar">
28
+ <?php $this->main->get_sidebar_menu('booking'); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  </div>
30
 
31
  <div class="wns-be-main">
371
  <script type="text/javascript">
372
  jQuery(document).ready(function()
373
  {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
374
  jQuery(".dpr-save-btn").on('click', function(event)
375
  {
376
  event.preventDefault();
377
  jQuery("#mec_booking_form_button").trigger('click');
 
 
 
 
 
 
378
  });
379
  });
380
 
app/features/mec/gateways.php CHANGED
@@ -12,166 +12,7 @@ $gateways_options = $this->main->get_gateways_options();
12
  </div>
13
 
14
  <div class="wns-be-sidebar">
15
-
16
- <ul class="wns-be-group-menu">
17
-
18
- <li class="wns-be-group-menu-li has-sub">
19
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>" id="" class="wns-be-group-tab-link-a">
20
- <span class="extra-icon">
21
- <i class="sl-arrow-down"></i>
22
- </span>
23
- <i class="mec-sl-settings"></i>
24
- <span class="wns-be-group-menu-title"><?php _e('Settings', 'modern-events-calendar-lite'); ?></span>
25
- </a>
26
- <ul id="" class="submneu-hover">
27
- <li class="submenu-item">
28
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#general_option"><?php _e('General Options', 'modern-events-calendar-lite'); ?></a>
29
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#archive_options"><?php _e('Archive Pages', 'modern-events-calendar-lite'); ?></a>
30
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#slug_option"><?php _e('Slugs/Permalinks', 'modern-events-calendar-lite'); ?></a>
31
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#currency_option"><?php _e('Currency Options', 'modern-events-calendar-lite'); ?></a>
32
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#recaptcha_option"><?php _e('Google Recaptcha Options', 'modern-events-calendar-lite'); ?></a>
33
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#fes_option"><?php _e('Frontend Event Submission', 'modern-events-calendar-lite'); ?></a>
34
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#user_profile_options"><?php _e('User Profile', 'modern-events-calendar-lite'); ?></a>
35
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#search_bar_options"><?php _e('Search Bar', 'modern-events-calendar-lite'); ?></a>
36
- <?php if($this->main->getPRO()): ?>
37
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#mailchimp_option"><?php _e('Mailchimp Integration', 'modern-events-calendar-lite'); ?></a>
38
- <?php endif; ?>
39
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#uploadfield_option"><?php _e('Upload Field', 'modern-events-calendar-lite'); ?></a>
40
- </li>
41
- </ul>
42
- </li>
43
-
44
- <li class="wns-be-group-menu-li">
45
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>" id="" class="wns-be-group-tab-link-a">
46
- <i class="mec-sl-note"></i>
47
- <span class="wns-be-group-menu-title"><?php echo __('Single Event', 'modern-events-calendar-lite'); ?></span>
48
- </a>
49
- <ul id="" class="submneu-hover">
50
- <li class="submenu-item">
51
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#event_options"><?php _e('Single Event Page', 'modern-events-calendar-lite'); ?></a>
52
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#countdown_option"><?php _e('Countdown Options', 'modern-events-calendar-lite'); ?></a>
53
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#exceptional_option"><?php _e('Exceptional Days', 'modern-events-calendar-lite'); ?></a>
54
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_organizers"><?php _e('Additional Organizers', 'modern-events-calendar-lite'); ?></a>
55
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_locations"><?php _e('Additional Locations', 'modern-events-calendar-lite'); ?></a>
56
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#related_events"><?php _e('Related Events', 'modern-events-calendar-lite'); ?></a>
57
- </li>
58
- </ul>
59
- </li>
60
-
61
- <?php if($this->main->getPRO()): ?>
62
-
63
- <li class="wns-be-group-menu-li">
64
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>" id="" class="wns-be-group-tab-link-a">
65
- <i class="mec-sl-credit-card"></i>
66
- <span class="wns-be-group-menu-title"><?php echo __('Booking', 'modern-events-calendar-lite'); ?></span>
67
- </a>
68
- <ul id="" class="submneu-hover">
69
- <li class="submenu-item">
70
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>#booking_option"><?php _e('Booking', 'modern-events-calendar-lite'); ?></a>
71
- <?php if(isset($this->settings['booking_status']) and $this->settings['booking_status']): ?>
72
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>#coupon_option"><?php _e('Coupons', 'modern-events-calendar-lite'); ?></a>
73
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>#taxes_option"><?php _e('Taxes / Fees', 'modern-events-calendar-lite'); ?></a>
74
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>#ticket_variations_option"><?php _e('Ticket Variations & Options', 'modern-events-calendar-lite'); ?></a>
75
- <?php endif; ?>
76
- </li>
77
- </ul>
78
- </li>
79
-
80
- <?php endif; ?>
81
-
82
- <li class="wns-be-group-menu-li">
83
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>" id="" class="wns-be-group-tab-link-a">
84
- <i class="mec-sl-grid"></i>
85
- <span class="wns-be-group-menu-title"><?php echo __('Modules', 'modern-events-calendar-lite'); ?></span>
86
- </a>
87
- <ul id="" class="submneu-hover">
88
- <li class="submenu-item">
89
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#speakers_option"><?php _e('Speakers', 'modern-events-calendar-lite'); ?></a>
90
- <?php if($this->main->getPRO()): ?>
91
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#googlemap_option"><?php _e('Google Maps Options', 'modern-events-calendar-lite'); ?></a>
92
- <?php endif; ?>
93
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#export_module_option"><?php _e('Export Options', 'modern-events-calendar-lite'); ?></a>
94
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#time_module_option"><?php _e('Local Time', 'modern-events-calendar-lite'); ?></a>
95
- <?php if($this->main->getPRO()): ?>
96
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#qrcode_module_option"><?php _e('QR Code', 'modern-events-calendar-lite'); ?></a>
97
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#weather_module_option"><?php _e('Weather', 'modern-events-calendar-lite'); ?></a>
98
- <?php endif; ?>
99
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#social_options"><?php _e('Social Networks', 'modern-events-calendar-lite'); ?></a>
100
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#next_event_option"><?php _e('Next Event', 'modern-events-calendar-lite'); ?></a>
101
- <?php if($this->main->getPRO()): ?>
102
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#buddy_option"><?php _e('BuddyPress Integration', 'modern-events-calendar-lite'); ?></a>
103
- <?php endif; ?>
104
- </li>
105
- </ul>
106
- </li>
107
-
108
- <?php if($this->main->getPRO() and isset($this->settings['booking_status']) and $this->settings['booking_status']): ?>
109
-
110
- <li class="wns-be-group-menu-li">
111
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-reg-form'); ?>" id="" class="wns-be-group-tab-link-a">
112
- <i class="mec-sl-layers"></i>
113
- <span class="wns-be-group-menu-title"><?php _e('Booking Form', 'modern-events-calendar-lite'); ?></span>
114
- </a>
115
- </li>
116
-
117
- <li class="wns-be-group-menu-li active">
118
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-gateways'); ?>" id="" class="wns-be-group-tab-link-a">
119
- <i class="mec-sl-wallet"></i>
120
- <span class="wns-be-group-menu-title"><?php _e('Payment Gateways', 'modern-events-calendar-lite'); ?></span>
121
- </a>
122
- </li>
123
-
124
- <?php endif;?>
125
-
126
- <li class="wns-be-group-menu-li">
127
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>" id="" class="wns-be-group-tab-link-a">
128
- <i class="mec-sl-envelope"></i>
129
- <span class="wns-be-group-menu-title"><?php _e('Notifications', 'modern-events-calendar-lite'); ?></span>
130
- </a>
131
- <ul id="" class="submneu-hover">
132
- <li class="submenu-item">
133
- <?php if(isset($this->settings['booking_status']) and $this->settings['booking_status']): ?>
134
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#booking_notification"><?php _e('Booking', 'modern-events-calendar-lite'); ?></a>
135
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#booking_verification"><?php _e('Booking Verification', 'modern-events-calendar-lite'); ?></a>
136
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#booking_confirmation"><?php _e('Booking Confirmation', 'modern-events-calendar-lite'); ?></a>
137
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#cancellation_notification"><?php _e('Booking Cancellation', 'modern-events-calendar-lite'); ?></a>
138
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#admin_notification"><?php _e('Admin', 'modern-events-calendar-lite'); ?></a>
139
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#booking_reminder"><?php _e('Booking Reminder', 'modern-events-calendar-lite'); ?></a>
140
- <?php endif; ?>
141
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#new_event"><?php _e('New Event', 'modern-events-calendar-lite'); ?></a>
142
- </li>
143
- </ul>
144
- </li>
145
-
146
- <li class="wns-be-group-menu-li">
147
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-styling'); ?>" id="" class="wns-be-group-tab-link-a">
148
- <i class="mec-sl-equalizer"></i>
149
- <span class="wns-be-group-menu-title"><?php _e('Styling Options', 'modern-events-calendar-lite'); ?></span>
150
- </a>
151
- </li>
152
-
153
- <li class="wns-be-group-menu-li">
154
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-customcss'); ?>" id="" class="wns-be-group-tab-link-a">
155
- <i class="mec-sl-wrench"></i>
156
- <span class="wns-be-group-menu-title"><?php _e('Custom CSS', 'modern-events-calendar-lite'); ?></span>
157
- </a>
158
- </li>
159
-
160
- <li class="wns-be-group-menu-li">
161
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-messages'); ?>" id="" class="wns-be-group-tab-link-a">
162
- <i class="mec-sl-bubble"></i>
163
- <span class="wns-be-group-menu-title"><?php _e('Messages', 'modern-events-calendar-lite'); ?></span>
164
- </a>
165
- </li>
166
-
167
- <li class="wns-be-group-menu-li">
168
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-ie'); ?>" id="" class="wns-be-group-tab-link-a">
169
- <i class="mec-sl-refresh"></i>
170
- <span class="wns-be-group-menu-title"><?php _e('Import / Export', 'modern-events-calendar-lite'); ?></span>
171
- </a>
172
- </li>
173
-
174
- </ul>
175
  </div>
176
 
177
  <div class="wns-be-main">
12
  </div>
13
 
14
  <div class="wns-be-sidebar">
15
+ <?php $this->main->get_sidebar_menu('gateways'); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  </div>
17
 
18
  <div class="wns-be-main">
app/features/mec/ie.php CHANGED
@@ -8,166 +8,7 @@ defined('MECEXEC') or die();
8
  <div id="wns-be-infobar"></div>
9
 
10
  <div class="wns-be-sidebar">
11
-
12
- <ul class="wns-be-group-menu">
13
-
14
- <li class="wns-be-group-menu-li has-sub">
15
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>" id="" class="wns-be-group-tab-link-a">
16
- <span class="extra-icon">
17
- <i class="sl-arrow-down"></i>
18
- </span>
19
- <i class="mec-sl-settings"></i>
20
- <span class="wns-be-group-menu-title"><?php _e('Settings', 'modern-events-calendar-lite'); ?></span>
21
- </a>
22
- <ul id="" class="submneu-hover">
23
- <li class="submenu-item">
24
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#general_option"><?php _e('General Options', 'modern-events-calendar-lite'); ?></a>
25
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#archive_options"><?php _e('Archive Pages', 'modern-events-calendar-lite'); ?></a>
26
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#slug_option"><?php _e('Slugs/Permalinks', 'modern-events-calendar-lite'); ?></a>
27
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#currency_option"><?php _e('Currency Options', 'modern-events-calendar-lite'); ?></a>
28
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#recaptcha_option"><?php _e('Google Recaptcha Options', 'modern-events-calendar-lite'); ?></a>
29
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#fes_option"><?php _e('Frontend Event Submission', 'modern-events-calendar-lite'); ?></a>
30
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#user_profile_options"><?php _e('User Profile', 'modern-events-calendar-lite'); ?></a>
31
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#search_bar_options"><?php _e('Search Bar', 'modern-events-calendar-lite'); ?></a>
32
- <?php if($this->main->getPRO()): ?>
33
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#mailchimp_option"><?php _e('Mailchimp Integration', 'modern-events-calendar-lite'); ?></a>
34
- <?php endif; ?>
35
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#uploadfield_option"><?php _e('Upload Field', 'modern-events-calendar-lite'); ?></a>
36
- </li>
37
- </ul>
38
- </li>
39
-
40
- <li class="wns-be-group-menu-li">
41
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>" id="" class="wns-be-group-tab-link-a">
42
- <i class="mec-sl-note"></i>
43
- <span class="wns-be-group-menu-title"><?php echo __('Single Event', 'modern-events-calendar-lite'); ?></span>
44
- </a>
45
- <ul id="" class="submneu-hover">
46
- <li class="submenu-item">
47
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#event_options"><?php _e('Single Event Page', 'modern-events-calendar-lite'); ?></a>
48
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#countdown_option"><?php _e('Countdown Options', 'modern-events-calendar-lite'); ?></a>
49
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#exceptional_option"><?php _e('Exceptional Days', 'modern-events-calendar-lite'); ?></a>
50
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_organizers"><?php _e('Additional Organizers', 'modern-events-calendar-lite'); ?></a>
51
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_locations"><?php _e('Additional Locations', 'modern-events-calendar-lite'); ?></a>
52
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#related_events"><?php _e('Related Events', 'modern-events-calendar-lite'); ?></a>
53
- </li>
54
- </ul>
55
- </li>
56
-
57
- <?php if($this->main->getPRO()): ?>
58
-
59
- <li class="wns-be-group-menu-li">
60
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>" id="" class="wns-be-group-tab-link-a">
61
- <i class="mec-sl-credit-card"></i>
62
- <span class="wns-be-group-menu-title"><?php echo __('Booking', 'modern-events-calendar-lite'); ?></span>
63
- </a>
64
- <ul id="" class="submneu-hover">
65
- <li class="submenu-item">
66
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>#booking_option"><?php _e('Booking', 'modern-events-calendar-lite'); ?></a>
67
- <?php if(isset($this->settings['booking_status']) and $this->settings['booking_status']): ?>
68
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>#coupon_option"><?php _e('Coupons', 'modern-events-calendar-lite'); ?></a>
69
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>#taxes_option"><?php _e('Taxes / Fees', 'modern-events-calendar-lite'); ?></a>
70
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>#ticket_variations_option"><?php _e('Ticket Variations & Options', 'modern-events-calendar-lite'); ?></a>
71
- <?php endif; ?>
72
- </li>
73
- </ul>
74
- </li>
75
-
76
- <?php endif; ?>
77
-
78
- <li class="wns-be-group-menu-li">
79
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>" id="" class="wns-be-group-tab-link-a">
80
- <i class="mec-sl-grid"></i>
81
- <span class="wns-be-group-menu-title"><?php echo __('Modules', 'modern-events-calendar-lite'); ?></span>
82
- </a>
83
- <ul id="" class="submneu-hover">
84
- <li class="submenu-item">
85
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#speakers_option"><?php _e('Speakers', 'modern-events-calendar-lite'); ?></a>
86
- <?php if($this->main->getPRO()): ?>
87
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#googlemap_option"><?php _e('Google Maps Options', 'modern-events-calendar-lite'); ?></a>
88
- <?php endif; ?>
89
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#export_module_option"><?php _e('Export Options', 'modern-events-calendar-lite'); ?></a>
90
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#time_module_option"><?php _e('Local Time', 'modern-events-calendar-lite'); ?></a>
91
- <?php if($this->main->getPRO()): ?>
92
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#qrcode_module_option"><?php _e('QR Code', 'modern-events-calendar-lite'); ?></a>
93
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#weather_module_option"><?php _e('Weather', 'modern-events-calendar-lite'); ?></a>
94
- <?php endif; ?>
95
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#social_options"><?php _e('Social Networks', 'modern-events-calendar-lite'); ?></a>
96
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#next_event_option"><?php _e('Next Event', 'modern-events-calendar-lite'); ?></a>
97
- <?php if($this->main->getPRO()): ?>
98
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#buddy_option"><?php _e('BuddyPress Integration', 'modern-events-calendar-lite'); ?></a>
99
- <?php endif; ?>
100
- </li>
101
- </ul>
102
- </li>
103
-
104
- <?php if($this->main->getPRO() and isset($this->settings['booking_status']) and $this->settings['booking_status']): ?>
105
-
106
- <li class="wns-be-group-menu-li">
107
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-reg-form'); ?>" id="" class="wns-be-group-tab-link-a">
108
- <i class="mec-sl-layers"></i>
109
- <span class="wns-be-group-menu-title"><?php _e('Booking Form', 'modern-events-calendar-lite'); ?></span>
110
- </a>
111
- </li>
112
-
113
- <li class="wns-be-group-menu-li">
114
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-gateways'); ?>" id="" class="wns-be-group-tab-link-a">
115
- <i class="mec-sl-wallet"></i>
116
- <span class="wns-be-group-menu-title"><?php _e('Payment Gateways', 'modern-events-calendar-lite'); ?></span>
117
- </a>
118
- </li>
119
-
120
- <?php endif;?>
121
-
122
- <li class="wns-be-group-menu-li">
123
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>" id="" class="wns-be-group-tab-link-a">
124
- <i class="mec-sl-envelope"></i>
125
- <span class="wns-be-group-menu-title"><?php _e('Notifications', 'modern-events-calendar-lite'); ?></span>
126
- </a>
127
- <ul id="" class="submneu-hover">
128
- <li class="submenu-item">
129
- <?php if(isset($this->settings['booking_status']) and $this->settings['booking_status']): ?>
130
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#booking_notification"><?php _e('Booking', 'modern-events-calendar-lite'); ?></a>
131
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#booking_verification"><?php _e('Booking Verification', 'modern-events-calendar-lite'); ?></a>
132
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#booking_confirmation"><?php _e('Booking Confirmation', 'modern-events-calendar-lite'); ?></a>
133
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#cancellation_notification"><?php _e('Booking Cancellation', 'modern-events-calendar-lite'); ?></a>
134
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#admin_notification"><?php _e('Admin', 'modern-events-calendar-lite'); ?></a>
135
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#booking_reminder"><?php _e('Booking Reminder', 'modern-events-calendar-lite'); ?></a>
136
- <?php endif; ?>
137
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#new_event"><?php _e('New Event', 'modern-events-calendar-lite'); ?></a>
138
- </li>
139
- </ul>
140
- </li>
141
-
142
- <li class="wns-be-group-menu-li">
143
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-styling'); ?>" id="" class="wns-be-group-tab-link-a">
144
- <i class="mec-sl-equalizer"></i>
145
- <span class="wns-be-group-menu-title"><?php _e('Styling Options', 'modern-events-calendar-lite'); ?></span>
146
- </a>
147
- </li>
148
-
149
- <li class="wns-be-group-menu-li">
150
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-customcss'); ?>" id="" class="wns-be-group-tab-link-a">
151
- <i class="mec-sl-wrench"></i>
152
- <span class="wns-be-group-menu-title"><?php _e('Custom CSS', 'modern-events-calendar-lite'); ?></span>
153
- </a>
154
- </li>
155
-
156
- <li class="wns-be-group-menu-li">
157
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-messages'); ?>" id="" class="wns-be-group-tab-link-a">
158
- <i class="mec-sl-bubble"></i>
159
- <span class="wns-be-group-menu-title"><?php _e('Messages', 'modern-events-calendar-lite'); ?></span>
160
- </a>
161
- </li>
162
-
163
- <li class="wns-be-group-menu-li active">
164
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-ie'); ?>" id="" class="wns-be-group-tab-link-a">
165
- <i class="mec-sl-refresh"></i>
166
- <span class="wns-be-group-menu-title"><?php _e('Import / Export', 'modern-events-calendar-lite'); ?></span>
167
- </a>
168
- </li>
169
-
170
- </ul>
171
  </div>
172
 
173
  <div class="wns-be-main">
8
  <div id="wns-be-infobar"></div>
9
 
10
  <div class="wns-be-sidebar">
11
+ <?php $this->main->get_sidebar_menu('ie'); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  </div>
13
 
14
  <div class="wns-be-main">
app/features/mec/messages.php CHANGED
@@ -12,166 +12,7 @@ $values = $this->main->get_messages_options();
12
  </div>
13
 
14
  <div class="wns-be-sidebar">
15
-
16
- <ul class="wns-be-group-menu">
17
-
18
- <li class="wns-be-group-menu-li has-sub">
19
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>" id="" class="wns-be-group-tab-link-a">
20
- <span class="extra-icon">
21
- <i class="sl-arrow-down"></i>
22
- </span>
23
- <i class="mec-sl-settings"></i>
24
- <span class="wns-be-group-menu-title"><?php _e('Settings', 'modern-events-calendar-lite'); ?></span>
25
- </a>
26
- <ul id="" class="submneu-hover">
27
- <li class="submenu-item">
28
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#general_option"><?php _e('General Options', 'modern-events-calendar-lite'); ?></a>
29
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#archive_options"><?php _e('Archive Pages', 'modern-events-calendar-lite'); ?></a>
30
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#slug_option"><?php _e('Slugs/Permalinks', 'modern-events-calendar-lite'); ?></a>
31
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#currency_option"><?php _e('Currency Options', 'modern-events-calendar-lite'); ?></a>
32
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#recaptcha_option"><?php _e('Google Recaptcha Options', 'modern-events-calendar-lite'); ?></a>
33
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#fes_option"><?php _e('Frontend Event Submission', 'modern-events-calendar-lite'); ?></a>
34
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#user_profile_options"><?php _e('User Profile', 'modern-events-calendar-lite'); ?></a>
35
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#search_bar_options"><?php _e('Search Bar', 'modern-events-calendar-lite'); ?></a>
36
- <?php if($this->main->getPRO()): ?>
37
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#mailchimp_option"><?php _e('Mailchimp Integration', 'modern-events-calendar-lite'); ?></a>
38
- <?php endif; ?>
39
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#uploadfield_option"><?php _e('Upload Field', 'modern-events-calendar-lite'); ?></a>
40
- </li>
41
- </ul>
42
- </li>
43
-
44
- <li class="wns-be-group-menu-li">
45
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>" id="" class="wns-be-group-tab-link-a">
46
- <i class="mec-sl-note"></i>
47
- <span class="wns-be-group-menu-title"><?php echo __('Single Event', 'modern-events-calendar-lite'); ?></span>
48
- </a>
49
- <ul id="" class="submneu-hover">
50
- <li class="submenu-item">
51
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#event_options"><?php _e('Single Event Page', 'modern-events-calendar-lite'); ?></a>
52
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#countdown_option"><?php _e('Countdown Options', 'modern-events-calendar-lite'); ?></a>
53
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#exceptional_option"><?php _e('Exceptional Days', 'modern-events-calendar-lite'); ?></a>
54
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_organizers"><?php _e('Additional Organizers', 'modern-events-calendar-lite'); ?></a>
55
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_locations"><?php _e('Additional Locations', 'modern-events-calendar-lite'); ?></a>
56
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#related_events"><?php _e('Related Events', 'modern-events-calendar-lite'); ?></a>
57
- </li>
58
- </ul>
59
- </li>
60
-
61
- <?php if($this->main->getPRO()): ?>
62
-
63
- <li class="wns-be-group-menu-li">
64
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>" id="" class="wns-be-group-tab-link-a">
65
- <i class="mec-sl-credit-card"></i>
66
- <span class="wns-be-group-menu-title"><?php echo __('Booking', 'modern-events-calendar-lite'); ?></span>
67
- </a>
68
- <ul id="" class="submneu-hover">
69
- <li class="submenu-item">
70
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>#booking_option"><?php _e('Booking', 'modern-events-calendar-lite'); ?></a>
71
- <?php if(isset($this->settings['booking_status']) and $this->settings['booking_status']): ?>
72
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>#coupon_option"><?php _e('Coupons', 'modern-events-calendar-lite'); ?></a>
73
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>#taxes_option"><?php _e('Taxes / Fees', 'modern-events-calendar-lite'); ?></a>
74
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>#ticket_variations_option"><?php _e('Ticket Variations & Options', 'modern-events-calendar-lite'); ?></a>
75
- <?php endif; ?>
76
- </li>
77
- </ul>
78
- </li>
79
-
80
- <?php endif; ?>
81
-
82
- <li class="wns-be-group-menu-li">
83
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>" id="" class="wns-be-group-tab-link-a">
84
- <i class="mec-sl-grid"></i>
85
- <span class="wns-be-group-menu-title"><?php echo __('Modules', 'modern-events-calendar-lite'); ?></span>
86
- </a>
87
- <ul id="" class="submneu-hover">
88
- <li class="submenu-item">
89
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#speakers_option"><?php _e('Speakers', 'modern-events-calendar-lite'); ?></a>
90
- <?php if($this->main->getPRO()): ?>
91
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#googlemap_option"><?php _e('Google Maps Options', 'modern-events-calendar-lite'); ?></a>
92
- <?php endif; ?>
93
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#export_module_option"><?php _e('Export Options', 'modern-events-calendar-lite'); ?></a>
94
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#time_module_option"><?php _e('Local Time', 'modern-events-calendar-lite'); ?></a>
95
- <?php if($this->main->getPRO()): ?>
96
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#qrcode_module_option"><?php _e('QR Code', 'modern-events-calendar-lite'); ?></a>
97
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#weather_module_option"><?php _e('Weather', 'modern-events-calendar-lite'); ?></a>
98
- <?php endif; ?>
99
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#social_options"><?php _e('Social Networks', 'modern-events-calendar-lite'); ?></a>
100
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#next_event_option"><?php _e('Next Event', 'modern-events-calendar-lite'); ?></a>
101
- <?php if($this->main->getPRO()): ?>
102
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#buddy_option"><?php _e('BuddyPress Integration', 'modern-events-calendar-lite'); ?></a>
103
- <?php endif; ?>
104
- </li>
105
- </ul>
106
- </li>
107
-
108
- <?php if($this->main->getPRO() and isset($this->settings['booking_status']) and $this->settings['booking_status']): ?>
109
-
110
- <li class="wns-be-group-menu-li">
111
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-reg-form'); ?>" id="" class="wns-be-group-tab-link-a">
112
- <i class="mec-sl-layers"></i>
113
- <span class="wns-be-group-menu-title"><?php _e('Booking Form', 'modern-events-calendar-lite'); ?></span>
114
- </a>
115
- </li>
116
-
117
- <li class="wns-be-group-menu-li">
118
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-gateways'); ?>" id="" class="wns-be-group-tab-link-a">
119
- <i class="mec-sl-wallet"></i>
120
- <span class="wns-be-group-menu-title"><?php _e('Payment Gateways', 'modern-events-calendar-lite'); ?></span>
121
- </a>
122
- </li>
123
-
124
- <?php endif;?>
125
-
126
- <li class="wns-be-group-menu-li">
127
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>" id="" class="wns-be-group-tab-link-a">
128
- <i class="mec-sl-envelope"></i>
129
- <span class="wns-be-group-menu-title"><?php _e('Notifications', 'modern-events-calendar-lite'); ?></span>
130
- </a>
131
- <ul id="" class="submneu-hover">
132
- <li class="submenu-item">
133
- <?php if(isset($this->settings['booking_status']) and $this->settings['booking_status']): ?>
134
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#booking_notification"><?php _e('Booking', 'modern-events-calendar-lite'); ?></a>
135
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#booking_verification"><?php _e('Booking Verification', 'modern-events-calendar-lite'); ?></a>
136
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#booking_confirmation"><?php _e('Booking Confirmation', 'modern-events-calendar-lite'); ?></a>
137
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#cancellation_notification"><?php _e('Booking Cancellation', 'modern-events-calendar-lite'); ?></a>
138
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#admin_notification"><?php _e('Admin', 'modern-events-calendar-lite'); ?></a>
139
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#booking_reminder"><?php _e('Booking Reminder', 'modern-events-calendar-lite'); ?></a>
140
- <?php endif; ?>
141
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#new_event"><?php _e('New Event', 'modern-events-calendar-lite'); ?></a>
142
- </li>
143
- </ul>
144
- </li>
145
-
146
- <li class="wns-be-group-menu-li">
147
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-styling'); ?>" id="" class="wns-be-group-tab-link-a">
148
- <i class="mec-sl-equalizer"></i>
149
- <span class="wns-be-group-menu-title"><?php _e('Styling Options', 'modern-events-calendar-lite'); ?></span>
150
- </a>
151
- </li>
152
-
153
- <li class="wns-be-group-menu-li">
154
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-customcss'); ?>" id="" class="wns-be-group-tab-link-a">
155
- <i class="mec-sl-wrench"></i>
156
- <span class="wns-be-group-menu-title"><?php _e('Custom CSS', 'modern-events-calendar-lite'); ?></span>
157
- </a>
158
- </li>
159
-
160
- <li class="wns-be-group-menu-li active">
161
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-messages'); ?>" id="" class="wns-be-group-tab-link-a">
162
- <i class="mec-sl-bubble"></i>
163
- <span class="wns-be-group-menu-title"><?php _e('Messages', 'modern-events-calendar-lite'); ?></span>
164
- </a>
165
- </li>
166
-
167
- <li class="wns-be-group-menu-li">
168
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-ie'); ?>" id="" class="wns-be-group-tab-link-a">
169
- <i class="mec-sl-refresh"></i>
170
- <span class="wns-be-group-menu-title"><?php _e('Import / Export', 'modern-events-calendar-lite'); ?></span>
171
- </a>
172
- </li>
173
-
174
- </ul>
175
  </div>
176
 
177
  <div class="wns-be-main">
12
  </div>
13
 
14
  <div class="wns-be-sidebar">
15
+ <?php $this->main->get_sidebar_menu('messages'); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  </div>
17
 
18
  <div class="wns-be-main">
app/features/mec/modules.php CHANGED
@@ -23,217 +23,8 @@ if($this->getPRO())
23
  </div>
24
 
25
  <div class="wns-be-sidebar">
26
- <ul class="wns-be-group-menu">
27
-
28
- <li class="wns-be-group-menu-li">
29
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>" id="" class="wns-be-group-tab-link-a">
30
- <i class="mec-sl-settings"></i>
31
- <span class="wns-be-group-menu-title"><?php echo __('Settings', 'modern-events-calendar-lite'); ?></span>
32
- </a>
33
- <ul id="" class="submneu-hover">
34
- <li class="submenu-item">
35
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#general_option"><?php _e('General Options', 'modern-events-calendar-lite'); ?></a>
36
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#archive_options"><?php _e('Archive Pages', 'modern-events-calendar-lite'); ?></a>
37
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#slug_option"><?php _e('Slugs/Permalinks', 'modern-events-calendar-lite'); ?></a>
38
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#currency_option"><?php _e('Currency Options', 'modern-events-calendar-lite'); ?></a>
39
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#recaptcha_option"><?php _e('Google Recaptcha Options', 'modern-events-calendar-lite'); ?></a>
40
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#fes_option"><?php _e('Frontend Event Submission', 'modern-events-calendar-lite'); ?></a>
41
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#user_profile_options"><?php _e('User Profile', 'modern-events-calendar-lite'); ?></a>
42
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#search_bar_options"><?php _e('Search Bar', 'modern-events-calendar-lite'); ?></a>
43
- <?php if($this->main->getPRO()): ?>
44
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#mailchimp_option"><?php _e('Mailchimp Integration', 'modern-events-calendar-lite'); ?></a>
45
- <?php endif; ?>
46
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#uploadfield_option"><?php _e('Upload Field', 'modern-events-calendar-lite'); ?></a>
47
- </li>
48
- </ul>
49
- </li>
50
-
51
- <li class="wns-be-group-menu-li">
52
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>" id="" class="wns-be-group-tab-link-a">
53
- <i class="mec-sl-note"></i>
54
- <span class="wns-be-group-menu-title"><?php echo __('Single Event', 'modern-events-calendar-lite'); ?></span>
55
- </a>
56
- <ul id="" class="submneu-hover">
57
- <li class="submenu-item">
58
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#event_options"><?php _e('Single Event Page', 'modern-events-calendar-lite'); ?></a>
59
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#countdown_option"><?php _e('Countdown Options', 'modern-events-calendar-lite'); ?></a>
60
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#exceptional_option"><?php _e('Exceptional Days', 'modern-events-calendar-lite'); ?></a>
61
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_organizers"><?php _e('Additional Organizers', 'modern-events-calendar-lite'); ?></a>
62
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_locations"><?php _e('Additional Locations', 'modern-events-calendar-lite'); ?></a>
63
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#related_events"><?php _e('Related Events', 'modern-events-calendar-lite'); ?></a>
64
- </li>
65
- </ul>
66
- </li>
67
-
68
- <?php if($this->main->getPRO()): ?>
69
-
70
- <li class="wns-be-group-menu-li">
71
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>" id="" class="wns-be-group-tab-link-a">
72
- <i class="mec-sl-credit-card"></i>
73
- <span class="wns-be-group-menu-title"><?php echo __('Booking', 'modern-events-calendar-lite'); ?></span>
74
- </a>
75
- <ul id="" class="submneu-hover">
76
- <li class="submenu-item">
77
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>#booking_option"><?php _e('Booking', 'modern-events-calendar-lite'); ?></a>
78
- <?php if(isset($this->settings['booking_status']) and $this->settings['booking_status']): ?>
79
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>#coupon_option"><?php _e('Coupons', 'modern-events-calendar-lite'); ?></a>
80
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>#taxes_option"><?php _e('Taxes / Fees', 'modern-events-calendar-lite'); ?></a>
81
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>#ticket_variations_option"><?php _e('Ticket Variations & Options', 'modern-events-calendar-lite'); ?></a>
82
- <?php endif; ?>
83
- </li>
84
- </ul>
85
- </li>
86
-
87
- <?php endif; ?>
88
-
89
- <li class="wns-be-group-menu-li has-sub active">
90
-
91
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>" id="" class="wns-be-group-tab-link-a">
92
- <span class="extra-icon">
93
- <i class="mec-sl-arrow-down"></i>
94
- </span>
95
- <i class="mec-sl-grid"></i>
96
- <span class="wns-be-group-menu-title"><?php echo __('Modules', 'modern-events-calendar-lite'); ?></span>
97
- </a>
98
-
99
- <ul id="" class="subsection" style="display: block;">
100
-
101
- <li id="" class="pr-be-group-menu-li active">
102
- <a data-id="speakers_option" class="wns-be-group-tab-link-a WnTabLinks">
103
- <span class="pr-be-group-menu-title"><?php _e('Speakers', 'modern-events-calendar-lite'); ?></span>
104
- </a>
105
- </li>
106
-
107
- <?php if($this->main->getPRO()): ?>
108
-
109
- <li id="" class="pr-be-group-menu-li">
110
- <a data-id="googlemap_option" class="wns-be-group-tab-link-a WnTabLinks">
111
- <span class="pr-be-group-menu-title"><?php _e('Google Maps Options', 'modern-events-calendar-lite'); ?></span>
112
- </a>
113
- </li>
114
-
115
- <?php endif; ?>
116
-
117
- <li id="" class="pr-be-group-menu-li">
118
- <a data-id="export_module_option" class="wns-be-group-tab-link-a WnTabLinks">
119
- <span class="pr-be-group-menu-title"><?php _e('Export Options', 'modern-events-calendar-lite'); ?></span>
120
- </a>
121
- </li>
122
-
123
- <li id="" class="pr-be-group-menu-li">
124
- <a data-id="time_module_option" class="wns-be-group-tab-link-a WnTabLinks">
125
- <span class="pr-be-group-menu-title"><?php _e('Local Time', 'modern-events-calendar-lite'); ?></span>
126
- </a>
127
- </li>
128
-
129
- <?php if($this->main->getPRO()): ?>
130
-
131
- <li id="" class="pr-be-group-menu-li">
132
- <a data-id="qrcode_module_option" class="wns-be-group-tab-link-a WnTabLinks">
133
- <span class="pr-be-group-menu-title"><?php _e('QR Code', 'modern-events-calendar-lite'); ?></span>
134
- </a>
135
- </li>
136
-
137
- <li id="" class="pr-be-group-menu-li">
138
- <a data-id="weather_module_option" class="wns-be-group-tab-link-a WnTabLinks">
139
- <span class="pr-be-group-menu-title"><?php _e('Weather', 'modern-events-calendar-lite'); ?></span>
140
- </a>
141
- </li>
142
-
143
- <?php endif; ?>
144
-
145
- <li id="" class="pr-be-group-menu-li">
146
- <a data-id="social_options" class="wns-be-group-tab-link-a WnTabLinks">
147
- <span class="pr-be-group-menu-title"><?php _e('Social Networks', 'modern-events-calendar-lite'); ?></span>
148
- </a>
149
- </li>
150
-
151
- <li id="" class="pr-be-group-menu-li">
152
- <a data-id="next_event_option" class="wns-be-group-tab-link-a WnTabLinks">
153
- <span class="pr-be-group-menu-title"><?php _e('Next Event', 'modern-events-calendar-lite'); ?></span>
154
- </a>
155
- </li>
156
-
157
- <?php if($this->main->getPRO()): ?>
158
-
159
- <li id="" class="pr-be-group-menu-li">
160
- <a data-id="buddy_option" class="wns-be-group-tab-link-a WnTabLinks">
161
- <span class="pr-be-group-menu-title"><?php _e('BuddyPress Integration', 'modern-events-calendar-lite'); ?></span>
162
- </a>
163
- </li>
164
-
165
- <?php endif; ?>
166
-
167
- </ul>
168
- </li>
169
-
170
- <?php if($this->main->getPRO() and isset($this->settings['booking_status']) and $this->settings['booking_status']): ?>
171
-
172
- <li class="wns-be-group-menu-li">
173
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-reg-form'); ?>" id="" class="wns-be-group-tab-link-a">
174
- <i class="mec-sl-layers"></i>
175
- <span class="wns-be-group-menu-title"><?php _e('Booking Form', 'modern-events-calendar-lite'); ?></span>
176
- </a>
177
- </li>
178
-
179
- <li class="wns-be-group-menu-li">
180
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-gateways'); ?>" id="" class="wns-be-group-tab-link-a">
181
- <i class="mec-sl-wallet"></i>
182
- <span class="wns-be-group-menu-title"><?php _e('Payment Gateways', 'modern-events-calendar-lite'); ?></span>
183
- </a>
184
- </li>
185
-
186
- <?php endif;?>
187
-
188
- <li class="wns-be-group-menu-li">
189
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>" id="" class="wns-be-group-tab-link-a">
190
- <i class="mec-sl-envelope"></i>
191
- <span class="wns-be-group-menu-title"><?php _e('Notifications', 'modern-events-calendar-lite'); ?></span>
192
- </a>
193
- <ul id="" class="submneu-hover">
194
- <li class="submenu-item">
195
- <?php if(isset($this->settings['booking_status']) and $this->settings['booking_status']): ?>
196
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#booking_notification"><?php _e('Booking', 'modern-events-calendar-lite'); ?></a>
197
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#booking_verification"><?php _e('Booking Verification', 'modern-events-calendar-lite'); ?></a>
198
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#booking_confirmation"><?php _e('Booking Confirmation', 'modern-events-calendar-lite'); ?></a>
199
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#cancellation_notification"><?php _e('Booking Cancellation', 'modern-events-calendar-lite'); ?></a>
200
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#admin_notification"><?php _e('Admin', 'modern-events-calendar-lite'); ?></a>
201
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#booking_reminder"><?php _e('Booking Reminder', 'modern-events-calendar-lite'); ?></a>
202
- <?php endif; ?>
203
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#new_event"><?php _e('New Event', 'modern-events-calendar-lite'); ?></a>
204
- </li>
205
- </ul>
206
- </li>
207
-
208
- <li class="wns-be-group-menu-li">
209
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-styling'); ?>" id="" class="wns-be-group-tab-link-a">
210
- <i class="mec-sl-equalizer"></i>
211
- <span class="wns-be-group-menu-title"><?php _e('Styling Options', 'modern-events-calendar-lite'); ?></span>
212
- </a>
213
- </li>
214
-
215
- <li class="wns-be-group-menu-li">
216
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-customcss'); ?>" id="" class="wns-be-group-tab-link-a">
217
- <i class="mec-sl-wrench"></i>
218
- <span class="wns-be-group-menu-title"><?php _e('Custom CSS', 'modern-events-calendar-lite'); ?></span>
219
- </a>
220
- </li>
221
-
222
- <li class="wns-be-group-menu-li">
223
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-messages'); ?>" id="" class="wns-be-group-tab-link-a">
224
- <i class="mec-sl-bubble"></i>
225
- <span class="wns-be-group-menu-title"><?php _e('Messages', 'modern-events-calendar-lite'); ?></span>
226
- </a>
227
- </li>
228
-
229
- <li class="wns-be-group-menu-li">
230
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-ie'); ?>" id="" class="wns-be-group-tab-link-a">
231
- <i class="mec-sl-refresh"></i>
232
- <span class="wns-be-group-menu-title"><?php _e('Import / Export', 'modern-events-calendar-lite'); ?></span>
233
- </a>
234
- </li>
235
-
236
- </ul>
237
  </div>
238
 
239
  <div class="wns-be-main">
@@ -578,35 +369,10 @@ if($this->getPRO())
578
  <script type="text/javascript">
579
  jQuery(document).ready(function()
580
  {
581
- jQuery('.WnTabLinks').each(function()
582
- {
583
- var ContentId = jQuery(this).attr('data-id');
584
- jQuery(this).click(function()
585
- {
586
- jQuery('.pr-be-group-menu-li').removeClass('active');
587
- jQuery(this).parent().addClass('active');
588
- jQuery(".mec-options-fields").hide();
589
- jQuery(".mec-options-fields").removeClass('active');
590
- jQuery("#"+ContentId+"").show();
591
- jQuery("#"+ContentId+"").addClass('active');
592
- jQuery('html, body').animate({
593
- scrollTop: jQuery("#"+ContentId+"").offset().top - 140
594
- }, 300);
595
- });
596
- var hash = window.location.hash.replace('#', '');
597
- jQuery('[data-id="'+hash+'"]').trigger('click');
598
- });
599
-
600
  jQuery(".dpr-save-btn").on('click', function(event)
601
  {
602
  event.preventDefault();
603
  jQuery("#mec_modules_form_button").trigger('click');
604
- });
605
-
606
- jQuery(".wns-be-sidebar .pr-be-group-menu-li").on('click', function(event)
607
- {
608
- jQuery(".wns-be-sidebar .pr-be-group-menu-li").removeClass('active');
609
- jQuery(this).addClass('active');
610
  });
611
  });
612
 
23
  </div>
24
 
25
  <div class="wns-be-sidebar">
26
+ <?php $this->main->get_sidebar_menu('modules'); ?>
27
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  </div>
29
 
30
  <div class="wns-be-main">
369
  <script type="text/javascript">
370
  jQuery(document).ready(function()
371
  {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
372
  jQuery(".dpr-save-btn").on('click', function(event)
373
  {
374
  event.preventDefault();
375
  jQuery("#mec_modules_form_button").trigger('click');
 
 
 
 
 
 
376
  });
377
  });
378
 
app/features/mec/regform.php CHANGED
@@ -49,164 +49,7 @@ if(!$mec_email)
49
  </div>
50
 
51
  <div class="wns-be-sidebar">
52
-
53
- <ul class="wns-be-group-menu">
54
-
55
- <li class="wns-be-group-menu-li has-sub">
56
- <a href="<?php echo $this->main->remove_qs_var( 'tab' ); ?>" id="" class="wns-be-group-tab-link-a">
57
- <span class="extra-icon">
58
- <i class="sl-arrow-down"></i>
59
- </span>
60
- <i class="mec-sl-settings"></i>
61
- <span class="wns-be-group-menu-title"><?php _e( 'Settings', 'modern-events-calendar-lite' ); ?></span>
62
- </a>
63
- <ul id="" class="submneu-hover">
64
- <li class="submenu-item">
65
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#general_option"><?php _e('General Options', 'modern-events-calendar-lite'); ?></a>
66
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#archive_options"><?php _e('Archive Pages', 'modern-events-calendar-lite'); ?></a>
67
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#slug_option"><?php _e('Slugs/Permalinks', 'modern-events-calendar-lite'); ?></a>
68
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#currency_option"><?php _e('Currency Options', 'modern-events-calendar-lite'); ?></a>
69
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#recaptcha_option"><?php _e('Google Recaptcha Options', 'modern-events-calendar-lite'); ?></a>
70
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#fes_option"><?php _e('Frontend Event Submission', 'modern-events-calendar-lite'); ?></a>
71
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#user_profile_options"><?php _e('User Profile', 'modern-events-calendar-lite'); ?></a>
72
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#search_bar_options"><?php _e('Search Bar', 'modern-events-calendar-lite'); ?></a>
73
- <?php if($this->main->getPRO()): ?>
74
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#mailchimp_option"><?php _e('Mailchimp Integration', 'modern-events-calendar-lite'); ?></a>
75
- <?php endif; ?>
76
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#uploadfield_option"><?php _e('Upload Field', 'modern-events-calendar-lite'); ?></a>
77
- </li>
78
- </ul>
79
- </li>
80
-
81
- <li class="wns-be-group-menu-li">
82
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>" id="" class="wns-be-group-tab-link-a">
83
- <i class="mec-sl-note"></i>
84
- <span class="wns-be-group-menu-title"><?php echo __('Single Event', 'modern-events-calendar-lite'); ?></span>
85
- </a>
86
- <ul id="" class="submneu-hover">
87
- <li class="submenu-item">
88
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#event_options"><?php _e('Single Event Page', 'modern-events-calendar-lite'); ?></a>
89
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#countdown_option"><?php _e('Countdown Options', 'modern-events-calendar-lite'); ?></a>
90
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#exceptional_option"><?php _e('Exceptional Days', 'modern-events-calendar-lite'); ?></a>
91
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_organizers"><?php _e('Additional Organizers', 'modern-events-calendar-lite'); ?></a>
92
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_locations"><?php _e('Additional Locations', 'modern-events-calendar-lite'); ?></a>
93
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#related_events"><?php _e('Related Events', 'modern-events-calendar-lite'); ?></a>
94
- </li>
95
- </ul>
96
- </li>
97
-
98
- <?php if($this->main->getPRO()): ?>
99
-
100
- <li class="wns-be-group-menu-li">
101
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>" id="" class="wns-be-group-tab-link-a">
102
- <i class="mec-sl-credit-card"></i>
103
- <span class="wns-be-group-menu-title"><?php echo __('Booking', 'modern-events-calendar-lite'); ?></span>
104
- </a>
105
- <ul id="" class="submneu-hover">
106
- <li class="submenu-item">
107
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>#booking_option"><?php _e('Booking', 'modern-events-calendar-lite'); ?></a>
108
- <?php if(isset($this->settings['booking_status']) and $this->settings['booking_status']): ?>
109
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>#coupon_option"><?php _e('Coupons', 'modern-events-calendar-lite'); ?></a>
110
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>#taxes_option"><?php _e('Taxes / Fees', 'modern-events-calendar-lite'); ?></a>
111
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>#ticket_variations_option"><?php _e('Ticket Variations & Options', 'modern-events-calendar-lite'); ?></a>
112
- <?php endif; ?>
113
- </li>
114
- </ul>
115
- </li>
116
-
117
- <?php endif; ?>
118
-
119
- <li class="wns-be-group-menu-li">
120
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>" id="" class="wns-be-group-tab-link-a">
121
- <i class="mec-sl-grid"></i>
122
- <span class="wns-be-group-menu-title"><?php echo __('Modules', 'modern-events-calendar-lite'); ?></span>
123
- </a>
124
- <ul id="" class="submneu-hover">
125
- <li class="submenu-item">
126
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#speakers_option"><?php _e('Speakers', 'modern-events-calendar-lite'); ?></a>
127
- <?php if($this->main->getPRO()): ?>
128
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#googlemap_option"><?php _e('Google Maps Options', 'modern-events-calendar-lite'); ?></a>
129
- <?php endif; ?>
130
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#export_module_option"><?php _e('Export Options', 'modern-events-calendar-lite'); ?></a>
131
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#time_module_option"><?php _e('Local Time', 'modern-events-calendar-lite'); ?></a>
132
- <?php if($this->main->getPRO()): ?>
133
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#qrcode_module_option"><?php _e('QR Code', 'modern-events-calendar-lite'); ?></a>
134
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#weather_module_option"><?php _e('Weather', 'modern-events-calendar-lite'); ?></a>
135
- <?php endif; ?>
136
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#social_options"><?php _e('Social Networks', 'modern-events-calendar-lite'); ?></a>
137
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#next_event_option"><?php _e('Next Event', 'modern-events-calendar-lite'); ?></a>
138
- <?php if($this->main->getPRO()): ?>
139
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#buddy_option"><?php _e('BuddyPress Integration', 'modern-events-calendar-lite'); ?></a>
140
- <?php endif; ?>
141
- </li>
142
- </ul>
143
- </li>
144
-
145
- <?php if ( $this->main->getPRO() and isset( $this->settings['booking_status'] ) and $this->settings['booking_status'] ) : ?>
146
- <li class="wns-be-group-menu-li active">
147
- <a href="<?php echo $this->main->add_qs_var( 'tab', 'MEC-reg-form' ); ?>" id="" class="wns-be-group-tab-link-a">
148
- <i class="mec-sl-layers"></i>
149
- <span class="wns-be-group-menu-title"><?php _e( 'Booking Form', 'modern-events-calendar-lite' ); ?></span>
150
- </a>
151
- </li>
152
-
153
- <li class="wns-be-group-menu-li">
154
- <a href="<?php echo $this->main->add_qs_var( 'tab', 'MEC-gateways' ); ?>" id="" class="wns-be-group-tab-link-a">
155
- <i class="mec-sl-wallet"></i>
156
- <span class="wns-be-group-menu-title"><?php _e( 'Payment Gateways', 'modern-events-calendar-lite' ); ?></span>
157
- </a>
158
- </li>
159
- <?php endif; ?>
160
-
161
- <li class="wns-be-group-menu-li">
162
- <a href="<?php echo $this->main->add_qs_var( 'tab', 'MEC-notifications' ); ?>" id="" class="wns-be-group-tab-link-a">
163
- <i class="mec-sl-envelope"></i>
164
- <span class="wns-be-group-menu-title"><?php _e( 'Notifications', 'modern-events-calendar-lite' ); ?></span>
165
- </a>
166
- <ul id="" class="submneu-hover">
167
- <li class="submenu-item">
168
- <?php if(isset($this->settings['booking_status']) and $this->settings['booking_status']): ?>
169
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#booking_notification"><?php _e('Booking', 'modern-events-calendar-lite'); ?></a>
170
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#booking_verification"><?php _e('Booking Verification', 'modern-events-calendar-lite'); ?></a>
171
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#booking_confirmation"><?php _e('Booking Confirmation', 'modern-events-calendar-lite'); ?></a>
172
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#cancellation_notification"><?php _e('Booking Cancellation', 'modern-events-calendar-lite'); ?></a>
173
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#admin_notification"><?php _e('Admin', 'modern-events-calendar-lite'); ?></a>
174
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#booking_reminder"><?php _e('Booking Reminder', 'modern-events-calendar-lite'); ?></a>
175
- <?php endif; ?>
176
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#new_event"><?php _e('New Event', 'modern-events-calendar-lite'); ?></a>
177
- </li>
178
- </ul>
179
- </li>
180
-
181
- <li class="wns-be-group-menu-li">
182
- <a href="<?php echo $this->main->add_qs_var( 'tab', 'MEC-styling' ); ?>" id="" class="wns-be-group-tab-link-a">
183
- <i class="mec-sl-equalizer"></i>
184
- <span class="wns-be-group-menu-title"><?php _e( 'Styling Options', 'modern-events-calendar-lite' ); ?></span>
185
- </a>
186
- </li>
187
-
188
- <li class="wns-be-group-menu-li">
189
- <a href="<?php echo $this->main->add_qs_var( 'tab', 'MEC-customcss' ); ?>" id="" class="wns-be-group-tab-link-a">
190
- <i class="mec-sl-wrench"></i>
191
- <span class="wns-be-group-menu-title"><?php _e( 'Custom CSS', 'modern-events-calendar-lite' ); ?></span>
192
- </a>
193
- </li>
194
-
195
- <li class="wns-be-group-menu-li">
196
- <a href="<?php echo $this->main->add_qs_var( 'tab', 'MEC-messages' ); ?>" id="" class="wns-be-group-tab-link-a">
197
- <i class="mec-sl-bubble"></i>
198
- <span class="wns-be-group-menu-title"><?php _e( 'Messages', 'modern-events-calendar-lite' ); ?></span>
199
- </a>
200
- </li>
201
-
202
- <li class="wns-be-group-menu-li">
203
- <a href="<?php echo $this->main->add_qs_var( 'tab', 'MEC-ie' ); ?>" id="" class="wns-be-group-tab-link-a">
204
- <i class="mec-sl-refresh"></i>
205
- <span class="wns-be-group-menu-title"><?php _e( 'Import / Export', 'modern-events-calendar-lite' ); ?></span>
206
- </a>
207
- </li>
208
-
209
- </ul>
210
  </div>
211
 
212
  <div class="wns-be-main">
49
  </div>
50
 
51
  <div class="wns-be-sidebar">
52
+ <?php $this->main->get_sidebar_menu('reg_form'); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
  </div>
54
 
55
  <div class="wns-be-main">
app/features/mec/settings.php CHANGED
@@ -32,218 +32,8 @@ $get_n_option = get_option('mec_addons_notification_option');
32
  </div>
33
 
34
  <div class="wns-be-sidebar">
35
- <ul class="wns-be-group-menu">
36
-
37
- <li class="wns-be-group-menu-li has-sub active">
38
-
39
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>" id="" class="wns-be-group-tab-link-a">
40
- <span class="extra-icon">
41
- <i class="mec-sl-arrow-down"></i>
42
- </span>
43
- <i class="mec-sl-settings"></i>
44
- <span class="wns-be-group-menu-title"><?php echo __('Settings', 'modern-events-calendar-lite'); ?></span>
45
- </a>
46
-
47
- <ul id="" class="subsection" style="display: block;">
48
-
49
- <li id="" class="pr-be-group-menu-li active">
50
- <a data-id="general_option" class="wns-be-group-tab-link-a WnTabLinks">
51
- <span class="pr-be-group-menu-title"><?php _e('General Options', 'modern-events-calendar-lite'); ?></span>
52
- </a>
53
- </li>
54
-
55
- <li id="" class="pr-be-group-menu-li">
56
- <a data-id="archive_options" class="wns-be-group-tab-link-a WnTabLinks">
57
- <span class="pr-be-group-menu-title"><?php _e('Archive Pages', 'modern-events-calendar-lite'); ?></span>
58
- </a>
59
- </li>
60
-
61
- <li id="" class="pr-be-group-menu-li">
62
- <a data-id="slug_option" class="wns-be-group-tab-link-a WnTabLinks">
63
- <span class="pr-be-group-menu-title"><?php _e('Slugs/Permalinks', 'modern-events-calendar-lite'); ?></span>
64
- </a>
65
- </li>
66
-
67
- <li id="" class="pr-be-group-menu-li">
68
- <a id="" data-id="currency_option" class="wns-be-group-tab-link-a WnTabLinks">
69
- <span class="pr-be-group-menu-title"><?php _e('Currency Options', 'modern-events-calendar-lite'); ?></span>
70
- </a>
71
- </li>
72
-
73
- <li id="" class="pr-be-group-menu-li">
74
- <a id="" data-id="recaptcha_option" class="wns-be-group-tab-link-a WnTabLinks">
75
- <span class="pr-be-group-menu-title"><?php _e('Google Recaptcha Options', 'modern-events-calendar-lite'); ?></span>
76
- </a>
77
- </li>
78
-
79
- <li id="" class="pr-be-group-menu-li">
80
- <a data-id="fes_option" class="wns-be-group-tab-link-a WnTabLinks">
81
- <span class="pr-be-group-menu-title"><?php _e('Frontend Event Submission', 'modern-events-calendar-lite'); ?></span>
82
- </a>
83
- </li>
84
-
85
- <li id="" class="pr-be-group-menu-li">
86
- <a data-id="user_profile_options" class="wns-be-group-tab-link-a WnTabLinks">
87
- <span class="pr-be-group-menu-title"><?php _e('User Profile', 'modern-events-calendar-lite'); ?></span>
88
- </a>
89
- </li>
90
-
91
- <li id="" class="pr-be-group-menu-li">
92
- <a data-id="search_bar_options" class="wns-be-group-tab-link-a WnTabLinks">
93
- <span class="pr-be-group-menu-title"><?php _e('Search Bar', 'modern-events-calendar-lite'); ?></span>
94
- </a>
95
- </li>
96
-
97
- <?php if($this->main->getPRO()): ?>
98
-
99
- <li id="" class="pr-be-group-menu-li">
100
- <a data-id="mailchimp_option" class="wns-be-group-tab-link-a WnTabLinks">
101
- <span class="pr-be-group-menu-title"><?php _e('Mailchimp Integration', 'modern-events-calendar-lite'); ?></span>
102
- </a>
103
- </li>
104
-
105
- <?php endif; ?>
106
-
107
- <li id="" class="pr-be-group-menu-li">
108
- <a data-id="uploadfield_option" class="wns-be-group-tab-link-a WnTabLinks">
109
- <span class="pr-be-group-menu-title"><?php _e('Upload Field', 'modern-events-calendar-lite'); ?></span>
110
- </a>
111
- </li>
112
-
113
- </ul>
114
- </li>
115
-
116
- <li class="wns-be-group-menu-li">
117
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>" id="" class="wns-be-group-tab-link-a">
118
- <i class="mec-sl-note"></i>
119
- <span class="wns-be-group-menu-title"><?php echo __('Single Event', 'modern-events-calendar-lite'); ?></span>
120
- </a>
121
- <ul id="" class="submneu-hover">
122
- <li class="submenu-item">
123
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#event_options"><?php _e('Single Event Page', 'modern-events-calendar-lite'); ?></a>
124
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#countdown_option"><?php _e('Countdown Options', 'modern-events-calendar-lite'); ?></a>
125
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#exceptional_option"><?php _e('Exceptional Days', 'modern-events-calendar-lite'); ?></a>
126
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_organizers"><?php _e('Additional Organizers', 'modern-events-calendar-lite'); ?></a>
127
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_locations"><?php _e('Additional Locations', 'modern-events-calendar-lite'); ?></a>
128
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#related_events"><?php _e('Related Events', 'modern-events-calendar-lite'); ?></a>
129
- </li>
130
- </ul>
131
- </li>
132
-
133
- <?php if($this->main->getPRO()): ?>
134
-
135
- <li class="wns-be-group-menu-li">
136
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>" id="" class="wns-be-group-tab-link-a">
137
- <i class="mec-sl-credit-card"></i>
138
- <span class="wns-be-group-menu-title"><?php echo __('Booking', 'modern-events-calendar-lite'); ?></span>
139
- </a>
140
- <ul id="" class="submneu-hover">
141
- <li class="submenu-item">
142
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>#booking_option"><?php _e('Booking', 'modern-events-calendar-lite'); ?></a>
143
- <?php if(isset($this->settings['booking_status']) and $this->settings['booking_status']): ?>
144
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>#coupon_option"><?php _e('Coupons', 'modern-events-calendar-lite'); ?></a>
145
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>#taxes_option"><?php _e('Taxes / Fees', 'modern-events-calendar-lite'); ?></a>
146
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>#ticket_variations_option"><?php _e('Ticket Variations & Options', 'modern-events-calendar-lite'); ?></a>
147
- <?php endif; ?>
148
- </li>
149
- </ul>
150
- </li>
151
-
152
- <?php endif; ?>
153
-
154
- <li class="wns-be-group-menu-li">
155
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>" id="" class="wns-be-group-tab-link-a">
156
- <i class="mec-sl-grid"></i>
157
- <span class="wns-be-group-menu-title"><?php echo __('Modules', 'modern-events-calendar-lite'); ?></span>
158
- </a>
159
- <ul id="" class="submneu-hover">
160
- <li class="submenu-item">
161
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#speakers_option"><?php _e('Speakers', 'modern-events-calendar-lite'); ?></a>
162
- <?php if($this->main->getPRO()): ?>
163
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#googlemap_option"><?php _e('Google Maps Options', 'modern-events-calendar-lite'); ?></a>
164
- <?php endif; ?>
165
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#export_module_option"><?php _e('Export Options', 'modern-events-calendar-lite'); ?></a>
166
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#time_module_option"><?php _e('Local Time', 'modern-events-calendar-lite'); ?></a>
167
- <?php if($this->main->getPRO()): ?>
168
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#qrcode_module_option"><?php _e('QR Code', 'modern-events-calendar-lite'); ?></a>
169
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#weather_module_option"><?php _e('Weather', 'modern-events-calendar-lite'); ?></a>
170
- <?php endif; ?>
171
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#social_options"><?php _e('Social Networks', 'modern-events-calendar-lite'); ?></a>
172
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#next_event_option"><?php _e('Next Event', 'modern-events-calendar-lite'); ?></a>
173
- <?php if($this->main->getPRO()): ?>
174
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#buddy_option"><?php _e('BuddyPress Integration', 'modern-events-calendar-lite'); ?></a>
175
- <?php endif; ?>
176
- </li>
177
- </ul>
178
- </li>
179
-
180
- <?php if($this->main->getPRO() and isset($this->settings['booking_status']) and $this->settings['booking_status']): ?>
181
-
182
- <li class="wns-be-group-menu-li">
183
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-reg-form'); ?>" id="" class="wns-be-group-tab-link-a">
184
- <i class="mec-sl-layers"></i>
185
- <span class="wns-be-group-menu-title"><?php _e('Booking Form', 'modern-events-calendar-lite'); ?></span>
186
- </a>
187
- </li>
188
-
189
- <li class="wns-be-group-menu-li">
190
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-gateways'); ?>" id="" class="wns-be-group-tab-link-a">
191
- <i class="mec-sl-wallet"></i>
192
- <span class="wns-be-group-menu-title"><?php _e('Payment Gateways', 'modern-events-calendar-lite'); ?></span>
193
- </a>
194
- </li>
195
-
196
- <?php endif;?>
197
-
198
- <li class="wns-be-group-menu-li">
199
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>" id="" class="wns-be-group-tab-link-a">
200
- <i class="mec-sl-envelope"></i>
201
- <span class="wns-be-group-menu-title"><?php _e('Notifications', 'modern-events-calendar-lite'); ?></span>
202
- </a>
203
- <ul id="" class="submneu-hover">
204
- <li class="submenu-item">
205
- <?php if(isset($this->settings['booking_status']) and $this->settings['booking_status']): ?>
206
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#booking_notification"><?php _e('Booking', 'modern-events-calendar-lite'); ?></a>
207
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#booking_verification"><?php _e('Booking Verification', 'modern-events-calendar-lite'); ?></a>
208
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#booking_confirmation"><?php _e('Booking Confirmation', 'modern-events-calendar-lite'); ?></a>
209
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#cancellation_notification"><?php _e('Booking Cancellation', 'modern-events-calendar-lite'); ?></a>
210
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#admin_notification"><?php _e('Admin', 'modern-events-calendar-lite'); ?></a>
211
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#booking_reminder"><?php _e('Booking Reminder', 'modern-events-calendar-lite'); ?></a>
212
- <?php endif; ?>
213
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#new_event"><?php _e('New Event', 'modern-events-calendar-lite'); ?></a>
214
- </li>
215
- </ul>
216
- </li>
217
-
218
- <li class="wns-be-group-menu-li">
219
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-styling'); ?>" id="" class="wns-be-group-tab-link-a">
220
- <i class="mec-sl-equalizer"></i>
221
- <span class="wns-be-group-menu-title"><?php _e('Styling Options', 'modern-events-calendar-lite'); ?></span>
222
- </a>
223
- </li>
224
-
225
- <li class="wns-be-group-menu-li">
226
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-customcss'); ?>" id="" class="wns-be-group-tab-link-a">
227
- <i class="mec-sl-wrench"></i>
228
- <span class="wns-be-group-menu-title"><?php _e('Custom CSS', 'modern-events-calendar-lite'); ?></span>
229
- </a>
230
- </li>
231
-
232
- <li class="wns-be-group-menu-li">
233
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-messages'); ?>" id="" class="wns-be-group-tab-link-a">
234
- <i class="mec-sl-bubble"></i>
235
- <span class="wns-be-group-menu-title"><?php _e('Messages', 'modern-events-calendar-lite'); ?></span>
236
- </a>
237
- </li>
238
-
239
- <li class="wns-be-group-menu-li">
240
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-ie'); ?>" id="" class="wns-be-group-tab-link-a">
241
- <i class="mec-sl-refresh"></i>
242
- <span class="wns-be-group-menu-title"><?php _e('Import / Export', 'modern-events-calendar-lite'); ?></span>
243
- </a>
244
- </li>
245
-
246
- </ul>
247
  </div>
248
 
249
  <div class="wns-be-main">
@@ -322,6 +112,21 @@ $get_n_option = get_option('mec_addons_notification_option');
322
  </span>
323
  </div>
324
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
325
  <?php $weekdays = $this->main->get_weekday_i18n_labels(); ?>
326
  <div class="mec-form-row">
327
 
@@ -897,6 +702,12 @@ $get_n_option = get_option('mec_addons_notification_option');
897
  <i title="" class="dashicons-before dashicons-editor-help"></i>
898
  </span>
899
  </div>
 
 
 
 
 
 
900
  <br>
901
  <h4 class="mec-form-subtitle"><?php _e('Search bar fields', 'modern-events-calendar-lite'); ?></h4>
902
  <div class="mec-form-row">
@@ -1042,35 +853,10 @@ $get_n_option = get_option('mec_addons_notification_option');
1042
  <script type="text/javascript">
1043
  jQuery(document).ready(function()
1044
  {
1045
- jQuery('.WnTabLinks').each(function()
1046
- {
1047
- var ContentId = jQuery(this).attr('data-id');
1048
- jQuery(this).click(function()
1049
- {
1050
- jQuery('.pr-be-group-menu-li').removeClass('active');
1051
- jQuery(this).parent().addClass('active');
1052
- jQuery(".mec-options-fields").hide();
1053
- jQuery(".mec-options-fields").removeClass('active');
1054
- jQuery("#"+ContentId+"").show();
1055
- jQuery("#"+ContentId+"").addClass('active');
1056
- jQuery('html, body').animate({
1057
- scrollTop: jQuery("#"+ContentId+"").offset().top - 140
1058
- }, 300);
1059
- });
1060
- var hash = window.location.hash.replace('#', '');
1061
- jQuery('[data-id="'+hash+'"]').trigger('click');
1062
- });
1063
-
1064
  jQuery(".dpr-save-btn").on('click', function(event)
1065
  {
1066
  event.preventDefault();
1067
  jQuery("#mec_settings_form_button").trigger('click');
1068
- });
1069
-
1070
- jQuery(".wns-be-sidebar .pr-be-group-menu-li").on('click', function(event)
1071
- {
1072
- jQuery(".wns-be-sidebar .pr-be-group-menu-li").removeClass('active');
1073
- jQuery(this).addClass('active');
1074
  });
1075
  });
1076
 
32
  </div>
33
 
34
  <div class="wns-be-sidebar">
35
+ <?php $this->main->get_sidebar_menu('settings'); ?>
36
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
  </div>
38
 
39
  <div class="wns-be-main">
112
  </span>
113
  </div>
114
 
115
+ <div class="mec-form-row">
116
+ <label class="mec-col-3" for="mec_settings_schema"><?php _e('Schema', 'modern-events-calendar-lite'); ?></label>
117
+ <label id="mec_settings_schema" >
118
+ <input type="hidden" name="mec[settings][schema]" value="0" />
119
+ <input value="1" type="checkbox" name="mec[settings][schema]" <?php if(!isset($settings['schema']) or (isset($settings['schema']) and $settings['schema'])) echo 'checked="checked"'; ?> /> <?php _e('Enable Schema Code', 'modern-events-calendar-lite'); ?>
120
+ </label>
121
+ <span class="mec-tooltip">
122
+ <div class="box top">
123
+ <h5 class="title"><?php _e('Schema', 'modern-events-calendar-lite'); ?></h5>
124
+ <div class="content"><p><?php esc_attr_e("You can enable/disable Schema scripts", 'modern-events-calendar-lite'); ?></p></div>
125
+ </div>
126
+ <i title="" class="dashicons-before dashicons-editor-help"></i>
127
+ </span>
128
+ </div>
129
+
130
  <?php $weekdays = $this->main->get_weekday_i18n_labels(); ?>
131
  <div class="mec-form-row">
132
 
702
  <i title="" class="dashicons-before dashicons-editor-help"></i>
703
  </span>
704
  </div>
705
+ <div class="mec-form-row">
706
+ <label>
707
+ <input type="hidden" name="mec[settings][search_bar_modern_type]" value="0" />
708
+ <input value="1" type="checkbox" name="mec[settings][search_bar_modern_type]" <?php if(isset($settings['search_bar_modern_type']) and $settings['search_bar_modern_type']) echo 'checked="checked"'; ?> /> <?php _e('Modern Type', 'modern-events-calendar-lite'); ?>
709
+ </label>
710
+ </div>
711
  <br>
712
  <h4 class="mec-form-subtitle"><?php _e('Search bar fields', 'modern-events-calendar-lite'); ?></h4>
713
  <div class="mec-form-row">
853
  <script type="text/javascript">
854
  jQuery(document).ready(function()
855
  {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
856
  jQuery(".dpr-save-btn").on('click', function(event)
857
  {
858
  event.preventDefault();
859
  jQuery("#mec_settings_form_button").trigger('click');
 
 
 
 
 
 
860
  });
861
  });
862
 
app/features/mec/single.php CHANGED
@@ -15,196 +15,7 @@ $pages = get_pages();
15
  </div>
16
 
17
  <div class="wns-be-sidebar">
18
- <ul class="wns-be-group-menu">
19
-
20
- <li class="wns-be-group-menu-li">
21
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>" id="" class="wns-be-group-tab-link-a">
22
- <i class="mec-sl-settings"></i>
23
- <span class="wns-be-group-menu-title"><?php echo __('Settings', 'modern-events-calendar-lite'); ?></span>
24
- </a>
25
- <ul id="" class="submneu-hover">
26
- <li class="submenu-item">
27
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#general_option"><?php _e('General Options', 'modern-events-calendar-lite'); ?></a>
28
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#archive_options"><?php _e('Archive Pages', 'modern-events-calendar-lite'); ?></a>
29
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#slug_option"><?php _e('Slugs/Permalinks', 'modern-events-calendar-lite'); ?></a>
30
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#currency_option"><?php _e('Currency Options', 'modern-events-calendar-lite'); ?></a>
31
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#recaptcha_option"><?php _e('Google Recaptcha Options', 'modern-events-calendar-lite'); ?></a>
32
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#fes_option"><?php _e('Frontend Event Submission', 'modern-events-calendar-lite'); ?></a>
33
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#user_profile_options"><?php _e('User Profile', 'modern-events-calendar-lite'); ?></a>
34
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#search_bar_options"><?php _e('Search Bar', 'modern-events-calendar-lite'); ?></a>
35
- <?php if($this->main->getPRO()): ?>
36
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#mailchimp_option"><?php _e('Mailchimp Integration', 'modern-events-calendar-lite'); ?></a>
37
- <?php endif; ?>
38
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#uploadfield_option"><?php _e('Upload Field', 'modern-events-calendar-lite'); ?></a>
39
- </li>
40
- </ul>
41
- </li>
42
-
43
- <li class="wns-be-group-menu-li has-sub active">
44
-
45
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>" id="" class="wns-be-group-tab-link-a">
46
- <span class="extra-icon">
47
- <i class="mec-sl-arrow-down"></i>
48
- </span>
49
- <i class="mec-sl-note"></i>
50
- <span class="wns-be-group-menu-title"><?php echo __('Single Event', 'modern-events-calendar-lite'); ?></span>
51
- </a>
52
-
53
- <ul id="" class="subsection" style="display: block;">
54
-
55
- <li id="" class="pr-be-group-menu-li active">
56
- <a data-id= "event_options" class="wns-be-group-tab-link-a WnTabLinks active">
57
- <span class="pr-be-group-menu-title"><?php _e('Single Event Page', 'modern-events-calendar-lite'); ?></span>
58
- </a>
59
- </li>
60
-
61
- <li id="" class="pr-be-group-menu-li">
62
- <a data-id= "countdown_option" class="wns-be-group-tab-link-a WnTabLinks">
63
- <span class="pr-be-group-menu-title"><?php _e('Countdown Options', 'modern-events-calendar-lite'); ?></span>
64
- </a>
65
- </li>
66
-
67
- <li id="" class="pr-be-group-menu-li">
68
- <a data-id= "exceptional_option" class="wns-be-group-tab-link-a WnTabLinks">
69
- <span class="pr-be-group-menu-title"><?php _e('Exceptional Days', 'modern-events-calendar-lite'); ?></span>
70
- </a>
71
- </li>
72
-
73
- <li id="" class="pr-be-group-menu-li">
74
- <a data-id= "additional_organizers" class="wns-be-group-tab-link-a WnTabLinks">
75
- <span class="pr-be-group-menu-title"><?php _e('Additional Organizers', 'modern-events-calendar-lite'); ?></span>
76
- </a>
77
- </li>
78
-
79
- <li id="" class="pr-be-group-menu-li">
80
- <a data-id= "additional_locations" class="wns-be-group-tab-link-a WnTabLinks">
81
- <span class="pr-be-group-menu-title"><?php _e('Additional Locations', 'modern-events-calendar-lite'); ?></span>
82
- </a>
83
- </li>
84
-
85
- <li id="" class="pr-be-group-menu-li">
86
- <a data-id= "related_events" class="wns-be-group-tab-link-a WnTabLinks">
87
- <span class="pr-be-group-menu-title"><?php _e('Related Events', 'modern-events-calendar-lite'); ?></span>
88
- </a>
89
- </li>
90
-
91
- </ul>
92
- </li>
93
-
94
- <?php if($this->main->getPRO()): ?>
95
-
96
- <li class="wns-be-group-menu-li">
97
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>" id="" class="wns-be-group-tab-link-a">
98
- <i class="mec-sl-credit-card"></i>
99
- <span class="wns-be-group-menu-title"><?php echo __('Booking', 'modern-events-calendar-lite'); ?></span>
100
- </a>
101
- <ul id="" class="submneu-hover">
102
- <li class="submenu-item">
103
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>#booking_option"><?php _e('Booking', 'modern-events-calendar-lite'); ?></a>
104
- <?php if(isset($this->settings['booking_status']) and $this->settings['booking_status']): ?>
105
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>#coupon_option"><?php _e('Coupons', 'modern-events-calendar-lite'); ?></a>
106
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>#taxes_option"><?php _e('Taxes / Fees', 'modern-events-calendar-lite'); ?></a>
107
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>#ticket_variations_option"><?php _e('Ticket Variations & Options', 'modern-events-calendar-lite'); ?></a>
108
- <?php endif; ?>
109
- </li>
110
- </ul>
111
- </li>
112
-
113
- <?php endif; ?>
114
-
115
- <li class="wns-be-group-menu-li">
116
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>" id="" class="wns-be-group-tab-link-a">
117
- <i class="mec-sl-grid"></i>
118
- <span class="wns-be-group-menu-title"><?php echo __('Modules', 'modern-events-calendar-lite'); ?></span>
119
- </a>
120
- <ul id="" class="submneu-hover">
121
- <li class="submenu-item">
122
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#speakers_option"><?php _e('Speakers', 'modern-events-calendar-lite'); ?></a>
123
- <?php if($this->main->getPRO()): ?>
124
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#googlemap_option"><?php _e('Google Maps Options', 'modern-events-calendar-lite'); ?></a>
125
- <?php endif; ?>
126
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#export_module_option"><?php _e('Export Options', 'modern-events-calendar-lite'); ?></a>
127
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#time_module_option"><?php _e('Local Time', 'modern-events-calendar-lite'); ?></a>
128
- <?php if($this->main->getPRO()): ?>
129
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#qrcode_module_option"><?php _e('QR Code', 'modern-events-calendar-lite'); ?></a>
130
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#weather_module_option"><?php _e('Weather', 'modern-events-calendar-lite'); ?></a>
131
- <?php endif; ?>
132
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#social_options"><?php _e('Social Networks', 'modern-events-calendar-lite'); ?></a>
133
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#next_event_option"><?php _e('Next Event', 'modern-events-calendar-lite'); ?></a>
134
- <?php if($this->main->getPRO()): ?>
135
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#buddy_option"><?php _e('BuddyPress Integration', 'modern-events-calendar-lite'); ?></a>
136
- <?php endif; ?>
137
- </li>
138
- </ul>
139
- </li>
140
-
141
- <?php if($this->main->getPRO() and isset($this->settings['booking_status']) and $this->settings['booking_status']): ?>
142
-
143
- <li class="wns-be-group-menu-li">
144
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-reg-form'); ?>" id="" class="wns-be-group-tab-link-a">
145
- <i class="mec-sl-layers"></i>
146
- <span class="wns-be-group-menu-title"><?php _e('Booking Form', 'modern-events-calendar-lite'); ?></span>
147
- </a>
148
- </li>
149
-
150
- <li class="wns-be-group-menu-li">
151
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-gateways'); ?>" id="" class="wns-be-group-tab-link-a">
152
- <i class="mec-sl-wallet"></i>
153
- <span class="wns-be-group-menu-title"><?php _e('Payment Gateways', 'modern-events-calendar-lite'); ?></span>
154
- </a>
155
- </li>
156
-
157
- <?php endif;?>
158
-
159
- <li class="wns-be-group-menu-li">
160
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>" id="" class="wns-be-group-tab-link-a">
161
- <i class="mec-sl-envelope"></i>
162
- <span class="wns-be-group-menu-title"><?php _e('Notifications', 'modern-events-calendar-lite'); ?></span>
163
- </a>
164
- <ul id="" class="submneu-hover">
165
- <li class="submenu-item">
166
- <?php if(isset($this->settings['booking_status']) and $this->settings['booking_status']): ?>
167
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#booking_notification"><?php _e('Booking', 'modern-events-calendar-lite'); ?></a>
168
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#booking_verification"><?php _e('Booking Verification', 'modern-events-calendar-lite'); ?></a>
169
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#booking_confirmation"><?php _e('Booking Confirmation', 'modern-events-calendar-lite'); ?></a>
170
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#cancellation_notification"><?php _e('Booking Cancellation', 'modern-events-calendar-lite'); ?></a>
171
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#admin_notification"><?php _e('Admin', 'modern-events-calendar-lite'); ?></a>
172
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#booking_reminder"><?php _e('Booking Reminder', 'modern-events-calendar-lite'); ?></a>
173
- <?php endif; ?>
174
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#new_event"><?php _e('New Event', 'modern-events-calendar-lite'); ?></a>
175
- </li>
176
- </ul>
177
- </li>
178
-
179
- <li class="wns-be-group-menu-li">
180
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-styling'); ?>" id="" class="wns-be-group-tab-link-a">
181
- <i class="mec-sl-equalizer"></i>
182
- <span class="wns-be-group-menu-title"><?php _e('Styling Options', 'modern-events-calendar-lite'); ?></span>
183
- </a>
184
- </li>
185
-
186
- <li class="wns-be-group-menu-li">
187
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-customcss'); ?>" id="" class="wns-be-group-tab-link-a">
188
- <i class="mec-sl-wrench"></i>
189
- <span class="wns-be-group-menu-title"><?php _e('Custom CSS', 'modern-events-calendar-lite'); ?></span>
190
- </a>
191
- </li>
192
-
193
- <li class="wns-be-group-menu-li">
194
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-messages'); ?>" id="" class="wns-be-group-tab-link-a">
195
- <i class="mec-sl-bubble"></i>
196
- <span class="wns-be-group-menu-title"><?php _e('Messages', 'modern-events-calendar-lite'); ?></span>
197
- </a>
198
- </li>
199
-
200
- <li class="wns-be-group-menu-li">
201
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-ie'); ?>" id="" class="wns-be-group-tab-link-a">
202
- <i class="mec-sl-refresh"></i>
203
- <span class="wns-be-group-menu-title"><?php _e('Import / Export', 'modern-events-calendar-lite'); ?></span>
204
- </a>
205
- </li>
206
-
207
- </ul>
208
  </div>
209
 
210
  <div class="wns-be-main">
@@ -435,36 +246,11 @@ $pages = get_pages();
435
  <script type="text/javascript">
436
  jQuery(document).ready(function()
437
  {
438
- jQuery('.WnTabLinks').each(function()
439
- {
440
- var ContentId = jQuery(this).attr('data-id');
441
- jQuery(this).click(function()
442
- {
443
- jQuery('.pr-be-group-menu-li').removeClass('active');
444
- jQuery(this).parent().addClass('active');
445
- jQuery(".mec-options-fields").hide();
446
- jQuery(".mec-options-fields").removeClass('active');
447
- jQuery("#"+ContentId+"").show();
448
- jQuery("#"+ContentId+"").addClass('active');
449
- jQuery('html, body').animate({
450
- scrollTop: jQuery("#"+ContentId+"").offset().top - 140
451
- }, 300);
452
- });
453
- var hash = window.location.hash.replace('#', '');
454
- jQuery('[data-id="'+hash+'"]').trigger('click');
455
- });
456
-
457
  jQuery(".dpr-save-btn").on('click', function(event)
458
  {
459
  event.preventDefault();
460
  jQuery("#mec_single_form_button").trigger('click');
461
  });
462
-
463
- jQuery(".wns-be-sidebar .pr-be-group-menu-li").on('click', function(event)
464
- {
465
- jQuery(".wns-be-sidebar .pr-be-group-menu-li").removeClass('active');
466
- jQuery(this).addClass('active');
467
- });
468
  });
469
 
470
  jQuery("#mec_single_form").on('submit', function(event)
15
  </div>
16
 
17
  <div class="wns-be-sidebar">
18
+ <?php $this->main->get_sidebar_menu('single_event'); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </div>
20
 
21
  <div class="wns-be-main">
246
  <script type="text/javascript">
247
  jQuery(document).ready(function()
248
  {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
249
  jQuery(".dpr-save-btn").on('click', function(event)
250
  {
251
  event.preventDefault();
252
  jQuery("#mec_single_form_button").trigger('click');
253
  });
 
 
 
 
 
 
254
  });
255
 
256
  jQuery("#mec_single_form").on('submit', function(event)
app/features/mec/styles.php CHANGED
@@ -12,166 +12,7 @@ $styles = $this->main->get_styles();
12
  </div>
13
 
14
  <div class="wns-be-sidebar">
15
-
16
- <ul class="wns-be-group-menu">
17
-
18
- <li class="wns-be-group-menu-li has-sub">
19
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>" id="" class="wns-be-group-tab-link-a">
20
- <span class="extra-icon">
21
- <i class="sl-arrow-down"></i>
22
- </span>
23
- <i class="mec-sl-settings"></i>
24
- <span class="wns-be-group-menu-title"><?php _e('Settings', 'modern-events-calendar-lite'); ?></span>
25
- </a>
26
- <ul id="" class="submneu-hover">
27
- <li class="submenu-item">
28
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#general_option"><?php _e('General Options', 'modern-events-calendar-lite'); ?></a>
29
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#archive_options"><?php _e('Archive Pages', 'modern-events-calendar-lite'); ?></a>
30
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#slug_option"><?php _e('Slugs/Permalinks', 'modern-events-calendar-lite'); ?></a>
31
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#currency_option"><?php _e('Currency Options', 'modern-events-calendar-lite'); ?></a>
32
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#recaptcha_option"><?php _e('Google Recaptcha Options', 'modern-events-calendar-lite'); ?></a>
33
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#fes_option"><?php _e('Frontend Event Submission', 'modern-events-calendar-lite'); ?></a>
34
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#user_profile_options"><?php _e('User Profile', 'modern-events-calendar-lite'); ?></a>
35
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#search_bar_options"><?php _e('Search Bar', 'modern-events-calendar-lite'); ?></a>
36
- <?php if($this->main->getPRO()): ?>
37
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#mailchimp_option"><?php _e('Mailchimp Integration', 'modern-events-calendar-lite'); ?></a>
38
- <?php endif; ?>
39
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#uploadfield_option"><?php _e('Upload Field', 'modern-events-calendar-lite'); ?></a>
40
- </li>
41
- </ul>
42
- </li>
43
-
44
- <li class="wns-be-group-menu-li">
45
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>" id="" class="wns-be-group-tab-link-a">
46
- <i class="mec-sl-note"></i>
47
- <span class="wns-be-group-menu-title"><?php echo __('Single Event', 'modern-events-calendar-lite'); ?></span>
48
- </a>
49
- <ul id="" class="submneu-hover">
50
- <li class="submenu-item">
51
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#event_options"><?php _e('Single Event Page', 'modern-events-calendar-lite'); ?></a>
52
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#countdown_option"><?php _e('Countdown Options', 'modern-events-calendar-lite'); ?></a>
53
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#exceptional_option"><?php _e('Exceptional Days', 'modern-events-calendar-lite'); ?></a>
54
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_organizers"><?php _e('Additional Organizers', 'modern-events-calendar-lite'); ?></a>
55
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_locations"><?php _e('Additional Locations', 'modern-events-calendar-lite'); ?></a>
56
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#related_events"><?php _e('Related Events', 'modern-events-calendar-lite'); ?></a>
57
- </li>
58
- </ul>
59
- </li>
60
-
61
- <?php if($this->main->getPRO()): ?>
62
-
63
- <li class="wns-be-group-menu-li">
64
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>" id="" class="wns-be-group-tab-link-a">
65
- <i class="mec-sl-credit-card"></i>
66
- <span class="wns-be-group-menu-title"><?php echo __('Booking', 'modern-events-calendar-lite'); ?></span>
67
- </a>
68
- <ul id="" class="submneu-hover">
69
- <li class="submenu-item">
70
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>#booking_option"><?php _e('Booking', 'modern-events-calendar-lite'); ?></a>
71
- <?php if(isset($this->settings['booking_status']) and $this->settings['booking_status']): ?>
72
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>#coupon_option"><?php _e('Coupons', 'modern-events-calendar-lite'); ?></a>
73
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>#taxes_option"><?php _e('Taxes / Fees', 'modern-events-calendar-lite'); ?></a>
74
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>#ticket_variations_option"><?php _e('Ticket Variations & Options', 'modern-events-calendar-lite'); ?></a>
75
- <?php endif; ?>
76
- </li>
77
- </ul>
78
- </li>
79
-
80
- <?php endif; ?>
81
-
82
- <li class="wns-be-group-menu-li">
83
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>" id="" class="wns-be-group-tab-link-a">
84
- <i class="mec-sl-grid"></i>
85
- <span class="wns-be-group-menu-title"><?php echo __('Modules', 'modern-events-calendar-lite'); ?></span>
86
- </a>
87
- <ul id="" class="submneu-hover">
88
- <li class="submenu-item">
89
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#speakers_option"><?php _e('Speakers', 'modern-events-calendar-lite'); ?></a>
90
- <?php if($this->main->getPRO()): ?>
91
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#googlemap_option"><?php _e('Google Maps Options', 'modern-events-calendar-lite'); ?></a>
92
- <?php endif; ?>
93
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#export_module_option"><?php _e('Export Options', 'modern-events-calendar-lite'); ?></a>
94
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#time_module_option"><?php _e('Local Time', 'modern-events-calendar-lite'); ?></a>
95
- <?php if($this->main->getPRO()): ?>
96
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#qrcode_module_option"><?php _e('QR Code', 'modern-events-calendar-lite'); ?></a>
97
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#weather_module_option"><?php _e('Weather', 'modern-events-calendar-lite'); ?></a>
98
- <?php endif; ?>
99
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#social_options"><?php _e('Social Networks', 'modern-events-calendar-lite'); ?></a>
100
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#next_event_option"><?php _e('Next Event', 'modern-events-calendar-lite'); ?></a>
101
- <?php if($this->main->getPRO()): ?>
102
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#buddy_option"><?php _e('BuddyPress Integration', 'modern-events-calendar-lite'); ?></a>
103
- <?php endif; ?>
104
- </li>
105
- </ul>
106
- </li>
107
-
108
- <?php if($this->main->getPRO() and isset($this->settings['booking_status']) and $this->settings['booking_status']): ?>
109
-
110
- <li class="wns-be-group-menu-li">
111
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-reg-form'); ?>" id="" class="wns-be-group-tab-link-a">
112
- <i class="mec-sl-layers"></i>
113
- <span class="wns-be-group-menu-title"><?php _e('Booking Form', 'modern-events-calendar-lite'); ?></span>
114
- </a>
115
- </li>
116
-
117
- <li class="wns-be-group-menu-li">
118
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-gateways'); ?>" id="" class="wns-be-group-tab-link-a">
119
- <i class="mec-sl-wallet"></i>
120
- <span class="wns-be-group-menu-title"><?php _e('Payment Gateways', 'modern-events-calendar-lite'); ?></span>
121
- </a>
122
- </li>
123
-
124
- <?php endif;?>
125
-
126
- <li class="wns-be-group-menu-li">
127
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>" id="" class="wns-be-group-tab-link-a">
128
- <i class="mec-sl-envelope"></i>
129
- <span class="wns-be-group-menu-title"><?php _e('Notifications', 'modern-events-calendar-lite'); ?></span>
130
- </a>
131
- <ul id="" class="submneu-hover">
132
- <li class="submenu-item">
133
- <?php if(isset($this->settings['booking_status']) and $this->settings['booking_status']): ?>
134
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#booking_notification"><?php _e('Booking', 'modern-events-calendar-lite'); ?></a>
135
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#booking_verification"><?php _e('Booking Verification', 'modern-events-calendar-lite'); ?></a>
136
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#booking_confirmation"><?php _e('Booking Confirmation', 'modern-events-calendar-lite'); ?></a>
137
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#cancellation_notification"><?php _e('Booking Cancellation', 'modern-events-calendar-lite'); ?></a>
138
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#admin_notification"><?php _e('Admin', 'modern-events-calendar-lite'); ?></a>
139
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#booking_reminder"><?php _e('Booking Reminder', 'modern-events-calendar-lite'); ?></a>
140
- <?php endif; ?>
141
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#new_event"><?php _e('New Event', 'modern-events-calendar-lite'); ?></a>
142
- </li>
143
- </ul>
144
- </li>
145
-
146
- <li class="wns-be-group-menu-li">
147
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-styling'); ?>" id="" class="wns-be-group-tab-link-a">
148
- <i class="mec-sl-equalizer"></i>
149
- <span class="wns-be-group-menu-title"><?php _e('Styling Options', 'modern-events-calendar-lite'); ?></span>
150
- </a>
151
- </li>
152
-
153
- <li class="wns-be-group-menu-li active">
154
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-customcss'); ?>" id="" class="wns-be-group-tab-link-a">
155
- <i class="mec-sl-wrench"></i>
156
- <span class="wns-be-group-menu-title"><?php _e('Custom CSS', 'modern-events-calendar-lite'); ?></span>
157
- </a>
158
- </li>
159
-
160
- <li class="wns-be-group-menu-li">
161
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-messages'); ?>" id="" class="wns-be-group-tab-link-a">
162
- <i class="mec-sl-bubble"></i>
163
- <span class="wns-be-group-menu-title"><?php _e('Messages', 'modern-events-calendar-lite'); ?></span>
164
- </a>
165
- </li>
166
-
167
- <li class="wns-be-group-menu-li">
168
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-ie'); ?>" id="" class="wns-be-group-tab-link-a">
169
- <i class="mec-sl-refresh"></i>
170
- <span class="wns-be-group-menu-title"><?php _e('Import / Export', 'modern-events-calendar-lite'); ?></span>
171
- </a>
172
- </li>
173
-
174
- </ul>
175
  </div>
176
 
177
  <div class="wns-be-main">
12
  </div>
13
 
14
  <div class="wns-be-sidebar">
15
+ <?php $this->main->get_sidebar_menu('customcss'); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  </div>
17
 
18
  <div class="wns-be-main">
app/features/mec/styling.php CHANGED
@@ -34,166 +34,7 @@ if(is_array($fonts))
34
  </div>
35
 
36
  <div class="wns-be-sidebar">
37
-
38
- <ul class="wns-be-group-menu">
39
-
40
- <li class="wns-be-group-menu-li has-sub">
41
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>" id="" class="wns-be-group-tab-link-a">
42
- <span class="extra-icon">
43
- <i class="sl-arrow-down"></i>
44
- </span>
45
- <i class="mec-sl-settings"></i>
46
- <span class="wns-be-group-menu-title"><?php _e('Settings', 'modern-events-calendar-lite'); ?></span>
47
- </a>
48
- <ul id="" class="submneu-hover">
49
- <li class="submenu-item">
50
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#general_option"><?php _e('General Options', 'modern-events-calendar-lite'); ?></a>
51
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#archive_options"><?php _e('Archive Pages', 'modern-events-calendar-lite'); ?></a>
52
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#slug_option"><?php _e('Slugs/Permalinks', 'modern-events-calendar-lite'); ?></a>
53
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#currency_option"><?php _e('Currency Options', 'modern-events-calendar-lite'); ?></a>
54
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#recaptcha_option"><?php _e('Google Recaptcha Options', 'modern-events-calendar-lite'); ?></a>
55
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#fes_option"><?php _e('Frontend Event Submission', 'modern-events-calendar-lite'); ?></a>
56
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#user_profile_options"><?php _e('User Profile', 'modern-events-calendar-lite'); ?></a>
57
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#search_bar_options"><?php _e('Search Bar', 'modern-events-calendar-lite'); ?></a>
58
- <?php if($this->main->getPRO()): ?>
59
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#mailchimp_option"><?php _e('Mailchimp Integration', 'modern-events-calendar-lite'); ?></a>
60
- <?php endif; ?>
61
- <a href="<?php echo $this->main->remove_qs_var('tab'); ?>#uploadfield_option"><?php _e('Upload Field', 'modern-events-calendar-lite'); ?></a>
62
- </li>
63
- </ul>
64
- </li>
65
-
66
- <li class="wns-be-group-menu-li">
67
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>" id="" class="wns-be-group-tab-link-a">
68
- <i class="mec-sl-note"></i>
69
- <span class="wns-be-group-menu-title"><?php echo __('Single Event', 'modern-events-calendar-lite'); ?></span>
70
- </a>
71
- <ul id="" class="submneu-hover">
72
- <li class="submenu-item">
73
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#event_options"><?php _e('Single Event Page', 'modern-events-calendar-lite'); ?></a>
74
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#countdown_option"><?php _e('Countdown Options', 'modern-events-calendar-lite'); ?></a>
75
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#exceptional_option"><?php _e('Exceptional Days', 'modern-events-calendar-lite'); ?></a>
76
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_organizers"><?php _e('Additional Organizers', 'modern-events-calendar-lite'); ?></a>
77
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#additional_locations"><?php _e('Additional Locations', 'modern-events-calendar-lite'); ?></a>
78
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-single'); ?>#related_events"><?php _e('Related Events', 'modern-events-calendar-lite'); ?></a>
79
- </li>
80
- </ul>
81
- </li>
82
-
83
- <?php if($this->main->getPRO()): ?>
84
-
85
- <li class="wns-be-group-menu-li">
86
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>" id="" class="wns-be-group-tab-link-a">
87
- <i class="mec-sl-credit-card"></i>
88
- <span class="wns-be-group-menu-title"><?php echo __('Booking', 'modern-events-calendar-lite'); ?></span>
89
- </a>
90
- <ul id="" class="submneu-hover">
91
- <li class="submenu-item">
92
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>#booking_option"><?php _e('Booking', 'modern-events-calendar-lite'); ?></a>
93
- <?php if(isset($this->settings['booking_status']) and $this->settings['booking_status']): ?>
94
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>#coupon_option"><?php _e('Coupons', 'modern-events-calendar-lite'); ?></a>
95
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>#taxes_option"><?php _e('Taxes / Fees', 'modern-events-calendar-lite'); ?></a>
96
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-booking'); ?>#ticket_variations_option"><?php _e('Ticket Variations & Options', 'modern-events-calendar-lite'); ?></a>
97
- <?php endif; ?>
98
- </li>
99
- </ul>
100
- </li>
101
-
102
- <?php endif;?>
103
-
104
- <li class="wns-be-group-menu-li">
105
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>" id="" class="wns-be-group-tab-link-a">
106
- <i class="mec-sl-grid"></i>
107
- <span class="wns-be-group-menu-title"><?php echo __('Modules', 'modern-events-calendar-lite'); ?></span>
108
- </a>
109
- <ul id="" class="submneu-hover">
110
- <li class="submenu-item">
111
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#speakers_option"><?php _e('Speakers', 'modern-events-calendar-lite'); ?></a>
112
- <?php if($this->main->getPRO()): ?>
113
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#googlemap_option"><?php _e('Google Maps Options', 'modern-events-calendar-lite'); ?></a>
114
- <?php endif; ?>
115
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#export_module_option"><?php _e('Export Options', 'modern-events-calendar-lite'); ?></a>
116
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#time_module_option"><?php _e('Local Time', 'modern-events-calendar-lite'); ?></a>
117
- <?php if($this->main->getPRO()): ?>
118
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#qrcode_module_option"><?php _e('QR Code', 'modern-events-calendar-lite'); ?></a>
119
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#weather_module_option"><?php _e('Weather', 'modern-events-calendar-lite'); ?></a>
120
- <?php endif; ?>
121
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#social_options"><?php _e('Social Networks', 'modern-events-calendar-lite'); ?></a>
122
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#next_event_option"><?php _e('Next Event', 'modern-events-calendar-lite'); ?></a>
123
- <?php if($this->main->getPRO()): ?>
124
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-modules'); ?>#buddy_option"><?php _e('BuddyPress Integration', 'modern-events-calendar-lite'); ?></a>
125
- <?php endif; ?>
126
- </li>
127
- </ul>
128
- </li>
129
-
130
- <?php if($this->main->getPRO() and isset($this->settings['booking_status']) and $this->settings['booking_status']): ?>
131
-
132
- <li class="wns-be-group-menu-li">
133
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-reg-form'); ?>" id="" class="wns-be-group-tab-link-a">
134
- <i class="mec-sl-layers"></i>
135
- <span class="wns-be-group-menu-title"><?php _e('Booking Form', 'modern-events-calendar-lite'); ?></span>
136
- </a>
137
- </li>
138
-
139
- <li class="wns-be-group-menu-li">
140
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-gateways'); ?>" id="" class="wns-be-group-tab-link-a">
141
- <i class="mec-sl-wallet"></i>
142
- <span class="wns-be-group-menu-title"><?php _e('Payment Gateways', 'modern-events-calendar-lite'); ?></span>
143
- </a>
144
- </li>
145
-
146
- <?php endif;?>
147
-
148
- <li class="wns-be-group-menu-li">
149
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>" id="" class="wns-be-group-tab-link-a">
150
- <i class="mec-sl-envelope"></i>
151
- <span class="wns-be-group-menu-title"><?php _e('Notifications', 'modern-events-calendar-lite'); ?></span>
152
- </a>
153
- <ul id="" class="submneu-hover">
154
- <li class="submenu-item">
155
- <?php if(isset($this->settings['booking_status']) and $this->settings['booking_status']): ?>
156
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#booking_notification"><?php _e('Booking', 'modern-events-calendar-lite'); ?></a>
157
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#booking_verification"><?php _e('Booking Verification', 'modern-events-calendar-lite'); ?></a>
158
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#booking_confirmation"><?php _e('Booking Confirmation', 'modern-events-calendar-lite'); ?></a>
159
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#cancellation_notification"><?php _e('Booking Cancellation', 'modern-events-calendar-lite'); ?></a>
160
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#admin_notification"><?php _e('Admin', 'modern-events-calendar-lite'); ?></a>
161
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#booking_reminder"><?php _e('Booking Reminder', 'modern-events-calendar-lite'); ?></a>
162
- <?php endif; ?>
163
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>#new_event"><?php _e('New Event', 'modern-events-calendar-lite'); ?></a>
164
- </li>
165
- </ul>
166
- </li>
167
-
168
- <li class="wns-be-group-menu-li active">
169
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-styling'); ?>" id="" class="wns-be-group-tab-link-a">
170
- <i class="mec-sl-equalizer"></i>
171
- <span class="wns-be-group-menu-title"><?php _e('Styling Options', 'modern-events-calendar-lite'); ?></span>
172
- </a>
173
- </li>
174
-
175
- <li class="wns-be-group-menu-li">
176
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-customcss'); ?>" id="" class="wns-be-group-tab-link-a">
177
- <i class="mec-sl-wrench"></i>
178
- <span class="wns-be-group-menu-title"><?php _e('Custom CSS', 'modern-events-calendar-lite'); ?></span>
179
- </a>
180
- </li>
181
-
182
- <li class="wns-be-group-menu-li">
183
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-messages'); ?>" id="" class="wns-be-group-tab-link-a">
184
- <i class="mec-sl-bubble"></i>
185
- <span class="wns-be-group-menu-title"><?php _e('Messages', 'modern-events-calendar-lite'); ?></span>
186
- </a>
187
- </li>
188
-
189
- <li class="wns-be-group-menu-li">
190
- <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-ie'); ?>" id="" class="wns-be-group-tab-link-a">
191
- <i class="mec-sl-refresh"></i>
192
- <span class="wns-be-group-menu-title"><?php _e('Import / Export', 'modern-events-calendar-lite'); ?></span>
193
- </a>
194
- </li>
195
-
196
- </ul>
197
  </div>
198
 
199
  <div class="wns-be-main">
34
  </div>
35
 
36
  <div class="wns-be-sidebar">
37
+ <?php $this->main->get_sidebar_menu('styling'); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
38
  </div>
39
 
40
  <div class="wns-be-main">
app/features/mec/support.php CHANGED
@@ -37,7 +37,7 @@ defined('MECEXEC') or die();
37
  </a>
38
  </li>
39
 
40
- <?php endif;?>
41
 
42
  <li class="wns-be-group-menu-li">
43
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>" id="" class="wns-be-group-tab-link-a">
37
  </a>
38
  </li>
39
 
40
+ <?php endif; ?>
41
 
42
  <li class="wns-be-group-menu-li">
43
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>" id="" class="wns-be-group-tab-link-a">
app/features/search.php CHANGED
@@ -252,7 +252,7 @@ class MEC_feature_search extends MEC_base
252
  }
253
 
254
  $query->set('tax_query', $mec_quesries);
255
- $query->set('post_type', array('mec-events'));
256
 
257
  return $query;
258
  }
252
  }
253
 
254
  $query->set('tax_query', $mec_quesries);
255
+ $query->set('post_type', array('post','mec-events'));
256
 
257
  return $query;
258
  }
app/features/search_bar/search_bar.php CHANGED
@@ -4,7 +4,13 @@ defined('MECEXEC') or die();
4
 
5
  $settings = $this->main->get_settings();
6
 
7
- $output = '<div class="mec-wrap mec-search-bar-wrap"><form class="mec-search-form mec-totalcal-box" role="search" method="get" id="searchform" action="'.get_bloginfo('url').'">';
 
 
 
 
 
 
8
  if($settings['search_bar_category'] == '1' || $settings['search_bar_location'] == '1' || $settings['search_bar_organizer'] == '1' || $settings['search_bar_speaker'] == '1' || $settings['search_bar_tag'] == '1' || $settings['search_bar_label'] == '1')
9
  {
10
  $output .= '<div class="mec-dropdown-wrap">';
4
 
5
  $settings = $this->main->get_settings();
6
 
7
+ $modern_type = '';
8
+ if ( isset( $settings['search_bar_modern_type'] ) && $settings['search_bar_modern_type'] == '1' )
9
+ {
10
+ $modern_type = 'mec-modern-search-bar ';
11
+ }
12
+
13
+ $output = '<div class="'.$modern_type.'mec-wrap mec-search-bar-wrap"><form class="mec-search-form mec-totalcal-box" role="search" method="get" id="searchform" action="'.get_bloginfo('url').'">';
14
  if($settings['search_bar_category'] == '1' || $settings['search_bar_location'] == '1' || $settings['search_bar_organizer'] == '1' || $settings['search_bar_speaker'] == '1' || $settings['search_bar_tag'] == '1' || $settings['search_bar_label'] == '1')
15
  {
16
  $output .= '<div class="mec-dropdown-wrap">';
app/features/update.php CHANGED
@@ -58,6 +58,7 @@ class MEC_feature_update extends MEC_base
58
  if(version_compare($version, '3.5.0', '<')) $this->version350();
59
  if(version_compare($version, '4.0.0', '<')) $this->version400();
60
  if(version_compare($version, '4.3.0', '<')) $this->version430();
 
61
 
62
  // Update to latest version to prevent running the code twice
63
  update_option('mec_version', $this->main->get_version());
@@ -260,4 +261,9 @@ class MEC_feature_update extends MEC_base
260
  update_option('mec_options', $current);
261
  }
262
  }
 
 
 
 
 
263
  }
58
  if(version_compare($version, '3.5.0', '<')) $this->version350();
59
  if(version_compare($version, '4.0.0', '<')) $this->version400();
60
  if(version_compare($version, '4.3.0', '<')) $this->version430();
61
+ if(version_compare($version, '4.4.6', '<')) $this->version446();
62
 
63
  // Update to latest version to prevent running the code twice
64
  update_option('mec_version', $this->main->get_version());
261
  update_option('mec_options', $current);
262
  }
263
  }
264
+
265
+ public function version446()
266
+ {
267
+ if(!wp_next_scheduled('mec_syncScheduler')) wp_schedule_event(time(), 'daily', 'mec_syncScheduler');
268
+ }
269
  }
app/libraries/base.php CHANGED
@@ -185,4 +185,15 @@ abstract class MEC_base extends MEC
185
  {
186
  return MEC::getInstance('app.libraries.schedule');
187
  }
 
 
 
 
 
 
 
 
 
 
 
188
  }
185
  {
186
  return MEC::getInstance('app.libraries.schedule');
187
  }
188
+
189
+ /**
190
+ * Returns PRO instance
191
+ * @final
192
+ * @author Webnus <info@webnus.biz>
193
+ * @return \MEC_syncSchedule instance
194
+ */
195
+ final public function getSyncSchedule()
196
+ {
197
+ return MEC::getInstance('app.libraries.syncSchedule');
198
+ }
199
  }
app/libraries/factory.php CHANGED
@@ -626,6 +626,7 @@ class MEC_factory extends MEC_base
626
 
627
  // Clear Scheduler Cronjob
628
  wp_clear_scheduled_hook('mec_scheduler');
 
629
  }
630
 
631
  /**
@@ -862,6 +863,7 @@ class MEC_factory extends MEC_base
862
 
863
  // Scheduler Cron job
864
  if(!wp_next_scheduled('mec_scheduler')) wp_schedule_event(time(), 'hourly', 'mec_scheduler');
 
865
 
866
  // Mark this blog as installed
867
  update_option('mec_installed', 1);
626
 
627
  // Clear Scheduler Cronjob
628
  wp_clear_scheduled_hook('mec_scheduler');
629
+ wp_clear_scheduled_hook('mec_syncScheduler');
630
  }
631
 
632
  /**
863
 
864
  // Scheduler Cron job
865
  if(!wp_next_scheduled('mec_scheduler')) wp_schedule_event(time(), 'hourly', 'mec_scheduler');
866
+ if(!wp_next_scheduled('mec_syncScheduler')) wp_schedule_event(time(), 'daily', 'mec_syncScheduler');
867
 
868
  // Mark this blog as installed
869
  update_option('mec_installed', 1);
app/libraries/main.php CHANGED
@@ -515,7 +515,345 @@ class MEC_main extends MEC_base
515
  {
516
  return get_option('mec_options', array());
517
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
518
 
 
 
519
  /**
520
  * Returns MEC settings
521
  * @author Webnus <info@webnus.biz>
@@ -4324,15 +4662,20 @@ class MEC_main extends MEC_base
4324
  */
4325
  public function load_map_assets()
4326
  {
4327
- // MEC Settings
4328
- $settings = $this->get_settings();
4329
-
4330
- // Include Google Maps Javascript API
4331
- $gm_include = apply_filters('mec_gm_include', true);
4332
- if ( $this->getPRO() ) {
 
4333
  if($gm_include) wp_enqueue_script('googlemap', '//maps.googleapis.com/maps/api/js?libraries=places'.((isset($settings['google_maps_api_key']) and trim($settings['google_maps_api_key']) != '') ? '&key='.$settings['google_maps_api_key'] : ''));
 
4334
  // Google Maps Rich Marker
4335
  wp_enqueue_script('mec-richmarker-script', $this->asset('packages/richmarker/richmarker.min.js'));
 
 
 
4336
  }
4337
  }
4338
 
515
  {
516
  return get_option('mec_options', array());
517
  }
518
+
519
+ /**
520
+ * Returns MEC settings menus
521
+ * @author Webnus <info@webnus.biz>
522
+ * @return array
523
+ */
524
+ public function get_sidebar_menu($active_menu = 'settings')
525
+ {
526
+ $options = $this->get_settings();
527
+ $settings = array(
528
+ __('General Options', 'modern-events-calendar-lite') => 'general_option',
529
+ __('Archive Pages', 'modern-events-calendar-lite') => 'archive_options',
530
+ __('Slugs/Permalinks', 'modern-events-calendar-lite') => 'slug_option',
531
+ __('Currency Options', 'modern-events-calendar-lite') => 'currency_option',
532
+ __('Google Recaptcha Options', 'modern-events-calendar-lite') => 'recaptcha_option',
533
+ __('Frontend Event Submission', 'modern-events-calendar-lite') => 'fes_option',
534
+ __('User Profile', 'modern-events-calendar-lite') => 'user_profile_options',
535
+ __('Search Bar', 'modern-events-calendar-lite') => 'search_bar_options',
536
+ __('Mailchimp Integration', 'modern-events-calendar-lite') => 'mailchimp_option',
537
+ __('Upload Field', 'modern-events-calendar-lite') => 'uploadfield_option',
538
+ );
539
+
540
+ $single_event = array(
541
+ __('Single Event Page', 'modern-events-calendar-lite') => 'event_options',
542
+ __('Countdown Options', 'modern-events-calendar-lite') => 'countdown_option',
543
+ __('Exceptional Days', 'modern-events-calendar-lite') => 'exceptional_option',
544
+ __('Additional Organizers', 'modern-events-calendar-lite') => 'additional_organizers',
545
+ __('Additional Locations', 'modern-events-calendar-lite') => 'additional_locations',
546
+ __('Related Events', 'modern-events-calendar-lite') => 'related_events',
547
+ );
548
+
549
+ $booking = array(
550
+ __('Booking', 'modern-events-calendar-lite') => 'booking_option',
551
+ __('Coupons', 'modern-events-calendar-lite') => 'coupon_option',
552
+ __('Taxes / Fees', 'modern-events-calendar-lite') => 'taxes_option',
553
+ __('Ticket Variations & Options', 'modern-events-calendar-lite') => 'ticket_variations_option',
554
+ );
555
+
556
+ $modules = array(
557
+ __('Speakers', 'modern-events-calendar-lite') => 'speakers_option',
558
+ __('Google Maps Options', 'modern-events-calendar-lite') => 'googlemap_option',
559
+ __('Export Options', 'modern-events-calendar-lite') => 'export_module_option',
560
+ __('Local Time', 'modern-events-calendar-lite') => 'time_module_option',
561
+ __('QR Code', 'modern-events-calendar-lite') => 'qrcode_module_option',
562
+ __('Weather', 'modern-events-calendar-lite') => 'weather_module_option',
563
+ __('Social Networks', 'modern-events-calendar-lite') => 'social_options',
564
+ __('Next Event', 'modern-events-calendar-lite') => 'next_event_option',
565
+ __('BuddyPress Integration', 'modern-events-calendar-lite') => 'buddy_option',
566
+ );
567
+
568
+ $notifications = array(
569
+ __('Booking', 'modern-events-calendar-lite') => 'booking_notification',
570
+ __('Booking Verification', 'modern-events-calendar-lite') => 'booking_verification',
571
+ __('Booking Confirmation', 'modern-events-calendar-lite') => 'booking_confirmation',
572
+ __('Booking Cancellation', 'modern-events-calendar-lite') => 'cancellation_notification',
573
+ __('Booking Reminder', 'modern-events-calendar-lite') => 'booking_reminder',
574
+ __('Admin', 'modern-events-calendar-lite') => 'admin_notification',
575
+ __('New Event', 'modern-events-calendar-lite') => 'new_event',
576
+ );
577
+
578
+ ?>
579
+ <ul class="wns-be-group-menu">
580
+
581
+ <!-- Settings -->
582
+ <li class="wns-be-group-menu-li mec-settings-menu <?php echo $active_menu == 'settings' ? 'active' : ''; ?>">
583
+ <a href="<?php echo $this->remove_qs_var('tab'); ?>" id="" class="wns-be-group-tab-link-a">
584
+ <i class="mec-sl-settings"></i>
585
+ <span class="wns-be-group-menu-title"><?php _e('Settings', 'modern-events-calendar-lite'); ?></span>
586
+ </a>
587
+ <ul class="<?php echo $active_menu == 'settings' ? 'subsection' : 'mec-settings-submenu'; ?>">
588
+ <?php foreach ($settings as $settings_name => $settings_link) : ?>
589
+ <?php
590
+ if ( $settings_link == 'mailchimp_option') :
591
+ if ( $this->getPRO() ) : ?>
592
+ <li>
593
+ <a
594
+ <?php if ( $active_menu == 'settings' ) : ?>
595
+ data-id="<?php echo $settings_link; ?>" class="wns-be-group-tab-link-a WnTabLinks"
596
+ <?php else: ?>
597
+ href="<?php echo $this->remove_qs_var('tab') . '#' . $settings_link; ?>"
598
+ <?php endif; ?>
599
+ >
600
+ <span class="pr-be-group-menu-title"><?php echo $settings_name; ?></span>
601
+ </a>
602
+ </li>
603
+ <?php
604
+ endif;
605
+ else : ?>
606
+ <li>
607
+ <a
608
+ <?php if ( $active_menu == 'settings' ) : ?>
609
+ data-id="<?php echo $settings_link; ?>" class="wns-be-group-tab-link-a WnTabLinks"
610
+ <?php else: ?>
611
+ href="<?php echo $this->remove_qs_var('tab') . '#' . $settings_link; ?>"
612
+ <?php endif; ?>
613
+ >
614
+ <span class="pr-be-group-menu-title"><?php echo $settings_name; ?></span>
615
+ </a>
616
+ </li>
617
+ <?php endif; ?>
618
+ <?php endforeach; ?>
619
+ </ul>
620
+ </li>
621
+
622
+ <!-- Single Event -->
623
+ <li class="wns-be-group-menu-li mec-settings-menu <?php echo $active_menu == 'single_event' ? 'active' : ''; ?>">
624
+ <a href="<?php echo $this->add_qs_var('tab', 'MEC-single'); ?>" id="" class="wns-be-group-tab-link-a">
625
+ <i class="mec-sl-note"></i>
626
+ <span class="wns-be-group-menu-title"><?php _e('Single Event', 'modern-events-calendar-lite'); ?></span>
627
+ </a>
628
+ <ul class="<?php echo $active_menu == 'single_event' ? 'subsection' : 'mec-settings-submenu'; ?>">
629
+ <?php foreach ($single_event as $single_event_name => $single_event_link) : ?>
630
+ <li>
631
+ <a
632
+ <?php if ( $active_menu == 'single_event' ) : ?>
633
+ data-id="<?php echo $single_event_link; ?>" class="wns-be-group-tab-link-a WnTabLinks"
634
+ <?php else: ?>
635
+ href="<?php echo $this->add_qs_var('tab', 'MEC-single') . '#' . $single_event_link; ?>"
636
+ <?php endif; ?>
637
+ >
638
+ <span class="pr-be-group-menu-title"><?php echo $single_event_name; ?></span>
639
+ </a>
640
+ </li>
641
+ <?php endforeach; ?>
642
+ </ul>
643
+ </li>
644
+
645
+ <!-- Booking -->
646
+ <?php if($this->getPRO()): ?>
647
+ <li class="wns-be-group-menu-li mec-settings-menu <?php echo $active_menu == 'booking' ? 'active' : ''; ?>">
648
+ <a href="<?php echo $this->add_qs_var('tab', 'MEC-booking'); ?>" id="" class="wns-be-group-tab-link-a">
649
+ <i class="mec-sl-credit-card"></i>
650
+ <span class="wns-be-group-menu-title"><?php _e('Booking', 'modern-events-calendar-lite'); ?></span>
651
+ </a>
652
+ <ul class="<?php echo $active_menu == 'booking' ? 'subsection' : 'mec-settings-submenu'; ?>">
653
+
654
+ <?php foreach ($booking as $booking_name => $booking_link) : ?>
655
+ <?php if ( $booking_link == 'coupon_option' || $booking_link == 'taxes_option' || $booking_link == 'ticket_variations_option' ): ?>
656
+ <?php if ( isset($options['booking_status']) and $options['booking_status'] ) : ?>
657
+ <li>
658
+ <a
659
+ <?php if ( $active_menu == 'booking' ) : ?>
660
+ data-id="<?php echo $booking_link; ?>" class="wns-be-group-tab-link-a WnTabLinks"
661
+ <?php else: ?>
662
+ href="<?php echo $this->add_qs_var('tab', 'MEC-booking') . '#' . $booking_link; ?>"
663
+ <?php endif; ?>
664
+ >
665
+ <span class="pr-be-group-menu-title"><?php echo $booking_name; ?></span>
666
+ </a>
667
+ </li>
668
+ <?php endif; ?>
669
+ <?php else: ?>
670
+ <li>
671
+ <a
672
+ <?php if ( $active_menu == 'booking' ) : ?>
673
+ data-id="<?php echo $booking_link; ?>" class="wns-be-group-tab-link-a WnTabLinks"
674
+ <?php else: ?>
675
+ href="<?php echo $this->add_qs_var('tab', 'MEC-booking') . '#' . $booking_link; ?>"
676
+ <?php endif; ?>
677
+ >
678
+ <span class="pr-be-group-menu-title"><?php echo $booking_name; ?></span>
679
+ </a>
680
+ </li>
681
+ <?php endif; ?>
682
+
683
+ <?php endforeach; ?>
684
+ </ul>
685
+ </li>
686
+ <?php endif; ?>
687
+
688
+ <!-- Modules -->
689
+ <li class="wns-be-group-menu-li mec-settings-menu <?php echo $active_menu == 'modules' ? 'active' : ''; ?>">
690
+ <a href="<?php echo $this->add_qs_var('tab', 'MEC-modules'); ?>" id="" class="wns-be-group-tab-link-a">
691
+ <i class="mec-sl-grid"></i>
692
+ <span class="wns-be-group-menu-title"><?php _e('Modules', 'modern-events-calendar-lite'); ?></span>
693
+ </a>
694
+ <ul class="<?php echo $active_menu == 'modules' ? 'subsection' : 'mec-settings-submenu'; ?>">
695
+
696
+ <?php foreach ($modules as $modules_name => $modules_link) : ?>
697
+ <?php if ( $modules_link == 'googlemap_option' || $modules_link == 'qrcode_module_option' || $modules_link == 'weather_module_option' || $modules_link == 'buddy_option' ): ?>
698
+ <?php if($this->getPRO()): ?>
699
+ <li>
700
+ <a
701
+ <?php if ( $active_menu == 'modules' ) : ?>
702
+ data-id="<?php echo $modules_link; ?>" class="wns-be-group-tab-link-a WnTabLinks"
703
+ <?php else: ?>
704
+ href="<?php echo $this->add_qs_var('tab', 'MEC-modules') . '#' . $modules_link; ?>"
705
+ <?php endif; ?>
706
+ >
707
+ <span class="pr-be-group-menu-title"><?php echo $modules_name; ?></span>
708
+ </a>
709
+ </li>
710
+ <?php endif; ?>
711
+ <?php else: ?>
712
+ <li>
713
+ <a
714
+ <?php if ( $active_menu == 'modules' ) : ?>
715
+ data-id="<?php echo $modules_link; ?>" class="wns-be-group-tab-link-a WnTabLinks"
716
+ <?php else: ?>
717
+ href="<?php echo $this->add_qs_var('tab', 'MEC-modules') . '#' . $modules_link; ?>"
718
+ <?php endif; ?>
719
+ >
720
+ <span class="pr-be-group-menu-title"><?php echo $modules_name; ?></span>
721
+ </a>
722
+ </li>
723
+ <?php endif; ?>
724
+
725
+ <?php endforeach; ?>
726
+ </ul>
727
+ </li>
728
+
729
+
730
+ <?php if($this->getPRO() and isset($options['booking_status']) and $options['booking_status']): ?>
731
+ <!-- Booking form -->
732
+ <li class="wns-be-group-menu-li mec-settings-menu <?php echo $active_menu == 'reg_form' ? 'active' : ''; ?>">
733
+ <a href="<?php echo $this->add_qs_var('tab', 'MEC-reg-form'); ?>" id="" class="wns-be-group-tab-link-a">
734
+ <i class="mec-sl-layers"></i>
735
+ <span class="wns-be-group-menu-title"><?php _e('Booking Form', 'modern-events-calendar-lite'); ?></span>
736
+ </a>
737
+ </li>
738
+ <!-- Payment Gateways -->
739
+ <li class="wns-be-group-menu-li mec-settings-menu <?php echo $active_menu == 'gateways' ? 'active' : ''; ?>">
740
+ <a href="<?php echo $this->add_qs_var('tab', 'MEC-gateways'); ?>" id="" class="wns-be-group-tab-link-a">
741
+ <i class="mec-sl-wallet"></i>
742
+ <span class="wns-be-group-menu-title"><?php _e('Payment Gateways', 'modern-events-calendar-lite'); ?></span>
743
+ </a>
744
+ </li>
745
+ <?php endif;?>
746
+
747
+
748
+ <!-- Notifications -->
749
+ <li class="wns-be-group-menu-li mec-settings-menu <?php echo $active_menu == 'notifications' ? 'active' : ''; ?>">
750
+ <a href="<?php echo $this->add_qs_var('tab', 'MEC-notifications'); ?>" id="" class="wns-be-group-tab-link-a">
751
+ <i class="mec-sl-envelope"></i>
752
+ <span class="wns-be-group-menu-title"><?php _e('Notifications', 'modern-events-calendar-lite'); ?></span>
753
+ </a>
754
+ <ul class="<?php echo $active_menu == 'notifications' ? 'subsection' : 'mec-settings-submenu'; ?>">
755
+
756
+ <?php foreach ($notifications as $notifications_name => $notifications_link) : ?>
757
+ <?php if ( $notifications_link != 'new_event' ): ?>
758
+ <?php if(isset($options['booking_status']) and $options['booking_status']): ?>
759
+ <li>
760
+ <a
761
+ <?php if ( $active_menu == 'notifications' ) : ?>
762
+ data-id="<?php echo $notifications_link; ?>" class="wns-be-group-tab-link-a WnTabLinks"
763
+ <?php else: ?>
764
+ href="<?php echo $this->add_qs_var('tab', 'MEC-notifications') . '#' . $notifications_link; ?>"
765
+ <?php endif; ?>
766
+ >
767
+ <span class="pr-be-group-menu-title"><?php echo $notifications_name; ?></span>
768
+ </a>
769
+ </li>
770
+ <?php endif; ?>
771
+ <?php else: ?>
772
+ <li>
773
+ <a
774
+ <?php if ( $active_menu == 'notifications' ) : ?>
775
+ data-id="<?php echo $notifications_link; ?>" class="wns-be-group-tab-link-a WnTabLinks"
776
+ <?php else: ?>
777
+ href="<?php echo $this->add_qs_var('tab', 'MEC-notifications') . '#' . $notifications_link; ?>"
778
+ <?php endif; ?>
779
+ >
780
+ <span class="pr-be-group-menu-title"><?php echo $notifications_name; ?></span>
781
+ </a>
782
+ </li>
783
+ <?php endif; ?>
784
+ <?php endforeach; ?>
785
+ </ul>
786
+ </li>
787
+
788
+ <li class="wns-be-group-menu-li mec-settings-menu <?php echo $active_menu == 'styling' ? 'active' : ''; ?>">
789
+ <a href="<?php echo $this->add_qs_var('tab', 'MEC-styling'); ?>" id="" class="wns-be-group-tab-link-a">
790
+ <i class="mec-sl-equalizer"></i>
791
+ <span class="wns-be-group-menu-title"><?php _e('Styling Options', 'modern-events-calendar-lite'); ?></span>
792
+ </a>
793
+ </li>
794
+
795
+ <li class="wns-be-group-menu-li mec-settings-menu <?php echo $active_menu == 'customcss' ? 'active' : ''; ?>">
796
+ <a href="<?php echo $this->add_qs_var('tab', 'MEC-customcss'); ?>" id="" class="wns-be-group-tab-link-a">
797
+ <i class="mec-sl-wrench"></i>
798
+ <span class="wns-be-group-menu-title"><?php _e('Custom CSS', 'modern-events-calendar-lite'); ?></span>
799
+ </a>
800
+ </li>
801
+
802
+ <li class="wns-be-group-menu-li mec-settings-menu <?php echo $active_menu == 'messages' ? 'active' : ''; ?>">
803
+ <a href="<?php echo $this->add_qs_var('tab', 'MEC-messages'); ?>" id="" class="wns-be-group-tab-link-a">
804
+ <i class="mec-sl-bubble"></i>
805
+ <span class="wns-be-group-menu-title"><?php _e('Messages', 'modern-events-calendar-lite'); ?></span>
806
+ </a>
807
+ </li>
808
+
809
+ <li class="wns-be-group-menu-li mec-settings-menu <?php echo $active_menu == 'ie' ? 'active' : ''; ?>">
810
+ <a href="<?php echo $this->add_qs_var('tab', 'MEC-ie'); ?>" id="" class="wns-be-group-tab-link-a">
811
+ <i class="mec-sl-refresh"></i>
812
+ <span class="wns-be-group-menu-title"><?php _e('Import / Export', 'modern-events-calendar-lite'); ?></span>
813
+ </a>
814
+ </li>
815
+ </ul> <!-- close wns-be-group-menu -->
816
+ <script type="text/javascript">
817
+ jQuery(document).ready(function()
818
+ {
819
+ if ( jQuery('.mec-settings-menu').hasClass('active') )
820
+ {
821
+ jQuery('.mec-settings-menu.active').find('ul li:first-of-type').addClass('active');
822
+ }
823
+
824
+ jQuery('.WnTabLinks').each(function()
825
+ {
826
+ var ContentId = jQuery(this).attr('data-id');
827
+ jQuery(this).click(function()
828
+ {
829
+ jQuery('.wns-be-sidebar li ul li').removeClass('active');
830
+ jQuery(this).parent().addClass('active');
831
+ jQuery(".mec-options-fields").hide();
832
+ jQuery(".mec-options-fields").removeClass('active');
833
+ jQuery("#"+ContentId+"").show();
834
+ jQuery("#"+ContentId+"").addClass('active');
835
+ jQuery('html, body').animate({
836
+ scrollTop: jQuery("#"+ContentId+"").offset().top - 140
837
+ }, 300);
838
+ });
839
+ var hash = window.location.hash.replace('#', '');
840
+ jQuery('[data-id="'+hash+'"]').trigger('click');
841
+ });
842
+
843
+
844
+
845
+ jQuery(".wns-be-sidebar li ul li").on('click', function(event)
846
+ {
847
+ jQuery(".wns-be-sidebar li ul li").removeClass('active');
848
+ jQuery(this).addClass('active');
849
+ });
850
+
851
+ });
852
+ </script>
853
+ <?php
854
 
855
+ }
856
+
857
  /**
858
  * Returns MEC settings
859
  * @author Webnus <info@webnus.biz>
4662
  */
4663
  public function load_map_assets()
4664
  {
4665
+ if($this->getPRO())
4666
+ {
4667
+ // MEC Settings
4668
+ $settings = $this->get_settings();
4669
+
4670
+ // Include Google Maps Javascript API
4671
+ $gm_include = apply_filters('mec_gm_include', true);
4672
  if($gm_include) wp_enqueue_script('googlemap', '//maps.googleapis.com/maps/api/js?libraries=places'.((isset($settings['google_maps_api_key']) and trim($settings['google_maps_api_key']) != '') ? '&key='.$settings['google_maps_api_key'] : ''));
4673
+
4674
  // Google Maps Rich Marker
4675
  wp_enqueue_script('mec-richmarker-script', $this->asset('packages/richmarker/richmarker.min.js'));
4676
+
4677
+ // Google Maps Clustering
4678
+ wp_enqueue_script('mec-clustering-script', $this->asset('packages/clusterer/markerclusterer.min.js'));
4679
  }
4680
  }
4681
 
app/libraries/render.php CHANGED
@@ -857,7 +857,6 @@ class MEC_render extends MEC_base
857
  */
858
  function generate_advanced_days($advanced_days = array(), $event_info = array(), $maximum = 6, $today = NULL, $mode = 'render')
859
  {
860
-
861
  if(!count($advanced_days)) return array();
862
  if(!trim($today)) $today = date( 'Y-m-d', current_time( 'timestamp', 0 ));
863
 
@@ -896,7 +895,7 @@ class MEC_render extends MEC_base
896
  'past' => 0
897
  );
898
 
899
- if($mode == 'render') $i++;
900
  }
901
 
902
  while($i < $maximum)
@@ -943,7 +942,7 @@ class MEC_render extends MEC_base
943
  if(intval($month) == 12)
944
  {
945
  $year = intval($year)+1;
946
- $month = '01';
947
  }
948
 
949
  $month = sprintf("%02d", intval($month)+1);
@@ -954,7 +953,7 @@ class MEC_render extends MEC_base
954
  $max = strtotime(reset($dates)['start']['date']);
955
  $pos = 0;
956
 
957
- for($i=1; $i < count($dates); $i++)
958
  {
959
  if(strtotime($dates[$i]['start']['date']) > $max)
960
  {
@@ -962,6 +961,7 @@ class MEC_render extends MEC_base
962
  $pos = $i;
963
  }
964
  }
 
965
  unset($dates[$pos]);
966
  }
967
 
857
  */
858
  function generate_advanced_days($advanced_days = array(), $event_info = array(), $maximum = 6, $today = NULL, $mode = 'render')
859
  {
 
860
  if(!count($advanced_days)) return array();
861
  if(!trim($today)) $today = date( 'Y-m-d', current_time( 'timestamp', 0 ));
862
 
895
  'past' => 0
896
  );
897
 
898
+ if($mode == 'render') $i++;
899
  }
900
 
901
  while($i < $maximum)
942
  if(intval($month) == 12)
943
  {
944
  $year = intval($year)+1;
945
+ $month = '00';
946
  }
947
 
948
  $month = sprintf("%02d", intval($month)+1);
953
  $max = strtotime(reset($dates)['start']['date']);
954
  $pos = 0;
955
 
956
+ for($i = 1; $i < count($dates); $i++)
957
  {
958
  if(strtotime($dates[$i]['start']['date']) > $max)
959
  {
961
  $pos = $i;
962
  }
963
  }
964
+
965
  unset($dates[$pos]);
966
  }
967
 
app/libraries/syncSchedule.php ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /** no direct access **/
3
+ defined('MECEXEC') or die();
4
+
5
+ /**
6
+ * Webnus MEC syncSchedule class.
7
+ * @author Webnus <info@webnus.biz>
8
+ */
9
+ class MEC_syncSchedule extends MEC_base
10
+ {
11
+
12
+ private $main;
13
+
14
+ public function __construct()
15
+ {
16
+ $this->main = $this->getMain();
17
+ }
18
+
19
+ public function syn()
20
+ {
21
+ $ix = $this->main->get_ix_options();
22
+
23
+ if ( isset($ix['sync_g_import']) and $ix['sync_g_import'] == '1' )
24
+ {
25
+ if ( isset($ix['sync_g_import_auto']) and $ix['sync_g_import_auto'] == '1' )
26
+ {
27
+ $sync_g_import = MEC_ABSPATH.'app'.DS.'crons'.DS.'g-import.php';
28
+ require_once($sync_g_import);
29
+ }
30
+ }
31
+
32
+ if ( isset($ix['sync_g_export']) and $ix['sync_g_export'] == '1' )
33
+ {
34
+ if ( isset($ix['sync_g_export_auto']) and $ix['sync_g_export_auto'] == '1' )
35
+ {
36
+ $sync_g_export = MEC_ABSPATH.'app'.DS.'crons'.DS.'g-export.php';
37
+ require_once($sync_g_export);
38
+ }
39
+ }
40
+
41
+ if ( isset($ix['sync_meetup_import']) and $ix['sync_meetup_import'] == '1' )
42
+ {
43
+ if ( isset($ix['sync_meetup_import_auto']) and $ix['sync_meetup_import_auto'] == '1' )
44
+ {
45
+ $sync_meetup_import = MEC_ABSPATH.'app'.DS.'crons'.DS.'meetup-import.php';
46
+ require_once($sync_meetup_import);
47
+ }
48
+ }
49
+ }
50
+ }
app/modules/countdown/details.php CHANGED
@@ -54,7 +54,7 @@ if(isset($_SERVER['HTTP_USER_AGENT']) and strpos($_SERVER['HTTP_USER_AGENT'], 'T
54
  $defaultjs = '<script type="text/javascript">
55
  jQuery(document).ready(function()
56
  {
57
- jQuery("#countdown").mecCountDown(
58
  {
59
  date: "'.$start_time.$gmt_offset.'",
60
  format: "off"
54
  $defaultjs = '<script type="text/javascript">
55
  jQuery(document).ready(function()
56
  {
57
+ jQuery("#mec_countdown_details").mecCountDown(
58
  {
59
  date: "'.$start_time.$gmt_offset.'",
60
  format: "off"
app/skins/agenda/render.php CHANGED
@@ -56,7 +56,9 @@ $settings = $this->main->get_settings();
56
  }
57
  $speakers = json_encode($speakers);
58
  }
59
- ?>
 
 
60
  <script type="application/ld+json">
61
  {
62
  "@context" : "http://schema.org",
@@ -82,7 +84,9 @@ $settings = $this->main->get_settings();
82
  "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
83
  }
84
  </script>
85
- <?php if($this->style == 'clean'): ?>
 
 
86
  <div class="mec-agenda-event <?php echo $this->get_event_classes($event); ?>">
87
  <i class="mec-sl-clock "></i>
88
  <span class="mec-agenda-time">
56
  }
57
  $speakers = json_encode($speakers);
58
  }
59
+ $schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
60
+ if($schema_settings == '1' ):
61
+ ?>
62
  <script type="application/ld+json">
63
  {
64
  "@context" : "http://schema.org",
84
  "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
85
  }
86
  </script>
87
+ <?php
88
+ endif;
89
+ if($this->style == 'clean'): ?>
90
  <div class="mec-agenda-event <?php echo $this->get_event_classes($event); ?>">
91
  <i class="mec-sl-clock "></i>
92
  <span class="mec-agenda-time">
app/skins/available_spot/tpl.php CHANGED
@@ -103,6 +103,10 @@ do_action('mec_available_spot_skin_head');
103
  ?>
104
  <div class="mec-wrap <?php echo $event_colorskin; ?> <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
105
  <div class="mec-av-spot-wrap">
 
 
 
 
106
  <script type="application/ld+json">
107
  {
108
  "@context" : "http://schema.org",
@@ -128,6 +132,7 @@ do_action('mec_available_spot_skin_head');
128
  "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
129
  }
130
  </script>
 
131
  <div class="mec-av-spot">
132
  <article data-style="<?php echo $label_style; ?>" class="mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
133
 
103
  ?>
104
  <div class="mec-wrap <?php echo $event_colorskin; ?> <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
105
  <div class="mec-av-spot-wrap">
106
+ <?php
107
+ $schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
108
+ if($schema_settings == '1' ):
109
+ ?>
110
  <script type="application/ld+json">
111
  {
112
  "@context" : "http://schema.org",
132
  "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
133
  }
134
  </script>
135
+ <?php endif; ?>
136
  <div class="mec-av-spot">
137
  <article data-style="<?php echo $label_style; ?>" class="mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
138
 
app/skins/carousel/render.php CHANGED
@@ -64,6 +64,10 @@ $settings = $this->main->get_settings();
64
  }
65
  ?>
66
  <article data-style="<?php echo $label_style; ?>" class="mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>" itemscope>
 
 
 
 
67
  <script type="application/ld+json">
68
  {
69
  "@context" : "http://schema.org",
@@ -89,7 +93,9 @@ $settings = $this->main->get_settings();
89
  "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
90
  }
91
  </script>
92
- <?php if($this->style == 'type1'): ?>
 
 
93
  <div class="event-carousel-type1-head clearfix">
94
  <div class="mec-event-date mec-color">
95
  <div class="mec-event-image">
64
  }
65
  ?>
66
  <article data-style="<?php echo $label_style; ?>" class="mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>" itemscope>
67
+ <?php
68
+ $schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
69
+ if($schema_settings == '1' ):
70
+ ?>
71
  <script type="application/ld+json">
72
  {
73
  "@context" : "http://schema.org",
93
  "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
94
  }
95
  </script>
96
+ <?php
97
+ endif;
98
+ if($this->style == 'type1'): ?>
99
  <div class="event-carousel-type1-head clearfix">
100
  <div class="mec-event-date mec-color">
101
  <div class="mec-event-image">
app/skins/countdown/tpl.php CHANGED
@@ -88,6 +88,10 @@ do_action('mec_countdown_skin_head');
88
  .mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after { border-color: transparent transparent transparent<?php echo $this->bg_color; ?>;}
89
  </style>
90
  <div class="mec-wrap <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
 
 
 
 
91
  <script type="application/ld+json">
92
  {
93
  "@context" : "http://schema.org",
@@ -113,7 +117,9 @@ do_action('mec_countdown_skin_head');
113
  "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
114
  }
115
  </script>
116
- <?php if($this->style == 'style1'): ?>
 
 
117
  <article class="mec-event-countdown-style1 col-md-12 <?php echo $this->get_event_classes($event); ?>">
118
  <div class="mec-event-countdown-part1 col-md-4">
119
  <div class="mec-event-upcoming"><?php echo sprintf(__('%s Upcoming Event', 'modern-events-calendar-lite'), '<span>'.__('Next', 'modern-events-calendar-lite').'</span>'); ?></div>
88
  .mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after { border-color: transparent transparent transparent<?php echo $this->bg_color; ?>;}
89
  </style>
90
  <div class="mec-wrap <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>">
91
+ <?php
92
+ $schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
93
+ if($schema_settings == '1' ):
94
+ ?>
95
  <script type="application/ld+json">
96
  {
97
  "@context" : "http://schema.org",
117
  "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
118
  }
119
  </script>
120
+ <?php
121
+ endif;
122
+ if($this->style == 'style1'): ?>
123
  <article class="mec-event-countdown-style1 col-md-12 <?php echo $this->get_event_classes($event); ?>">
124
  <div class="mec-event-countdown-part1 col-md-4">
125
  <div class="mec-event-upcoming"><?php echo sprintf(__('%s Upcoming Event', 'modern-events-calendar-lite'), '<span>'.__('Next', 'modern-events-calendar-lite').'</span>'); ?></div>
app/skins/cover/tpl.php CHANGED
@@ -50,6 +50,10 @@ if ( !empty($event->data->speakers))
50
  do_action('mec_cover_skin_head');
51
  ?>
52
  <div class="mec-wrap <?php echo $event_colorskin . ' ' . $this->html_class; ?>">
 
 
 
 
53
  <script type="application/ld+json">
54
  {
55
  "@context" : "http://schema.org",
@@ -75,7 +79,9 @@ do_action('mec_cover_skin_head');
75
  "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
76
  }
77
  </script>
78
- <?php if($this->style == 'modern' and $event_thumb_url): ?>
 
 
79
  <article class="mec-event-cover-modern <?php echo $this->get_event_classes($event); ?>" style="background: url('<?php echo $event_thumb_url; ?>'); height: 678px;background-size: cover;">
80
  <a href="<?php echo $event_link; ?>" class="mec-event-cover-a">
81
  <div class="mec-event-overlay mec-bg-color"></div>
50
  do_action('mec_cover_skin_head');
51
  ?>
52
  <div class="mec-wrap <?php echo $event_colorskin . ' ' . $this->html_class; ?>">
53
+ <?php
54
+ $schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
55
+ if($schema_settings == '1' ):
56
+ ?>
57
  <script type="application/ld+json">
58
  {
59
  "@context" : "http://schema.org",
79
  "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
80
  }
81
  </script>
82
+ <?php
83
+ endif;
84
+ if($this->style == 'modern' and $event_thumb_url): ?>
85
  <article class="mec-event-cover-modern <?php echo $this->get_event_classes($event); ?>" style="background: url('<?php echo $event_thumb_url; ?>'); height: 678px;background-size: cover;">
86
  <a href="<?php echo $event_link; ?>" class="mec-event-cover-a">
87
  <div class="mec-event-overlay mec-bg-color"></div>
app/skins/daily_view/render.php CHANGED
@@ -67,6 +67,8 @@ $settings = $this->main->get_settings();
67
  }
68
  $speakers = json_encode($speakers);
69
  }
 
 
70
  ?>
71
  <script type="application/ld+json">
72
  {
@@ -93,6 +95,7 @@ $settings = $this->main->get_settings();
93
  "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
94
  }
95
  </script>
 
96
  <article data-style="<?php echo $label_style; ?>" class="mec-event-article <?php echo $this->get_event_classes($event); ?>">
97
  <div class="mec-event-image"><?php echo $event->data->thumbnails['thumbnail']; ?></div>
98
  <?php if(trim($start_time)): ?><div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> <?php echo $start_time.(trim($end_time) ? ' - '.$end_time : ''); ?></div><?php endif; ?>
67
  }
68
  $speakers = json_encode($speakers);
69
  }
70
+ $schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
71
+ if($schema_settings == '1' ):
72
  ?>
73
  <script type="application/ld+json">
74
  {
95
  "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
96
  }
97
  </script>
98
+ <?php endif; ?>
99
  <article data-style="<?php echo $label_style; ?>" class="mec-event-article <?php echo $this->get_event_classes($event); ?>">
100
  <div class="mec-event-image"><?php echo $event->data->thumbnails['thumbnail']; ?></div>
101
  <?php if(trim($start_time)): ?><div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> <?php echo $start_time.(trim($end_time) ? ' - '.$end_time : ''); ?></div><?php endif; ?>
app/skins/grid/render.php CHANGED
@@ -68,6 +68,8 @@ if($this->style == 'colorful')
68
  }
69
  $speakers = json_encode($speakers);
70
  }
 
 
71
  ?>
72
  <script type="application/ld+json">
73
  {
@@ -94,7 +96,7 @@ if($this->style == 'colorful')
94
  "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
95
  }
96
  </script>
97
- <?php
98
  echo '<article data-style="'.$label_style.'" class="mec-event-article mec-clear '.$this->get_event_classes($event).'"' . $colorful_bg_color . ' itemscope>';
99
  ?>
100
  <?php if($this->style == 'modern'): ?>
68
  }
69
  $speakers = json_encode($speakers);
70
  }
71
+ $schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
72
+ if($schema_settings == '1' ):
73
  ?>
74
  <script type="application/ld+json">
75
  {
96
  "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
97
  }
98
  </script>
99
+ <?php endif;
100
  echo '<article data-style="'.$label_style.'" class="mec-event-article mec-clear '.$this->get_event_classes($event).'"' . $colorful_bg_color . ' itemscope>';
101
  ?>
102
  <?php if($this->style == 'modern'): ?>
app/skins/list/render.php CHANGED
@@ -58,6 +58,8 @@ $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])
58
 
59
  $speakers = json_encode($speakers);
60
  }
 
 
61
  ?>
62
  <script type="application/ld+json">
63
  {
@@ -84,6 +86,7 @@ $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])
84
  "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
85
  }
86
  </script>
 
87
  <article data-style="<?php echo $label_style; ?>" class="mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?> mec-divider-toggle mec-toggle-<?php echo date_i18n('Ym', strtotime($date)); ?>-<?php echo $this->id; ?>" itemscope>
88
  <?php if($this->style == 'modern'): ?>
89
  <div class="col-md-2 col-sm-2">
58
 
59
  $speakers = json_encode($speakers);
60
  }
61
+ $schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
62
+ if($schema_settings == '1' ):
63
  ?>
64
  <script type="application/ld+json">
65
  {
86
  "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
87
  }
88
  </script>
89
+ <?php endif; ?>
90
  <article data-style="<?php echo $label_style; ?>" class="mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?> mec-divider-toggle mec-toggle-<?php echo date_i18n('Ym', strtotime($date)); ?>-<?php echo $this->id; ?>" itemscope>
91
  <?php if($this->style == 'modern'): ?>
92
  <div class="col-md-2 col-sm-2">
app/skins/map.php CHANGED
@@ -101,7 +101,7 @@ class MEC_skin_map extends MEC_skins
101
  $this->args['meta_key'] = 'mec_start_day_seconds';
102
 
103
  // Show Past Events
104
- $this->args['mec-past-events'] = isset($this->atts['show_past_events']) ? $this->atts['show_past_events'] : '0';
105
 
106
  // Geolocation
107
  $this->geolocation = isset($this->skin_options['geolocation']) ? $this->skin_options['geolocation'] : 0;
@@ -162,7 +162,7 @@ class MEC_skin_map extends MEC_skins
162
  $data = new stdClass();
163
  $data->ID = $event_id;
164
  $data->data = $rendered;
165
- $data->dates = $this->render->dates($event_id, $rendered, 6);
166
  $data->date = isset($data->dates[0]) ? $data->dates[0] : array();
167
 
168
  // Proceed to next event if it's expired
101
  $this->args['meta_key'] = 'mec_start_day_seconds';
102
 
103
  // Show Past Events
104
+ $this->args['mec-past-events'] = isset($this->atts['show_past_events']) ? $this->atts['show_past_events'] : 0;
105
 
106
  // Geolocation
107
  $this->geolocation = isset($this->skin_options['geolocation']) ? $this->skin_options['geolocation'] : 0;
162
  $data = new stdClass();
163
  $data->ID = $event_id;
164
  $data->data = $rendered;
165
+ $data->dates = $this->render->dates($event_id, $rendered, 1);
166
  $data->date = isset($data->dates[0]) ? $data->dates[0] : array();
167
 
168
  // Proceed to next event if it's expired
app/skins/map/tpl.php CHANGED
@@ -29,6 +29,7 @@ if(count($this->events))
29
  styles: '.((isset($settings['google_maps_style']) and trim($settings['google_maps_style']) != '') ? $this->main->get_googlemap_style($settings['google_maps_style']) : "''").',
30
  markers: '.json_encode($this->render->markers($this->events)).',
31
  HTML5geolocation: '.$this->geolocation.',
 
32
  getDirection: 0,
33
  ajax_url: "'.admin_url('admin-ajax.php', NULL).'",
34
  sf:
29
  styles: '.((isset($settings['google_maps_style']) and trim($settings['google_maps_style']) != '') ? $this->main->get_googlemap_style($settings['google_maps_style']) : "''").',
30
  markers: '.json_encode($this->render->markers($this->events)).',
31
  HTML5geolocation: '.$this->geolocation.',
32
+ clustering_images: "'.$this->main->asset('img/cluster1/m').'",
33
  getDirection: 0,
34
  ajax_url: "'.admin_url('admin-ajax.php', NULL).'",
35
  sf:
app/skins/masonry/render.php CHANGED
@@ -46,6 +46,8 @@ $settings = $this->main->get_settings();
46
 
47
  $speakers = json_encode($speakers);
48
  }
 
 
49
  ?>
50
  <script type="application/ld+json">
51
  {
@@ -73,6 +75,7 @@ $settings = $this->main->get_settings();
73
  }
74
  </script>
75
  <?php
 
76
  $masonry_filter = '';
77
  if ( $this->filter_by == 'category' ) {
78
  if ( isset($event->data->categories) && !empty($event->data->categories) ) :
46
 
47
  $speakers = json_encode($speakers);
48
  }
49
+ $schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
50
+ if($schema_settings == '1' ):
51
  ?>
52
  <script type="application/ld+json">
53
  {
75
  }
76
  </script>
77
  <?php
78
+ endif;
79
  $masonry_filter = '';
80
  if ( $this->filter_by == 'category' ) {
81
  if ( isset($event->data->categories) && !empty($event->data->categories) ) :
app/skins/monthly_view/calendar.php CHANGED
@@ -132,6 +132,8 @@ elseif($week_start == 5) // Friday
132
  $image = !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ;
133
  $price_schema = isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ;
134
  $currency_schema = isset($settings['currency']) ? $settings['currency'] : '' ;
 
 
135
  $events_str .= '
136
  <script type="application/ld+json">
137
  {
@@ -159,6 +161,7 @@ elseif($week_start == 5) // Friday
159
  }
160
  </script>
161
  ';
 
162
  $events_str .= '<article data-style="'.$label_style.'" class="ended-relative mec-event-article '.$this->get_event_classes($event).'">';
163
  $events_str .= '<div class="mec-event-image">'.$event->data->thumbnails['thumbnail'].'</div>';
164
  if(trim($start_time)) $events_str .= '<div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> '.$start_time.(trim($end_time) ? ' - '.$end_time : '').'</div>';
@@ -176,7 +179,7 @@ elseif($week_start == 5) // Friday
176
  {
177
  echo '<dt class="mec-calendar-day'.$selected_day.'" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', $time).'">'.$list_day.'</dt>';
178
 
179
- $events_str .= '<div class="mec-calendar-events-sec" data-mec-cell="'.$day_id.'" '.(trim($selected_day) != '' ? ' style="display: block;"' : '').'><h6 class="mec-table-side-title">'.sprintf(__('Events for %s', 'modern-events-calendar-lite'), date_i18n('F', $time)).'</h6><h3 class="mec-color mec-table-side-day"> '.$date_suffix.'</h3>';
180
  $events_str .= '<article class="mec-event-article">';
181
  $events_str .= '<div class="mec-event-detail">'.__('No Events', 'modern-events-calendar-lite').'</div>';
182
  $events_str .= '</article>';
132
  $image = !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ;
133
  $price_schema = isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ;
134
  $currency_schema = isset($settings['currency']) ? $settings['currency'] : '' ;
135
+ $schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
136
+ if($schema_settings == '1' ):
137
  $events_str .= '
138
  <script type="application/ld+json">
139
  {
161
  }
162
  </script>
163
  ';
164
+ endif;
165
  $events_str .= '<article data-style="'.$label_style.'" class="ended-relative mec-event-article '.$this->get_event_classes($event).'">';
166
  $events_str .= '<div class="mec-event-image">'.$event->data->thumbnails['thumbnail'].'</div>';
167
  if(trim($start_time)) $events_str .= '<div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> '.$start_time.(trim($end_time) ? ' - '.$end_time : '').'</div>';
179
  {
180
  echo '<dt class="mec-calendar-day'.$selected_day.'" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', $time).'">'.$list_day.'</dt>';
181
 
182
+ $events_str .= '<div '.(trim($selected_day) != '' ? 'id="mec-active-current"' : '').' class="mec-calendar-events-sec" data-mec-cell="'.$day_id.'"><h6 class="mec-table-side-title">'.sprintf(__('Events for %s', 'modern-events-calendar-lite'), date_i18n('F', $time)).'</h6><h3 class="mec-color mec-table-side-day"> '.$date_suffix.'</h3>';
183
  $events_str .= '<article class="mec-event-article">';
184
  $events_str .= '<div class="mec-event-detail">'.__('No Events', 'modern-events-calendar-lite').'</div>';
185
  $events_str .= '</article>';
app/skins/monthly_view/calendar_clean.php CHANGED
@@ -132,6 +132,8 @@ elseif($week_start == 5) // Friday
132
  $image = !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ;
133
  $price_schema = isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ;
134
  $currency_schema = isset($settings['currency']) ? $settings['currency'] : '' ;
 
 
135
  $events_str .= '
136
  <script type="application/ld+json">
137
  {
@@ -159,6 +161,7 @@ elseif($week_start == 5) // Friday
159
  }
160
  </script>
161
  ';
 
162
  $events_str .= '<article data-style="'.$label_style.'" class="mec-event-article '.$this->get_event_classes($event, $is_soldout).'">';
163
  $events_str .= '<div class="mec-event-image">'.$event->data->thumbnails['thumblist'].'</div>';
164
  if(trim($start_time)) $events_str .= '<div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> '.$start_time.(trim($end_time) ? ' - '.$end_time : '').'</div>';
132
  $image = !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ;
133
  $price_schema = isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ;
134
  $currency_schema = isset($settings['currency']) ? $settings['currency'] : '' ;
135
+ $schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
136
+ if($schema_settings == '1' ):
137
  $events_str .= '
138
  <script type="application/ld+json">
139
  {
161
  }
162
  </script>
163
  ';
164
+ endif;
165
  $events_str .= '<article data-style="'.$label_style.'" class="mec-event-article '.$this->get_event_classes($event, $is_soldout).'">';
166
  $events_str .= '<div class="mec-event-image">'.$event->data->thumbnails['thumblist'].'</div>';
167
  if(trim($start_time)) $events_str .= '<div class="mec-event-time mec-color"><i class="mec-sl-clock-o"></i> '.$start_time.(trim($end_time) ? ' - '.$end_time : '').'</div>';
app/skins/monthly_view/calendar_novel.php CHANGED
@@ -101,6 +101,8 @@ elseif($week_start == 5) // Friday
101
  $image = !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ;
102
  $price_schema = isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ;
103
  $currency_schema = isset($settings['currency']) ? $settings['currency'] : '' ;
 
 
104
  echo '
105
  <script type="application/ld+json">
106
  {
@@ -128,7 +130,7 @@ elseif($week_start == 5) // Friday
128
  }
129
  </script>
130
  ';
131
-
132
  echo '<a class="event-single-link-novel" data-event-id="'.$event->data->ID.'" href="'.$this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']).'"><div style="background:'.$event_color.'" class="mec-single-event-novel mec-event-article '.$this->get_event_classes($event).'">';
133
  echo '<h4 class="mec-event-title">'.$event->data->title.'</h4>';
134
  echo '</div></a>';
101
  $image = !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ;
102
  $price_schema = isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ;
103
  $currency_schema = isset($settings['currency']) ? $settings['currency'] : '' ;
104
+ $schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
105
+ if($schema_settings == '1' ):
106
  echo '
107
  <script type="application/ld+json">
108
  {
130
  }
131
  </script>
132
  ';
133
+ endif;
134
  echo '<a class="event-single-link-novel" data-event-id="'.$event->data->ID.'" href="'.$this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']).'"><div style="background:'.$event_color.'" class="mec-single-event-novel mec-event-article '.$this->get_event_classes($event).'">';
135
  echo '<h4 class="mec-event-title">'.$event->data->title.'</h4>';
136
  echo '</div></a>';
app/skins/monthly_view/calendar_simple.php CHANGED
@@ -105,6 +105,8 @@ elseif($week_start == 5) // Friday
105
  $image = !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ;
106
  $price_schema = isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ;
107
  $currency_schema = isset($settings['currency']) ? $settings['currency'] : '' ;
 
 
108
  echo '
109
  <script type="application/ld+json">
110
  {
@@ -132,6 +134,7 @@ elseif($week_start == 5) // Friday
132
  }
133
  </script>
134
  ';
 
135
  echo '
136
  <div class="tooltip_templates event-single-content-simple">
137
  <div id="mec-tooltip-'.$event->data->ID.'-'.$day_id.'">
105
  $image = !empty($event->data->featured_image['full']) ? esc_html($event->data->featured_image['full']) : '' ;
106
  $price_schema = isset($event->data->meta['mec_cost']) ? $event->data->meta['mec_cost'] : '' ;
107
  $currency_schema = isset($settings['currency']) ? $settings['currency'] : '' ;
108
+ $schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
109
+ if($schema_settings == '1' ):
110
  echo '
111
  <script type="application/ld+json">
112
  {
134
  }
135
  </script>
136
  ';
137
+ endif;
138
  echo '
139
  <div class="tooltip_templates event-single-content-simple">
140
  <div id="mec-tooltip-'.$event->data->ID.'-'.$day_id.'">
app/skins/single.php CHANGED
@@ -77,6 +77,7 @@ class MEC_skin_single extends MEC_skins
77
  */
78
  public function display_related_posts_widget($event_id)
79
  {
 
80
  if ( isset( $this->settings['related_events'] ) && $this->settings['related_events'] != '1' ) return;
81
 
82
  $related_args = array(
77
  */
78
  public function display_related_posts_widget($event_id)
79
  {
80
+ if ( !isset( $this->settings['related_events'] ) ) return;
81
  if ( isset( $this->settings['related_events'] ) && $this->settings['related_events'] != '1' ) return;
82
 
83
  $related_args = array(
app/skins/single/default.php CHANGED
@@ -15,7 +15,7 @@ wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.
15
  <div class="mec-breadcrumbs">
16
  <?php $single->display_breadcrumb_widget( get_the_ID() ); ?>
17
  </div>
18
- <?php endif ;?>
19
  <!-- end breadcrumbs -->
20
  <div class="col-md-8">
21
  <div class="mec-events-event-image"><?php echo $event->data->thumbnails['full']; ?></div>
@@ -498,6 +498,9 @@ if(!empty($event->data->speakers))
498
  }
499
  $speakers = json_encode($speakers);
500
  }
 
 
 
501
  ?>
502
  <script type="application/ld+json">
503
  {
@@ -524,6 +527,7 @@ if(!empty($event->data->speakers))
524
  "url" : "<?php the_permalink(); ?>"
525
  }
526
  </script>
 
527
  <script>
528
  // Fix modal speaker in some themes
529
  jQuery( ".mec-speaker-avatar a" ).click(function(e) {
15
  <div class="mec-breadcrumbs">
16
  <?php $single->display_breadcrumb_widget( get_the_ID() ); ?>
17
  </div>
18
+ <?php endif; ?>
19
  <!-- end breadcrumbs -->
20
  <div class="col-md-8">
21
  <div class="mec-events-event-image"><?php echo $event->data->thumbnails['full']; ?></div>
498
  }
499
  $speakers = json_encode($speakers);
500
  }
501
+
502
+ $schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
503
+ if($schema_settings == '1' ):
504
  ?>
505
  <script type="application/ld+json">
506
  {
527
  "url" : "<?php the_permalink(); ?>"
528
  }
529
  </script>
530
+ <?php endif; ?>
531
  <script>
532
  // Fix modal speaker in some themes
533
  jQuery( ".mec-speaker-avatar a" ).click(function(e) {
app/skins/single/modern.php CHANGED
@@ -12,7 +12,7 @@ defined('MECEXEC') or die();
12
  <div class="mec-breadcrumbs mec-breadcrumbs-modern">
13
  <?php $breadcrumbs->display_breadcrumb_widget(get_the_ID()); ?>
14
  </div>
15
- <?php endif ;?>
16
  <!-- end breadcrumbs -->
17
  <div class="mec-events-event-image"><?php echo $event->data->thumbnails['full']; ?><?php do_action('mec_custom_dev_image_section', $event); ?></div>
18
  <div class="col-md-4">
@@ -287,6 +287,8 @@ if(!empty($event->data->speakers))
287
 
288
  $speakers = json_encode($speakers);
289
  }
 
 
290
  ?>
291
  <script type="application/ld+json">
292
  {
@@ -315,6 +317,7 @@ if(!empty($event->data->speakers))
315
  "url" : "<?php the_permalink(); ?>"
316
  }
317
  </script>
 
318
  <script>
319
  jQuery( ".mec-speaker-avatar a" ).click(function(e) {
320
  e.preventDefault();
12
  <div class="mec-breadcrumbs mec-breadcrumbs-modern">
13
  <?php $breadcrumbs->display_breadcrumb_widget(get_the_ID()); ?>
14
  </div>
15
+ <?php endif; ?>
16
  <!-- end breadcrumbs -->
17
  <div class="mec-events-event-image"><?php echo $event->data->thumbnails['full']; ?><?php do_action('mec_custom_dev_image_section', $event); ?></div>
18
  <div class="col-md-4">
287
 
288
  $speakers = json_encode($speakers);
289
  }
290
+ $schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
291
+ if($schema_settings == '1' ):
292
  ?>
293
  <script type="application/ld+json">
294
  {
317
  "url" : "<?php the_permalink(); ?>"
318
  }
319
  </script>
320
+ <?php endif; ?>
321
  <script>
322
  jQuery( ".mec-speaker-avatar a" ).click(function(e) {
323
  e.preventDefault();
app/skins/slider/render.php CHANGED
@@ -66,6 +66,8 @@ $settings = $this->main->get_settings();
66
  ?>
67
  <?php if($this->style == 't1'): ?>
68
  <article data-style="<?php echo $label_style; ?>" class="mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
 
 
69
  <script type="application/ld+json">
70
  {
71
  "@context" : "http://schema.org",
@@ -91,6 +93,7 @@ $settings = $this->main->get_settings();
91
  "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
92
  }
93
  </script>
 
94
  <div class="mec-slider-t1-img" style="background: url(<?php echo $src; ?> );"></div>
95
 
96
  <div class="mec-slider-t1-content mec-event-grid-modern">
@@ -112,6 +115,8 @@ $settings = $this->main->get_settings();
112
  </article>
113
  <?php elseif($this->style == 't2'): ?>
114
  <article data-style="<?php echo $label_style; ?>" class="mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
 
 
115
  <script type="application/ld+json">
116
  {
117
  "@context" : "http://schema.org",
@@ -137,6 +142,7 @@ $settings = $this->main->get_settings();
137
  "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
138
  }
139
  </script>
 
140
  <div class="mec-slider-t2-img" style="background: url(<?php echo $src; ?> );"></div>
141
  <div class="mec-slider-t2-content mec-event-grid-modern mec-bg-color">
142
 
@@ -157,6 +163,8 @@ $settings = $this->main->get_settings();
157
  </article>
158
  <?php elseif($this->style == 't3'): ?>
159
  <article data-style="<?php echo $label_style; ?>" class="mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
 
 
160
  <script type="application/ld+json">
161
  {
162
  "@context" : "http://schema.org",
@@ -182,6 +190,7 @@ $settings = $this->main->get_settings();
182
  "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
183
  }
184
  </script>
 
185
  <div class="mec-slider-t3-img" style="background: url(<?php echo $src; ?> );"></div>
186
  <div class="mec-slider-t3-content mec-event-grid-modern">
187
  <div class="event-grid-modern-head clearfix">
@@ -201,6 +210,8 @@ $settings = $this->main->get_settings();
201
  </article>
202
  <?php elseif($this->style == 't4'): ?>
203
  <article data-style="<?php echo $label_style; ?>" class="mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
 
 
204
  <script type="application/ld+json">
205
  {
206
  "@context" : "http://schema.org",
@@ -226,6 +237,7 @@ $settings = $this->main->get_settings();
226
  "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
227
  }
228
  </script>
 
229
  <div class="mec-slider-t4-img" style="background: url(<?php echo $src; ?> );"></div>
230
  <div class="mec-slider-t4-content mec-event-grid-modern">
231
 
@@ -246,6 +258,8 @@ $settings = $this->main->get_settings();
246
  </article>
247
  <?php elseif($this->style == 't5'): ?>
248
  <article data-style="<?php echo $label_style; ?>" class="mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
 
 
249
  <script type="application/ld+json">
250
  {
251
  "@context" : "http://schema.org",
@@ -271,6 +285,7 @@ $settings = $this->main->get_settings();
271
  "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
272
  }
273
  </script>
 
274
  <div class="mec-slider-t5-img" style="background: url(<?php echo $src; ?> );"></div>
275
  <div class="mec-slider-t5-content mec-event-grid-modern">
276
  <div class="event-grid-modern-head clearfix">
66
  ?>
67
  <?php if($this->style == 't1'): ?>
68
  <article data-style="<?php echo $label_style; ?>" class="mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
69
+ <?php $schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
70
+ if($schema_settings == '1' ): ?>
71
  <script type="application/ld+json">
72
  {
73
  "@context" : "http://schema.org",
93
  "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
94
  }
95
  </script>
96
+ <?php endif; ?>
97
  <div class="mec-slider-t1-img" style="background: url(<?php echo $src; ?> );"></div>
98
 
99
  <div class="mec-slider-t1-content mec-event-grid-modern">
115
  </article>
116
  <?php elseif($this->style == 't2'): ?>
117
  <article data-style="<?php echo $label_style; ?>" class="mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
118
+ <?php $schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
119
+ if($schema_settings == '1' ): ?>
120
  <script type="application/ld+json">
121
  {
122
  "@context" : "http://schema.org",
142
  "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
143
  }
144
  </script>
145
+ <?php endif; ?>
146
  <div class="mec-slider-t2-img" style="background: url(<?php echo $src; ?> );"></div>
147
  <div class="mec-slider-t2-content mec-event-grid-modern mec-bg-color">
148
 
163
  </article>
164
  <?php elseif($this->style == 't3'): ?>
165
  <article data-style="<?php echo $label_style; ?>" class="mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
166
+ <?php $schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
167
+ if($schema_settings == '1' ): ?>
168
  <script type="application/ld+json">
169
  {
170
  "@context" : "http://schema.org",
190
  "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
191
  }
192
  </script>
193
+ <?php endif; ?>
194
  <div class="mec-slider-t3-img" style="background: url(<?php echo $src; ?> );"></div>
195
  <div class="mec-slider-t3-content mec-event-grid-modern">
196
  <div class="event-grid-modern-head clearfix">
210
  </article>
211
  <?php elseif($this->style == 't4'): ?>
212
  <article data-style="<?php echo $label_style; ?>" class="mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
213
+ <?php $schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
214
+ if($schema_settings == '1' ): ?>
215
  <script type="application/ld+json">
216
  {
217
  "@context" : "http://schema.org",
237
  "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
238
  }
239
  </script>
240
+ <?php endif; ?>
241
  <div class="mec-slider-t4-img" style="background: url(<?php echo $src; ?> );"></div>
242
  <div class="mec-slider-t4-content mec-event-grid-modern">
243
 
258
  </article>
259
  <?php elseif($this->style == 't5'): ?>
260
  <article data-style="<?php echo $label_style; ?>" class="mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
261
+ <?php $schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
262
+ if($schema_settings == '1' ): ?>
263
  <script type="application/ld+json">
264
  {
265
  "@context" : "http://schema.org",
285
  "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
286
  }
287
  </script>
288
+ <?php endif; ?>
289
  <div class="mec-slider-t5-img" style="background: url(<?php echo $src; ?> );"></div>
290
  <div class="mec-slider-t5-content mec-event-grid-modern">
291
  <div class="event-grid-modern-head clearfix">
app/skins/timetable/render.php CHANGED
@@ -52,6 +52,8 @@ $settings = $this->main->get_settings();
52
  }
53
  $speakers = json_encode($speakers);
54
  }
 
 
55
  ?>
56
  <script type="application/ld+json">
57
  {
@@ -78,6 +80,7 @@ $settings = $this->main->get_settings();
78
  "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
79
  }
80
  </script>
 
81
  <article class="mec-timetable-event mec-timetable-day-<?php echo $this->id; ?>-<?php echo date('Ymd', strtotime($date)); ?> <?php echo $this->get_event_classes($event); ?>">
82
  <span class="mec-timetable-event-span mec-timetable-event-time">
83
  <i class="mec-sl-clock"></i>
52
  }
53
  $speakers = json_encode($speakers);
54
  }
55
+ $schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
56
+ if($schema_settings == '1' ):
57
  ?>
58
  <script type="application/ld+json">
59
  {
80
  "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
81
  }
82
  </script>
83
+ <?php endif; ?>
84
  <article class="mec-timetable-event mec-timetable-day-<?php echo $this->id; ?>-<?php echo date('Ymd', strtotime($date)); ?> <?php echo $this->get_event_classes($event); ?>">
85
  <span class="mec-timetable-event-span mec-timetable-event-time">
86
  <i class="mec-sl-clock"></i>
app/skins/weekly_view/render.php CHANGED
@@ -75,6 +75,8 @@ $settings = $this->main->get_settings();
75
  }
76
  $speakers = json_encode($speakers);
77
  }
 
 
78
  ?>
79
  <script type="application/ld+json">
80
  {
@@ -101,6 +103,7 @@ $settings = $this->main->get_settings();
101
  "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
102
  }
103
  </script>
 
104
  <article data-style="<?php echo $label_style; ?>" class="mec-event-article <?php echo $this->get_event_classes($event); ?>">
105
  <div class="mec-event-list-weekly-date mec-color"><span class="mec-date-day"><?php echo date_i18n('d', strtotime($event->date['start']['date'])); ?></span><?php echo date_i18n('F', strtotime($event->date['start']['date'])); ?></div>
106
  <div class="mec-event-image"><?php echo $event->data->thumbnails['thumbnail']; ?></div>
75
  }
76
  $speakers = json_encode($speakers);
77
  }
78
+ $schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
79
+ if($schema_settings == '1' ):
80
  ?>
81
  <script type="application/ld+json">
82
  {
103
  "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
104
  }
105
  </script>
106
+ <?php endif; ?>
107
  <article data-style="<?php echo $label_style; ?>" class="mec-event-article <?php echo $this->get_event_classes($event); ?>">
108
  <div class="mec-event-list-weekly-date mec-color"><span class="mec-date-day"><?php echo date_i18n('d', strtotime($event->date['start']['date'])); ?></span><?php echo date_i18n('F', strtotime($event->date['start']['date'])); ?></div>
109
  <div class="mec-event-image"><?php echo $event->data->thumbnails['thumbnail']; ?></div>
app/skins/yearly_view/render.php CHANGED
@@ -67,6 +67,8 @@ $settings = $this->main->get_settings();
67
  }
68
  $speakers = json_encode($speakers);
69
  }
 
 
70
  ?>
71
  <script type="application/ld+json">
72
  {
@@ -93,6 +95,7 @@ $settings = $this->main->get_settings();
93
  "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
94
  }
95
  </script>
 
96
  <?php if($this->style == 'modern'): ?>
97
  <div data-style="" class="mec-agenda-event <?php echo $this->get_event_classes($event); ?>">
98
  <i class="mec-sl-clock "></i>
67
  }
68
  $speakers = json_encode($speakers);
69
  }
70
+ $schema_settings = isset( $settings['schema'] ) ? $settings['schema'] : '';
71
+ if($schema_settings == '1' ):
72
  ?>
73
  <script type="application/ld+json">
74
  {
95
  "url" : "<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"
96
  }
97
  </script>
98
+ <?php endif; ?>
99
  <?php if($this->style == 'modern'): ?>
100
  <div data-style="" class="mec-agenda-event <?php echo $this->get_event_classes($event); ?>">
101
  <i class="mec-sl-clock "></i>
app/widgets/MEC.php CHANGED
@@ -55,7 +55,8 @@ class MEC_MEC_widget extends WP_Widget
55
  }
56
 
57
  $calendar_id = isset($instance['calendar_id']) ? $instance['calendar_id'] : 0;
58
- $atts = array('html-class'=>'mec-widget', 'style'=>'classic', 'widget'=>true);
 
59
 
60
  // Print the skin output
61
  echo $this->render->widget($calendar_id, $atts);
@@ -73,7 +74,9 @@ class MEC_MEC_widget extends WP_Widget
73
  public function form($instance)
74
  {
75
  $calendars = get_posts(array('post_type'=>'mec_calendars', 'posts_per_page'=>'-1', 'meta_query'=>array(array('key'=>'skin', 'value'=>array('list', 'grid', 'monthly_view'), 'compare'=>'IN'))));
76
-
 
 
77
  echo '<p class="mec-widget-row-container">'
78
  .'<label for="'.$this->get_field_id('title').'">'.__('Title:', 'modern-events-calendar-lite').'</label>'
79
  .'<input class="widefat" type="text" id="'.$this->get_field_id('title').'" name="'.$this->get_field_name('title').'" value="'.(isset($instance['title']) ? $instance['title'] : '').'" />'
@@ -83,12 +86,16 @@ class MEC_MEC_widget extends WP_Widget
83
  {
84
  echo '<p class="mec-widget-row-container">'
85
  .'<label for="'.$this->get_field_id('calendar_id').'">'.__('Shortcode:', 'modern-events-calendar-lite').'</label>'
86
- .'<select class="widefat" name="'.$this->get_field_name('calendar_id').'" id="'.$this->get_field_id('calendar_id').'"><option value="">-----</option>';
87
 
88
- foreach($calendars as $calendar) echo '<option value="'.$calendar->ID.'" '.((isset($instance['calendar_id']) and $instance['calendar_id'] == $calendar->ID) ? 'selected="selected"' : '').'>'.$calendar->post_title.'</option>';
 
 
 
 
 
89
 
90
- echo '</select>'
91
- .'</p>';
92
  }
93
  else
94
  {
@@ -108,7 +115,8 @@ class MEC_MEC_widget extends WP_Widget
108
  $instance = array();
109
  $instance['title'] = $new_instance['title'];
110
  $instance['calendar_id'] = $new_instance['calendar_id'];
111
-
 
112
  return $instance;
113
  }
114
  }
55
  }
56
 
57
  $calendar_id = isset($instance['calendar_id']) ? $instance['calendar_id'] : 0;
58
+ $current_hide = isset($instance['current_hide']) ? $instance['current_hide'] : '';
59
+ $atts = array('html-class'=>'mec-widget '.$current_hide, 'style'=>'classic', 'widget'=>true);
60
 
61
  // Print the skin output
62
  echo $this->render->widget($calendar_id, $atts);
74
  public function form($instance)
75
  {
76
  $calendars = get_posts(array('post_type'=>'mec_calendars', 'posts_per_page'=>'-1', 'meta_query'=>array(array('key'=>'skin', 'value'=>array('list', 'grid', 'monthly_view'), 'compare'=>'IN'))));
77
+ $current_hide = isset($instance['current_hide']) ? $instance['current_hide'] : '';
78
+ $checkbox_state = false;
79
+
80
  echo '<p class="mec-widget-row-container">'
81
  .'<label for="'.$this->get_field_id('title').'">'.__('Title:', 'modern-events-calendar-lite').'</label>'
82
  .'<input class="widefat" type="text" id="'.$this->get_field_id('title').'" name="'.$this->get_field_name('title').'" value="'.(isset($instance['title']) ? $instance['title'] : '').'" />'
86
  {
87
  echo '<p class="mec-widget-row-container">'
88
  .'<label for="'.$this->get_field_id('calendar_id').'">'.__('Shortcode:', 'modern-events-calendar-lite').'</label>'
89
+ .'<select class="widefat" name="'.$this->get_field_name('calendar_id').'" id="'.$this->get_field_id('calendar_id').'" onchange="mec_show_widget_check(this);"><option value="">-----</option>';
90
 
91
+ foreach($calendars as $calendar)
92
+ {
93
+ $skin = get_post_meta($calendar->ID, 'skin', true);
94
+ $checkbox_state = (trim($skin) == 'monthly_view' and (isset($instance['calendar_id']) and $instance['calendar_id'] == $calendar->ID)) ? true : false;
95
+ echo '<option data-skin="'.trim($skin).'" value="'.$calendar->ID.'" '.((isset($instance['calendar_id']) and $instance['calendar_id'] == $calendar->ID) ? 'selected="selected"' : '').'>'.$calendar->post_title.'</option>';
96
+ }
97
 
98
+ echo '</select>'.'</p>'.'<p class="mec-widget-row-container mec-current-check-wrap '.(($checkbox_state) ? '':'mec-util-hidden').'"><label for="'.$this->get_field_id('current_hide').'">'.__('Enable No Event Block Display: ', 'modern-events-calendar-lite').'</label><input type="checkbox" id="'.$this->get_field_id('current_hide').'" name="'.$this->get_field_name('current_hide').'" value="current-hide"'.checked($current_hide, 'current-hide').'>';
 
99
  }
100
  else
101
  {
115
  $instance = array();
116
  $instance['title'] = $new_instance['title'];
117
  $instance['calendar_id'] = $new_instance['calendar_id'];
118
+ $instance['current_hide'] = $new_instance['current_hide'];
119
+
120
  return $instance;
121
  }
122
  }
assets/css/backend.css CHANGED
@@ -4763,3 +4763,81 @@ body .crisp-client .crisp-1rjpbb7[data-last-operator-face=false] .crisp-1rf4xdh
4763
  body .csh-category-item a h6 {
4764
  text-align: left;
4765
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4763
  body .csh-category-item a h6 {
4764
  text-align: left;
4765
  }
4766
+
4767
+ /* Sync Schedule */
4768
+ .mec-form-row.mec-syn-schedule {
4769
+ background: #f7f7f7;
4770
+ padding: 20px;
4771
+ border: 1px solid #eee;
4772
+ box-shadow: 0 1px 11px rgba(0, 0, 0, .034);
4773
+ margin-bottom: 20px;
4774
+ }
4775
+
4776
+ .mec-form-row.mec-syn-schedule p {
4777
+ padding-left: 26px;
4778
+ }
4779
+ .mec-form-row.mec-syn-schedule h2 {
4780
+ margin-top: 0;
4781
+ }
4782
+
4783
+ .mec-form-row.mec-syn-schedule h4 {
4784
+ margin: 10px 0;
4785
+ }
4786
+
4787
+ /* new settings menu */
4788
+ li.wns-be-group-menu-li.mec-settings-menu .mec-settings-submenu {
4789
+ position: absolute;
4790
+ top: -1px;
4791
+ right: -222px;
4792
+ width: 220px;
4793
+ z-index: 9;
4794
+ background: #fff;
4795
+ border: 1px;
4796
+ border-style: solid;
4797
+ border-color: #dedede;
4798
+ margin: 0;
4799
+ overflow: visible;
4800
+ opacity: 0;
4801
+ visibility: hidden;
4802
+ transition: all .23s ease;
4803
+ padding-top: 8px;
4804
+ padding-bottom: 12px;
4805
+ }
4806
+ li.wns-be-group-menu-li.mec-settings-menu:hover > .mec-settings-submenu {
4807
+ visibility: visible;
4808
+ opacity: 1;
4809
+ }
4810
+
4811
+ .mec-settings-menu .mec-settings-submenu:before {
4812
+ position: absolute;
4813
+ z-index: 999;
4814
+ content: " ";
4815
+ height: 0;
4816
+ width: 0;
4817
+ border: 7px solid transparent;
4818
+ border-right-color: #fff;
4819
+ left: -15px;
4820
+ top: 14px;
4821
+ border-right-color: #c5c5c5;
4822
+ right: 0;
4823
+ }
4824
+
4825
+ .mec-settings-menu .mec-settings-submenu:after {
4826
+ position: absolute;
4827
+ z-index: 999;
4828
+ content: " ";
4829
+ height: 0;
4830
+ width: 0;
4831
+ border: 7px solid transparent;
4832
+ border-right-color: #fff;
4833
+ left: -14px;
4834
+ top: 14px;
4835
+ }
4836
+
4837
+ .wns-be-sidebar .mec-settings-menu .mec-settings-submenu a {
4838
+ background: #fff;
4839
+ color: #636363;
4840
+ opacity: 1;
4841
+ font-size: 12px;
4842
+ padding: 6px 4px 6px 26px;
4843
+ }
assets/css/backend.min.css CHANGED
@@ -2,4 +2,4 @@
2
  * Bootstrap v3.3.7 (http://getbootstrap.com)
3
  * Copyright 2011-2016 Twitter, Inc.
4
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5
- */#webnus-dashboard button,#webnus-dashboard input,#webnus-dashboard select,#webnus-dashboard textarea{font-family:inherit;font-size:inherit;line-height:inherit}#webnus-dashboard a{color:#337ab7;text-decoration:none}#webnus-dashboard a:focus,#webnus-dashboard a:hover{color:#23527c}#webnus-dashboard a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}#webnus-dashboard figure{margin:0}#webnus-dashboard img{vertical-align:middle}.w-img-responsive{display:block;max-width:100%;height:auto}.w-img-rounded{border-radius:6px}.w-img-thumbnail{padding:4px;line-height:1w-42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all 0w-2s ease-in-out;-o-transition:all 0w-2s ease-in-out;transition:all 0w-2s ease-in-out;display:inline-block;max-width:100%;height:auto}.w-img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.w-sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.w-sr-only-focusable:active,.w-sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.w-container,.w-container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}[role=button]{cursor:pointer}@media (min-width:768px){.w-container{width:750px}}@media (min-width:992px){.w-container{width:970px}}@media (min-width:1200px){.w-container{width:1170px}}.w-row{margin-left:-15px;margin-right:-15px}.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9,.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9,.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9,.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{float:left}.w-col-xs-12{width:100%}.w-col-xs-11{width:91.66666667%}.w-col-xs-10{width:83.33333333%}.w-col-xs-9{width:75%}.w-col-xs-8{width:66.66666667%}.w-col-xs-7{width:58.33333333%}.w-col-xs-6{width:50%}.w-col-xs-5{width:41.66666667%}.w-col-xs-4{width:33.33333333%}.w-col-xs-3{width:25%}.w-col-xs-2{width:16.66666667%}.w-col-xs-1{width:8w-33333333%}.w-col-xs-pull-12{right:100%}.w-col-xs-pull-11{right:91.66666667%}.w-col-xs-pull-10{right:83.33333333%}.w-col-xs-pull-9{right:75%}.w-col-xs-pull-8{right:66.66666667%}.w-col-xs-pull-7{right:58.33333333%}.w-col-xs-pull-6{right:50%}.w-col-xs-pull-5{right:41.66666667%}.w-col-xs-pull-4{right:33.33333333%}.w-col-xs-pull-3{right:25%}.w-col-xs-pull-2{right:16.66666667%}.w-col-xs-pull-1{right:8w-33333333%}.w-col-xs-pull-0{right:auto}.w-col-xs-push-12{left:100%}.w-col-xs-push-11{left:91.66666667%}.w-col-xs-push-10{left:83.33333333%}.w-col-xs-push-9{left:75%}.w-col-xs-push-8{left:66.66666667%}.w-col-xs-push-7{left:58.33333333%}.w-col-xs-push-6{left:50%}.w-col-xs-push-5{left:41.66666667%}.w-col-xs-push-4{left:33.33333333%}.w-col-xs-push-3{left:25%}.w-col-xs-push-2{left:16.66666667%}.w-col-xs-push-1{left:8w-33333333%}.w-col-xs-push-0{left:auto}.w-col-xs-offset-12{margin-left:100%}.w-col-xs-offset-11{margin-left:91.66666667%}.w-col-xs-offset-10{margin-left:83.33333333%}.w-col-xs-offset-9{margin-left:75%}.w-col-xs-offset-8{margin-left:66.66666667%}.w-col-xs-offset-7{margin-left:58.33333333%}.w-col-xs-offset-6{margin-left:50%}.w-col-xs-offset-5{margin-left:41.66666667%}.w-col-xs-offset-4{margin-left:33.33333333%}.w-col-xs-offset-3{margin-left:25%}.w-col-xs-offset-2{margin-left:16.66666667%}.w-col-xs-offset-1{margin-left:8w-33333333%}.w-col-xs-offset-0{margin-left:0}@media (min-width:768px){.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9{float:left}.w-col-sm-12{width:100%}.w-col-sm-11{width:91.66666667%}.w-col-sm-10{width:83.33333333%}.w-col-sm-9{width:75%}.w-col-sm-8{width:66.66666667%}.w-col-sm-7{width:58.33333333%}.w-col-sm-6{width:50%}.w-col-sm-5{width:41.66666667%}.w-col-sm-4{width:33.33333333%}.w-col-sm-3{width:25%}.w-col-sm-2{width:16.66666667%}.w-col-sm-1{width:8w-33333333%}.w-col-sm-pull-12{right:100%}.w-col-sm-pull-11{right:91.66666667%}.w-col-sm-pull-10{right:83.33333333%}.w-col-sm-pull-9{right:75%}.w-col-sm-pull-8{right:66.66666667%}.w-col-sm-pull-7{right:58.33333333%}.w-col-sm-pull-6{right:50%}.w-col-sm-pull-5{right:41.66666667%}.w-col-sm-pull-4{right:33.33333333%}.w-col-sm-pull-3{right:25%}.w-col-sm-pull-2{right:16.66666667%}.w-col-sm-pull-1{right:8w-33333333%}.w-col-sm-pull-0{right:auto}.w-col-sm-push-12{left:100%}.w-col-sm-push-11{left:91.66666667%}.w-col-sm-push-10{left:83.33333333%}.w-col-sm-push-9{left:75%}.w-col-sm-push-8{left:66.66666667%}.w-col-sm-push-7{left:58.33333333%}.w-col-sm-push-6{left:50%}.w-col-sm-push-5{left:41.66666667%}.w-col-sm-push-4{left:33.33333333%}.w-col-sm-push-3{left:25%}.w-col-sm-push-2{left:16.66666667%}.w-col-sm-push-1{left:8w-33333333%}.w-col-sm-push-0{left:auto}.w-col-sm-offset-12{margin-left:100%}.w-col-sm-offset-11{margin-left:91.66666667%}.w-col-sm-offset-10{margin-left:83.33333333%}.w-col-sm-offset-9{margin-left:75%}.w-col-sm-offset-8{margin-left:66.66666667%}.w-col-sm-offset-7{margin-left:58.33333333%}.w-col-sm-offset-6{margin-left:50%}.w-col-sm-offset-5{margin-left:41.66666667%}.w-col-sm-offset-4{margin-left:33.33333333%}.w-col-sm-offset-3{margin-left:25%}.w-col-sm-offset-2{margin-left:16.66666667%}.w-col-sm-offset-1{margin-left:8w-33333333%}.w-col-sm-offset-0{margin-left:0}}@media (min-width:992px){.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9{float:left}.w-col-md-12{width:100%}.w-col-md-11{width:91.66666667%}.w-col-md-10{width:83.33333333%}.w-col-md-9{width:75%}.w-col-md-8{width:66.66666667%}.w-col-md-7{width:58.33333333%}.w-col-md-6{width:50%}.w-col-md-5{width:41.66666667%}.w-col-md-4{width:33.33333333%}.w-col-md-3{width:25%}.w-col-md-2{width:16.66666667%}.w-col-md-1{width:8w-33333333%}.w-col-md-pull-12{right:100%}.w-col-md-pull-11{right:91.66666667%}.w-col-md-pull-10{right:83.33333333%}.w-col-md-pull-9{right:75%}.w-col-md-pull-8{right:66.66666667%}.w-col-md-pull-7{right:58.33333333%}.w-col-md-pull-6{right:50%}.w-col-md-pull-5{right:41.66666667%}.w-col-md-pull-4{right:33.33333333%}.w-col-md-pull-3{right:25%}.w-col-md-pull-2{right:16.66666667%}.w-col-md-pull-1{right:8w-33333333%}.w-col-md-pull-0{right:auto}.w-col-md-push-12{left:100%}.w-col-md-push-11{left:91.66666667%}.w-col-md-push-10{left:83.33333333%}.w-col-md-push-9{left:75%}.w-col-md-push-8{left:66.66666667%}.w-col-md-push-7{left:58.33333333%}.w-col-md-push-6{left:50%}.w-col-md-push-5{left:41.66666667%}.w-col-md-push-4{left:33.33333333%}.w-col-md-push-3{left:25%}.w-col-md-push-2{left:16.66666667%}.w-col-md-push-1{left:8w-33333333%}.w-col-md-push-0{left:auto}.w-col-md-offset-12{margin-left:100%}.w-col-md-offset-11{margin-left:91.66666667%}.w-col-md-offset-10{margin-left:83.33333333%}.w-col-md-offset-9{margin-left:75%}.w-col-md-offset-8{margin-left:66.66666667%}.w-col-md-offset-7{margin-left:58.33333333%}.w-col-md-offset-6{margin-left:50%}.w-col-md-offset-5{margin-left:41.66666667%}.w-col-md-offset-4{margin-left:33.33333333%}.w-col-md-offset-3{margin-left:25%}.w-col-md-offset-2{margin-left:16.66666667%}.w-col-md-offset-1{margin-left:8w-33333333%}.w-col-md-offset-0{margin-left:0}}@media (min-width:1200px){.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9{float:left}.w-col-lg-12{width:100%}.w-col-lg-11{width:91.66666667%}.w-col-lg-10{width:83.33333333%}.w-col-lg-9{width:75%}.w-col-lg-8{width:66.66666667%}.w-col-lg-7{width:58.33333333%}.w-col-lg-6{width:50%}.w-col-lg-5{width:41.66666667%}.w-col-lg-4{width:33.33333333%}.w-col-lg-3{width:25%}.w-col-lg-2{width:16.66666667%}.w-col-lg-1{width:8w-33333333%}.w-col-lg-pull-12{right:100%}.w-col-lg-pull-11{right:91.66666667%}.w-col-lg-pull-10{right:83.33333333%}.w-col-lg-pull-9{right:75%}.w-col-lg-pull-8{right:66.66666667%}.w-col-lg-pull-7{right:58.33333333%}.w-col-lg-pull-6{right:50%}.w-col-lg-pull-5{right:41.66666667%}.w-col-lg-pull-4{right:33.33333333%}.w-col-lg-pull-3{right:25%}.w-col-lg-pull-2{right:16.66666667%}.w-col-lg-pull-1{right:8w-33333333%}.w-col-lg-pull-0{right:auto}.w-col-lg-push-12{left:100%}.w-col-lg-push-11{left:91.66666667%}.w-col-lg-push-10{left:83.33333333%}.w-col-lg-push-9{left:75%}.w-col-lg-push-8{left:66.66666667%}.w-col-lg-push-7{left:58.33333333%}.w-col-lg-push-6{left:50%}.w-col-lg-push-5{left:41.66666667%}.w-col-lg-push-4{left:33.33333333%}.w-col-lg-push-3{left:25%}.w-col-lg-push-2{left:16.66666667%}.w-col-lg-push-1{left:8w-33333333%}.w-col-lg-push-0{left:auto}.w-col-lg-offset-12{margin-left:100%}.w-col-lg-offset-11{margin-left:91.66666667%}.w-col-lg-offset-10{margin-left:83.33333333%}.w-col-lg-offset-9{margin-left:75%}.w-col-lg-offset-8{margin-left:66.66666667%}.w-col-lg-offset-7{margin-left:58.33333333%}.w-col-lg-offset-6{margin-left:50%}.w-col-lg-offset-5{margin-left:41.66666667%}.w-col-lg-offset-4{margin-left:33.33333333%}.w-col-lg-offset-3{margin-left:25%}.w-col-lg-offset-2{margin-left:16.66666667%}.w-col-lg-offset-1{margin-left:8w-33333333%}.w-col-lg-offset-0{margin-left:0}}.w-clearfix:after,.w-clearfix:before,.w-container-fluid:after,.w-container-fluid:before,.w-container:after,.w-container:before,.w-row:after,.w-row:before{content:" ";display:table}.w-clearfix:after,.w-container-fluid:after,.w-container:after,.w-row:after{clear:both}.w-center-block{display:block;margin-left:auto;margin-right:auto}.w-pull-right{float:right!important}.w-pull-left{float:left!important}.w-hide{display:none!important}.w-show{display:block!important}.w-invisible{visibility:hidden}.w-text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.w-hidden{display:none!important}.w-affix{position:fixed}.mec-image-popup-wrap{display:none}#wns-be-infobar.sticky{position:fixed;top:32px;background:#fff;z-index:9999;width:82%}.wns-be-main .wns-saved-settings.sticky{position:fixed;width:62.5%;top:111px;z-index:999999999999999999}#mec-search-settings{border-radius:2px;min-height:32px;box-shadow:0 3px 14px -5px rgba(0,0,0,.2),inset 0 1px 2px rgba(0,0,0,.07);padding:9px 10px 11px;margin-right:6px;color:#7c7772;font-size:12px;width:200px}#mec-search-settings::-webkit-input-placeholder{color:#7c7772}#mec-search-settings::-moz-placeholder{color:#7c7772}#mec-search-settings:-ms-input-placeholder{color:#7c7772}#mec-search-settings:-moz-placeholder{color:#7c7772}.mec-export-settings,.mec-import-settings{font-weight:700;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:8px 32px;height:36px;letter-spacing:.2px;line-height:36px;font-size:13px;color:#fff;text-decoration:none;display:inline-block}.mec-export-settings:hover,.mec-import-settings:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);color:#fff}textarea.mec-import-settings-content{display:block;width:100%;min-height:120px;margin-bottom:25px;padding:10px 15px}.mec-import-options-notification{display:inline-block}.mec-import-options-notification .mec-message-import-error,.mec-import-options-notification .mec-message-import-success{display:inline-block;padding:15px 12px;margin-left:12px;opacity:0;visibility:hidden;font-weight:700}.mec-import-options-notification .mec-message-import-success{opacity:1;visibility:visible;border:2px solid green}.mec-import-options-notification .mec-message-import-error{opacity:1;visibility:visible;border:2px solid #e62117}.mec-export-settings:focus,.mec-import-settings:focus{color:#fff}.mec-import-settings-wrap{position:relative}.mec-loarder-wrap{position:absolute;top:0;bottom:0;left:0;right:0;background:rgba(202,202,202,.7);z-index:9999}.mec-loarder-wrap.mec-settings-loader{top:34px}.mec-loarder{position:absolute;width:64px;height:64px;top:calc(50% - 32px);left:calc(50% - 36px)}.mec-loarder div{display:inline-block;position:absolute;left:6px;width:4px;background:#fff;animation:mec-loarder 1.2s cubic-bezier(0,.5,.5,1) infinite}.mec-loarder div:nth-child(1){left:27px;animation-delay:-.24s;background:#0075ff}.mec-loarder div:nth-child(2){left:36px;animation-delay:-.12s;background:#028bff}.mec-loarder div:nth-child(3){left:45px;animation-delay:0;background:#32a0ff}@keyframes mec-loarder{0%{top:6px;height:51px}100%,50%{top:19px;height:26px}}.w-box.support-page.searchbox{background:#008aff;background:linear-gradient(180deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;min-height:260px;text-align:center;border-radius:2px}#webnus-dashboard .search-form input{background:rgba(255,255,255,.2);border:none;width:50%;outline:0;color:rgba(255,255,255,.7);font-size:18px;border-radius:4px 0 0 4px;box-shadow:0 1px 2px 0 rgba(0,0,0,.03);-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s;padding:20px 32px;margin:0}#webnus-dashboard .search-form button{background:rgba(255,255,255,.2);border:none;padding:20px 32px;margin-left:-2px;color:#fff;border-radius:0 4px 4px 0;font-size:18px;cursor:pointer;-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s}#webnus-dashboard .search-form button:hover{background:#fff;color:#3a3c4c}.w-box.support-page.searchbox p{font-size:30px}.search-form input::-webkit-input-placeholder{color:rgba(255,255,255,.7)}.search-form input::-moz-placeholder{color:rgba(255,255,255,.7)}.search-form input:-ms-input-placeholder{color:rgba(255,255,255,.7)}.search-form input:-moz-placeholder{color:rgba(255,255,255,.7)}#webnus-dashboard .search-form input:active,#webnus-dashboard .search-form input:focus{box-shadow:0 10px 20px rgba(0,0,0,.14);background:#fff;color:#3a3c4c}#webnus-dashboard .search-form input:active::-webkit-input-placeholder,#webnus-dashboard .search-form input:focus::-webkit-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active::-moz-placeholder,#webnus-dashboard .search-form input:focus::-moz-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-ms-input-placeholder,#webnus-dashboard .search-form input:focus:-ms-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-moz-placeholder,#webnus-dashboard .search-form input:focus:-moz-placeholder{color:#3a3c4c}#webnus-dashboard .w-box.support-page.mec-ticksy{text-align:center;min-height:260px}#webnus-dashboard .w-box.support-page.mec-ticksy p{font-size:20px;width:70%;margin:0 auto;margin-bottom:40px;margin-top:40px}#webnus-dashboard .w-box.support-page.mec-ticksy a{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:12px 20px;cursor:pointer;margin-bottom:40px;display:inline-block}#webnus-dashboard .w-box.support-page.mec-ticksy a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}.mec-faq-accordion>.mec-faq-accordion-content{display:none}#webnus-dashboard .mec-faq-accordion-trigger a{font-size:16px;padding:12px;background:#f1f1f1;display:block;color:#222;line-height:17px;outline:0}.mec-faq-accordion-trigger{margin-bottom:5px;position:relative}#webnus-dashboard .mec-faq-accordion-trigger a:after{font-family:simple-line-icons;content:"\e095";position:absolute;right:12px;font-weight:700}.mec-faq-accordion-content{padding:5px 14px 25px}#webnus-dashboard .mec-faq-accordion-trigger a.active:after{content:"\e082"}#webnus-dashboard .support-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}#webnus-dashboard .support-page-links a:hover,#webnus-dashboard .w-box.support-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .support-page-links{display:inline-block;margin:12px 4px 16px 0}.support-page-links.link-to-doc a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.support-page-links.link-to-videos a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}.support-page-links.link-to-articles a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}.w-box.support-page.articles-box .w-box-content a{display:block;padding:6px 0}#webnus-dashboard .w-box.support-page.videobox .w-button a{color:#fff;font-size:10px;padding:5px 15px;min-height:10px;font-weight:500;border-radius:22px;box-shadow:0 3px 10px -4px #ff5a35;text-shadow:none;background:#ff5a35;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);border:none;transition:.24s}.w-box.support-page.articles-box,.w-box.support-page.faq-box{min-height:500px}.w-box.support-page.videobox{border-radius:2px;min-height:282px;box-shadow:0 1px 6px rgba(0,0,0,.039)!important}#webnus-dashboard .w-box.support-page.videobox .w-button a i{margin-right:6px}.support-page .w-box-content ul{margin-top:5px;padding-left:5px}.support-page .w-box-content ul li{font-size:13px}.support-page .w-box-content ul li i{font-size:17px;vertical-align:text-bottom;margin-right:7px;color:#999}.w-box.mec-activation{background:#fff url(../img/dp-dsb-support.jpg) no-repeat top right}.w-box.mec-activation .w-box-head{color:#40d8f0;width:75%}.w-box.mec-activation .w-box-content{padding:10px 30px}.w-box.mec-activation input[type=radio]{display:none}.w-box.mec-activation input[type=radio]+label{color:#000;font-size:13px;line-height:14px!important;color:#7b7b7b}.w-box.mec-activation input[type=radio].checked+label{color:#40d8f0}.w-box.mec-activation input[type=radio]+label span{display:inline-block;margin:-2px 6px 0 0;vertical-align:middle;cursor:pointer;height:14px;width:14px;text-align:center;background-color:#fff;border:1px solid #d4d4d4;border-radius:100%;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative}.w-box.mec-activation input[type=radio].checked+label span{background-color:#40d8f0;border-color:#40d8f0;box-shadow:0 2px 14px -3px #40d8f0}.w-box.mec-activation input[type=radio].checked+label span:after{content:'';display:block;position:absolute;top:4px;left:4px;width:4px;height:4px;background:#fff;border-radius:100%}.w-box.mec-activation .LicenseType label{padding-right:20px;font-weight:500}.w-box.mec-activation .LicenseField{display:inline-block;position:relative;margin-top:20px}.w-box.mec-activation input[name=MECPurchaseCode]{box-shadow:inset 0 1px 2px rgba(0,0,0,.07);min-width:220px;background:#f4f4f4;border:none;border-radius:33px;width:500px;min-height:50px;margin:0;padding-left:20px;text-align:left}#webnus-dashboard .w-box.mec-activation input[type=submit]{height:40px;line-height:40px;font-weight:600;border:none;cursor:pointer;padding:0 30px;border-radius:33px;color:#fff;letter-spacing:1px;text-transform:uppercase;font-size:12px;background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67;transition:all .28s ease;position:absolute;right:5px;top:4px;font-size:12px}#webnus-dashboard .w-box.mec-activation input[type=submit]:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}#MECActivation .MECPurchaseStatus,.addon-activation-form .MECPurchaseStatus{display:inline-block;width:40px;height:40px;text-align:center;padding-top:9px;color:#fff;font-weight:700;font-size:18px;border-radius:50%;padding-top:8px;position:absolute;right:-51px;top:calc(50% - 20px)}.MECPurchaseStatus:after,.MECPurchaseStatus:before{position:absolute;border-radius:50px;background:#fff;content:'';transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:before{width:22px;height:4px;right:9px;top:18px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:after{width:22px;height:4px;right:9px;top:18px;transform:rotate(-45deg)}.MECPurchaseStatus.PurchaseSuccess:before{width:13px;height:4px;right:19px;top:21px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseSuccess:after{width:22px;height:4px;right:5px;top:18px;transform:rotate(-45deg)}#MECActivation .MECPurchaseStatus.PurchaseError,.addon-activation-form .MECPurchaseStatus.PurchaseError{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}#MECActivation .MECPurchaseStatus.PurchaseSuccess,.addon-activation-form .MECPurchaseStatus.PurchaseSuccess{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.wna-spinner-wrap{position:absolute;background:#000;width:509px;height:64px;top:-8px;border-radius:50px;z-index:999;background-color:#fff;opacity:.9}.wna-spinner{width:40px;height:40px;position:relative;margin:6px auto}.wna-spinner .double-bounce1,.wna-spinner .double-bounce2{width:100%;height:100%;border-radius:50%;background-color:#40d8f0;opacity:.6;position:absolute;top:0;left:0;-webkit-animation:sk-bounce 2s infinite ease-in-out;animation:sk-bounce 2s infinite ease-in-out}.wna-spinner .double-bounce2{-webkit-animation-delay:-1s;animation-delay:-1s}#MECActivation .MECLicenseMessage,.addon-activation-form .MECLicenseMessage{margin-top:24px;color:#f64;max-width:570px}.box-addon-activation-toggle-content,.box-addon-activation-toggle-head{display:none}.addon-activation-form h3{font-size:15px;font-weight:400;margin:34px 0 -7px}.box-addon-activation-toggle-head{line-height:1.5;font-size:16px;margin-top:20px;cursor:pointer}.box-addon-activation-toggle-head i{margin-right:7px;cursor:pointer;font-weight:700}#mec-advanced-wraper div:first-child>ul{display:block;margin:5px 0;padding:5px 0;width:390px;border:1px solid #e1e2e3;border-radius:2px;box-shadow:0 1px 3px rgba(0,0,0,.05)}#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 #e1e2e3}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}#mec-advanced-wraper div:first-child>ul>ul>li:hover,.mec-active{background:#008aff!important;color:#fff!important}@-webkit-keyframes sk-bounce{0%,100%{-webkit-transform:scale(0)}50%{-webkit-transform:scale(1)}}@keyframes sk-bounce{0%,100%{transform:scale(0);-webkit-transform:scale(0)}50%{transform:scale(1);-webkit-transform:scale(1)}}.w-col-sm-3 .w-box.addon{min-height:auto;box-shadow:0 3px 16px -5px rgba(0,0,0,.1);border-radius:2px}.w-box-child.mec-addon-box{padding:20px 20px}.mec-addon-box-head{border-bottom:1px solid #e8e8e8;padding-bottom:5px;margin-bottom:14px;position:relative}.mec-addon-box-version{position:relative;background:#eaeaea;border-radius:1px;padding:0 8px;color:#5a5a5a;font-size:11px;letter-spacing:.2px;line-height:21px;display:inline-block;margin:3px 0}.mec-addon-box-title{font-weight:700;font-size:18px;line-height:25px}.mec-addon-box-title a span{color:#444;font-size:15px}.mec-addon-box-content p{color:#777;font-size:13px}.mec-addon-box-mec-version{background:#f3f3f3;padding:10px;font-size:13px}#webnus-dashboard .addons-page-links{display:inline-block;margin:12px 4px 16px 0}#webnus-dashboard .addons-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}.addons-page-links.link-to-purchase a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.addons-page-links.link-to-install-addons a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}#webnus-dashboard .addons-page-links a:hover,#webnus-dashboard .w-box.addons-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}.mec-addon-box-footer{margin-top:25px}#webnus-dashboard .mec-addon-box-footer a{font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:7px 19px;margin-top:10px;display:inline-block;letter-spacing:.2px;color:#fff;width:100%;text-align:center}#webnus-dashboard .mec-addon-box-footer a.mec-addon-box-intro{box-shadow:0 3px 10px -4px #ff5a35;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%)}#webnus-dashboard .mec-addon-box-footer a:hover{background:#222!important;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%)!important;box-shadow:0 5px 23px -7px rgba(0,0,0,.5)!important;cursor:pointer!important}#webnus-dashboard .mec-addon-box-footer a i{margin-right:6px;color:#fff}@media(max-width:1366px){.wns-be-container #wns-be-content{padding:5px 15px 0}.mec-form-row .mec-col-8 label{font-size:10px}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{font-size:10px}}@media (max-width:780px){.wns-be-container #wns-be-content{padding:10px 0}.wns-be-container .mec-form-row .mec-col-8 label{width:50%;display:block}.wns-be-container .mec-form-row input[type=checkbox]{width:14px;height:14px}.wns-be-container .wns-be-sidebar li .subsection a{padding-left:30px}.wns-be-container .wns-be-sidebar{width:200px}.wns-be-container .wns-be-main{margin-left:200px}.wns-be-container .mec-tooltip .box{min-width:235px!important}.wns-be-container .mec-tooltip .box p{font-size:12px!important}#wns-be-infobar.sticky{position:unset}}@media (max-width:480px){.wns-be-container .wns-be-sidebar{width:100%;position:unset;float:none}.wns-be-container .wns-be-main{margin-left:0;width:100%;position:unset}.wns-be-container{margin-top:50px}.wns-be-container #wns-be-infobar:before{width:100%}.wns-be-container #wns-be-infobar{height:150px}#mec-search-settings{margin-top:80px;width:181px}}.addons-page-error,.addons-page-notice{display:block;margin-top:15px;margin-bottom:0;background:#fff;border-left:4px solid #00a0d2;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);padding:1px 12px}.addons-page-error p,.addons-page-notice p{margin:.5em 0;padding:2px;font-size:13px}.addons-page-error{border-left-color:#dc3232}.mec-addon-box-comingsoon{background:#eaeaea;padding:8px 11px;color:#5a5a5a;font-size:14px;font-weight:500;text-align:center}.mec-addons .w-row .w-col-sm-3:nth-child(4n+1){clear:left}@media (min-width:960px){#webnus-dashboard .mec-addon-box-footer .w-button{text-align:right}}@media (min-width:1401px){.mec-addon-box-title a span{font-size:17px}}.mec-pro-notice{margin-top:24px;line-height:30px}.mec-pro-notice .info-msg{padding:20px 30px 27px;margin-bottom:0}.mec-intro-section .w-box-content{text-align:center}.mec-intro-section .w-box-content.mec-intro-section-welcome{max-width:600px;margin:0 auto}.mec-intro-section .w-box-content.mec-intro-section-welcome h3{font-size:27px}a.mec-intro-section-link-tag.button.button-hero{margin:0 10px 40px}a.mec-intro-section-link-tag.button.button-primary.button-hero{color:#fff!important}a.mec-intro-section-link-tag.button.button-secondary.button-hero{color:#000!important}.mec-intro-section-ifarme iframe{border:1px solid #e7e7e7;border-radius:3px;padding:10px;box-shadow:0 3px 10px -6px rgba(0,0,0,.2)}.w-box-content.mec-intro-section-welcome p{margin-bottom:0}.mec-tooltip a:focus{box-shadow:none}#mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields{padding-bottom:150px!important}#mec_taxes_fees_container_toggle{margin-bottom:60px}#mec_taxes_fees_container_toggle{margin-bottom:60px}.wns-be-sidebar li{position:relative}.wns-be-sidebar li .submneu-hover{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}.wns-be-sidebar li:hover{background:#fff}.wns-be-sidebar li:hover .submneu-hover{opacity:1;visibility:visible}.wns-be-sidebar li .submneu-hover a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.wns-be-sidebar li .submneu-hover a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar li .submneu-hover:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar li a:focus,.wns-be-sidebar li:focus{outline:-webkit-focus-ring-color auto 0;border:0;box-shadow:none}@media (max-width:480px){.wns-be-sidebar li .submneu-hover{width:175px;right:0}.wns-be-sidebar li .submneu-hover a{font-size:11px;padding:5px 5px 5px 20px}}.mec-tooltip:hover:after,.mec-tooltip:hover:before{display:none}.mec-tooltip{display:inline-flex;bottom:7px}.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-tooltip .box p,.mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0}.mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-tooltip:hover .box{padding:20px;border-radius:8px}.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-tooltip .box p a,.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-tooltip .box a:hover{color:#f90}.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-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-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}form#mec_reg_fields_form input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:14px;height:14px;margin:-1px 0 0 -2px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}form#mec_reg_fields_form input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff;width:4px;height:4px}form#mec_reg_fields_form input[type=radio]{min-height:0;margin-right:6px}form#mec_reg_fields_form label{margin-right:20px}@media(min-width:1200px) and (max-width:1366px){.mec-tooltip .box.left{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.left:after{top:50%!important;right:100%!important}.mec-tooltip .box.left:before{left:50%!important;top:100%!important}.mec-tooltip .box{min-width:225px}.mec-tooltip .box h5{font-size:15px}.mec-tooltip .box .content{font-size:12px}}@media(max-width:1366px){.wns-be-container .wns-be-group-tab p{margin-top:0}}.mec-addons-notification-box-wrap .w-col-sm-12{padding:0}.mec-addons-notification-box-wrap img{width:auto}.mec-addons-notification-box-image{width:555px;display:inline-block;vertical-align:top}.mec-addons-notification-box-content{width:calc(100% - 559px);display:inline-block}.mec-addons-notification-box-content p{margin-top:1%;line-height:1.5;font-size:16px}.mec-addons-notification-box-content .w-box-content{padding-top:0;padding-bottom:0}.mec-addons-notification-box-content ol{font-size:16px}.mec-addons-notification-box-content a{background:#38d5ed;color:#fff!important;padding:10px 26px;margin-top:5px;display:inline-block;border-radius:3px;text-transform:capitalize;font-size:16px;letter-spacing:.4px;transition:all .1s ease;font-weight:600;text-decoration:none}.mec-addons-notification-box-content a:hover{background:#000}.w-clearfix.w-box.mec-addons-notification-box-wrap span{right:0;left:unset;cursor:pointer;background:#fff;padding:0 16px}.w-clearfix.w-box.mec-addons-notification-box-wrap span i{font-size:28px;vertical-align:sub;color:#f2113e}.wns-be-container .mec-addons-notification-wrap{padding:0;margin:0}.wns-be-container .mec-addons-notification-wrap .w-col-sm-12{padding:0}.wns-be-container .w-box{margin-top:0}.wns-be-container.mec-addons-notification-set-box{margin-right:15px;margin-top:50px;margin-bottom:27px}@media(max-width:1200px){.mec-addons-notification-box-content,.mec-addons-notification-box-image{width:100%;display:block}.mec-addons-notification-box-image{text-align:center}}@media(max-width:768px){.mec-addons-notification-box-image img{width:100%;height:auto}}body.rtl .wns-be-sidebar{width:260px;float:right;position:relative}body.rtl .wns-be-main{margin-left:0;border-left:0;margin-right:260px;border-right:1px solid #dedede}body.rtl .w-box.mec-activation .LicenseField{direction:rtl}body.rtl .w-box.mec-activation input[name=MECPurchaseCode]{text-align:right;padding-right:20px}body.rtl #MECActivation .MECPurchaseStatus,body.rtl .addon-activation-form .MECPurchaseStatus{right:auto;left:-51px}body.rtl #webnus-dashboard .w-box.mec-activation input[type=submit]{right:auto;left:5px}body.rtl .wns-be-sidebar .wns-be-group-menu li a{padding:13px 20px 13px 4px}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:0;padding-right:24px}body.rtl .wns-be-sidebar .has-sub span.extra-icon{float:left}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:auto;left:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:transparent;border-left-color:#fff;right:auto;left:-1px;top:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:transparent;border-left-color:#c5c5c5;right:auto;left:0}body.rtl .mec-col-1,body.rtl .mec-col-10,body.rtl .mec-col-11,body.rtl .mec-col-12,body.rtl .mec-col-2,body.rtl .mec-col-3,body.rtl .mec-col-4,body.rtl .mec-col-5,body.rtl .mec-col-6,body.rtl .mec-col-7,body.rtl .mec-col-8,body.rtl .mec-col-9{float:right;margin:0 1% 0 0}body.rtl .wns-be-sidebar li .submneu-hover{right:auto;left:-222px}body.rtl .wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:auto;right:-1px;top:14px}body.rtl #mec_styles_form #mec_styles_CSS{direction:ltr}body.rtl .w-box.mec-activation{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1)}body.rtl .w-box.mec-activation .w-box-content,body.rtl .w-box.mec-activation .w-box-head{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1);display:block}body.rtl .w-box.mec-activation .w-box-head{width:100%}body.rtl .wns-be-container #wns-be-infobar:before{left:auto;right:0}body.rtl .wns-be-container .dpr-btn.dpr-save-btn{float:left}body.rtl .wns-be-container .wns-be-group-tab h2:before,body.rtl .wns-be-container .wns-be-group-tab h4:before{left:auto;right:0;margin-right:0;margin-left:5px}body.rtl #mec_gateways_form .mec-tooltip{float:left}div#plugin-information-content .section{margin-top:-600px}.mec-details-addons-container{margin-top:20px}.mec-details-addons-wrap img{float:left;width:19%;margin-right:17px}.mec-details-addons-wrap{clear:both;margin-bottom:80px;display:block;position:relative}.mec-details-addons-wrap a{text-decoration:none}.mec-details-addons-wrap p{float:left;width:340px;margin-top:0;margin-bottom:30px}.mec-details-addons-title{font-weight:700}.mec-details-addons-title a{color:#444}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx{border-radius:10px!important;box-shadow:0 4px 38px rgba(0,0,0,.14)!important}body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl,body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl *,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z *{font-family:proxima-nova,-apple-system,BlinkMacSystemFont,"Segoe UI",Catamaran,sans-serif!important}body .crisp-client .crisp-1rjpbb7 .crisp-145mbcr,body .crisp-client .crisp-1rjpbb7 .crisp-1jrqqbm:hover{background-color:#fff!important}body .crisp-client .crisp-1rjpbb7 .crisp-14u434g{border-color:#e7e8e9!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq{font-size:20px!important;width:14px!important;height:19px!important;opacity:.85}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq:hover{opacity:.99}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a{font-size:13px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a::-webkit-input-placeholder{color:#717273!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf{background-color:#008aff!important;color:#fff!important;box-shadow:none!important;border-radius:5px!important;padding:15px 25px 15px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf .crisp-1o2g4mc{color:#fff!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-z89v5n .crisp-162m9xf{background-color:#f1f2f3!important;border-radius:5px!important;padding:15px 25px 15px!important;box-shadow:none!important;color:#121314!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-type=audio] .crisp-z89v5n .crisp-162m9xf{background-color:#d1d7dc!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=operator] .crisp-z89v5n .crisp-1o2g4mc{color:#121314!important;-webkit-text-fill-color:#121314!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-39hskb{opacity:.4;margin-right:5px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-ehr6mw{opacity:.68;font-size:12px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg{background-image:linear-gradient(125deg,#008aff -10%,#0066b1 100%)!important;height:110px!important;padding-top:35px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-1uw6f17,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-85evuk,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-nu40j6{font-size:17px!important;line-height:28px!important;padding-top:10px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06{background-color:#008aff!important;background-image:linear-gradient(125deg,#008aff -10%,#008af0 100%)!important;box-shadow:0 5px 34px -6px #008aff!important}body .crisp-client .crisp-1rjpbb7 .crisp-4oo1n4{background-color:transparent!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx[data-chat-status=ongoing] .crisp-1784wh6 .crisp-1xmtdlg .crisp-172kolj{margin-top:-10px!important}body .crisp-client .crisp-1rjpbb7[data-last-operator-face=false] .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06 .crisp-16qgsyi .crisp-101bp3x[data-is-ongoing=false]{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OCIgaGVpZ2h0PSI1NSIgdmlld0JveD0iMCAwIDU4IDU1Ij4NCiAgPGcgaWQ9ImNoYXQtc3ZncmVwby1jb21fMV8iIGRhdGEtbmFtZT0iY2hhdC1zdmdyZXBvLWNvbSAoMSkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTEuNSkiPg0KICAgIDxwYXRoIGlkPSJQYXRoXzEiIGRhdGEtbmFtZT0iUGF0aCAxIiBkPSJNMjksMS41YzE2LjAxNiwwLDI5LDExLjY0MSwyOSwyNmEyNC4wMSwyNC4wMSwwLDAsMS00LjgsMTQuMzE4Yy40LDQuNzQ1LDEuNTQyLDExLjQyOCw0LjgsMTQuNjgyLDAsMC05Ljk0My0xLjQtMTYuNjc3LTUuNDYybC0uMDIyLjAwOWMtMi43NjQtMS44LTUuNTMyLTMuNjU2LTYuMS00LjEyNmExLDEsMCwwLDAtMS4zMy0uMjc3LDEuMDE3LDEuMDE3LDAsMCwwLS40ODkuODQ4Yy0uMDEuNjIyLjAwNS43ODQsNS41ODUsNC40MjFBMzEuOTE0LDMxLjkxNCwwLDAsMSwyOSw1My41Yy0xNi4wMTYsMC0yOS0xMS42NDEtMjktMjZTMTIuOTg0LDEuNSwyOSwxLjVaIiBmaWxsPSIjZmZmIi8+DQogICAgPGNpcmNsZSBpZD0iRWxsaXBzZV8xIiBkYXRhLW5hbWU9IkVsbGlwc2UgMSIgY3g9IjMiIGN5PSIzIiByPSIzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMiAyNC41KSIgZmlsbD0iIzAwOGFmZiIvPg0KICAgIDxjaXJjbGUgaWQ9IkVsbGlwc2VfMiIgZGF0YS1uYW1lPSJFbGxpcHNlIDIiIGN4PSIzIiBjeT0iMyIgcj0iMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYgMjQuNSkiIGZpbGw9IiMwMDhhZmYiLz4NCiAgICA8Y2lyY2xlIGlkPSJFbGxpcHNlXzMiIGRhdGEtbmFtZT0iRWxsaXBzZSAzIiBjeD0iMyIgY3k9IjMiIHI9IjMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQwIDI0LjUpIiBmaWxsPSIjMDA4YWZmIi8+DQogIDwvZz4NCjwvc3ZnPg0K)!important;height:31px!important;top:16px!important;left:14px!important}body .csh-category-item a h6{text-align:left}
2
  * Bootstrap v3.3.7 (http://getbootstrap.com)
3
  * Copyright 2011-2016 Twitter, Inc.
4
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5
+ */#webnus-dashboard button,#webnus-dashboard input,#webnus-dashboard select,#webnus-dashboard textarea{font-family:inherit;font-size:inherit;line-height:inherit}#webnus-dashboard a{color:#337ab7;text-decoration:none}#webnus-dashboard a:focus,#webnus-dashboard a:hover{color:#23527c}#webnus-dashboard a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}#webnus-dashboard figure{margin:0}#webnus-dashboard img{vertical-align:middle}.w-img-responsive{display:block;max-width:100%;height:auto}.w-img-rounded{border-radius:6px}.w-img-thumbnail{padding:4px;line-height:1w-42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all 0w-2s ease-in-out;-o-transition:all 0w-2s ease-in-out;transition:all 0w-2s ease-in-out;display:inline-block;max-width:100%;height:auto}.w-img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.w-sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.w-sr-only-focusable:active,.w-sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.w-container,.w-container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}[role=button]{cursor:pointer}@media (min-width:768px){.w-container{width:750px}}@media (min-width:992px){.w-container{width:970px}}@media (min-width:1200px){.w-container{width:1170px}}.w-row{margin-left:-15px;margin-right:-15px}.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9,.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9,.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9,.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{float:left}.w-col-xs-12{width:100%}.w-col-xs-11{width:91.66666667%}.w-col-xs-10{width:83.33333333%}.w-col-xs-9{width:75%}.w-col-xs-8{width:66.66666667%}.w-col-xs-7{width:58.33333333%}.w-col-xs-6{width:50%}.w-col-xs-5{width:41.66666667%}.w-col-xs-4{width:33.33333333%}.w-col-xs-3{width:25%}.w-col-xs-2{width:16.66666667%}.w-col-xs-1{width:8w-33333333%}.w-col-xs-pull-12{right:100%}.w-col-xs-pull-11{right:91.66666667%}.w-col-xs-pull-10{right:83.33333333%}.w-col-xs-pull-9{right:75%}.w-col-xs-pull-8{right:66.66666667%}.w-col-xs-pull-7{right:58.33333333%}.w-col-xs-pull-6{right:50%}.w-col-xs-pull-5{right:41.66666667%}.w-col-xs-pull-4{right:33.33333333%}.w-col-xs-pull-3{right:25%}.w-col-xs-pull-2{right:16.66666667%}.w-col-xs-pull-1{right:8w-33333333%}.w-col-xs-pull-0{right:auto}.w-col-xs-push-12{left:100%}.w-col-xs-push-11{left:91.66666667%}.w-col-xs-push-10{left:83.33333333%}.w-col-xs-push-9{left:75%}.w-col-xs-push-8{left:66.66666667%}.w-col-xs-push-7{left:58.33333333%}.w-col-xs-push-6{left:50%}.w-col-xs-push-5{left:41.66666667%}.w-col-xs-push-4{left:33.33333333%}.w-col-xs-push-3{left:25%}.w-col-xs-push-2{left:16.66666667%}.w-col-xs-push-1{left:8w-33333333%}.w-col-xs-push-0{left:auto}.w-col-xs-offset-12{margin-left:100%}.w-col-xs-offset-11{margin-left:91.66666667%}.w-col-xs-offset-10{margin-left:83.33333333%}.w-col-xs-offset-9{margin-left:75%}.w-col-xs-offset-8{margin-left:66.66666667%}.w-col-xs-offset-7{margin-left:58.33333333%}.w-col-xs-offset-6{margin-left:50%}.w-col-xs-offset-5{margin-left:41.66666667%}.w-col-xs-offset-4{margin-left:33.33333333%}.w-col-xs-offset-3{margin-left:25%}.w-col-xs-offset-2{margin-left:16.66666667%}.w-col-xs-offset-1{margin-left:8w-33333333%}.w-col-xs-offset-0{margin-left:0}@media (min-width:768px){.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9{float:left}.w-col-sm-12{width:100%}.w-col-sm-11{width:91.66666667%}.w-col-sm-10{width:83.33333333%}.w-col-sm-9{width:75%}.w-col-sm-8{width:66.66666667%}.w-col-sm-7{width:58.33333333%}.w-col-sm-6{width:50%}.w-col-sm-5{width:41.66666667%}.w-col-sm-4{width:33.33333333%}.w-col-sm-3{width:25%}.w-col-sm-2{width:16.66666667%}.w-col-sm-1{width:8w-33333333%}.w-col-sm-pull-12{right:100%}.w-col-sm-pull-11{right:91.66666667%}.w-col-sm-pull-10{right:83.33333333%}.w-col-sm-pull-9{right:75%}.w-col-sm-pull-8{right:66.66666667%}.w-col-sm-pull-7{right:58.33333333%}.w-col-sm-pull-6{right:50%}.w-col-sm-pull-5{right:41.66666667%}.w-col-sm-pull-4{right:33.33333333%}.w-col-sm-pull-3{right:25%}.w-col-sm-pull-2{right:16.66666667%}.w-col-sm-pull-1{right:8w-33333333%}.w-col-sm-pull-0{right:auto}.w-col-sm-push-12{left:100%}.w-col-sm-push-11{left:91.66666667%}.w-col-sm-push-10{left:83.33333333%}.w-col-sm-push-9{left:75%}.w-col-sm-push-8{left:66.66666667%}.w-col-sm-push-7{left:58.33333333%}.w-col-sm-push-6{left:50%}.w-col-sm-push-5{left:41.66666667%}.w-col-sm-push-4{left:33.33333333%}.w-col-sm-push-3{left:25%}.w-col-sm-push-2{left:16.66666667%}.w-col-sm-push-1{left:8w-33333333%}.w-col-sm-push-0{left:auto}.w-col-sm-offset-12{margin-left:100%}.w-col-sm-offset-11{margin-left:91.66666667%}.w-col-sm-offset-10{margin-left:83.33333333%}.w-col-sm-offset-9{margin-left:75%}.w-col-sm-offset-8{margin-left:66.66666667%}.w-col-sm-offset-7{margin-left:58.33333333%}.w-col-sm-offset-6{margin-left:50%}.w-col-sm-offset-5{margin-left:41.66666667%}.w-col-sm-offset-4{margin-left:33.33333333%}.w-col-sm-offset-3{margin-left:25%}.w-col-sm-offset-2{margin-left:16.66666667%}.w-col-sm-offset-1{margin-left:8w-33333333%}.w-col-sm-offset-0{margin-left:0}}@media (min-width:992px){.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9{float:left}.w-col-md-12{width:100%}.w-col-md-11{width:91.66666667%}.w-col-md-10{width:83.33333333%}.w-col-md-9{width:75%}.w-col-md-8{width:66.66666667%}.w-col-md-7{width:58.33333333%}.w-col-md-6{width:50%}.w-col-md-5{width:41.66666667%}.w-col-md-4{width:33.33333333%}.w-col-md-3{width:25%}.w-col-md-2{width:16.66666667%}.w-col-md-1{width:8w-33333333%}.w-col-md-pull-12{right:100%}.w-col-md-pull-11{right:91.66666667%}.w-col-md-pull-10{right:83.33333333%}.w-col-md-pull-9{right:75%}.w-col-md-pull-8{right:66.66666667%}.w-col-md-pull-7{right:58.33333333%}.w-col-md-pull-6{right:50%}.w-col-md-pull-5{right:41.66666667%}.w-col-md-pull-4{right:33.33333333%}.w-col-md-pull-3{right:25%}.w-col-md-pull-2{right:16.66666667%}.w-col-md-pull-1{right:8w-33333333%}.w-col-md-pull-0{right:auto}.w-col-md-push-12{left:100%}.w-col-md-push-11{left:91.66666667%}.w-col-md-push-10{left:83.33333333%}.w-col-md-push-9{left:75%}.w-col-md-push-8{left:66.66666667%}.w-col-md-push-7{left:58.33333333%}.w-col-md-push-6{left:50%}.w-col-md-push-5{left:41.66666667%}.w-col-md-push-4{left:33.33333333%}.w-col-md-push-3{left:25%}.w-col-md-push-2{left:16.66666667%}.w-col-md-push-1{left:8w-33333333%}.w-col-md-push-0{left:auto}.w-col-md-offset-12{margin-left:100%}.w-col-md-offset-11{margin-left:91.66666667%}.w-col-md-offset-10{margin-left:83.33333333%}.w-col-md-offset-9{margin-left:75%}.w-col-md-offset-8{margin-left:66.66666667%}.w-col-md-offset-7{margin-left:58.33333333%}.w-col-md-offset-6{margin-left:50%}.w-col-md-offset-5{margin-left:41.66666667%}.w-col-md-offset-4{margin-left:33.33333333%}.w-col-md-offset-3{margin-left:25%}.w-col-md-offset-2{margin-left:16.66666667%}.w-col-md-offset-1{margin-left:8w-33333333%}.w-col-md-offset-0{margin-left:0}}@media (min-width:1200px){.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9{float:left}.w-col-lg-12{width:100%}.w-col-lg-11{width:91.66666667%}.w-col-lg-10{width:83.33333333%}.w-col-lg-9{width:75%}.w-col-lg-8{width:66.66666667%}.w-col-lg-7{width:58.33333333%}.w-col-lg-6{width:50%}.w-col-lg-5{width:41.66666667%}.w-col-lg-4{width:33.33333333%}.w-col-lg-3{width:25%}.w-col-lg-2{width:16.66666667%}.w-col-lg-1{width:8w-33333333%}.w-col-lg-pull-12{right:100%}.w-col-lg-pull-11{right:91.66666667%}.w-col-lg-pull-10{right:83.33333333%}.w-col-lg-pull-9{right:75%}.w-col-lg-pull-8{right:66.66666667%}.w-col-lg-pull-7{right:58.33333333%}.w-col-lg-pull-6{right:50%}.w-col-lg-pull-5{right:41.66666667%}.w-col-lg-pull-4{right:33.33333333%}.w-col-lg-pull-3{right:25%}.w-col-lg-pull-2{right:16.66666667%}.w-col-lg-pull-1{right:8w-33333333%}.w-col-lg-pull-0{right:auto}.w-col-lg-push-12{left:100%}.w-col-lg-push-11{left:91.66666667%}.w-col-lg-push-10{left:83.33333333%}.w-col-lg-push-9{left:75%}.w-col-lg-push-8{left:66.66666667%}.w-col-lg-push-7{left:58.33333333%}.w-col-lg-push-6{left:50%}.w-col-lg-push-5{left:41.66666667%}.w-col-lg-push-4{left:33.33333333%}.w-col-lg-push-3{left:25%}.w-col-lg-push-2{left:16.66666667%}.w-col-lg-push-1{left:8w-33333333%}.w-col-lg-push-0{left:auto}.w-col-lg-offset-12{margin-left:100%}.w-col-lg-offset-11{margin-left:91.66666667%}.w-col-lg-offset-10{margin-left:83.33333333%}.w-col-lg-offset-9{margin-left:75%}.w-col-lg-offset-8{margin-left:66.66666667%}.w-col-lg-offset-7{margin-left:58.33333333%}.w-col-lg-offset-6{margin-left:50%}.w-col-lg-offset-5{margin-left:41.66666667%}.w-col-lg-offset-4{margin-left:33.33333333%}.w-col-lg-offset-3{margin-left:25%}.w-col-lg-offset-2{margin-left:16.66666667%}.w-col-lg-offset-1{margin-left:8w-33333333%}.w-col-lg-offset-0{margin-left:0}}.w-clearfix:after,.w-clearfix:before,.w-container-fluid:after,.w-container-fluid:before,.w-container:after,.w-container:before,.w-row:after,.w-row:before{content:" ";display:table}.w-clearfix:after,.w-container-fluid:after,.w-container:after,.w-row:after{clear:both}.w-center-block{display:block;margin-left:auto;margin-right:auto}.w-pull-right{float:right!important}.w-pull-left{float:left!important}.w-hide{display:none!important}.w-show{display:block!important}.w-invisible{visibility:hidden}.w-text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.w-hidden{display:none!important}.w-affix{position:fixed}.mec-image-popup-wrap{display:none}#wns-be-infobar.sticky{position:fixed;top:32px;background:#fff;z-index:9999;width:82%}.wns-be-main .wns-saved-settings.sticky{position:fixed;width:62.5%;top:111px;z-index:999999999999999999}#mec-search-settings{border-radius:2px;min-height:32px;box-shadow:0 3px 14px -5px rgba(0,0,0,.2),inset 0 1px 2px rgba(0,0,0,.07);padding:9px 10px 11px;margin-right:6px;color:#7c7772;font-size:12px;width:200px}#mec-search-settings::-webkit-input-placeholder{color:#7c7772}#mec-search-settings::-moz-placeholder{color:#7c7772}#mec-search-settings:-ms-input-placeholder{color:#7c7772}#mec-search-settings:-moz-placeholder{color:#7c7772}.mec-export-settings,.mec-import-settings{font-weight:700;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:8px 32px;height:36px;letter-spacing:.2px;line-height:36px;font-size:13px;color:#fff;text-decoration:none;display:inline-block}.mec-export-settings:hover,.mec-import-settings:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);color:#fff}textarea.mec-import-settings-content{display:block;width:100%;min-height:120px;margin-bottom:25px;padding:10px 15px}.mec-import-options-notification{display:inline-block}.mec-import-options-notification .mec-message-import-error,.mec-import-options-notification .mec-message-import-success{display:inline-block;padding:15px 12px;margin-left:12px;opacity:0;visibility:hidden;font-weight:700}.mec-import-options-notification .mec-message-import-success{opacity:1;visibility:visible;border:2px solid green}.mec-import-options-notification .mec-message-import-error{opacity:1;visibility:visible;border:2px solid #e62117}.mec-export-settings:focus,.mec-import-settings:focus{color:#fff}.mec-import-settings-wrap{position:relative}.mec-loarder-wrap{position:absolute;top:0;bottom:0;left:0;right:0;background:rgba(202,202,202,.7);z-index:9999}.mec-loarder-wrap.mec-settings-loader{top:34px}.mec-loarder{position:absolute;width:64px;height:64px;top:calc(50% - 32px);left:calc(50% - 36px)}.mec-loarder div{display:inline-block;position:absolute;left:6px;width:4px;background:#fff;animation:mec-loarder 1.2s cubic-bezier(0,.5,.5,1) infinite}.mec-loarder div:nth-child(1){left:27px;animation-delay:-.24s;background:#0075ff}.mec-loarder div:nth-child(2){left:36px;animation-delay:-.12s;background:#028bff}.mec-loarder div:nth-child(3){left:45px;animation-delay:0;background:#32a0ff}@keyframes mec-loarder{0%{top:6px;height:51px}100%,50%{top:19px;height:26px}}.w-box.support-page.searchbox{background:#008aff;background:linear-gradient(180deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;min-height:260px;text-align:center;border-radius:2px}#webnus-dashboard .search-form input{background:rgba(255,255,255,.2);border:none;width:50%;outline:0;color:rgba(255,255,255,.7);font-size:18px;border-radius:4px 0 0 4px;box-shadow:0 1px 2px 0 rgba(0,0,0,.03);-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s;padding:20px 32px;margin:0}#webnus-dashboard .search-form button{background:rgba(255,255,255,.2);border:none;padding:20px 32px;margin-left:-2px;color:#fff;border-radius:0 4px 4px 0;font-size:18px;cursor:pointer;-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s}#webnus-dashboard .search-form button:hover{background:#fff;color:#3a3c4c}.w-box.support-page.searchbox p{font-size:30px}.search-form input::-webkit-input-placeholder{color:rgba(255,255,255,.7)}.search-form input::-moz-placeholder{color:rgba(255,255,255,.7)}.search-form input:-ms-input-placeholder{color:rgba(255,255,255,.7)}.search-form input:-moz-placeholder{color:rgba(255,255,255,.7)}#webnus-dashboard .search-form input:active,#webnus-dashboard .search-form input:focus{box-shadow:0 10px 20px rgba(0,0,0,.14);background:#fff;color:#3a3c4c}#webnus-dashboard .search-form input:active::-webkit-input-placeholder,#webnus-dashboard .search-form input:focus::-webkit-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active::-moz-placeholder,#webnus-dashboard .search-form input:focus::-moz-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-ms-input-placeholder,#webnus-dashboard .search-form input:focus:-ms-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-moz-placeholder,#webnus-dashboard .search-form input:focus:-moz-placeholder{color:#3a3c4c}#webnus-dashboard .w-box.support-page.mec-ticksy{text-align:center;min-height:260px}#webnus-dashboard .w-box.support-page.mec-ticksy p{font-size:20px;width:70%;margin:0 auto;margin-bottom:40px;margin-top:40px}#webnus-dashboard .w-box.support-page.mec-ticksy a{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:12px 20px;cursor:pointer;margin-bottom:40px;display:inline-block}#webnus-dashboard .w-box.support-page.mec-ticksy a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}.mec-faq-accordion>.mec-faq-accordion-content{display:none}#webnus-dashboard .mec-faq-accordion-trigger a{font-size:16px;padding:12px;background:#f1f1f1;display:block;color:#222;line-height:17px;outline:0}.mec-faq-accordion-trigger{margin-bottom:5px;position:relative}#webnus-dashboard .mec-faq-accordion-trigger a:after{font-family:simple-line-icons;content:"\e095";position:absolute;right:12px;font-weight:700}.mec-faq-accordion-content{padding:5px 14px 25px}#webnus-dashboard .mec-faq-accordion-trigger a.active:after{content:"\e082"}#webnus-dashboard .support-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}#webnus-dashboard .support-page-links a:hover,#webnus-dashboard .w-box.support-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .support-page-links{display:inline-block;margin:12px 4px 16px 0}.support-page-links.link-to-doc a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.support-page-links.link-to-videos a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}.support-page-links.link-to-articles a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}.w-box.support-page.articles-box .w-box-content a{display:block;padding:6px 0}#webnus-dashboard .w-box.support-page.videobox .w-button a{color:#fff;font-size:10px;padding:5px 15px;min-height:10px;font-weight:500;border-radius:22px;box-shadow:0 3px 10px -4px #ff5a35;text-shadow:none;background:#ff5a35;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);border:none;transition:.24s}.w-box.support-page.articles-box,.w-box.support-page.faq-box{min-height:500px}.w-box.support-page.videobox{border-radius:2px;min-height:282px;box-shadow:0 1px 6px rgba(0,0,0,.039)!important}#webnus-dashboard .w-box.support-page.videobox .w-button a i{margin-right:6px}.support-page .w-box-content ul{margin-top:5px;padding-left:5px}.support-page .w-box-content ul li{font-size:13px}.support-page .w-box-content ul li i{font-size:17px;vertical-align:text-bottom;margin-right:7px;color:#999}.w-box.mec-activation{background:#fff url(../img/dp-dsb-support.jpg) no-repeat top right}.w-box.mec-activation .w-box-head{color:#40d8f0;width:75%}.w-box.mec-activation .w-box-content{padding:10px 30px}.w-box.mec-activation input[type=radio]{display:none}.w-box.mec-activation input[type=radio]+label{color:#000;font-size:13px;line-height:14px!important;color:#7b7b7b}.w-box.mec-activation input[type=radio].checked+label{color:#40d8f0}.w-box.mec-activation input[type=radio]+label span{display:inline-block;margin:-2px 6px 0 0;vertical-align:middle;cursor:pointer;height:14px;width:14px;text-align:center;background-color:#fff;border:1px solid #d4d4d4;border-radius:100%;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative}.w-box.mec-activation input[type=radio].checked+label span{background-color:#40d8f0;border-color:#40d8f0;box-shadow:0 2px 14px -3px #40d8f0}.w-box.mec-activation input[type=radio].checked+label span:after{content:'';display:block;position:absolute;top:4px;left:4px;width:4px;height:4px;background:#fff;border-radius:100%}.w-box.mec-activation .LicenseType label{padding-right:20px;font-weight:500}.w-box.mec-activation .LicenseField{display:inline-block;position:relative;margin-top:20px}.w-box.mec-activation input[name=MECPurchaseCode]{box-shadow:inset 0 1px 2px rgba(0,0,0,.07);min-width:220px;background:#f4f4f4;border:none;border-radius:33px;width:500px;min-height:50px;margin:0;padding-left:20px;text-align:left}#webnus-dashboard .w-box.mec-activation input[type=submit]{height:40px;line-height:40px;font-weight:600;border:none;cursor:pointer;padding:0 30px;border-radius:33px;color:#fff;letter-spacing:1px;text-transform:uppercase;font-size:12px;background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67;transition:all .28s ease;position:absolute;right:5px;top:4px;font-size:12px}#webnus-dashboard .w-box.mec-activation input[type=submit]:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}#MECActivation .MECPurchaseStatus,.addon-activation-form .MECPurchaseStatus{display:inline-block;width:40px;height:40px;text-align:center;padding-top:9px;color:#fff;font-weight:700;font-size:18px;border-radius:50%;padding-top:8px;position:absolute;right:-51px;top:calc(50% - 20px)}.MECPurchaseStatus:after,.MECPurchaseStatus:before{position:absolute;border-radius:50px;background:#fff;content:'';transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:before{width:22px;height:4px;right:9px;top:18px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:after{width:22px;height:4px;right:9px;top:18px;transform:rotate(-45deg)}.MECPurchaseStatus.PurchaseSuccess:before{width:13px;height:4px;right:19px;top:21px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseSuccess:after{width:22px;height:4px;right:5px;top:18px;transform:rotate(-45deg)}#MECActivation .MECPurchaseStatus.PurchaseError,.addon-activation-form .MECPurchaseStatus.PurchaseError{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}#MECActivation .MECPurchaseStatus.PurchaseSuccess,.addon-activation-form .MECPurchaseStatus.PurchaseSuccess{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.wna-spinner-wrap{position:absolute;background:#000;width:509px;height:64px;top:-8px;border-radius:50px;z-index:999;background-color:#fff;opacity:.9}.wna-spinner{width:40px;height:40px;position:relative;margin:6px auto}.wna-spinner .double-bounce1,.wna-spinner .double-bounce2{width:100%;height:100%;border-radius:50%;background-color:#40d8f0;opacity:.6;position:absolute;top:0;left:0;-webkit-animation:sk-bounce 2s infinite ease-in-out;animation:sk-bounce 2s infinite ease-in-out}.wna-spinner .double-bounce2{-webkit-animation-delay:-1s;animation-delay:-1s}#MECActivation .MECLicenseMessage,.addon-activation-form .MECLicenseMessage{margin-top:24px;color:#f64;max-width:570px}.box-addon-activation-toggle-content,.box-addon-activation-toggle-head{display:none}.addon-activation-form h3{font-size:15px;font-weight:400;margin:34px 0 -7px}.box-addon-activation-toggle-head{line-height:1.5;font-size:16px;margin-top:20px;cursor:pointer}.box-addon-activation-toggle-head i{margin-right:7px;cursor:pointer;font-weight:700}#mec-advanced-wraper div:first-child>ul{display:block;margin:5px 0;padding:5px 0;width:390px;border:1px solid #e1e2e3;border-radius:2px;box-shadow:0 1px 3px rgba(0,0,0,.05)}#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 #e1e2e3}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}#mec-advanced-wraper div:first-child>ul>ul>li:hover,.mec-active{background:#008aff!important;color:#fff!important}@-webkit-keyframes sk-bounce{0%,100%{-webkit-transform:scale(0)}50%{-webkit-transform:scale(1)}}@keyframes sk-bounce{0%,100%{transform:scale(0);-webkit-transform:scale(0)}50%{transform:scale(1);-webkit-transform:scale(1)}}.w-col-sm-3 .w-box.addon{min-height:auto;box-shadow:0 3px 16px -5px rgba(0,0,0,.1);border-radius:2px}.w-box-child.mec-addon-box{padding:20px 20px}.mec-addon-box-head{border-bottom:1px solid #e8e8e8;padding-bottom:5px;margin-bottom:14px;position:relative}.mec-addon-box-version{position:relative;background:#eaeaea;border-radius:1px;padding:0 8px;color:#5a5a5a;font-size:11px;letter-spacing:.2px;line-height:21px;display:inline-block;margin:3px 0}.mec-addon-box-title{font-weight:700;font-size:18px;line-height:25px}.mec-addon-box-title a span{color:#444;font-size:15px}.mec-addon-box-content p{color:#777;font-size:13px}.mec-addon-box-mec-version{background:#f3f3f3;padding:10px;font-size:13px}#webnus-dashboard .addons-page-links{display:inline-block;margin:12px 4px 16px 0}#webnus-dashboard .addons-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}.addons-page-links.link-to-purchase a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.addons-page-links.link-to-install-addons a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}#webnus-dashboard .addons-page-links a:hover,#webnus-dashboard .w-box.addons-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}.mec-addon-box-footer{margin-top:25px}#webnus-dashboard .mec-addon-box-footer a{font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:7px 19px;margin-top:10px;display:inline-block;letter-spacing:.2px;color:#fff;width:100%;text-align:center}#webnus-dashboard .mec-addon-box-footer a.mec-addon-box-intro{box-shadow:0 3px 10px -4px #ff5a35;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%)}#webnus-dashboard .mec-addon-box-footer a:hover{background:#222!important;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%)!important;box-shadow:0 5px 23px -7px rgba(0,0,0,.5)!important;cursor:pointer!important}#webnus-dashboard .mec-addon-box-footer a i{margin-right:6px;color:#fff}@media(max-width:1366px){.wns-be-container #wns-be-content{padding:5px 15px 0}.mec-form-row .mec-col-8 label{font-size:10px}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{font-size:10px}}@media (max-width:780px){.wns-be-container #wns-be-content{padding:10px 0}.wns-be-container .mec-form-row .mec-col-8 label{width:50%;display:block}.wns-be-container .mec-form-row input[type=checkbox]{width:14px;height:14px}.wns-be-container .wns-be-sidebar li .subsection a{padding-left:30px}.wns-be-container .wns-be-sidebar{width:200px}.wns-be-container .wns-be-main{margin-left:200px}.wns-be-container .mec-tooltip .box{min-width:235px!important}.wns-be-container .mec-tooltip .box p{font-size:12px!important}#wns-be-infobar.sticky{position:unset}}@media (max-width:480px){.wns-be-container .wns-be-sidebar{width:100%;position:unset;float:none}.wns-be-container .wns-be-main{margin-left:0;width:100%;position:unset}.wns-be-container{margin-top:50px}.wns-be-container #wns-be-infobar:before{width:100%}.wns-be-container #wns-be-infobar{height:150px}#mec-search-settings{margin-top:80px;width:181px}}.addons-page-error,.addons-page-notice{display:block;margin-top:15px;margin-bottom:0;background:#fff;border-left:4px solid #00a0d2;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);padding:1px 12px}.addons-page-error p,.addons-page-notice p{margin:.5em 0;padding:2px;font-size:13px}.addons-page-error{border-left-color:#dc3232}.mec-addon-box-comingsoon{background:#eaeaea;padding:8px 11px;color:#5a5a5a;font-size:14px;font-weight:500;text-align:center}.mec-addons .w-row .w-col-sm-3:nth-child(4n+1){clear:left}@media (min-width:960px){#webnus-dashboard .mec-addon-box-footer .w-button{text-align:right}}@media (min-width:1401px){.mec-addon-box-title a span{font-size:17px}}.mec-pro-notice{margin-top:24px;line-height:30px}.mec-pro-notice .info-msg{padding:20px 30px 27px;margin-bottom:0}.mec-intro-section .w-box-content{text-align:center}.mec-intro-section .w-box-content.mec-intro-section-welcome{max-width:600px;margin:0 auto}.mec-intro-section .w-box-content.mec-intro-section-welcome h3{font-size:27px}a.mec-intro-section-link-tag.button.button-hero{margin:0 10px 40px}a.mec-intro-section-link-tag.button.button-primary.button-hero{color:#fff!important}a.mec-intro-section-link-tag.button.button-secondary.button-hero{color:#000!important}.mec-intro-section-ifarme iframe{border:1px solid #e7e7e7;border-radius:3px;padding:10px;box-shadow:0 3px 10px -6px rgba(0,0,0,.2)}.w-box-content.mec-intro-section-welcome p{margin-bottom:0}.mec-tooltip a:focus{box-shadow:none}#mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields{padding-bottom:150px!important}#mec_taxes_fees_container_toggle{margin-bottom:60px}#mec_taxes_fees_container_toggle{margin-bottom:60px}.wns-be-sidebar li{position:relative}.wns-be-sidebar li .submneu-hover{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}.wns-be-sidebar li:hover{background:#fff}.wns-be-sidebar li:hover .submneu-hover{opacity:1;visibility:visible}.wns-be-sidebar li .submneu-hover a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.wns-be-sidebar li .submneu-hover a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar li .submneu-hover:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar li a:focus,.wns-be-sidebar li:focus{outline:-webkit-focus-ring-color auto 0;border:0;box-shadow:none}@media (max-width:480px){.wns-be-sidebar li .submneu-hover{width:175px;right:0}.wns-be-sidebar li .submneu-hover a{font-size:11px;padding:5px 5px 5px 20px}}.mec-tooltip:hover:after,.mec-tooltip:hover:before{display:none}.mec-tooltip{display:inline-flex;bottom:7px}.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-tooltip .box p,.mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0}.mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-tooltip:hover .box{padding:20px;border-radius:8px}.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-tooltip .box p a,.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-tooltip .box a:hover{color:#f90}.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-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-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}form#mec_reg_fields_form input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:14px;height:14px;margin:-1px 0 0 -2px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}form#mec_reg_fields_form input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff;width:4px;height:4px}form#mec_reg_fields_form input[type=radio]{min-height:0;margin-right:6px}form#mec_reg_fields_form label{margin-right:20px}@media(min-width:1200px) and (max-width:1366px){.mec-tooltip .box.left{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.left:after{top:50%!important;right:100%!important}.mec-tooltip .box.left:before{left:50%!important;top:100%!important}.mec-tooltip .box{min-width:225px}.mec-tooltip .box h5{font-size:15px}.mec-tooltip .box .content{font-size:12px}}@media(max-width:1366px){.wns-be-container .wns-be-group-tab p{margin-top:0}}.mec-addons-notification-box-wrap .w-col-sm-12{padding:0}.mec-addons-notification-box-wrap img{width:auto}.mec-addons-notification-box-image{width:555px;display:inline-block;vertical-align:top}.mec-addons-notification-box-content{width:calc(100% - 559px);display:inline-block}.mec-addons-notification-box-content p{margin-top:1%;line-height:1.5;font-size:16px}.mec-addons-notification-box-content .w-box-content{padding-top:0;padding-bottom:0}.mec-addons-notification-box-content ol{font-size:16px}.mec-addons-notification-box-content a{background:#38d5ed;color:#fff!important;padding:10px 26px;margin-top:5px;display:inline-block;border-radius:3px;text-transform:capitalize;font-size:16px;letter-spacing:.4px;transition:all .1s ease;font-weight:600;text-decoration:none}.mec-addons-notification-box-content a:hover{background:#000}.w-clearfix.w-box.mec-addons-notification-box-wrap span{right:0;left:unset;cursor:pointer;background:#fff;padding:0 16px}.w-clearfix.w-box.mec-addons-notification-box-wrap span i{font-size:28px;vertical-align:sub;color:#f2113e}.wns-be-container .mec-addons-notification-wrap{padding:0;margin:0}.wns-be-container .mec-addons-notification-wrap .w-col-sm-12{padding:0}.wns-be-container .w-box{margin-top:0}.wns-be-container.mec-addons-notification-set-box{margin-right:15px;margin-top:50px;margin-bottom:27px}@media(max-width:1200px){.mec-addons-notification-box-content,.mec-addons-notification-box-image{width:100%;display:block}.mec-addons-notification-box-image{text-align:center}}@media(max-width:768px){.mec-addons-notification-box-image img{width:100%;height:auto}}body.rtl .wns-be-sidebar{width:260px;float:right;position:relative}body.rtl .wns-be-main{margin-left:0;border-left:0;margin-right:260px;border-right:1px solid #dedede}body.rtl .w-box.mec-activation .LicenseField{direction:rtl}body.rtl .w-box.mec-activation input[name=MECPurchaseCode]{text-align:right;padding-right:20px}body.rtl #MECActivation .MECPurchaseStatus,body.rtl .addon-activation-form .MECPurchaseStatus{right:auto;left:-51px}body.rtl #webnus-dashboard .w-box.mec-activation input[type=submit]{right:auto;left:5px}body.rtl .wns-be-sidebar .wns-be-group-menu li a{padding:13px 20px 13px 4px}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:0;padding-right:24px}body.rtl .wns-be-sidebar .has-sub span.extra-icon{float:left}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:auto;left:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:transparent;border-left-color:#fff;right:auto;left:-1px;top:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:transparent;border-left-color:#c5c5c5;right:auto;left:0}body.rtl .mec-col-1,body.rtl .mec-col-10,body.rtl .mec-col-11,body.rtl .mec-col-12,body.rtl .mec-col-2,body.rtl .mec-col-3,body.rtl .mec-col-4,body.rtl .mec-col-5,body.rtl .mec-col-6,body.rtl .mec-col-7,body.rtl .mec-col-8,body.rtl .mec-col-9{float:right;margin:0 1% 0 0}body.rtl .wns-be-sidebar li .submneu-hover{right:auto;left:-222px}body.rtl .wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:auto;right:-1px;top:14px}body.rtl #mec_styles_form #mec_styles_CSS{direction:ltr}body.rtl .w-box.mec-activation{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1)}body.rtl .w-box.mec-activation .w-box-content,body.rtl .w-box.mec-activation .w-box-head{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1);display:block}body.rtl .w-box.mec-activation .w-box-head{width:100%}body.rtl .wns-be-container #wns-be-infobar:before{left:auto;right:0}body.rtl .wns-be-container .dpr-btn.dpr-save-btn{float:left}body.rtl .wns-be-container .wns-be-group-tab h2:before,body.rtl .wns-be-container .wns-be-group-tab h4:before{left:auto;right:0;margin-right:0;margin-left:5px}body.rtl #mec_gateways_form .mec-tooltip{float:left}div#plugin-information-content .section{margin-top:-600px}.mec-details-addons-container{margin-top:20px}.mec-details-addons-wrap img{float:left;width:19%;margin-right:17px}.mec-details-addons-wrap{clear:both;margin-bottom:80px;display:block;position:relative}.mec-details-addons-wrap a{text-decoration:none}.mec-details-addons-wrap p{float:left;width:340px;margin-top:0;margin-bottom:30px}.mec-details-addons-title{font-weight:700}.mec-details-addons-title a{color:#444}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx{border-radius:10px!important;box-shadow:0 4px 38px rgba(0,0,0,.14)!important}body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl,body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl *,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z *{font-family:proxima-nova,-apple-system,BlinkMacSystemFont,"Segoe UI",Catamaran,sans-serif!important}body .crisp-client .crisp-1rjpbb7 .crisp-145mbcr,body .crisp-client .crisp-1rjpbb7 .crisp-1jrqqbm:hover{background-color:#fff!important}body .crisp-client .crisp-1rjpbb7 .crisp-14u434g{border-color:#e7e8e9!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq{font-size:20px!important;width:14px!important;height:19px!important;opacity:.85}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq:hover{opacity:.99}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a{font-size:13px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a::-webkit-input-placeholder{color:#717273!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf{background-color:#008aff!important;color:#fff!important;box-shadow:none!important;border-radius:5px!important;padding:15px 25px 15px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf .crisp-1o2g4mc{color:#fff!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-z89v5n .crisp-162m9xf{background-color:#f1f2f3!important;border-radius:5px!important;padding:15px 25px 15px!important;box-shadow:none!important;color:#121314!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-type=audio] .crisp-z89v5n .crisp-162m9xf{background-color:#d1d7dc!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=operator] .crisp-z89v5n .crisp-1o2g4mc{color:#121314!important;-webkit-text-fill-color:#121314!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-39hskb{opacity:.4;margin-right:5px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-ehr6mw{opacity:.68;font-size:12px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg{background-image:linear-gradient(125deg,#008aff -10%,#0066b1 100%)!important;height:110px!important;padding-top:35px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-1uw6f17,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-85evuk,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-nu40j6{font-size:17px!important;line-height:28px!important;padding-top:10px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06{background-color:#008aff!important;background-image:linear-gradient(125deg,#008aff -10%,#008af0 100%)!important;box-shadow:0 5px 34px -6px #008aff!important}body .crisp-client .crisp-1rjpbb7 .crisp-4oo1n4{background-color:transparent!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx[data-chat-status=ongoing] .crisp-1784wh6 .crisp-1xmtdlg .crisp-172kolj{margin-top:-10px!important}body .crisp-client .crisp-1rjpbb7[data-last-operator-face=false] .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06 .crisp-16qgsyi .crisp-101bp3x[data-is-ongoing=false]{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OCIgaGVpZ2h0PSI1NSIgdmlld0JveD0iMCAwIDU4IDU1Ij4NCiAgPGcgaWQ9ImNoYXQtc3ZncmVwby1jb21fMV8iIGRhdGEtbmFtZT0iY2hhdC1zdmdyZXBvLWNvbSAoMSkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTEuNSkiPg0KICAgIDxwYXRoIGlkPSJQYXRoXzEiIGRhdGEtbmFtZT0iUGF0aCAxIiBkPSJNMjksMS41YzE2LjAxNiwwLDI5LDExLjY0MSwyOSwyNmEyNC4wMSwyNC4wMSwwLDAsMS00LjgsMTQuMzE4Yy40LDQuNzQ1LDEuNTQyLDExLjQyOCw0LjgsMTQuNjgyLDAsMC05Ljk0My0xLjQtMTYuNjc3LTUuNDYybC0uMDIyLjAwOWMtMi43NjQtMS44LTUuNTMyLTMuNjU2LTYuMS00LjEyNmExLDEsMCwwLDAtMS4zMy0uMjc3LDEuMDE3LDEuMDE3LDAsMCwwLS40ODkuODQ4Yy0uMDEuNjIyLjAwNS43ODQsNS41ODUsNC40MjFBMzEuOTE0LDMxLjkxNCwwLDAsMSwyOSw1My41Yy0xNi4wMTYsMC0yOS0xMS42NDEtMjktMjZTMTIuOTg0LDEuNSwyOSwxLjVaIiBmaWxsPSIjZmZmIi8+DQogICAgPGNpcmNsZSBpZD0iRWxsaXBzZV8xIiBkYXRhLW5hbWU9IkVsbGlwc2UgMSIgY3g9IjMiIGN5PSIzIiByPSIzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMiAyNC41KSIgZmlsbD0iIzAwOGFmZiIvPg0KICAgIDxjaXJjbGUgaWQ9IkVsbGlwc2VfMiIgZGF0YS1uYW1lPSJFbGxpcHNlIDIiIGN4PSIzIiBjeT0iMyIgcj0iMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYgMjQuNSkiIGZpbGw9IiMwMDhhZmYiLz4NCiAgICA8Y2lyY2xlIGlkPSJFbGxpcHNlXzMiIGRhdGEtbmFtZT0iRWxsaXBzZSAzIiBjeD0iMyIgY3k9IjMiIHI9IjMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQwIDI0LjUpIiBmaWxsPSIjMDA4YWZmIi8+DQogIDwvZz4NCjwvc3ZnPg0K)!important;height:31px!important;top:16px!important;left:14px!important}body .csh-category-item a h6{text-align:left}.mec-form-row.mec-syn-schedule{background:#f7f7f7;padding:20px;border:1px solid #eee;box-shadow:0 1px 11px rgba(0,0,0,.034);margin-bottom:20px}.mec-form-row.mec-syn-schedule p{padding-left:26px}.mec-form-row.mec-syn-schedule h2{margin-top:0}.mec-form-row.mec-syn-schedule h4{margin:10px 0}li.wns-be-group-menu-li.mec-settings-menu .mec-settings-submenu{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}li.wns-be-group-menu-li.mec-settings-menu:hover>.mec-settings-submenu{visibility:visible;opacity:1}.mec-settings-menu .mec-settings-submenu:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.mec-settings-menu .mec-settings-submenu:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar .mec-settings-menu .mec-settings-submenu a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}
assets/css/frontend.css CHANGED
@@ -352,7 +352,15 @@
352
  display: none;
353
  }
354
 
 
 
 
 
 
355
 
 
 
 
356
 
357
  /* MEC Events Grid Classic
358
  -------------------------- */
@@ -3448,6 +3456,23 @@ focus,
3448
  left: 50%;
3449
  }
3450
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3451
  .mec-event-meta i:before {
3452
  font-size: 20px;
3453
  vertical-align: middle;
@@ -4505,6 +4530,10 @@ address.mec-events-address {
4505
  display: none
4506
  }
4507
 
 
 
 
 
4508
  .mec-event-container-simple .mec-monthly-tooltip h4 {
4509
  font-size: 13px;
4510
  font-weight: 500;
@@ -9582,6 +9611,7 @@ li.mec-no-event-found .mec-event-title {
9582
  margin-bottom: 25px;
9583
  border-radius: 10px;
9584
  background: #238af5;
 
9585
  }
9586
 
9587
  .mec-weather-icon-box {
@@ -12329,28 +12359,21 @@ ul.mec-weekly-view-dates-events article:before,
12329
  }
12330
 
12331
  /* Search Bar */
12332
- .mec-search-bar-wrap .mec-search-form .mec-text-input-search {
12333
- width: 83%;
12334
- }
12335
- .mec-search-bar-wrap .mec-search-form .mec-ajax-search-result .mec-text-input-search {
12336
- width: 100%;
12337
- float: none;
12338
- }
12339
- .mec-search-bar-wrap input#mec-search-bar-input {
12340
- width: calc(100% - 84%);
12341
- margin-left: 11px;
12342
- background: #40d9f1;
12343
- Color: #fff;
12344
- font-weight: normal;
12345
- }
12346
- .mec-text-input-search+input#mec-search-bar-input {
12347
- margin-left: -3px;
12348
- }
12349
- .mec-search-bar-wrap input#mec-search-bar-input:hover {
12350
- background: #000;
12351
- }
12352
 
 
 
 
12353
 
 
 
 
 
12354
 
12355
  /* Ajax search bar result */
12356
  .mec-wrap.mec-search-bar-wrap .mec-totalcal-box { overflow: visible; }
@@ -12370,6 +12393,28 @@ article.mec-search-bar-result { text-align: left; margin-bottom: 0; padding-bott
12370
  .mec-search-bar-result .mec-event-title a { text-decoration: none; color: #494949; transition: color .3s ease; }
12371
  .mec-search-bar-result .mec-event-detail { font-size: 13px; line-height: 1.3; font-family: Roboto, sans-serif; color: #9a9a9a; margin-bottom: 0; }
12372
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12373
  /* Related Events */
12374
  .mec-related-events-wrap {
12375
  margin-top: 50px;
352
  display: none;
353
  }
354
 
355
+ /* MEC Current Day Event Toggle
356
+ -------------------------- */
357
+ #mec-active-current{
358
+ display: block !important;
359
+ }
360
 
361
+ .current-hide #mec-active-current{
362
+ display: none !important;
363
+ }
364
 
365
  /* MEC Events Grid Classic
366
  -------------------------- */
3456
  left: 50%;
3457
  }
3458
 
3459
+ .mec-single-event .mec-events-meta-group-booking input[data-stripe="exp-month"],
3460
+ .mec-single-event .mec-events-meta-group-booking input[data-stripe="exp-year"] {
3461
+ width: 47% !important;
3462
+ margin-right: 12px;
3463
+ margin-top: 5px;
3464
+ display: inline-block !important;
3465
+ }
3466
+
3467
+ @media(max-width: 768px) {
3468
+ .mec-single-event .mec-events-meta-group-booking input[data-stripe="exp-month"],
3469
+ .mec-single-event .mec-events-meta-group-booking input[data-stripe="exp-year"] {
3470
+ width: 100% !important;
3471
+ margin-right: 0;
3472
+ display: block !important;
3473
+ }
3474
+ }
3475
+
3476
  .mec-event-meta i:before {
3477
  font-size: 20px;
3478
  vertical-align: middle;
4530
  display: none
4531
  }
4532
 
4533
+ .mec-event-calendar-classic.mec-event-container-simple .mec-calendar-side .mec-calendar-table {
4534
+ min-height: unset;
4535
+ }
4536
+
4537
  .mec-event-container-simple .mec-monthly-tooltip h4 {
4538
  font-size: 13px;
4539
  font-weight: 500;
9611
  margin-bottom: 25px;
9612
  border-radius: 10px;
9613
  background: #238af5;
9614
+ position: relative;
9615
  }
9616
 
9617
  .mec-weather-icon-box {
12359
  }
12360
 
12361
  /* Search Bar */
12362
+ .mec-search-bar-wrap .mec-search-form .mec-text-input-search { width: 83%; }
12363
+ .mec-search-bar-wrap .mec-search-form .mec-ajax-search-result .mec-text-input-search { width: 100%; float: none; }
12364
+ .mec-search-bar-wrap input#mec-search-bar-input { width: calc(100% - 84%); margin-left: 11px; background: #40d9f1; Color: #fff; font-weight: normal; }
12365
+ .mec-text-input-search+input#mec-search-bar-input { margin-left: -3px; }
12366
+ .mec-search-bar-wrap input#mec-search-bar-input:hover { background: #000; }
12367
+ .mec-wrap.mec-search-bar-wrap .mec-totalcal-box input { float: none; }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12368
 
12369
+ @media(max-width: 768px){
12370
+ .mec-search-bar-wrap .mec-search-form .mec-text-input-search { display: inline-block }
12371
+ }
12372
 
12373
+ @media(max-width: 480px){
12374
+ .mec-search-bar-wrap .mec-search-form .mec-text-input-search { width: 64%; }
12375
+ .mec-search-bar-wrap input#mec-search-bar-input { width: calc(100% - 67%); }
12376
+ }
12377
 
12378
  /* Ajax search bar result */
12379
  .mec-wrap.mec-search-bar-wrap .mec-totalcal-box { overflow: visible; }
12393
  .mec-search-bar-result .mec-event-title a { text-decoration: none; color: #494949; transition: color .3s ease; }
12394
  .mec-search-bar-result .mec-event-detail { font-size: 13px; line-height: 1.3; font-family: Roboto, sans-serif; color: #9a9a9a; margin-bottom: 0; }
12395
 
12396
+ /* Modern Search bar */
12397
+ .mec-wrap.mec-modern-search-bar .mec-totalcal-box { background: rgba(255, 255, 255, 0.87); border: none; padding: 35px; border-radius: 3px; box-shadow: 0 3px 13px rgba(0, 0, 0, 0.4); position: relative; }
12398
+ .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, 0.99); border-radius: 2px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) inset; border: 1px solid #ccc; width: 100%; padding-left: 45px; padding-right: 13px; font-size: 16px; }
12399
+ .mec-wrap.mec-modern-search-bar .mec-totalcal-box .mec-text-input-search i { position: absolute; background: none; border: none; font-size: 21px; left: 15px; top: calc(50% - 19px); color: #40d9f1; }
12400
+ .mec-wrap.mec-modern-search-bar .mec-text-input-search { position: relative; height: 58px; }
12401
+ .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: bold !important; }
12402
+ .mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input { margin-left: 0; }
12403
+ .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; }
12404
+ .mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap i { 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; font-size: 15px; padding-top: 14px; border-right: 0; color:#40d9f1; }
12405
+ .mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap { min-height: 64px; }
12406
+
12407
+ @media(max-width: 768px){
12408
+ .mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search { width: 70%; }
12409
+ .mec-wrap.mec-modern-search-bar input#mec-search-bar-input { width: calc(100% - 72%); }
12410
+ }
12411
+
12412
+ @media(max-width: 480px){
12413
+ .mec-wrap.mec-modern-search-bar input#mec-search-bar-input { width: 92%; padding: 0 10px; position: relative; display: block; margin-left: 11px; }
12414
+ .mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search { width: 100%; margin-bottom: 20px; }
12415
+ .mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input { margin-left: 10px; }
12416
+ }
12417
+
12418
  /* Related Events */
12419
  .mec-related-events-wrap {
12420
  margin-top: 50px;
assets/css/frontend.min.css CHANGED
@@ -1 +1 @@
1
- .lity-container,.mec-wrap,.mec-wrap div:not([class^=elementor-]){font-family:Montserrat,Helvetica,Arial,sans-serif}.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{font-family:Montserrat,Helvetica,Arial,sans-serif;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),.mec-wrap input[type=button],.mec-wrap input[type=reset],.mec-wrap input[type=submit]{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}.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-booking-form-container button{display:block!important}.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 sans-serif;font-family:Montserrat,Helvetica,Arial,sans-serif;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-family:Roboto,sans-serif;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-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}.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}.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:hover>li{cursor:pointer;background-color:#40d9f1}.mec-event-sharing-wrap:hover li a{color:#fff}.mec-event-sharing-wrap>li{border:1px solid #d9d9d9}.mec-event-sharing-wrap li a,.mec-event-sharing-wrap:hover li ul li a{border:none;color:#767676}.mec-event-sharing-wrap li i{width:36px;height:36px;display:table-cell;vertical-align:middle}.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-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-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 .mec-event-sharing-wrap{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-family:Roboto,sans-serif;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}.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}}.mec-event-title-soldout .soldout{background:#de3120;padding:4px 5px;color:#fff}.mec-event-title-soldout .soldout{background:#de3120;position:relative;top:-2px;border-radius:10px 0 0 20px;padding:2px 4px 2px 10px;color:#fff}.mec-event-title-soldout .soldout:before{content:' ';position:absolute;width:0;height:0;border-top:10px solid #de3120;border-bottom:10px solid #de3120;right:-10px;border-right:10px solid transparent;border-left:10px solid transparent;top:0}.mec-event-title-soldout .soldout:after{content:' ';position:absolute;width:6px;height:6px;background:#de3120;border-radius:50%;left:3px;top:4px;border:2px dashed #fff}.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}@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 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:30px;background:rgba(255,255,255,.1);box-shadow:0 4px 4px rgba(0,0,0,.02)}.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:5px}.mec-event-list-minimal .mec-event-detail{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.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-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-date .event-da{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:28px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.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;font-family:Roboto,sans-serif}.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}.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>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}.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{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-grid-minimal .mec-event-date:hover span{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{font-weight:400;font-size:13px;letter-spacing:0;line-height:18px}.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;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-family:Roboto,sans-serif;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::before{content:'';position:absolute;top:8px;left:-30px;width:17px;height:17px;background:#5cd0ed;opacity:.4;border-radius:50%}.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-event-grid-novel .mec-event-address,.mec-event-grid-novel .mec-event-detail,.mec-event-grid-novel .mec-event-month{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{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-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}.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:rgba(255,255,255,1)}@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}.mec-event-grid-novel .mec-event-content h4 a{font-size:20px;line-height:1.3}}.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;font-family:Roboto,sans-serif}@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}.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;font-family:Montserrat,Helvetica,Arial,sans-serif;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:fixed;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;font-family:Roboto,sans-serif}.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-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:13px;color:#8a8a8a}.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-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-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-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:5px;vertical-align:text-top}.mec-event-meta-wrap .mec-event-meta .mec-price-details i:before{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-wrap .mec-events-cal-links{margin-bottom:0}.mec-single-event #mec-wrap{padding:0;margin-top:35px}.mec-wrap .mec-single-title{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-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:170px;margin-top:5px}.mec-single-event .mec-events-meta-group-booking button{margin-left:15px}.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-book-first,.mec-single-event .mec-event-tickets-list{padding-left:15px;padding-right:15px}.mec-single-event label.mec-fill-attendees{margin-left:15px!important}.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}.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}@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=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]:.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking select:focus,.mec-single-event .mec-events-meta-group-booking textarea:focus,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}.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}.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}.mec-single-event .mec-event-meta dd a i:before{font-size:16px!important}.mec-single-event .mec-event-meta dd a i{vertical-align:top;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:3px}.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}.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}.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}.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.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.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{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{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-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-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:12px;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-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}.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:6px;font-size:14px;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}.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}.mec-attendees-list-details .mec-attendee-profile-link span{display:block;color:#000}.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}.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{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;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:60px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:60px}.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:0;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-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-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-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-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:700px}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:12px}}.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{font-size:12px;color:#888;margin-bottom:8px;margin-top:5px}.tooltipster-sidetip.tooltipster-shadow .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 .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-sidetip .tooltipster-arrow{overflow:visible!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-border{border-width:12px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border{border-right-color:#e2e3e4!important}.tooltipster-sidetip .tooltipster-arrow-border{left:-12px!important;z-index:9999999999!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-background{display:block!important}.tooltipster-sidetip .tooltipster-arrow-background{border-width:11px!important;z-index:99999999999!important}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background{left:-9px!important;top:1px!important;border-right-color:#fff!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background{border-top-color:#fff!important;left:0!important;top:-1px!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border{left:-1px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border{border-top-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{left:-1px!important;top:-11px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background{top:-9px!important;border-bottom-color:#fff!important}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background{border-left-color:#fff!important;left:-2px!important;top:0!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .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}.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-family:Roboto,sans-serif;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:block}.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:14.286%;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:0;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-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 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:#270;background-color:#dff2bf}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-fes-list ul{list-style:none}.mec-fes-form-cntt .dashicons-editor-help{display:none}.mec-fes-list ul li *{text-decoration:none!important}.mec-fes-list ul li{border-bottom:1px solid #eee;padding:14px 0;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-weight:600;font-size:15px}.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:4px 8px;border:1px solid #e7e7e7;background:#f7f7f7;float:right;margin-left:5px}.mec-fes-list ul li .mec-fes-event-remove:hover{cursor:pointer;background:#f0b7b8;border-color:#cc4d4f}.mec-fes-list-top-actions a{font-size:11px;letter-spacing:2px;text-transform:uppercase;padding:8px 14px;border:1px solid #e3e3e3;background:#f5f5f5}.mec-fes-form-top-actions a,.mec-fes-list-top-actions a{position:relative;border:none;border-radius:0;color:#fff!important;display:inline-block;font-size:12px;letter-spacing:2px;line-height:1;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:17px 21px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease}.mec-fes-form-top-actions a:hover,.mec-fes-list-top-actions a:hover{background:#222;color:#fff}.mec-fes-form .mec-form-row,.mec-fes-list .mec-form-row{margin-bottom:20px;clear:both}.mec-fes-form label{padding-right:10px;font-size:13px;display:block}.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 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 select,.mec-fes-form textarea{border-radius:0;min-width:inherit;width:auto;display:inline;background:#fcfcfc;min-height:30px;font-size:13px;border:1px solid #e0e0e0;padding:10px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}#mec_more_info_target{width:100%}@media only screen and (min-width:961px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%;display:inline-block}}@media only screen and (max-width:768px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%}}.mec-fes-form input[type=text]#mec_fes_title{width:100%;height:auto;color:#000;font-size:36px;font-family:Montserrat,Helvetica,Arial,sans-serif;background:0 0!important;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 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;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:20px;border:1px solid #e6e6e6;margin-bottom:20px;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-fes-form .mec-meta-box-fields h4{margin:-20px;font-size:15px;font-weight:700;letter-spacing:2px;text-transform:uppercase;padding:10px 20px;background:#f5f5f5;margin-bottom:20px}.mec-fes-sub-button{width:100%}.mec-available-color-row span.color-selected{background-color:#fdd700;border:3px solid #fff;box-sizing:content-box;box-shadow:0 0 0 2px #437df9}.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:23%;margin-right:1.4%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row{border-bottom:1px solid #e8e8e8;padding-bottom:15px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row:last-of-type{border:none}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-1{width:10%}.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}@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-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-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;font-family:Roboto,Helvetica,Arial,sans-serif}.mec-wrap .mec-totalcal-box input[type=submit]{cursor:pointer;padding:0 16px;text-transform:uppercase;font-size:11px;font-family:Montserrat,Helvetica,Arial,sans-serif;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-family:Montserrat,Helvetica,Arial,sans-serif;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)}@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;padding-bottom:20px;clear:both;overflow:hidden}}@media only screen and (min-width:768px) and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-4{position:relative;right:10px;top:20px;width:initial}.mec-wrap .mec-totalcal-box .col-md-5{padding-bottom:0}.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}}@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{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-4{position:absolute;right:10px;top:20px;width:initial}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5{padding-bottom:0;width:100%}}@media (min-width:961px) and (max-width:1200px){.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:20px!important}.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{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}}@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!important}.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-right: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 .col-md-4{position:absolute;top:20px}}@media (min-width:780px) and (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@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-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}.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 .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}}.mec-search-form{padding:20px 10px}.mec-search-form .mec-dropdown-wrap{display:table;min-height:55px;width:100%}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{padding:0 10px;float:left;min-height:55px}.mec-search-form .mec-date-search,.mec-search-form .mec-text-input-search{width:50%;min-height:36px;display:block}.mec-full-calendar-wrap .mec-search-form .mec-date-search,.mec-full-calendar-wrap .mec-search-form .mec-text-input-search{width:100%}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-5,.mec-full-calendar-wrap .mec-search-form .col-md-6,.mec-full-calendar-wrap .mec-search-form .col-md-8{padding:0}.mec-widget .mec-search-form .mec-date-search,.mec-widget .mec-search-form .mec-text-input-search{width:100%}.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-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{width:calc(100% - 36px)}.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:767px){.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}}@media only screen and (max-width:960px){.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 124px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}}@media only screen and (max-width:479px){.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:100%;float:none}}.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}.event-carousel-type1-head .mec-event-image{position:relative;min-height:150px}.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:21px;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)}@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{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}.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}.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}.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}.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:36px;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;background:0 0;display:inline-block;box-shadow:0 5px 5px rgba(0,0,0,.12)}@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:0;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-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:12px;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}.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-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-single-modal .flip-clock-divider .flip-clock-label{position:absolute;top:60px}.mec-single-modal .flip-clock-divider:not(:first-child){width:48px!important}.mec-single-modal .flip-clock-divider.minutes .flip-clock-label{top:150px;left:-539px}.mec-single-modal .flip-clock-divider.seconds .flip-clock-label{top:87px}.mec-single-modal .flip-clock-wrapper{left:14%}.mec-single-modal .twodaydigits>ul:nth-child(11),.mec-single-modal .twodaydigits>ul:nth-child(12),.mec-single-modal .twodaydigits>ul:nth-child(8),.mec-single-modal .twodaydigits>ul:nth-child(9){margin-top:30px!important}.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}.mec-events-toggle .mec-toggle-item-inner:hover{background:#fbfbfb}.mec-toggle-item-col{float:left;width:180px;margin-top:-6px;border-right:1px solid #e3e3e3;margin-right:15px}.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{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-family:Roboto,sans-serif;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:inline-block}.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-col{float:none;width:100%;border-right:none;margin-bottom:5px}}.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-family:Roboto,Montserrat,Helvetica,Arial,sans-serif;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}@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;overflow:hidden;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:130px;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:nowrap;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-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}.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-family:Roboto,Sans-serif;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}.isotope-item{z-index:2}.isotope-hidden.isotope-item{pointer-events:none;z-index:1}.isotope,.isotope .isotope-item{-webkit-transition-duration:.8s;-moz-transition-duration:.8s;transition-duration:.8s}.isotope{-webkit-transition-property:height,width;-moz-transition-property:height,width;transition-property:height,width}.isotope .isotope-item{-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform,opacity;transition-property:transform,opacity}.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}.mec-masonry-content.mec-event-grid-modern .mec-event-footer{height:auto}.mec-masonry .mec-masonry-col6 .mec-event-date{font-size:34px;letter-spacing:-2px}.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}}.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:10%}}@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-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:before,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured:before{z-index:1;position:absolute;top:25px;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);content:attr(data-style)}.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-featured{overflow:hidden;position:relative}.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-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-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-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:-4px;transform:translateY(-4.5px);position:absolute;content:'';color:#04de78}.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:-3px;font-size:11px;margin-left:10px}.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}.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}.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}.mec-event-grid-classic article .mec-fc-style{padding:5px 20px;font-size:12px;margin-top:8px;display:inline-block}.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}.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}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:4%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:37%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:24%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:15%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.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-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:750px;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}.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}}.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;font-family:Montserrat,Helvetica,Arial,sans-serif}.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;font-family:Montserrat,Helvetica,Arial,sans-serif}.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;font-family:Montserrat,Helvetica,Arial,sans-serif;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-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}}.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-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-advanced-wraper div:first-child>ul{display:block;margin:5px 0;padding:5px 0;width:430px;border:1px solid #e1e2e3;border-radius:2px;box-shadow:0 1px 3px rgba(0,0,0,.05)}#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 #e1e2e3}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}#mec-advanced-wraper div:first-child>ul>ul>li:hover,.mec-active{background:#008aff!important;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{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;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.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}.mec-fes-form-cntt #mec-organizer-payments ul{list-style:none;background:0 0}.mec-fes-form-cntt #mec-organizer-payments ul li h4{background:0 0;letter-spacing:0;border-bottom:1px solid #e8e8e8;display:inline-block;padding-left:0!important;padding-bottom:10px!important;margin:0;margin-bottom:20px;letter-spacing:1px;text-transform:capitalize}.mec-fes-form-cntt #mec-organizer-payments ul>li{width:33%;display:inline-block;vertical-align:top;padding:0 30px}
1
+ .lity-container,.mec-wrap,.mec-wrap div:not([class^=elementor-]){font-family:Montserrat,Helvetica,Arial,sans-serif}.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{font-family:Montserrat,Helvetica,Arial,sans-serif;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),.mec-wrap input[type=button],.mec-wrap input[type=reset],.mec-wrap input[type=submit]{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}.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-booking-form-container button{display:block!important}.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 sans-serif;font-family:Montserrat,Helvetica,Arial,sans-serif;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-family:Roboto,sans-serif;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!important}.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}.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}.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:hover>li{cursor:pointer;background-color:#40d9f1}.mec-event-sharing-wrap:hover li a{color:#fff}.mec-event-sharing-wrap>li{border:1px solid #d9d9d9}.mec-event-sharing-wrap li a,.mec-event-sharing-wrap:hover li ul li a{border:none;color:#767676}.mec-event-sharing-wrap li i{width:36px;height:36px;display:table-cell;vertical-align:middle}.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-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-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 .mec-event-sharing-wrap{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-family:Roboto,sans-serif;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}.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}}.mec-event-title-soldout .soldout{background:#de3120;padding:4px 5px;color:#fff}.mec-event-title-soldout .soldout{background:#de3120;position:relative;top:-2px;border-radius:10px 0 0 20px;padding:2px 4px 2px 10px;color:#fff}.mec-event-title-soldout .soldout:before{content:' ';position:absolute;width:0;height:0;border-top:10px solid #de3120;border-bottom:10px solid #de3120;right:-10px;border-right:10px solid transparent;border-left:10px solid transparent;top:0}.mec-event-title-soldout .soldout:after{content:' ';position:absolute;width:6px;height:6px;background:#de3120;border-radius:50%;left:3px;top:4px;border:2px dashed #fff}.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}@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 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:30px;background:rgba(255,255,255,.1);box-shadow:0 4px 4px rgba(0,0,0,.02)}.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:5px}.mec-event-list-minimal .mec-event-detail{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.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-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-date .event-da{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:28px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.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;font-family:Roboto,sans-serif}.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}.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>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}.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{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-grid-minimal .mec-event-date:hover span{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{font-weight:400;font-size:13px;letter-spacing:0;line-height:18px}.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;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-family:Roboto,sans-serif;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::before{content:'';position:absolute;top:8px;left:-30px;width:17px;height:17px;background:#5cd0ed;opacity:.4;border-radius:50%}.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-event-grid-novel .mec-event-address,.mec-event-grid-novel .mec-event-detail,.mec-event-grid-novel .mec-event-month{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{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-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}.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:rgba(255,255,255,1)}@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}.mec-event-grid-novel .mec-event-content h4 a{font-size:20px;line-height:1.3}}.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;font-family:Roboto,sans-serif}@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}.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;font-family:Montserrat,Helvetica,Arial,sans-serif;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:fixed;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;font-family:Roboto,sans-serif}.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-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:13px;color:#8a8a8a}.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-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-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-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:5px;vertical-align:text-top}.mec-event-meta-wrap .mec-event-meta .mec-price-details i:before{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-wrap .mec-events-cal-links{margin-bottom:0}.mec-single-event #mec-wrap{padding:0;margin-top:35px}.mec-wrap .mec-single-title{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-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:170px;margin-top:5px}.mec-single-event .mec-events-meta-group-booking button{margin-left:15px}.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-book-first,.mec-single-event .mec-event-tickets-list{padding-left:15px;padding-right:15px}.mec-single-event label.mec-fill-attendees{margin-left:15px!important}.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}.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}@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=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]:.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking select:focus,.mec-single-event .mec-events-meta-group-booking textarea:focus,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}.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}.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}.mec-single-event .mec-event-meta dd a i:before{font-size:16px!important}.mec-single-event .mec-event-meta dd a i{vertical-align:top;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:3px}.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}.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}.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}.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.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.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{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{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-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-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:12px;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-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}.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:6px;font-size:14px;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}.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}.mec-attendees-list-details .mec-attendee-profile-link span{display:block;color:#000}.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}.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{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;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:60px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:60px}.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:0;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-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-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-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:700px}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:12px}}.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{font-size:12px;color:#888;margin-bottom:8px;margin-top:5px}.tooltipster-sidetip.tooltipster-shadow .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 .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-sidetip .tooltipster-arrow{overflow:visible!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-border{border-width:12px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border{border-right-color:#e2e3e4!important}.tooltipster-sidetip .tooltipster-arrow-border{left:-12px!important;z-index:9999999999!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-background{display:block!important}.tooltipster-sidetip .tooltipster-arrow-background{border-width:11px!important;z-index:99999999999!important}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background{left:-9px!important;top:1px!important;border-right-color:#fff!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background{border-top-color:#fff!important;left:0!important;top:-1px!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border{left:-1px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border{border-top-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{left:-1px!important;top:-11px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background{top:-9px!important;border-bottom-color:#fff!important}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background{border-left-color:#fff!important;left:-2px!important;top:0!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .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}.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-family:Roboto,sans-serif;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:block}.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:14.286%;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:0;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-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 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:#270;background-color:#dff2bf}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-fes-list ul{list-style:none}.mec-fes-form-cntt .dashicons-editor-help{display:none}.mec-fes-list ul li *{text-decoration:none!important}.mec-fes-list ul li{border-bottom:1px solid #eee;padding:14px 0;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-weight:600;font-size:15px}.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:4px 8px;border:1px solid #e7e7e7;background:#f7f7f7;float:right;margin-left:5px}.mec-fes-list ul li .mec-fes-event-remove:hover{cursor:pointer;background:#f0b7b8;border-color:#cc4d4f}.mec-fes-list-top-actions a{font-size:11px;letter-spacing:2px;text-transform:uppercase;padding:8px 14px;border:1px solid #e3e3e3;background:#f5f5f5}.mec-fes-form-top-actions a,.mec-fes-list-top-actions a{position:relative;border:none;border-radius:0;color:#fff!important;display:inline-block;font-size:12px;letter-spacing:2px;line-height:1;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:17px 21px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease}.mec-fes-form-top-actions a:hover,.mec-fes-list-top-actions a:hover{background:#222;color:#fff}.mec-fes-form .mec-form-row,.mec-fes-list .mec-form-row{margin-bottom:20px;clear:both}.mec-fes-form label{padding-right:10px;font-size:13px;display:block}.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 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 select,.mec-fes-form textarea{border-radius:0;min-width:inherit;width:auto;display:inline;background:#fcfcfc;min-height:30px;font-size:13px;border:1px solid #e0e0e0;padding:10px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}#mec_more_info_target{width:100%}@media only screen and (min-width:961px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%;display:inline-block}}@media only screen and (max-width:768px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%}}.mec-fes-form input[type=text]#mec_fes_title{width:100%;height:auto;color:#000;font-size:36px;font-family:Montserrat,Helvetica,Arial,sans-serif;background:0 0!important;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 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;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:20px;border:1px solid #e6e6e6;margin-bottom:20px;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-fes-form .mec-meta-box-fields h4{margin:-20px;font-size:15px;font-weight:700;letter-spacing:2px;text-transform:uppercase;padding:10px 20px;background:#f5f5f5;margin-bottom:20px}.mec-fes-sub-button{width:100%}.mec-available-color-row span.color-selected{background-color:#fdd700;border:3px solid #fff;box-sizing:content-box;box-shadow:0 0 0 2px #437df9}.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:23%;margin-right:1.4%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row{border-bottom:1px solid #e8e8e8;padding-bottom:15px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row:last-of-type{border:none}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-1{width:10%}.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}@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-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-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;font-family:Roboto,Helvetica,Arial,sans-serif}.mec-wrap .mec-totalcal-box input[type=submit]{cursor:pointer;padding:0 16px;text-transform:uppercase;font-size:11px;font-family:Montserrat,Helvetica,Arial,sans-serif;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-family:Montserrat,Helvetica,Arial,sans-serif;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)}@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;padding-bottom:20px;clear:both;overflow:hidden}}@media only screen and (min-width:768px) and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-4{position:relative;right:10px;top:20px;width:initial}.mec-wrap .mec-totalcal-box .col-md-5{padding-bottom:0}.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}}@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{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-4{position:absolute;right:10px;top:20px;width:initial}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5{padding-bottom:0;width:100%}}@media (min-width:961px) and (max-width:1200px){.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:20px!important}.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{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}}@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!important}.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-right: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 .col-md-4{position:absolute;top:20px}}@media (min-width:780px) and (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@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-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}.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 .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}}.mec-search-form{padding:20px 10px}.mec-search-form .mec-dropdown-wrap{display:table;min-height:55px;width:100%}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{padding:0 10px;float:left;min-height:55px}.mec-search-form .mec-date-search,.mec-search-form .mec-text-input-search{width:50%;min-height:36px;display:block}.mec-full-calendar-wrap .mec-search-form .mec-date-search,.mec-full-calendar-wrap .mec-search-form .mec-text-input-search{width:100%}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-5,.mec-full-calendar-wrap .mec-search-form .col-md-6,.mec-full-calendar-wrap .mec-search-form .col-md-8{padding:0}.mec-widget .mec-search-form .mec-date-search,.mec-widget .mec-search-form .mec-text-input-search{width:100%}.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-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{width:calc(100% - 36px)}.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:767px){.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}}@media only screen and (max-width:960px){.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 124px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}}@media only screen and (max-width:479px){.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:100%;float:none}}.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}.event-carousel-type1-head .mec-event-image{position:relative;min-height:150px}.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:21px;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)}@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{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}.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}.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}.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}.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:36px;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;background:0 0;display:inline-block;box-shadow:0 5px 5px rgba(0,0,0,.12)}@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:0;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-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:12px;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}.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-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-single-modal .flip-clock-divider .flip-clock-label{position:absolute;top:60px}.mec-single-modal .flip-clock-divider:not(:first-child){width:48px!important}.mec-single-modal .flip-clock-divider.minutes .flip-clock-label{top:150px;left:-539px}.mec-single-modal .flip-clock-divider.seconds .flip-clock-label{top:87px}.mec-single-modal .flip-clock-wrapper{left:14%}.mec-single-modal .twodaydigits>ul:nth-child(11),.mec-single-modal .twodaydigits>ul:nth-child(12),.mec-single-modal .twodaydigits>ul:nth-child(8),.mec-single-modal .twodaydigits>ul:nth-child(9){margin-top:30px!important}.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}.mec-events-toggle .mec-toggle-item-inner:hover{background:#fbfbfb}.mec-toggle-item-col{float:left;width:180px;margin-top:-6px;border-right:1px solid #e3e3e3;margin-right:15px}.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{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-family:Roboto,sans-serif;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:inline-block}.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-col{float:none;width:100%;border-right:none;margin-bottom:5px}}.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-family:Roboto,Montserrat,Helvetica,Arial,sans-serif;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}@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;overflow:hidden;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:130px;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:nowrap;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-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-family:Roboto,Sans-serif;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}.isotope-item{z-index:2}.isotope-hidden.isotope-item{pointer-events:none;z-index:1}.isotope,.isotope .isotope-item{-webkit-transition-duration:.8s;-moz-transition-duration:.8s;transition-duration:.8s}.isotope{-webkit-transition-property:height,width;-moz-transition-property:height,width;transition-property:height,width}.isotope .isotope-item{-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform,opacity;transition-property:transform,opacity}.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}.mec-masonry-content.mec-event-grid-modern .mec-event-footer{height:auto}.mec-masonry .mec-masonry-col6 .mec-event-date{font-size:34px;letter-spacing:-2px}.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}}.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:10%}}@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-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:before,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured:before{z-index:1;position:absolute;top:25px;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);content:attr(data-style)}.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-featured{overflow:hidden;position:relative}.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-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-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-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:-4px;transform:translateY(-4.5px);position:absolute;content:'';color:#04de78}.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:-3px;font-size:11px;margin-left:10px}.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}.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}.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}.mec-event-grid-classic article .mec-fc-style{padding:5px 20px;font-size:12px;margin-top:8px;display:inline-block}.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}.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}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:4%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:37%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:24%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:15%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.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-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:750px;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}.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}}.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;font-family:Montserrat,Helvetica,Arial,sans-serif}.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;font-family:Montserrat,Helvetica,Arial,sans-serif}.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;font-family:Montserrat,Helvetica,Arial,sans-serif;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-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}}.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-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-advanced-wraper div:first-child>ul{display:block;margin:5px 0;padding:5px 0;width:430px;border:1px solid #e1e2e3;border-radius:2px;box-shadow:0 1px 3px rgba(0,0,0,.05)}#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 #e1e2e3}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}#mec-advanced-wraper div:first-child>ul>ul>li:hover,.mec-active{background:#008aff!important;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;font-family:Roboto,sans-serif;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:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;font-size:15px;padding-top:14px;border-right:0;color:#40d9f1}.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-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}.mec-fes-form-cntt #mec-organizer-payments ul{list-style:none;background:0 0}.mec-fes-form-cntt #mec-organizer-payments ul li h4{background:0 0;letter-spacing:0;border-bottom:1px solid #e8e8e8;display:inline-block;padding-left:0!important;padding-bottom:10px!important;margin:0;margin-bottom:20px;letter-spacing:1px;text-transform:capitalize}.mec-fes-form-cntt #mec-organizer-payments ul>li{width:33%;display:inline-block;vertical-align:top;padding:0 30px}
assets/img/cluster1/index.html ADDED
File without changes
assets/img/cluster1/m1.png ADDED
Binary file
assets/img/cluster1/m2.png ADDED
Binary file
assets/img/cluster1/m3.png ADDED
Binary file
assets/img/cluster1/m4.png ADDED
Binary file
assets/img/cluster1/m5.png ADDED
Binary file
assets/js/backend.js CHANGED
@@ -382,6 +382,20 @@ function mec_skin_style_changed(skin, style)
382
  jQuery('#mec_skin_'+skin+'_date_format_'+style+'_container').show();
383
  }
384
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
385
  // TinyMce Plugins
386
  if (jQuery('.mec-fes-form').length < 1)
387
  {
382
  jQuery('#mec_skin_'+skin+'_date_format_'+style+'_container').show();
383
  }
384
 
385
+ function mec_show_widget_check(context)
386
+ {
387
+ var skin = jQuery(context).find(':selected').data('skin');
388
+
389
+ if(skin == 'monthly_view')
390
+ {
391
+ jQuery(context).parent().parent().find('.mec-current-check-wrap').show();
392
+ }
393
+ else
394
+ {
395
+ jQuery(context).parent().parent().find('.mec-current-check-wrap').hide();
396
+ }
397
+ }
398
+
399
  // TinyMce Plugins
400
  if (jQuery('.mec-fes-form').length < 1)
401
  {
assets/js/frontend.js CHANGED
@@ -156,6 +156,7 @@ var mecSingleEventDisplayer = {
156
  var map;
157
  var infowindow;
158
  var loadedMarkers = new Array();
 
159
 
160
  var canvas = this;
161
  var DOM = canvas[0];
@@ -204,6 +205,29 @@ var mecSingleEventDisplayer = {
204
  // Load Markers
205
  loadMarkers(settings.markers);
206
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
207
  // Initialize get direction feature
208
  if(settings.getDirection === 1) initSimpleGetDirection();
209
  else if(settings.getDirection === 2) initAdvancedGetDirection();
@@ -244,7 +268,8 @@ var mecSingleEventDisplayer = {
244
  lightbox: dataMarker.lightbox,
245
  icon: (dataMarker.icon ? dataMarker.icon : settings.icon),
246
  content: '<div class="mec-marker-container"><span class="mec-marker-wrap"><span class="mec-marker">'+dataMarker.count+'</span><span class="mec-marker-pulse-wrap"><span class="mec-marker-pulse"></span></span></span></div>',
247
- shadow: 'none'
 
248
  });
249
 
250
  // Marker Info-Window
@@ -295,6 +320,10 @@ var mecSingleEventDisplayer = {
295
 
296
  // Load Markers
297
  loadMarkers(response.markers);
 
 
 
 
298
 
299
  // Remove loader
300
  $("#mec_googlemap_canvas"+settings.id).removeClass("mec-loading");
@@ -985,6 +1014,7 @@ var mecSingleEventDisplayer = {
985
  $("#mec_month_navigator_"+settings.id+"_"+response.current_month.id).hide();
986
  $("#mec_month_side_"+settings.id+"_"+response.current_month.id).hide();
987
  }
 
988
  if (typeof custom_month != undefined)
989
  {
990
  if (custom_month == 'true')
@@ -1089,13 +1119,48 @@ var mecSingleEventDisplayer = {
1089
  function mec_tooltip()
1090
  {
1091
  if ($('.mec-monthly-tooltip').length > 1) {
1092
- $('.mec-monthly-tooltip').tooltipster({
1093
- theme: 'tooltipster-shadow',
1094
- interactive: true,
1095
- delay: 100,
1096
- minWidth: 350,
1097
- maxWidth: 350,
1098
- });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1099
  }
1100
  }
1101
  };
@@ -3413,17 +3478,17 @@ function mec_focus_week(id)
3413
 
3414
  $(document).ready(function($)
3415
  {
3416
- let degree = $('.mec-weather-summary-temp');
3417
- let weather_extra = $('.mec-weather-extras');
3418
- let wind = weather_extra.children('.mec-weather-wind');
3419
- let visibility = weather_extra.children('.mec-weather-visibility');
3420
 
3421
  // Events
3422
  $('.degrees-mode').click(function()
3423
  {
3424
- let degree_mode = degree.children('var').text().trim();
3425
- let wind_text = wind.text().substring(5);
3426
- let visibility_text = visibility.text().substring(11);
3427
 
3428
  if(degree_mode == degree.data('c').trim())
3429
  {
@@ -3440,13 +3505,14 @@ function mec_focus_week(id)
3440
  }
3441
  });
3442
 
 
3443
  // FES Speakers Adding
3444
  $('#mec_add_speaker_button').on('click', function()
3445
  {
3446
- let $this = this;
3447
- let content = $($this).parent().find('input');
3448
- let list = $('#mec-fes-speakers-list');
3449
- let key = list.find('.mec-error').length;
3450
 
3451
  $($this).prop("disabled", true).css('cursor', 'wait');
3452
  $.post(ajaxurl,
@@ -3462,7 +3528,7 @@ function mec_focus_week(id)
3462
  list.prepend(data);
3463
  setTimeout(function()
3464
  {
3465
- $(`#mec-speaker-error-${key}`).remove();
3466
  }, 1500);
3467
  }
3468
  else
156
  var map;
157
  var infowindow;
158
  var loadedMarkers = new Array();
159
+ var markerCluster;
160
 
161
  var canvas = this;
162
  var DOM = canvas[0];
205
  // Load Markers
206
  loadMarkers(settings.markers);
207
 
208
+ var clusterCalculator = function(markers, numStyles)
209
+ {
210
+ var weight = 0;
211
+
212
+ for(var i = 0; i < markers.length; ++i)
213
+ {
214
+ weight += markers[i].weight;
215
+ }
216
+
217
+ return {
218
+ text: weight,
219
+ index: Math.min(String(weight).length, numStyles)
220
+ };
221
+ };
222
+
223
+ markerCluster = new MarkerClusterer(map, null,
224
+ {
225
+ imagePath: settings.clustering_images
226
+ });
227
+
228
+ markerCluster.setCalculator(clusterCalculator);
229
+ markerCluster.addMarkers(loadedMarkers);
230
+
231
  // Initialize get direction feature
232
  if(settings.getDirection === 1) initSimpleGetDirection();
233
  else if(settings.getDirection === 2) initAdvancedGetDirection();
268
  lightbox: dataMarker.lightbox,
269
  icon: (dataMarker.icon ? dataMarker.icon : settings.icon),
270
  content: '<div class="mec-marker-container"><span class="mec-marker-wrap"><span class="mec-marker">'+dataMarker.count+'</span><span class="mec-marker-pulse-wrap"><span class="mec-marker-pulse"></span></span></span></div>',
271
+ shadow: 'none',
272
+ weight: dataMarker.count
273
  });
274
 
275
  // Marker Info-Window
320
 
321
  // Load Markers
322
  loadMarkers(response.markers);
323
+
324
+ markerCluster.clearMarkers();
325
+ markerCluster.addMarkers(loadedMarkers, false);
326
+ markerCluster.redraw();
327
 
328
  // Remove loader
329
  $("#mec_googlemap_canvas"+settings.id).removeClass("mec-loading");
1014
  $("#mec_month_navigator_"+settings.id+"_"+response.current_month.id).hide();
1015
  $("#mec_month_side_"+settings.id+"_"+response.current_month.id).hide();
1016
  }
1017
+ if (typeof custom_month !== undefined) var custom_month;
1018
  if (typeof custom_month != undefined)
1019
  {
1020
  if (custom_month == 'true')
1119
  function mec_tooltip()
1120
  {
1121
  if ($('.mec-monthly-tooltip').length > 1) {
1122
+ if (Math.max(document.documentElement.clientWidth, window.innerWidth || 0) > 768) {
1123
+ $('.mec-monthly-tooltip').tooltipster({
1124
+ theme: 'tooltipster-shadow',
1125
+ interactive: true,
1126
+ delay: 100,
1127
+ minWidth: 350,
1128
+ maxWidth: 350
1129
+ });
1130
+ } else {
1131
+ var touchtime = 0;
1132
+ $(".mec-monthly-tooltip").on("click", function (event) {
1133
+ event.preventDefault();
1134
+ if (touchtime == 0) {
1135
+ $('.mec-monthly-tooltip').tooltipster({
1136
+ theme: 'tooltipster-shadow',
1137
+ interactive: true,
1138
+ delay: 100,
1139
+ minWidth: 350,
1140
+ maxWidth: 350,
1141
+ trigger: "custom",
1142
+ triggerOpen: {
1143
+ click: true,
1144
+ tap: true
1145
+ },
1146
+ triggerClose: {
1147
+ click: true,
1148
+ tap: true
1149
+ }
1150
+ });
1151
+ touchtime = new Date().getTime();
1152
+ } else {
1153
+ if (((new Date().getTime()) - touchtime) < 200) {
1154
+ var el = $(this);
1155
+ var link = el.attr("href");
1156
+ window.location = link;
1157
+ touchtime = 0;
1158
+ } else {
1159
+ touchtime = new Date().getTime();
1160
+ }
1161
+ }
1162
+ });
1163
+ }
1164
  }
1165
  }
1166
  };
3478
 
3479
  $(document).ready(function($)
3480
  {
3481
+ var degree = $('.mec-weather-summary-temp');
3482
+ var weather_extra = $('.mec-weather-extras');
3483
+ var wind = weather_extra.children('.mec-weather-wind');
3484
+ var visibility = weather_extra.children('.mec-weather-visibility');
3485
 
3486
  // Events
3487
  $('.degrees-mode').click(function()
3488
  {
3489
+ var degree_mode = degree.children('var').text().trim();
3490
+ var wind_text = wind.text().substring(5);
3491
+ var visibility_text = visibility.text().substring(11);
3492
 
3493
  if(degree_mode == degree.data('c').trim())
3494
  {
3505
  }
3506
  });
3507
 
3508
+
3509
  // FES Speakers Adding
3510
  $('#mec_add_speaker_button').on('click', function()
3511
  {
3512
+ var $this = this;
3513
+ var content = $($this).parent().find('input');
3514
+ var list = $('#mec-fes-speakers-list');
3515
+ var key = list.find('.mec-error').length;
3516
 
3517
  $($this).prop("disabled", true).css('cursor', 'wait');
3518
  $.post(ajaxurl,
3528
  list.prepend(data);
3529
  setTimeout(function()
3530
  {
3531
+ $('#mec-speaker-error-${key}').remove();
3532
  }, 1500);
3533
  }
3534
  else
assets/packages/clusterer/index.html ADDED
File without changes
assets/packages/clusterer/markerclusterer.js ADDED
@@ -0,0 +1,1315 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // ==ClosureCompiler==
2
+ // @compilation_level ADVANCED_OPTIMIZATIONS
3
+ // @externs_url https://raw.githubusercontent.com/google/closure-compiler/master/contrib/externs/maps/google_maps_api_v3.js
4
+ // ==/ClosureCompiler==
5
+
6
+ /**
7
+ * @name MarkerClusterer for Google Maps v3
8
+ * @version version 1.0
9
+ * @author Luke Mahe
10
+ * @fileoverview
11
+ * The library creates and manages per-zoom-level clusters for large amounts of
12
+ * markers.
13
+ * <br/>
14
+ * This is a v3 implementation of the
15
+ * <a href="http://gmaps-utility-library-dev.googlecode.com/svn/tags/markerclusterer/"
16
+ * >v2 MarkerClusterer</a>.
17
+ */
18
+
19
+ /**
20
+ * @license
21
+ * Copyright 2010 Google Inc. All Rights Reserved.
22
+ *
23
+ * Licensed under the Apache License, Version 2.0 (the "License");
24
+ * you may not use this file except in compliance with the License.
25
+ * You may obtain a copy of the License at
26
+ *
27
+ * http://www.apache.org/licenses/LICENSE-2.0
28
+ *
29
+ * Unless required by applicable law or agreed to in writing, software
30
+ * distributed under the License is distributed on an "AS IS" BASIS,
31
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
32
+ * See the License for the specific language governing permissions and
33
+ * limitations under the License.
34
+ */
35
+
36
+
37
+ /**
38
+ * A Marker Clusterer that clusters markers.
39
+ *
40
+ * @param {google.maps.Map} map The Google map to attach to.
41
+ * @param {Array.<google.maps.Marker>=} opt_markers Optional markers to add to
42
+ * the cluster.
43
+ * @param {Object=} opt_options support the following options:
44
+ * 'gridSize': (number) The grid size of a cluster in pixels.
45
+ * 'maxZoom': (number) The maximum zoom level that a marker can be part of a
46
+ * cluster.
47
+ * 'zoomOnClick': (boolean) Whether the default behaviour of clicking on a
48
+ * cluster is to zoom into it.
49
+ * 'averageCenter': (boolean) Whether the center of each cluster should be
50
+ * the average of all markers in the cluster.
51
+ * 'minimumClusterSize': (number) The minimum number of markers to be in a
52
+ * cluster before the markers are hidden and a count
53
+ * is shown.
54
+ * 'styles': (object) An object that has style properties:
55
+ * 'url': (string) The image url.
56
+ * 'height': (number) The image height.
57
+ * 'width': (number) The image width.
58
+ * 'anchor': (Array) The anchor position of the label text.
59
+ * 'textColor': (string) The text color.
60
+ * 'textSize': (number) The text size.
61
+ * 'backgroundPosition': (string) The position of the backgound x, y.
62
+ * 'iconAnchor': (Array) The anchor position of the icon x, y.
63
+ * @constructor
64
+ * @extends google.maps.OverlayView
65
+ */
66
+ function MarkerClusterer(map, opt_markers, opt_options) {
67
+ // MarkerClusterer implements google.maps.OverlayView interface. We use the
68
+ // extend function to extend MarkerClusterer with google.maps.OverlayView
69
+ // because it might not always be available when the code is defined so we
70
+ // look for it at the last possible moment. If it doesn't exist now then
71
+ // there is no point going ahead :)
72
+ this.extend(MarkerClusterer, google.maps.OverlayView);
73
+ this.map_ = map;
74
+
75
+ /**
76
+ * @type {Array.<google.maps.Marker>}
77
+ * @private
78
+ */
79
+ this.markers_ = [];
80
+
81
+ /**
82
+ * @type {Array.<Cluster>}
83
+ */
84
+ this.clusters_ = [];
85
+
86
+ this.sizes = [53, 56, 66, 78, 90];
87
+
88
+ /**
89
+ * @private
90
+ */
91
+ this.styles_ = [];
92
+
93
+ /**
94
+ * @type {boolean}
95
+ * @private
96
+ */
97
+ this.ready_ = false;
98
+
99
+ var options = opt_options || {};
100
+
101
+ /**
102
+ * @type {number}
103
+ * @private
104
+ */
105
+ this.gridSize_ = options['gridSize'] || 60;
106
+
107
+ /**
108
+ * @private
109
+ */
110
+ this.minClusterSize_ = options['minimumClusterSize'] || 2;
111
+
112
+
113
+ /**
114
+ * @type {?number}
115
+ * @private
116
+ */
117
+ this.maxZoom_ = options['maxZoom'] || null;
118
+
119
+ this.styles_ = options['styles'] || [];
120
+
121
+ /**
122
+ * @type {string}
123
+ * @private
124
+ */
125
+ this.imagePath_ = options['imagePath'] ||
126
+ this.MARKER_CLUSTER_IMAGE_PATH_;
127
+
128
+ /**
129
+ * @type {string}
130
+ * @private
131
+ */
132
+ this.imageExtension_ = options['imageExtension'] ||
133
+ this.MARKER_CLUSTER_IMAGE_EXTENSION_;
134
+
135
+ /**
136
+ * @type {boolean}
137
+ * @private
138
+ */
139
+ this.zoomOnClick_ = true;
140
+
141
+ if (options['zoomOnClick'] != undefined) {
142
+ this.zoomOnClick_ = options['zoomOnClick'];
143
+ }
144
+
145
+ /**
146
+ * @type {boolean}
147
+ * @private
148
+ */
149
+ this.averageCenter_ = false;
150
+
151
+ if (options['averageCenter'] != undefined) {
152
+ this.averageCenter_ = options['averageCenter'];
153
+ }
154
+
155
+ this.setupStyles_();
156
+
157
+ this.setMap(map);
158
+
159
+ /**
160
+ * @type {number}
161
+ * @private
162
+ */
163
+ this.prevZoom_ = this.map_.getZoom();
164
+
165
+ // Add the map event listeners
166
+ var that = this;
167
+ google.maps.event.addListener(this.map_, 'zoom_changed', function() {
168
+ var zoom = that.map_.getZoom();
169
+
170
+ if (that.prevZoom_ != zoom) {
171
+ that.prevZoom_ = zoom;
172
+ that.resetViewport();
173
+ }
174
+ });
175
+
176
+ google.maps.event.addListener(this.map_, 'idle', function() {
177
+ that.redraw();
178
+ });
179
+
180
+ // Finally, add the markers
181
+ if (opt_markers && opt_markers.length) {
182
+ this.addMarkers(opt_markers, false);
183
+ }
184
+ }
185
+
186
+
187
+ /**
188
+ * The marker cluster image path.
189
+ *
190
+ * @type {string}
191
+ * @private
192
+ */
193
+ MarkerClusterer.prototype.MARKER_CLUSTER_IMAGE_PATH_ = '../images/m';
194
+
195
+
196
+ /**
197
+ * The marker cluster image path.
198
+ *
199
+ * @type {string}
200
+ * @private
201
+ */
202
+ MarkerClusterer.prototype.MARKER_CLUSTER_IMAGE_EXTENSION_ = 'png';
203
+
204
+
205
+ /**
206
+ * Extends a objects prototype by anothers.
207
+ *
208
+ * @param {Object} obj1 The object to be extended.
209
+ * @param {Object} obj2 The object to extend with.
210
+ * @return {Object} The new extended object.
211
+ * @ignore
212
+ */
213
+ MarkerClusterer.prototype.extend = function(obj1, obj2) {
214
+ return (function(object) {
215
+ for (var property in object.prototype) {
216
+ this.prototype[property] = object.prototype[property];
217
+ }
218
+ return this;
219
+ }).apply(obj1, [obj2]);
220
+ };
221
+
222
+
223
+ /**
224
+ * Implementaion of the interface method.
225
+ * @ignore
226
+ */
227
+ MarkerClusterer.prototype.onAdd = function() {
228
+ this.setReady_(true);
229
+ };
230
+
231
+ /**
232
+ * Implementaion of the interface method.
233
+ * @ignore
234
+ */
235
+ MarkerClusterer.prototype.draw = function() {};
236
+
237
+ /**
238
+ * Sets up the styles object.
239
+ *
240
+ * @private
241
+ */
242
+ MarkerClusterer.prototype.setupStyles_ = function() {
243
+ if (this.styles_.length) {
244
+ return;
245
+ }
246
+
247
+ for (var i = 0, size; size = this.sizes[i]; i++) {
248
+ this.styles_.push({
249
+ url: this.imagePath_ + (i + 1) + '.' + this.imageExtension_,
250
+ height: size,
251
+ width: size
252
+ });
253
+ }
254
+ };
255
+
256
+ /**
257
+ * Fit the map to the bounds of the markers in the clusterer.
258
+ */
259
+ MarkerClusterer.prototype.fitMapToMarkers = function() {
260
+ var markers = this.getMarkers();
261
+ var bounds = new google.maps.LatLngBounds();
262
+ for (var i = 0, marker; marker = markers[i]; i++) {
263
+ bounds.extend(marker.getPosition());
264
+ }
265
+
266
+ this.map_.fitBounds(bounds);
267
+ };
268
+
269
+
270
+ /**
271
+ * Sets the styles.
272
+ *
273
+ * @param {Object} styles The style to set.
274
+ */
275
+ MarkerClusterer.prototype.setStyles = function(styles) {
276
+ this.styles_ = styles;
277
+ };
278
+
279
+
280
+ /**
281
+ * Gets the styles.
282
+ *
283
+ * @return {Object} The styles object.
284
+ */
285
+ MarkerClusterer.prototype.getStyles = function() {
286
+ return this.styles_;
287
+ };
288
+
289
+
290
+ /**
291
+ * Whether zoom on click is set.
292
+ *
293
+ * @return {boolean} True if zoomOnClick_ is set.
294
+ */
295
+ MarkerClusterer.prototype.isZoomOnClick = function() {
296
+ return this.zoomOnClick_;
297
+ };
298
+
299
+ /**
300
+ * Whether average center is set.
301
+ *
302
+ * @return {boolean} True if averageCenter_ is set.
303
+ */
304
+ MarkerClusterer.prototype.isAverageCenter = function() {
305
+ return this.averageCenter_;
306
+ };
307
+
308
+
309
+ /**
310
+ * Returns the array of markers in the clusterer.
311
+ *
312
+ * @return {Array.<google.maps.Marker>} The markers.
313
+ */
314
+ MarkerClusterer.prototype.getMarkers = function() {
315
+ return this.markers_;
316
+ };
317
+
318
+
319
+ /**
320
+ * Returns the number of markers in the clusterer
321
+ *
322
+ * @return {Number} The number of markers.
323
+ */
324
+ MarkerClusterer.prototype.getTotalMarkers = function() {
325
+ return this.markers_.length;
326
+ };
327
+
328
+
329
+ /**
330
+ * Sets the max zoom for the clusterer.
331
+ *
332
+ * @param {number} maxZoom The max zoom level.
333
+ */
334
+ MarkerClusterer.prototype.setMaxZoom = function(maxZoom) {
335
+ this.maxZoom_ = maxZoom;
336
+ };
337
+
338
+
339
+ /**
340
+ * Gets the max zoom for the clusterer.
341
+ *
342
+ * @return {number} The max zoom level.
343
+ */
344
+ MarkerClusterer.prototype.getMaxZoom = function() {
345
+ return this.maxZoom_;
346
+ };
347
+
348
+
349
+ /**
350
+ * The function for calculating the cluster icon image.
351
+ *
352
+ * @param {Array.<google.maps.Marker>} markers The markers in the clusterer.
353
+ * @param {number} numStyles The number of styles available.
354
+ * @return {Object} A object properties: 'text' (string) and 'index' (number).
355
+ * @private
356
+ */
357
+ MarkerClusterer.prototype.calculator_ = function(markers, numStyles) {
358
+ var index = 0;
359
+ var count = markers.length;
360
+ var dv = count;
361
+ while (dv !== 0) {
362
+ dv = parseInt(dv / 10, 10);
363
+ index++;
364
+ }
365
+
366
+ index = Math.min(index, numStyles);
367
+ return {
368
+ text: count,
369
+ index: index
370
+ };
371
+ };
372
+
373
+
374
+ /**
375
+ * Set the calculator function.
376
+ *
377
+ * @param {function(Array, number)} calculator The function to set as the
378
+ * calculator. The function should return a object properties:
379
+ * 'text' (string) and 'index' (number).
380
+ *
381
+ */
382
+ MarkerClusterer.prototype.setCalculator = function(calculator) {
383
+ this.calculator_ = calculator;
384
+ };
385
+
386
+
387
+ /**
388
+ * Get the calculator function.
389
+ *
390
+ * @return {function(Array, number)} the calculator function.
391
+ */
392
+ MarkerClusterer.prototype.getCalculator = function() {
393
+ return this.calculator_;
394
+ };
395
+
396
+
397
+ /**
398
+ * Add an array of markers to the clusterer.
399
+ *
400
+ * @param {Array.<google.maps.Marker>} markers The markers to add.
401
+ * @param {boolean=} opt_nodraw Whether to redraw the clusters.
402
+ */
403
+ MarkerClusterer.prototype.addMarkers = function(markers, opt_nodraw) {
404
+ for (var i = 0, marker; marker = markers[i]; i++) {
405
+ this.pushMarkerTo_(marker);
406
+ }
407
+ if (!opt_nodraw) {
408
+ this.redraw();
409
+ }
410
+ };
411
+
412
+
413
+ /**
414
+ * Pushes a marker to the clusterer.
415
+ *
416
+ * @param {google.maps.Marker} marker The marker to add.
417
+ * @private
418
+ */
419
+ MarkerClusterer.prototype.pushMarkerTo_ = function(marker) {
420
+ marker.isAdded = false;
421
+ if (marker['draggable']) {
422
+ // If the marker is draggable add a listener so we update the clusters on
423
+ // the drag end.
424
+ var that = this;
425
+ google.maps.event.addListener(marker, 'dragend', function() {
426
+ marker.isAdded = false;
427
+ that.repaint();
428
+ });
429
+ }
430
+ this.markers_.push(marker);
431
+ };
432
+
433
+
434
+ /**
435
+ * Adds a marker to the clusterer and redraws if needed.
436
+ *
437
+ * @param {google.maps.Marker} marker The marker to add.
438
+ * @param {boolean=} opt_nodraw Whether to redraw the clusters.
439
+ */
440
+ MarkerClusterer.prototype.addMarker = function(marker, opt_nodraw) {
441
+ this.pushMarkerTo_(marker);
442
+ if (!opt_nodraw) {
443
+ this.redraw();
444
+ }
445
+ };
446
+
447
+
448
+ /**
449
+ * Removes a marker and returns true if removed, false if not
450
+ *
451
+ * @param {google.maps.Marker} marker The marker to remove
452
+ * @return {boolean} Whether the marker was removed or not
453
+ * @private
454
+ */
455
+ MarkerClusterer.prototype.removeMarker_ = function(marker) {
456
+ var index = -1;
457
+ if (this.markers_.indexOf) {
458
+ index = this.markers_.indexOf(marker);
459
+ } else {
460
+ for (var i = 0, m; m = this.markers_[i]; i++) {
461
+ if (m == marker) {
462
+ index = i;
463
+ break;
464
+ }
465
+ }
466
+ }
467
+
468
+ if (index == -1) {
469
+ // Marker is not in our list of markers.
470
+ return false;
471
+ }
472
+
473
+ marker.setMap(null);
474
+
475
+ this.markers_.splice(index, 1);
476
+
477
+ return true;
478
+ };
479
+
480
+
481
+ /**
482
+ * Remove a marker from the cluster.
483
+ *
484
+ * @param {google.maps.Marker} marker The marker to remove.
485
+ * @param {boolean=} opt_nodraw Optional boolean to force no redraw.
486
+ * @return {boolean} True if the marker was removed.
487
+ */
488
+ MarkerClusterer.prototype.removeMarker = function(marker, opt_nodraw) {
489
+ var removed = this.removeMarker_(marker);
490
+
491
+ if (!opt_nodraw && removed) {
492
+ this.resetViewport();
493
+ this.redraw();
494
+ return true;
495
+ } else {
496
+ return false;
497
+ }
498
+ };
499
+
500
+
501
+ /**
502
+ * Removes an array of markers from the cluster.
503
+ *
504
+ * @param {Array.<google.maps.Marker>} markers The markers to remove.
505
+ * @param {boolean=} opt_nodraw Optional boolean to force no redraw.
506
+ */
507
+ MarkerClusterer.prototype.removeMarkers = function(markers, opt_nodraw) {
508
+ var removed = false;
509
+
510
+ for (var i = 0, marker; marker = markers[i]; i++) {
511
+ var r = this.removeMarker_(marker);
512
+ removed = removed || r;
513
+ }
514
+
515
+ if (!opt_nodraw && removed) {
516
+ this.resetViewport();
517
+ this.redraw();
518
+ return true;
519
+ }
520
+ };
521
+
522
+
523
+ /**
524
+ * Sets the clusterer's ready state.
525
+ *
526
+ * @param {boolean} ready The state.
527
+ * @private
528
+ */
529
+ MarkerClusterer.prototype.setReady_ = function(ready) {
530
+ if (!this.ready_) {
531
+ this.ready_ = ready;
532
+ this.createClusters_();
533
+ }
534
+ };
535
+
536
+
537
+ /**
538
+ * Returns the number of clusters in the clusterer.
539
+ *
540
+ * @return {number} The number of clusters.
541
+ */
542
+ MarkerClusterer.prototype.getTotalClusters = function() {
543
+ return this.clusters_.length;
544
+ };
545
+
546
+
547
+ /**
548
+ * Returns the google map that the clusterer is associated with.
549
+ *
550
+ * @return {google.maps.Map} The map.
551
+ */
552
+ MarkerClusterer.prototype.getMap = function() {
553
+ return this.map_;
554
+ };
555
+
556
+
557
+ /**
558
+ * Sets the google map that the clusterer is associated with.
559
+ *
560
+ * @param {google.maps.Map} map The map.
561
+ */
562
+ MarkerClusterer.prototype.setMap = function(map) {
563
+ this.map_ = map;
564
+ };
565
+
566
+
567
+ /**
568
+ * Returns the size of the grid.
569
+ *
570
+ * @return {number} The grid size.
571
+ */
572
+ MarkerClusterer.prototype.getGridSize = function() {
573
+ return this.gridSize_;
574
+ };
575
+
576
+
577
+ /**
578
+ * Sets the size of the grid.
579
+ *
580
+ * @param {number} size The grid size.
581
+ */
582
+ MarkerClusterer.prototype.setGridSize = function(size) {
583
+ this.gridSize_ = size;
584
+ };
585
+
586
+
587
+ /**
588
+ * Returns the min cluster size.
589
+ *
590
+ * @return {number} The grid size.
591
+ */
592
+ MarkerClusterer.prototype.getMinClusterSize = function() {
593
+ return this.minClusterSize_;
594
+ };
595
+
596
+ /**
597
+ * Sets the min cluster size.
598
+ *
599
+ * @param {number} size The grid size.
600
+ */
601
+ MarkerClusterer.prototype.setMinClusterSize = function(size) {
602
+ this.minClusterSize_ = size;
603
+ };
604
+
605
+
606
+ /**
607
+ * Extends a bounds object by the grid size.
608
+ *
609
+ * @param {google.maps.LatLngBounds} bounds The bounds to extend.
610
+ * @return {google.maps.LatLngBounds} The extended bounds.
611
+ */
612
+ MarkerClusterer.prototype.getExtendedBounds = function(bounds) {
613
+ var projection = this.getProjection();
614
+
615
+ // Turn the bounds into latlng.
616
+ var tr = new google.maps.LatLng(bounds.getNorthEast().lat(),
617
+ bounds.getNorthEast().lng());
618
+ var bl = new google.maps.LatLng(bounds.getSouthWest().lat(),
619
+ bounds.getSouthWest().lng());
620
+
621
+ // Convert the points to pixels and the extend out by the grid size.
622
+ var trPix = projection.fromLatLngToDivPixel(tr);
623
+ trPix.x += this.gridSize_;
624
+ trPix.y -= this.gridSize_;
625
+
626
+ var blPix = projection.fromLatLngToDivPixel(bl);
627
+ blPix.x -= this.gridSize_;
628
+ blPix.y += this.gridSize_;
629
+
630
+ // Convert the pixel points back to LatLng
631
+ var ne = projection.fromDivPixelToLatLng(trPix);
632
+ var sw = projection.fromDivPixelToLatLng(blPix);
633
+
634
+ // Extend the bounds to contain the new bounds.
635
+ bounds.extend(ne);
636
+ bounds.extend(sw);
637
+
638
+ return bounds;
639
+ };
640
+
641
+
642
+ /**
643
+ * Determins if a marker is contained in a bounds.
644
+ *
645
+ * @param {google.maps.Marker} marker The marker to check.
646
+ * @param {google.maps.LatLngBounds} bounds The bounds to check against.
647
+ * @return {boolean} True if the marker is in the bounds.
648
+ * @private
649
+ */
650
+ MarkerClusterer.prototype.isMarkerInBounds_ = function(marker, bounds) {
651
+ return bounds.contains(marker.getPosition());
652
+ };
653
+
654
+
655
+ /**
656
+ * Clears all clusters and markers from the clusterer.
657
+ */
658
+ MarkerClusterer.prototype.clearMarkers = function() {
659
+ this.resetViewport(true);
660
+
661
+ // Set the markers a empty array.
662
+ this.markers_ = [];
663
+ };
664
+
665
+
666
+ /**
667
+ * Clears all existing clusters and recreates them.
668
+ * @param {boolean} opt_hide To also hide the marker.
669
+ */
670
+ MarkerClusterer.prototype.resetViewport = function(opt_hide) {
671
+ // Remove all the clusters
672
+ for (var i = 0, cluster; cluster = this.clusters_[i]; i++) {
673
+ cluster.remove();
674
+ }
675
+
676
+ // Reset the markers to not be added and to be invisible.
677
+ for (var i = 0, marker; marker = this.markers_[i]; i++) {
678
+ marker.isAdded = false;
679
+ if (opt_hide) {
680
+ marker.setMap(null);
681
+ }
682
+ }
683
+
684
+ this.clusters_ = [];
685
+ };
686
+
687
+ /**
688
+ *
689
+ */
690
+ MarkerClusterer.prototype.repaint = function() {
691
+ var oldClusters = this.clusters_.slice();
692
+ this.clusters_.length = 0;
693
+ this.resetViewport();
694
+ this.redraw();
695
+
696
+ // Remove the old clusters.
697
+ // Do it in a timeout so the other clusters have been drawn first.
698
+ window.setTimeout(function() {
699
+ for (var i = 0, cluster; cluster = oldClusters[i]; i++) {
700
+ cluster.remove();
701
+ }
702
+ }, 0);
703
+ };
704
+
705
+
706
+ /**
707
+ * Redraws the clusters.
708
+ */
709
+ MarkerClusterer.prototype.redraw = function() {
710
+ this.createClusters_();
711
+ };
712
+
713
+
714
+ /**
715
+ * Calculates the distance between two latlng locations in km.
716
+ * @see http://www.movable-type.co.uk/scripts/latlong.html
717
+ *
718
+ * @param {google.maps.LatLng} p1 The first lat lng point.
719
+ * @param {google.maps.LatLng} p2 The second lat lng point.
720
+ * @return {number} The distance between the two points in km.
721
+ * @private
722
+ */
723
+ MarkerClusterer.prototype.distanceBetweenPoints_ = function(p1, p2) {
724
+ if (!p1 || !p2) {
725
+ return 0;
726
+ }
727
+
728
+ var R = 6371; // Radius of the Earth in km
729
+ var dLat = (p2.lat() - p1.lat()) * Math.PI / 180;
730
+ var dLon = (p2.lng() - p1.lng()) * Math.PI / 180;
731
+ var a = Math.sin(dLat / 2) * Math.sin(dLat / 2) +
732
+ Math.cos(p1.lat() * Math.PI / 180) * Math.cos(p2.lat() * Math.PI / 180) *
733
+ Math.sin(dLon / 2) * Math.sin(dLon / 2);
734
+ var c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1 - a));
735
+ var d = R * c;
736
+ return d;
737
+ };
738
+
739
+
740
+ /**
741
+ * Add a marker to a cluster, or creates a new cluster.
742
+ *
743
+ * @param {google.maps.Marker} marker The marker to add.
744
+ * @private
745
+ */
746
+ MarkerClusterer.prototype.addToClosestCluster_ = function(marker) {
747
+ var distance = 40000; // Some large number
748
+ var clusterToAddTo = null;
749
+ var pos = marker.getPosition();
750
+ for (var i = 0, cluster; cluster = this.clusters_[i]; i++) {
751
+ var center = cluster.getCenter();
752
+ if (center) {
753
+ var d = this.distanceBetweenPoints_(center, marker.getPosition());
754
+ if (d < distance) {
755
+ distance = d;
756
+ clusterToAddTo = cluster;
757
+ }
758
+ }
759
+ }
760
+
761
+ if (clusterToAddTo && clusterToAddTo.isMarkerInClusterBounds(marker)) {
762
+ clusterToAddTo.addMarker(marker);
763
+ } else {
764
+ var cluster = new Cluster(this);
765
+ cluster.addMarker(marker);
766
+ this.clusters_.push(cluster);
767
+ }
768
+ };
769
+
770
+
771
+ /**
772
+ * Creates the clusters.
773
+ *
774
+ * @private
775
+ */
776
+ MarkerClusterer.prototype.createClusters_ = function() {
777
+ if (!this.ready_) {
778
+ return;
779
+ }
780
+
781
+ // Get our current map view bounds.
782
+ // Create a new bounds object so we don't affect the map.
783
+ var mapBounds = new google.maps.LatLngBounds(this.map_.getBounds().getSouthWest(),
784
+ this.map_.getBounds().getNorthEast());
785
+ var bounds = this.getExtendedBounds(mapBounds);
786
+
787
+ for (var i = 0, marker; marker = this.markers_[i]; i++) {
788
+ if (!marker.isAdded && this.isMarkerInBounds_(marker, bounds)) {
789
+ this.addToClosestCluster_(marker);
790
+ }
791
+ }
792
+ };
793
+
794
+
795
+ /**
796
+ * A cluster that contains markers.
797
+ *
798
+ * @param {MarkerClusterer} markerClusterer The markerclusterer that this
799
+ * cluster is associated with.
800
+ * @constructor
801
+ * @ignore
802
+ */
803
+ function Cluster(markerClusterer) {
804
+ this.markerClusterer_ = markerClusterer;
805
+ this.map_ = markerClusterer.getMap();
806
+ this.gridSize_ = markerClusterer.getGridSize();
807
+ this.minClusterSize_ = markerClusterer.getMinClusterSize();
808
+ this.averageCenter_ = markerClusterer.isAverageCenter();
809
+ this.center_ = null;
810
+ this.markers_ = [];
811
+ this.bounds_ = null;
812
+ this.clusterIcon_ = new ClusterIcon(this, markerClusterer.getStyles(),
813
+ markerClusterer.getGridSize());
814
+ }
815
+
816
+ /**
817
+ * Determins if a marker is already added to the cluster.
818
+ *
819
+ * @param {google.maps.Marker} marker The marker to check.
820
+ * @return {boolean} True if the marker is already added.
821
+ */
822
+ Cluster.prototype.isMarkerAlreadyAdded = function(marker) {
823
+ if (this.markers_.indexOf) {
824
+ return this.markers_.indexOf(marker) != -1;
825
+ } else {
826
+ for (var i = 0, m; m = this.markers_[i]; i++) {
827
+ if (m == marker) {
828
+ return true;
829
+ }
830
+ }
831
+ }
832
+ return false;
833
+ };
834
+
835
+
836
+ /**
837
+ * Add a marker the cluster.
838
+ *
839
+ * @param {google.maps.Marker} marker The marker to add.
840
+ * @return {boolean} True if the marker was added.
841
+ */
842
+ Cluster.prototype.addMarker = function(marker) {
843
+ if (this.isMarkerAlreadyAdded(marker)) {
844
+ return false;
845
+ }
846
+
847
+ if (!this.center_) {
848
+ this.center_ = marker.getPosition();
849
+ this.calculateBounds_();
850
+ } else {
851
+ if (this.averageCenter_) {
852
+ var l = this.markers_.length + 1;
853
+ var lat = (this.center_.lat() * (l-1) + marker.getPosition().lat()) / l;
854
+ var lng = (this.center_.lng() * (l-1) + marker.getPosition().lng()) / l;
855
+ this.center_ = new google.maps.LatLng(lat, lng);
856
+ this.calculateBounds_();
857
+ }
858
+ }
859
+
860
+ marker.isAdded = true;
861
+ this.markers_.push(marker);
862
+
863
+ var len = this.markers_.length;
864
+ if (len < this.minClusterSize_ && marker.getMap() != this.map_) {
865
+ // Min cluster size not reached so show the marker.
866
+ marker.setMap(this.map_);
867
+ }
868
+
869
+ if (len == this.minClusterSize_) {
870
+ // Hide the markers that were showing.
871
+ for (var i = 0; i < len; i++) {
872
+ this.markers_[i].setMap(null);
873
+ }
874
+ }
875
+
876
+ if (len >= this.minClusterSize_) {
877
+ marker.setMap(null);
878
+ }
879
+
880
+ this.updateIcon();
881
+ return true;
882
+ };
883
+
884
+
885
+ /**
886
+ * Returns the marker clusterer that the cluster is associated with.
887
+ *
888
+ * @return {MarkerClusterer} The associated marker clusterer.
889
+ */
890
+ Cluster.prototype.getMarkerClusterer = function() {
891
+ return this.markerClusterer_;
892
+ };
893
+
894
+
895
+ /**
896
+ * Returns the bounds of the cluster.
897
+ *
898
+ * @return {google.maps.LatLngBounds} the cluster bounds.
899
+ */
900
+ Cluster.prototype.getBounds = function() {
901
+ var bounds = new google.maps.LatLngBounds(this.center_, this.center_);
902
+ var markers = this.getMarkers();
903
+ for (var i = 0, marker; marker = markers[i]; i++) {
904
+ bounds.extend(marker.getPosition());
905
+ }
906
+ return bounds;
907
+ };
908
+
909
+
910
+ /**
911
+ * Removes the cluster
912
+ */
913
+ Cluster.prototype.remove = function() {
914
+ this.clusterIcon_.remove();
915
+ this.markers_.length = 0;
916
+ delete this.markers_;
917
+ };
918
+
919
+
920
+ /**
921
+ * Returns the center of the cluster.
922
+ *
923
+ * @return {number} The cluster center.
924
+ */
925
+ Cluster.prototype.getSize = function() {
926
+ return this.markers_.length;
927
+ };
928
+
929
+
930
+ /**
931
+ * Returns the center of the cluster.
932
+ *
933
+ * @return {Array.<google.maps.Marker>} The cluster center.
934
+ */
935
+ Cluster.prototype.getMarkers = function() {
936
+ return this.markers_;
937
+ };
938
+
939
+
940
+ /**
941
+ * Returns the center of the cluster.
942
+ *
943
+ * @return {google.maps.LatLng} The cluster center.
944
+ */
945
+ Cluster.prototype.getCenter = function() {
946
+ return this.center_;
947
+ };
948
+
949
+
950
+ /**
951
+ * Calculated the extended bounds of the cluster with the grid.
952
+ *
953
+ * @private
954
+ */
955
+ Cluster.prototype.calculateBounds_ = function() {
956
+ var bounds = new google.maps.LatLngBounds(this.center_, this.center_);
957
+ this.bounds_ = this.markerClusterer_.getExtendedBounds(bounds);
958
+ };
959
+
960
+
961
+ /**
962
+ * Determines if a marker lies in the clusters bounds.
963
+ *
964
+ * @param {google.maps.Marker} marker The marker to check.
965
+ * @return {boolean} True if the marker lies in the bounds.
966
+ */
967
+ Cluster.prototype.isMarkerInClusterBounds = function(marker) {
968
+ return this.bounds_.contains(marker.getPosition());
969
+ };
970
+
971
+
972
+ /**
973
+ * Returns the map that the cluster is associated with.
974
+ *
975
+ * @return {google.maps.Map} The map.
976
+ */
977
+ Cluster.prototype.getMap = function() {
978
+ return this.map_;
979
+ };
980
+
981
+
982
+ /**
983
+ * Updates the cluster icon
984
+ */
985
+ Cluster.prototype.updateIcon = function() {
986
+ var zoom = this.map_.getZoom();
987
+ var mz = this.markerClusterer_.getMaxZoom();
988
+
989
+ if (mz && zoom > mz) {
990
+ // The zoom is greater than our max zoom so show all the markers in cluster.
991
+ for (var i = 0, marker; marker = this.markers_[i]; i++) {
992
+ marker.setMap(this.map_);
993
+ }
994
+ return;
995
+ }
996
+
997
+ if (this.markers_.length < this.minClusterSize_) {
998
+ // Min cluster size not yet reached.
999
+ this.clusterIcon_.hide();
1000
+ return;
1001
+ }
1002
+
1003
+ var numStyles = this.markerClusterer_.getStyles().length;
1004
+ var sums = this.markerClusterer_.getCalculator()(this.markers_, numStyles);
1005
+ this.clusterIcon_.setCenter(this.center_);
1006
+ this.clusterIcon_.setSums(sums);
1007
+ this.clusterIcon_.show();
1008
+ };
1009
+
1010
+
1011
+ /**
1012
+ * A cluster icon
1013
+ *
1014
+ * @param {Cluster} cluster The cluster to be associated with.
1015
+ * @param {Object} styles An object that has style properties:
1016
+ * 'url': (string) The image url.
1017
+ * 'height': (number) The image height.
1018
+ * 'width': (number) The image width.
1019
+ * 'anchor': (Array) The anchor position of the label text.
1020
+ * 'textColor': (string) The text color.
1021
+ * 'textSize': (number) The text size.
1022
+ * 'backgroundPosition: (string) The background postition x, y.
1023
+ * @param {number=} opt_padding Optional padding to apply to the cluster icon.
1024
+ * @constructor
1025
+ * @extends google.maps.OverlayView
1026
+ * @ignore
1027
+ */
1028
+ function ClusterIcon(cluster, styles, opt_padding) {
1029
+ cluster.getMarkerClusterer().extend(ClusterIcon, google.maps.OverlayView);
1030
+
1031
+ this.styles_ = styles;
1032
+ this.padding_ = opt_padding || 0;
1033
+ this.cluster_ = cluster;
1034
+ this.center_ = null;
1035
+ this.map_ = cluster.getMap();
1036
+ this.div_ = null;
1037
+ this.sums_ = null;
1038
+ this.visible_ = false;
1039
+
1040
+ this.setMap(this.map_);
1041
+ }
1042
+
1043
+
1044
+ /**
1045
+ * Triggers the clusterclick event and zoom's if the option is set.
1046
+ *
1047
+ * @param {google.maps.MouseEvent} event The event to propagate
1048
+ */
1049
+ ClusterIcon.prototype.triggerClusterClick = function(event) {
1050
+ var markerClusterer = this.cluster_.getMarkerClusterer();
1051
+
1052
+ // Trigger the clusterclick event.
1053
+ google.maps.event.trigger(markerClusterer, 'clusterclick', this.cluster_, event);
1054
+
1055
+ if (markerClusterer.isZoomOnClick()) {
1056
+ // Zoom into the cluster.
1057
+ this.map_.fitBounds(this.cluster_.getBounds());
1058
+ }
1059
+ };
1060
+
1061
+
1062
+ /**
1063
+ * Adding the cluster icon to the dom.
1064
+ * @ignore
1065
+ */
1066
+ ClusterIcon.prototype.onAdd = function() {
1067
+ this.div_ = document.createElement('DIV');
1068
+ if (this.visible_) {
1069
+ var pos = this.getPosFromLatLng_(this.center_);
1070
+ this.div_.style.cssText = this.createCss(pos);
1071
+ this.div_.innerHTML = this.sums_.text;
1072
+ }
1073
+
1074
+ var panes = this.getPanes();
1075
+ panes.overlayMouseTarget.appendChild(this.div_);
1076
+
1077
+ var that = this;
1078
+ var isDragging = false;
1079
+ google.maps.event.addDomListener(this.div_, 'click', function(event) {
1080
+ // Only perform click when not preceded by a drag
1081
+ if (!isDragging) {
1082
+ that.triggerClusterClick(event);
1083
+ }
1084
+ });
1085
+ google.maps.event.addDomListener(this.div_, 'mousedown', function() {
1086
+ isDragging = false;
1087
+ });
1088
+ google.maps.event.addDomListener(this.div_, 'mousemove', function() {
1089
+ isDragging = true;
1090
+ });
1091
+ };
1092
+
1093
+
1094
+ /**
1095
+ * Returns the position to place the div dending on the latlng.
1096
+ *
1097
+ * @param {google.maps.LatLng} latlng The position in latlng.
1098
+ * @return {google.maps.Point} The position in pixels.
1099
+ * @private
1100
+ */
1101
+ ClusterIcon.prototype.getPosFromLatLng_ = function(latlng) {
1102
+ var pos = this.getProjection().fromLatLngToDivPixel(latlng);
1103
+
1104
+ if (typeof this.iconAnchor_ === 'object' && this.iconAnchor_.length === 2) {
1105
+ pos.x -= this.iconAnchor_[0];
1106
+ pos.y -= this.iconAnchor_[1];
1107
+ } else {
1108
+ pos.x -= parseInt(this.width_ / 2, 10);
1109
+ pos.y -= parseInt(this.height_ / 2, 10);
1110
+ }
1111
+ return pos;
1112
+ };
1113
+
1114
+
1115
+ /**
1116
+ * Draw the icon.
1117
+ * @ignore
1118
+ */
1119
+ ClusterIcon.prototype.draw = function() {
1120
+ if (this.visible_) {
1121
+ var pos = this.getPosFromLatLng_(this.center_);
1122
+ this.div_.style.top = pos.y + 'px';
1123
+ this.div_.style.left = pos.x + 'px';
1124
+ }
1125
+ };
1126
+
1127
+
1128
+ /**
1129
+ * Hide the icon.
1130
+ */
1131
+ ClusterIcon.prototype.hide = function() {
1132
+ if (this.div_) {
1133
+ this.div_.style.display = 'none';
1134
+ }
1135
+ this.visible_ = false;
1136
+ };
1137
+
1138
+
1139
+ /**
1140
+ * Position and show the icon.
1141
+ */
1142
+ ClusterIcon.prototype.show = function() {
1143
+ if (this.div_) {
1144
+ var pos = this.getPosFromLatLng_(this.center_);
1145
+ this.div_.style.cssText = this.createCss(pos);
1146
+ this.div_.style.display = '';
1147
+ }
1148
+ this.visible_ = true;
1149
+ };
1150
+
1151
+
1152
+ /**
1153
+ * Remove the icon from the map
1154
+ */
1155
+ ClusterIcon.prototype.remove = function() {
1156
+ this.setMap(null);
1157
+ };
1158
+
1159
+
1160
+ /**
1161
+ * Implementation of the onRemove interface.
1162
+ * @ignore
1163
+ */
1164
+ ClusterIcon.prototype.onRemove = function() {
1165
+ if (this.div_ && this.div_.parentNode) {
1166
+ this.hide();
1167
+ this.div_.parentNode.removeChild(this.div_);
1168
+ this.div_ = null;
1169
+ }
1170
+ };
1171
+
1172
+
1173
+ /**
1174
+ * Set the sums of the icon.
1175
+ *
1176
+ * @param {Object} sums The sums containing:
1177
+ * 'text': (string) The text to display in the icon.
1178
+ * 'index': (number) The style index of the icon.
1179
+ */
1180
+ ClusterIcon.prototype.setSums = function(sums) {
1181
+ this.sums_ = sums;
1182
+ this.text_ = sums.text;
1183
+ this.index_ = sums.index;
1184
+ if (this.div_) {
1185
+ this.div_.innerHTML = sums.text;
1186
+ }
1187
+
1188
+ this.useStyle();
1189
+ };
1190
+
1191
+
1192
+ /**
1193
+ * Sets the icon to the the styles.
1194
+ */
1195
+ ClusterIcon.prototype.useStyle = function() {
1196
+ var index = Math.max(0, this.sums_.index - 1);
1197
+ index = Math.min(this.styles_.length - 1, index);
1198
+ var style = this.styles_[index];
1199
+ this.url_ = style['url'];
1200
+ this.height_ = style['height'];
1201
+ this.width_ = style['width'];
1202
+ this.textColor_ = style['textColor'];
1203
+ this.anchor_ = style['anchor'];
1204
+ this.textSize_ = style['textSize'];
1205
+ this.backgroundPosition_ = style['backgroundPosition'];
1206
+ this.iconAnchor_ = style['iconAnchor'];
1207
+ };
1208
+
1209
+
1210
+ /**
1211
+ * Sets the center of the icon.
1212
+ *
1213
+ * @param {google.maps.LatLng} center The latlng to set as the center.
1214
+ */
1215
+ ClusterIcon.prototype.setCenter = function(center) {
1216
+ this.center_ = center;
1217
+ };
1218
+
1219
+
1220
+ /**
1221
+ * Create the css text based on the position of the icon.
1222
+ *
1223
+ * @param {google.maps.Point} pos The position.
1224
+ * @return {string} The css style text.
1225
+ */
1226
+ ClusterIcon.prototype.createCss = function(pos) {
1227
+ var style = [];
1228
+ style.push('background-image:url(' + this.url_ + ');');
1229
+ var backgroundPosition = this.backgroundPosition_ ? this.backgroundPosition_ : '0 0';
1230
+ style.push('background-position:' + backgroundPosition + ';');
1231
+
1232
+ if (typeof this.anchor_ === 'object') {
1233
+ if (typeof this.anchor_[0] === 'number' && this.anchor_[0] > 0 &&
1234
+ this.anchor_[0] < this.height_) {
1235
+ style.push('height:' + (this.height_ - this.anchor_[0]) +
1236
+ 'px; padding-top:' + this.anchor_[0] + 'px;');
1237
+ } else if (typeof this.anchor_[0] === 'number' && this.anchor_[0] < 0 &&
1238
+ -this.anchor_[0] < this.height_) {
1239
+ style.push('height:' + this.height_ + 'px; line-height:' + (this.height_ + this.anchor_[0]) +
1240
+ 'px;');
1241
+ } else {
1242
+ style.push('height:' + this.height_ + 'px; line-height:' + this.height_ +
1243
+ 'px;');
1244
+ }
1245
+ if (typeof this.anchor_[1] === 'number' && this.anchor_[1] > 0 &&
1246
+ this.anchor_[1] < this.width_) {
1247
+ style.push('width:' + (this.width_ - this.anchor_[1]) +
1248
+ 'px; padding-left:' + this.anchor_[1] + 'px;');
1249
+ } else {
1250
+ style.push('width:' + this.width_ + 'px; text-align:center;');
1251
+ }
1252
+ } else {
1253
+ style.push('height:' + this.height_ + 'px; line-height:' +
1254
+ this.height_ + 'px; width:' + this.width_ + 'px; text-align:center;');
1255
+ }
1256
+
1257
+ var txtColor = this.textColor_ ? this.textColor_ : 'black';
1258
+ var txtSize = this.textSize_ ? this.textSize_ : 11;
1259
+
1260
+ style.push('cursor:pointer; top:' + pos.y + 'px; left:' +
1261
+ pos.x + 'px; color:' + txtColor + '; position:absolute; font-size:' +
1262
+ txtSize + 'px; font-family:Arial,sans-serif; font-weight:bold');
1263
+ return style.join('');
1264
+ };
1265
+
1266
+
1267
+ // Export Symbols for Closure
1268
+ // If you are not going to compile with closure then you can remove the
1269
+ // code below.
1270
+ window['MarkerClusterer'] = MarkerClusterer;
1271
+ MarkerClusterer.prototype['addMarker'] = MarkerClusterer.prototype.addMarker;
1272
+ MarkerClusterer.prototype['addMarkers'] = MarkerClusterer.prototype.addMarkers;
1273
+ MarkerClusterer.prototype['clearMarkers'] =
1274
+ MarkerClusterer.prototype.clearMarkers;
1275
+ MarkerClusterer.prototype['fitMapToMarkers'] =
1276
+ MarkerClusterer.prototype.fitMapToMarkers;
1277
+ MarkerClusterer.prototype['getCalculator'] =
1278
+ MarkerClusterer.prototype.getCalculator;
1279
+ MarkerClusterer.prototype['getGridSize'] =
1280
+ MarkerClusterer.prototype.getGridSize;
1281
+ MarkerClusterer.prototype['getExtendedBounds'] =
1282
+ MarkerClusterer.prototype.getExtendedBounds;
1283
+ MarkerClusterer.prototype['getMap'] = MarkerClusterer.prototype.getMap;
1284
+ MarkerClusterer.prototype['getMarkers'] = MarkerClusterer.prototype.getMarkers;
1285
+ MarkerClusterer.prototype['getMaxZoom'] = MarkerClusterer.prototype.getMaxZoom;
1286
+ MarkerClusterer.prototype['getStyles'] = MarkerClusterer.prototype.getStyles;
1287
+ MarkerClusterer.prototype['getTotalClusters'] =
1288
+ MarkerClusterer.prototype.getTotalClusters;
1289
+ MarkerClusterer.prototype['getTotalMarkers'] =
1290
+ MarkerClusterer.prototype.getTotalMarkers;
1291
+ MarkerClusterer.prototype['redraw'] = MarkerClusterer.prototype.redraw;
1292
+ MarkerClusterer.prototype['removeMarker'] =
1293
+ MarkerClusterer.prototype.removeMarker;
1294
+ MarkerClusterer.prototype['removeMarkers'] =
1295
+ MarkerClusterer.prototype.removeMarkers;
1296
+ MarkerClusterer.prototype['resetViewport'] =
1297
+ MarkerClusterer.prototype.resetViewport;
1298
+ MarkerClusterer.prototype['repaint'] =
1299
+ MarkerClusterer.prototype.repaint;
1300
+ MarkerClusterer.prototype['setCalculator'] =
1301
+ MarkerClusterer.prototype.setCalculator;
1302
+ MarkerClusterer.prototype['setGridSize'] =
1303
+ MarkerClusterer.prototype.setGridSize;
1304
+ MarkerClusterer.prototype['setMaxZoom'] =
1305
+ MarkerClusterer.prototype.setMaxZoom;
1306
+ MarkerClusterer.prototype['onAdd'] = MarkerClusterer.prototype.onAdd;
1307
+ MarkerClusterer.prototype['draw'] = MarkerClusterer.prototype.draw;
1308
+
1309
+ Cluster.prototype['getCenter'] = Cluster.prototype.getCenter;
1310
+ Cluster.prototype['getSize'] = Cluster.prototype.getSize;
1311
+ Cluster.prototype['getMarkers'] = Cluster.prototype.getMarkers;
1312
+
1313
+ ClusterIcon.prototype['onAdd'] = ClusterIcon.prototype.onAdd;
1314
+ ClusterIcon.prototype['draw'] = ClusterIcon.prototype.draw;
1315
+ ClusterIcon.prototype['onRemove'] = ClusterIcon.prototype.onRemove;
assets/packages/clusterer/markerclusterer.min.js ADDED
@@ -0,0 +1 @@
 
1
+ function MarkerClusterer(t,e,r){this.extend(MarkerClusterer,google.maps.OverlayView),this.map_=t,this.markers_=[],this.clusters_=[],this.sizes=[53,56,66,78,90],this.styles_=[],this.ready_=!1;var s=r||{};this.gridSize_=s.gridSize||60,this.minClusterSize_=s.minimumClusterSize||2,this.maxZoom_=s.maxZoom||null,this.styles_=s.styles||[],this.imagePath_=s.imagePath||this.MARKER_CLUSTER_IMAGE_PATH_,this.imageExtension_=s.imageExtension||this.MARKER_CLUSTER_IMAGE_EXTENSION_,this.zoomOnClick_=!0,void 0!=s.zoomOnClick&&(this.zoomOnClick_=s.zoomOnClick),this.averageCenter_=!1,void 0!=s.averageCenter&&(this.averageCenter_=s.averageCenter),this.setupStyles_(),this.setMap(t),this.prevZoom_=this.map_.getZoom();var o=this;google.maps.event.addListener(this.map_,"zoom_changed",function(){var t=o.map_.getZoom();o.prevZoom_!=t&&(o.prevZoom_=t,o.resetViewport())}),google.maps.event.addListener(this.map_,"idle",function(){o.redraw()}),e&&e.length&&this.addMarkers(e,!1)}function Cluster(t){this.markerClusterer_=t,this.map_=t.getMap(),this.gridSize_=t.getGridSize(),this.minClusterSize_=t.getMinClusterSize(),this.averageCenter_=t.isAverageCenter(),this.center_=null,this.markers_=[],this.bounds_=null,this.clusterIcon_=new ClusterIcon(this,t.getStyles(),t.getGridSize())}function ClusterIcon(t,e,r){t.getMarkerClusterer().extend(ClusterIcon,google.maps.OverlayView),this.styles_=e,this.padding_=r||0,this.cluster_=t,this.center_=null,this.map_=t.getMap(),this.div_=null,this.sums_=null,this.visible_=!1,this.setMap(this.map_)}MarkerClusterer.prototype.MARKER_CLUSTER_IMAGE_PATH_="../images/m",MarkerClusterer.prototype.MARKER_CLUSTER_IMAGE_EXTENSION_="png",MarkerClusterer.prototype.extend=function(t,e){return function(t){for(var e in t.prototype)this.prototype[e]=t.prototype[e];return this}.apply(t,[e])},MarkerClusterer.prototype.onAdd=function(){this.setReady_(!0)},MarkerClusterer.prototype.draw=function(){},MarkerClusterer.prototype.setupStyles_=function(){if(!this.styles_.length)for(var t,e=0;t=this.sizes[e];e++)this.styles_.push({url:this.imagePath_+(e+1)+"."+this.imageExtension_,height:t,width:t})},MarkerClusterer.prototype.fitMapToMarkers=function(){for(var t,e=this.getMarkers(),r=new google.maps.LatLngBounds,s=0;t=e[s];s++)r.extend(t.getPosition());this.map_.fitBounds(r)},MarkerClusterer.prototype.setStyles=function(t){this.styles_=t},MarkerClusterer.prototype.getStyles=function(){return this.styles_},MarkerClusterer.prototype.isZoomOnClick=function(){return this.zoomOnClick_},MarkerClusterer.prototype.isAverageCenter=function(){return this.averageCenter_},MarkerClusterer.prototype.getMarkers=function(){return this.markers_},MarkerClusterer.prototype.getTotalMarkers=function(){return this.markers_.length},MarkerClusterer.prototype.setMaxZoom=function(t){this.maxZoom_=t},MarkerClusterer.prototype.getMaxZoom=function(){return this.maxZoom_},MarkerClusterer.prototype.calculator_=function(t,e){for(var r=0,s=t.length,o=s;0!==o;)o=parseInt(o/10,10),r++;return r=Math.min(r,e),{text:s,index:r}},MarkerClusterer.prototype.setCalculator=function(t){this.calculator_=t},MarkerClusterer.prototype.getCalculator=function(){return this.calculator_},MarkerClusterer.prototype.addMarkers=function(t,e){for(var r,s=0;r=t[s];s++)this.pushMarkerTo_(r);e||this.redraw()},MarkerClusterer.prototype.pushMarkerTo_=function(t){if(t.isAdded=!1,t.draggable){var e=this;google.maps.event.addListener(t,"dragend",function(){t.isAdded=!1,e.repaint()})}this.markers_.push(t)},MarkerClusterer.prototype.addMarker=function(t,e){this.pushMarkerTo_(t),e||this.redraw()},MarkerClusterer.prototype.removeMarker_=function(t){var e=-1;if(this.markers_.indexOf)e=this.markers_.indexOf(t);else for(var r,s=0;r=this.markers_[s];s++)if(r==t){e=s;break}return-1!=e&&(t.setMap(null),this.markers_.splice(e,1),!0)},MarkerClusterer.prototype.removeMarker=function(t,e){var r=this.removeMarker_(t);return!(e||!r)&&(this.resetViewport(),this.redraw(),!0)},MarkerClusterer.prototype.removeMarkers=function(t,e){for(var r,s=!1,o=0;r=t[o];o++){var i=this.removeMarker_(r);s=s||i}if(!e&&s)return this.resetViewport(),this.redraw(),!0},MarkerClusterer.prototype.setReady_=function(t){this.ready_||(this.ready_=t,this.createClusters_())},MarkerClusterer.prototype.getTotalClusters=function(){return this.clusters_.length},MarkerClusterer.prototype.getMap=function(){return this.map_},MarkerClusterer.prototype.setMap=function(t){this.map_=t},MarkerClusterer.prototype.getGridSize=function(){return this.gridSize_},MarkerClusterer.prototype.setGridSize=function(t){this.gridSize_=t},MarkerClusterer.prototype.getMinClusterSize=function(){return this.minClusterSize_},MarkerClusterer.prototype.setMinClusterSize=function(t){this.minClusterSize_=t},MarkerClusterer.prototype.getExtendedBounds=function(t){var e=this.getProjection(),r=new google.maps.LatLng(t.getNorthEast().lat(),t.getNorthEast().lng()),s=new google.maps.LatLng(t.getSouthWest().lat(),t.getSouthWest().lng()),o=e.fromLatLngToDivPixel(r);o.x+=this.gridSize_,o.y-=this.gridSize_;var i=e.fromLatLngToDivPixel(s);i.x-=this.gridSize_,i.y+=this.gridSize_;var n=e.fromDivPixelToLatLng(o),a=e.fromDivPixelToLatLng(i);return t.extend(n),t.extend(a),t},MarkerClusterer.prototype.isMarkerInBounds_=function(t,e){return e.contains(t.getPosition())},MarkerClusterer.prototype.clearMarkers=function(){this.resetViewport(!0),this.markers_=[]},MarkerClusterer.prototype.resetViewport=function(t){for(var e,r=0;e=this.clusters_[r];r++)e.remove();for(var s,r=0;s=this.markers_[r];r++)s.isAdded=!1,t&&s.setMap(null);this.clusters_=[]},MarkerClusterer.prototype.repaint=function(){var t=this.clusters_.slice();this.clusters_.length=0,this.resetViewport(),this.redraw(),window.setTimeout(function(){for(var e,r=0;e=t[r];r++)e.remove()},0)},MarkerClusterer.prototype.redraw=function(){this.createClusters_()},MarkerClusterer.prototype.distanceBetweenPoints_=function(t,e){if(!t||!e)return 0;var r=(e.lat()-t.lat())*Math.PI/180,s=(e.lng()-t.lng())*Math.PI/180,o=Math.sin(r/2)*Math.sin(r/2)+Math.cos(t.lat()*Math.PI/180)*Math.cos(e.lat()*Math.PI/180)*Math.sin(s/2)*Math.sin(s/2);return 6371*(2*Math.atan2(Math.sqrt(o),Math.sqrt(1-o)))},MarkerClusterer.prototype.addToClosestCluster_=function(t){for(var e,r=4e4,s=null,o=(t.getPosition(),0);e=this.clusters_[o];o++){var i=e.getCenter();if(i){var n=this.distanceBetweenPoints_(i,t.getPosition());n<r&&(r=n,s=e)}}s&&s.isMarkerInClusterBounds(t)?s.addMarker(t):((e=new Cluster(this)).addMarker(t),this.clusters_.push(e))},MarkerClusterer.prototype.createClusters_=function(){if(this.ready_)for(var t,e=new google.maps.LatLngBounds(this.map_.getBounds().getSouthWest(),this.map_.getBounds().getNorthEast()),r=this.getExtendedBounds(e),s=0;t=this.markers_[s];s++)!t.isAdded&&this.isMarkerInBounds_(t,r)&&this.addToClosestCluster_(t)},Cluster.prototype.isMarkerAlreadyAdded=function(t){if(this.markers_.indexOf)return-1!=this.markers_.indexOf(t);for(var e,r=0;e=this.markers_[r];r++)if(e==t)return!0;return!1},Cluster.prototype.addMarker=function(t){if(this.isMarkerAlreadyAdded(t))return!1;if(this.center_){if(this.averageCenter_){var e=this.markers_.length+1,r=(this.center_.lat()*(e-1)+t.getPosition().lat())/e,s=(this.center_.lng()*(e-1)+t.getPosition().lng())/e;this.center_=new google.maps.LatLng(r,s),this.calculateBounds_()}}else this.center_=t.getPosition(),this.calculateBounds_();t.isAdded=!0,this.markers_.push(t);var o=this.markers_.length;if(o<this.minClusterSize_&&t.getMap()!=this.map_&&t.setMap(this.map_),o==this.minClusterSize_)for(var i=0;i<o;i++)this.markers_[i].setMap(null);return o>=this.minClusterSize_&&t.setMap(null),this.updateIcon(),!0},Cluster.prototype.getMarkerClusterer=function(){return this.markerClusterer_},Cluster.prototype.getBounds=function(){for(var t,e=new google.maps.LatLngBounds(this.center_,this.center_),r=this.getMarkers(),s=0;t=r[s];s++)e.extend(t.getPosition());return e},Cluster.prototype.remove=function(){this.clusterIcon_.remove(),this.markers_.length=0,delete this.markers_},Cluster.prototype.getSize=function(){return this.markers_.length},Cluster.prototype.getMarkers=function(){return this.markers_},Cluster.prototype.getCenter=function(){return this.center_},Cluster.prototype.calculateBounds_=function(){var t=new google.maps.LatLngBounds(this.center_,this.center_);this.bounds_=this.markerClusterer_.getExtendedBounds(t)},Cluster.prototype.isMarkerInClusterBounds=function(t){return this.bounds_.contains(t.getPosition())},Cluster.prototype.getMap=function(){return this.map_},Cluster.prototype.updateIcon=function(){var t=this.map_.getZoom(),e=this.markerClusterer_.getMaxZoom();if(e&&t>e)for(var r,s=0;r=this.markers_[s];s++)r.setMap(this.map_);else if(this.markers_.length<this.minClusterSize_)this.clusterIcon_.hide();else{var o=this.markerClusterer_.getStyles().length,i=this.markerClusterer_.getCalculator()(this.markers_,o);this.clusterIcon_.setCenter(this.center_),this.clusterIcon_.setSums(i),this.clusterIcon_.show()}},ClusterIcon.prototype.triggerClusterClick=function(t){var e=this.cluster_.getMarkerClusterer();google.maps.event.trigger(e,"clusterclick",this.cluster_,t),e.isZoomOnClick()&&this.map_.fitBounds(this.cluster_.getBounds())},ClusterIcon.prototype.onAdd=function(){if(this.div_=document.createElement("DIV"),this.visible_){var t=this.getPosFromLatLng_(this.center_);this.div_.style.cssText=this.createCss(t),this.div_.innerHTML=this.sums_.text}this.getPanes().overlayMouseTarget.appendChild(this.div_);var e=this,r=!1;google.maps.event.addDomListener(this.div_,"click",function(t){r||e.triggerClusterClick(t)}),google.maps.event.addDomListener(this.div_,"mousedown",function(){r=!1}),google.maps.event.addDomListener(this.div_,"mousemove",function(){r=!0})},ClusterIcon.prototype.getPosFromLatLng_=function(t){var e=this.getProjection().fromLatLngToDivPixel(t);return"object"==typeof this.iconAnchor_&&2===this.iconAnchor_.length?(e.x-=this.iconAnchor_[0],e.y-=this.iconAnchor_[1]):(e.x-=parseInt(this.width_/2,10),e.y-=parseInt(this.height_/2,10)),e},ClusterIcon.prototype.draw=function(){if(this.visible_){var t=this.getPosFromLatLng_(this.center_);this.div_.style.top=t.y+"px",this.div_.style.left=t.x+"px"}},ClusterIcon.prototype.hide=function(){this.div_&&(this.div_.style.display="none"),this.visible_=!1},ClusterIcon.prototype.show=function(){if(this.div_){var t=this.getPosFromLatLng_(this.center_);this.div_.style.cssText=this.createCss(t),this.div_.style.display=""}this.visible_=!0},ClusterIcon.prototype.remove=function(){this.setMap(null)},ClusterIcon.prototype.onRemove=function(){this.div_&&this.div_.parentNode&&(this.hide(),this.div_.parentNode.removeChild(this.div_),this.div_=null)},ClusterIcon.prototype.setSums=function(t){this.sums_=t,this.text_=t.text,this.index_=t.index,this.div_&&(this.div_.innerHTML=t.text),this.useStyle()},ClusterIcon.prototype.useStyle=function(){var t=Math.max(0,this.sums_.index-1);t=Math.min(this.styles_.length-1,t);var e=this.styles_[t];this.url_=e.url,this.height_=e.height,this.width_=e.width,this.textColor_=e.textColor,this.anchor_=e.anchor,this.textSize_=e.textSize,this.backgroundPosition_=e.backgroundPosition,this.iconAnchor_=e.iconAnchor},ClusterIcon.prototype.setCenter=function(t){this.center_=t},ClusterIcon.prototype.createCss=function(t){var e=[];e.push("background-image:url("+this.url_+");");var r=this.backgroundPosition_?this.backgroundPosition_:"0 0";e.push("background-position:"+r+";"),"object"==typeof this.anchor_?("number"==typeof this.anchor_[0]&&this.anchor_[0]>0&&this.anchor_[0]<this.height_?e.push("height:"+(this.height_-this.anchor_[0])+"px; padding-top:"+this.anchor_[0]+"px;"):"number"==typeof this.anchor_[0]&&this.anchor_[0]<0&&-this.anchor_[0]<this.height_?e.push("height:"+this.height_+"px; line-height:"+(this.height_+this.anchor_[0])+"px;"):e.push("height:"+this.height_+"px; line-height:"+this.height_+"px;"),"number"==typeof this.anchor_[1]&&this.anchor_[1]>0&&this.anchor_[1]<this.width_?e.push("width:"+(this.width_-this.anchor_[1])+"px; padding-left:"+this.anchor_[1]+"px;"):e.push("width:"+this.width_+"px; text-align:center;")):e.push("height:"+this.height_+"px; line-height:"+this.height_+"px; width:"+this.width_+"px; text-align:center;");var s=this.textColor_?this.textColor_:"black",o=this.textSize_?this.textSize_:11;return e.push("cursor:pointer; top:"+t.y+"px; left:"+t.x+"px; color:"+s+"; position:absolute; font-size:"+o+"px; font-family:Arial,sans-serif; font-weight:bold"),e.join("")},window.MarkerClusterer=MarkerClusterer,MarkerClusterer.prototype.addMarker=MarkerClusterer.prototype.addMarker,MarkerClusterer.prototype.addMarkers=MarkerClusterer.prototype.addMarkers,MarkerClusterer.prototype.clearMarkers=MarkerClusterer.prototype.clearMarkers,MarkerClusterer.prototype.fitMapToMarkers=MarkerClusterer.prototype.fitMapToMarkers,MarkerClusterer.prototype.getCalculator=MarkerClusterer.prototype.getCalculator,MarkerClusterer.prototype.getGridSize=MarkerClusterer.prototype.getGridSize,MarkerClusterer.prototype.getExtendedBounds=MarkerClusterer.prototype.getExtendedBounds,MarkerClusterer.prototype.getMap=MarkerClusterer.prototype.getMap,MarkerClusterer.prototype.getMarkers=MarkerClusterer.prototype.getMarkers,MarkerClusterer.prototype.getMaxZoom=MarkerClusterer.prototype.getMaxZoom,MarkerClusterer.prototype.getStyles=MarkerClusterer.prototype.getStyles,MarkerClusterer.prototype.getTotalClusters=MarkerClusterer.prototype.getTotalClusters,MarkerClusterer.prototype.getTotalMarkers=MarkerClusterer.prototype.getTotalMarkers,MarkerClusterer.prototype.redraw=MarkerClusterer.prototype.redraw,MarkerClusterer.prototype.removeMarker=MarkerClusterer.prototype.removeMarker,MarkerClusterer.prototype.removeMarkers=MarkerClusterer.prototype.removeMarkers,MarkerClusterer.prototype.resetViewport=MarkerClusterer.prototype.resetViewport,MarkerClusterer.prototype.repaint=MarkerClusterer.prototype.repaint,MarkerClusterer.prototype.setCalculator=MarkerClusterer.prototype.setCalculator,MarkerClusterer.prototype.setGridSize=MarkerClusterer.prototype.setGridSize,MarkerClusterer.prototype.setMaxZoom=MarkerClusterer.prototype.setMaxZoom,MarkerClusterer.prototype.onAdd=MarkerClusterer.prototype.onAdd,MarkerClusterer.prototype.draw=MarkerClusterer.prototype.draw,Cluster.prototype.getCenter=Cluster.prototype.getCenter,Cluster.prototype.getSize=Cluster.prototype.getSize,Cluster.prototype.getMarkers=Cluster.prototype.getMarkers,ClusterIcon.prototype.onAdd=ClusterIcon.prototype.onAdd,ClusterIcon.prototype.draw=ClusterIcon.prototype.draw,ClusterIcon.prototype.onRemove=ClusterIcon.prototype.onRemove;
changelog.txt CHANGED
@@ -1,4 +1,18 @@
1
- v 4.4.6 - 13 August 2019
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  - Added: Ajax live search to search bar
3
  - Added: Filter before wp_mail (Booking Notification) for developers
4
  - Fixed: Simple monthly calendar style
1
+ v 4.4.7 - 21 August 2019
2
+ - Added: Modern style search bar
3
+ - Added: Auto set cronjobs for synchronization
4
+ - Added: An option to not open current day in MEC widget
5
+ - Added: ID column and sort by ID in booking menu
6
+ - Added: Filter by ticket name in bookings menu
7
+ - Added: Advanced clustering feature for Google Maps
8
+ - Added: Duplicate link in event action links
9
+ - Added: An option for disabling Schema
10
+ - Fixed: Double tap feature for monthly calendar (simple skin)
11
+ - Fixed: Advanced repeat type
12
+ - Fixed: Countdown in module view and Countdown skin
13
+ - Fixed: Carousel view and "load more" button in Internet explorer
14
+
15
+ v 4.4.6 - 13 August 2019
16
  - Added: Ajax live search to search bar
17
  - Added: Filter before wp_mail (Booking Notification) for developers
18
  - Fixed: Simple monthly calendar style
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: 2019-08-13 16:42+0430\n"
6
- "PO-Revision-Date: 2019-08-13 16:44+0430\n"
7
  "Last-Translator: Jogon <koenig@kafinanz.de>\n"
8
  "Language-Team: German\n"
9
  "Language: de_DE\n"
@@ -23,12 +23,12 @@ msgstr ""
23
  msgid "Modern Events Calendar"
24
  msgstr "Moderner Event Kalender "
25
 
26
- #: app/addons/KC.php:70 app/addons/VC.php:64 app/features/mec/styling.php:288
27
  msgid "Content"
28
  msgstr "Inhalt"
29
 
30
- #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:364
31
- #: app/features/mec.php:395 app/features/mec.php:421
32
  msgid "Shortcode"
33
  msgstr "Shortcode"
34
 
@@ -68,29 +68,20 @@ msgid "Select Type"
68
  msgstr "Alles Auswählen"
69
 
70
  #: app/features/colors.php:50 app/features/fes/form.php:794
71
- #: app/features/mec/settings.php:792
72
  msgid "Event Color"
73
  msgstr "Farbe der Veranstaltung"
74
 
75
- #: app/features/contextual.php:55 app/features/mec.php:344
76
- #: app/features/mec/booking.php:33 app/features/mec/dashboard.php:108
77
- #: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
78
- #: app/features/mec/messages.php:24 app/features/mec/modules.php:31
79
- #: app/features/mec/notifications.php:23 app/features/mec/regform.php:61
80
- #: app/features/mec/settings.php:44 app/features/mec/single.php:23
81
- #: app/features/mec/styles.php:24 app/features/mec/styling.php:46
82
  #: app/features/mec/support-page.php:168 app/features/mec/support.php:20
 
83
  msgid "Settings"
84
  msgstr "Einstellungen"
85
 
86
- #: app/features/contextual.php:62 app/features/events.php:2268
87
- #: app/features/mec/booking.php:148 app/features/mec/gateways.php:113
88
- #: app/features/mec/ie.php:109 app/features/mec/messages.php:113
89
- #: app/features/mec/modules.php:175 app/features/mec/notifications.php:112
90
- #: app/features/mec/regform.php:149 app/features/mec/regform.php:218
91
- #: app/features/mec/settings.php:185 app/features/mec/single.php:146
92
- #: app/features/mec/styles.php:113 app/features/mec/styling.php:135
93
- #: app/features/mec/support.php:29
94
  msgid "Booking Form"
95
  msgstr "Buchungsformular"
96
 
@@ -108,13 +99,9 @@ msgstr ""
108
  "<iframe width=\"600\" height=\"300\" src=\"https://www.youtube.com/embed/"
109
  "YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
110
 
111
- #: app/features/contextual.php:70 app/features/mec/booking.php:155
112
- #: app/features/mec/gateways.php:120 app/features/mec/gateways.php:183
113
- #: app/features/mec/ie.php:116 app/features/mec/messages.php:120
114
- #: app/features/mec/modules.php:182 app/features/mec/notifications.php:119
115
- #: app/features/mec/regform.php:156 app/features/mec/settings.php:192
116
- #: app/features/mec/single.php:153 app/features/mec/styles.php:120
117
- #: app/features/mec/styling.php:142 app/features/mec/support.php:36
118
  msgid "Payment Gateways"
119
  msgstr "Zahlungs-Gateways"
120
 
@@ -128,13 +115,8 @@ msgstr ""
128
  "height=\"300\" src=\"https://www.youtube.com/embed/Hpg4chWlxoQ\" frameborder="
129
  "\"0\" allowfullscreen></iframe>"
130
 
131
- #: app/features/contextual.php:77 app/features/mec/booking.php:164
132
- #: app/features/mec/gateways.php:129 app/features/mec/ie.php:125
133
- #: app/features/mec/messages.php:129 app/features/mec/modules.php:191
134
- #: app/features/mec/notifications.php:131 app/features/mec/regform.php:164
135
- #: app/features/mec/settings.php:201 app/features/mec/single.php:162
136
- #: app/features/mec/styles.php:129 app/features/mec/styling.php:151
137
- #: app/features/mec/support.php:45
138
  msgid "Notifications"
139
  msgstr "Benachrichtigungen"
140
 
@@ -213,23 +195,13 @@ msgstr ""
213
  "height=\"420\" src=\"https://www.youtube.com/embed/dqgt1b8X8hs\" frameborder="
214
  "\"0\" allowfullscreen></iframe>"
215
 
216
- #: app/features/contextual.php:117 app/features/mec/booking.php:37
217
- #: app/features/mec/gateways.php:28 app/features/mec/ie.php:24
218
- #: app/features/mec/messages.php:28 app/features/mec/modules.php:35
219
- #: app/features/mec/notifications.php:27 app/features/mec/regform.php:65
220
- #: app/features/mec/settings.php:51 app/features/mec/settings.php:259
221
- #: app/features/mec/single.php:27 app/features/mec/styles.php:28
222
- #: app/features/mec/styling.php:50
223
  msgid "General Options"
224
  msgstr "Allgemeine Einstellungen"
225
 
226
- #: app/features/contextual.php:139 app/features/mec/booking.php:39
227
- #: app/features/mec/gateways.php:30 app/features/mec/ie.php:26
228
- #: app/features/mec/messages.php:30 app/features/mec/modules.php:37
229
- #: app/features/mec/notifications.php:29 app/features/mec/regform.php:67
230
- #: app/features/mec/settings.php:63 app/features/mec/settings.php:576
231
- #: app/features/mec/single.php:29 app/features/mec/styles.php:30
232
- #: app/features/mec/styling.php:52
233
  msgid "Slugs/Permalinks"
234
  msgstr "Slug/Permalinks"
235
 
@@ -237,53 +209,29 @@ msgstr "Slug/Permalinks"
237
  msgid "Event Details/Single Event Page"
238
  msgstr "Event Details / Einzelveranstaltungsseite"
239
 
240
- #: app/features/contextual.php:166 app/features/mec/booking.php:40
241
- #: app/features/mec/gateways.php:31 app/features/mec/ie.php:27
242
- #: app/features/mec/messages.php:31 app/features/mec/modules.php:38
243
- #: app/features/mec/notifications.php:30 app/features/mec/regform.php:68
244
- #: app/features/mec/settings.php:69 app/features/mec/settings.php:608
245
- #: app/features/mec/single.php:30 app/features/mec/styles.php:31
246
- #: app/features/mec/styling.php:53
247
  msgid "Currency Options"
248
  msgstr "Währungseinstellungen"
249
 
250
- #: app/features/contextual.php:182 app/features/mec/booking.php:126
251
- #: app/features/mec/gateways.php:91 app/features/mec/ie.php:87
252
- #: app/features/mec/messages.php:91 app/features/mec/modules.php:111
253
- #: app/features/mec/modules.php:273 app/features/mec/modules.php:291
254
- #: app/features/mec/notifications.php:90 app/features/mec/regform.php:128
255
- #: app/features/mec/settings.php:163 app/features/mec/single.php:124
256
- #: app/features/mec/styles.php:91 app/features/mec/styling.php:113
257
  msgid "Google Maps Options"
258
  msgstr "Google Maps Einstellungen"
259
 
260
- #: app/features/contextual.php:244 app/features/mec/booking.php:41
261
- #: app/features/mec/gateways.php:32 app/features/mec/ie.php:28
262
- #: app/features/mec/messages.php:32 app/features/mec/modules.php:39
263
- #: app/features/mec/notifications.php:31 app/features/mec/regform.php:69
264
- #: app/features/mec/settings.php:75 app/features/mec/settings.php:665
265
- #: app/features/mec/single.php:31 app/features/mec/styles.php:32
266
- #: app/features/mec/styling.php:54
267
  msgid "Google Recaptcha Options"
268
  msgstr "Google Recaptcha Einstellungen"
269
 
270
- #: app/features/contextual.php:258 app/features/mec/booking.php:61
271
- #: app/features/mec/gateways.php:52 app/features/mec/ie.php:48
272
- #: app/features/mec/messages.php:52 app/features/mec/modules.php:59
273
- #: app/features/mec/notifications.php:51 app/features/mec/regform.php:89
274
- #: app/features/mec/settings.php:124 app/features/mec/single.php:63
275
- #: app/features/mec/single.php:319 app/features/mec/styles.php:52
276
- #: app/features/mec/styling.php:74
277
  msgid "Countdown Options"
278
  msgstr "Countdown Einstellungsoptionen"
279
 
280
- #: app/features/contextual.php:268 app/features/mec/booking.php:134
281
- #: app/features/mec/gateways.php:99 app/features/mec/ie.php:95
282
- #: app/features/mec/messages.php:99 app/features/mec/modules.php:147
283
- #: app/features/mec/modules.php:469 app/features/mec/notifications.php:98
284
- #: app/features/mec/regform.php:136 app/features/mec/settings.php:171
285
- #: app/features/mec/single.php:132 app/features/mec/styles.php:99
286
- #: app/features/mec/styling.php:121
287
  msgid "Social Networks"
288
  msgstr "Soziale Netzwerke"
289
 
@@ -291,75 +239,36 @@ msgstr "Soziale Netzwerke"
291
  msgid "Next Event Module"
292
  msgstr "Nächstes Veranstaltung Modul"
293
 
294
- #: app/features/contextual.php:286 app/features/mec/booking.php:42
295
- #: app/features/mec/gateways.php:33 app/features/mec/ie.php:29
296
- #: app/features/mec/messages.php:33 app/features/mec/modules.php:40
297
- #: app/features/mec/notifications.php:32 app/features/mec/regform.php:70
298
- #: app/features/mec/settings.php:81 app/features/mec/settings.php:701
299
- #: app/features/mec/single.php:32 app/features/mec/styles.php:33
300
- #: app/features/mec/styling.php:55
301
  msgid "Frontend Event Submission"
302
  msgstr "Erstellung von Veranstaltungen im Frontend"
303
 
304
- #: app/features/contextual.php:298 app/features/events.php:1119
305
- #: app/features/mec/booking.php:62 app/features/mec/gateways.php:53
306
- #: app/features/mec/ie.php:49 app/features/mec/messages.php:53
307
- #: app/features/mec/modules.php:60 app/features/mec/notifications.php:52
308
- #: app/features/mec/regform.php:90 app/features/mec/settings.php:125
309
- #: app/features/mec/single.php:69 app/features/mec/styles.php:53
310
- #: app/features/mec/styling.php:75
311
  msgid "Exceptional Days"
312
  msgstr "Herausgenommene Tage "
313
 
314
- #: app/features/contextual.php:308 app/features/events.php:285
315
- #: app/features/mec/booking.php:79 app/features/mec/booking.php:86
316
- #: app/features/mec/booking.php:169 app/features/mec/booking.php:221
317
- #: app/features/mec/gateways.php:66 app/features/mec/gateways.php:70
318
- #: app/features/mec/gateways.php:134 app/features/mec/ie.php:62
319
- #: app/features/mec/ie.php:66 app/features/mec/ie.php:130
320
- #: app/features/mec/messages.php:66 app/features/mec/messages.php:70
321
- #: app/features/mec/messages.php:134 app/features/mec/modules.php:73
322
- #: app/features/mec/modules.php:77 app/features/mec/modules.php:196
323
- #: app/features/mec/notifications.php:65 app/features/mec/notifications.php:69
324
- #: app/features/mec/notifications.php:138
325
- #: app/features/mec/notifications.php:227 app/features/mec/regform.php:103
326
- #: app/features/mec/regform.php:107 app/features/mec/regform.php:169
327
- #: app/features/mec/settings.php:138 app/features/mec/settings.php:142
328
- #: app/features/mec/settings.php:206 app/features/mec/single.php:99
329
- #: app/features/mec/single.php:103 app/features/mec/single.php:167
330
- #: app/features/mec/styles.php:66 app/features/mec/styles.php:70
331
- #: app/features/mec/styles.php:134 app/features/mec/styling.php:88
332
- #: app/features/mec/styling.php:92 app/features/mec/styling.php:156
333
  msgid "Booking"
334
  msgstr "Buchung / Reservierung"
335
 
336
- #: app/features/contextual.php:318 app/features/mec/booking.php:94
337
- #: app/features/mec/booking.php:356 app/features/mec/gateways.php:72
338
- #: app/features/mec/ie.php:68 app/features/mec/messages.php:72
339
- #: app/features/mec/modules.php:79 app/features/mec/notifications.php:71
340
- #: app/features/mec/regform.php:109 app/features/mec/settings.php:144
341
- #: app/features/mec/single.php:105 app/features/mec/styles.php:72
342
- #: app/features/mec/styling.php:94
343
  msgid "Coupons"
344
  msgstr "Gutscheine"
345
 
346
- #: app/features/contextual.php:326 app/features/mec/booking.php:137
347
- #: app/features/mec/gateways.php:102 app/features/mec/ie.php:98
348
- #: app/features/mec/messages.php:102 app/features/mec/modules.php:161
349
- #: app/features/mec/modules.php:530 app/features/mec/notifications.php:101
350
- #: app/features/mec/regform.php:139 app/features/mec/settings.php:174
351
- #: app/features/mec/single.php:135 app/features/mec/styles.php:102
352
- #: app/features/mec/styling.php:124
353
  msgid "BuddyPress Integration"
354
  msgstr "Buddy Press Integration"
355
 
356
- #: app/features/contextual.php:334 app/features/mec/booking.php:46
357
- #: app/features/mec/gateways.php:37 app/features/mec/ie.php:33
358
- #: app/features/mec/messages.php:37 app/features/mec/modules.php:44
359
- #: app/features/mec/notifications.php:36 app/features/mec/regform.php:74
360
- #: app/features/mec/settings.php:101 app/features/mec/settings.php:952
361
- #: app/features/mec/single.php:36 app/features/mec/styles.php:37
362
- #: app/features/mec/styling.php:59
363
  msgid "Mailchimp Integration"
364
  msgstr "Mailchimp Integration"
365
 
@@ -367,13 +276,13 @@ msgstr "Mailchimp Integration"
367
  msgid "MEC Activation"
368
  msgstr "MEC Aktivierung"
369
 
370
- #: app/features/events.php:137 app/features/ix/export.php:34
371
  #: app/features/mec/dashboard.php:202 app/skins/daily_view/tpl.php:79
372
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
373
  msgid "Events"
374
  msgstr "Veranstaltungen"
375
 
376
- #: app/features/events.php:138
377
  #: app/features/mec/meta_boxes/display_options.php:887
378
  #: app/features/mec/meta_boxes/display_options.php:943
379
  #: app/features/mec/meta_boxes/display_options.php:978
@@ -382,36 +291,36 @@ msgstr "Veranstaltungen"
382
  msgid "Event"
383
  msgstr "Veranstaltung"
384
 
385
- #: app/features/events.php:139 app/features/mec.php:330
386
  msgid "Add Event"
387
  msgstr "Veranstaltung hinzufügen"
388
 
389
- #: app/features/events.php:140 app/features/mec/dashboard.php:107
390
  msgid "Add New Event"
391
  msgstr "Neue Veranstaltung hinzufügen"
392
 
393
- #: app/features/events.php:141 app/features/ix.php:3119
394
- #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:56
395
  msgid "No events found!"
396
  msgstr "Keine Veranstaltungen gefunden!"
397
 
398
- #: app/features/events.php:142
399
  msgid "All Events"
400
  msgstr "Alle Veranstaltungen"
401
 
402
- #: app/features/events.php:143
403
  msgid "Edit Event"
404
  msgstr ""
405
 
406
- #: app/features/events.php:144
407
  msgid "View Event"
408
  msgstr "Veranstaltung ansehen"
409
 
410
- #: app/features/events.php:145
411
  msgid "No events found in Trash!"
412
  msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
413
 
414
- #: app/features/events.php:162
415
  #: app/features/mec/meta_boxes/display_options.php:798
416
  #: app/features/mec/meta_boxes/search_form.php:31
417
  #: app/features/mec/meta_boxes/search_form.php:93
@@ -423,113 +332,113 @@ msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
423
  #: app/features/mec/meta_boxes/search_form.php:453
424
  #: app/features/mec/meta_boxes/search_form.php:514
425
  #: app/features/mec/meta_boxes/search_form.php:575
426
- #: app/features/mec/settings.php:905 app/features/mec/single.php:390
427
- #: app/libraries/main.php:4509 app/libraries/skins.php:807
428
- #: app/skins/single.php:530 app/skins/single/default.php:170
429
  #: app/skins/single/default.php:382 app/skins/single/m1.php:170
430
  #: app/skins/single/m2.php:102 app/skins/single/modern.php:110
431
  msgid "Category"
432
  msgstr "Kategorie"
433
 
434
- #: app/features/events.php:163 app/features/fes/form.php:745
435
- #: app/features/mec.php:332 app/features/mec/meta_boxes/filter.php:70
436
- #: app/libraries/main.php:4508
437
  msgid "Categories"
438
  msgstr "Kategorien"
439
 
440
- #: app/features/events.php:173 app/features/labels.php:71
441
  #: app/features/locations.php:69 app/features/organizers.php:69
442
  #: app/features/speakers.php:70
443
  #, php-format
444
  msgid "All %s"
445
  msgstr "Alle %s"
446
 
447
- #: app/features/events.php:174 app/features/labels.php:72
448
  #: app/features/locations.php:70 app/features/organizers.php:70
449
  #: app/features/speakers.php:71
450
  #, php-format
451
  msgid "Edit %s"
452
  msgstr "Bearbeiten %s"
453
 
454
- #: app/features/events.php:175 app/features/labels.php:73
455
  #: app/features/locations.php:71 app/features/organizers.php:71
456
  #: app/features/speakers.php:72
457
  #, php-format
458
  msgid "View %s"
459
  msgstr "Ansicht %s"
460
 
461
- #: app/features/events.php:176 app/features/labels.php:74
462
  #: app/features/locations.php:72 app/features/organizers.php:72
463
  #: app/features/speakers.php:73
464
  #, php-format
465
  msgid "Update %s"
466
  msgstr "Update %s"
467
 
468
- #: app/features/events.php:177 app/features/labels.php:75
469
  #: app/features/locations.php:73 app/features/organizers.php:73
470
  #: app/features/speakers.php:74
471
  #, php-format
472
  msgid "Add New %s"
473
  msgstr "Neu hinzufügen%s"
474
 
475
- #: app/features/events.php:178 app/features/labels.php:76
476
  #: app/features/locations.php:74 app/features/organizers.php:74
477
  #: app/features/speakers.php:75
478
  #, php-format
479
  msgid "New %s Name"
480
  msgstr "Neuer %s Name"
481
 
482
- #: app/features/events.php:179 app/features/labels.php:77
483
  #: app/features/locations.php:75 app/features/organizers.php:75
484
  #: app/features/speakers.php:76
485
  #, php-format
486
  msgid "Popular %s"
487
  msgstr "Beliebt %s"
488
 
489
- #: app/features/events.php:180 app/features/labels.php:78
490
  #: app/features/locations.php:76 app/features/organizers.php:76
491
  #: app/features/speakers.php:77
492
  #, php-format
493
  msgid "Search %s"
494
  msgstr "Suche %s"
495
 
496
- #: app/features/events.php:205 app/features/events.php:226
497
  msgid "Category Icon"
498
  msgstr "Kategoriesymbol"
499
 
500
- #: app/features/events.php:208 app/features/events.php:231
501
  msgid "Select icon"
502
  msgstr "Wählen Sie ein Symbol"
503
 
504
- #: app/features/events.php:280
505
  msgid "Event Details"
506
  msgstr "Veranstaltungsdetails"
507
 
508
- #: app/features/events.php:322 app/features/events.php:3168
509
- #: app/features/events.php:3210 app/features/fes/form.php:706
510
- #: app/features/ix.php:2740 app/features/ix.php:2781
511
- #: app/features/mec/settings.php:768 app/libraries/main.php:4541
512
  #: app/widgets/single.php:103
513
  msgid "Event Cost"
514
  msgstr ""
515
  "Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
516
 
517
- #: app/features/events.php:326 app/features/fes/form.php:709
518
- #: app/libraries/main.php:4542 app/skins/single.php:553
519
  #: app/skins/single/default.php:104 app/skins/single/default.php:316
520
  #: app/skins/single/m1.php:49 app/skins/single/modern.php:199
521
  msgid "Cost"
522
  msgstr " Preis"
523
 
524
- #: app/features/events.php:424
525
  msgid "Note for reviewer"
526
  msgstr "Zusätzliche Anmerkungen zum Event "
527
 
528
- #: app/features/events.php:431
529
  msgid "Guest Data"
530
  msgstr "Gäste Daten"
531
 
532
- #: app/features/events.php:432 app/features/events.php:2250
533
  #: app/features/fes/form.php:668 app/features/labels.php:178
534
  #: app/features/mec/regform.php:27 app/features/organizers.php:279
535
  #: app/features/profile/profile.php:90 app/libraries/notifications.php:736
@@ -537,30 +446,30 @@ msgstr "Gäste Daten"
537
  msgid "Name"
538
  msgstr "Name"
539
 
540
- #: app/features/events.php:433 app/features/events.php:2261
541
- #: app/features/events.php:2339 app/features/fes/form.php:664
542
- #: app/features/mec/regform.php:39 app/features/mec/regform.php:270
543
  #: app/features/organizers.php:111 app/features/organizers.php:152
544
  #: app/features/profile/profile.php:93 app/features/speakers.php:124
545
- #: app/features/speakers.php:184 app/libraries/main.php:1150
546
- #: app/libraries/main.php:1216 app/libraries/main.php:2261
547
  #: app/libraries/notifications.php:737 app/modules/booking/steps/form.php:46
548
- #: app/modules/booking/steps/form.php:84 app/skins/single.php:780
549
- #: app/skins/single.php:835 app/skins/single/default.php:212
550
  #: app/skins/single/default.php:424 app/skins/single/m1.php:107
551
  #: app/skins/single/m2.php:39 app/skins/single/modern.php:48
552
  msgid "Email"
553
  msgstr "Email"
554
 
555
- #: app/features/events.php:437 app/features/fes/form.php:232
556
  msgid "Date and Time"
557
  msgstr "Datum und Uhrzeit"
558
 
559
- #: app/features/events.php:441 app/features/events.php:447
560
- #: app/features/events.php:2986 app/features/events.php:3168
561
- #: app/features/events.php:3210 app/features/fes/form.php:236
562
- #: app/features/fes/form.php:240 app/features/ix.php:2740
563
- #: app/features/ix.php:2781 app/features/ix/import_g_calendar.php:38
564
  #: app/features/mec/dashboard.php:346
565
  #: app/features/mec/meta_boxes/display_options.php:42
566
  #: app/features/mec/meta_boxes/display_options.php:169
@@ -578,47 +487,47 @@ msgstr "Datum und Uhrzeit"
578
  msgid "Start Date"
579
  msgstr "Start Datum"
580
 
581
- #: app/features/events.php:519 app/features/events.php:611
582
- #: app/features/events.php:1604 app/features/events.php:1646
583
- #: app/features/events.php:1813 app/features/events.php:1837
584
  #: app/features/fes/form.php:268 app/features/fes/form.php:308
585
  msgid "AM"
586
  msgstr "AM"
587
 
588
- #: app/features/events.php:526 app/features/events.php:618
589
- #: app/features/events.php:1611 app/features/events.php:1653
590
- #: app/features/events.php:1814 app/features/events.php:1838
591
  #: app/features/fes/form.php:269 app/features/fes/form.php:309
592
  msgid "PM"
593
  msgstr "PM"
594
 
595
- #: app/features/events.php:533 app/features/events.php:538
596
- #: app/features/events.php:2987 app/features/events.php:3168
597
- #: app/features/events.php:3210 app/features/fes/form.php:276
598
- #: app/features/fes/form.php:280 app/features/ix.php:2740
599
- #: app/features/ix.php:2781 app/features/ix/import_g_calendar.php:44
600
  #: app/features/mec/dashboard.php:347
601
  msgid "End Date"
602
  msgstr "Ende Datum"
603
 
604
- #: app/features/events.php:632 app/features/fes/form.php:315
605
  msgid "All Day Event"
606
  msgstr "Ganztägige Veranstaltung"
607
 
608
- #: app/features/events.php:642 app/features/fes/form.php:318
609
  msgid "Hide Event Time"
610
  msgstr "Event / Veranstaltungszeit verbergen"
611
 
612
- #: app/features/events.php:652 app/features/fes/form.php:321
613
  msgid "Hide Event End Time"
614
  msgstr "Ende-Zeit der Veranstaltung verbergen"
615
 
616
- #: app/features/events.php:657 app/features/events.php:661
617
  #: app/features/fes/form.php:325
618
  msgid "Time Comment"
619
  msgstr "z.B. MEZ "
620
 
621
- #: app/features/events.php:662 app/features/fes/form.php:326
622
  #, fuzzy
623
  #| msgid ""
624
  #| "It shows next to event time on calendar. You can insert Timezone etc. in "
@@ -630,20 +539,20 @@ msgstr ""
630
  "Neben der Zeit im Kalender wird diese Angabe angezeigt. In diesem Feld "
631
  "können Sie z.B. eine Zeitzone wie z.B. \"MEZ\" usw. einfügen. "
632
 
633
- #: app/features/events.php:664 app/features/events.php:796
634
- #: app/features/events.php:1095 app/features/events.php:1138
635
- #: app/features/events.php:1437 app/features/events.php:1496
636
- #: app/features/events.php:1673 app/features/events.php:1688
637
- #: app/features/events.php:1855 app/features/events.php:1868
638
- #: app/features/events.php:1998 app/features/events.php:2034
639
- #: app/features/events.php:2132 app/features/events.php:2147
640
- #: app/features/events.php:2177 app/features/events.php:2190
641
  #: app/features/fes/form.php:630 app/features/locations.php:299
642
- #: app/features/mec/booking.php:241 app/features/mec/booking.php:278
643
- #: app/features/mec/booking.php:294 app/features/mec/booking.php:401
644
- #: app/features/mec/booking.php:430 app/features/mec/booking.php:478
645
- #: app/features/mec/booking.php:488 app/features/mec/booking.php:510
646
- #: app/features/mec/booking.php:520 app/features/mec/dashboard.php:71
647
  #: app/features/mec/meta_boxes/display_options.php:60
648
  #: app/features/mec/meta_boxes/display_options.php:73
649
  #: app/features/mec/meta_boxes/display_options.php:86
@@ -674,9 +583,9 @@ msgstr ""
674
  #: app/features/mec/meta_boxes/display_options.php:1134
675
  #: app/features/mec/meta_boxes/display_options.php:1147
676
  #: app/features/mec/meta_boxes/display_options.php:1160
677
- #: app/features/mec/modules.php:259 app/features/mec/modules.php:292
678
- #: app/features/mec/modules.php:309 app/features/mec/modules.php:344
679
- #: app/features/mec/modules.php:360 app/features/mec/modules.php:518
680
  #: app/features/mec/notifications.php:246
681
  #: app/features/mec/notifications.php:303
682
  #: app/features/mec/notifications.php:355
@@ -684,220 +593,220 @@ msgstr ""
684
  #: app/features/mec/notifications.php:482
685
  #: app/features/mec/notifications.php:545
686
  #: app/features/mec/notifications.php:556
687
- #: app/features/mec/notifications.php:618 app/features/mec/settings.php:273
688
- #: app/features/mec/settings.php:292 app/features/mec/settings.php:319
689
- #: app/features/mec/settings.php:339 app/features/mec/settings.php:360
690
- #: app/features/mec/settings.php:380 app/features/mec/settings.php:457
691
- #: app/features/mec/settings.php:531 app/features/mec/settings.php:548
692
- #: app/features/mec/settings.php:565 app/features/mec/settings.php:584
693
- #: app/features/mec/settings.php:598 app/features/mec/settings.php:626
694
- #: app/features/mec/settings.php:713 app/features/mec/settings.php:851
695
- #: app/features/mec/settings.php:868 app/features/mec/settings.php:967
696
- #: app/features/mec/settings.php:980 app/features/mec/settings.php:996
697
- #: app/features/mec/single.php:228 app/features/mec/single.php:244
698
- #: app/features/mec/single.php:263 app/features/mec/single.php:280
699
- #: app/features/mec/single.php:296 app/features/mec/single.php:310
700
- #: app/features/mec/single.php:348 app/features/mec/styling.php:358
701
- #: app/features/mec/styling.php:375 app/features/mec/styling.php:388
702
- #: app/features/organizers.php:272 app/skins/single.php:628
703
  #: app/skins/single/default.php:119 app/skins/single/default.php:331
704
  #: app/skins/single/m1.php:192 app/skins/single/m2.php:125
705
  #: app/skins/single/modern.php:133
706
  msgid "Read More"
707
  msgstr "Mehr lesen"
708
 
709
- #: app/features/events.php:680 app/features/fes/form.php:332
710
  msgid "Event Repeating"
711
  msgstr "Wiederholende Veranstaltung"
712
 
713
- #: app/features/events.php:684 app/features/fes/form.php:336
714
  msgid "Repeats"
715
  msgstr "Wiederholend"
716
 
717
- #: app/features/events.php:692 app/features/fes/form.php:338
718
  #: app/features/mec/dashboard.php:349 app/skins/full_calendar/tpl.php:109
719
  msgid "Daily"
720
  msgstr "Täglich"
721
 
722
- #: app/features/events.php:699 app/features/fes/form.php:339
723
  msgid "Every Weekday"
724
  msgstr "An jedem Wochentag"
725
 
726
- #: app/features/events.php:706 app/features/fes/form.php:340
727
  msgid "Every Weekend"
728
  msgstr "An jedem Wochenende"
729
 
730
- #: app/features/events.php:713 app/features/fes/form.php:341
731
  msgid "Certain Weekdays"
732
  msgstr "Bestimmte Wochentage"
733
 
734
- #: app/features/events.php:720 app/features/fes/form.php:342
735
  #: app/skins/full_calendar/tpl.php:108
736
  msgid "Weekly"
737
  msgstr "Wöchentlich"
738
 
739
- #: app/features/events.php:727 app/features/fes/form.php:343
740
  #: app/features/mec/dashboard.php:350 app/skins/full_calendar/tpl.php:107
741
  msgid "Monthly"
742
  msgstr "Monatlich"
743
 
744
- #: app/features/events.php:734 app/features/fes/form.php:344
745
  #: app/features/mec/dashboard.php:351 app/skins/full_calendar/tpl.php:106
746
  msgid "Yearly"
747
  msgstr "Jährlich"
748
 
749
- #: app/features/events.php:741 app/features/fes/form.php:345
750
  msgid "Custom Days"
751
  msgstr "Benutzerdefinierte Tage"
752
 
753
- #: app/features/events.php:748 app/features/fes/form.php:346
754
  #, fuzzy
755
  #| msgid "Advanced Method"
756
  msgid "Advanced"
757
  msgstr "Fortgeschrittene Methode"
758
 
759
- #: app/features/events.php:753 app/features/fes/form.php:350
760
  msgid "Repeat Interval"
761
  msgstr "Wiederholungsintervall"
762
 
763
- #: app/features/events.php:755 app/features/fes/form.php:351
764
  msgid "Repeat interval"
765
  msgstr "Wiederholungsintervall"
766
 
767
- #: app/features/events.php:759 app/features/fes/form.php:354
768
  msgid "Week Days"
769
  msgstr "Wochentage"
770
 
771
- #: app/features/events.php:761 app/features/fes/form.php:355
772
  #: app/features/mec/meta_boxes/display_options.php:730
773
  #: app/libraries/main.php:407
774
  msgid "Monday"
775
  msgstr "Montag"
776
 
777
- #: app/features/events.php:764 app/features/fes/form.php:356
778
  #: app/features/mec/meta_boxes/display_options.php:731
779
  #: app/libraries/main.php:407
780
  msgid "Tuesday"
781
  msgstr "Dienstag"
782
 
783
- #: app/features/events.php:767 app/features/fes/form.php:357
784
  #: app/features/mec/meta_boxes/display_options.php:732
785
  #: app/libraries/main.php:407
786
  msgid "Wednesday"
787
  msgstr "Mittwoch"
788
 
789
- #: app/features/events.php:770 app/features/fes/form.php:358
790
  #: app/features/mec/meta_boxes/display_options.php:733
791
  #: app/libraries/main.php:407
792
  msgid "Thursday"
793
  msgstr "Donnerstag"
794
 
795
- #: app/features/events.php:773 app/features/fes/form.php:359
796
  #: app/features/mec/meta_boxes/display_options.php:734
797
  #: app/libraries/main.php:407
798
  msgid "Friday"
799
  msgstr "Freitag"
800
 
801
- #: app/features/events.php:776 app/features/fes/form.php:360
802
  #: app/features/mec/meta_boxes/display_options.php:735
803
  #: app/libraries/main.php:407
804
  msgid "Saturday"
805
  msgstr "Samstag"
806
 
807
- #: app/features/events.php:779 app/features/fes/form.php:361
808
  #: app/features/mec/meta_boxes/display_options.php:729
809
  #: app/libraries/main.php:407
810
  msgid "Sunday"
811
  msgstr "Sonntag"
812
 
813
- #: app/features/events.php:786 app/features/events.php:1736
814
- #: app/features/events.php:1764 app/features/events.php:1902
815
  #: app/features/fes/form.php:366 app/features/ix/import_f_calendar.php:42
816
  #: app/features/ix/import_g_calendar.php:51
817
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
818
  msgid "Start"
819
  msgstr "Start"
820
 
821
- #: app/features/events.php:788 app/features/events.php:1740
822
- #: app/features/events.php:1768 app/features/events.php:1906
823
  #: app/features/fes/form.php:367
824
  #, fuzzy
825
  #| msgid "Enabled"
826
  msgid "End"
827
  msgstr "Aktiviert"
828
 
829
- #: app/features/events.php:790 app/features/events.php:1132
830
- #: app/features/events.php:1243 app/features/events.php:1348
831
- #: app/features/events.php:1554 app/features/events.php:1719
832
- #: app/features/events.php:1891 app/features/events.php:1971
833
- #: app/features/events.php:2104 app/features/fes/form.php:368
834
  #: app/features/fes/form.php:842
835
  msgid "Add"
836
  msgstr "Hinzufügen"
837
 
838
- #: app/features/events.php:793
839
  #, fuzzy
840
  #| msgid "Custom Days"
841
  msgid "Custom Days Repeating"
842
  msgstr "Benutzerdefinierte Tage"
843
 
844
- #: app/features/events.php:794
845
  msgid ""
846
  "Add certain days to event occurrence dates. If you have single day event, "
847
  "start and end date should be the same, If you have multiple day event the "
848
  "start and end dates must be commensurate with the initial date."
849
  msgstr ""
850
 
851
- #: app/features/events.php:830 app/features/fes/form.php:394
852
  #, fuzzy
853
  #| msgid "First name"
854
  msgid "First"
855
  msgstr "Vorname"
856
 
857
- #: app/features/events.php:872 app/features/fes/form.php:436
858
  #, fuzzy
859
  #| msgid "second"
860
  msgid "Second"
861
  msgstr "Sekunde"
862
 
863
- #: app/features/events.php:914 app/features/fes/form.php:478
864
  #, fuzzy
865
  #| msgid "Third Party"
866
  msgid "Third"
867
  msgstr "Dritte Seite"
868
 
869
- #: app/features/events.php:956 app/features/fes/form.php:520
870
  msgid "Fourth"
871
  msgstr ""
872
 
873
- #: app/features/events.php:998 app/features/fes/form.php:562
874
  #, fuzzy
875
  #| msgid "Last name"
876
  msgid "Last"
877
  msgstr "Nachname"
878
 
879
- #: app/features/events.php:1045 app/features/fes/form.php:608
880
  msgid "Ends Repeat"
881
  msgstr "Wiederholung endet"
882
 
883
- #: app/features/events.php:1056 app/features/fes/form.php:612
884
  msgid "Never"
885
  msgstr "Niemals"
886
 
887
- #: app/features/events.php:1068 app/features/fes/form.php:617
888
  msgid "On"
889
  msgstr "Am"
890
 
891
- #: app/features/events.php:1084 app/features/fes/form.php:624
892
  msgid "After"
893
  msgstr "Nach"
894
 
895
- #: app/features/events.php:1088 app/features/events.php:1092
896
  #: app/features/fes/form.php:626 app/features/fes/form.php:629
897
  msgid "Occurrences times"
898
  msgstr " mal vorkommen"
899
 
900
- #: app/features/events.php:1093 app/features/fes/form.php:630
901
  msgid ""
902
  "The event will finish after certain repeats. For example if you set it to "
903
  "10, the event will finish after 10 repeats."
@@ -905,138 +814,133 @@ msgstr ""
905
  "Das Event ist nach einer bestimmten Anzahl von Wiederholungen zu Ende. Zum "
906
  "Beispiel: Bei Eingabe von 10 wird das Event nach 10 Wiederholungen beendet"
907
 
908
- #: app/features/events.php:1125 app/features/events.php:1135
909
  msgid "Exclude certain days"
910
  msgstr "Ausschluss bestimmter Tage"
911
 
912
- #: app/features/events.php:1130 app/features/events.php:2340
913
- #: app/features/mec/regform.php:271 app/features/profile/profile.php:31
914
- #: app/libraries/main.php:1709 app/libraries/main.php:2319
915
  #: app/modules/booking/steps/tickets.php:22
916
- #: app/modules/next-event/details.php:90 app/skins/single.php:608
917
  #: app/skins/single/default.php:68 app/skins/single/default.php:280
918
  #: app/skins/single/m1.php:16 app/skins/single/modern.php:166
919
  msgid "Date"
920
  msgstr "Datum"
921
 
922
- #: app/features/events.php:1136
923
  msgid ""
924
  "Exclude certain days from event occurrence dates. Please note that you can "
925
  "exclude only single day occurrences and you cannot exclude one day from "
926
  "multiple day occurrences."
927
  msgstr ""
928
 
929
- #: app/features/events.php:1190 app/libraries/render.php:455
930
  msgid "Day 1"
931
  msgstr ""
932
 
933
- #: app/features/events.php:1212 app/features/mec/settings.php:822
934
- #: app/skins/single.php:898
935
  msgid "Hourly Schedule"
936
  msgstr "Stundenplan"
937
 
938
- #: app/features/events.php:1216
939
  msgid "Add Day"
940
  msgstr ""
941
 
942
- #: app/features/events.php:1217
943
  msgid ""
944
  "Add new days for schedule. For example if your event is multiple days, you "
945
  "can add a different schedule for each day!"
946
  msgstr ""
947
 
948
- #: app/features/events.php:1224
949
  #, php-format
950
  msgid "Day %s"
951
  msgstr ""
952
 
953
- #: app/features/events.php:1228 app/features/events.php:1267
954
- #: app/features/events.php:1302 app/features/events.php:1334
955
- #: app/features/events.php:1363 app/features/events.php:2119
956
- #: app/features/events.php:2166 app/features/events.php:2983
957
- #: app/features/events.php:3168 app/features/events.php:3210
958
- #: app/features/fes/form.php:225 app/features/ix.php:2740
959
- #: app/features/ix.php:2781 app/features/mec/booking.php:470
960
- #: app/features/mec/booking.php:502 app/features/mec/styling.php:270
961
  msgid "Title"
962
  msgstr "Titel"
963
 
964
- #: app/features/events.php:1237 app/features/events.php:1274
965
- #: app/features/events.php:1307 app/features/events.php:1342
966
- #: app/features/events.php:1368 app/features/events.php:1712
967
- #: app/features/events.php:1750 app/features/events.php:1776
968
- #: app/features/events.php:1885 app/features/events.php:1912
969
- #: app/features/events.php:2011 app/features/events.php:2047
970
- #: app/features/events.php:2154 app/features/events.php:2196
971
- #: app/features/fes/list.php:78 app/features/mec/booking.php:413
972
- #: app/features/mec/booking.php:442 app/features/mec/booking.php:493
973
- #: app/features/mec/booking.php:525 app/libraries/main.php:2180
974
- #: app/libraries/main.php:2210 app/libraries/main.php:2239
975
- #: app/libraries/main.php:2269 app/libraries/main.php:2298
976
- #: app/libraries/main.php:2327 app/libraries/main.php:2356
977
- #: app/libraries/main.php:2385 app/libraries/main.php:2407
978
- #: app/libraries/main.php:2438 app/libraries/main.php:2482
979
- #: app/libraries/main.php:2526 app/libraries/main.php:2573
980
- #: app/libraries/main.php:2612
981
  msgid "Remove"
982
  msgstr "Entfernen"
983
 
984
- #: app/features/events.php:1244 app/features/events.php:1349
985
  msgid "Add new hourly schedule row"
986
  msgstr "Neue Stundenplan-Zeile hinzufügen"
987
 
988
- #: app/features/events.php:1259 app/features/events.php:1296
989
- #: app/features/events.php:1358
990
  msgid "From e.g. 8:15"
991
  msgstr "Von z.B. 08:15 Uhr"
992
 
993
- #: app/features/events.php:1263 app/features/events.php:1299
994
- #: app/features/events.php:1360
995
  msgid "To e.g. 8:45"
996
  msgstr "bis zum Beispiel 08:45 Uhr"
997
 
998
- #: app/features/events.php:1271 app/features/events.php:1305
999
- #: app/features/events.php:1366 app/features/events.php:1660
1000
- #: app/features/events.php:1844
1001
  msgid "Description"
1002
  msgstr "Beschreibung"
1003
 
1004
- #: app/features/events.php:1277 app/features/events.php:1310
1005
- #: app/features/events.php:1371 app/features/fes/form.php:838
1006
- #: app/features/mec.php:340 app/features/mec/booking.php:124
1007
- #: app/features/mec/gateways.php:89 app/features/mec/ie.php:85
1008
- #: app/features/mec/messages.php:89 app/features/mec/modules.php:103
1009
- #: app/features/mec/modules.php:258 app/features/mec/notifications.php:88
1010
- #: app/features/mec/regform.php:126 app/features/mec/settings.php:161
1011
- #: app/features/mec/settings.php:816 app/features/mec/single.php:122
1012
- #: app/features/mec/styles.php:89 app/features/mec/styling.php:111
1013
- #: app/features/speakers.php:60 app/libraries/main.php:4516
1014
- #: app/modules/speakers/details.php:18
1015
  msgid "Speakers"
1016
  msgstr ""
1017
 
1018
- #: app/features/events.php:1330 app/features/events.php:1338
1019
  #, fuzzy
1020
  #| msgid "Week Days"
1021
  msgid "New Day"
1022
  msgstr "Wochentage"
1023
 
1024
- #: app/features/events.php:1402 app/features/fes/form.php:683
1025
- #: app/features/mec/settings.php:762
1026
  msgid "Event Links"
1027
  msgstr "Veranstaltungslinks"
1028
 
1029
- #: app/features/events.php:1405 app/features/events.php:1411
1030
- #: app/features/fes/form.php:685 app/libraries/main.php:4539
1031
  msgid "Event Link"
1032
  msgstr "Veranstaltungslink"
1033
 
1034
- #: app/features/events.php:1408 app/features/events.php:1424
1035
  #: app/features/fes/form.php:686 app/features/fes/form.php:691
1036
  msgid "eg. http://yoursite.com/your-event"
1037
  msgstr "z.B. http://ihreseite.com/ihre-veranstaltung"
1038
 
1039
- #: app/features/events.php:1412
1040
  #, fuzzy
1041
  #| msgid ""
1042
  #| "If you fill it, it will be replaced instead of default event page link. "
@@ -1050,32 +954,32 @@ msgstr ""
1050
  "dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
1051
  "einschließlich http(s)://"
1052
 
1053
- #: app/features/events.php:1414
1054
  msgid "URL Shortener"
1055
  msgstr ""
1056
 
1057
- #: app/features/events.php:1421 app/features/events.php:1434
1058
- #: app/features/fes/form.php:690 app/libraries/main.php:4540
1059
- #: app/skins/single.php:627 app/skins/single/default.php:118
1060
  #: app/skins/single/default.php:330 app/skins/single/m1.php:191
1061
  #: app/skins/single/m2.php:124 app/skins/single/modern.php:132
1062
  #: app/widgets/single.php:107
1063
  msgid "More Info"
1064
  msgstr "Mehr Informationen"
1065
 
1066
- #: app/features/events.php:1427 app/features/fes/form.php:692
1067
  msgid "More Information"
1068
  msgstr "z.B. Noch mehr Informationen "
1069
 
1070
- #: app/features/events.php:1429 app/features/fes/form.php:694
1071
  msgid "Current Window"
1072
  msgstr "Aktuelles Fenster"
1073
 
1074
- #: app/features/events.php:1430 app/features/fes/form.php:695
1075
  msgid "New Window"
1076
  msgstr "Neues Fenster"
1077
 
1078
- #: app/features/events.php:1435 app/features/fes/form.php:697
1079
  msgid ""
1080
  "If you fill it, it will be shown in event details page as an optional link. "
1081
  "Insert full link including http(s)://"
@@ -1086,107 +990,107 @@ msgstr ""
1086
  "Text angezeigt werden soll: zum Beispiel: Noch mehr Informationen oder Hier "
1087
  "zur Anmeldung (z.B. bei Webinaren sinnvoll) "
1088
 
1089
- #: app/features/events.php:1477 app/features/events.php:1492
1090
  msgid "Total booking limits"
1091
  msgstr "Gesamt Verfügbare Plätze"
1092
 
1093
- #: app/features/events.php:1489 app/features/events.php:1522
1094
- #: app/features/events.php:1709 app/features/events.php:1882
1095
  #: app/modules/booking/default.php:85 app/modules/booking/steps/tickets.php:40
1096
- #: app/skins/available_spot/tpl.php:140
1097
  msgid "Unlimited"
1098
  msgstr "Unlimitiert"
1099
 
1100
- #: app/features/events.php:1495
1101
  msgid ""
1102
  "If you want to set a limit to all tickets, uncheck this checkbox and put a "
1103
  "limitation number."
1104
  msgstr ""
1105
 
1106
- #: app/features/events.php:1497
1107
  #, fuzzy
1108
  #| msgid "Choose your single event style."
1109
  msgid "Read About A Booking System"
1110
  msgstr "Wählen Sie Ihren Single Event Stil"
1111
 
1112
- #: app/features/events.php:1505
1113
  msgid "100"
1114
  msgstr "z.B. 100"
1115
 
1116
- #: app/features/events.php:1510
1117
  #, fuzzy
1118
  #| msgid "Total booking limits"
1119
  msgid "Total user booking limits"
1120
  msgstr "Gesamt Verfügbare Plätze"
1121
 
1122
- #: app/features/events.php:1525
1123
  msgid "12"
1124
  msgstr ""
1125
 
1126
- #: app/features/events.php:1546 app/libraries/book.php:60
1127
- #: app/libraries/main.php:4544 app/modules/booking/steps/tickets.php:40
1128
  msgid "Tickets"
1129
  msgstr "Tickets"
1130
 
1131
- #: app/features/events.php:1549
1132
  msgid ""
1133
  "You're translating an event so MEC will use the original event for tickets "
1134
  "and booking. You can only translate the ticket name and description. Please "
1135
  "define exact tickets that you defined in the original event here."
1136
  msgstr ""
1137
 
1138
- #: app/features/events.php:1568 app/features/events.php:1790
1139
  msgid "Ticket Name"
1140
  msgstr "Ticket Name"
1141
 
1142
- #: app/features/events.php:1573 app/features/events.php:1794
1143
- #: app/features/events.php:3168 app/features/events.php:3210
1144
- #: app/features/ix.php:2740 app/features/ix.php:2781
1145
  msgid "Start Time"
1146
  msgstr "Uhrzeit des Beginns"
1147
 
1148
- #: app/features/events.php:1615 app/features/events.php:1818
1149
- #: app/features/events.php:3168 app/features/events.php:3210
1150
- #: app/features/ix.php:2740 app/features/ix.php:2781
1151
  msgid "End Time"
1152
  msgstr "Uhrzeit Ende"
1153
 
1154
- #: app/features/events.php:1666 app/features/events.php:1670
1155
- #: app/features/events.php:1744 app/features/events.php:1771
1156
- #: app/features/events.php:1849 app/features/events.php:1852
1157
- #: app/features/events.php:1908 app/features/events.php:2125
1158
- #: app/features/events.php:2129 app/features/events.php:2171
1159
- #: app/features/events.php:2174 app/features/mec/booking.php:474
1160
- #: app/features/mec/booking.php:477 app/features/mec/booking.php:506
1161
- #: app/features/mec/booking.php:509
1162
  msgid "Price"
1163
  msgstr "Preis"
1164
 
1165
- #: app/features/events.php:1671 app/features/events.php:1853
1166
  msgid "Insert 0 for free ticket. Only numbers please."
1167
  msgstr "Bitte 0 für kostenloses Ticket eingeben. Bitte nur Zahlen eintragen"
1168
 
1169
- #: app/features/events.php:1680 app/features/events.php:1685
1170
- #: app/features/events.php:1862 app/features/events.php:1865
1171
  msgid "Price Label"
1172
  msgstr "Preisschild"
1173
 
1174
- #: app/features/events.php:1686 app/features/events.php:1866
1175
  msgid "For showing on website. e.g. $15"
1176
  msgstr "Um das auf der Webseite anzuzeigen zum Beispiel 15 €"
1177
 
1178
- #: app/features/events.php:1696 app/features/events.php:1876
1179
  msgid "Available Tickets"
1180
  msgstr "Verfügbare Tickets: %s "
1181
 
1182
- #: app/features/events.php:1717 app/features/events.php:1889
1183
  #, fuzzy
1184
  #| msgid "Price Label"
1185
  msgid "Price per Date"
1186
  msgstr "Preisschild"
1187
 
1188
- #: app/features/events.php:1748 app/features/events.php:1774
1189
- #: app/features/events.php:1910 app/features/labels.php:60
1190
  #: app/features/mec/meta_boxes/display_options.php:799
1191
  #: app/features/mec/meta_boxes/search_form.php:66
1192
  #: app/features/mec/meta_boxes/search_form.php:128
@@ -1198,34 +1102,34 @@ msgstr "Preisschild"
1198
  #: app/features/mec/meta_boxes/search_form.php:488
1199
  #: app/features/mec/meta_boxes/search_form.php:549
1200
  #: app/features/mec/meta_boxes/search_form.php:610
1201
- #: app/features/mec/settings.php:937 app/features/mec/single.php:408
1202
  #: app/libraries/skins.php:937
1203
  msgid "Label"
1204
  msgstr "Label"
1205
 
1206
- #: app/features/events.php:1948
1207
  msgid "Fees"
1208
  msgstr "Gebühren"
1209
 
1210
- #: app/features/events.php:1960 app/features/events.php:2092
1211
- #: app/features/events.php:2280
1212
  msgid "Inherit from global options"
1213
  msgstr "Aus den globalen Einstellungen übernehmen"
1214
 
1215
- #: app/features/events.php:1985 app/features/events.php:2023
1216
- #: app/features/mec/booking.php:393 app/features/mec/booking.php:422
1217
  msgid "Fee Title"
1218
  msgstr "Gebühren Name"
1219
 
1220
- #: app/features/events.php:1991 app/features/events.php:1995
1221
- #: app/features/events.php:2028 app/features/events.php:2031
1222
- #: app/features/mec/booking.php:397 app/features/mec/booking.php:400
1223
- #: app/features/mec/booking.php:426 app/features/mec/booking.php:429
1224
  msgid "Amount"
1225
  msgstr "Betrag"
1226
 
1227
- #: app/features/events.php:1996 app/features/events.php:2032
1228
- #: app/features/mec/booking.php:401 app/features/mec/booking.php:430
1229
  msgid ""
1230
  "Fee amount, considered as fixed amount if you set the type to amount "
1231
  "otherwise considered as percentage"
@@ -1233,93 +1137,93 @@ msgstr ""
1233
  "Gebührenbetrag, gilt als fester Betrag, wenn Sie die Art auf Betrag setzen, "
1234
  "sonst als Prozentsatz"
1235
 
1236
- #: app/features/events.php:2005 app/features/events.php:2041
1237
- #: app/features/mec/booking.php:408 app/features/mec/booking.php:437
1238
  msgid "Percent"
1239
  msgstr "Prozent"
1240
 
1241
- #: app/features/events.php:2006 app/features/events.php:2042
1242
- #: app/features/mec/booking.php:409 app/features/mec/booking.php:438
1243
  msgid "Amount (Per Ticket)"
1244
  msgstr "Betrag (pro Ticket)"
1245
 
1246
- #: app/features/events.php:2007 app/features/events.php:2043
1247
- #: app/features/mec/booking.php:410 app/features/mec/booking.php:439
1248
  msgid "Amount (Per Booking)"
1249
  msgstr "Betrag (pro Buchung)"
1250
 
1251
- #: app/features/events.php:2080 app/features/mec/settings.php:840
1252
  msgid "Ticket Variations / Options"
1253
  msgstr ""
1254
 
1255
- #: app/features/events.php:2130 app/features/events.php:2175
1256
- #: app/features/mec/booking.php:478 app/features/mec/booking.php:510
1257
  #, fuzzy
1258
  #| msgid "Option"
1259
  msgid "Option Price"
1260
  msgstr "Option"
1261
 
1262
- #: app/features/events.php:2140 app/features/events.php:2144
1263
- #: app/features/events.php:2184 app/features/events.php:2187
1264
- #: app/features/mec/booking.php:484 app/features/mec/booking.php:487
1265
- #: app/features/mec/booking.php:516 app/features/mec/booking.php:519
1266
  #, fuzzy
1267
  #| msgid "Amount (Per Ticket)"
1268
  msgid "Maximum Per Ticket"
1269
  msgstr "Betrag (pro Ticket)"
1270
 
1271
- #: app/features/events.php:2145 app/features/events.php:2188
1272
- #: app/features/mec/booking.php:488 app/features/mec/booking.php:520
1273
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1274
  msgstr ""
1275
 
1276
- #: app/features/events.php:2335 app/features/mec/regform.php:267
1277
- #: app/libraries/main.php:2202
1278
  #, fuzzy
1279
  #| msgid "Name"
1280
  msgid "MEC Name"
1281
  msgstr "Name"
1282
 
1283
- #: app/features/events.php:2337 app/features/mec/regform.php:268
1284
- #: app/libraries/main.php:2231
1285
  #, fuzzy
1286
  #| msgid "Email"
1287
  msgid "MEC Email"
1288
  msgstr "Email"
1289
 
1290
- #: app/features/events.php:2338 app/features/mec/regform.php:269
1291
- #: app/libraries/main.php:2172
1292
  msgid "Text"
1293
  msgstr "Text"
1294
 
1295
- #: app/features/events.php:2341 app/features/mec/regform.php:272
1296
  #: app/features/organizers.php:103 app/features/organizers.php:148
1297
  #: app/features/speakers.php:116 app/features/speakers.php:180
1298
- #: app/features/speakers.php:249 app/libraries/main.php:2348
1299
  msgid "Tel"
1300
  msgstr "Tel"
1301
 
1302
- #: app/features/events.php:2342 app/features/mec/regform.php:273
1303
- #: app/libraries/main.php:2290
1304
  msgid "File"
1305
  msgstr ""
1306
 
1307
- #: app/features/events.php:2344 app/features/mec/regform.php:274
1308
- #: app/libraries/main.php:2377
1309
  msgid "Textarea"
1310
  msgstr "Textbereich"
1311
 
1312
- #: app/features/events.php:2346 app/features/mec/regform.php:275
1313
- #: app/libraries/main.php:2430
1314
  msgid "Checkboxes"
1315
  msgstr "Checkboxes"
1316
 
1317
- #: app/features/events.php:2348 app/features/mec/regform.php:276
1318
- #: app/libraries/main.php:2474
1319
  msgid "Radio Buttons"
1320
  msgstr "Radio Buttons"
1321
 
1322
- #: app/features/events.php:2349 app/features/mec/meta_boxes/search_form.php:34
1323
  #: app/features/mec/meta_boxes/search_form.php:41
1324
  #: app/features/mec/meta_boxes/search_form.php:48
1325
  #: app/features/mec/meta_boxes/search_form.php:55
@@ -1388,41 +1292,41 @@ msgstr "Radio Buttons"
1388
  #: app/features/mec/meta_boxes/search_form.php:606
1389
  #: app/features/mec/meta_boxes/search_form.php:613
1390
  #: app/features/mec/meta_boxes/search_form.php:620
1391
- #: app/features/mec/regform.php:277 app/libraries/main.php:2518
1392
  msgid "Dropdown"
1393
  msgstr "Dropdown"
1394
 
1395
- #: app/features/events.php:2351 app/features/mec/regform.php:278
1396
- #: app/libraries/main.php:2565
1397
  msgid "Agreement"
1398
  msgstr "Zustimmung"
1399
 
1400
- #: app/features/events.php:2352 app/features/mec/regform.php:279
1401
- #: app/libraries/main.php:2406
1402
  msgid "Paragraph"
1403
  msgstr "Absatz"
1404
 
1405
- #: app/features/events.php:2921 app/features/events.php:2938
1406
- #: app/features/events.php:2955
1407
  #, php-format
1408
  msgid "Show all %s"
1409
  msgstr "Zeige alle %s"
1410
 
1411
- #: app/features/events.php:2921
1412
  msgid "labels"
1413
  msgstr "Labels + Eventstatus"
1414
 
1415
- #: app/features/events.php:2938
1416
  msgid "locations"
1417
  msgstr "Orte"
1418
 
1419
- #: app/features/events.php:2955
1420
  msgid "organizers"
1421
  msgstr "Veranstalter"
1422
 
1423
- #: app/features/events.php:2984 app/features/events.php:3168
1424
- #: app/features/events.php:3210 app/features/ix.php:2740
1425
- #: app/features/ix.php:2781 app/features/locations.php:58
1426
  #: app/features/locations.php:230 app/features/locations.php:287
1427
  #: app/features/locations.php:289 app/features/locations.php:298
1428
  #: app/features/mec/meta_boxes/display_options.php:800
@@ -1436,18 +1340,18 @@ msgstr "Veranstalter"
1436
  #: app/features/mec/meta_boxes/search_form.php:460
1437
  #: app/features/mec/meta_boxes/search_form.php:521
1438
  #: app/features/mec/meta_boxes/search_form.php:582
1439
- #: app/features/mec/settings.php:911 app/features/mec/single.php:398
1440
- #: app/libraries/main.php:1703 app/libraries/main.php:4513
1441
- #: app/libraries/skins.php:833 app/skins/single.php:457
1442
- #: app/skins/single.php:875 app/skins/single/default.php:154
1443
  #: app/skins/single/default.php:366 app/skins/single/m1.php:155
1444
  #: app/skins/single/m2.php:87 app/skins/single/modern.php:94
1445
  msgid "Location"
1446
  msgstr "Ort"
1447
 
1448
- #: app/features/events.php:2985 app/features/events.php:3168
1449
- #: app/features/events.php:3210 app/features/ix.php:2740
1450
- #: app/features/ix.php:2781 app/features/mec/meta_boxes/display_options.php:801
1451
  #: app/features/mec/meta_boxes/search_form.php:45
1452
  #: app/features/mec/meta_boxes/search_form.php:107
1453
  #: app/features/mec/meta_boxes/search_form.php:169
@@ -1458,67 +1362,68 @@ msgstr "Ort"
1458
  #: app/features/mec/meta_boxes/search_form.php:467
1459
  #: app/features/mec/meta_boxes/search_form.php:528
1460
  #: app/features/mec/meta_boxes/search_form.php:589
1461
- #: app/features/mec/settings.php:917 app/features/mec/single.php:394
1462
  #: app/features/organizers.php:58 app/features/organizers.php:204
1463
  #: app/features/organizers.php:260 app/features/organizers.php:262
1464
- #: app/features/organizers.php:271 app/libraries/main.php:4515
1465
- #: app/libraries/skins.php:859 app/skins/single.php:763
1466
  #: app/skins/single/default.php:195 app/skins/single/default.php:407
1467
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
1468
  #: app/skins/single/modern.php:31
1469
  msgid "Organizer"
1470
  msgstr "Veranstalter"
1471
 
1472
- #: app/features/events.php:2989
1473
  msgid "Repeat"
1474
  msgstr "Wiederholen"
1475
 
1476
- #: app/features/events.php:2990
1477
  msgid "Author"
1478
  msgstr "Autor"
1479
 
1480
- #: app/features/events.php:3103 app/features/events.php:3104
1481
  msgid "iCal Export"
1482
  msgstr "ical Export"
1483
 
1484
- #: app/features/events.php:3106 app/features/events.php:3107
1485
  msgid "CSV Export"
1486
  msgstr "CSV Export"
1487
 
1488
- #: app/features/events.php:3109 app/features/events.php:3110
1489
  msgid "MS Excel Export"
1490
  msgstr "MS Excel Export"
1491
 
1492
- #: app/features/events.php:3112 app/features/events.php:3113
1493
  msgid "XML Export"
1494
  msgstr "XML Export"
1495
 
1496
- #: app/features/events.php:3115 app/features/events.php:3116
1497
  msgid "JSON Export"
1498
  msgstr "JSON Export"
1499
 
1500
- #: app/features/events.php:3118 app/features/events.php:3119
 
1501
  msgid "Duplicate"
1502
  msgstr "Kopie"
1503
 
1504
- #: app/features/events.php:3168 app/features/events.php:3210
1505
- #: app/features/ix.php:2740 app/features/ix.php:2781
1506
  #: app/features/labels.php:177 app/features/locations.php:229
1507
  #: app/features/organizers.php:203 app/features/speakers.php:246
1508
  msgid "ID"
1509
  msgstr "ID"
1510
 
1511
- #: app/features/events.php:3168 app/features/events.php:3210
1512
- #: app/features/ix.php:2740 app/features/ix.php:2781
1513
  msgid "Link"
1514
  msgstr "Link"
1515
 
1516
- #: app/features/events.php:3168 app/features/events.php:3210
1517
  #, php-format
1518
  msgid "%s Tel"
1519
  msgstr "%s Tel"
1520
 
1521
- #: app/features/events.php:3168 app/features/events.php:3210
1522
  #, php-format
1523
  msgid "%s Email"
1524
  msgstr "%s Email"
@@ -1611,7 +1516,7 @@ msgstr ""
1611
  "dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
1612
  "einschließlich http(s)://"
1613
 
1614
- #: app/features/fes/form.php:723 app/features/mec/settings.php:774
1615
  msgid "Featured Image"
1616
  msgstr "Ausgewähltes Bild"
1617
 
@@ -1620,15 +1525,15 @@ msgid "Remove Image"
1620
  msgstr "Bild entfernen"
1621
 
1622
  #: app/features/fes/form.php:770 app/features/labels.php:61
1623
- #: app/features/labels.php:221 app/features/mec.php:333
1624
- #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4510
1625
- #: app/skins/single.php:656 app/skins/single/default.php:133
1626
  #: app/skins/single/default.php:345 app/skins/single/m1.php:64
1627
  #: app/skins/single/modern.php:214
1628
  msgid "Labels"
1629
  msgstr "Labels"
1630
 
1631
- #: app/features/fes/form.php:816 app/features/mec.php:331
1632
  #: app/features/mec/meta_boxes/filter.php:138
1633
  msgid "Tags"
1634
  msgstr "Schlagworte"
@@ -1673,102 +1578,97 @@ msgstr "Keine Veranstaltungen gefunden! %s"
1673
  msgid "MEC - Import / Export"
1674
  msgstr "MEC - Import / Export"
1675
 
1676
- #: app/features/ix.php:107 app/features/mec/booking.php:205
1677
- #: app/features/mec/gateways.php:170 app/features/mec/ie.php:166
1678
- #: app/features/mec/messages.php:170 app/features/mec/modules.php:232
1679
- #: app/features/mec/notifications.php:206 app/features/mec/regform.php:205
1680
- #: app/features/mec/settings.php:242 app/features/mec/single.php:203
1681
- #: app/features/mec/styles.php:170 app/features/mec/styling.php:192
1682
- #: app/features/mec/support.php:73
1683
  msgid "Import / Export"
1684
  msgstr "Import / Export"
1685
 
1686
- #: app/features/ix.php:198
1687
  msgid "Please upload the feed file."
1688
  msgstr ""
1689
 
1690
- #: app/features/ix.php:201
1691
  msgid "The file type should be XML or ICS."
1692
  msgstr ""
1693
 
1694
- #: app/features/ix.php:210
1695
  msgid "An error occurred during the file upload! Please check permissions!"
1696
  msgstr ""
1697
 
1698
- #: app/features/ix.php:218
1699
  msgid "The events are imported successfully!"
1700
  msgstr ""
1701
 
1702
- #: app/features/ix.php:780
1703
  msgid "Third Party plugin is not installed and activated!"
1704
  msgstr "Drittanbieter-Plugin ist nicht installiert und aktiviert!"
1705
 
1706
- #: app/features/ix.php:800
1707
  msgid "Third Party plugin is invalid!"
1708
  msgstr "Drittanbieter-Plugin ist ungültig!"
1709
 
1710
- #: app/features/ix.php:1947 app/features/ix.php:2005
1711
  msgid "Both of API key and Calendar ID are required!"
1712
  msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
1713
 
1714
- #: app/features/ix.php:2000 app/features/ix.php:2419 app/features/ix.php:3126
1715
  msgid "Please select some events to import!"
1716
  msgstr "Bitte wählen Sie einige Veranstaltungen aus zum importieren"
1717
 
1718
- #: app/features/ix.php:2361 app/features/ix.php:2424
1719
  #, fuzzy
1720
  #| msgid "Both of API key and Calendar ID are required!"
1721
  msgid "Both of API key and Group URL are required!"
1722
  msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
1723
 
1724
- #: app/features/ix.php:2663
1725
  msgid "Check at Meetup"
1726
  msgstr ""
1727
 
1728
- #: app/features/ix.php:2740 app/features/ix.php:2781
1729
  msgid "Organizer Tel"
1730
  msgstr "Organisator Telefon"
1731
 
1732
- #: app/features/ix.php:2740 app/features/ix.php:2781
1733
  msgid "Organizer Email"
1734
  msgstr "Organisator Email"
1735
 
1736
- #: app/features/ix.php:2862
1737
  msgid "All of Client ID, Client Secret and Calendar ID are required!"
1738
  msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
1739
 
1740
- #: app/features/ix.php:2885
1741
  #, php-format
1742
  msgid "All seems good! Please click %s for authenticating your app."
1743
  msgstr ""
1744
  "Alles scheint gut zu sein! Bitte klicken %s um Ihre App zu authentifizieren."
1745
 
1746
- #: app/features/ix.php:2939
1747
  msgid "All of Client App, Client Secret and Calendar ID are required!"
1748
  msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
1749
 
1750
- #: app/features/ix.php:3055
1751
  #, php-format
1752
  msgid "%s events added to Google Calendar successfully."
1753
  msgstr "%s Events wurden erfolgreich zum Google Kalender hinzugefügt."
1754
 
1755
- #: app/features/ix.php:3056
1756
  #, php-format
1757
  msgid "%s previously added events get updated."
1758
  msgstr "%s vorherige hinzugefügte Events wurden aktualisiert."
1759
 
1760
- #: app/features/ix.php:3057
1761
  #, php-format
1762
  msgid "%s events failed to add for following reasons: %s"
1763
  msgstr "%s Events wurde aus folgenden Gründen nicht hinzugefügt: %s"
1764
 
1765
- #: app/features/ix.php:3089
1766
  #, fuzzy
1767
  #| msgid "Please insert your facebook page's link."
1768
  msgid "Please insert your Facebook page's link."
1769
  msgstr "Bitte Ihren Facebook Seitenlink eingeben."
1770
 
1771
- #: app/features/ix.php:3098
1772
  #, fuzzy
1773
  #| msgid ""
1774
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
@@ -1780,11 +1680,11 @@ msgstr ""
1780
  "Wir konnten Ihre Facebookseite nicht erkennen. Bitte checken Sie das und "
1781
  "stellen Sie uns einen gültigen Facebookseitenlink zur Verfügung."
1782
 
1783
- #: app/features/ix.php:3130
1784
  msgid "Please insert your facebook page's link."
1785
  msgstr "Bitte Ihren Facebook Seitenlink eingeben."
1786
 
1787
- #: app/features/ix.php:3135
1788
  msgid ""
1789
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1790
  "valid facebook page link."
@@ -1821,7 +1721,7 @@ msgstr "Synchronisation"
1821
  #: app/features/ix/import.php:15 app/features/ix/import_f_calendar.php:15
1822
  #: app/features/ix/import_g_calendar.php:15
1823
  #: app/features/ix/import_meetup.php:15 app/features/ix/sync.php:15
1824
- #: app/features/ix/thirdparty.php:15 app/features/mec/ie.php:190
1825
  msgid "Export"
1826
  msgstr "Export"
1827
 
@@ -1832,7 +1732,7 @@ msgstr "Export"
1832
  #: app/features/ix/import_g_calendar.php:103
1833
  #: app/features/ix/import_meetup.php:16 app/features/ix/import_meetup.php:85
1834
  #: app/features/ix/sync.php:16 app/features/ix/thirdparty.php:16
1835
- #: app/features/ix/thirdparty.php:98 app/features/mec/ie.php:179
1836
  msgid "Import"
1837
  msgstr "Import"
1838
 
@@ -1855,7 +1755,7 @@ msgstr ""
1855
  "Dies wird alle Ihre Eventdaten von der Webseite in Ihr gewünschtes Format "
1856
  "exportieren."
1857
 
1858
- #: app/features/ix/export.php:25 app/features/mec/modules.php:384
1859
  msgid "iCal"
1860
  msgstr "iCal"
1861
 
@@ -1965,9 +1865,9 @@ msgstr "Umschalten"
1965
  msgid "Add to Google Calendar"
1966
  msgstr "Zum Google Kalender hinzufügen"
1967
 
1968
- #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:597
1969
- #: app/features/mec/modules.php:623 app/features/mec/notifications.php:737
1970
- #: app/features/mec/settings.php:1103 app/features/mec/single.php:480
1971
  msgid "Checking ..."
1972
  msgstr "Überprüfung"
1973
 
@@ -2011,17 +1911,17 @@ msgstr ""
2011
  msgid "ICS Feed"
2012
  msgstr ""
2013
 
2014
- #: app/features/ix/import.php:46 app/features/mec/booking.php:224
2015
- #: app/features/mec/booking.php:359 app/features/mec/booking.php:377
2016
- #: app/features/mec/booking.php:454 app/features/mec/modules.php:276
2017
- #: app/features/mec/modules.php:417 app/features/mec/modules.php:434
2018
  #, php-format
2019
  msgid "%s is required to use this feature."
2020
  msgstr ""
2021
 
2022
  #: app/features/ix/import.php:46 app/features/ix/sync.php:22
2023
- #: app/features/mec/booking.php:224 app/features/mec/booking.php:359
2024
- #: app/features/mec/booking.php:377 app/features/mec/booking.php:454
2025
  #: app/features/mec/meta_boxes/display_options.php:296
2026
  #: app/features/mec/meta_boxes/display_options.php:423
2027
  #: app/features/mec/meta_boxes/display_options.php:474
@@ -2029,8 +1929,8 @@ msgstr ""
2029
  #: app/features/mec/meta_boxes/display_options.php:688
2030
  #: app/features/mec/meta_boxes/display_options.php:761
2031
  #: app/features/mec/meta_boxes/display_options.php:961
2032
- #: app/features/mec/modules.php:276 app/features/mec/modules.php:417
2033
- #: app/features/mec/modules.php:434
2034
  msgid "Pro version of Modern Events Calendar"
2035
  msgstr ""
2036
 
@@ -2280,7 +2180,40 @@ msgstr ""
2280
  "Setzen Sie einen Cronjob, um % s Datei mindestens einmal pro Tag anzurufen, "
2281
  "ansonsten würden keine Veranstaltungen von Facebook importiert. "
2282
 
 
 
 
 
2283
  #: app/features/ix/sync.php:68
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2284
  msgid "Save"
2285
  msgstr "Sichern"
2286
 
@@ -2384,7 +2317,7 @@ msgstr ""
2384
  #: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:107
2385
  #: app/skins/monthly_view/calendar_clean.php:107
2386
  #: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
2387
- #: app/skins/timetable/render.php:33 app/skins/timetable/render.php:136
2388
  #: app/skins/weekly_view/render.php:56 app/skins/yearly_view/render.php:48
2389
  #, fuzzy
2390
  #| msgid "Featured Image"
@@ -2392,7 +2325,7 @@ msgid "Featured"
2392
  msgstr "Ausgewähltes Bild"
2393
 
2394
  #: app/features/labels.php:118 app/features/labels.php:143
2395
- #: app/libraries/main.php:4756 app/skins/agenda/render.php:41
2396
  #: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:45
2397
  #: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
2398
  #: app/skins/daily_view/render.php:52 app/skins/grid/render.php:53
@@ -2400,7 +2333,7 @@ msgstr "Ausgewähltes Bild"
2400
  #: app/skins/monthly_view/calendar.php:111
2401
  #: app/skins/monthly_view/calendar_clean.php:111
2402
  #: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
2403
- #: app/skins/timetable/render.php:37 app/skins/timetable/render.php:137
2404
  #: app/skins/weekly_view/render.php:60 app/skins/yearly_view/render.php:52
2405
  msgid "Canceled"
2406
  msgstr "Abgesagt"
@@ -2425,9 +2358,9 @@ msgstr "Slug"
2425
  msgid "Event %s"
2426
  msgstr "Event %s"
2427
 
2428
- #: app/features/locations.php:59 app/features/mec.php:334
2429
  #: app/features/mec/dashboard.php:216 app/features/mec/meta_boxes/filter.php:87
2430
- #: app/libraries/main.php:4512
2431
  msgid "Locations"
2432
  msgstr "Orte"
2433
 
@@ -2501,7 +2434,7 @@ msgstr ""
2501
  "z.B. Karlsruhe Schlosshotel oder Frankfurt Allianz oder Dortmund "
2502
  "Westfalenhalle"
2503
 
2504
- #: app/features/locations.php:310 app/features/mec/settings.php:804
2505
  #: app/widgets/single.php:115
2506
  msgid "Event Location"
2507
  msgstr "Veranstaltungsort"
@@ -2539,7 +2472,7 @@ msgstr "Bild wählen"
2539
  msgid "Don't show map in single event page"
2540
  msgstr "Karte in Einzelansicht nicht anzeigen"
2541
 
2542
- #: app/features/locations.php:356 app/libraries/main.php:4546
2543
  #, fuzzy
2544
  #| msgid "Locations"
2545
  msgid "Other Locations"
@@ -2555,119 +2488,119 @@ msgstr ""
2555
  "Sie können zusätzliche Veranstalter zusätzlich zum Hauptorganisator "
2556
  "auswählen, wenn Sie möchten."
2557
 
2558
- #: app/features/mec.php:157
2559
  msgid ""
2560
  "Activation faild. Please check your purchase code or license type."
2561
  "<br><b>Note: Your purchase code should match your licesne type.</b>"
2562
  msgstr ""
2563
 
2564
- #: app/features/mec.php:157
2565
  msgid "Troubleshooting"
2566
  msgstr ""
2567
 
2568
- #: app/features/mec.php:208
2569
  msgid ""
2570
  "Your options is not in JSON format. Please insert correct options in this "
2571
  "field and try again."
2572
  msgstr ""
2573
 
2574
- #: app/features/mec.php:215
2575
  #, fuzzy
2576
  #| msgid "Your booking cannot verify!"
2577
  msgid "Your options field can not be empty!"
2578
  msgstr "Ihre Buchung kann nicht verifiziert werden!"
2579
 
2580
- #: app/features/mec.php:221
2581
  #, fuzzy
2582
  #| msgid "Your booking successfully verified."
2583
  msgid "Your options imported successfuly."
2584
  msgstr "Ihre Buchung wurde erfolgreich verifiziert."
2585
 
2586
- #: app/features/mec.php:314
2587
  #, fuzzy
2588
  #| msgid "Support"
2589
  msgid "MEC - Support"
2590
  msgstr "Support"
2591
 
2592
- #: app/features/mec.php:314 app/features/mec/support-page.php:9
2593
  #: app/features/mec/support.php:80 app/features/mec/support.php:93
2594
  msgid "Support"
2595
  msgstr "Support"
2596
 
2597
- #: app/features/mec.php:335 app/features/mec/dashboard.php:223
2598
  #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2599
- #: app/libraries/main.php:4514
2600
  msgid "Organizers"
2601
  msgstr "Veranstalter"
2602
 
2603
- #: app/features/mec.php:343 app/features/mec.php:363
2604
  #: app/features/mec/dashboard.php:209
2605
  msgid "Shortcodes"
2606
  msgstr "Shortcodes"
2607
 
2608
- #: app/features/mec.php:344
2609
  msgid "MEC - Settings"
2610
  msgstr "MEC - Einstellungen"
2611
 
2612
- #: app/features/mec.php:345
2613
  #, fuzzy
2614
  #| msgid "MEC - Settings"
2615
  msgid "MEC - Addons"
2616
  msgstr "MEC - Einstellungen"
2617
 
2618
- #: app/features/mec.php:345 app/features/mec/addons.php:22
2619
  msgid "Addons"
2620
  msgstr ""
2621
 
2622
- #: app/features/mec.php:365
2623
  msgid "Add Shortcode"
2624
  msgstr "Shortcode hinzufügen"
2625
 
2626
- #: app/features/mec.php:366
2627
  msgid "Add New Shortcode"
2628
  msgstr "Neuen Shortcode hinzufügen"
2629
 
2630
- #: app/features/mec.php:367
2631
  msgid "No shortcodes found!"
2632
  msgstr "Keine Shortcodes gefunden!"
2633
 
2634
- #: app/features/mec.php:368
2635
  msgid "All Shortcodes"
2636
  msgstr "Alle Shortcodes"
2637
 
2638
- #: app/features/mec.php:369
2639
  msgid "Edit shortcodes"
2640
  msgstr "Shortcode ändern"
2641
 
2642
- #: app/features/mec.php:370
2643
  msgid "No shortcodes found in Trash!"
2644
  msgstr "Keine Shortcodes im Papierkorb gefunden!"
2645
 
2646
- #: app/features/mec.php:419
2647
  msgid "Display Options"
2648
  msgstr "Darstellungsoptionen"
2649
 
2650
- #: app/features/mec.php:420
2651
  msgid "Filter Options"
2652
  msgstr "Filteroptionen"
2653
 
2654
- #: app/features/mec.php:422
2655
  msgid "Search Form"
2656
  msgstr "Suche Formular"
2657
 
2658
- #: app/features/mec.php:819
2659
  msgid "Display content's images as Popup"
2660
  msgstr ""
2661
 
2662
- #: app/features/mec.php:832
2663
  msgid "Single Event Display Method"
2664
  msgstr "Single Event Anzeigemethode"
2665
 
2666
- #: app/features/mec.php:837
2667
  msgid "Separate Window"
2668
  msgstr "Separates Fenster"
2669
 
2670
- #: app/features/mec.php:838
2671
  msgid "Modal 1"
2672
  msgstr "Modal 1"
2673
 
@@ -2701,316 +2634,55 @@ msgid ""
2701
  "your host provider in this regard."
2702
  msgstr ""
2703
 
2704
- #: app/features/mec/booking.php:24 app/features/mec/booking.php:537
2705
- #: app/features/mec/booking.php:547 app/features/mec/booking.php:614
2706
- #: app/features/mec/booking.php:628 app/features/mec/gateways.php:11
2707
- #: app/features/mec/gateways.php:212 app/features/mec/gateways.php:221
2708
- #: app/features/mec/gateways.php:262 app/features/mec/gateways.php:272
2709
- #: app/features/mec/messages.php:11 app/features/mec/messages.php:204
2710
- #: app/features/mec/messages.php:213 app/features/mec/messages.php:247
2711
- #: app/features/mec/messages.php:256 app/features/mec/modules.php:22
2712
- #: app/features/mec/modules.php:563 app/features/mec/modules.php:573
2713
- #: app/features/mec/modules.php:640 app/features/mec/modules.php:654
2714
  #: app/features/mec/notifications.php:10 app/features/mec/notifications.php:646
2715
  #: app/features/mec/notifications.php:658
2716
  #: app/features/mec/notifications.php:754
2717
  #: app/features/mec/notifications.php:768 app/features/mec/regform.php:48
2718
- #: app/features/mec/regform.php:285 app/features/mec/regform.php:340
2719
- #: app/features/mec/regform.php:376 app/features/mec/regform.php:385
2720
- #: app/features/mec/settings.php:31 app/features/mec/settings.php:1027
2721
- #: app/features/mec/settings.php:1037 app/features/mec/settings.php:1120
2722
- #: app/features/mec/settings.php:1134 app/features/mec/single.php:14
2723
- #: app/features/mec/single.php:420 app/features/mec/single.php:430
2724
- #: app/features/mec/single.php:497 app/features/mec/single.php:511
2725
- #: app/features/mec/styles.php:11 app/features/mec/styles.php:190
2726
- #: app/features/mec/styles.php:199 app/features/mec/styles.php:236
2727
- #: app/features/mec/styles.php:245 app/features/mec/styling.php:33
2728
- #: app/features/mec/styling.php:397 app/features/mec/styling.php:406
2729
- #: app/features/mec/styling.php:469 app/features/mec/styling.php:478
2730
  msgid "Save Changes"
2731
  msgstr "Änderungen sichern"
2732
 
2733
- #: app/features/mec/booking.php:38 app/features/mec/gateways.php:29
2734
- #: app/features/mec/ie.php:25 app/features/mec/messages.php:29
2735
- #: app/features/mec/modules.php:36 app/features/mec/notifications.php:28
2736
- #: app/features/mec/regform.php:66 app/features/mec/settings.php:57
2737
- #: app/features/mec/settings.php:371 app/features/mec/single.php:28
2738
- #: app/features/mec/styles.php:29 app/features/mec/styling.php:51
2739
- msgid "Archive Pages"
2740
- msgstr ""
2741
-
2742
- #: app/features/mec/booking.php:43 app/features/mec/gateways.php:34
2743
- #: app/features/mec/ie.php:30 app/features/mec/messages.php:34
2744
- #: app/features/mec/modules.php:41 app/features/mec/notifications.php:33
2745
- #: app/features/mec/regform.php:71 app/features/mec/settings.php:87
2746
- #: app/features/mec/settings.php:877 app/features/mec/single.php:33
2747
- #: app/features/mec/styles.php:34 app/features/mec/styling.php:56
2748
- msgid "User Profile"
2749
- msgstr ""
2750
-
2751
- #: app/features/mec/booking.php:44 app/features/mec/gateways.php:35
2752
- #: app/features/mec/ie.php:31 app/features/mec/messages.php:35
2753
- #: app/features/mec/modules.php:42 app/features/mec/notifications.php:34
2754
- #: app/features/mec/regform.php:72 app/features/mec/settings.php:93
2755
- #: app/features/mec/settings.php:884 app/features/mec/single.php:34
2756
- #: app/features/mec/styles.php:35 app/features/mec/styling.php:57
2757
- #, fuzzy
2758
- #| msgid "Search Form"
2759
- msgid "Search Bar"
2760
- msgstr "Suche Formular"
2761
-
2762
- #: app/features/mec/booking.php:48 app/features/mec/gateways.php:39
2763
- #: app/features/mec/ie.php:35 app/features/mec/messages.php:39
2764
- #: app/features/mec/modules.php:46 app/features/mec/notifications.php:38
2765
- #: app/features/mec/regform.php:76 app/features/mec/settings.php:109
2766
- #: app/features/mec/single.php:38 app/features/mec/styles.php:39
2767
- #: app/features/mec/styling.php:61
2768
- #, fuzzy
2769
- #| msgid "Upload/Add image"
2770
- msgid "Upload Field"
2771
- msgstr "Bild hochladen/hinzufügen"
2772
-
2773
- #: app/features/mec/booking.php:56 app/features/mec/gateways.php:47
2774
- #: app/features/mec/ie.php:43 app/features/mec/messages.php:47
2775
- #: app/features/mec/modules.php:54 app/features/mec/notifications.php:46
2776
- #: app/features/mec/regform.php:84 app/features/mec/settings.php:119
2777
- #: app/features/mec/single.php:50 app/features/mec/styles.php:47
2778
- #: app/features/mec/styling.php:69
2779
- #, fuzzy
2780
- #| msgid "Single Event Style"
2781
- msgid "Single Event"
2782
- msgstr "Single Event Stil"
2783
-
2784
- #: app/features/mec/booking.php:60 app/features/mec/gateways.php:51
2785
- #: app/features/mec/ie.php:47 app/features/mec/messages.php:51
2786
- #: app/features/mec/modules.php:58 app/features/mec/notifications.php:50
2787
- #: app/features/mec/regform.php:88 app/features/mec/settings.php:123
2788
- #: app/features/mec/single.php:57 app/features/mec/single.php:220
2789
- #: app/features/mec/styles.php:51 app/features/mec/styling.php:73
2790
- #, fuzzy
2791
- #| msgid "Single Event Style"
2792
- msgid "Single Event Page"
2793
- msgstr "Single Event Stil"
2794
-
2795
- #: app/features/mec/booking.php:63 app/features/mec/gateways.php:54
2796
- #: app/features/mec/ie.php:50 app/features/mec/messages.php:54
2797
- #: app/features/mec/modules.php:61 app/features/mec/notifications.php:53
2798
- #: app/features/mec/regform.php:91 app/features/mec/settings.php:126
2799
- #: app/features/mec/single.php:75 app/features/mec/single.php:357
2800
- #: app/features/mec/styles.php:54 app/features/mec/styling.php:76
2801
- msgid "Additional Organizers"
2802
- msgstr "Zusätzliche Organisatoren"
2803
-
2804
- #: app/features/mec/booking.php:64 app/features/mec/gateways.php:55
2805
- #: app/features/mec/ie.php:51 app/features/mec/messages.php:55
2806
- #: app/features/mec/modules.php:62 app/features/mec/notifications.php:54
2807
- #: app/features/mec/regform.php:92 app/features/mec/settings.php:127
2808
- #: app/features/mec/single.php:81 app/features/mec/styles.php:55
2809
- #: app/features/mec/styling.php:77
2810
- #, fuzzy
2811
- #| msgid "Additional Organizers"
2812
- msgid "Additional Locations"
2813
- msgstr "Zusätzliche Organisatoren"
2814
-
2815
- #: app/features/mec/booking.php:65 app/features/mec/gateways.php:56
2816
- #: app/features/mec/ie.php:52 app/features/mec/messages.php:56
2817
- #: app/features/mec/modules.php:63 app/features/mec/notifications.php:55
2818
- #: app/features/mec/regform.php:93 app/features/mec/settings.php:128
2819
- #: app/features/mec/single.php:87 app/features/mec/single.php:377
2820
- #: app/features/mec/styles.php:56 app/features/mec/styling.php:78
2821
- #: app/skins/single.php:162
2822
- #, fuzzy
2823
- #| msgid "featured event"
2824
- msgid "Related Events"
2825
- msgstr "Ausgewählte Veranstaltung"
2826
-
2827
- #: app/features/mec/booking.php:100 app/features/mec/booking.php:374
2828
- #: app/features/mec/gateways.php:73 app/features/mec/ie.php:69
2829
- #: app/features/mec/messages.php:73 app/features/mec/modules.php:80
2830
- #: app/features/mec/notifications.php:72 app/features/mec/regform.php:110
2831
- #: app/features/mec/settings.php:145 app/features/mec/single.php:106
2832
- #: app/features/mec/styles.php:73 app/features/mec/styling.php:95
2833
- msgid "Taxes / Fees"
2834
- msgstr "Steuern/Gebühren"
2835
-
2836
- #: app/features/mec/booking.php:106 app/features/mec/booking.php:451
2837
- #: app/features/mec/gateways.php:74 app/features/mec/ie.php:70
2838
- #: app/features/mec/messages.php:74 app/features/mec/modules.php:81
2839
- #: app/features/mec/notifications.php:73 app/features/mec/regform.php:111
2840
- #: app/features/mec/settings.php:146 app/features/mec/single.php:107
2841
- #: app/features/mec/styles.php:74 app/features/mec/styling.php:96
2842
- msgid "Ticket Variations & Options"
2843
- msgstr ""
2844
-
2845
- #: app/features/mec/booking.php:120 app/features/mec/gateways.php:85
2846
- #: app/features/mec/ie.php:81 app/features/mec/messages.php:85
2847
- #: app/features/mec/modules.php:96 app/features/mec/notifications.php:84
2848
- #: app/features/mec/regform.php:122 app/features/mec/settings.php:157
2849
- #: app/features/mec/single.php:118 app/features/mec/styles.php:85
2850
- #: app/features/mec/styling.php:107
2851
- #, fuzzy
2852
- #| msgid "Social Module : "
2853
- msgid "Modules"
2854
- msgstr "Social Modul:"
2855
-
2856
- #: app/features/mec/booking.php:128 app/features/mec/gateways.php:93
2857
- #: app/features/mec/ie.php:89 app/features/mec/messages.php:93
2858
- #: app/features/mec/modules.php:119 app/features/mec/modules.php:373
2859
- #: app/features/mec/notifications.php:92 app/features/mec/regform.php:130
2860
- #: app/features/mec/settings.php:165 app/features/mec/single.php:126
2861
- #: app/features/mec/styles.php:93 app/features/mec/styling.php:115
2862
- #, fuzzy
2863
- #| msgid "Import Options"
2864
- msgid "Export Options"
2865
- msgstr "Import Optionen"
2866
-
2867
- #: app/features/mec/booking.php:129 app/features/mec/gateways.php:94
2868
- #: app/features/mec/ie.php:90 app/features/mec/messages.php:94
2869
- #: app/features/mec/modules.php:125 app/features/mec/modules.php:400
2870
- #: app/features/mec/notifications.php:93 app/features/mec/regform.php:131
2871
- #: app/features/mec/settings.php:166 app/features/mec/single.php:127
2872
- #: app/features/mec/styles.php:94 app/features/mec/styling.php:116
2873
- #: app/modules/local-time/details.php:42 app/widgets/single.php:99
2874
- msgid "Local Time"
2875
- msgstr "Lokale Zeit"
2876
-
2877
- #: app/features/mec/booking.php:131 app/features/mec/gateways.php:96
2878
- #: app/features/mec/ie.php:92 app/features/mec/messages.php:96
2879
- #: app/features/mec/modules.php:133 app/features/mec/modules.php:414
2880
- #: app/features/mec/notifications.php:95 app/features/mec/regform.php:133
2881
- #: app/features/mec/settings.php:168 app/features/mec/single.php:129
2882
- #: app/features/mec/styles.php:96 app/features/mec/styling.php:118
2883
- #: app/modules/qrcode/details.php:38 app/widgets/single.php:155
2884
- msgid "QR Code"
2885
- msgstr "QR Code"
2886
-
2887
- #: app/features/mec/booking.php:132 app/features/mec/gateways.php:97
2888
- #: app/features/mec/ie.php:93 app/features/mec/messages.php:97
2889
- #: app/features/mec/modules.php:139 app/features/mec/modules.php:432
2890
- #: app/features/mec/notifications.php:96 app/features/mec/regform.php:134
2891
- #: app/features/mec/settings.php:169 app/features/mec/single.php:130
2892
- #: app/features/mec/styles.php:97 app/features/mec/styling.php:119
2893
- #: app/modules/weather/details.php:37
2894
- msgid "Weather"
2895
- msgstr "Wetter"
2896
-
2897
- #: app/features/mec/booking.php:135 app/features/mec/gateways.php:100
2898
- #: app/features/mec/ie.php:96 app/features/mec/messages.php:100
2899
- #: app/features/mec/modules.php:153 app/features/mec/modules.php:494
2900
- #: app/features/mec/notifications.php:99 app/features/mec/regform.php:137
2901
- #: app/features/mec/settings.php:172 app/features/mec/single.php:133
2902
- #: app/features/mec/styles.php:100 app/features/mec/styling.php:122
2903
- #: app/modules/next-event/details.php:82
2904
- msgid "Next Event"
2905
- msgstr "Nächstes Event"
2906
-
2907
- #: app/features/mec/booking.php:170 app/features/mec/gateways.php:135
2908
- #: app/features/mec/ie.php:131 app/features/mec/messages.php:135
2909
- #: app/features/mec/modules.php:197 app/features/mec/notifications.php:144
2910
- #: app/features/mec/notifications.php:291 app/features/mec/regform.php:170
2911
- #: app/features/mec/settings.php:207 app/features/mec/single.php:168
2912
- #: app/features/mec/styles.php:135 app/features/mec/styling.php:157
2913
- msgid "Booking Verification"
2914
- msgstr "Verifizierung der Buchung"
2915
-
2916
- #: app/features/mec/booking.php:171 app/features/mec/booking.php:330
2917
- #: app/features/mec/gateways.php:136 app/features/mec/ie.php:132
2918
- #: app/features/mec/messages.php:136 app/features/mec/modules.php:198
2919
- #: app/features/mec/notifications.php:150
2920
- #: app/features/mec/notifications.php:343 app/features/mec/regform.php:171
2921
- #: app/features/mec/settings.php:208 app/features/mec/single.php:169
2922
- #: app/features/mec/styles.php:136 app/features/mec/styling.php:158
2923
- msgid "Booking Confirmation"
2924
- msgstr "Buchungsbestätigung"
2925
-
2926
- #: app/features/mec/booking.php:172 app/features/mec/gateways.php:137
2927
- #: app/features/mec/ie.php:133 app/features/mec/messages.php:137
2928
- #: app/features/mec/modules.php:199 app/features/mec/notifications.php:156
2929
- #: app/features/mec/notifications.php:395 app/features/mec/regform.php:172
2930
- #: app/features/mec/settings.php:209 app/features/mec/single.php:170
2931
- #: app/features/mec/styles.php:137 app/features/mec/styling.php:159
2932
- #, fuzzy
2933
- #| msgid "Booking cancellation link."
2934
- msgid "Booking Cancellation"
2935
- msgstr "Link zur Stornierung der Buchung"
2936
-
2937
- #: app/features/mec/booking.php:173 app/features/mec/gateways.php:138
2938
- #: app/features/mec/ie.php:134 app/features/mec/messages.php:138
2939
- #: app/features/mec/modules.php:200 app/features/mec/notifications.php:162
2940
- #: app/features/mec/notifications.php:463 app/features/mec/regform.php:173
2941
- #: app/features/mec/settings.php:210 app/features/mec/single.php:171
2942
- #: app/features/mec/styles.php:138 app/features/mec/styling.php:160
2943
- msgid "Admin"
2944
- msgstr ""
2945
-
2946
- #: app/features/mec/booking.php:174 app/features/mec/gateways.php:139
2947
- #: app/features/mec/ie.php:135 app/features/mec/messages.php:139
2948
- #: app/features/mec/modules.php:201 app/features/mec/notifications.php:168
2949
- #: app/features/mec/notifications.php:523 app/features/mec/regform.php:174
2950
- #: app/features/mec/settings.php:211 app/features/mec/single.php:172
2951
- #: app/features/mec/styles.php:139 app/features/mec/styling.php:161
2952
- #: app/libraries/notifications.php:405
2953
- msgid "Booking Reminder"
2954
- msgstr "Buchungs Erinnerung"
2955
-
2956
- #: app/features/mec/booking.php:176 app/features/mec/gateways.php:141
2957
- #: app/features/mec/ie.php:137 app/features/mec/messages.php:141
2958
- #: app/features/mec/modules.php:203 app/features/mec/notifications.php:174
2959
- #: app/features/mec/notifications.php:599 app/features/mec/regform.php:176
2960
- #: app/features/mec/settings.php:213 app/features/mec/single.php:174
2961
- #: app/features/mec/styles.php:141 app/features/mec/styling.php:163
2962
- #: app/features/mec/support-page.php:80
2963
- msgid "New Event"
2964
- msgstr "Neue Veranstaltung"
2965
-
2966
- #: app/features/mec/booking.php:184 app/features/mec/gateways.php:149
2967
- #: app/features/mec/ie.php:145 app/features/mec/messages.php:149
2968
- #: app/features/mec/modules.php:211 app/features/mec/notifications.php:185
2969
- #: app/features/mec/regform.php:184 app/features/mec/settings.php:221
2970
- #: app/features/mec/single.php:182 app/features/mec/styles.php:149
2971
- #: app/features/mec/styling.php:171 app/features/mec/support.php:52
2972
- msgid "Styling Options"
2973
- msgstr "Styling-Optionen"
2974
-
2975
- #: app/features/mec/booking.php:191 app/features/mec/gateways.php:156
2976
- #: app/features/mec/ie.php:152 app/features/mec/messages.php:156
2977
- #: app/features/mec/modules.php:218 app/features/mec/notifications.php:192
2978
- #: app/features/mec/regform.php:191 app/features/mec/settings.php:228
2979
- #: app/features/mec/single.php:189 app/features/mec/styles.php:156
2980
- #: app/features/mec/styling.php:178 app/features/mec/support.php:59
2981
- msgid "Custom CSS"
2982
- msgstr "Custom CSS"
2983
-
2984
- #: app/features/mec/booking.php:198 app/features/mec/gateways.php:163
2985
- #: app/features/mec/ie.php:159 app/features/mec/messages.php:163
2986
- #: app/features/mec/messages.php:183 app/features/mec/modules.php:225
2987
- #: app/features/mec/notifications.php:199 app/features/mec/regform.php:198
2988
- #: app/features/mec/settings.php:235 app/features/mec/single.php:196
2989
- #: app/features/mec/styles.php:163 app/features/mec/styling.php:185
2990
- #: app/features/mec/support.php:66
2991
- msgid "Messages"
2992
- msgstr "Nachrichten"
2993
-
2994
- #: app/features/mec/booking.php:229
2995
  msgid "Enable booking module"
2996
  msgstr "Buchungsmodul aktivieren"
2997
 
2998
- #: app/features/mec/booking.php:230
2999
  msgid ""
3000
  "After enabling and saving the settings, reloading the page will add 'payment "
3001
  "Gateways' to the settings and a new menu item on the Dashboard"
3002
  msgstr ""
3003
 
3004
- #: app/features/mec/booking.php:235 app/features/mec/booking.php:240
3005
- #: app/features/mec/modules.php:512 app/features/mec/modules.php:517
3006
  msgid "Date Format"
3007
  msgstr "Datumsformat"
3008
 
3009
- #: app/features/mec/booking.php:241
3010
  msgid "Default is Y-m-d"
3011
  msgstr "Voreinstellung ist J-M-T"
3012
 
3013
- #: app/features/mec/booking.php:248
3014
  #: app/features/mec/meta_boxes/display_options.php:115
3015
  #: app/features/mec/meta_boxes/display_options.php:276
3016
  #: app/features/mec/meta_boxes/display_options.php:332
@@ -3020,37 +2692,37 @@ msgstr "Voreinstellung ist J-M-T"
3020
  msgid "Limit"
3021
  msgstr "Limit"
3022
 
3023
- #: app/features/mec/booking.php:250
3024
  #, fuzzy
3025
  #| msgid "Default is 6"
3026
  msgid "Default is empty"
3027
  msgstr "Die Voreinstellung ist 6"
3028
 
3029
- #: app/features/mec/booking.php:253
3030
  #, fuzzy
3031
  #| msgid "Booking Form"
3032
  msgid "Booking Limit"
3033
  msgstr "Buchungsformular"
3034
 
3035
- #: app/features/mec/booking.php:254
3036
  msgid ""
3037
  "Total tickets that a user can book. It is useful if you're providing free "
3038
  "tickets. Leave it empty for unlimited booking."
3039
  msgstr ""
3040
 
3041
- #: app/features/mec/booking.php:261
3042
  msgid "Maximum Dates"
3043
  msgstr "Maximale Anzahl von Daten"
3044
 
3045
- #: app/features/mec/booking.php:263
3046
  msgid "Default is 6"
3047
  msgstr "Die Voreinstellung ist 6"
3048
 
3049
- #: app/features/mec/booking.php:267 app/features/mec/booking.php:277
3050
  msgid "Thank You Page"
3051
  msgstr "Danke Seite"
3052
 
3053
- #: app/features/mec/booking.php:278
3054
  msgid ""
3055
  "User redirects to this page after booking. Leave it empty if you want to "
3056
  "disable it."
@@ -3058,15 +2730,15 @@ msgstr ""
3058
  "Benutzer werden auf diese Seite nach der Buchung weitergeleitet. Lassen Sie "
3059
  "es leer, wenn Sie es deaktivieren möchten."
3060
 
3061
- #: app/features/mec/booking.php:289
3062
  msgid "Enable Express Attendees Form"
3063
  msgstr "Aktivieren Sie das Express-Teilnehmerformular"
3064
 
3065
- #: app/features/mec/booking.php:293 app/modules/booking/steps/form.php:52
3066
  msgid "Attendees Form"
3067
  msgstr "Teilnahmeformular"
3068
 
3069
- #: app/features/mec/booking.php:294
3070
  msgid ""
3071
  "Users are able to apply first attendee information for other attendees in "
3072
  "the booking form."
@@ -3074,88 +2746,103 @@ msgstr ""
3074
  "Benutzer können erste Teilnehmerinformationen für andere Teilnehmer im "
3075
  "Buchungsformular anwenden."
3076
 
3077
- #: app/features/mec/booking.php:307
3078
  #, fuzzy
3079
  #| msgid "Download Invoice"
3080
  msgid "Enable Invoice"
3081
  msgstr "Download Rechnung"
3082
 
3083
- #: app/features/mec/booking.php:311
3084
  msgid "Email verification"
3085
  msgstr "Email-Verifizierung"
3086
 
3087
- #: app/features/mec/booking.php:317
3088
  msgid "Auto verification for free bookings"
3089
  msgstr "Automatische Verifizierung für kostenlose Buchungen"
3090
 
3091
- #: app/features/mec/booking.php:326
3092
  msgid "Auto verification for paid bookings"
3093
  msgstr "Automatische Verifizierung für kostenpflichtige Buchungen"
3094
 
3095
- #: app/features/mec/booking.php:336
 
 
 
 
 
3096
  msgid "Auto confirmation for free bookings"
3097
  msgstr "Automatische Bestätigung für kostenlose Buchungen"
3098
 
3099
- #: app/features/mec/booking.php:345
3100
  msgid "Auto confirmation for paid bookings"
3101
  msgstr "Automatische Bestätigung für kostenpflichtige Buchungen"
3102
 
3103
- #: app/features/mec/booking.php:364
3104
  msgid "Enable coupons module"
3105
  msgstr "Gutscheinmodul aktivieren"
3106
 
3107
- #: app/features/mec/booking.php:366
3108
  msgid ""
3109
  "After enabling and saving the settings,, you should reload the page to see a "
3110
  "new menu on the Dashboard > Booking"
3111
  msgstr ""
3112
 
3113
- #: app/features/mec/booking.php:382
 
 
 
 
 
3114
  msgid "Enable taxes / fees module"
3115
  msgstr "Modul für Gebühren/Steuern aktivieren"
3116
 
3117
- #: app/features/mec/booking.php:387
3118
  msgid "Add Fee"
3119
  msgstr "Gebühr hinzufügen"
3120
 
3121
- #: app/features/mec/booking.php:459
 
 
 
 
 
3122
  #, fuzzy
3123
  #| msgid "Enable coupons module"
3124
  msgid "Enable ticket options module"
3125
  msgstr "Gutscheinmodul aktivieren"
3126
 
3127
- #: app/features/mec/booking.php:464
3128
  msgid "Add Variation / Option"
3129
  msgstr ""
3130
 
3131
- #: app/features/mec/booking.php:592 app/features/mec/gateways.php:241
3132
- #: app/features/mec/messages.php:231 app/features/mec/modules.php:618
3133
- #: app/features/mec/notifications.php:732 app/features/mec/regform.php:360
3134
- #: app/features/mec/settings.php:1098 app/features/mec/single.php:475
3135
- #: app/features/mec/styles.php:219 app/features/mec/styling.php:451
3136
  msgid "Saved"
3137
  msgstr "Gesichert"
3138
 
3139
- #: app/features/mec/booking.php:593 app/features/mec/gateways.php:242
3140
- #: app/features/mec/messages.php:232 app/features/mec/modules.php:619
3141
- #: app/features/mec/notifications.php:733 app/features/mec/regform.php:361
3142
- #: app/features/mec/settings.php:1099 app/features/mec/single.php:476
3143
- #: app/features/mec/styles.php:220 app/features/mec/styling.php:452
3144
  msgid "Settings Saved!"
3145
  msgstr ""
3146
 
3147
- #: app/features/mec/booking.php:595 app/features/mec/booking.php:617
3148
- #: app/features/mec/modules.php:621 app/features/mec/modules.php:643
3149
  #: app/features/mec/notifications.php:735
3150
- #: app/features/mec/notifications.php:757 app/features/mec/settings.php:1101
3151
- #: app/features/mec/settings.php:1123 app/features/mec/single.php:478
3152
- #: app/features/mec/single.php:500 app/libraries/main.php:4755
3153
  msgid "Verified"
3154
  msgstr "Verifiziert"
3155
 
3156
- #: app/features/mec/booking.php:619 app/features/mec/modules.php:645
3157
- #: app/features/mec/notifications.php:759 app/features/mec/settings.php:1125
3158
- #: app/features/mec/single.php:502
3159
  msgid "Please Refresh Page"
3160
  msgstr "Bitte Seiten Refresh vornehmen"
3161
 
@@ -3236,7 +2923,7 @@ msgstr "MEC Aktivierung"
3236
  msgid "You cannot access this section."
3237
  msgstr ""
3238
 
3239
- #: app/features/mec/dashboard.php:234 app/features/mec/settings.php:542
3240
  msgid "Upcoming Events"
3241
  msgstr "Bevorstehende Events"
3242
 
@@ -3285,51 +2972,56 @@ msgstr "Alle Verkäufe (%s)"
3285
  msgid "Change Log"
3286
  msgstr "Änderungsprotokoll"
3287
 
3288
- #: app/features/mec/gateways.php:199
3289
  msgid "Enable Organizer Payment Module"
3290
  msgstr ""
3291
 
3292
- #: app/features/mec/gateways.php:203
3293
  #, fuzzy
3294
  #| msgid "Organizer Tel"
3295
  msgid "Organizer Payment"
3296
  msgstr "Organisator Telefon"
3297
 
3298
- #: app/features/mec/gateways.php:204
3299
  msgid ""
3300
  "By enabling this module, organizers are able to insert their own payment "
3301
  "credentials for enabled gateways per event and receive the payments directly!"
3302
  msgstr ""
3303
 
3304
- #: app/features/mec/ie.php:180
3305
  msgid ""
3306
  "Insert your backup files below and press import to restore your site's "
3307
  "options to the last backup."
3308
  msgstr ""
3309
 
3310
- #: app/features/mec/ie.php:181
3311
  msgid ""
3312
  "WARNING! Restoring backup will overwrite all of your current option values. "
3313
  "Caution Indeed."
3314
  msgstr ""
3315
 
3316
- #: app/features/mec/ie.php:184
3317
  msgid "Please paste your options here"
3318
  msgstr ""
3319
 
3320
- #: app/features/mec/ie.php:186
3321
  #, fuzzy
3322
  #| msgid "Import Options"
3323
  msgid "Import Settings"
3324
  msgstr "Import Optionen"
3325
 
3326
- #: app/features/mec/ie.php:196
3327
  #, fuzzy
3328
  #| msgid "Download Invoice"
3329
  msgid "Download Settings"
3330
  msgstr "Download Rechnung\n"
3331
 
3332
- #: app/features/mec/messages.php:186
 
 
 
 
 
3333
  msgid ""
3334
  "You can change some MEC messages here simply. For example if you like to "
3335
  "change \"REGISTER\" button label, you can do it here. By the Way, if your "
@@ -3349,16 +3041,16 @@ msgstr "Skin"
3349
  #: app/features/mec/meta_boxes/display_options.php:159
3350
  #: app/features/mec/meta_boxes/display_options.php:531
3351
  #: app/features/mec/meta_boxes/display_options.php:845
3352
- #: app/features/mec/settings.php:406 app/features/mec/settings.php:430
3353
- #: app/features/mec/settings.php:439 app/features/mec/settings.php:480
3354
- #: app/features/mec/settings.php:504 app/features/mec/settings.php:513
3355
  msgid "Classic"
3356
  msgstr "Klassisch"
3357
 
3358
  #: app/features/mec/meta_boxes/display_options.php:35
3359
  #: app/features/mec/meta_boxes/display_options.php:161
3360
- #: app/features/mec/settings.php:431 app/features/mec/settings.php:441
3361
- #: app/features/mec/settings.php:505 app/features/mec/settings.php:515
3362
  msgid "Minimal"
3363
  msgstr "Minimal"
3364
 
@@ -3368,20 +3060,20 @@ msgstr "Minimal"
3368
  #: app/features/mec/meta_boxes/display_options.php:533
3369
  #: app/features/mec/meta_boxes/display_options.php:695
3370
  #: app/features/mec/meta_boxes/display_options.php:847
3371
- #: app/features/mec/settings.php:408 app/features/mec/settings.php:421
3372
- #: app/features/mec/settings.php:432 app/features/mec/settings.php:442
3373
- #: app/features/mec/settings.php:482 app/features/mec/settings.php:495
3374
- #: app/features/mec/settings.php:506 app/features/mec/settings.php:516
3375
  msgid "Modern"
3376
  msgstr "Modern"
3377
 
3378
  #: app/features/mec/meta_boxes/display_options.php:37
3379
- #: app/features/mec/settings.php:433 app/features/mec/settings.php:507
3380
  msgid "Standard"
3381
  msgstr "Standard"
3382
 
3383
  #: app/features/mec/meta_boxes/display_options.php:38
3384
- #: app/features/mec/settings.php:434 app/features/mec/settings.php:508
3385
  msgid "Accordion"
3386
  msgstr "Accordion"
3387
 
@@ -3601,17 +3293,17 @@ msgstr "Zeige Monatsteilung"
3601
  #: app/features/mec/meta_boxes/display_options.php:532
3602
  #: app/features/mec/meta_boxes/display_options.php:696
3603
  #: app/features/mec/meta_boxes/display_options.php:846
3604
- #: app/features/mec/settings.php:407 app/features/mec/settings.php:422
3605
- #: app/features/mec/settings.php:440 app/features/mec/settings.php:481
3606
- #: app/features/mec/settings.php:496 app/features/mec/settings.php:514
3607
  msgid "Clean"
3608
  msgstr "Clean"
3609
 
3610
  #: app/features/mec/meta_boxes/display_options.php:163
3611
  #: app/features/mec/meta_boxes/display_options.php:387
3612
  #: app/features/mec/meta_boxes/display_options.php:535
3613
- #: app/features/mec/settings.php:410 app/features/mec/settings.php:443
3614
- #: app/features/mec/settings.php:484 app/features/mec/settings.php:517
3615
  msgid "Simple"
3616
  msgstr "Schlicht"
3617
 
@@ -3622,8 +3314,8 @@ msgstr "Farbenfroh"
3622
  #: app/features/mec/meta_boxes/display_options.php:165
3623
  #: app/features/mec/meta_boxes/display_options.php:386
3624
  #: app/features/mec/meta_boxes/display_options.php:534
3625
- #: app/features/mec/settings.php:409 app/features/mec/settings.php:445
3626
- #: app/features/mec/settings.php:483 app/features/mec/settings.php:519
3627
  msgid "Novel"
3628
  msgstr ""
3629
 
@@ -3670,15 +3362,15 @@ msgstr "Standardansicht"
3670
 
3671
  #: app/features/mec/meta_boxes/display_options.php:375
3672
  #: app/features/mec/meta_boxes/display_options.php:396
3673
- #: app/libraries/main.php:329 app/libraries/main.php:1249
3674
- #: app/libraries/main.php:1274
3675
  msgid "List View"
3676
  msgstr "Listenansicht"
3677
 
3678
  #: app/features/mec/meta_boxes/display_options.php:376
3679
  #: app/features/mec/meta_boxes/display_options.php:406
3680
- #: app/libraries/main.php:333 app/libraries/main.php:1243
3681
- #: app/libraries/main.php:1268
3682
  msgid "Yearly View"
3683
  msgstr "Jahresansicht"
3684
 
@@ -3689,15 +3381,15 @@ msgstr "Monatliche Kalenderansicht"
3689
 
3690
  #: app/features/mec/meta_boxes/display_options.php:378
3691
  #: app/features/mec/meta_boxes/display_options.php:438
3692
- #: app/libraries/main.php:336 app/libraries/main.php:1245
3693
- #: app/libraries/main.php:1270
3694
  msgid "Weekly View"
3695
  msgstr "Wochenansicht"
3696
 
3697
  #: app/features/mec/meta_boxes/display_options.php:379
3698
  #: app/features/mec/meta_boxes/display_options.php:448
3699
- #: app/libraries/main.php:335 app/libraries/main.php:1246
3700
- #: app/libraries/main.php:1271
3701
  msgid "Daily View"
3702
  msgstr "Tagesansicht"
3703
 
@@ -4088,8 +3780,8 @@ msgstr "Such Formular anzeigen"
4088
  #: app/features/mec/meta_boxes/search_form.php:612
4089
  #: app/features/mec/meta_boxes/search_form.php:619
4090
  #: app/features/mec/meta_boxes/search_form.php:626
4091
- #: app/features/mec/modules.php:331 app/features/mec/settings.php:304
4092
- #: app/features/mec/settings.php:560
4093
  msgid "Disabled"
4094
  msgstr "Deaktiviert"
4095
 
@@ -4103,9 +3795,9 @@ msgstr "Deaktiviert"
4103
  #: app/features/mec/meta_boxes/search_form.php:474
4104
  #: app/features/mec/meta_boxes/search_form.php:535
4105
  #: app/features/mec/meta_boxes/search_form.php:596
4106
- #: app/features/mec/settings.php:924 app/features/mec/single.php:403
4107
  #: app/features/speakers.php:59 app/features/speakers.php:247
4108
- #: app/libraries/main.php:4517 app/libraries/skins.php:885
4109
  msgid "Speaker"
4110
  msgstr ""
4111
 
@@ -4119,7 +3811,7 @@ msgstr ""
4119
  #: app/features/mec/meta_boxes/search_form.php:481
4120
  #: app/features/mec/meta_boxes/search_form.php:542
4121
  #: app/features/mec/meta_boxes/search_form.php:603
4122
- #: app/features/mec/settings.php:931 app/features/mec/single.php:412
4123
  #: app/libraries/skins.php:911
4124
  #, fuzzy
4125
  #| msgid "Tags"
@@ -4173,49 +3865,49 @@ msgstr "Text eingeben"
4173
  msgid "No Search Options"
4174
  msgstr "Keine Suchoptionen"
4175
 
4176
- #: app/features/mec/modules.php:249
4177
  #, fuzzy
4178
  #| msgid "No Search Options"
4179
  msgid "Speakers Options"
4180
  msgstr "Keine Suchoptionen"
4181
 
4182
- #: app/features/mec/modules.php:255
4183
  #, fuzzy
4184
  #| msgid "Enable taxes / fees module"
4185
  msgid "Enable speakers feature"
4186
  msgstr "Modul für Gebühren/Steuern aktivieren"
4187
 
4188
- #: app/features/mec/modules.php:259
4189
  msgid ""
4190
  "Enable this option to have speaker in Hourly Schedule in Single. Refresh "
4191
  "after enabling it to see the Speakers menu under MEC dashboard."
4192
  msgstr ""
4193
 
4194
- #: app/features/mec/modules.php:264
4195
  msgid ""
4196
  "After enabling and saving the settings, you should reload the page to see a "
4197
  "new menu on the Dashboard > MEC"
4198
  msgstr ""
4199
 
4200
- #: app/features/mec/modules.php:281
4201
  msgid "Show Google Maps on event page"
4202
  msgstr "Google Maps auf der Veranstaltungsseite anzeigen"
4203
 
4204
- #: app/features/mec/modules.php:286 app/features/mec/modules.php:444
4205
- #: app/features/mec/settings.php:961 app/features/mec/settings.php:966
4206
  msgid "API Key"
4207
  msgstr "API Schlüssel"
4208
 
4209
- #: app/features/mec/modules.php:292 app/features/mec/settings.php:967
4210
- #: app/features/mec/settings.php:980
4211
  msgid "Required!"
4212
  msgstr "Erforderlich (Pflichtfeld)"
4213
 
4214
- #: app/features/mec/modules.php:299 app/features/mec/modules.php:308
4215
  msgid "Zoom level"
4216
  msgstr "Zoom"
4217
 
4218
- #: app/features/mec/modules.php:309
4219
  msgid ""
4220
  "For Google Maps module in single event page. In Google Maps skin, it will "
4221
  "caculate the zoom level automatically based on event boundaries."
@@ -4224,129 +3916,257 @@ msgstr ""
4224
  "es die Zoom-Ebene automatisch kalkulieren, basierend auf den Eventort "
4225
  "Angrenzungen"
4226
 
4227
- #: app/features/mec/modules.php:316
4228
  msgid "Google Maps Style"
4229
  msgstr "Google Maps Stil"
4230
 
4231
- #: app/features/mec/modules.php:320 app/features/mec/single.php:274
4232
  msgid "Default"
4233
  msgstr "Standardeinstellung"
4234
 
4235
- #: app/features/mec/modules.php:328
4236
  msgid "Direction on single event"
4237
  msgstr "Richtung auf einzelne Veranstaltung"
4238
 
4239
- #: app/features/mec/modules.php:332
4240
  msgid "Simple Method"
4241
  msgstr "Einfache Methode"
4242
 
4243
- #: app/features/mec/modules.php:333
4244
  msgid "Advanced Method"
4245
  msgstr "Fortgeschrittene Methode"
4246
 
4247
- #: app/features/mec/modules.php:338 app/features/mec/modules.php:343
4248
  msgid "Lightbox Date Format"
4249
  msgstr "Leuchtkasten Datumsformat"
4250
 
4251
- #: app/features/mec/modules.php:344
4252
  msgid "Default value is M d Y"
4253
  msgstr "Standardwert ist M T J"
4254
 
4255
- #: app/features/mec/modules.php:351 app/features/mec/modules.php:359
4256
  msgid "Google Maps API"
4257
  msgstr "Google Maps API"
4258
 
4259
- #: app/features/mec/modules.php:355
4260
  msgid "Don't load Google Maps API library"
4261
  msgstr "Google Maps API Bibliothek nicht laden"
4262
 
4263
- #: app/features/mec/modules.php:360
4264
  msgid "Check it only if another plugin/theme is loading the Google Maps API"
4265
  msgstr ""
4266
  "Checken Sie es nur wenn ein anderes plugin/Thema die Google Maps API lädt."
4267
 
4268
- #: app/features/mec/modules.php:377
 
 
 
 
 
 
 
4269
  msgid ""
4270
  "Show export module (iCal export and add to Google calendars) on event page"
4271
  msgstr ""
4272
  "Exportmodule auf Veranstaltungsseite anzeigen (iCal export und hinzufügen zu "
4273
  "Google calendars)"
4274
 
4275
- #: app/features/mec/modules.php:384
4276
  msgid "Google Calendar"
4277
  msgstr "Google Calendar"
4278
 
4279
- #: app/features/mec/modules.php:404
 
 
 
 
 
 
4280
  msgid "Show event time based on local time of visitor on event page"
4281
  msgstr ""
4282
  "Zeige die Eventzeit basierend auf der Ortszeit des Besuchers auf der "
4283
  "Eventseite"
4284
 
4285
- #: app/features/mec/modules.php:422
 
 
 
 
 
 
4286
  msgid "Show QR code of event in details page and booking invoice"
4287
  msgstr ""
4288
  "Zeigen Sie QR-Code des Events in der Detailseite und in der Buchungsrechnung "
4289
  "an"
4290
 
4291
- #: app/features/mec/modules.php:439
 
 
 
 
 
4292
  msgid "Show weather module on event page"
4293
  msgstr "Wettermodul auf der Eventseite anzeigen"
4294
 
4295
- #: app/features/mec/modules.php:447
4296
  #, php-format
4297
  msgid "You can get a free API Key from %s"
4298
  msgstr "Sie können einen kostenlosen API-Schlüssel von% s erhalten"
4299
 
4300
- #: app/features/mec/modules.php:453
4301
  #, fuzzy
4302
  #| msgid "Show weather module on event page"
4303
  msgid "Show weather imperial units"
4304
  msgstr "Wettermodul auf der Eventseite anzeigen"
4305
 
4306
- #: app/features/mec/modules.php:459
4307
  msgid "Show weather change units button"
4308
  msgstr ""
4309
 
4310
- #: app/features/mec/modules.php:473
4311
  msgid "Show social network module"
4312
  msgstr "Modul für Soziale Netzwerke anzeigen"
4313
 
4314
- #: app/features/mec/modules.php:498
 
 
 
 
 
4315
  msgid "Show next event module on event page"
4316
  msgstr "Nächstes Event Modul auf der Eventseite anzeigen"
4317
 
4318
- #: app/features/mec/modules.php:503
4319
  msgid "Method"
4320
  msgstr "Methode"
4321
 
4322
- #: app/features/mec/modules.php:506
4323
  msgid "Next Occurrence of Current Event"
4324
  msgstr "Nächstes Auftreten des aktuellen Events"
4325
 
4326
- #: app/features/mec/modules.php:507
4327
  msgid "Next Occurrence of Other Events"
4328
  msgstr "Nächstes Auftreten von anderen Events."
4329
 
4330
- #: app/features/mec/modules.php:518 app/features/mec/single.php:228
4331
  msgid "Default is M d Y"
4332
  msgstr "Standardwert ist M-T-J"
4333
 
4334
- #: app/features/mec/modules.php:534
4335
  msgid "Enable BuddyPress Integration"
4336
  msgstr "Buddy Press Integration deaktivieren"
4337
 
4338
- #: app/features/mec/modules.php:541
4339
  msgid "Show \"Attendees Module\" in event details page"
4340
  msgstr "Zeigt \"Teilnehmermodul\" in Event Details Seite"
4341
 
4342
- #: app/features/mec/modules.php:545
4343
  msgid "Attendees Limit"
4344
  msgstr "Teilnehmer Limit, maximale Anzahl"
4345
 
4346
- #: app/features/mec/modules.php:553
4347
  msgid "Add booking activity to user profile"
4348
  msgstr "Fügt Buchungsaktivitäten dem Benutzerprofil hinzu"
4349
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4350
  #: app/features/mec/notifications.php:231
4351
  msgid "Enable booking notification"
4352
  msgstr "Buchungsbenachrichtigung aktivieren"
@@ -4749,8 +4569,8 @@ msgstr "Titel der Veranstaltung"
4749
  msgid "Status of event"
4750
  msgstr "Status der Veranstaltung"
4751
 
4752
- #: app/features/mec/notifications.php:632 app/features/mec/settings.php:846
4753
- #: app/features/mec/settings.php:850
4754
  msgid "Event Note"
4755
  msgstr "Veranstaltungsnotiz"
4756
 
@@ -4758,50 +4578,50 @@ msgstr "Veranstaltungsnotiz"
4758
  msgid "Admin events management link."
4759
  msgstr "Admin-link zur Veranstaltungsverwaltung"
4760
 
4761
- #: app/features/mec/settings.php:262 app/features/mec/settings.php:272
4762
  msgid "Hide Events"
4763
  msgstr "Events verbergen"
4764
 
4765
- #: app/features/mec/settings.php:265
4766
  msgid "On Event Start"
4767
  msgstr "Am Event Start"
4768
 
4769
- #: app/features/mec/settings.php:266
4770
  msgid "+1 Hour after start"
4771
  msgstr "+1 Stunde nach dem Start"
4772
 
4773
- #: app/features/mec/settings.php:267
4774
  msgid "+2 Hours after start"
4775
  msgstr "+2 Stunden nach dem Start"
4776
 
4777
- #: app/features/mec/settings.php:268
4778
  msgid "On Event End"
4779
  msgstr "Am Event Ende"
4780
 
4781
- #: app/features/mec/settings.php:273
4782
  msgid ""
4783
  "This option is for showing start/end time of events on frontend of website."
4784
  msgstr ""
4785
  "Diese Option ist um die Start/Endezeit von Events im Frontend der Webseite "
4786
  "anzuzeigen"
4787
 
4788
- #: app/features/mec/settings.php:282 app/features/mec/settings.php:291
4789
  msgid "Multiple Day Events"
4790
  msgstr "Mehrtagesveranstaltung"
4791
 
4792
- #: app/features/mec/settings.php:285
4793
  msgid "Show only first day on List/Grid/Slider skins"
4794
  msgstr "Zeige nur den ersten Tag auf Listen/Raster(Grid)/Slider skins."
4795
 
4796
- #: app/features/mec/settings.php:286
4797
  msgid "Show only first day on all skins"
4798
  msgstr "Nur den ersten Tag in allen Ansichten zeigen"
4799
 
4800
- #: app/features/mec/settings.php:287
4801
  msgid "Show all days"
4802
  msgstr "Alle Tage anzeigen"
4803
 
4804
- #: app/features/mec/settings.php:292
4805
  msgid ""
4806
  "For showing all days of multiple day events on frontend or only show the "
4807
  "first day."
@@ -4809,40 +4629,54 @@ msgstr ""
4809
  "Um alle Tage anzuzeigen bei Events über mehrere Tage im Frontend oder nur "
4810
  "den ersten Tag anzeigen"
4811
 
4812
- #: app/features/mec/settings.php:301
4813
  msgid "Remove MEC Data on Plugin Uninstall"
4814
  msgstr "Entfernen von MEC Data auf dem Plugin Deinstallierer"
4815
 
4816
- #: app/features/mec/settings.php:305
4817
  msgid "Enabled"
4818
  msgstr "Aktiviert"
4819
 
4820
- #: app/features/mec/settings.php:311
4821
  msgid "Exclude Date Suffix"
4822
  msgstr "Ausschlussdatum Suffix"
4823
 
4824
- #: app/features/mec/settings.php:314
4825
  msgid "Remove suffix from calendars"
4826
  msgstr "Suffix aus den Kalendern entfernen"
4827
 
4828
- #: app/features/mec/settings.php:318
4829
  #, fuzzy
4830
  #| msgid "Remove suffix from calendars"
4831
  msgid "Remove \"Th\" on calendar"
4832
  msgstr "Suffix aus den Kalendern entfernen"
4833
 
4834
- #: app/features/mec/settings.php:319
4835
  msgid ""
4836
  "Checked this checkbox to remove 'Th' on calendar ( ex: '12Th' remove Th, "
4837
  "showing just '12' )"
4838
  msgstr ""
4839
 
4840
- #: app/features/mec/settings.php:328 app/features/mec/settings.php:338
4841
- #: app/libraries/main.php:4521
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4842
  msgid "Weekdays"
4843
  msgstr "Wochentage"
4844
 
4845
- #: app/features/mec/settings.php:339
4846
  #, fuzzy
4847
  #| msgid ""
4848
  #| "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, "
@@ -4855,105 +4689,105 @@ msgstr ""
4855
  "Vorsichtig vorgehen. Standardwert ist auf Montag, Dienstag, Mittwoch, "
4856
  "Donnerstag und Freitag gesetzt."
4857
 
4858
- #: app/features/mec/settings.php:349 app/features/mec/settings.php:359
4859
  msgid "Weekends"
4860
  msgstr "Wochenenden"
4861
 
4862
- #: app/features/mec/settings.php:360
4863
  msgid ""
4864
  "Proceed with caution. Default is set to Saturday and Sunday ( you can change "
4865
  "'Week Starts' on WordPress Dashboard > Settings > General - bottom of the "
4866
  "page )."
4867
  msgstr ""
4868
 
4869
- #: app/features/mec/settings.php:374 app/features/mec/settings.php:379
4870
  msgid "Archive Page Title"
4871
  msgstr "Titel der Archivseite"
4872
 
4873
- #: app/features/mec/settings.php:380
4874
  #, fuzzy
4875
  #| msgid "Default value is Events"
4876
  msgid "Default value is Events - It's title of the page"
4877
  msgstr "Der Standardwert ist Ereignisse (Events)"
4878
 
4879
- #: app/features/mec/settings.php:388 app/features/mec/settings.php:456
4880
  msgid "Archive Page Skin"
4881
  msgstr "Skin Seite Archiv"
4882
 
4883
- #: app/features/mec/settings.php:396
4884
  #, fuzzy
4885
  #| msgid "Edit shortcodes"
4886
  msgid "Put shortcode..."
4887
  msgstr "Shortcode ändern"
4888
 
4889
- #: app/features/mec/settings.php:399 app/features/mec/settings.php:414
4890
- #: app/features/mec/settings.php:417 app/features/mec/settings.php:426
4891
- #: app/features/mec/settings.php:452 app/features/mec/settings.php:473
4892
- #: app/features/mec/settings.php:488 app/features/mec/settings.php:491
4893
- #: app/features/mec/settings.php:500 app/features/mec/settings.php:526
4894
  #, fuzzy
4895
  #| msgid "The event is ongoing."
4896
  msgid "There is no skins"
4897
  msgstr "Die Veranstaltung ist im Gange."
4898
 
4899
- #: app/features/mec/settings.php:402 app/features/mec/settings.php:476
4900
- #: app/features/mec/single.php:255
4901
  msgid "Modern Style"
4902
  msgstr "Moderner Stil"
4903
 
4904
- #: app/features/mec/settings.php:444 app/features/mec/settings.php:518
4905
  #, fuzzy
4906
  #| msgid "Colorful"
4907
  msgid "colorful"
4908
  msgstr "Farbenfroh"
4909
 
4910
- #: app/features/mec/settings.php:449 app/features/mec/settings.php:523
4911
  #, fuzzy
4912
  #| msgid "Plain Style"
4913
  msgid "Clean Style"
4914
  msgstr "Einfacher schlichter Stil"
4915
 
4916
- #: app/features/mec/settings.php:457
4917
  #, fuzzy
4918
  #| msgid "Default value is Calendar/Monthly View"
4919
  msgid "Default value is Calendar/Monthly View, But you can change it "
4920
  msgstr "Der Standardwert ist Kalender / Monatsansicht"
4921
 
4922
- #: app/features/mec/settings.php:457 app/features/mec/settings.php:531
4923
  msgid "See Demo"
4924
  msgstr ""
4925
 
4926
- #: app/features/mec/settings.php:465 app/features/mec/settings.php:530
4927
  msgid "Category Page Skin"
4928
  msgstr "Kategorie Seiten Skin"
4929
 
4930
- #: app/features/mec/settings.php:531
4931
  msgid ""
4932
  "Default value is List View - But you can change it Set a skin for all "
4933
  "categories."
4934
  msgstr ""
4935
 
4936
- #: app/features/mec/settings.php:539 app/features/mec/settings.php:547
4937
  msgid "Category Events Method"
4938
  msgstr ""
4939
 
4940
- #: app/features/mec/settings.php:543
4941
  msgid "Expired Events"
4942
  msgstr ""
4943
 
4944
- #: app/features/mec/settings.php:548
4945
  msgid "Default value is Upcoming Events"
4946
  msgstr ""
4947
 
4948
- #: app/features/mec/settings.php:556 app/features/mec/settings.php:564
4949
  msgid "Events Archive Status"
4950
  msgstr "Events Archiv Status"
4951
 
4952
- #: app/features/mec/settings.php:559
4953
  msgid "Enabled (Recommended)"
4954
  msgstr "Ist aktiviert (empfohlen)"
4955
 
4956
- #: app/features/mec/settings.php:565
4957
  msgid ""
4958
  "If you disable it, then you should create a page as archive page of MEC. "
4959
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
@@ -4963,18 +4797,18 @@ msgstr ""
4963
  "erstellen. Page´s slug muss gleich sein wie \"Main Slug\" von MEC. Außerdem "
4964
  "werden alle MEC-Rewrite-Regeln deaktiviert."
4965
 
4966
- #: app/features/mec/settings.php:578 app/features/mec/settings.php:583
4967
  msgid "Main Slug"
4968
  msgstr "Main Slug"
4969
 
4970
- #: app/features/mec/settings.php:584
4971
  msgid ""
4972
  "Default value is events. You can not have a page with this name. MEC allows "
4973
  "you to create custom URLs for the permalinks and archives to enhance the "
4974
  "applicability and forward-compatibility of the links."
4975
  msgstr ""
4976
 
4977
- #: app/features/mec/settings.php:588 app/features/mec/settings.php:602
4978
  #, fuzzy
4979
  #| msgid ""
4980
  #| "Default value is events. Valid characters are lowercase a-z, - character "
@@ -4984,11 +4818,11 @@ msgstr ""
4984
  "Standardwert ist Events. Gültige Zeichen sind Kleinbuchstaben a-z, - Zeichen "
4985
  "und Zahlen."
4986
 
4987
- #: app/features/mec/settings.php:592 app/features/mec/settings.php:597
4988
  msgid "Category Slug"
4989
  msgstr "Category Slug"
4990
 
4991
- #: app/features/mec/settings.php:598
4992
  #, fuzzy
4993
  #| msgid ""
4994
  #| "It's slug of MEC categories, you can change it to events-cat or something "
@@ -5004,135 +4838,135 @@ msgstr ""
5004
  "für den link. Zum Beispiel example.com/events-cat oder example.com/mec-"
5005
  "category"
5006
 
5007
- #: app/features/mec/settings.php:610
5008
  msgid "Currency"
5009
  msgstr "Währung"
5010
 
5011
- #: app/features/mec/settings.php:620 app/features/mec/settings.php:625
5012
  msgid "Currency Sign"
5013
  msgstr "Währungssymbol"
5014
 
5015
- #: app/features/mec/settings.php:626
5016
  msgid "Default value will be \"currency\" if you leave it empty."
5017
  msgstr "Standardwert wird \"currency\" sein wenn Sie es leer lassen"
5018
 
5019
- #: app/features/mec/settings.php:633
5020
  msgid "Currency Position"
5021
  msgstr "Position des Währungssymbols"
5022
 
5023
- #: app/features/mec/settings.php:636
5024
  msgid "Before $10"
5025
  msgstr "Vor $10"
5026
 
5027
- #: app/features/mec/settings.php:637
5028
  msgid "After 10$"
5029
  msgstr "Nach 10$"
5030
 
5031
- #: app/features/mec/settings.php:642
5032
  msgid "Thousand Separator"
5033
  msgstr "Tausendertrennzeichen"
5034
 
5035
- #: app/features/mec/settings.php:648
5036
  msgid "Decimal Separator"
5037
  msgstr "Dezimaltrennzeichen"
5038
 
5039
- #: app/features/mec/settings.php:658
5040
  msgid "No decimal"
5041
  msgstr "Keine Dezimale"
5042
 
5043
- #: app/features/mec/settings.php:669
5044
  msgid "Enable Google Recaptcha"
5045
  msgstr "Google Recaptcha aktivieren"
5046
 
5047
- #: app/features/mec/settings.php:676
5048
  msgid "Enable on booking form"
5049
  msgstr "Auf dem Buchungsformular aktivieren"
5050
 
5051
- #: app/features/mec/settings.php:682
5052
  #, fuzzy
5053
  #| msgid "Enable on \"Frontend Event Submittion\" form"
5054
  msgid "Enable on \"Frontend Event Submission\" form"
5055
  msgstr "Aktivieren auf dem \"Frontend Event Submittion\" Formular"
5056
 
5057
- #: app/features/mec/settings.php:686
5058
  msgid "Site Key"
5059
  msgstr "Site Key (Seitenschlüssel)"
5060
 
5061
- #: app/features/mec/settings.php:692
5062
  msgid "Secret Key"
5063
  msgstr "Geheimschlüssel"
5064
 
5065
- #: app/features/mec/settings.php:704 app/features/mec/settings.php:712
5066
  msgid "Time Format"
5067
  msgstr "Zeitformat"
5068
 
5069
- #: app/features/mec/settings.php:707
5070
  msgid "12 hours format with AM/PM"
5071
  msgstr "12-Stunden-Format mit AM/FM"
5072
 
5073
- #: app/features/mec/settings.php:708
5074
  msgid "24 hours format"
5075
  msgstr "24-Stunden-Format"
5076
 
5077
- #: app/features/mec/settings.php:713
5078
  msgid "This option, affects the selection of Start/End time."
5079
  msgstr ""
5080
 
5081
- #: app/features/mec/settings.php:721
5082
  msgid "Events List Page"
5083
  msgstr "Seite Liste der Veranstaltungen"
5084
 
5085
- #: app/features/mec/settings.php:730 app/features/mec/settings.php:742
5086
  #, php-format
5087
  msgid "Put %s shortcode into the page."
5088
  msgstr "%s shortcode in die Seite einfügen"
5089
 
5090
- #: app/features/mec/settings.php:733
5091
  msgid "Add/Edit Events Page"
5092
  msgstr "Veranstaltungsseite hinzufügen/bearbeiten"
5093
 
5094
- #: app/features/mec/settings.php:747
5095
  msgid "Enable event submission by guest (Not logged-in) users"
5096
  msgstr ""
5097
  "Das Erstellen von Veranstaltungen durch Gäste (nicht angemeldete Nutzer) "
5098
  "erlauben"
5099
 
5100
- #: app/features/mec/settings.php:754
5101
  msgid "Enable mandatory email and name for guest user"
5102
  msgstr ""
5103
  "Aktivieren Sie die obligatorische E-Mail und den Namen für Gastbenutzer"
5104
 
5105
- #: app/features/mec/settings.php:758
5106
  msgid "Frontend Event Submission Sections"
5107
  msgstr "Frontend Veranstaltungen Einreichung Sektionen"
5108
 
5109
- #: app/features/mec/settings.php:780 app/widgets/single.php:119
5110
  msgid "Event Categories"
5111
  msgstr "Veranstaltungskategorien"
5112
 
5113
- #: app/features/mec/settings.php:786
5114
  msgid "Event Labels"
5115
  msgstr "Event Labels"
5116
 
5117
- #: app/features/mec/settings.php:798
5118
  msgid "Event Tags"
5119
  msgstr "Event Schlagworte"
5120
 
5121
- #: app/features/mec/settings.php:810 app/widgets/single.php:123
5122
  msgid "Event Organizer"
5123
  msgstr "Veranstaltungsmanager"
5124
 
5125
- #: app/features/mec/settings.php:828
5126
  msgid "Booking Options"
5127
  msgstr "Buchungsoptionen"
5128
 
5129
- #: app/features/mec/settings.php:834
5130
  #, fuzzy
5131
  #| msgid "Fees/Taxes Options"
5132
  msgid "Fees / Taxes Options"
5133
  msgstr "Gebühren/Steuer Optionen"
5134
 
5135
- #: app/features/mec/settings.php:851
5136
  #, php-format
5137
  msgid ""
5138
  "Users can put a note for editors while they're submitting the event. Also "
@@ -5144,86 +4978,92 @@ msgstr ""
5144
  "Eventbenachrichtigung setzen, um die Notizen der Benutzer in der E-Mail zu "
5145
  "erhalten."
5146
 
5147
- #: app/features/mec/settings.php:858 app/features/mec/settings.php:867
5148
  msgid "Visibility of Note"
5149
  msgstr "Sichtbarkeit der Anmerkungen zum Event "
5150
 
5151
- #: app/features/mec/settings.php:861
5152
  msgid "Always"
5153
  msgstr "Immer"
5154
 
5155
- #: app/features/mec/settings.php:862
5156
  msgid "While event is not published"
5157
  msgstr "Das Ereignis wird nicht veröffentlicht"
5158
 
5159
- #: app/features/mec/settings.php:868
5160
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
5161
  msgstr ""
5162
  "Die Ereignisnotiz wird im Frontend-Einreichungsformular angezeigt und das "
5163
  "Ereignis im Backend bearbeitet."
5164
 
5165
- #: app/features/mec/settings.php:879
5166
  #, php-format
5167
  msgid ""
5168
  "Put %s shortcode into your desired page. Then users are able to see history "
5169
  "of their bookings."
5170
  msgstr ""
5171
 
5172
- #: app/features/mec/settings.php:886
5173
  #, php-format
5174
  msgid ""
5175
  "Put %s shortcode into your desired page. Then users are able to search events"
5176
  msgstr ""
5177
 
5178
- #: app/features/mec/settings.php:890
5179
  msgid "Ajax Live mode"
5180
  msgstr ""
5181
 
5182
- #: app/features/mec/settings.php:894
5183
  msgid "Ajax mode"
5184
  msgstr ""
5185
 
5186
- #: app/features/mec/settings.php:895
5187
  msgid ""
5188
  "if you enable this option, search button disappeared and to use this "
5189
  "feature, text input field must be enabled."
5190
  msgstr ""
5191
 
5192
- #: app/features/mec/settings.php:901
 
 
 
 
 
 
5193
  #, fuzzy
5194
  #| msgid "Search Form"
5195
  msgid "Search bar fields"
5196
  msgstr "Suche Formular"
5197
 
5198
- #: app/features/mec/settings.php:943
5199
  #, fuzzy
5200
  #| msgid "Text Input"
5201
  msgid "Text input"
5202
  msgstr "Text eingeben"
5203
 
5204
- #: app/features/mec/settings.php:956
5205
  msgid "Enable Mailchimp Integration"
5206
  msgstr "Mailchimp Integration deaktivieren"
5207
 
5208
- #: app/features/mec/settings.php:974 app/features/mec/settings.php:979
5209
  msgid "List ID"
5210
  msgstr "List ID"
5211
 
5212
- #: app/features/mec/settings.php:987 app/features/mec/settings.php:995
5213
  msgid "Subscription Status"
5214
  msgstr "Buchungsstatus"
5215
 
5216
- #: app/features/mec/settings.php:990
5217
  msgid "Subscribe automatically"
5218
  msgstr "automatisch Anmelden/Abonnieren"
5219
 
5220
- #: app/features/mec/settings.php:991
5221
  msgid "Subscribe by verification"
5222
  msgstr ""
5223
  "Anmelden/Abonnieren durch Bestätigung\n"
5224
  " "
5225
 
5226
- #: app/features/mec/settings.php:996
5227
  msgid ""
5228
  "If you choose \"Subscribe by verification\" then an email will send to user "
5229
  "by mailchimp for subscription verification."
@@ -5231,51 +5071,51 @@ msgstr ""
5231
  "Wenn Sie \"Anmelden durch Verifizierung\" wählen, wird eine E-Mail an den "
5232
  "Benutzer per Mailchimp zur Bestätigung gesendet."
5233
 
5234
- #: app/features/mec/settings.php:1008
5235
  #, fuzzy
5236
  #| msgid "Filter Options"
5237
  msgid "Upload Field Options"
5238
  msgstr "Filteroptionen"
5239
 
5240
- #: app/features/mec/settings.php:1010
5241
  msgid "Mime types"
5242
  msgstr ""
5243
 
5244
- #: app/features/mec/settings.php:1014
5245
  msgid "Split mime types with \",\"."
5246
  msgstr ""
5247
 
5248
- #: app/features/mec/settings.php:1014
5249
  msgid "Default: jpeg,jpg,png,pdf"
5250
  msgstr ""
5251
 
5252
- #: app/features/mec/settings.php:1017
5253
  #, fuzzy
5254
  #| msgid "Amount (Per Ticket)"
5255
  msgid "Maximum file size"
5256
  msgstr "Betrag (pro Ticket)"
5257
 
5258
- #: app/features/mec/settings.php:1021
5259
  msgid "The unit is Megabyte \"MB\""
5260
  msgstr ""
5261
 
5262
- #: app/features/mec/single.php:222 app/features/mec/single.php:227
5263
  msgid "Single Event Date Format"
5264
  msgstr "Einzelveranstaltung Datumformat"
5265
 
5266
- #: app/features/mec/single.php:235 app/features/mec/single.php:243
5267
  msgid "Date Method"
5268
  msgstr "Datum Methode"
5269
 
5270
- #: app/features/mec/single.php:238
5271
  msgid "Next occurrence date"
5272
  msgstr "Nächstes vorkommende Datum"
5273
 
5274
- #: app/features/mec/single.php:239
5275
  msgid "Referred date"
5276
  msgstr "Gewünschtes Datum"
5277
 
5278
- #: app/features/mec/single.php:244
5279
  #, fuzzy
5280
  #| msgid ""
5281
  #| "\"Referred date\" shows the event date based on referred date in event "
@@ -5286,99 +5126,99 @@ msgstr ""
5286
  "\"Gewünschtes Datum\" zeigt das Ereignisdatum basierend auf dem angegebenen "
5287
  "Datum in der Eventliste an."
5288
 
5289
- #: app/features/mec/single.php:251 app/features/mec/single.php:262
5290
  msgid "Single Event Style"
5291
  msgstr "Single Event Stil"
5292
 
5293
- #: app/features/mec/single.php:254
5294
  msgid "Default Style"
5295
  msgstr "Standardstil voreingestellt"
5296
 
5297
- #: app/features/mec/single.php:257
5298
  #, fuzzy
5299
  #| msgid "MEC Single Sidebar"
5300
  msgid "Elementor Single Builder"
5301
  msgstr "MEC Single Sidebar"
5302
 
5303
- #: app/features/mec/single.php:263
5304
  msgid "Choose your single event style."
5305
  msgstr "Wählen Sie Ihren Single Event Stil"
5306
 
5307
- #: app/features/mec/single.php:271 app/features/mec/single.php:279
5308
  #, fuzzy
5309
  #| msgid "Booking"
5310
  msgid "Booking Style"
5311
  msgstr "Buchung / Reservierung"
5312
 
5313
- #: app/features/mec/single.php:275
5314
  #, fuzzy
5315
  #| msgid "Modal 1"
5316
  msgid "Modal"
5317
  msgstr "Modal 1"
5318
 
5319
- #: app/features/mec/single.php:280
5320
  msgid ""
5321
  "Choose your Booking style, Please Note: When you set this feature to modal "
5322
  "you can not see booking box if you set popoup module view on shortcodes"
5323
  msgstr ""
5324
 
5325
- #: app/features/mec/single.php:288
5326
  msgid "Disable Block Editor (Gutenberg)"
5327
  msgstr ""
5328
 
5329
- #: app/features/mec/single.php:291
5330
  msgid "Disable Block Editor"
5331
  msgstr ""
5332
 
5333
- #: app/features/mec/single.php:295
5334
  msgid "Block Editor"
5335
  msgstr ""
5336
 
5337
- #: app/features/mec/single.php:296
5338
  msgid ""
5339
  "If you want to use the new WordPress block editor you should keep this "
5340
  "checkbox unchecked."
5341
  msgstr ""
5342
 
5343
- #: app/features/mec/single.php:302 app/features/mec/single.php:309
5344
  msgid "Breadcrumbs"
5345
  msgstr ""
5346
 
5347
- #: app/features/mec/single.php:305
5348
  msgid "Enable Breadcrumbs."
5349
  msgstr ""
5350
 
5351
- #: app/features/mec/single.php:310
5352
  msgid "Check this option, for showing the breadcrumbs on single event page"
5353
  msgstr ""
5354
 
5355
- #: app/features/mec/single.php:323
5356
  msgid "Show countdown module on event page"
5357
  msgstr "Countdownmodul auf Veranstaltungsseite anzeigen"
5358
 
5359
- #: app/features/mec/single.php:328
5360
  msgid "Countdown Style"
5361
  msgstr "Countdown Stil"
5362
 
5363
- #: app/features/mec/single.php:331
5364
  msgid "Plain Style"
5365
  msgstr "Einfacher schlichter Stil"
5366
 
5367
- #: app/features/mec/single.php:332
5368
  msgid "Flip Style"
5369
  msgstr "Flip Stil"
5370
 
5371
- #: app/features/mec/single.php:340 app/features/mec/single.php:347
5372
  msgid "Exceptional days"
5373
  msgstr "Ausgesuchte ausnehmende Tage"
5374
 
5375
- #: app/features/mec/single.php:344
5376
  msgid "Show exceptional days option on Add/Edit events page"
5377
  msgstr ""
5378
  "Ausnehmende Tage anzeigen auf der Seite Ereignisse hinzufügen / bearbeiten "
5379
  "(Show exceptional days option on Add/Edit events page)"
5380
 
5381
- #: app/features/mec/single.php:348
5382
  msgid ""
5383
  "Using this option you can include/exclude certain days to/from event "
5384
  "occurrence dates."
@@ -5386,7 +5226,7 @@ msgstr ""
5386
  "Mit dieser Option können Sie bestimmte Tage von vorkommenden Eventdaten ein-/"
5387
  "ausschließen."
5388
 
5389
- #: app/features/mec/single.php:361
5390
  msgid ""
5391
  "Show additional organizers option on Add/Edit events page and single event "
5392
  "page."
@@ -5394,13 +5234,13 @@ msgstr ""
5394
  "Zeigen Sie zusätzliche Organisatoren auf der Seite Events hinzufügen / "
5395
  "bearbeiten und auf der Seite für einzelne Events an."
5396
 
5397
- #: app/features/mec/single.php:367
5398
  #, fuzzy
5399
  #| msgid "Additional Organizers"
5400
  msgid "Additional locations"
5401
  msgstr "Zusätzliche Organisatoren"
5402
 
5403
- #: app/features/mec/single.php:371
5404
  #, fuzzy
5405
  #| msgid ""
5406
  #| "Show additional organizers option on Add/Edit events page and single "
@@ -5412,21 +5252,21 @@ msgstr ""
5412
  "Zeigen Sie zusätzliche Organisatoren auf der Seite Events hinzufügen / "
5413
  "bearbeiten und auf der Seite für einzelne Events an."
5414
 
5415
- #: app/features/mec/single.php:381
5416
  msgid "Display related events based on taxonomy in single event page."
5417
  msgstr ""
5418
 
5419
- #: app/features/mec/single.php:387
5420
  #, fuzzy
5421
  #| msgid "Taxonomies"
5422
  msgid "Select Taxonomies:"
5423
  msgstr "Klassifizierung "
5424
 
5425
- #: app/features/mec/styles.php:183
5426
  msgid "Custom Styles"
5427
  msgstr "Benutzerdefinierte Stile"
5428
 
5429
- #: app/features/mec/styles.php:188
5430
  msgid ""
5431
  "If you're a developer or you have some knowledge about CSS codes, you can "
5432
  "place your desired styles codes here. These codes will be included in your "
@@ -5437,78 +5277,78 @@ msgstr ""
5437
  "Ihre eigenen Stilcodes einfügen. Diese Codes werden in Ihr Frontend "
5438
  "übernommen und übersteuern die MEC- (oder Thema-) Grundeinstellungen."
5439
 
5440
- #: app/features/mec/styling.php:10 app/features/mec/styling.php:313
5441
- #: app/features/mec/styling.php:339
5442
  msgid "Default Font"
5443
  msgstr "Standardschriftart des Themas "
5444
 
5445
- #: app/features/mec/styling.php:205
5446
  msgid "Styling Option"
5447
  msgstr "Style Optionen"
5448
 
5449
- #: app/features/mec/styling.php:210
5450
  msgid "Color Skin"
5451
  msgstr "Farbe Skin"
5452
 
5453
- #: app/features/mec/styling.php:213
5454
  msgid "Predefined Color Skin"
5455
  msgstr "Vordefinierte Farbenoberfläche"
5456
 
5457
- #: app/features/mec/styling.php:256
5458
  msgid "Custom Color Skin"
5459
  msgstr "Benutzerdefinierte Farboberfläche"
5460
 
5461
- #: app/features/mec/styling.php:262
5462
  msgid ""
5463
  "If you want to select a predefined color skin, you must clear the color of "
5464
  "this item"
5465
  msgstr ""
5466
 
5467
- #: app/features/mec/styling.php:267
5468
  msgid "Advanced Color Options (shortcodes)"
5469
  msgstr ""
5470
 
5471
- #: app/features/mec/styling.php:279
5472
  #, fuzzy
5473
  #| msgid "Title of event"
5474
  msgid "Title Hover"
5475
  msgstr "Titel der Veranstaltung"
5476
 
5477
- #: app/features/mec/styling.php:296
5478
  msgid "Typography"
5479
  msgstr "Typographie"
5480
 
5481
- #: app/features/mec/styling.php:298
5482
  msgid "Heading (Events Title) Font Family"
5483
  msgstr "Schriftart Überschrift (Titel der Veranstaltung)"
5484
 
5485
- #: app/features/mec/styling.php:324
5486
  msgid "Paragraph Font Family"
5487
  msgstr "Schriftart Absätze"
5488
 
5489
- #: app/features/mec/styling.php:351 app/features/mec/styling.php:357
5490
  #, fuzzy
5491
  #| msgid "Enable Google Recaptcha"
5492
  msgid "Disable Google Fonts"
5493
  msgstr "Google Recaptcha aktivieren"
5494
 
5495
- #: app/features/mec/styling.php:358
5496
  msgid "To be GDPR compliant you may need to disable Google fonts!"
5497
  msgstr ""
5498
 
5499
- #: app/features/mec/styling.php:367
5500
  msgid "Container Width"
5501
  msgstr ""
5502
 
5503
- #: app/features/mec/styling.php:369 app/features/mec/styling.php:374
5504
  msgid "Desktop Normal Screens"
5505
  msgstr ""
5506
 
5507
- #: app/features/mec/styling.php:375 app/features/mec/styling.php:388
5508
  msgid "You can enter your theme container size in this field"
5509
  msgstr ""
5510
 
5511
- #: app/features/mec/styling.php:382 app/features/mec/styling.php:387
5512
  msgid "Desktop Large Screens"
5513
  msgstr ""
5514
 
@@ -5985,8 +5825,8 @@ msgstr "z.B.. max@mustermann.com"
5985
  msgid "eg. https://webnus.net"
5986
  msgstr "http://webnus.net"
5987
 
5988
- #: app/features/organizers.php:311 app/libraries/main.php:4545
5989
- #: app/skins/single.php:813
5990
  msgid "Other Organizers"
5991
  msgstr "Andere Veranstalter"
5992
 
@@ -6007,11 +5847,11 @@ msgstr "Um neue Veranstaltungen einzugeben, bitte %s/%s"
6007
  msgid "#"
6008
  msgstr ""
6009
 
6010
- #: app/features/profile/profile.php:34 app/libraries/main.php:2587
6011
  msgid "Status"
6012
  msgstr ""
6013
 
6014
- #: app/features/profile/profile.php:37 app/libraries/main.php:1724
6015
  msgid "Attendees"
6016
  msgstr "Teilnehmer"
6017
 
@@ -6026,8 +5866,8 @@ msgstr "% s Rechnung"
6026
  msgid "<i class=\"mec-sl-eye\"></i> %s"
6027
  msgstr ""
6028
 
6029
- #: app/features/profile/profile.php:96 app/libraries/main.php:1738
6030
- #: app/libraries/main.php:4543
6031
  msgid "Ticket"
6032
  msgstr "Ticket"
6033
 
@@ -6045,15 +5885,15 @@ msgstr "Keine Buchungen gefunden"
6045
  msgid "Please enter at least 3 characters and try again"
6046
  msgstr ""
6047
 
6048
- #: app/features/search_bar/search_bar.php:26
6049
  msgid "Please enter at least 3 characters"
6050
  msgstr ""
6051
 
6052
- #: app/features/search_bar/search_bar.php:28
6053
  msgid "Search results will show here"
6054
  msgstr ""
6055
 
6056
- #: app/features/search_bar/search_bar.php:39
6057
  #, fuzzy
6058
  #| msgid "Search %s"
6059
  msgid "Search"
@@ -6066,7 +5906,7 @@ msgstr ""
6066
  #: app/features/search_bar/search_result.php:11
6067
  #: app/libraries/notifications.php:598 app/libraries/render.php:437
6068
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
6069
- #: app/skins/single.php:159 app/skins/single.php:707
6070
  #: app/skins/single/default.php:86 app/skins/single/default.php:298
6071
  #: app/skins/single/m1.php:34 app/skins/single/modern.php:184
6072
  msgid "All of the day"
@@ -6173,8 +6013,8 @@ msgid "day"
6173
  msgstr "Tag"
6174
 
6175
  #: app/libraries/factory.php:334 app/modules/countdown/details.php:123
6176
- #: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:132
6177
- #: app/skins/countdown/tpl.php:176 app/skins/countdown/tpl.php:225
6178
  msgid "days"
6179
  msgstr "Tage"
6180
 
@@ -6183,8 +6023,8 @@ msgid "hour"
6183
  msgstr "Stunde"
6184
 
6185
  #: app/libraries/factory.php:336 app/modules/countdown/details.php:130
6186
- #: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:138
6187
- #: app/skins/countdown/tpl.php:182 app/skins/countdown/tpl.php:231
6188
  msgid "hours"
6189
  msgstr "Stunden"
6190
 
@@ -6193,8 +6033,8 @@ msgid "minute"
6193
  msgstr "Minute"
6194
 
6195
  #: app/libraries/factory.php:338 app/modules/countdown/details.php:137
6196
- #: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:144
6197
- #: app/skins/countdown/tpl.php:188 app/skins/countdown/tpl.php:237
6198
  msgid "minutes"
6199
  msgstr "Minuten"
6200
 
@@ -6203,8 +6043,8 @@ msgid "second"
6203
  msgstr "Sekunde"
6204
 
6205
  #: app/libraries/factory.php:340 app/modules/countdown/details.php:144
6206
- #: app/skins/available_spot/tpl.php:159 app/skins/countdown/tpl.php:150
6207
- #: app/skins/countdown/tpl.php:194 app/skins/countdown/tpl.php:243
6208
  msgid "seconds"
6209
  msgstr "Sekunden"
6210
 
@@ -6222,38 +6062,38 @@ msgstr ""
6222
  "Eine Vorschau kann nicht angezeit werden, da es sich um einen geschützen "
6223
  "Beitrag handelt."
6224
 
6225
- #: app/libraries/main.php:330 app/libraries/main.php:1250
6226
- #: app/libraries/main.php:1275
6227
  msgid "Grid View"
6228
  msgstr "Rasterdarstellung"
6229
 
6230
- #: app/libraries/main.php:331 app/libraries/main.php:1251
6231
- #: app/libraries/main.php:1276
6232
  msgid "Agenda View"
6233
  msgstr "Agendaansicht"
6234
 
6235
- #: app/libraries/main.php:332 app/libraries/main.php:1242
6236
- #: app/libraries/main.php:1267
6237
  msgid "Full Calendar"
6238
  msgstr "Ganzer Kalender"
6239
 
6240
- #: app/libraries/main.php:334 app/libraries/main.php:1244
6241
- #: app/libraries/main.php:1269
6242
  msgid "Calendar/Monthly View"
6243
  msgstr "Kalender-/Monatsansicht"
6244
 
6245
- #: app/libraries/main.php:337 app/libraries/main.php:1247
6246
- #: app/libraries/main.php:1272
6247
  msgid "Timetable View"
6248
  msgstr "Stundenplan"
6249
 
6250
- #: app/libraries/main.php:338 app/libraries/main.php:1248
6251
- #: app/libraries/main.php:1273
6252
  msgid "Masonry View"
6253
  msgstr "Kachel Ansicht"
6254
 
6255
- #: app/libraries/main.php:339 app/libraries/main.php:1252
6256
- #: app/libraries/main.php:1277
6257
  msgid "Map View"
6258
  msgstr "Kartenansicht"
6259
 
@@ -6277,39 +6117,39 @@ msgstr "Karussellansicht"
6277
  msgid "Slider View"
6278
  msgstr "Slideransicht"
6279
 
6280
- #: app/libraries/main.php:382 app/libraries/main.php:4523
6281
  msgid "SU"
6282
  msgstr "SO"
6283
 
6284
- #: app/libraries/main.php:383 app/libraries/main.php:4524
6285
  msgid "MO"
6286
  msgstr "MO"
6287
 
6288
- #: app/libraries/main.php:384 app/libraries/main.php:4525
6289
  msgid "TU"
6290
  msgstr "DI"
6291
 
6292
- #: app/libraries/main.php:385 app/libraries/main.php:4526
6293
  msgid "WE"
6294
  msgstr "MI"
6295
 
6296
- #: app/libraries/main.php:386 app/libraries/main.php:4527
6297
  msgid "TH"
6298
  msgstr "DO"
6299
 
6300
- #: app/libraries/main.php:387 app/libraries/main.php:4528
6301
  msgid "FR"
6302
  msgstr "FR"
6303
 
6304
- #: app/libraries/main.php:388 app/libraries/main.php:4529
6305
  msgid "SA"
6306
  msgstr "SA"
6307
 
6308
- #: app/libraries/main.php:543
6309
  msgid "New Addons For MEC! Now Customize MEC in Elementor"
6310
  msgstr ""
6311
 
6312
- #: app/libraries/main.php:550
6313
  msgid ""
6314
  "The time has come at last, and the new practical add-ons for MEC have been "
6315
  "released. This is a revolution in the world of Event Calendars. We have "
@@ -6317,315 +6157,315 @@ msgid ""
6317
  "below:"
6318
  msgstr ""
6319
 
6320
- #: app/libraries/main.php:552
6321
  msgid ""
6322
  "<strong>WooCommerce Integration:</strong> You can now purchase ticket (as "
6323
  "products) and Woo products at the same time."
6324
  msgstr ""
6325
 
6326
- #: app/libraries/main.php:553
6327
  msgid ""
6328
  "<strong>Elementor Single Builder:</strong> It enables you to create "
6329
  "shortcodes in Elementor Live Editor."
6330
  msgstr ""
6331
 
6332
- #: app/libraries/main.php:554
6333
  msgid ""
6334
  "<strong>Elementor Form Builder:</strong> It allows you to use many different "
6335
  "type of fields and rearrange them by drag and drop and modify their styles."
6336
  msgstr ""
6337
 
6338
- #: app/libraries/main.php:555
6339
  msgid ""
6340
  "<strong>Elementor Shortcode Builder:</strong> Edit single event page using "
6341
  "Elementor. Manage the position of all elements in the Single page and in "
6342
  "desktops, mobiles and tablets as well."
6343
  msgstr ""
6344
 
6345
- #: app/libraries/main.php:1104
6346
  msgid "Events at this location"
6347
  msgstr "Veranstaltungen an diesem Ort "
6348
 
6349
- #: app/libraries/main.php:1104
6350
  msgid "Event at this location"
6351
  msgstr "Veranstaltung an diesem Ort "
6352
 
6353
- #: app/libraries/main.php:1146
6354
  msgid "Facebook"
6355
  msgstr "Facebook"
6356
 
6357
- #: app/libraries/main.php:1147
6358
  msgid "Twitter"
6359
  msgstr "Twitter"
6360
 
6361
- #: app/libraries/main.php:1148 app/libraries/main.php:1198
6362
  msgid "Linkedin"
6363
  msgstr "Linkedin"
6364
 
6365
- #: app/libraries/main.php:1149 app/libraries/main.php:1231
6366
  msgid "VK"
6367
  msgstr ""
6368
 
6369
- #: app/libraries/main.php:1168
6370
  msgid "Share on Facebook"
6371
  msgstr "Teilen auf Facebook"
6372
 
6373
- #: app/libraries/main.php:1183
6374
  msgid "Tweet"
6375
  msgstr "Tweet"
6376
 
6377
- #: app/libraries/main.php:1253
6378
  #, fuzzy
6379
  #| msgid "Shortcode"
6380
  msgid "Custom Shortcode"
6381
  msgstr "Shortcode"
6382
 
6383
- #: app/libraries/main.php:1612
6384
  msgid "Your booking successfully verified."
6385
  msgstr "Ihre Buchung wurde erfolgreich verifiziert."
6386
 
6387
- #: app/libraries/main.php:1613
6388
  msgid "Your booking cannot verify!"
6389
  msgstr "Ihre Buchung kann nicht verifiziert werden!"
6390
 
6391
- #: app/libraries/main.php:1625
6392
  msgid "Your booking successfully canceled."
6393
  msgstr "Ihre Buchung wurde erfolgreich storniert."
6394
 
6395
- #: app/libraries/main.php:1626
6396
  msgid "Your booking cannot be canceled."
6397
  msgstr "Ihre Buchung kann nicht storniert werden."
6398
 
6399
- #: app/libraries/main.php:1630
6400
  msgid "You canceled the payment successfully."
6401
  msgstr "Sie haben die Zahlung erfolgreich storniert."
6402
 
6403
- #: app/libraries/main.php:1634
6404
  msgid "You returned from payment gateway successfully."
6405
  msgstr "Sie sind vom Bezahlungs-Gateway erfolgreich zurückgekehrt."
6406
 
6407
- #: app/libraries/main.php:1650
6408
  #, fuzzy
6409
  #| msgid "Cannot find the booking!"
6410
  msgid "Cannot find the invoice!"
6411
  msgstr "Kann die Buchung nicht finden!"
6412
 
6413
- #: app/libraries/main.php:1650
6414
  #, fuzzy
6415
  #| msgid "Booking is invalid."
6416
  msgid "Invoice is invalid."
6417
  msgstr "Buchung ist ungültig."
6418
 
6419
- #: app/libraries/main.php:1665
6420
  msgid "Cannot find the booking!"
6421
  msgstr "Kann die Buchung nicht finden!"
6422
 
6423
- #: app/libraries/main.php:1665
6424
  msgid "Booking is invalid."
6425
  msgstr "Buchung ist ungültig."
6426
 
6427
- #: app/libraries/main.php:1694
6428
  #, php-format
6429
  msgid "%s Invoice"
6430
  msgstr "% s Rechnung"
6431
 
6432
- #: app/libraries/main.php:1715
6433
  msgid "Transaction ID"
6434
  msgstr "Transaktions-ID"
6435
 
6436
- #: app/libraries/main.php:1768
6437
  msgid "Billing"
6438
  msgstr "Abrechnung"
6439
 
6440
- #: app/libraries/main.php:1779
6441
  msgid "Total"
6442
  msgstr "Gesamt"
6443
 
6444
- #: app/libraries/main.php:1812
6445
  msgid "Security nonce is not valid."
6446
  msgstr "Sicherheits-Nonce ist ungültig."
6447
 
6448
- #: app/libraries/main.php:1812 app/libraries/main.php:1844
6449
  msgid "iCal export stopped!"
6450
  msgstr "iCal Export wurde unterbrochen!"
6451
 
6452
- #: app/libraries/main.php:1844
6453
  #, fuzzy
6454
  #| msgid "Request is invalid!"
6455
  msgid "Request is not valid."
6456
  msgstr "Die Anfrage ist ungültig!"
6457
 
6458
- #: app/libraries/main.php:2171 app/libraries/main.php:2201
6459
- #: app/libraries/main.php:2230 app/libraries/main.php:2260
6460
- #: app/libraries/main.php:2289 app/libraries/main.php:2318
6461
- #: app/libraries/main.php:2347 app/libraries/main.php:2376
6462
- #: app/libraries/main.php:2405 app/libraries/main.php:2429
6463
- #: app/libraries/main.php:2473 app/libraries/main.php:2517
6464
- #: app/libraries/main.php:2564 app/libraries/main.php:2611
6465
  msgid "Sort"
6466
  msgstr "Sortieren"
6467
 
6468
- #: app/libraries/main.php:2177 app/libraries/main.php:2207
6469
- #: app/libraries/main.php:2236 app/libraries/main.php:2266
6470
- #: app/libraries/main.php:2295 app/libraries/main.php:2324
6471
- #: app/libraries/main.php:2353 app/libraries/main.php:2382
6472
- #: app/libraries/main.php:2435 app/libraries/main.php:2479
6473
- #: app/libraries/main.php:2523 app/libraries/main.php:2570
6474
  msgid "Required Field"
6475
  msgstr "Pflichtfeld"
6476
 
6477
- #: app/libraries/main.php:2183 app/libraries/main.php:2213
6478
- #: app/libraries/main.php:2242 app/libraries/main.php:2272
6479
- #: app/libraries/main.php:2301 app/libraries/main.php:2330
6480
- #: app/libraries/main.php:2359 app/libraries/main.php:2388
6481
- #: app/libraries/main.php:2441 app/libraries/main.php:2485
6482
- #: app/libraries/main.php:2529 app/libraries/main.php:2576
6483
  msgid "Insert a label for this field"
6484
  msgstr "Geben Sie eine Bezeichnung (Label) für dieses Feld ein."
6485
 
6486
- #: app/libraries/main.php:2411
6487
  msgid "HTML and shortcode are allowed."
6488
  msgstr "HTML und shortcodes sind erlaubt."
6489
 
6490
- #: app/libraries/main.php:2454 app/libraries/main.php:2498
6491
- #: app/libraries/main.php:2542
6492
  msgid "Option"
6493
  msgstr "Option"
6494
 
6495
- #: app/libraries/main.php:2576
6496
  #, php-format
6497
  msgid "Instead of %s, the page title with a link will be show."
6498
  msgstr "Anstelle von %s, wird der Seitentitel mit einem Link gezeigt"
6499
 
6500
- #: app/libraries/main.php:2578
6501
  msgid "Agreement Page"
6502
  msgstr "Zustimmungsseite"
6503
 
6504
- #: app/libraries/main.php:2589
6505
  msgid "Checked by default"
6506
  msgstr ""
6507
 
6508
- #: app/libraries/main.php:2590
6509
  msgid "Unchecked by default"
6510
  msgstr ""
6511
 
6512
- #: app/libraries/main.php:2613
6513
  msgid "Insert a label for this option"
6514
  msgstr "Ein neues Label für diese Option einfügen"
6515
 
6516
- #: app/libraries/main.php:2628
6517
  msgid "Free"
6518
  msgstr "kostenfrei"
6519
 
6520
- #: app/libraries/main.php:3194 app/libraries/main.php:4770
6521
  #, fuzzy
6522
  #| msgid "M.E. Calendar"
6523
  msgid "M.E. Calender"
6524
  msgstr "M.E. Calender"
6525
 
6526
- #: app/libraries/main.php:3349
6527
  #, php-format
6528
  msgid "Copy of %s"
6529
  msgstr "Kopie von %s"
6530
 
6531
- #: app/libraries/main.php:4022
6532
  msgid "Booked an event."
6533
  msgstr "Eine Veranstaltung wurde gebucht."
6534
 
6535
- #: app/libraries/main.php:4063
6536
  #, php-format
6537
  msgid "%s booked %s event."
6538
  msgstr "%s gebuchtes %s Event"
6539
 
6540
- #: app/libraries/main.php:4506
6541
  msgid "Taxonomies"
6542
  msgstr "Klassifizierung "
6543
 
6544
- #: app/libraries/main.php:4508
6545
  msgid "Category Plural Label"
6546
  msgstr "Kategorien"
6547
 
6548
- #: app/libraries/main.php:4509
6549
  msgid "Category Singular Label"
6550
  msgstr "Kategorie"
6551
 
6552
- #: app/libraries/main.php:4510
6553
  msgid "Label Plural Label"
6554
  msgstr "Labels"
6555
 
6556
- #: app/libraries/main.php:4511
6557
  msgid "Label Singular Label"
6558
  msgstr "Label"
6559
 
6560
- #: app/libraries/main.php:4511
6561
  msgid "label"
6562
  msgstr "label"
6563
 
6564
- #: app/libraries/main.php:4512
6565
  msgid "Location Plural Label"
6566
  msgstr "Veranstaltungsorte"
6567
 
6568
- #: app/libraries/main.php:4513
6569
  msgid "Location Singular Label"
6570
  msgstr "Veranstaltungsort"
6571
 
6572
- #: app/libraries/main.php:4514
6573
  msgid "Organizer Plural Label"
6574
  msgstr "Veranstalter"
6575
 
6576
- #: app/libraries/main.php:4515
6577
  msgid "Organizer Singular Label"
6578
  msgstr "Veranstalter"
6579
 
6580
- #: app/libraries/main.php:4516
6581
  #, fuzzy
6582
  #| msgid "Label Plural Label"
6583
  msgid "Speaker Plural Label"
6584
  msgstr "Labels"
6585
 
6586
- #: app/libraries/main.php:4517
6587
  #, fuzzy
6588
  #| msgid "Label Singular Label"
6589
  msgid "Speaker Singular Label"
6590
  msgstr "Label"
6591
 
6592
- #: app/libraries/main.php:4523
6593
  msgid "Sunday abbreviation"
6594
  msgstr "Sonntag Abkürzung"
6595
 
6596
- #: app/libraries/main.php:4524
6597
  msgid "Monday abbreviation"
6598
  msgstr "Montag Abkürzung"
6599
 
6600
- #: app/libraries/main.php:4525
6601
  msgid "Tuesday abbreviation"
6602
  msgstr "Dienstag Abkürzung"
6603
 
6604
- #: app/libraries/main.php:4526
6605
  msgid "Wednesday abbreviation"
6606
  msgstr "Mittwoch Abkürzung"
6607
 
6608
- #: app/libraries/main.php:4527
6609
  msgid "Thursday abbreviation"
6610
  msgstr "Donnerstag Abkürzung"
6611
 
6612
- #: app/libraries/main.php:4528
6613
  msgid "Friday abbreviation"
6614
  msgstr "Freitag Abkürzung"
6615
 
6616
- #: app/libraries/main.php:4529
6617
  msgid "Saturday abbreviation"
6618
  msgstr "Samstag Abkürzung "
6619
 
6620
- #: app/libraries/main.php:4533
6621
  msgid "Others"
6622
  msgstr "Andere"
6623
 
6624
- #: app/libraries/main.php:4535
6625
  msgid "Booking Success Message"
6626
  msgstr "Buchung erfolgreich Mitteilung"
6627
 
6628
- #: app/libraries/main.php:4535
6629
  msgid ""
6630
  "Thanks for your booking. Your tickets booked, booking verification might be "
6631
  "needed, please check your email."
@@ -6633,95 +6473,95 @@ msgstr ""
6633
  "Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
6634
  "Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
6635
 
6636
- #: app/libraries/main.php:4536 app/widgets/single.php:131
6637
  msgid "Register Button"
6638
  msgstr "Register Button"
6639
 
6640
- #: app/libraries/main.php:4536 app/skins/available_spot/tpl.php:205
6641
- #: app/skins/carousel/render.php:150 app/skins/carousel/render.php:186
6642
- #: app/skins/grid/render.php:116 app/skins/grid/render.php:162
6643
- #: app/skins/grid/render.php:203 app/skins/grid/render.php:231
6644
- #: app/skins/list/render.php:102 app/skins/list/render.php:190
6645
- #: app/skins/masonry/render.php:175 app/skins/single.php:725
6646
- #: app/skins/single.php:728 app/skins/single/default.php:233
6647
  #: app/skins/single/default.php:235 app/skins/single/default.php:445
6648
  #: app/skins/single/default.php:447 app/skins/single/m1.php:126
6649
  #: app/skins/single/m1.php:128 app/skins/single/m2.php:58
6650
  #: app/skins/single/m2.php:60 app/skins/single/modern.php:68
6651
- #: app/skins/single/modern.php:70 app/skins/slider/render.php:109
6652
- #: app/skins/slider/render.php:154 app/skins/slider/render.php:198
6653
- #: app/skins/slider/render.php:243 app/skins/slider/render.php:299
6654
  msgid "REGISTER"
6655
  msgstr "ANMELDEN"
6656
 
6657
- #: app/libraries/main.php:4537
6658
  msgid "View Detail Button"
6659
  msgstr "Ansicht Detail Button"
6660
 
6661
- #: app/libraries/main.php:4537 app/skins/carousel/render.php:150
6662
- #: app/skins/carousel/render.php:186 app/skins/grid/render.php:116
6663
- #: app/skins/grid/render.php:162 app/skins/grid/render.php:203
6664
- #: app/skins/grid/render.php:231 app/skins/list/render.php:102
6665
- #: app/skins/list/render.php:190 app/skins/masonry/render.php:175
6666
- #: app/skins/slider/render.php:109 app/skins/slider/render.php:154
6667
- #: app/skins/slider/render.php:198 app/skins/slider/render.php:243
6668
- #: app/skins/slider/render.php:299
6669
  msgid "View Detail"
6670
  msgstr "Details "
6671
 
6672
- #: app/libraries/main.php:4538
6673
  msgid "Event Detail Button"
6674
  msgstr "Event Detail Button"
6675
 
6676
- #: app/libraries/main.php:4538 app/skins/countdown/tpl.php:218
6677
  msgid "Event Detail"
6678
  msgstr "Veranstaltungsdetails"
6679
 
6680
- #: app/libraries/main.php:4540
6681
  msgid "More Info Link"
6682
  msgstr "Link Mehr Informationen"
6683
 
6684
- #: app/libraries/main.php:4543
6685
  msgid "Ticket (Singular)"
6686
  msgstr "Ticket"
6687
 
6688
- #: app/libraries/main.php:4544
6689
  msgid "Tickets (Plural)"
6690
  msgstr "Tickets"
6691
 
6692
- #: app/libraries/main.php:4630
6693
  msgid "EventON"
6694
  msgstr "EventON"
6695
 
6696
- #: app/libraries/main.php:4631
6697
  msgid "The Events Calendar"
6698
  msgstr "The Events Calendar"
6699
 
6700
- #: app/libraries/main.php:4632
6701
  msgid "Events Schedule WP Plugin"
6702
  msgstr "Event Zeitplan WP-Plugin"
6703
 
6704
- #: app/libraries/main.php:4633
6705
  msgid "Calendarize It"
6706
  msgstr ""
6707
 
6708
- #: app/libraries/main.php:4707 app/libraries/main.php:4727
6709
  msgid "Confirmed"
6710
  msgstr "Bestätigt"
6711
 
6712
- #: app/libraries/main.php:4708 app/libraries/main.php:4735
6713
  msgid "Rejected"
6714
  msgstr "Abgelehnt"
6715
 
6716
- #: app/libraries/main.php:4709 app/libraries/main.php:4731
6717
  msgid "Pending"
6718
  msgstr "Ausstehend"
6719
 
6720
- #: app/libraries/main.php:4757
6721
  msgid "Waiting"
6722
  msgstr "in Bearbeitung"
6723
 
6724
- #: app/libraries/main.php:4962 app/libraries/render.php:367
6725
  msgid "Skin controller does not exist."
6726
  msgstr "Skin contoller existiert nicht."
6727
 
@@ -6812,8 +6652,8 @@ msgstr ""
6812
  "Füllen Sie die Informationen anderer Teilnehmer wie das erste Formular aus."
6813
 
6814
  #: app/modules/booking/steps/form.php:179
6815
- #: app/modules/booking/steps/tickets.php:55 app/skins/countdown/tpl.php:119
6816
- #: app/skins/countdown/tpl.php:163 app/skins/countdown/tpl.php:208
6817
  msgid "Next"
6818
  msgstr "Weiter"
6819
 
@@ -6853,7 +6693,7 @@ msgstr "Adresse von..."
6853
  msgid "Get Directions"
6854
  msgstr "Wegbeschreibung"
6855
 
6856
- #: app/modules/links/details.php:17 app/skins/single.php:425
6857
  msgid "Share this event"
6858
  msgstr "Diese Veranstaltung teilen"
6859
 
@@ -6880,7 +6720,7 @@ msgstr "Nächstes Event"
6880
  msgid "Go to occurrence page"
6881
  msgstr "Zum Event"
6882
 
6883
- #: app/modules/next-event/details.php:95 app/skins/single.php:701
6884
  #: app/skins/single/default.php:80 app/skins/single/default.php:292
6885
  #: app/skins/single/m1.php:28 app/skins/single/modern.php:178
6886
  msgid "Time"
@@ -6946,45 +6786,45 @@ msgstr "Keine Veranstaltung gefunden"
6946
 
6947
  #: app/skins/agenda/tpl.php:74 app/skins/grid/tpl.php:64
6948
  #: app/skins/list/tpl.php:69 app/skins/masonry/tpl.php:70
6949
- #: app/skins/yearly_view/render.php:121
6950
  msgid "Load More"
6951
  msgstr "Weitere anzeigen"
6952
 
6953
- #: app/skins/available_spot/tpl.php:140
6954
  msgid "Available Spot(s):"
6955
  msgstr "Verfügbare Spot (s):"
6956
 
6957
- #: app/skins/carousel/render.php:207 app/skins/countdown/tpl.php:157
6958
- #: app/skins/countdown/tpl.php:201 app/skins/cover/tpl.php:101
6959
- #: app/skins/list/render.php:120
6960
  msgid "EVENT DETAIL"
6961
  msgstr "VERANSTALTUNGSDETAILS"
6962
 
6963
- #: app/skins/carousel/render.php:219
6964
  #, fuzzy
6965
  #| msgid "All Events"
6966
  msgid "View All Events"
6967
  msgstr "Alle Veranstaltungen"
6968
 
6969
- #: app/skins/countdown/tpl.php:119 app/skins/countdown/tpl.php:163
6970
- #: app/skins/countdown/tpl.php:208
6971
  #, php-format
6972
  msgid "%s Upcoming Event"
6973
  msgstr "%s Kommendes Event"
6974
 
6975
- #: app/skins/cover/tpl.php:83
6976
  msgid "featured event"
6977
  msgstr "Ausgewählte Veranstaltung"
6978
 
6979
- #: app/skins/daily_view/render.php:101 app/skins/monthly_view/calendar.php:167
6980
- #: app/skins/monthly_view/calendar_clean.php:167
6981
- #: app/skins/weekly_view/render.php:110
6982
  #, fuzzy
6983
  #| msgid "Sold out!"
6984
  msgid "Sold Out"
6985
  msgstr "Ausverkauft!"
6986
 
6987
- #: app/skins/daily_view/render.php:107
6988
  msgid "No event"
6989
  msgstr "Keine Veranstaltung"
6990
 
@@ -6997,44 +6837,44 @@ msgid "All"
6997
  msgstr "Alle"
6998
 
6999
  #: app/skins/monthly_view/calendar.php:68
7000
- #: app/skins/monthly_view/calendar.php:179
7001
  #: app/skins/monthly_view/calendar_clean.php:68
7002
- #: app/skins/monthly_view/calendar_clean.php:179
7003
  #, php-format
7004
  msgid "Events for %s"
7005
  msgstr "Veranstaltungen für %s"
7006
 
7007
- #: app/skins/monthly_view/calendar.php:181
7008
- #: app/skins/monthly_view/calendar_clean.php:181
7009
- #: app/skins/timetable/render.php:110 app/skins/weekly_view/render.php:119
7010
  msgid "No Events"
7011
  msgstr "Keine Veranstaltungen"
7012
 
7013
- #: app/skins/single.php:204
7014
  msgid "Home"
7015
  msgstr ""
7016
 
7017
- #: app/skins/single.php:508 app/skins/single/default.php:43
7018
  #: app/skins/single/m1.php:247 app/skins/single/m2.php:174
7019
  #: app/skins/single/modern.php:256
7020
  msgid "Sold out!"
7021
  msgstr "Ausverkauft!"
7022
 
7023
- #: app/skins/single.php:773 app/skins/single.php:828
7024
  #: app/skins/single/default.php:205 app/skins/single/default.php:417
7025
  #: app/skins/single/m1.php:100 app/skins/single/m2.php:32
7026
  #: app/skins/single/modern.php:41
7027
  msgid "Phone"
7028
  msgstr "Phone"
7029
 
7030
- #: app/skins/single.php:787 app/skins/single.php:842
7031
  #: app/skins/single/default.php:219 app/skins/single/default.php:431
7032
  #: app/skins/single/m1.php:114 app/skins/single/m2.php:46
7033
  #: app/skins/single/modern.php:55
7034
  msgid "Website"
7035
  msgstr "Website"
7036
 
7037
- #: app/skins/single.php:912
7038
  #, fuzzy
7039
  #| msgid "No Search Options"
7040
  msgid "Speakers:"
@@ -7054,15 +6894,21 @@ msgstr "Woche %s"
7054
  msgid "Show events based on created shortcodes."
7055
  msgstr "Veranstaltungen auf Basis der erstellten shortcodes anzeigen"
7056
 
7057
- #: app/widgets/MEC.php:78
7058
  msgid "Title:"
7059
  msgstr "Titel:"
7060
 
7061
- #: app/widgets/MEC.php:85
7062
  msgid "Shortcode:"
7063
  msgstr "Shortcode:"
7064
 
7065
- #: app/widgets/MEC.php:95
 
 
 
 
 
 
7066
  msgid "Create some calendars first."
7067
  msgstr "Erstellen Sie zuerst einige Kalender."
7068
 
2
  msgstr ""
3
  "Project-Id-Version: ME Calender\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-08-21 15:08+0430\n"
6
+ "PO-Revision-Date: 2019-08-21 15:08+0430\n"
7
  "Last-Translator: Jogon <koenig@kafinanz.de>\n"
8
  "Language-Team: German\n"
9
  "Language: de_DE\n"
23
  msgid "Modern Events Calendar"
24
  msgstr "Moderner Event Kalender "
25
 
26
+ #: app/addons/KC.php:70 app/addons/VC.php:64 app/features/mec/styling.php:129
27
  msgid "Content"
28
  msgstr "Inhalt"
29
 
30
+ #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:367
31
+ #: app/features/mec.php:398 app/features/mec.php:424
32
  msgid "Shortcode"
33
  msgstr "Shortcode"
34
 
68
  msgstr "Alles Auswählen"
69
 
70
  #: app/features/colors.php:50 app/features/fes/form.php:794
71
+ #: app/features/mec/settings.php:597
72
  msgid "Event Color"
73
  msgstr "Farbe der Veranstaltung"
74
 
75
+ #: app/features/contextual.php:55 app/features/mec.php:347
76
+ #: app/features/mec/dashboard.php:108 app/features/mec/notifications.php:23
 
 
 
 
 
77
  #: app/features/mec/support-page.php:168 app/features/mec/support.php:20
78
+ #: app/libraries/main.php:585
79
  msgid "Settings"
80
  msgstr "Einstellungen"
81
 
82
+ #: app/features/contextual.php:62 app/features/events.php:2279
83
+ #: app/features/mec/notifications.php:112 app/features/mec/regform.php:61
84
+ #: app/features/mec/support.php:29 app/libraries/main.php:735
 
 
 
 
 
85
  msgid "Booking Form"
86
  msgstr "Buchungsformular"
87
 
99
  "<iframe width=\"600\" height=\"300\" src=\"https://www.youtube.com/embed/"
100
  "YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
101
 
102
+ #: app/features/contextual.php:70 app/features/mec/gateways.php:24
103
+ #: app/features/mec/notifications.php:119 app/features/mec/support.php:36
104
+ #: app/libraries/main.php:742
 
 
 
 
105
  msgid "Payment Gateways"
106
  msgstr "Zahlungs-Gateways"
107
 
115
  "height=\"300\" src=\"https://www.youtube.com/embed/Hpg4chWlxoQ\" frameborder="
116
  "\"0\" allowfullscreen></iframe>"
117
 
118
+ #: app/features/contextual.php:77 app/features/mec/notifications.php:131
119
+ #: app/features/mec/support.php:45 app/libraries/main.php:752
 
 
 
 
 
120
  msgid "Notifications"
121
  msgstr "Benachrichtigungen"
122
 
195
  "height=\"420\" src=\"https://www.youtube.com/embed/dqgt1b8X8hs\" frameborder="
196
  "\"0\" allowfullscreen></iframe>"
197
 
198
+ #: app/features/contextual.php:117 app/features/mec/notifications.php:27
199
+ #: app/features/mec/settings.php:49 app/libraries/main.php:528
 
 
 
 
 
200
  msgid "General Options"
201
  msgstr "Allgemeine Einstellungen"
202
 
203
+ #: app/features/contextual.php:139 app/features/mec/notifications.php:29
204
+ #: app/features/mec/settings.php:381 app/libraries/main.php:530
 
 
 
 
 
205
  msgid "Slugs/Permalinks"
206
  msgstr "Slug/Permalinks"
207
 
209
  msgid "Event Details/Single Event Page"
210
  msgstr "Event Details / Einzelveranstaltungsseite"
211
 
212
+ #: app/features/contextual.php:166 app/features/mec/notifications.php:30
213
+ #: app/features/mec/settings.php:413 app/libraries/main.php:531
 
 
 
 
 
214
  msgid "Currency Options"
215
  msgstr "Währungseinstellungen"
216
 
217
+ #: app/features/contextual.php:182 app/features/mec/modules.php:64
218
+ #: app/features/mec/modules.php:82 app/features/mec/notifications.php:90
219
+ #: app/libraries/main.php:558
 
 
 
 
220
  msgid "Google Maps Options"
221
  msgstr "Google Maps Einstellungen"
222
 
223
+ #: app/features/contextual.php:244 app/features/mec/notifications.php:31
224
+ #: app/features/mec/settings.php:470 app/libraries/main.php:532
 
 
 
 
 
225
  msgid "Google Recaptcha Options"
226
  msgstr "Google Recaptcha Einstellungen"
227
 
228
+ #: app/features/contextual.php:258 app/features/mec/notifications.php:51
229
+ #: app/features/mec/single.php:130 app/libraries/main.php:542
 
 
 
 
 
230
  msgid "Countdown Options"
231
  msgstr "Countdown Einstellungsoptionen"
232
 
233
+ #: app/features/contextual.php:268 app/features/mec/modules.php:260
234
+ #: app/features/mec/notifications.php:98 app/libraries/main.php:563
 
 
 
 
 
235
  msgid "Social Networks"
236
  msgstr "Soziale Netzwerke"
237
 
239
  msgid "Next Event Module"
240
  msgstr "Nächstes Veranstaltung Modul"
241
 
242
+ #: app/features/contextual.php:286 app/features/mec/notifications.php:32
243
+ #: app/features/mec/settings.php:506 app/libraries/main.php:533
 
 
 
 
 
244
  msgid "Frontend Event Submission"
245
  msgstr "Erstellung von Veranstaltungen im Frontend"
246
 
247
+ #: app/features/contextual.php:298 app/features/events.php:1130
248
+ #: app/features/mec/notifications.php:52 app/libraries/main.php:543
 
 
 
 
 
249
  msgid "Exceptional Days"
250
  msgstr "Herausgenommene Tage "
251
 
252
+ #: app/features/contextual.php:308 app/features/events.php:296
253
+ #: app/features/mec/booking.php:40 app/features/mec/notifications.php:65
254
+ #: app/features/mec/notifications.php:69 app/features/mec/notifications.php:138
255
+ #: app/features/mec/notifications.php:227 app/libraries/main.php:550
256
+ #: app/libraries/main.php:569 app/libraries/main.php:650
 
 
 
 
 
 
 
 
 
 
 
 
 
 
257
  msgid "Booking"
258
  msgstr "Buchung / Reservierung"
259
 
260
+ #: app/features/contextual.php:318 app/features/mec/booking.php:175
261
+ #: app/features/mec/notifications.php:71 app/libraries/main.php:551
 
 
 
 
 
262
  msgid "Coupons"
263
  msgstr "Gutscheine"
264
 
265
+ #: app/features/contextual.php:326 app/features/mec/modules.php:321
266
+ #: app/features/mec/notifications.php:101 app/libraries/main.php:565
 
 
 
 
 
267
  msgid "BuddyPress Integration"
268
  msgstr "Buddy Press Integration"
269
 
270
+ #: app/features/contextual.php:334 app/features/mec/notifications.php:36
271
+ #: app/features/mec/settings.php:763 app/libraries/main.php:536
 
 
 
 
 
272
  msgid "Mailchimp Integration"
273
  msgstr "Mailchimp Integration"
274
 
276
  msgid "MEC Activation"
277
  msgstr "MEC Aktivierung"
278
 
279
+ #: app/features/events.php:148 app/features/ix/export.php:34
280
  #: app/features/mec/dashboard.php:202 app/skins/daily_view/tpl.php:79
281
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
282
  msgid "Events"
283
  msgstr "Veranstaltungen"
284
 
285
+ #: app/features/events.php:149
286
  #: app/features/mec/meta_boxes/display_options.php:887
287
  #: app/features/mec/meta_boxes/display_options.php:943
288
  #: app/features/mec/meta_boxes/display_options.php:978
291
  msgid "Event"
292
  msgstr "Veranstaltung"
293
 
294
+ #: app/features/events.php:150 app/features/mec.php:333
295
  msgid "Add Event"
296
  msgstr "Veranstaltung hinzufügen"
297
 
298
+ #: app/features/events.php:151 app/features/mec/dashboard.php:107
299
  msgid "Add New Event"
300
  msgstr "Neue Veranstaltung hinzufügen"
301
 
302
+ #: app/features/events.php:152 app/features/ix.php:3122
303
+ #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:57
304
  msgid "No events found!"
305
  msgstr "Keine Veranstaltungen gefunden!"
306
 
307
+ #: app/features/events.php:153
308
  msgid "All Events"
309
  msgstr "Alle Veranstaltungen"
310
 
311
+ #: app/features/events.php:154
312
  msgid "Edit Event"
313
  msgstr ""
314
 
315
+ #: app/features/events.php:155
316
  msgid "View Event"
317
  msgstr "Veranstaltung ansehen"
318
 
319
+ #: app/features/events.php:156
320
  msgid "No events found in Trash!"
321
  msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
322
 
323
+ #: app/features/events.php:173 app/features/events.php:3012
324
  #: app/features/mec/meta_boxes/display_options.php:798
325
  #: app/features/mec/meta_boxes/search_form.php:31
326
  #: app/features/mec/meta_boxes/search_form.php:93
332
  #: app/features/mec/meta_boxes/search_form.php:453
333
  #: app/features/mec/meta_boxes/search_form.php:514
334
  #: app/features/mec/meta_boxes/search_form.php:575
335
+ #: app/features/mec/settings.php:716 app/features/mec/single.php:201
336
+ #: app/libraries/main.php:4852 app/libraries/skins.php:807
337
+ #: app/skins/single.php:531 app/skins/single/default.php:170
338
  #: app/skins/single/default.php:382 app/skins/single/m1.php:170
339
  #: app/skins/single/m2.php:102 app/skins/single/modern.php:110
340
  msgid "Category"
341
  msgstr "Kategorie"
342
 
343
+ #: app/features/events.php:174 app/features/events.php:2983
344
+ #: app/features/fes/form.php:745 app/features/mec.php:335
345
+ #: app/features/mec/meta_boxes/filter.php:70 app/libraries/main.php:4851
346
  msgid "Categories"
347
  msgstr "Kategorien"
348
 
349
+ #: app/features/events.php:184 app/features/labels.php:71
350
  #: app/features/locations.php:69 app/features/organizers.php:69
351
  #: app/features/speakers.php:70
352
  #, php-format
353
  msgid "All %s"
354
  msgstr "Alle %s"
355
 
356
+ #: app/features/events.php:185 app/features/labels.php:72
357
  #: app/features/locations.php:70 app/features/organizers.php:70
358
  #: app/features/speakers.php:71
359
  #, php-format
360
  msgid "Edit %s"
361
  msgstr "Bearbeiten %s"
362
 
363
+ #: app/features/events.php:186 app/features/labels.php:73
364
  #: app/features/locations.php:71 app/features/organizers.php:71
365
  #: app/features/speakers.php:72
366
  #, php-format
367
  msgid "View %s"
368
  msgstr "Ansicht %s"
369
 
370
+ #: app/features/events.php:187 app/features/labels.php:74
371
  #: app/features/locations.php:72 app/features/organizers.php:72
372
  #: app/features/speakers.php:73
373
  #, php-format
374
  msgid "Update %s"
375
  msgstr "Update %s"
376
 
377
+ #: app/features/events.php:188 app/features/labels.php:75
378
  #: app/features/locations.php:73 app/features/organizers.php:73
379
  #: app/features/speakers.php:74
380
  #, php-format
381
  msgid "Add New %s"
382
  msgstr "Neu hinzufügen%s"
383
 
384
+ #: app/features/events.php:189 app/features/labels.php:76
385
  #: app/features/locations.php:74 app/features/organizers.php:74
386
  #: app/features/speakers.php:75
387
  #, php-format
388
  msgid "New %s Name"
389
  msgstr "Neuer %s Name"
390
 
391
+ #: app/features/events.php:190 app/features/labels.php:77
392
  #: app/features/locations.php:75 app/features/organizers.php:75
393
  #: app/features/speakers.php:76
394
  #, php-format
395
  msgid "Popular %s"
396
  msgstr "Beliebt %s"
397
 
398
+ #: app/features/events.php:191 app/features/labels.php:78
399
  #: app/features/locations.php:76 app/features/organizers.php:76
400
  #: app/features/speakers.php:77
401
  #, php-format
402
  msgid "Search %s"
403
  msgstr "Suche %s"
404
 
405
+ #: app/features/events.php:216 app/features/events.php:237
406
  msgid "Category Icon"
407
  msgstr "Kategoriesymbol"
408
 
409
+ #: app/features/events.php:219 app/features/events.php:242
410
  msgid "Select icon"
411
  msgstr "Wählen Sie ein Symbol"
412
 
413
+ #: app/features/events.php:291
414
  msgid "Event Details"
415
  msgstr "Veranstaltungsdetails"
416
 
417
+ #: app/features/events.php:333 app/features/events.php:3205
418
+ #: app/features/events.php:3247 app/features/fes/form.php:706
419
+ #: app/features/ix.php:2743 app/features/ix.php:2784
420
+ #: app/features/mec/settings.php:573 app/libraries/main.php:4884
421
  #: app/widgets/single.php:103
422
  msgid "Event Cost"
423
  msgstr ""
424
  "Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
425
 
426
+ #: app/features/events.php:337 app/features/fes/form.php:709
427
+ #: app/libraries/main.php:4885 app/skins/single.php:554
428
  #: app/skins/single/default.php:104 app/skins/single/default.php:316
429
  #: app/skins/single/m1.php:49 app/skins/single/modern.php:199
430
  msgid "Cost"
431
  msgstr " Preis"
432
 
433
+ #: app/features/events.php:435
434
  msgid "Note for reviewer"
435
  msgstr "Zusätzliche Anmerkungen zum Event "
436
 
437
+ #: app/features/events.php:442
438
  msgid "Guest Data"
439
  msgstr "Gäste Daten"
440
 
441
+ #: app/features/events.php:443 app/features/events.php:2261
442
  #: app/features/fes/form.php:668 app/features/labels.php:178
443
  #: app/features/mec/regform.php:27 app/features/organizers.php:279
444
  #: app/features/profile/profile.php:90 app/libraries/notifications.php:736
446
  msgid "Name"
447
  msgstr "Name"
448
 
449
+ #: app/features/events.php:444 app/features/events.php:2272
450
+ #: app/features/events.php:2350 app/features/fes/form.php:664
451
+ #: app/features/mec/regform.php:39 app/features/mec/regform.php:113
452
  #: app/features/organizers.php:111 app/features/organizers.php:152
453
  #: app/features/profile/profile.php:93 app/features/speakers.php:124
454
+ #: app/features/speakers.php:184 app/libraries/main.php:1488
455
+ #: app/libraries/main.php:1554 app/libraries/main.php:2599
456
  #: app/libraries/notifications.php:737 app/modules/booking/steps/form.php:46
457
+ #: app/modules/booking/steps/form.php:84 app/skins/single.php:781
458
+ #: app/skins/single.php:836 app/skins/single/default.php:212
459
  #: app/skins/single/default.php:424 app/skins/single/m1.php:107
460
  #: app/skins/single/m2.php:39 app/skins/single/modern.php:48
461
  msgid "Email"
462
  msgstr "Email"
463
 
464
+ #: app/features/events.php:448 app/features/fes/form.php:232
465
  msgid "Date and Time"
466
  msgstr "Datum und Uhrzeit"
467
 
468
+ #: app/features/events.php:452 app/features/events.php:458
469
+ #: app/features/events.php:3015 app/features/events.php:3205
470
+ #: app/features/events.php:3247 app/features/fes/form.php:236
471
+ #: app/features/fes/form.php:240 app/features/ix.php:2743
472
+ #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:38
473
  #: app/features/mec/dashboard.php:346
474
  #: app/features/mec/meta_boxes/display_options.php:42
475
  #: app/features/mec/meta_boxes/display_options.php:169
487
  msgid "Start Date"
488
  msgstr "Start Datum"
489
 
490
+ #: app/features/events.php:530 app/features/events.php:622
491
+ #: app/features/events.php:1615 app/features/events.php:1657
492
+ #: app/features/events.php:1824 app/features/events.php:1848
493
  #: app/features/fes/form.php:268 app/features/fes/form.php:308
494
  msgid "AM"
495
  msgstr "AM"
496
 
497
+ #: app/features/events.php:537 app/features/events.php:629
498
+ #: app/features/events.php:1622 app/features/events.php:1664
499
+ #: app/features/events.php:1825 app/features/events.php:1849
500
  #: app/features/fes/form.php:269 app/features/fes/form.php:309
501
  msgid "PM"
502
  msgstr "PM"
503
 
504
+ #: app/features/events.php:544 app/features/events.php:549
505
+ #: app/features/events.php:3016 app/features/events.php:3205
506
+ #: app/features/events.php:3247 app/features/fes/form.php:276
507
+ #: app/features/fes/form.php:280 app/features/ix.php:2743
508
+ #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:44
509
  #: app/features/mec/dashboard.php:347
510
  msgid "End Date"
511
  msgstr "Ende Datum"
512
 
513
+ #: app/features/events.php:643 app/features/fes/form.php:315
514
  msgid "All Day Event"
515
  msgstr "Ganztägige Veranstaltung"
516
 
517
+ #: app/features/events.php:653 app/features/fes/form.php:318
518
  msgid "Hide Event Time"
519
  msgstr "Event / Veranstaltungszeit verbergen"
520
 
521
+ #: app/features/events.php:663 app/features/fes/form.php:321
522
  msgid "Hide Event End Time"
523
  msgstr "Ende-Zeit der Veranstaltung verbergen"
524
 
525
+ #: app/features/events.php:668 app/features/events.php:672
526
  #: app/features/fes/form.php:325
527
  msgid "Time Comment"
528
  msgstr "z.B. MEZ "
529
 
530
+ #: app/features/events.php:673 app/features/fes/form.php:326
531
  #, fuzzy
532
  #| msgid ""
533
  #| "It shows next to event time on calendar. You can insert Timezone etc. in "
539
  "Neben der Zeit im Kalender wird diese Angabe angezeigt. In diesem Feld "
540
  "können Sie z.B. eine Zeitzone wie z.B. \"MEZ\" usw. einfügen. "
541
 
542
+ #: app/features/events.php:675 app/features/events.php:807
543
+ #: app/features/events.php:1106 app/features/events.php:1149
544
+ #: app/features/events.php:1448 app/features/events.php:1507
545
+ #: app/features/events.php:1684 app/features/events.php:1699
546
+ #: app/features/events.php:1866 app/features/events.php:1879
547
+ #: app/features/events.php:2009 app/features/events.php:2045
548
+ #: app/features/events.php:2143 app/features/events.php:2158
549
+ #: app/features/events.php:2188 app/features/events.php:2201
550
  #: app/features/fes/form.php:630 app/features/locations.php:299
551
+ #: app/features/mec/booking.php:60 app/features/mec/booking.php:97
552
+ #: app/features/mec/booking.php:113 app/features/mec/booking.php:220
553
+ #: app/features/mec/booking.php:249 app/features/mec/booking.php:297
554
+ #: app/features/mec/booking.php:307 app/features/mec/booking.php:329
555
+ #: app/features/mec/booking.php:339 app/features/mec/dashboard.php:71
556
  #: app/features/mec/meta_boxes/display_options.php:60
557
  #: app/features/mec/meta_boxes/display_options.php:73
558
  #: app/features/mec/meta_boxes/display_options.php:86
583
  #: app/features/mec/meta_boxes/display_options.php:1134
584
  #: app/features/mec/meta_boxes/display_options.php:1147
585
  #: app/features/mec/meta_boxes/display_options.php:1160
586
+ #: app/features/mec/modules.php:50 app/features/mec/modules.php:83
587
+ #: app/features/mec/modules.php:100 app/features/mec/modules.php:135
588
+ #: app/features/mec/modules.php:151 app/features/mec/modules.php:309
589
  #: app/features/mec/notifications.php:246
590
  #: app/features/mec/notifications.php:303
591
  #: app/features/mec/notifications.php:355
593
  #: app/features/mec/notifications.php:482
594
  #: app/features/mec/notifications.php:545
595
  #: app/features/mec/notifications.php:556
596
+ #: app/features/mec/notifications.php:618 app/features/mec/settings.php:63
597
+ #: app/features/mec/settings.php:82 app/features/mec/settings.php:109
598
+ #: app/features/mec/settings.php:144 app/features/mec/settings.php:165
599
+ #: app/features/mec/settings.php:185 app/features/mec/settings.php:262
600
+ #: app/features/mec/settings.php:336 app/features/mec/settings.php:353
601
+ #: app/features/mec/settings.php:370 app/features/mec/settings.php:389
602
+ #: app/features/mec/settings.php:403 app/features/mec/settings.php:431
603
+ #: app/features/mec/settings.php:518 app/features/mec/settings.php:656
604
+ #: app/features/mec/settings.php:673 app/features/mec/settings.php:778
605
+ #: app/features/mec/settings.php:791 app/features/mec/settings.php:807
606
+ #: app/features/mec/single.php:39 app/features/mec/single.php:55
607
+ #: app/features/mec/single.php:74 app/features/mec/single.php:91
608
+ #: app/features/mec/single.php:107 app/features/mec/single.php:121
609
+ #: app/features/mec/single.php:159 app/features/mec/styling.php:199
610
+ #: app/features/mec/styling.php:216 app/features/mec/styling.php:229
611
+ #: app/features/organizers.php:272 app/skins/single.php:629
612
  #: app/skins/single/default.php:119 app/skins/single/default.php:331
613
  #: app/skins/single/m1.php:192 app/skins/single/m2.php:125
614
  #: app/skins/single/modern.php:133
615
  msgid "Read More"
616
  msgstr "Mehr lesen"
617
 
618
+ #: app/features/events.php:691 app/features/fes/form.php:332
619
  msgid "Event Repeating"
620
  msgstr "Wiederholende Veranstaltung"
621
 
622
+ #: app/features/events.php:695 app/features/fes/form.php:336
623
  msgid "Repeats"
624
  msgstr "Wiederholend"
625
 
626
+ #: app/features/events.php:703 app/features/fes/form.php:338
627
  #: app/features/mec/dashboard.php:349 app/skins/full_calendar/tpl.php:109
628
  msgid "Daily"
629
  msgstr "Täglich"
630
 
631
+ #: app/features/events.php:710 app/features/fes/form.php:339
632
  msgid "Every Weekday"
633
  msgstr "An jedem Wochentag"
634
 
635
+ #: app/features/events.php:717 app/features/fes/form.php:340
636
  msgid "Every Weekend"
637
  msgstr "An jedem Wochenende"
638
 
639
+ #: app/features/events.php:724 app/features/fes/form.php:341
640
  msgid "Certain Weekdays"
641
  msgstr "Bestimmte Wochentage"
642
 
643
+ #: app/features/events.php:731 app/features/fes/form.php:342
644
  #: app/skins/full_calendar/tpl.php:108
645
  msgid "Weekly"
646
  msgstr "Wöchentlich"
647
 
648
+ #: app/features/events.php:738 app/features/fes/form.php:343
649
  #: app/features/mec/dashboard.php:350 app/skins/full_calendar/tpl.php:107
650
  msgid "Monthly"
651
  msgstr "Monatlich"
652
 
653
+ #: app/features/events.php:745 app/features/fes/form.php:344
654
  #: app/features/mec/dashboard.php:351 app/skins/full_calendar/tpl.php:106
655
  msgid "Yearly"
656
  msgstr "Jährlich"
657
 
658
+ #: app/features/events.php:752 app/features/fes/form.php:345
659
  msgid "Custom Days"
660
  msgstr "Benutzerdefinierte Tage"
661
 
662
+ #: app/features/events.php:759 app/features/fes/form.php:346
663
  #, fuzzy
664
  #| msgid "Advanced Method"
665
  msgid "Advanced"
666
  msgstr "Fortgeschrittene Methode"
667
 
668
+ #: app/features/events.php:764 app/features/fes/form.php:350
669
  msgid "Repeat Interval"
670
  msgstr "Wiederholungsintervall"
671
 
672
+ #: app/features/events.php:766 app/features/fes/form.php:351
673
  msgid "Repeat interval"
674
  msgstr "Wiederholungsintervall"
675
 
676
+ #: app/features/events.php:770 app/features/fes/form.php:354
677
  msgid "Week Days"
678
  msgstr "Wochentage"
679
 
680
+ #: app/features/events.php:772 app/features/fes/form.php:355
681
  #: app/features/mec/meta_boxes/display_options.php:730
682
  #: app/libraries/main.php:407
683
  msgid "Monday"
684
  msgstr "Montag"
685
 
686
+ #: app/features/events.php:775 app/features/fes/form.php:356
687
  #: app/features/mec/meta_boxes/display_options.php:731
688
  #: app/libraries/main.php:407
689
  msgid "Tuesday"
690
  msgstr "Dienstag"
691
 
692
+ #: app/features/events.php:778 app/features/fes/form.php:357
693
  #: app/features/mec/meta_boxes/display_options.php:732
694
  #: app/libraries/main.php:407
695
  msgid "Wednesday"
696
  msgstr "Mittwoch"
697
 
698
+ #: app/features/events.php:781 app/features/fes/form.php:358
699
  #: app/features/mec/meta_boxes/display_options.php:733
700
  #: app/libraries/main.php:407
701
  msgid "Thursday"
702
  msgstr "Donnerstag"
703
 
704
+ #: app/features/events.php:784 app/features/fes/form.php:359
705
  #: app/features/mec/meta_boxes/display_options.php:734
706
  #: app/libraries/main.php:407
707
  msgid "Friday"
708
  msgstr "Freitag"
709
 
710
+ #: app/features/events.php:787 app/features/fes/form.php:360
711
  #: app/features/mec/meta_boxes/display_options.php:735
712
  #: app/libraries/main.php:407
713
  msgid "Saturday"
714
  msgstr "Samstag"
715
 
716
+ #: app/features/events.php:790 app/features/fes/form.php:361
717
  #: app/features/mec/meta_boxes/display_options.php:729
718
  #: app/libraries/main.php:407
719
  msgid "Sunday"
720
  msgstr "Sonntag"
721
 
722
+ #: app/features/events.php:797 app/features/events.php:1747
723
+ #: app/features/events.php:1775 app/features/events.php:1913
724
  #: app/features/fes/form.php:366 app/features/ix/import_f_calendar.php:42
725
  #: app/features/ix/import_g_calendar.php:51
726
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
727
  msgid "Start"
728
  msgstr "Start"
729
 
730
+ #: app/features/events.php:799 app/features/events.php:1751
731
+ #: app/features/events.php:1779 app/features/events.php:1917
732
  #: app/features/fes/form.php:367
733
  #, fuzzy
734
  #| msgid "Enabled"
735
  msgid "End"
736
  msgstr "Aktiviert"
737
 
738
+ #: app/features/events.php:801 app/features/events.php:1143
739
+ #: app/features/events.php:1254 app/features/events.php:1359
740
+ #: app/features/events.php:1565 app/features/events.php:1730
741
+ #: app/features/events.php:1902 app/features/events.php:1982
742
+ #: app/features/events.php:2115 app/features/fes/form.php:368
743
  #: app/features/fes/form.php:842
744
  msgid "Add"
745
  msgstr "Hinzufügen"
746
 
747
+ #: app/features/events.php:804
748
  #, fuzzy
749
  #| msgid "Custom Days"
750
  msgid "Custom Days Repeating"
751
  msgstr "Benutzerdefinierte Tage"
752
 
753
+ #: app/features/events.php:805
754
  msgid ""
755
  "Add certain days to event occurrence dates. If you have single day event, "
756
  "start and end date should be the same, If you have multiple day event the "
757
  "start and end dates must be commensurate with the initial date."
758
  msgstr ""
759
 
760
+ #: app/features/events.php:841 app/features/fes/form.php:394
761
  #, fuzzy
762
  #| msgid "First name"
763
  msgid "First"
764
  msgstr "Vorname"
765
 
766
+ #: app/features/events.php:883 app/features/fes/form.php:436
767
  #, fuzzy
768
  #| msgid "second"
769
  msgid "Second"
770
  msgstr "Sekunde"
771
 
772
+ #: app/features/events.php:925 app/features/fes/form.php:478
773
  #, fuzzy
774
  #| msgid "Third Party"
775
  msgid "Third"
776
  msgstr "Dritte Seite"
777
 
778
+ #: app/features/events.php:967 app/features/fes/form.php:520
779
  msgid "Fourth"
780
  msgstr ""
781
 
782
+ #: app/features/events.php:1009 app/features/fes/form.php:562
783
  #, fuzzy
784
  #| msgid "Last name"
785
  msgid "Last"
786
  msgstr "Nachname"
787
 
788
+ #: app/features/events.php:1056 app/features/fes/form.php:608
789
  msgid "Ends Repeat"
790
  msgstr "Wiederholung endet"
791
 
792
+ #: app/features/events.php:1067 app/features/fes/form.php:612
793
  msgid "Never"
794
  msgstr "Niemals"
795
 
796
+ #: app/features/events.php:1079 app/features/fes/form.php:617
797
  msgid "On"
798
  msgstr "Am"
799
 
800
+ #: app/features/events.php:1095 app/features/fes/form.php:624
801
  msgid "After"
802
  msgstr "Nach"
803
 
804
+ #: app/features/events.php:1099 app/features/events.php:1103
805
  #: app/features/fes/form.php:626 app/features/fes/form.php:629
806
  msgid "Occurrences times"
807
  msgstr " mal vorkommen"
808
 
809
+ #: app/features/events.php:1104 app/features/fes/form.php:630
810
  msgid ""
811
  "The event will finish after certain repeats. For example if you set it to "
812
  "10, the event will finish after 10 repeats."
814
  "Das Event ist nach einer bestimmten Anzahl von Wiederholungen zu Ende. Zum "
815
  "Beispiel: Bei Eingabe von 10 wird das Event nach 10 Wiederholungen beendet"
816
 
817
+ #: app/features/events.php:1136 app/features/events.php:1146
818
  msgid "Exclude certain days"
819
  msgstr "Ausschluss bestimmter Tage"
820
 
821
+ #: app/features/events.php:1141 app/features/events.php:2351
822
+ #: app/features/mec/regform.php:114 app/features/profile/profile.php:31
823
+ #: app/libraries/main.php:2047 app/libraries/main.php:2657
824
  #: app/modules/booking/steps/tickets.php:22
825
+ #: app/modules/next-event/details.php:90 app/skins/single.php:609
826
  #: app/skins/single/default.php:68 app/skins/single/default.php:280
827
  #: app/skins/single/m1.php:16 app/skins/single/modern.php:166
828
  msgid "Date"
829
  msgstr "Datum"
830
 
831
+ #: app/features/events.php:1147
832
  msgid ""
833
  "Exclude certain days from event occurrence dates. Please note that you can "
834
  "exclude only single day occurrences and you cannot exclude one day from "
835
  "multiple day occurrences."
836
  msgstr ""
837
 
838
+ #: app/features/events.php:1201 app/libraries/render.php:455
839
  msgid "Day 1"
840
  msgstr ""
841
 
842
+ #: app/features/events.php:1223 app/features/mec/settings.php:627
843
+ #: app/skins/single.php:899
844
  msgid "Hourly Schedule"
845
  msgstr "Stundenplan"
846
 
847
+ #: app/features/events.php:1227
848
  msgid "Add Day"
849
  msgstr ""
850
 
851
+ #: app/features/events.php:1228
852
  msgid ""
853
  "Add new days for schedule. For example if your event is multiple days, you "
854
  "can add a different schedule for each day!"
855
  msgstr ""
856
 
857
+ #: app/features/events.php:1235
858
  #, php-format
859
  msgid "Day %s"
860
  msgstr ""
861
 
862
+ #: app/features/events.php:1239 app/features/events.php:1278
863
+ #: app/features/events.php:1313 app/features/events.php:1345
864
+ #: app/features/events.php:1374 app/features/events.php:2130
865
+ #: app/features/events.php:2177 app/features/events.php:3011
866
+ #: app/features/events.php:3205 app/features/events.php:3247
867
+ #: app/features/fes/form.php:225 app/features/ix.php:2743
868
+ #: app/features/ix.php:2784 app/features/mec/booking.php:289
869
+ #: app/features/mec/booking.php:321 app/features/mec/styling.php:111
870
  msgid "Title"
871
  msgstr "Titel"
872
 
873
+ #: app/features/events.php:1248 app/features/events.php:1285
874
+ #: app/features/events.php:1318 app/features/events.php:1353
875
+ #: app/features/events.php:1379 app/features/events.php:1723
876
+ #: app/features/events.php:1761 app/features/events.php:1787
877
+ #: app/features/events.php:1896 app/features/events.php:1923
878
+ #: app/features/events.php:2022 app/features/events.php:2058
879
+ #: app/features/events.php:2165 app/features/events.php:2207
880
+ #: app/features/fes/list.php:78 app/features/mec/booking.php:232
881
+ #: app/features/mec/booking.php:261 app/features/mec/booking.php:312
882
+ #: app/features/mec/booking.php:344 app/libraries/main.php:2518
883
+ #: app/libraries/main.php:2548 app/libraries/main.php:2577
884
+ #: app/libraries/main.php:2607 app/libraries/main.php:2636
885
+ #: app/libraries/main.php:2665 app/libraries/main.php:2694
886
+ #: app/libraries/main.php:2723 app/libraries/main.php:2745
887
+ #: app/libraries/main.php:2776 app/libraries/main.php:2820
888
+ #: app/libraries/main.php:2864 app/libraries/main.php:2911
889
+ #: app/libraries/main.php:2950
890
  msgid "Remove"
891
  msgstr "Entfernen"
892
 
893
+ #: app/features/events.php:1255 app/features/events.php:1360
894
  msgid "Add new hourly schedule row"
895
  msgstr "Neue Stundenplan-Zeile hinzufügen"
896
 
897
+ #: app/features/events.php:1270 app/features/events.php:1307
898
+ #: app/features/events.php:1369
899
  msgid "From e.g. 8:15"
900
  msgstr "Von z.B. 08:15 Uhr"
901
 
902
+ #: app/features/events.php:1274 app/features/events.php:1310
903
+ #: app/features/events.php:1371
904
  msgid "To e.g. 8:45"
905
  msgstr "bis zum Beispiel 08:45 Uhr"
906
 
907
+ #: app/features/events.php:1282 app/features/events.php:1316
908
+ #: app/features/events.php:1377 app/features/events.php:1671
909
+ #: app/features/events.php:1855
910
  msgid "Description"
911
  msgstr "Beschreibung"
912
 
913
+ #: app/features/events.php:1288 app/features/events.php:1321
914
+ #: app/features/events.php:1382 app/features/fes/form.php:838
915
+ #: app/features/mec.php:343 app/features/mec/modules.php:49
916
+ #: app/features/mec/notifications.php:88 app/features/mec/settings.php:621
917
+ #: app/features/speakers.php:60 app/libraries/main.php:557
918
+ #: app/libraries/main.php:4859 app/modules/speakers/details.php:18
 
 
 
 
 
919
  msgid "Speakers"
920
  msgstr ""
921
 
922
+ #: app/features/events.php:1341 app/features/events.php:1349
923
  #, fuzzy
924
  #| msgid "Week Days"
925
  msgid "New Day"
926
  msgstr "Wochentage"
927
 
928
+ #: app/features/events.php:1413 app/features/fes/form.php:683
929
+ #: app/features/mec/settings.php:567
930
  msgid "Event Links"
931
  msgstr "Veranstaltungslinks"
932
 
933
+ #: app/features/events.php:1416 app/features/events.php:1422
934
+ #: app/features/fes/form.php:685 app/libraries/main.php:4882
935
  msgid "Event Link"
936
  msgstr "Veranstaltungslink"
937
 
938
+ #: app/features/events.php:1419 app/features/events.php:1435
939
  #: app/features/fes/form.php:686 app/features/fes/form.php:691
940
  msgid "eg. http://yoursite.com/your-event"
941
  msgstr "z.B. http://ihreseite.com/ihre-veranstaltung"
942
 
943
+ #: app/features/events.php:1423
944
  #, fuzzy
945
  #| msgid ""
946
  #| "If you fill it, it will be replaced instead of default event page link. "
954
  "dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
955
  "einschließlich http(s)://"
956
 
957
+ #: app/features/events.php:1425
958
  msgid "URL Shortener"
959
  msgstr ""
960
 
961
+ #: app/features/events.php:1432 app/features/events.php:1445
962
+ #: app/features/fes/form.php:690 app/libraries/main.php:4883
963
+ #: app/skins/single.php:628 app/skins/single/default.php:118
964
  #: app/skins/single/default.php:330 app/skins/single/m1.php:191
965
  #: app/skins/single/m2.php:124 app/skins/single/modern.php:132
966
  #: app/widgets/single.php:107
967
  msgid "More Info"
968
  msgstr "Mehr Informationen"
969
 
970
+ #: app/features/events.php:1438 app/features/fes/form.php:692
971
  msgid "More Information"
972
  msgstr "z.B. Noch mehr Informationen "
973
 
974
+ #: app/features/events.php:1440 app/features/fes/form.php:694
975
  msgid "Current Window"
976
  msgstr "Aktuelles Fenster"
977
 
978
+ #: app/features/events.php:1441 app/features/fes/form.php:695
979
  msgid "New Window"
980
  msgstr "Neues Fenster"
981
 
982
+ #: app/features/events.php:1446 app/features/fes/form.php:697
983
  msgid ""
984
  "If you fill it, it will be shown in event details page as an optional link. "
985
  "Insert full link including http(s)://"
990
  "Text angezeigt werden soll: zum Beispiel: Noch mehr Informationen oder Hier "
991
  "zur Anmeldung (z.B. bei Webinaren sinnvoll) "
992
 
993
+ #: app/features/events.php:1488 app/features/events.php:1503
994
  msgid "Total booking limits"
995
  msgstr "Gesamt Verfügbare Plätze"
996
 
997
+ #: app/features/events.php:1500 app/features/events.php:1533
998
+ #: app/features/events.php:1720 app/features/events.php:1893
999
  #: app/modules/booking/default.php:85 app/modules/booking/steps/tickets.php:40
1000
+ #: app/skins/available_spot/tpl.php:145
1001
  msgid "Unlimited"
1002
  msgstr "Unlimitiert"
1003
 
1004
+ #: app/features/events.php:1506
1005
  msgid ""
1006
  "If you want to set a limit to all tickets, uncheck this checkbox and put a "
1007
  "limitation number."
1008
  msgstr ""
1009
 
1010
+ #: app/features/events.php:1508
1011
  #, fuzzy
1012
  #| msgid "Choose your single event style."
1013
  msgid "Read About A Booking System"
1014
  msgstr "Wählen Sie Ihren Single Event Stil"
1015
 
1016
+ #: app/features/events.php:1516
1017
  msgid "100"
1018
  msgstr "z.B. 100"
1019
 
1020
+ #: app/features/events.php:1521
1021
  #, fuzzy
1022
  #| msgid "Total booking limits"
1023
  msgid "Total user booking limits"
1024
  msgstr "Gesamt Verfügbare Plätze"
1025
 
1026
+ #: app/features/events.php:1536
1027
  msgid "12"
1028
  msgstr ""
1029
 
1030
+ #: app/features/events.php:1557 app/libraries/book.php:60
1031
+ #: app/libraries/main.php:4887 app/modules/booking/steps/tickets.php:40
1032
  msgid "Tickets"
1033
  msgstr "Tickets"
1034
 
1035
+ #: app/features/events.php:1560
1036
  msgid ""
1037
  "You're translating an event so MEC will use the original event for tickets "
1038
  "and booking. You can only translate the ticket name and description. Please "
1039
  "define exact tickets that you defined in the original event here."
1040
  msgstr ""
1041
 
1042
+ #: app/features/events.php:1579 app/features/events.php:1801
1043
  msgid "Ticket Name"
1044
  msgstr "Ticket Name"
1045
 
1046
+ #: app/features/events.php:1584 app/features/events.php:1805
1047
+ #: app/features/events.php:3205 app/features/events.php:3247
1048
+ #: app/features/ix.php:2743 app/features/ix.php:2784
1049
  msgid "Start Time"
1050
  msgstr "Uhrzeit des Beginns"
1051
 
1052
+ #: app/features/events.php:1626 app/features/events.php:1829
1053
+ #: app/features/events.php:3205 app/features/events.php:3247
1054
+ #: app/features/ix.php:2743 app/features/ix.php:2784
1055
  msgid "End Time"
1056
  msgstr "Uhrzeit Ende"
1057
 
1058
+ #: app/features/events.php:1677 app/features/events.php:1681
1059
+ #: app/features/events.php:1755 app/features/events.php:1782
1060
+ #: app/features/events.php:1860 app/features/events.php:1863
1061
+ #: app/features/events.php:1919 app/features/events.php:2136
1062
+ #: app/features/events.php:2140 app/features/events.php:2182
1063
+ #: app/features/events.php:2185 app/features/mec/booking.php:293
1064
+ #: app/features/mec/booking.php:296 app/features/mec/booking.php:325
1065
+ #: app/features/mec/booking.php:328
1066
  msgid "Price"
1067
  msgstr "Preis"
1068
 
1069
+ #: app/features/events.php:1682 app/features/events.php:1864
1070
  msgid "Insert 0 for free ticket. Only numbers please."
1071
  msgstr "Bitte 0 für kostenloses Ticket eingeben. Bitte nur Zahlen eintragen"
1072
 
1073
+ #: app/features/events.php:1691 app/features/events.php:1696
1074
+ #: app/features/events.php:1873 app/features/events.php:1876
1075
  msgid "Price Label"
1076
  msgstr "Preisschild"
1077
 
1078
+ #: app/features/events.php:1697 app/features/events.php:1877
1079
  msgid "For showing on website. e.g. $15"
1080
  msgstr "Um das auf der Webseite anzuzeigen zum Beispiel 15 €"
1081
 
1082
+ #: app/features/events.php:1707 app/features/events.php:1887
1083
  msgid "Available Tickets"
1084
  msgstr "Verfügbare Tickets: %s "
1085
 
1086
+ #: app/features/events.php:1728 app/features/events.php:1900
1087
  #, fuzzy
1088
  #| msgid "Price Label"
1089
  msgid "Price per Date"
1090
  msgstr "Preisschild"
1091
 
1092
+ #: app/features/events.php:1759 app/features/events.php:1785
1093
+ #: app/features/events.php:1921 app/features/labels.php:60
1094
  #: app/features/mec/meta_boxes/display_options.php:799
1095
  #: app/features/mec/meta_boxes/search_form.php:66
1096
  #: app/features/mec/meta_boxes/search_form.php:128
1102
  #: app/features/mec/meta_boxes/search_form.php:488
1103
  #: app/features/mec/meta_boxes/search_form.php:549
1104
  #: app/features/mec/meta_boxes/search_form.php:610
1105
+ #: app/features/mec/settings.php:748 app/features/mec/single.php:219
1106
  #: app/libraries/skins.php:937
1107
  msgid "Label"
1108
  msgstr "Label"
1109
 
1110
+ #: app/features/events.php:1959
1111
  msgid "Fees"
1112
  msgstr "Gebühren"
1113
 
1114
+ #: app/features/events.php:1971 app/features/events.php:2103
1115
+ #: app/features/events.php:2291
1116
  msgid "Inherit from global options"
1117
  msgstr "Aus den globalen Einstellungen übernehmen"
1118
 
1119
+ #: app/features/events.php:1996 app/features/events.php:2034
1120
+ #: app/features/mec/booking.php:212 app/features/mec/booking.php:241
1121
  msgid "Fee Title"
1122
  msgstr "Gebühren Name"
1123
 
1124
+ #: app/features/events.php:2002 app/features/events.php:2006
1125
+ #: app/features/events.php:2039 app/features/events.php:2042
1126
+ #: app/features/mec/booking.php:216 app/features/mec/booking.php:219
1127
+ #: app/features/mec/booking.php:245 app/features/mec/booking.php:248
1128
  msgid "Amount"
1129
  msgstr "Betrag"
1130
 
1131
+ #: app/features/events.php:2007 app/features/events.php:2043
1132
+ #: app/features/mec/booking.php:220 app/features/mec/booking.php:249
1133
  msgid ""
1134
  "Fee amount, considered as fixed amount if you set the type to amount "
1135
  "otherwise considered as percentage"
1137
  "Gebührenbetrag, gilt als fester Betrag, wenn Sie die Art auf Betrag setzen, "
1138
  "sonst als Prozentsatz"
1139
 
1140
+ #: app/features/events.php:2016 app/features/events.php:2052
1141
+ #: app/features/mec/booking.php:227 app/features/mec/booking.php:256
1142
  msgid "Percent"
1143
  msgstr "Prozent"
1144
 
1145
+ #: app/features/events.php:2017 app/features/events.php:2053
1146
+ #: app/features/mec/booking.php:228 app/features/mec/booking.php:257
1147
  msgid "Amount (Per Ticket)"
1148
  msgstr "Betrag (pro Ticket)"
1149
 
1150
+ #: app/features/events.php:2018 app/features/events.php:2054
1151
+ #: app/features/mec/booking.php:229 app/features/mec/booking.php:258
1152
  msgid "Amount (Per Booking)"
1153
  msgstr "Betrag (pro Buchung)"
1154
 
1155
+ #: app/features/events.php:2091 app/features/mec/settings.php:645
1156
  msgid "Ticket Variations / Options"
1157
  msgstr ""
1158
 
1159
+ #: app/features/events.php:2141 app/features/events.php:2186
1160
+ #: app/features/mec/booking.php:297 app/features/mec/booking.php:329
1161
  #, fuzzy
1162
  #| msgid "Option"
1163
  msgid "Option Price"
1164
  msgstr "Option"
1165
 
1166
+ #: app/features/events.php:2151 app/features/events.php:2155
1167
+ #: app/features/events.php:2195 app/features/events.php:2198
1168
+ #: app/features/mec/booking.php:303 app/features/mec/booking.php:306
1169
+ #: app/features/mec/booking.php:335 app/features/mec/booking.php:338
1170
  #, fuzzy
1171
  #| msgid "Amount (Per Ticket)"
1172
  msgid "Maximum Per Ticket"
1173
  msgstr "Betrag (pro Ticket)"
1174
 
1175
+ #: app/features/events.php:2156 app/features/events.php:2199
1176
+ #: app/features/mec/booking.php:307 app/features/mec/booking.php:339
1177
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1178
  msgstr ""
1179
 
1180
+ #: app/features/events.php:2346 app/features/mec/regform.php:110
1181
+ #: app/libraries/main.php:2540
1182
  #, fuzzy
1183
  #| msgid "Name"
1184
  msgid "MEC Name"
1185
  msgstr "Name"
1186
 
1187
+ #: app/features/events.php:2348 app/features/mec/regform.php:111
1188
+ #: app/libraries/main.php:2569
1189
  #, fuzzy
1190
  #| msgid "Email"
1191
  msgid "MEC Email"
1192
  msgstr "Email"
1193
 
1194
+ #: app/features/events.php:2349 app/features/mec/regform.php:112
1195
+ #: app/libraries/main.php:2510
1196
  msgid "Text"
1197
  msgstr "Text"
1198
 
1199
+ #: app/features/events.php:2352 app/features/mec/regform.php:115
1200
  #: app/features/organizers.php:103 app/features/organizers.php:148
1201
  #: app/features/speakers.php:116 app/features/speakers.php:180
1202
+ #: app/features/speakers.php:249 app/libraries/main.php:2686
1203
  msgid "Tel"
1204
  msgstr "Tel"
1205
 
1206
+ #: app/features/events.php:2353 app/features/mec/regform.php:116
1207
+ #: app/libraries/main.php:2628
1208
  msgid "File"
1209
  msgstr ""
1210
 
1211
+ #: app/features/events.php:2355 app/features/mec/regform.php:117
1212
+ #: app/libraries/main.php:2715
1213
  msgid "Textarea"
1214
  msgstr "Textbereich"
1215
 
1216
+ #: app/features/events.php:2357 app/features/mec/regform.php:118
1217
+ #: app/libraries/main.php:2768
1218
  msgid "Checkboxes"
1219
  msgstr "Checkboxes"
1220
 
1221
+ #: app/features/events.php:2359 app/features/mec/regform.php:119
1222
+ #: app/libraries/main.php:2812
1223
  msgid "Radio Buttons"
1224
  msgstr "Radio Buttons"
1225
 
1226
+ #: app/features/events.php:2360 app/features/mec/meta_boxes/search_form.php:34
1227
  #: app/features/mec/meta_boxes/search_form.php:41
1228
  #: app/features/mec/meta_boxes/search_form.php:48
1229
  #: app/features/mec/meta_boxes/search_form.php:55
1292
  #: app/features/mec/meta_boxes/search_form.php:606
1293
  #: app/features/mec/meta_boxes/search_form.php:613
1294
  #: app/features/mec/meta_boxes/search_form.php:620
1295
+ #: app/features/mec/regform.php:120 app/libraries/main.php:2856
1296
  msgid "Dropdown"
1297
  msgstr "Dropdown"
1298
 
1299
+ #: app/features/events.php:2362 app/features/mec/regform.php:121
1300
+ #: app/libraries/main.php:2903
1301
  msgid "Agreement"
1302
  msgstr "Zustimmung"
1303
 
1304
+ #: app/features/events.php:2363 app/features/mec/regform.php:122
1305
+ #: app/libraries/main.php:2744
1306
  msgid "Paragraph"
1307
  msgstr "Absatz"
1308
 
1309
+ #: app/features/events.php:2932 app/features/events.php:2949
1310
+ #: app/features/events.php:2966 app/features/events.php:2983
1311
  #, php-format
1312
  msgid "Show all %s"
1313
  msgstr "Zeige alle %s"
1314
 
1315
+ #: app/features/events.php:2932
1316
  msgid "labels"
1317
  msgstr "Labels + Eventstatus"
1318
 
1319
+ #: app/features/events.php:2949
1320
  msgid "locations"
1321
  msgstr "Orte"
1322
 
1323
+ #: app/features/events.php:2966
1324
  msgid "organizers"
1325
  msgstr "Veranstalter"
1326
 
1327
+ #: app/features/events.php:3013 app/features/events.php:3205
1328
+ #: app/features/events.php:3247 app/features/ix.php:2743
1329
+ #: app/features/ix.php:2784 app/features/locations.php:58
1330
  #: app/features/locations.php:230 app/features/locations.php:287
1331
  #: app/features/locations.php:289 app/features/locations.php:298
1332
  #: app/features/mec/meta_boxes/display_options.php:800
1340
  #: app/features/mec/meta_boxes/search_form.php:460
1341
  #: app/features/mec/meta_boxes/search_form.php:521
1342
  #: app/features/mec/meta_boxes/search_form.php:582
1343
+ #: app/features/mec/settings.php:722 app/features/mec/single.php:209
1344
+ #: app/libraries/main.php:2041 app/libraries/main.php:4856
1345
+ #: app/libraries/skins.php:833 app/skins/single.php:458
1346
+ #: app/skins/single.php:876 app/skins/single/default.php:154
1347
  #: app/skins/single/default.php:366 app/skins/single/m1.php:155
1348
  #: app/skins/single/m2.php:87 app/skins/single/modern.php:94
1349
  msgid "Location"
1350
  msgstr "Ort"
1351
 
1352
+ #: app/features/events.php:3014 app/features/events.php:3205
1353
+ #: app/features/events.php:3247 app/features/ix.php:2743
1354
+ #: app/features/ix.php:2784 app/features/mec/meta_boxes/display_options.php:801
1355
  #: app/features/mec/meta_boxes/search_form.php:45
1356
  #: app/features/mec/meta_boxes/search_form.php:107
1357
  #: app/features/mec/meta_boxes/search_form.php:169
1362
  #: app/features/mec/meta_boxes/search_form.php:467
1363
  #: app/features/mec/meta_boxes/search_form.php:528
1364
  #: app/features/mec/meta_boxes/search_form.php:589
1365
+ #: app/features/mec/settings.php:728 app/features/mec/single.php:205
1366
  #: app/features/organizers.php:58 app/features/organizers.php:204
1367
  #: app/features/organizers.php:260 app/features/organizers.php:262
1368
+ #: app/features/organizers.php:271 app/libraries/main.php:4858
1369
+ #: app/libraries/skins.php:859 app/skins/single.php:764
1370
  #: app/skins/single/default.php:195 app/skins/single/default.php:407
1371
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
1372
  #: app/skins/single/modern.php:31
1373
  msgid "Organizer"
1374
  msgstr "Veranstalter"
1375
 
1376
+ #: app/features/events.php:3018
1377
  msgid "Repeat"
1378
  msgstr "Wiederholen"
1379
 
1380
+ #: app/features/events.php:3019
1381
  msgid "Author"
1382
  msgstr "Autor"
1383
 
1384
+ #: app/features/events.php:3140 app/features/events.php:3141
1385
  msgid "iCal Export"
1386
  msgstr "ical Export"
1387
 
1388
+ #: app/features/events.php:3143 app/features/events.php:3144
1389
  msgid "CSV Export"
1390
  msgstr "CSV Export"
1391
 
1392
+ #: app/features/events.php:3146 app/features/events.php:3147
1393
  msgid "MS Excel Export"
1394
  msgstr "MS Excel Export"
1395
 
1396
+ #: app/features/events.php:3149 app/features/events.php:3150
1397
  msgid "XML Export"
1398
  msgstr "XML Export"
1399
 
1400
+ #: app/features/events.php:3152 app/features/events.php:3153
1401
  msgid "JSON Export"
1402
  msgstr "JSON Export"
1403
 
1404
+ #: app/features/events.php:3155 app/features/events.php:3156
1405
+ #: app/features/events.php:3337
1406
  msgid "Duplicate"
1407
  msgstr "Kopie"
1408
 
1409
+ #: app/features/events.php:3205 app/features/events.php:3247
1410
+ #: app/features/ix.php:2743 app/features/ix.php:2784
1411
  #: app/features/labels.php:177 app/features/locations.php:229
1412
  #: app/features/organizers.php:203 app/features/speakers.php:246
1413
  msgid "ID"
1414
  msgstr "ID"
1415
 
1416
+ #: app/features/events.php:3205 app/features/events.php:3247
1417
+ #: app/features/ix.php:2743 app/features/ix.php:2784
1418
  msgid "Link"
1419
  msgstr "Link"
1420
 
1421
+ #: app/features/events.php:3205 app/features/events.php:3247
1422
  #, php-format
1423
  msgid "%s Tel"
1424
  msgstr "%s Tel"
1425
 
1426
+ #: app/features/events.php:3205 app/features/events.php:3247
1427
  #, php-format
1428
  msgid "%s Email"
1429
  msgstr "%s Email"
1516
  "dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
1517
  "einschließlich http(s)://"
1518
 
1519
+ #: app/features/fes/form.php:723 app/features/mec/settings.php:579
1520
  msgid "Featured Image"
1521
  msgstr "Ausgewähltes Bild"
1522
 
1525
  msgstr "Bild entfernen"
1526
 
1527
  #: app/features/fes/form.php:770 app/features/labels.php:61
1528
+ #: app/features/labels.php:221 app/features/mec.php:336
1529
+ #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4853
1530
+ #: app/skins/single.php:657 app/skins/single/default.php:133
1531
  #: app/skins/single/default.php:345 app/skins/single/m1.php:64
1532
  #: app/skins/single/modern.php:214
1533
  msgid "Labels"
1534
  msgstr "Labels"
1535
 
1536
+ #: app/features/fes/form.php:816 app/features/mec.php:334
1537
  #: app/features/mec/meta_boxes/filter.php:138
1538
  msgid "Tags"
1539
  msgstr "Schlagworte"
1578
  msgid "MEC - Import / Export"
1579
  msgstr "MEC - Import / Export"
1580
 
1581
+ #: app/features/ix.php:107 app/features/mec/notifications.php:206
1582
+ #: app/features/mec/support.php:73 app/libraries/main.php:812
 
 
 
 
 
1583
  msgid "Import / Export"
1584
  msgstr "Import / Export"
1585
 
1586
+ #: app/features/ix.php:201
1587
  msgid "Please upload the feed file."
1588
  msgstr ""
1589
 
1590
+ #: app/features/ix.php:204
1591
  msgid "The file type should be XML or ICS."
1592
  msgstr ""
1593
 
1594
+ #: app/features/ix.php:213
1595
  msgid "An error occurred during the file upload! Please check permissions!"
1596
  msgstr ""
1597
 
1598
+ #: app/features/ix.php:221
1599
  msgid "The events are imported successfully!"
1600
  msgstr ""
1601
 
1602
+ #: app/features/ix.php:783
1603
  msgid "Third Party plugin is not installed and activated!"
1604
  msgstr "Drittanbieter-Plugin ist nicht installiert und aktiviert!"
1605
 
1606
+ #: app/features/ix.php:803
1607
  msgid "Third Party plugin is invalid!"
1608
  msgstr "Drittanbieter-Plugin ist ungültig!"
1609
 
1610
+ #: app/features/ix.php:1950 app/features/ix.php:2008
1611
  msgid "Both of API key and Calendar ID are required!"
1612
  msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
1613
 
1614
+ #: app/features/ix.php:2003 app/features/ix.php:2422 app/features/ix.php:3129
1615
  msgid "Please select some events to import!"
1616
  msgstr "Bitte wählen Sie einige Veranstaltungen aus zum importieren"
1617
 
1618
+ #: app/features/ix.php:2364 app/features/ix.php:2427
1619
  #, fuzzy
1620
  #| msgid "Both of API key and Calendar ID are required!"
1621
  msgid "Both of API key and Group URL are required!"
1622
  msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
1623
 
1624
+ #: app/features/ix.php:2666
1625
  msgid "Check at Meetup"
1626
  msgstr ""
1627
 
1628
+ #: app/features/ix.php:2743 app/features/ix.php:2784
1629
  msgid "Organizer Tel"
1630
  msgstr "Organisator Telefon"
1631
 
1632
+ #: app/features/ix.php:2743 app/features/ix.php:2784
1633
  msgid "Organizer Email"
1634
  msgstr "Organisator Email"
1635
 
1636
+ #: app/features/ix.php:2865
1637
  msgid "All of Client ID, Client Secret and Calendar ID are required!"
1638
  msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
1639
 
1640
+ #: app/features/ix.php:2888
1641
  #, php-format
1642
  msgid "All seems good! Please click %s for authenticating your app."
1643
  msgstr ""
1644
  "Alles scheint gut zu sein! Bitte klicken %s um Ihre App zu authentifizieren."
1645
 
1646
+ #: app/features/ix.php:2942
1647
  msgid "All of Client App, Client Secret and Calendar ID are required!"
1648
  msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
1649
 
1650
+ #: app/features/ix.php:3058
1651
  #, php-format
1652
  msgid "%s events added to Google Calendar successfully."
1653
  msgstr "%s Events wurden erfolgreich zum Google Kalender hinzugefügt."
1654
 
1655
+ #: app/features/ix.php:3059
1656
  #, php-format
1657
  msgid "%s previously added events get updated."
1658
  msgstr "%s vorherige hinzugefügte Events wurden aktualisiert."
1659
 
1660
+ #: app/features/ix.php:3060
1661
  #, php-format
1662
  msgid "%s events failed to add for following reasons: %s"
1663
  msgstr "%s Events wurde aus folgenden Gründen nicht hinzugefügt: %s"
1664
 
1665
+ #: app/features/ix.php:3092
1666
  #, fuzzy
1667
  #| msgid "Please insert your facebook page's link."
1668
  msgid "Please insert your Facebook page's link."
1669
  msgstr "Bitte Ihren Facebook Seitenlink eingeben."
1670
 
1671
+ #: app/features/ix.php:3101
1672
  #, fuzzy
1673
  #| msgid ""
1674
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
1680
  "Wir konnten Ihre Facebookseite nicht erkennen. Bitte checken Sie das und "
1681
  "stellen Sie uns einen gültigen Facebookseitenlink zur Verfügung."
1682
 
1683
+ #: app/features/ix.php:3133
1684
  msgid "Please insert your facebook page's link."
1685
  msgstr "Bitte Ihren Facebook Seitenlink eingeben."
1686
 
1687
+ #: app/features/ix.php:3138
1688
  msgid ""
1689
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1690
  "valid facebook page link."
1721
  #: app/features/ix/import.php:15 app/features/ix/import_f_calendar.php:15
1722
  #: app/features/ix/import_g_calendar.php:15
1723
  #: app/features/ix/import_meetup.php:15 app/features/ix/sync.php:15
1724
+ #: app/features/ix/thirdparty.php:15 app/features/mec/ie.php:31
1725
  msgid "Export"
1726
  msgstr "Export"
1727
 
1732
  #: app/features/ix/import_g_calendar.php:103
1733
  #: app/features/ix/import_meetup.php:16 app/features/ix/import_meetup.php:85
1734
  #: app/features/ix/sync.php:16 app/features/ix/thirdparty.php:16
1735
+ #: app/features/ix/thirdparty.php:98 app/features/mec/ie.php:20
1736
  msgid "Import"
1737
  msgstr "Import"
1738
 
1755
  "Dies wird alle Ihre Eventdaten von der Webseite in Ihr gewünschtes Format "
1756
  "exportieren."
1757
 
1758
+ #: app/features/ix/export.php:25 app/features/mec/modules.php:175
1759
  msgid "iCal"
1760
  msgstr "iCal"
1761
 
1865
  msgid "Add to Google Calendar"
1866
  msgstr "Zum Google Kalender hinzufügen"
1867
 
1868
+ #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:391
1869
+ #: app/features/mec/modules.php:389 app/features/mec/notifications.php:737
1870
+ #: app/features/mec/settings.php:889 app/features/mec/single.php:266
1871
  msgid "Checking ..."
1872
  msgstr "Überprüfung"
1873
 
1911
  msgid "ICS Feed"
1912
  msgstr ""
1913
 
1914
+ #: app/features/ix/import.php:46 app/features/mec/booking.php:43
1915
+ #: app/features/mec/booking.php:178 app/features/mec/booking.php:196
1916
+ #: app/features/mec/booking.php:273 app/features/mec/modules.php:67
1917
+ #: app/features/mec/modules.php:208 app/features/mec/modules.php:225
1918
  #, php-format
1919
  msgid "%s is required to use this feature."
1920
  msgstr ""
1921
 
1922
  #: app/features/ix/import.php:46 app/features/ix/sync.php:22
1923
+ #: app/features/mec/booking.php:43 app/features/mec/booking.php:178
1924
+ #: app/features/mec/booking.php:196 app/features/mec/booking.php:273
1925
  #: app/features/mec/meta_boxes/display_options.php:296
1926
  #: app/features/mec/meta_boxes/display_options.php:423
1927
  #: app/features/mec/meta_boxes/display_options.php:474
1929
  #: app/features/mec/meta_boxes/display_options.php:688
1930
  #: app/features/mec/meta_boxes/display_options.php:761
1931
  #: app/features/mec/meta_boxes/display_options.php:961
1932
+ #: app/features/mec/modules.php:67 app/features/mec/modules.php:208
1933
+ #: app/features/mec/modules.php:225
1934
  msgid "Pro version of Modern Events Calendar"
1935
  msgstr ""
1936
 
2180
  "Setzen Sie einen Cronjob, um % s Datei mindestens einmal pro Tag anzurufen, "
2181
  "ansonsten würden keine Veranstaltungen von Facebook importiert. "
2182
 
2183
+ #: app/features/ix/sync.php:67
2184
+ msgid "Auto set cronjobs (Once Daily)"
2185
+ msgstr ""
2186
+
2187
  #: app/features/ix/sync.php:68
2188
+ msgid "First you need to enable above options for each to be able to use this."
2189
+ msgstr ""
2190
+
2191
+ #: app/features/ix/sync.php:69
2192
+ msgid ""
2193
+ "If you cannot set Cron Job on your server, you can use the options below. "
2194
+ "Please make sure to NOT use the following options and set on the server "
2195
+ "manually together."
2196
+ msgstr ""
2197
+
2198
+ #: app/features/ix/sync.php:73
2199
+ #, fuzzy
2200
+ #| msgid "Google Cal. Import"
2201
+ msgid "Google import"
2202
+ msgstr "Google Calender Import"
2203
+
2204
+ #: app/features/ix/sync.php:78
2205
+ #, fuzzy
2206
+ #| msgid "Google Cal. Export"
2207
+ msgid "Google export"
2208
+ msgstr "Google Kalender Export"
2209
+
2210
+ #: app/features/ix/sync.php:83
2211
+ #, fuzzy
2212
+ #| msgid "Import"
2213
+ msgid "Meetup import"
2214
+ msgstr "Import"
2215
+
2216
+ #: app/features/ix/sync.php:90
2217
  msgid "Save"
2218
  msgstr "Sichern"
2219
 
2317
  #: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:107
2318
  #: app/skins/monthly_view/calendar_clean.php:107
2319
  #: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
2320
+ #: app/skins/timetable/render.php:33 app/skins/timetable/render.php:139
2321
  #: app/skins/weekly_view/render.php:56 app/skins/yearly_view/render.php:48
2322
  #, fuzzy
2323
  #| msgid "Featured Image"
2325
  msgstr "Ausgewähltes Bild"
2326
 
2327
  #: app/features/labels.php:118 app/features/labels.php:143
2328
+ #: app/libraries/main.php:5099 app/skins/agenda/render.php:41
2329
  #: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:45
2330
  #: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
2331
  #: app/skins/daily_view/render.php:52 app/skins/grid/render.php:53
2333
  #: app/skins/monthly_view/calendar.php:111
2334
  #: app/skins/monthly_view/calendar_clean.php:111
2335
  #: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
2336
+ #: app/skins/timetable/render.php:37 app/skins/timetable/render.php:140
2337
  #: app/skins/weekly_view/render.php:60 app/skins/yearly_view/render.php:52
2338
  msgid "Canceled"
2339
  msgstr "Abgesagt"
2358
  msgid "Event %s"
2359
  msgstr "Event %s"
2360
 
2361
+ #: app/features/locations.php:59 app/features/mec.php:337
2362
  #: app/features/mec/dashboard.php:216 app/features/mec/meta_boxes/filter.php:87
2363
+ #: app/libraries/main.php:4855
2364
  msgid "Locations"
2365
  msgstr "Orte"
2366
 
2434
  "z.B. Karlsruhe Schlosshotel oder Frankfurt Allianz oder Dortmund "
2435
  "Westfalenhalle"
2436
 
2437
+ #: app/features/locations.php:310 app/features/mec/settings.php:609
2438
  #: app/widgets/single.php:115
2439
  msgid "Event Location"
2440
  msgstr "Veranstaltungsort"
2472
  msgid "Don't show map in single event page"
2473
  msgstr "Karte in Einzelansicht nicht anzeigen"
2474
 
2475
+ #: app/features/locations.php:356 app/libraries/main.php:4889
2476
  #, fuzzy
2477
  #| msgid "Locations"
2478
  msgid "Other Locations"
2488
  "Sie können zusätzliche Veranstalter zusätzlich zum Hauptorganisator "
2489
  "auswählen, wenn Sie möchten."
2490
 
2491
+ #: app/features/mec.php:160
2492
  msgid ""
2493
  "Activation faild. Please check your purchase code or license type."
2494
  "<br><b>Note: Your purchase code should match your licesne type.</b>"
2495
  msgstr ""
2496
 
2497
+ #: app/features/mec.php:160
2498
  msgid "Troubleshooting"
2499
  msgstr ""
2500
 
2501
+ #: app/features/mec.php:211
2502
  msgid ""
2503
  "Your options is not in JSON format. Please insert correct options in this "
2504
  "field and try again."
2505
  msgstr ""
2506
 
2507
+ #: app/features/mec.php:218
2508
  #, fuzzy
2509
  #| msgid "Your booking cannot verify!"
2510
  msgid "Your options field can not be empty!"
2511
  msgstr "Ihre Buchung kann nicht verifiziert werden!"
2512
 
2513
+ #: app/features/mec.php:224
2514
  #, fuzzy
2515
  #| msgid "Your booking successfully verified."
2516
  msgid "Your options imported successfuly."
2517
  msgstr "Ihre Buchung wurde erfolgreich verifiziert."
2518
 
2519
+ #: app/features/mec.php:317
2520
  #, fuzzy
2521
  #| msgid "Support"
2522
  msgid "MEC - Support"
2523
  msgstr "Support"
2524
 
2525
+ #: app/features/mec.php:317 app/features/mec/support-page.php:9
2526
  #: app/features/mec/support.php:80 app/features/mec/support.php:93
2527
  msgid "Support"
2528
  msgstr "Support"
2529
 
2530
+ #: app/features/mec.php:338 app/features/mec/dashboard.php:223
2531
  #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2532
+ #: app/libraries/main.php:4857
2533
  msgid "Organizers"
2534
  msgstr "Veranstalter"
2535
 
2536
+ #: app/features/mec.php:346 app/features/mec.php:366
2537
  #: app/features/mec/dashboard.php:209
2538
  msgid "Shortcodes"
2539
  msgstr "Shortcodes"
2540
 
2541
+ #: app/features/mec.php:347
2542
  msgid "MEC - Settings"
2543
  msgstr "MEC - Einstellungen"
2544
 
2545
+ #: app/features/mec.php:348
2546
  #, fuzzy
2547
  #| msgid "MEC - Settings"
2548
  msgid "MEC - Addons"
2549
  msgstr "MEC - Einstellungen"
2550
 
2551
+ #: app/features/mec.php:348 app/features/mec/addons.php:22
2552
  msgid "Addons"
2553
  msgstr ""
2554
 
2555
+ #: app/features/mec.php:368
2556
  msgid "Add Shortcode"
2557
  msgstr "Shortcode hinzufügen"
2558
 
2559
+ #: app/features/mec.php:369
2560
  msgid "Add New Shortcode"
2561
  msgstr "Neuen Shortcode hinzufügen"
2562
 
2563
+ #: app/features/mec.php:370
2564
  msgid "No shortcodes found!"
2565
  msgstr "Keine Shortcodes gefunden!"
2566
 
2567
+ #: app/features/mec.php:371
2568
  msgid "All Shortcodes"
2569
  msgstr "Alle Shortcodes"
2570
 
2571
+ #: app/features/mec.php:372
2572
  msgid "Edit shortcodes"
2573
  msgstr "Shortcode ändern"
2574
 
2575
+ #: app/features/mec.php:373
2576
  msgid "No shortcodes found in Trash!"
2577
  msgstr "Keine Shortcodes im Papierkorb gefunden!"
2578
 
2579
+ #: app/features/mec.php:422
2580
  msgid "Display Options"
2581
  msgstr "Darstellungsoptionen"
2582
 
2583
+ #: app/features/mec.php:423
2584
  msgid "Filter Options"
2585
  msgstr "Filteroptionen"
2586
 
2587
+ #: app/features/mec.php:425
2588
  msgid "Search Form"
2589
  msgstr "Suche Formular"
2590
 
2591
+ #: app/features/mec.php:822
2592
  msgid "Display content's images as Popup"
2593
  msgstr ""
2594
 
2595
+ #: app/features/mec.php:835
2596
  msgid "Single Event Display Method"
2597
  msgstr "Single Event Anzeigemethode"
2598
 
2599
+ #: app/features/mec.php:840
2600
  msgid "Separate Window"
2601
  msgstr "Separates Fenster"
2602
 
2603
+ #: app/features/mec.php:841
2604
  msgid "Modal 1"
2605
  msgstr "Modal 1"
2606
 
2634
  "your host provider in this regard."
2635
  msgstr ""
2636
 
2637
+ #: app/features/mec/booking.php:24 app/features/mec/booking.php:356
2638
+ #: app/features/mec/booking.php:366 app/features/mec/booking.php:408
2639
+ #: app/features/mec/booking.php:422 app/features/mec/gateways.php:11
2640
+ #: app/features/mec/gateways.php:53 app/features/mec/gateways.php:62
2641
+ #: app/features/mec/gateways.php:103 app/features/mec/gateways.php:113
2642
+ #: app/features/mec/messages.php:11 app/features/mec/messages.php:45
2643
+ #: app/features/mec/messages.php:54 app/features/mec/messages.php:88
2644
+ #: app/features/mec/messages.php:97 app/features/mec/modules.php:22
2645
+ #: app/features/mec/modules.php:354 app/features/mec/modules.php:364
2646
+ #: app/features/mec/modules.php:406 app/features/mec/modules.php:420
2647
  #: app/features/mec/notifications.php:10 app/features/mec/notifications.php:646
2648
  #: app/features/mec/notifications.php:658
2649
  #: app/features/mec/notifications.php:754
2650
  #: app/features/mec/notifications.php:768 app/features/mec/regform.php:48
2651
+ #: app/features/mec/regform.php:128 app/features/mec/regform.php:183
2652
+ #: app/features/mec/regform.php:219 app/features/mec/regform.php:228
2653
+ #: app/features/mec/settings.php:31 app/features/mec/settings.php:838
2654
+ #: app/features/mec/settings.php:848 app/features/mec/settings.php:906
2655
+ #: app/features/mec/settings.php:920 app/features/mec/single.php:14
2656
+ #: app/features/mec/single.php:231 app/features/mec/single.php:241
2657
+ #: app/features/mec/single.php:283 app/features/mec/single.php:297
2658
+ #: app/features/mec/styles.php:11 app/features/mec/styles.php:31
2659
+ #: app/features/mec/styles.php:40 app/features/mec/styles.php:77
2660
+ #: app/features/mec/styles.php:86 app/features/mec/styling.php:33
2661
+ #: app/features/mec/styling.php:238 app/features/mec/styling.php:247
2662
+ #: app/features/mec/styling.php:310 app/features/mec/styling.php:319
2663
  msgid "Save Changes"
2664
  msgstr "Änderungen sichern"
2665
 
2666
+ #: app/features/mec/booking.php:48
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2667
  msgid "Enable booking module"
2668
  msgstr "Buchungsmodul aktivieren"
2669
 
2670
+ #: app/features/mec/booking.php:49
2671
  msgid ""
2672
  "After enabling and saving the settings, reloading the page will add 'payment "
2673
  "Gateways' to the settings and a new menu item on the Dashboard"
2674
  msgstr ""
2675
 
2676
+ #: app/features/mec/booking.php:54 app/features/mec/booking.php:59
2677
+ #: app/features/mec/modules.php:303 app/features/mec/modules.php:308
2678
  msgid "Date Format"
2679
  msgstr "Datumsformat"
2680
 
2681
+ #: app/features/mec/booking.php:60
2682
  msgid "Default is Y-m-d"
2683
  msgstr "Voreinstellung ist J-M-T"
2684
 
2685
+ #: app/features/mec/booking.php:67
2686
  #: app/features/mec/meta_boxes/display_options.php:115
2687
  #: app/features/mec/meta_boxes/display_options.php:276
2688
  #: app/features/mec/meta_boxes/display_options.php:332
2692
  msgid "Limit"
2693
  msgstr "Limit"
2694
 
2695
+ #: app/features/mec/booking.php:69
2696
  #, fuzzy
2697
  #| msgid "Default is 6"
2698
  msgid "Default is empty"
2699
  msgstr "Die Voreinstellung ist 6"
2700
 
2701
+ #: app/features/mec/booking.php:72
2702
  #, fuzzy
2703
  #| msgid "Booking Form"
2704
  msgid "Booking Limit"
2705
  msgstr "Buchungsformular"
2706
 
2707
+ #: app/features/mec/booking.php:73
2708
  msgid ""
2709
  "Total tickets that a user can book. It is useful if you're providing free "
2710
  "tickets. Leave it empty for unlimited booking."
2711
  msgstr ""
2712
 
2713
+ #: app/features/mec/booking.php:80
2714
  msgid "Maximum Dates"
2715
  msgstr "Maximale Anzahl von Daten"
2716
 
2717
+ #: app/features/mec/booking.php:82
2718
  msgid "Default is 6"
2719
  msgstr "Die Voreinstellung ist 6"
2720
 
2721
+ #: app/features/mec/booking.php:86 app/features/mec/booking.php:96
2722
  msgid "Thank You Page"
2723
  msgstr "Danke Seite"
2724
 
2725
+ #: app/features/mec/booking.php:97
2726
  msgid ""
2727
  "User redirects to this page after booking. Leave it empty if you want to "
2728
  "disable it."
2730
  "Benutzer werden auf diese Seite nach der Buchung weitergeleitet. Lassen Sie "
2731
  "es leer, wenn Sie es deaktivieren möchten."
2732
 
2733
+ #: app/features/mec/booking.php:108
2734
  msgid "Enable Express Attendees Form"
2735
  msgstr "Aktivieren Sie das Express-Teilnehmerformular"
2736
 
2737
+ #: app/features/mec/booking.php:112 app/modules/booking/steps/form.php:52
2738
  msgid "Attendees Form"
2739
  msgstr "Teilnahmeformular"
2740
 
2741
+ #: app/features/mec/booking.php:113
2742
  msgid ""
2743
  "Users are able to apply first attendee information for other attendees in "
2744
  "the booking form."
2746
  "Benutzer können erste Teilnehmerinformationen für andere Teilnehmer im "
2747
  "Buchungsformular anwenden."
2748
 
2749
+ #: app/features/mec/booking.php:126
2750
  #, fuzzy
2751
  #| msgid "Download Invoice"
2752
  msgid "Enable Invoice"
2753
  msgstr "Download Rechnung"
2754
 
2755
+ #: app/features/mec/booking.php:130
2756
  msgid "Email verification"
2757
  msgstr "Email-Verifizierung"
2758
 
2759
+ #: app/features/mec/booking.php:136
2760
  msgid "Auto verification for free bookings"
2761
  msgstr "Automatische Verifizierung für kostenlose Buchungen"
2762
 
2763
+ #: app/features/mec/booking.php:145
2764
  msgid "Auto verification for paid bookings"
2765
  msgstr "Automatische Verifizierung für kostenpflichtige Buchungen"
2766
 
2767
+ #: app/features/mec/booking.php:149 app/features/mec/notifications.php:150
2768
+ #: app/features/mec/notifications.php:343 app/libraries/main.php:571
2769
+ msgid "Booking Confirmation"
2770
+ msgstr "Buchungsbestätigung"
2771
+
2772
+ #: app/features/mec/booking.php:155
2773
  msgid "Auto confirmation for free bookings"
2774
  msgstr "Automatische Bestätigung für kostenlose Buchungen"
2775
 
2776
+ #: app/features/mec/booking.php:164
2777
  msgid "Auto confirmation for paid bookings"
2778
  msgstr "Automatische Bestätigung für kostenpflichtige Buchungen"
2779
 
2780
+ #: app/features/mec/booking.php:183
2781
  msgid "Enable coupons module"
2782
  msgstr "Gutscheinmodul aktivieren"
2783
 
2784
+ #: app/features/mec/booking.php:185
2785
  msgid ""
2786
  "After enabling and saving the settings,, you should reload the page to see a "
2787
  "new menu on the Dashboard > Booking"
2788
  msgstr ""
2789
 
2790
+ #: app/features/mec/booking.php:193 app/features/mec/notifications.php:72
2791
+ #: app/libraries/main.php:552
2792
+ msgid "Taxes / Fees"
2793
+ msgstr "Steuern/Gebühren"
2794
+
2795
+ #: app/features/mec/booking.php:201
2796
  msgid "Enable taxes / fees module"
2797
  msgstr "Modul für Gebühren/Steuern aktivieren"
2798
 
2799
+ #: app/features/mec/booking.php:206
2800
  msgid "Add Fee"
2801
  msgstr "Gebühr hinzufügen"
2802
 
2803
+ #: app/features/mec/booking.php:270 app/features/mec/notifications.php:73
2804
+ #: app/libraries/main.php:553
2805
+ msgid "Ticket Variations & Options"
2806
+ msgstr ""
2807
+
2808
+ #: app/features/mec/booking.php:278
2809
  #, fuzzy
2810
  #| msgid "Enable coupons module"
2811
  msgid "Enable ticket options module"
2812
  msgstr "Gutscheinmodul aktivieren"
2813
 
2814
+ #: app/features/mec/booking.php:283
2815
  msgid "Add Variation / Option"
2816
  msgstr ""
2817
 
2818
+ #: app/features/mec/booking.php:386 app/features/mec/gateways.php:82
2819
+ #: app/features/mec/messages.php:72 app/features/mec/modules.php:384
2820
+ #: app/features/mec/notifications.php:732 app/features/mec/regform.php:203
2821
+ #: app/features/mec/settings.php:884 app/features/mec/single.php:261
2822
+ #: app/features/mec/styles.php:60 app/features/mec/styling.php:292
2823
  msgid "Saved"
2824
  msgstr "Gesichert"
2825
 
2826
+ #: app/features/mec/booking.php:387 app/features/mec/gateways.php:83
2827
+ #: app/features/mec/messages.php:73 app/features/mec/modules.php:385
2828
+ #: app/features/mec/notifications.php:733 app/features/mec/regform.php:204
2829
+ #: app/features/mec/settings.php:885 app/features/mec/single.php:262
2830
+ #: app/features/mec/styles.php:61 app/features/mec/styling.php:293
2831
  msgid "Settings Saved!"
2832
  msgstr ""
2833
 
2834
+ #: app/features/mec/booking.php:389 app/features/mec/booking.php:411
2835
+ #: app/features/mec/modules.php:387 app/features/mec/modules.php:409
2836
  #: app/features/mec/notifications.php:735
2837
+ #: app/features/mec/notifications.php:757 app/features/mec/settings.php:887
2838
+ #: app/features/mec/settings.php:909 app/features/mec/single.php:264
2839
+ #: app/features/mec/single.php:286 app/libraries/main.php:5098
2840
  msgid "Verified"
2841
  msgstr "Verifiziert"
2842
 
2843
+ #: app/features/mec/booking.php:413 app/features/mec/modules.php:411
2844
+ #: app/features/mec/notifications.php:759 app/features/mec/settings.php:911
2845
+ #: app/features/mec/single.php:288
2846
  msgid "Please Refresh Page"
2847
  msgstr "Bitte Seiten Refresh vornehmen"
2848
 
2923
  msgid "You cannot access this section."
2924
  msgstr ""
2925
 
2926
+ #: app/features/mec/dashboard.php:234 app/features/mec/settings.php:347
2927
  msgid "Upcoming Events"
2928
  msgstr "Bevorstehende Events"
2929
 
2972
  msgid "Change Log"
2973
  msgstr "Änderungsprotokoll"
2974
 
2975
+ #: app/features/mec/gateways.php:40
2976
  msgid "Enable Organizer Payment Module"
2977
  msgstr ""
2978
 
2979
+ #: app/features/mec/gateways.php:44
2980
  #, fuzzy
2981
  #| msgid "Organizer Tel"
2982
  msgid "Organizer Payment"
2983
  msgstr "Organisator Telefon"
2984
 
2985
+ #: app/features/mec/gateways.php:45
2986
  msgid ""
2987
  "By enabling this module, organizers are able to insert their own payment "
2988
  "credentials for enabled gateways per event and receive the payments directly!"
2989
  msgstr ""
2990
 
2991
+ #: app/features/mec/ie.php:21
2992
  msgid ""
2993
  "Insert your backup files below and press import to restore your site's "
2994
  "options to the last backup."
2995
  msgstr ""
2996
 
2997
+ #: app/features/mec/ie.php:22
2998
  msgid ""
2999
  "WARNING! Restoring backup will overwrite all of your current option values. "
3000
  "Caution Indeed."
3001
  msgstr ""
3002
 
3003
+ #: app/features/mec/ie.php:25
3004
  msgid "Please paste your options here"
3005
  msgstr ""
3006
 
3007
+ #: app/features/mec/ie.php:27
3008
  #, fuzzy
3009
  #| msgid "Import Options"
3010
  msgid "Import Settings"
3011
  msgstr "Import Optionen"
3012
 
3013
+ #: app/features/mec/ie.php:37
3014
  #, fuzzy
3015
  #| msgid "Download Invoice"
3016
  msgid "Download Settings"
3017
  msgstr "Download Rechnung\n"
3018
 
3019
+ #: app/features/mec/messages.php:24 app/features/mec/notifications.php:199
3020
+ #: app/features/mec/support.php:66 app/libraries/main.php:805
3021
+ msgid "Messages"
3022
+ msgstr "Nachrichten"
3023
+
3024
+ #: app/features/mec/messages.php:27
3025
  msgid ""
3026
  "You can change some MEC messages here simply. For example if you like to "
3027
  "change \"REGISTER\" button label, you can do it here. By the Way, if your "
3041
  #: app/features/mec/meta_boxes/display_options.php:159
3042
  #: app/features/mec/meta_boxes/display_options.php:531
3043
  #: app/features/mec/meta_boxes/display_options.php:845
3044
+ #: app/features/mec/settings.php:211 app/features/mec/settings.php:235
3045
+ #: app/features/mec/settings.php:244 app/features/mec/settings.php:285
3046
+ #: app/features/mec/settings.php:309 app/features/mec/settings.php:318
3047
  msgid "Classic"
3048
  msgstr "Klassisch"
3049
 
3050
  #: app/features/mec/meta_boxes/display_options.php:35
3051
  #: app/features/mec/meta_boxes/display_options.php:161
3052
+ #: app/features/mec/settings.php:236 app/features/mec/settings.php:246
3053
+ #: app/features/mec/settings.php:310 app/features/mec/settings.php:320
3054
  msgid "Minimal"
3055
  msgstr "Minimal"
3056
 
3060
  #: app/features/mec/meta_boxes/display_options.php:533
3061
  #: app/features/mec/meta_boxes/display_options.php:695
3062
  #: app/features/mec/meta_boxes/display_options.php:847
3063
+ #: app/features/mec/settings.php:213 app/features/mec/settings.php:226
3064
+ #: app/features/mec/settings.php:237 app/features/mec/settings.php:247
3065
+ #: app/features/mec/settings.php:287 app/features/mec/settings.php:300
3066
+ #: app/features/mec/settings.php:311 app/features/mec/settings.php:321
3067
  msgid "Modern"
3068
  msgstr "Modern"
3069
 
3070
  #: app/features/mec/meta_boxes/display_options.php:37
3071
+ #: app/features/mec/settings.php:238 app/features/mec/settings.php:312
3072
  msgid "Standard"
3073
  msgstr "Standard"
3074
 
3075
  #: app/features/mec/meta_boxes/display_options.php:38
3076
+ #: app/features/mec/settings.php:239 app/features/mec/settings.php:313
3077
  msgid "Accordion"
3078
  msgstr "Accordion"
3079
 
3293
  #: app/features/mec/meta_boxes/display_options.php:532
3294
  #: app/features/mec/meta_boxes/display_options.php:696
3295
  #: app/features/mec/meta_boxes/display_options.php:846
3296
+ #: app/features/mec/settings.php:212 app/features/mec/settings.php:227
3297
+ #: app/features/mec/settings.php:245 app/features/mec/settings.php:286
3298
+ #: app/features/mec/settings.php:301 app/features/mec/settings.php:319
3299
  msgid "Clean"
3300
  msgstr "Clean"
3301
 
3302
  #: app/features/mec/meta_boxes/display_options.php:163
3303
  #: app/features/mec/meta_boxes/display_options.php:387
3304
  #: app/features/mec/meta_boxes/display_options.php:535
3305
+ #: app/features/mec/settings.php:215 app/features/mec/settings.php:248
3306
+ #: app/features/mec/settings.php:289 app/features/mec/settings.php:322
3307
  msgid "Simple"
3308
  msgstr "Schlicht"
3309
 
3314
  #: app/features/mec/meta_boxes/display_options.php:165
3315
  #: app/features/mec/meta_boxes/display_options.php:386
3316
  #: app/features/mec/meta_boxes/display_options.php:534
3317
+ #: app/features/mec/settings.php:214 app/features/mec/settings.php:250
3318
+ #: app/features/mec/settings.php:288 app/features/mec/settings.php:324
3319
  msgid "Novel"
3320
  msgstr ""
3321
 
3362
 
3363
  #: app/features/mec/meta_boxes/display_options.php:375
3364
  #: app/features/mec/meta_boxes/display_options.php:396
3365
+ #: app/libraries/main.php:329 app/libraries/main.php:1587
3366
+ #: app/libraries/main.php:1612
3367
  msgid "List View"
3368
  msgstr "Listenansicht"
3369
 
3370
  #: app/features/mec/meta_boxes/display_options.php:376
3371
  #: app/features/mec/meta_boxes/display_options.php:406
3372
+ #: app/libraries/main.php:333 app/libraries/main.php:1581
3373
+ #: app/libraries/main.php:1606
3374
  msgid "Yearly View"
3375
  msgstr "Jahresansicht"
3376
 
3381
 
3382
  #: app/features/mec/meta_boxes/display_options.php:378
3383
  #: app/features/mec/meta_boxes/display_options.php:438
3384
+ #: app/libraries/main.php:336 app/libraries/main.php:1583
3385
+ #: app/libraries/main.php:1608
3386
  msgid "Weekly View"
3387
  msgstr "Wochenansicht"
3388
 
3389
  #: app/features/mec/meta_boxes/display_options.php:379
3390
  #: app/features/mec/meta_boxes/display_options.php:448
3391
+ #: app/libraries/main.php:335 app/libraries/main.php:1584
3392
+ #: app/libraries/main.php:1609
3393
  msgid "Daily View"
3394
  msgstr "Tagesansicht"
3395
 
3780
  #: app/features/mec/meta_boxes/search_form.php:612
3781
  #: app/features/mec/meta_boxes/search_form.php:619
3782
  #: app/features/mec/meta_boxes/search_form.php:626
3783
+ #: app/features/mec/modules.php:122 app/features/mec/settings.php:94
3784
+ #: app/features/mec/settings.php:365
3785
  msgid "Disabled"
3786
  msgstr "Deaktiviert"
3787
 
3795
  #: app/features/mec/meta_boxes/search_form.php:474
3796
  #: app/features/mec/meta_boxes/search_form.php:535
3797
  #: app/features/mec/meta_boxes/search_form.php:596
3798
+ #: app/features/mec/settings.php:735 app/features/mec/single.php:214
3799
  #: app/features/speakers.php:59 app/features/speakers.php:247
3800
+ #: app/libraries/main.php:4860 app/libraries/skins.php:885
3801
  msgid "Speaker"
3802
  msgstr ""
3803
 
3811
  #: app/features/mec/meta_boxes/search_form.php:481
3812
  #: app/features/mec/meta_boxes/search_form.php:542
3813
  #: app/features/mec/meta_boxes/search_form.php:603
3814
+ #: app/features/mec/settings.php:742 app/features/mec/single.php:223
3815
  #: app/libraries/skins.php:911
3816
  #, fuzzy
3817
  #| msgid "Tags"
3865
  msgid "No Search Options"
3866
  msgstr "Keine Suchoptionen"
3867
 
3868
+ #: app/features/mec/modules.php:40
3869
  #, fuzzy
3870
  #| msgid "No Search Options"
3871
  msgid "Speakers Options"
3872
  msgstr "Keine Suchoptionen"
3873
 
3874
+ #: app/features/mec/modules.php:46
3875
  #, fuzzy
3876
  #| msgid "Enable taxes / fees module"
3877
  msgid "Enable speakers feature"
3878
  msgstr "Modul für Gebühren/Steuern aktivieren"
3879
 
3880
+ #: app/features/mec/modules.php:50
3881
  msgid ""
3882
  "Enable this option to have speaker in Hourly Schedule in Single. Refresh "
3883
  "after enabling it to see the Speakers menu under MEC dashboard."
3884
  msgstr ""
3885
 
3886
+ #: app/features/mec/modules.php:55
3887
  msgid ""
3888
  "After enabling and saving the settings, you should reload the page to see a "
3889
  "new menu on the Dashboard > MEC"
3890
  msgstr ""
3891
 
3892
+ #: app/features/mec/modules.php:72
3893
  msgid "Show Google Maps on event page"
3894
  msgstr "Google Maps auf der Veranstaltungsseite anzeigen"
3895
 
3896
+ #: app/features/mec/modules.php:77 app/features/mec/modules.php:235
3897
+ #: app/features/mec/settings.php:772 app/features/mec/settings.php:777
3898
  msgid "API Key"
3899
  msgstr "API Schlüssel"
3900
 
3901
+ #: app/features/mec/modules.php:83 app/features/mec/settings.php:778
3902
+ #: app/features/mec/settings.php:791
3903
  msgid "Required!"
3904
  msgstr "Erforderlich (Pflichtfeld)"
3905
 
3906
+ #: app/features/mec/modules.php:90 app/features/mec/modules.php:99
3907
  msgid "Zoom level"
3908
  msgstr "Zoom"
3909
 
3910
+ #: app/features/mec/modules.php:100
3911
  msgid ""
3912
  "For Google Maps module in single event page. In Google Maps skin, it will "
3913
  "caculate the zoom level automatically based on event boundaries."
3916
  "es die Zoom-Ebene automatisch kalkulieren, basierend auf den Eventort "
3917
  "Angrenzungen"
3918
 
3919
+ #: app/features/mec/modules.php:107
3920
  msgid "Google Maps Style"
3921
  msgstr "Google Maps Stil"
3922
 
3923
+ #: app/features/mec/modules.php:111 app/features/mec/single.php:85
3924
  msgid "Default"
3925
  msgstr "Standardeinstellung"
3926
 
3927
+ #: app/features/mec/modules.php:119
3928
  msgid "Direction on single event"
3929
  msgstr "Richtung auf einzelne Veranstaltung"
3930
 
3931
+ #: app/features/mec/modules.php:123
3932
  msgid "Simple Method"
3933
  msgstr "Einfache Methode"
3934
 
3935
+ #: app/features/mec/modules.php:124
3936
  msgid "Advanced Method"
3937
  msgstr "Fortgeschrittene Methode"
3938
 
3939
+ #: app/features/mec/modules.php:129 app/features/mec/modules.php:134
3940
  msgid "Lightbox Date Format"
3941
  msgstr "Leuchtkasten Datumsformat"
3942
 
3943
+ #: app/features/mec/modules.php:135
3944
  msgid "Default value is M d Y"
3945
  msgstr "Standardwert ist M T J"
3946
 
3947
+ #: app/features/mec/modules.php:142 app/features/mec/modules.php:150
3948
  msgid "Google Maps API"
3949
  msgstr "Google Maps API"
3950
 
3951
+ #: app/features/mec/modules.php:146
3952
  msgid "Don't load Google Maps API library"
3953
  msgstr "Google Maps API Bibliothek nicht laden"
3954
 
3955
+ #: app/features/mec/modules.php:151
3956
  msgid "Check it only if another plugin/theme is loading the Google Maps API"
3957
  msgstr ""
3958
  "Checken Sie es nur wenn ein anderes plugin/Thema die Google Maps API lädt."
3959
 
3960
+ #: app/features/mec/modules.php:164 app/features/mec/notifications.php:92
3961
+ #: app/libraries/main.php:559
3962
+ #, fuzzy
3963
+ #| msgid "Import Options"
3964
+ msgid "Export Options"
3965
+ msgstr "Import Optionen"
3966
+
3967
+ #: app/features/mec/modules.php:168
3968
  msgid ""
3969
  "Show export module (iCal export and add to Google calendars) on event page"
3970
  msgstr ""
3971
  "Exportmodule auf Veranstaltungsseite anzeigen (iCal export und hinzufügen zu "
3972
  "Google calendars)"
3973
 
3974
+ #: app/features/mec/modules.php:175
3975
  msgid "Google Calendar"
3976
  msgstr "Google Calendar"
3977
 
3978
+ #: app/features/mec/modules.php:191 app/features/mec/notifications.php:93
3979
+ #: app/libraries/main.php:560 app/modules/local-time/details.php:42
3980
+ #: app/widgets/single.php:99
3981
+ msgid "Local Time"
3982
+ msgstr "Lokale Zeit"
3983
+
3984
+ #: app/features/mec/modules.php:195
3985
  msgid "Show event time based on local time of visitor on event page"
3986
  msgstr ""
3987
  "Zeige die Eventzeit basierend auf der Ortszeit des Besuchers auf der "
3988
  "Eventseite"
3989
 
3990
+ #: app/features/mec/modules.php:205 app/features/mec/notifications.php:95
3991
+ #: app/libraries/main.php:561 app/modules/qrcode/details.php:38
3992
+ #: app/widgets/single.php:155
3993
+ msgid "QR Code"
3994
+ msgstr "QR Code"
3995
+
3996
+ #: app/features/mec/modules.php:213
3997
  msgid "Show QR code of event in details page and booking invoice"
3998
  msgstr ""
3999
  "Zeigen Sie QR-Code des Events in der Detailseite und in der Buchungsrechnung "
4000
  "an"
4001
 
4002
+ #: app/features/mec/modules.php:223 app/features/mec/notifications.php:96
4003
+ #: app/libraries/main.php:562 app/modules/weather/details.php:37
4004
+ msgid "Weather"
4005
+ msgstr "Wetter"
4006
+
4007
+ #: app/features/mec/modules.php:230
4008
  msgid "Show weather module on event page"
4009
  msgstr "Wettermodul auf der Eventseite anzeigen"
4010
 
4011
+ #: app/features/mec/modules.php:238
4012
  #, php-format
4013
  msgid "You can get a free API Key from %s"
4014
  msgstr "Sie können einen kostenlosen API-Schlüssel von% s erhalten"
4015
 
4016
+ #: app/features/mec/modules.php:244
4017
  #, fuzzy
4018
  #| msgid "Show weather module on event page"
4019
  msgid "Show weather imperial units"
4020
  msgstr "Wettermodul auf der Eventseite anzeigen"
4021
 
4022
+ #: app/features/mec/modules.php:250
4023
  msgid "Show weather change units button"
4024
  msgstr ""
4025
 
4026
+ #: app/features/mec/modules.php:264
4027
  msgid "Show social network module"
4028
  msgstr "Modul für Soziale Netzwerke anzeigen"
4029
 
4030
+ #: app/features/mec/modules.php:285 app/features/mec/notifications.php:99
4031
+ #: app/libraries/main.php:564 app/modules/next-event/details.php:82
4032
+ msgid "Next Event"
4033
+ msgstr "Nächstes Event"
4034
+
4035
+ #: app/features/mec/modules.php:289
4036
  msgid "Show next event module on event page"
4037
  msgstr "Nächstes Event Modul auf der Eventseite anzeigen"
4038
 
4039
+ #: app/features/mec/modules.php:294
4040
  msgid "Method"
4041
  msgstr "Methode"
4042
 
4043
+ #: app/features/mec/modules.php:297
4044
  msgid "Next Occurrence of Current Event"
4045
  msgstr "Nächstes Auftreten des aktuellen Events"
4046
 
4047
+ #: app/features/mec/modules.php:298
4048
  msgid "Next Occurrence of Other Events"
4049
  msgstr "Nächstes Auftreten von anderen Events."
4050
 
4051
+ #: app/features/mec/modules.php:309 app/features/mec/single.php:39
4052
  msgid "Default is M d Y"
4053
  msgstr "Standardwert ist M-T-J"
4054
 
4055
+ #: app/features/mec/modules.php:325
4056
  msgid "Enable BuddyPress Integration"
4057
  msgstr "Buddy Press Integration deaktivieren"
4058
 
4059
+ #: app/features/mec/modules.php:332
4060
  msgid "Show \"Attendees Module\" in event details page"
4061
  msgstr "Zeigt \"Teilnehmermodul\" in Event Details Seite"
4062
 
4063
+ #: app/features/mec/modules.php:336
4064
  msgid "Attendees Limit"
4065
  msgstr "Teilnehmer Limit, maximale Anzahl"
4066
 
4067
+ #: app/features/mec/modules.php:344
4068
  msgid "Add booking activity to user profile"
4069
  msgstr "Fügt Buchungsaktivitäten dem Benutzerprofil hinzu"
4070
 
4071
+ #: app/features/mec/notifications.php:28 app/features/mec/settings.php:176
4072
+ #: app/libraries/main.php:529
4073
+ msgid "Archive Pages"
4074
+ msgstr ""
4075
+
4076
+ #: app/features/mec/notifications.php:33 app/features/mec/settings.php:682
4077
+ #: app/libraries/main.php:534
4078
+ msgid "User Profile"
4079
+ msgstr ""
4080
+
4081
+ #: app/features/mec/notifications.php:34 app/features/mec/settings.php:689
4082
+ #: app/libraries/main.php:535
4083
+ #, fuzzy
4084
+ #| msgid "Search Form"
4085
+ msgid "Search Bar"
4086
+ msgstr "Suche Formular"
4087
+
4088
+ #: app/features/mec/notifications.php:38 app/libraries/main.php:537
4089
+ #, fuzzy
4090
+ #| msgid "Upload/Add image"
4091
+ msgid "Upload Field"
4092
+ msgstr "Bild hochladen/hinzufügen"
4093
+
4094
+ #: app/features/mec/notifications.php:46 app/libraries/main.php:626
4095
+ #, fuzzy
4096
+ #| msgid "Single Event Style"
4097
+ msgid "Single Event"
4098
+ msgstr "Single Event Stil"
4099
+
4100
+ #: app/features/mec/notifications.php:50 app/features/mec/single.php:31
4101
+ #: app/libraries/main.php:541
4102
+ #, fuzzy
4103
+ #| msgid "Single Event Style"
4104
+ msgid "Single Event Page"
4105
+ msgstr "Single Event Stil"
4106
+
4107
+ #: app/features/mec/notifications.php:53 app/features/mec/single.php:168
4108
+ #: app/libraries/main.php:544
4109
+ msgid "Additional Organizers"
4110
+ msgstr "Zusätzliche Organisatoren"
4111
+
4112
+ #: app/features/mec/notifications.php:54 app/libraries/main.php:545
4113
+ #, fuzzy
4114
+ #| msgid "Additional Organizers"
4115
+ msgid "Additional Locations"
4116
+ msgstr "Zusätzliche Organisatoren"
4117
+
4118
+ #: app/features/mec/notifications.php:55 app/features/mec/single.php:188
4119
+ #: app/libraries/main.php:546 app/skins/single.php:163
4120
+ #, fuzzy
4121
+ #| msgid "featured event"
4122
+ msgid "Related Events"
4123
+ msgstr "Ausgewählte Veranstaltung"
4124
+
4125
+ #: app/features/mec/notifications.php:84 app/libraries/main.php:692
4126
+ #, fuzzy
4127
+ #| msgid "Social Module : "
4128
+ msgid "Modules"
4129
+ msgstr "Social Modul:"
4130
+
4131
+ #: app/features/mec/notifications.php:144
4132
+ #: app/features/mec/notifications.php:291 app/libraries/main.php:570
4133
+ msgid "Booking Verification"
4134
+ msgstr "Verifizierung der Buchung"
4135
+
4136
+ #: app/features/mec/notifications.php:156
4137
+ #: app/features/mec/notifications.php:395 app/libraries/main.php:572
4138
+ #, fuzzy
4139
+ #| msgid "Booking cancellation link."
4140
+ msgid "Booking Cancellation"
4141
+ msgstr "Link zur Stornierung der Buchung"
4142
+
4143
+ #: app/features/mec/notifications.php:162
4144
+ #: app/features/mec/notifications.php:463 app/libraries/main.php:574
4145
+ msgid "Admin"
4146
+ msgstr ""
4147
+
4148
+ #: app/features/mec/notifications.php:168
4149
+ #: app/features/mec/notifications.php:523 app/libraries/main.php:573
4150
+ #: app/libraries/notifications.php:405
4151
+ msgid "Booking Reminder"
4152
+ msgstr "Buchungs Erinnerung"
4153
+
4154
+ #: app/features/mec/notifications.php:174
4155
+ #: app/features/mec/notifications.php:599 app/features/mec/support-page.php:80
4156
+ #: app/libraries/main.php:575
4157
+ msgid "New Event"
4158
+ msgstr "Neue Veranstaltung"
4159
+
4160
+ #: app/features/mec/notifications.php:185 app/features/mec/support.php:52
4161
+ #: app/libraries/main.php:791
4162
+ msgid "Styling Options"
4163
+ msgstr "Styling-Optionen"
4164
+
4165
+ #: app/features/mec/notifications.php:192 app/features/mec/support.php:59
4166
+ #: app/libraries/main.php:798
4167
+ msgid "Custom CSS"
4168
+ msgstr "Custom CSS"
4169
+
4170
  #: app/features/mec/notifications.php:231
4171
  msgid "Enable booking notification"
4172
  msgstr "Buchungsbenachrichtigung aktivieren"
4569
  msgid "Status of event"
4570
  msgstr "Status der Veranstaltung"
4571
 
4572
+ #: app/features/mec/notifications.php:632 app/features/mec/settings.php:651
4573
+ #: app/features/mec/settings.php:655
4574
  msgid "Event Note"
4575
  msgstr "Veranstaltungsnotiz"
4576
 
4578
  msgid "Admin events management link."
4579
  msgstr "Admin-link zur Veranstaltungsverwaltung"
4580
 
4581
+ #: app/features/mec/settings.php:52 app/features/mec/settings.php:62
4582
  msgid "Hide Events"
4583
  msgstr "Events verbergen"
4584
 
4585
+ #: app/features/mec/settings.php:55
4586
  msgid "On Event Start"
4587
  msgstr "Am Event Start"
4588
 
4589
+ #: app/features/mec/settings.php:56
4590
  msgid "+1 Hour after start"
4591
  msgstr "+1 Stunde nach dem Start"
4592
 
4593
+ #: app/features/mec/settings.php:57
4594
  msgid "+2 Hours after start"
4595
  msgstr "+2 Stunden nach dem Start"
4596
 
4597
+ #: app/features/mec/settings.php:58
4598
  msgid "On Event End"
4599
  msgstr "Am Event Ende"
4600
 
4601
+ #: app/features/mec/settings.php:63
4602
  msgid ""
4603
  "This option is for showing start/end time of events on frontend of website."
4604
  msgstr ""
4605
  "Diese Option ist um die Start/Endezeit von Events im Frontend der Webseite "
4606
  "anzuzeigen"
4607
 
4608
+ #: app/features/mec/settings.php:72 app/features/mec/settings.php:81
4609
  msgid "Multiple Day Events"
4610
  msgstr "Mehrtagesveranstaltung"
4611
 
4612
+ #: app/features/mec/settings.php:75
4613
  msgid "Show only first day on List/Grid/Slider skins"
4614
  msgstr "Zeige nur den ersten Tag auf Listen/Raster(Grid)/Slider skins."
4615
 
4616
+ #: app/features/mec/settings.php:76
4617
  msgid "Show only first day on all skins"
4618
  msgstr "Nur den ersten Tag in allen Ansichten zeigen"
4619
 
4620
+ #: app/features/mec/settings.php:77
4621
  msgid "Show all days"
4622
  msgstr "Alle Tage anzeigen"
4623
 
4624
+ #: app/features/mec/settings.php:82
4625
  msgid ""
4626
  "For showing all days of multiple day events on frontend or only show the "
4627
  "first day."
4629
  "Um alle Tage anzuzeigen bei Events über mehrere Tage im Frontend oder nur "
4630
  "den ersten Tag anzeigen"
4631
 
4632
+ #: app/features/mec/settings.php:91
4633
  msgid "Remove MEC Data on Plugin Uninstall"
4634
  msgstr "Entfernen von MEC Data auf dem Plugin Deinstallierer"
4635
 
4636
+ #: app/features/mec/settings.php:95
4637
  msgid "Enabled"
4638
  msgstr "Aktiviert"
4639
 
4640
+ #: app/features/mec/settings.php:101
4641
  msgid "Exclude Date Suffix"
4642
  msgstr "Ausschlussdatum Suffix"
4643
 
4644
+ #: app/features/mec/settings.php:104
4645
  msgid "Remove suffix from calendars"
4646
  msgstr "Suffix aus den Kalendern entfernen"
4647
 
4648
+ #: app/features/mec/settings.php:108
4649
  #, fuzzy
4650
  #| msgid "Remove suffix from calendars"
4651
  msgid "Remove \"Th\" on calendar"
4652
  msgstr "Suffix aus den Kalendern entfernen"
4653
 
4654
+ #: app/features/mec/settings.php:109
4655
  msgid ""
4656
  "Checked this checkbox to remove 'Th' on calendar ( ex: '12Th' remove Th, "
4657
  "showing just '12' )"
4658
  msgstr ""
4659
 
4660
+ #: app/features/mec/settings.php:116 app/features/mec/settings.php:123
4661
+ msgid "Schema"
4662
+ msgstr ""
4663
+
4664
+ #: app/features/mec/settings.php:119
4665
+ #, fuzzy
4666
+ #| msgid "Enable coupons module"
4667
+ msgid "Enable Schema Code"
4668
+ msgstr "Gutscheinmodul aktivieren"
4669
+
4670
+ #: app/features/mec/settings.php:124
4671
+ msgid "You can enable/disable Schema scripts"
4672
+ msgstr ""
4673
+
4674
+ #: app/features/mec/settings.php:133 app/features/mec/settings.php:143
4675
+ #: app/libraries/main.php:4864
4676
  msgid "Weekdays"
4677
  msgstr "Wochentage"
4678
 
4679
+ #: app/features/mec/settings.php:144
4680
  #, fuzzy
4681
  #| msgid ""
4682
  #| "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, "
4689
  "Vorsichtig vorgehen. Standardwert ist auf Montag, Dienstag, Mittwoch, "
4690
  "Donnerstag und Freitag gesetzt."
4691
 
4692
+ #: app/features/mec/settings.php:154 app/features/mec/settings.php:164
4693
  msgid "Weekends"
4694
  msgstr "Wochenenden"
4695
 
4696
+ #: app/features/mec/settings.php:165
4697
  msgid ""
4698
  "Proceed with caution. Default is set to Saturday and Sunday ( you can change "
4699
  "'Week Starts' on WordPress Dashboard > Settings > General - bottom of the "
4700
  "page )."
4701
  msgstr ""
4702
 
4703
+ #: app/features/mec/settings.php:179 app/features/mec/settings.php:184
4704
  msgid "Archive Page Title"
4705
  msgstr "Titel der Archivseite"
4706
 
4707
+ #: app/features/mec/settings.php:185
4708
  #, fuzzy
4709
  #| msgid "Default value is Events"
4710
  msgid "Default value is Events - It's title of the page"
4711
  msgstr "Der Standardwert ist Ereignisse (Events)"
4712
 
4713
+ #: app/features/mec/settings.php:193 app/features/mec/settings.php:261
4714
  msgid "Archive Page Skin"
4715
  msgstr "Skin Seite Archiv"
4716
 
4717
+ #: app/features/mec/settings.php:201
4718
  #, fuzzy
4719
  #| msgid "Edit shortcodes"
4720
  msgid "Put shortcode..."
4721
  msgstr "Shortcode ändern"
4722
 
4723
+ #: app/features/mec/settings.php:204 app/features/mec/settings.php:219
4724
+ #: app/features/mec/settings.php:222 app/features/mec/settings.php:231
4725
+ #: app/features/mec/settings.php:257 app/features/mec/settings.php:278
4726
+ #: app/features/mec/settings.php:293 app/features/mec/settings.php:296
4727
+ #: app/features/mec/settings.php:305 app/features/mec/settings.php:331
4728
  #, fuzzy
4729
  #| msgid "The event is ongoing."
4730
  msgid "There is no skins"
4731
  msgstr "Die Veranstaltung ist im Gange."
4732
 
4733
+ #: app/features/mec/settings.php:207 app/features/mec/settings.php:281
4734
+ #: app/features/mec/single.php:66
4735
  msgid "Modern Style"
4736
  msgstr "Moderner Stil"
4737
 
4738
+ #: app/features/mec/settings.php:249 app/features/mec/settings.php:323
4739
  #, fuzzy
4740
  #| msgid "Colorful"
4741
  msgid "colorful"
4742
  msgstr "Farbenfroh"
4743
 
4744
+ #: app/features/mec/settings.php:254 app/features/mec/settings.php:328
4745
  #, fuzzy
4746
  #| msgid "Plain Style"
4747
  msgid "Clean Style"
4748
  msgstr "Einfacher schlichter Stil"
4749
 
4750
+ #: app/features/mec/settings.php:262
4751
  #, fuzzy
4752
  #| msgid "Default value is Calendar/Monthly View"
4753
  msgid "Default value is Calendar/Monthly View, But you can change it "
4754
  msgstr "Der Standardwert ist Kalender / Monatsansicht"
4755
 
4756
+ #: app/features/mec/settings.php:262 app/features/mec/settings.php:336
4757
  msgid "See Demo"
4758
  msgstr ""
4759
 
4760
+ #: app/features/mec/settings.php:270 app/features/mec/settings.php:335
4761
  msgid "Category Page Skin"
4762
  msgstr "Kategorie Seiten Skin"
4763
 
4764
+ #: app/features/mec/settings.php:336
4765
  msgid ""
4766
  "Default value is List View - But you can change it Set a skin for all "
4767
  "categories."
4768
  msgstr ""
4769
 
4770
+ #: app/features/mec/settings.php:344 app/features/mec/settings.php:352
4771
  msgid "Category Events Method"
4772
  msgstr ""
4773
 
4774
+ #: app/features/mec/settings.php:348
4775
  msgid "Expired Events"
4776
  msgstr ""
4777
 
4778
+ #: app/features/mec/settings.php:353
4779
  msgid "Default value is Upcoming Events"
4780
  msgstr ""
4781
 
4782
+ #: app/features/mec/settings.php:361 app/features/mec/settings.php:369
4783
  msgid "Events Archive Status"
4784
  msgstr "Events Archiv Status"
4785
 
4786
+ #: app/features/mec/settings.php:364
4787
  msgid "Enabled (Recommended)"
4788
  msgstr "Ist aktiviert (empfohlen)"
4789
 
4790
+ #: app/features/mec/settings.php:370
4791
  msgid ""
4792
  "If you disable it, then you should create a page as archive page of MEC. "
4793
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
4797
  "erstellen. Page´s slug muss gleich sein wie \"Main Slug\" von MEC. Außerdem "
4798
  "werden alle MEC-Rewrite-Regeln deaktiviert."
4799
 
4800
+ #: app/features/mec/settings.php:383 app/features/mec/settings.php:388
4801
  msgid "Main Slug"
4802
  msgstr "Main Slug"
4803
 
4804
+ #: app/features/mec/settings.php:389
4805
  msgid ""
4806
  "Default value is events. You can not have a page with this name. MEC allows "
4807
  "you to create custom URLs for the permalinks and archives to enhance the "
4808
  "applicability and forward-compatibility of the links."
4809
  msgstr ""
4810
 
4811
+ #: app/features/mec/settings.php:393 app/features/mec/settings.php:407
4812
  #, fuzzy
4813
  #| msgid ""
4814
  #| "Default value is events. Valid characters are lowercase a-z, - character "
4818
  "Standardwert ist Events. Gültige Zeichen sind Kleinbuchstaben a-z, - Zeichen "
4819
  "und Zahlen."
4820
 
4821
+ #: app/features/mec/settings.php:397 app/features/mec/settings.php:402
4822
  msgid "Category Slug"
4823
  msgstr "Category Slug"
4824
 
4825
+ #: app/features/mec/settings.php:403
4826
  #, fuzzy
4827
  #| msgid ""
4828
  #| "It's slug of MEC categories, you can change it to events-cat or something "
4838
  "für den link. Zum Beispiel example.com/events-cat oder example.com/mec-"
4839
  "category"
4840
 
4841
+ #: app/features/mec/settings.php:415
4842
  msgid "Currency"
4843
  msgstr "Währung"
4844
 
4845
+ #: app/features/mec/settings.php:425 app/features/mec/settings.php:430
4846
  msgid "Currency Sign"
4847
  msgstr "Währungssymbol"
4848
 
4849
+ #: app/features/mec/settings.php:431
4850
  msgid "Default value will be \"currency\" if you leave it empty."
4851
  msgstr "Standardwert wird \"currency\" sein wenn Sie es leer lassen"
4852
 
4853
+ #: app/features/mec/settings.php:438
4854
  msgid "Currency Position"
4855
  msgstr "Position des Währungssymbols"
4856
 
4857
+ #: app/features/mec/settings.php:441
4858
  msgid "Before $10"
4859
  msgstr "Vor $10"
4860
 
4861
+ #: app/features/mec/settings.php:442
4862
  msgid "After 10$"
4863
  msgstr "Nach 10$"
4864
 
4865
+ #: app/features/mec/settings.php:447
4866
  msgid "Thousand Separator"
4867
  msgstr "Tausendertrennzeichen"
4868
 
4869
+ #: app/features/mec/settings.php:453
4870
  msgid "Decimal Separator"
4871
  msgstr "Dezimaltrennzeichen"
4872
 
4873
+ #: app/features/mec/settings.php:463
4874
  msgid "No decimal"
4875
  msgstr "Keine Dezimale"
4876
 
4877
+ #: app/features/mec/settings.php:474
4878
  msgid "Enable Google Recaptcha"
4879
  msgstr "Google Recaptcha aktivieren"
4880
 
4881
+ #: app/features/mec/settings.php:481
4882
  msgid "Enable on booking form"
4883
  msgstr "Auf dem Buchungsformular aktivieren"
4884
 
4885
+ #: app/features/mec/settings.php:487
4886
  #, fuzzy
4887
  #| msgid "Enable on \"Frontend Event Submittion\" form"
4888
  msgid "Enable on \"Frontend Event Submission\" form"
4889
  msgstr "Aktivieren auf dem \"Frontend Event Submittion\" Formular"
4890
 
4891
+ #: app/features/mec/settings.php:491
4892
  msgid "Site Key"
4893
  msgstr "Site Key (Seitenschlüssel)"
4894
 
4895
+ #: app/features/mec/settings.php:497
4896
  msgid "Secret Key"
4897
  msgstr "Geheimschlüssel"
4898
 
4899
+ #: app/features/mec/settings.php:509 app/features/mec/settings.php:517
4900
  msgid "Time Format"
4901
  msgstr "Zeitformat"
4902
 
4903
+ #: app/features/mec/settings.php:512
4904
  msgid "12 hours format with AM/PM"
4905
  msgstr "12-Stunden-Format mit AM/FM"
4906
 
4907
+ #: app/features/mec/settings.php:513
4908
  msgid "24 hours format"
4909
  msgstr "24-Stunden-Format"
4910
 
4911
+ #: app/features/mec/settings.php:518
4912
  msgid "This option, affects the selection of Start/End time."
4913
  msgstr ""
4914
 
4915
+ #: app/features/mec/settings.php:526
4916
  msgid "Events List Page"
4917
  msgstr "Seite Liste der Veranstaltungen"
4918
 
4919
+ #: app/features/mec/settings.php:535 app/features/mec/settings.php:547
4920
  #, php-format
4921
  msgid "Put %s shortcode into the page."
4922
  msgstr "%s shortcode in die Seite einfügen"
4923
 
4924
+ #: app/features/mec/settings.php:538
4925
  msgid "Add/Edit Events Page"
4926
  msgstr "Veranstaltungsseite hinzufügen/bearbeiten"
4927
 
4928
+ #: app/features/mec/settings.php:552
4929
  msgid "Enable event submission by guest (Not logged-in) users"
4930
  msgstr ""
4931
  "Das Erstellen von Veranstaltungen durch Gäste (nicht angemeldete Nutzer) "
4932
  "erlauben"
4933
 
4934
+ #: app/features/mec/settings.php:559
4935
  msgid "Enable mandatory email and name for guest user"
4936
  msgstr ""
4937
  "Aktivieren Sie die obligatorische E-Mail und den Namen für Gastbenutzer"
4938
 
4939
+ #: app/features/mec/settings.php:563
4940
  msgid "Frontend Event Submission Sections"
4941
  msgstr "Frontend Veranstaltungen Einreichung Sektionen"
4942
 
4943
+ #: app/features/mec/settings.php:585 app/widgets/single.php:119
4944
  msgid "Event Categories"
4945
  msgstr "Veranstaltungskategorien"
4946
 
4947
+ #: app/features/mec/settings.php:591
4948
  msgid "Event Labels"
4949
  msgstr "Event Labels"
4950
 
4951
+ #: app/features/mec/settings.php:603
4952
  msgid "Event Tags"
4953
  msgstr "Event Schlagworte"
4954
 
4955
+ #: app/features/mec/settings.php:615 app/widgets/single.php:123
4956
  msgid "Event Organizer"
4957
  msgstr "Veranstaltungsmanager"
4958
 
4959
+ #: app/features/mec/settings.php:633
4960
  msgid "Booking Options"
4961
  msgstr "Buchungsoptionen"
4962
 
4963
+ #: app/features/mec/settings.php:639
4964
  #, fuzzy
4965
  #| msgid "Fees/Taxes Options"
4966
  msgid "Fees / Taxes Options"
4967
  msgstr "Gebühren/Steuer Optionen"
4968
 
4969
+ #: app/features/mec/settings.php:656
4970
  #, php-format
4971
  msgid ""
4972
  "Users can put a note for editors while they're submitting the event. Also "
4978
  "Eventbenachrichtigung setzen, um die Notizen der Benutzer in der E-Mail zu "
4979
  "erhalten."
4980
 
4981
+ #: app/features/mec/settings.php:663 app/features/mec/settings.php:672
4982
  msgid "Visibility of Note"
4983
  msgstr "Sichtbarkeit der Anmerkungen zum Event "
4984
 
4985
+ #: app/features/mec/settings.php:666
4986
  msgid "Always"
4987
  msgstr "Immer"
4988
 
4989
+ #: app/features/mec/settings.php:667
4990
  msgid "While event is not published"
4991
  msgstr "Das Ereignis wird nicht veröffentlicht"
4992
 
4993
+ #: app/features/mec/settings.php:673
4994
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
4995
  msgstr ""
4996
  "Die Ereignisnotiz wird im Frontend-Einreichungsformular angezeigt und das "
4997
  "Ereignis im Backend bearbeitet."
4998
 
4999
+ #: app/features/mec/settings.php:684
5000
  #, php-format
5001
  msgid ""
5002
  "Put %s shortcode into your desired page. Then users are able to see history "
5003
  "of their bookings."
5004
  msgstr ""
5005
 
5006
+ #: app/features/mec/settings.php:691
5007
  #, php-format
5008
  msgid ""
5009
  "Put %s shortcode into your desired page. Then users are able to search events"
5010
  msgstr ""
5011
 
5012
+ #: app/features/mec/settings.php:695
5013
  msgid "Ajax Live mode"
5014
  msgstr ""
5015
 
5016
+ #: app/features/mec/settings.php:699
5017
  msgid "Ajax mode"
5018
  msgstr ""
5019
 
5020
+ #: app/features/mec/settings.php:700
5021
  msgid ""
5022
  "if you enable this option, search button disappeared and to use this "
5023
  "feature, text input field must be enabled."
5024
  msgstr ""
5025
 
5026
+ #: app/features/mec/settings.php:708
5027
+ #, fuzzy
5028
+ #| msgid "Modern Style"
5029
+ msgid "Modern Type"
5030
+ msgstr "Moderner Stil"
5031
+
5032
+ #: app/features/mec/settings.php:712
5033
  #, fuzzy
5034
  #| msgid "Search Form"
5035
  msgid "Search bar fields"
5036
  msgstr "Suche Formular"
5037
 
5038
+ #: app/features/mec/settings.php:754
5039
  #, fuzzy
5040
  #| msgid "Text Input"
5041
  msgid "Text input"
5042
  msgstr "Text eingeben"
5043
 
5044
+ #: app/features/mec/settings.php:767
5045
  msgid "Enable Mailchimp Integration"
5046
  msgstr "Mailchimp Integration deaktivieren"
5047
 
5048
+ #: app/features/mec/settings.php:785 app/features/mec/settings.php:790
5049
  msgid "List ID"
5050
  msgstr "List ID"
5051
 
5052
+ #: app/features/mec/settings.php:798 app/features/mec/settings.php:806
5053
  msgid "Subscription Status"
5054
  msgstr "Buchungsstatus"
5055
 
5056
+ #: app/features/mec/settings.php:801
5057
  msgid "Subscribe automatically"
5058
  msgstr "automatisch Anmelden/Abonnieren"
5059
 
5060
+ #: app/features/mec/settings.php:802
5061
  msgid "Subscribe by verification"
5062
  msgstr ""
5063
  "Anmelden/Abonnieren durch Bestätigung\n"
5064
  " "
5065
 
5066
+ #: app/features/mec/settings.php:807
5067
  msgid ""
5068
  "If you choose \"Subscribe by verification\" then an email will send to user "
5069
  "by mailchimp for subscription verification."
5071
  "Wenn Sie \"Anmelden durch Verifizierung\" wählen, wird eine E-Mail an den "
5072
  "Benutzer per Mailchimp zur Bestätigung gesendet."
5073
 
5074
+ #: app/features/mec/settings.php:819
5075
  #, fuzzy
5076
  #| msgid "Filter Options"
5077
  msgid "Upload Field Options"
5078
  msgstr "Filteroptionen"
5079
 
5080
+ #: app/features/mec/settings.php:821
5081
  msgid "Mime types"
5082
  msgstr ""
5083
 
5084
+ #: app/features/mec/settings.php:825
5085
  msgid "Split mime types with \",\"."
5086
  msgstr ""
5087
 
5088
+ #: app/features/mec/settings.php:825
5089
  msgid "Default: jpeg,jpg,png,pdf"
5090
  msgstr ""
5091
 
5092
+ #: app/features/mec/settings.php:828
5093
  #, fuzzy
5094
  #| msgid "Amount (Per Ticket)"
5095
  msgid "Maximum file size"
5096
  msgstr "Betrag (pro Ticket)"
5097
 
5098
+ #: app/features/mec/settings.php:832
5099
  msgid "The unit is Megabyte \"MB\""
5100
  msgstr ""
5101
 
5102
+ #: app/features/mec/single.php:33 app/features/mec/single.php:38
5103
  msgid "Single Event Date Format"
5104
  msgstr "Einzelveranstaltung Datumformat"
5105
 
5106
+ #: app/features/mec/single.php:46 app/features/mec/single.php:54
5107
  msgid "Date Method"
5108
  msgstr "Datum Methode"
5109
 
5110
+ #: app/features/mec/single.php:49
5111
  msgid "Next occurrence date"
5112
  msgstr "Nächstes vorkommende Datum"
5113
 
5114
+ #: app/features/mec/single.php:50
5115
  msgid "Referred date"
5116
  msgstr "Gewünschtes Datum"
5117
 
5118
+ #: app/features/mec/single.php:55
5119
  #, fuzzy
5120
  #| msgid ""
5121
  #| "\"Referred date\" shows the event date based on referred date in event "
5126
  "\"Gewünschtes Datum\" zeigt das Ereignisdatum basierend auf dem angegebenen "
5127
  "Datum in der Eventliste an."
5128
 
5129
+ #: app/features/mec/single.php:62 app/features/mec/single.php:73
5130
  msgid "Single Event Style"
5131
  msgstr "Single Event Stil"
5132
 
5133
+ #: app/features/mec/single.php:65
5134
  msgid "Default Style"
5135
  msgstr "Standardstil voreingestellt"
5136
 
5137
+ #: app/features/mec/single.php:68
5138
  #, fuzzy
5139
  #| msgid "MEC Single Sidebar"
5140
  msgid "Elementor Single Builder"
5141
  msgstr "MEC Single Sidebar"
5142
 
5143
+ #: app/features/mec/single.php:74
5144
  msgid "Choose your single event style."
5145
  msgstr "Wählen Sie Ihren Single Event Stil"
5146
 
5147
+ #: app/features/mec/single.php:82 app/features/mec/single.php:90
5148
  #, fuzzy
5149
  #| msgid "Booking"
5150
  msgid "Booking Style"
5151
  msgstr "Buchung / Reservierung"
5152
 
5153
+ #: app/features/mec/single.php:86
5154
  #, fuzzy
5155
  #| msgid "Modal 1"
5156
  msgid "Modal"
5157
  msgstr "Modal 1"
5158
 
5159
+ #: app/features/mec/single.php:91
5160
  msgid ""
5161
  "Choose your Booking style, Please Note: When you set this feature to modal "
5162
  "you can not see booking box if you set popoup module view on shortcodes"
5163
  msgstr ""
5164
 
5165
+ #: app/features/mec/single.php:99
5166
  msgid "Disable Block Editor (Gutenberg)"
5167
  msgstr ""
5168
 
5169
+ #: app/features/mec/single.php:102
5170
  msgid "Disable Block Editor"
5171
  msgstr ""
5172
 
5173
+ #: app/features/mec/single.php:106
5174
  msgid "Block Editor"
5175
  msgstr ""
5176
 
5177
+ #: app/features/mec/single.php:107
5178
  msgid ""
5179
  "If you want to use the new WordPress block editor you should keep this "
5180
  "checkbox unchecked."
5181
  msgstr ""
5182
 
5183
+ #: app/features/mec/single.php:113 app/features/mec/single.php:120
5184
  msgid "Breadcrumbs"
5185
  msgstr ""
5186
 
5187
+ #: app/features/mec/single.php:116
5188
  msgid "Enable Breadcrumbs."
5189
  msgstr ""
5190
 
5191
+ #: app/features/mec/single.php:121
5192
  msgid "Check this option, for showing the breadcrumbs on single event page"
5193
  msgstr ""
5194
 
5195
+ #: app/features/mec/single.php:134
5196
  msgid "Show countdown module on event page"
5197
  msgstr "Countdownmodul auf Veranstaltungsseite anzeigen"
5198
 
5199
+ #: app/features/mec/single.php:139
5200
  msgid "Countdown Style"
5201
  msgstr "Countdown Stil"
5202
 
5203
+ #: app/features/mec/single.php:142
5204
  msgid "Plain Style"
5205
  msgstr "Einfacher schlichter Stil"
5206
 
5207
+ #: app/features/mec/single.php:143
5208
  msgid "Flip Style"
5209
  msgstr "Flip Stil"
5210
 
5211
+ #: app/features/mec/single.php:151 app/features/mec/single.php:158
5212
  msgid "Exceptional days"
5213
  msgstr "Ausgesuchte ausnehmende Tage"
5214
 
5215
+ #: app/features/mec/single.php:155
5216
  msgid "Show exceptional days option on Add/Edit events page"
5217
  msgstr ""
5218
  "Ausnehmende Tage anzeigen auf der Seite Ereignisse hinzufügen / bearbeiten "
5219
  "(Show exceptional days option on Add/Edit events page)"
5220
 
5221
+ #: app/features/mec/single.php:159
5222
  msgid ""
5223
  "Using this option you can include/exclude certain days to/from event "
5224
  "occurrence dates."
5226
  "Mit dieser Option können Sie bestimmte Tage von vorkommenden Eventdaten ein-/"
5227
  "ausschließen."
5228
 
5229
+ #: app/features/mec/single.php:172
5230
  msgid ""
5231
  "Show additional organizers option on Add/Edit events page and single event "
5232
  "page."
5234
  "Zeigen Sie zusätzliche Organisatoren auf der Seite Events hinzufügen / "
5235
  "bearbeiten und auf der Seite für einzelne Events an."
5236
 
5237
+ #: app/features/mec/single.php:178
5238
  #, fuzzy
5239
  #| msgid "Additional Organizers"
5240
  msgid "Additional locations"
5241
  msgstr "Zusätzliche Organisatoren"
5242
 
5243
+ #: app/features/mec/single.php:182
5244
  #, fuzzy
5245
  #| msgid ""
5246
  #| "Show additional organizers option on Add/Edit events page and single "
5252
  "Zeigen Sie zusätzliche Organisatoren auf der Seite Events hinzufügen / "
5253
  "bearbeiten und auf der Seite für einzelne Events an."
5254
 
5255
+ #: app/features/mec/single.php:192
5256
  msgid "Display related events based on taxonomy in single event page."
5257
  msgstr ""
5258
 
5259
+ #: app/features/mec/single.php:198
5260
  #, fuzzy
5261
  #| msgid "Taxonomies"
5262
  msgid "Select Taxonomies:"
5263
  msgstr "Klassifizierung "
5264
 
5265
+ #: app/features/mec/styles.php:24
5266
  msgid "Custom Styles"
5267
  msgstr "Benutzerdefinierte Stile"
5268
 
5269
+ #: app/features/mec/styles.php:29
5270
  msgid ""
5271
  "If you're a developer or you have some knowledge about CSS codes, you can "
5272
  "place your desired styles codes here. These codes will be included in your "
5277
  "Ihre eigenen Stilcodes einfügen. Diese Codes werden in Ihr Frontend "
5278
  "übernommen und übersteuern die MEC- (oder Thema-) Grundeinstellungen."
5279
 
5280
+ #: app/features/mec/styling.php:10 app/features/mec/styling.php:154
5281
+ #: app/features/mec/styling.php:180
5282
  msgid "Default Font"
5283
  msgstr "Standardschriftart des Themas "
5284
 
5285
+ #: app/features/mec/styling.php:46
5286
  msgid "Styling Option"
5287
  msgstr "Style Optionen"
5288
 
5289
+ #: app/features/mec/styling.php:51
5290
  msgid "Color Skin"
5291
  msgstr "Farbe Skin"
5292
 
5293
+ #: app/features/mec/styling.php:54
5294
  msgid "Predefined Color Skin"
5295
  msgstr "Vordefinierte Farbenoberfläche"
5296
 
5297
+ #: app/features/mec/styling.php:97
5298
  msgid "Custom Color Skin"
5299
  msgstr "Benutzerdefinierte Farboberfläche"
5300
 
5301
+ #: app/features/mec/styling.php:103
5302
  msgid ""
5303
  "If you want to select a predefined color skin, you must clear the color of "
5304
  "this item"
5305
  msgstr ""
5306
 
5307
+ #: app/features/mec/styling.php:108
5308
  msgid "Advanced Color Options (shortcodes)"
5309
  msgstr ""
5310
 
5311
+ #: app/features/mec/styling.php:120
5312
  #, fuzzy
5313
  #| msgid "Title of event"
5314
  msgid "Title Hover"
5315
  msgstr "Titel der Veranstaltung"
5316
 
5317
+ #: app/features/mec/styling.php:137
5318
  msgid "Typography"
5319
  msgstr "Typographie"
5320
 
5321
+ #: app/features/mec/styling.php:139
5322
  msgid "Heading (Events Title) Font Family"
5323
  msgstr "Schriftart Überschrift (Titel der Veranstaltung)"
5324
 
5325
+ #: app/features/mec/styling.php:165
5326
  msgid "Paragraph Font Family"
5327
  msgstr "Schriftart Absätze"
5328
 
5329
+ #: app/features/mec/styling.php:192 app/features/mec/styling.php:198
5330
  #, fuzzy
5331
  #| msgid "Enable Google Recaptcha"
5332
  msgid "Disable Google Fonts"
5333
  msgstr "Google Recaptcha aktivieren"
5334
 
5335
+ #: app/features/mec/styling.php:199
5336
  msgid "To be GDPR compliant you may need to disable Google fonts!"
5337
  msgstr ""
5338
 
5339
+ #: app/features/mec/styling.php:208
5340
  msgid "Container Width"
5341
  msgstr ""
5342
 
5343
+ #: app/features/mec/styling.php:210 app/features/mec/styling.php:215
5344
  msgid "Desktop Normal Screens"
5345
  msgstr ""
5346
 
5347
+ #: app/features/mec/styling.php:216 app/features/mec/styling.php:229
5348
  msgid "You can enter your theme container size in this field"
5349
  msgstr ""
5350
 
5351
+ #: app/features/mec/styling.php:223 app/features/mec/styling.php:228
5352
  msgid "Desktop Large Screens"
5353
  msgstr ""
5354
 
5825
  msgid "eg. https://webnus.net"
5826
  msgstr "http://webnus.net"
5827
 
5828
+ #: app/features/organizers.php:311 app/libraries/main.php:4888
5829
+ #: app/skins/single.php:814
5830
  msgid "Other Organizers"
5831
  msgstr "Andere Veranstalter"
5832
 
5847
  msgid "#"
5848
  msgstr ""
5849
 
5850
+ #: app/features/profile/profile.php:34 app/libraries/main.php:2925
5851
  msgid "Status"
5852
  msgstr ""
5853
 
5854
+ #: app/features/profile/profile.php:37 app/libraries/main.php:2062
5855
  msgid "Attendees"
5856
  msgstr "Teilnehmer"
5857
 
5866
  msgid "<i class=\"mec-sl-eye\"></i> %s"
5867
  msgstr ""
5868
 
5869
+ #: app/features/profile/profile.php:96 app/libraries/main.php:2076
5870
+ #: app/libraries/main.php:4886
5871
  msgid "Ticket"
5872
  msgstr "Ticket"
5873
 
5885
  msgid "Please enter at least 3 characters and try again"
5886
  msgstr ""
5887
 
5888
+ #: app/features/search_bar/search_bar.php:32
5889
  msgid "Please enter at least 3 characters"
5890
  msgstr ""
5891
 
5892
+ #: app/features/search_bar/search_bar.php:34
5893
  msgid "Search results will show here"
5894
  msgstr ""
5895
 
5896
+ #: app/features/search_bar/search_bar.php:45
5897
  #, fuzzy
5898
  #| msgid "Search %s"
5899
  msgid "Search"
5906
  #: app/features/search_bar/search_result.php:11
5907
  #: app/libraries/notifications.php:598 app/libraries/render.php:437
5908
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
5909
+ #: app/skins/single.php:160 app/skins/single.php:708
5910
  #: app/skins/single/default.php:86 app/skins/single/default.php:298
5911
  #: app/skins/single/m1.php:34 app/skins/single/modern.php:184
5912
  msgid "All of the day"
6013
  msgstr "Tag"
6014
 
6015
  #: app/libraries/factory.php:334 app/modules/countdown/details.php:123
6016
+ #: app/skins/available_spot/tpl.php:152 app/skins/countdown/tpl.php:138
6017
+ #: app/skins/countdown/tpl.php:182 app/skins/countdown/tpl.php:231
6018
  msgid "days"
6019
  msgstr "Tage"
6020
 
6023
  msgstr "Stunde"
6024
 
6025
  #: app/libraries/factory.php:336 app/modules/countdown/details.php:130
6026
+ #: app/skins/available_spot/tpl.php:156 app/skins/countdown/tpl.php:144
6027
+ #: app/skins/countdown/tpl.php:188 app/skins/countdown/tpl.php:237
6028
  msgid "hours"
6029
  msgstr "Stunden"
6030
 
6033
  msgstr "Minute"
6034
 
6035
  #: app/libraries/factory.php:338 app/modules/countdown/details.php:137
6036
+ #: app/skins/available_spot/tpl.php:160 app/skins/countdown/tpl.php:150
6037
+ #: app/skins/countdown/tpl.php:194 app/skins/countdown/tpl.php:243
6038
  msgid "minutes"
6039
  msgstr "Minuten"
6040
 
6043
  msgstr "Sekunde"
6044
 
6045
  #: app/libraries/factory.php:340 app/modules/countdown/details.php:144
6046
+ #: app/skins/available_spot/tpl.php:164 app/skins/countdown/tpl.php:156
6047
+ #: app/skins/countdown/tpl.php:200 app/skins/countdown/tpl.php:249
6048
  msgid "seconds"
6049
  msgstr "Sekunden"
6050
 
6062
  "Eine Vorschau kann nicht angezeit werden, da es sich um einen geschützen "
6063
  "Beitrag handelt."
6064
 
6065
+ #: app/libraries/main.php:330 app/libraries/main.php:1588
6066
+ #: app/libraries/main.php:1613
6067
  msgid "Grid View"
6068
  msgstr "Rasterdarstellung"
6069
 
6070
+ #: app/libraries/main.php:331 app/libraries/main.php:1589
6071
+ #: app/libraries/main.php:1614
6072
  msgid "Agenda View"
6073
  msgstr "Agendaansicht"
6074
 
6075
+ #: app/libraries/main.php:332 app/libraries/main.php:1580
6076
+ #: app/libraries/main.php:1605
6077
  msgid "Full Calendar"
6078
  msgstr "Ganzer Kalender"
6079
 
6080
+ #: app/libraries/main.php:334 app/libraries/main.php:1582
6081
+ #: app/libraries/main.php:1607
6082
  msgid "Calendar/Monthly View"
6083
  msgstr "Kalender-/Monatsansicht"
6084
 
6085
+ #: app/libraries/main.php:337 app/libraries/main.php:1585
6086
+ #: app/libraries/main.php:1610
6087
  msgid "Timetable View"
6088
  msgstr "Stundenplan"
6089
 
6090
+ #: app/libraries/main.php:338 app/libraries/main.php:1586
6091
+ #: app/libraries/main.php:1611
6092
  msgid "Masonry View"
6093
  msgstr "Kachel Ansicht"
6094
 
6095
+ #: app/libraries/main.php:339 app/libraries/main.php:1590
6096
+ #: app/libraries/main.php:1615
6097
  msgid "Map View"
6098
  msgstr "Kartenansicht"
6099
 
6117
  msgid "Slider View"
6118
  msgstr "Slideransicht"
6119
 
6120
+ #: app/libraries/main.php:382 app/libraries/main.php:4866
6121
  msgid "SU"
6122
  msgstr "SO"
6123
 
6124
+ #: app/libraries/main.php:383 app/libraries/main.php:4867
6125
  msgid "MO"
6126
  msgstr "MO"
6127
 
6128
+ #: app/libraries/main.php:384 app/libraries/main.php:4868
6129
  msgid "TU"
6130
  msgstr "DI"
6131
 
6132
+ #: app/libraries/main.php:385 app/libraries/main.php:4869
6133
  msgid "WE"
6134
  msgstr "MI"
6135
 
6136
+ #: app/libraries/main.php:386 app/libraries/main.php:4870
6137
  msgid "TH"
6138
  msgstr "DO"
6139
 
6140
+ #: app/libraries/main.php:387 app/libraries/main.php:4871
6141
  msgid "FR"
6142
  msgstr "FR"
6143
 
6144
+ #: app/libraries/main.php:388 app/libraries/main.php:4872
6145
  msgid "SA"
6146
  msgstr "SA"
6147
 
6148
+ #: app/libraries/main.php:881
6149
  msgid "New Addons For MEC! Now Customize MEC in Elementor"
6150
  msgstr ""
6151
 
6152
+ #: app/libraries/main.php:888
6153
  msgid ""
6154
  "The time has come at last, and the new practical add-ons for MEC have been "
6155
  "released. This is a revolution in the world of Event Calendars. We have "
6157
  "below:"
6158
  msgstr ""
6159
 
6160
+ #: app/libraries/main.php:890
6161
  msgid ""
6162
  "<strong>WooCommerce Integration:</strong> You can now purchase ticket (as "
6163
  "products) and Woo products at the same time."
6164
  msgstr ""
6165
 
6166
+ #: app/libraries/main.php:891
6167
  msgid ""
6168
  "<strong>Elementor Single Builder:</strong> It enables you to create "
6169
  "shortcodes in Elementor Live Editor."
6170
  msgstr ""
6171
 
6172
+ #: app/libraries/main.php:892
6173
  msgid ""
6174
  "<strong>Elementor Form Builder:</strong> It allows you to use many different "
6175
  "type of fields and rearrange them by drag and drop and modify their styles."
6176
  msgstr ""
6177
 
6178
+ #: app/libraries/main.php:893
6179
  msgid ""
6180
  "<strong>Elementor Shortcode Builder:</strong> Edit single event page using "
6181
  "Elementor. Manage the position of all elements in the Single page and in "
6182
  "desktops, mobiles and tablets as well."
6183
  msgstr ""
6184
 
6185
+ #: app/libraries/main.php:1442
6186
  msgid "Events at this location"
6187
  msgstr "Veranstaltungen an diesem Ort "
6188
 
6189
+ #: app/libraries/main.php:1442
6190
  msgid "Event at this location"
6191
  msgstr "Veranstaltung an diesem Ort "
6192
 
6193
+ #: app/libraries/main.php:1484
6194
  msgid "Facebook"
6195
  msgstr "Facebook"
6196
 
6197
+ #: app/libraries/main.php:1485
6198
  msgid "Twitter"
6199
  msgstr "Twitter"
6200
 
6201
+ #: app/libraries/main.php:1486 app/libraries/main.php:1536
6202
  msgid "Linkedin"
6203
  msgstr "Linkedin"
6204
 
6205
+ #: app/libraries/main.php:1487 app/libraries/main.php:1569
6206
  msgid "VK"
6207
  msgstr ""
6208
 
6209
+ #: app/libraries/main.php:1506
6210
  msgid "Share on Facebook"
6211
  msgstr "Teilen auf Facebook"
6212
 
6213
+ #: app/libraries/main.php:1521
6214
  msgid "Tweet"
6215
  msgstr "Tweet"
6216
 
6217
+ #: app/libraries/main.php:1591
6218
  #, fuzzy
6219
  #| msgid "Shortcode"
6220
  msgid "Custom Shortcode"
6221
  msgstr "Shortcode"
6222
 
6223
+ #: app/libraries/main.php:1950
6224
  msgid "Your booking successfully verified."
6225
  msgstr "Ihre Buchung wurde erfolgreich verifiziert."
6226
 
6227
+ #: app/libraries/main.php:1951
6228
  msgid "Your booking cannot verify!"
6229
  msgstr "Ihre Buchung kann nicht verifiziert werden!"
6230
 
6231
+ #: app/libraries/main.php:1963
6232
  msgid "Your booking successfully canceled."
6233
  msgstr "Ihre Buchung wurde erfolgreich storniert."
6234
 
6235
+ #: app/libraries/main.php:1964
6236
  msgid "Your booking cannot be canceled."
6237
  msgstr "Ihre Buchung kann nicht storniert werden."
6238
 
6239
+ #: app/libraries/main.php:1968
6240
  msgid "You canceled the payment successfully."
6241
  msgstr "Sie haben die Zahlung erfolgreich storniert."
6242
 
6243
+ #: app/libraries/main.php:1972
6244
  msgid "You returned from payment gateway successfully."
6245
  msgstr "Sie sind vom Bezahlungs-Gateway erfolgreich zurückgekehrt."
6246
 
6247
+ #: app/libraries/main.php:1988
6248
  #, fuzzy
6249
  #| msgid "Cannot find the booking!"
6250
  msgid "Cannot find the invoice!"
6251
  msgstr "Kann die Buchung nicht finden!"
6252
 
6253
+ #: app/libraries/main.php:1988
6254
  #, fuzzy
6255
  #| msgid "Booking is invalid."
6256
  msgid "Invoice is invalid."
6257
  msgstr "Buchung ist ungültig."
6258
 
6259
+ #: app/libraries/main.php:2003
6260
  msgid "Cannot find the booking!"
6261
  msgstr "Kann die Buchung nicht finden!"
6262
 
6263
+ #: app/libraries/main.php:2003
6264
  msgid "Booking is invalid."
6265
  msgstr "Buchung ist ungültig."
6266
 
6267
+ #: app/libraries/main.php:2032
6268
  #, php-format
6269
  msgid "%s Invoice"
6270
  msgstr "% s Rechnung"
6271
 
6272
+ #: app/libraries/main.php:2053
6273
  msgid "Transaction ID"
6274
  msgstr "Transaktions-ID"
6275
 
6276
+ #: app/libraries/main.php:2106
6277
  msgid "Billing"
6278
  msgstr "Abrechnung"
6279
 
6280
+ #: app/libraries/main.php:2117
6281
  msgid "Total"
6282
  msgstr "Gesamt"
6283
 
6284
+ #: app/libraries/main.php:2150
6285
  msgid "Security nonce is not valid."
6286
  msgstr "Sicherheits-Nonce ist ungültig."
6287
 
6288
+ #: app/libraries/main.php:2150 app/libraries/main.php:2182
6289
  msgid "iCal export stopped!"
6290
  msgstr "iCal Export wurde unterbrochen!"
6291
 
6292
+ #: app/libraries/main.php:2182
6293
  #, fuzzy
6294
  #| msgid "Request is invalid!"
6295
  msgid "Request is not valid."
6296
  msgstr "Die Anfrage ist ungültig!"
6297
 
6298
+ #: app/libraries/main.php:2509 app/libraries/main.php:2539
6299
+ #: app/libraries/main.php:2568 app/libraries/main.php:2598
6300
+ #: app/libraries/main.php:2627 app/libraries/main.php:2656
6301
+ #: app/libraries/main.php:2685 app/libraries/main.php:2714
6302
+ #: app/libraries/main.php:2743 app/libraries/main.php:2767
6303
+ #: app/libraries/main.php:2811 app/libraries/main.php:2855
6304
+ #: app/libraries/main.php:2902 app/libraries/main.php:2949
6305
  msgid "Sort"
6306
  msgstr "Sortieren"
6307
 
6308
+ #: app/libraries/main.php:2515 app/libraries/main.php:2545
6309
+ #: app/libraries/main.php:2574 app/libraries/main.php:2604
6310
+ #: app/libraries/main.php:2633 app/libraries/main.php:2662
6311
+ #: app/libraries/main.php:2691 app/libraries/main.php:2720
6312
+ #: app/libraries/main.php:2773 app/libraries/main.php:2817
6313
+ #: app/libraries/main.php:2861 app/libraries/main.php:2908
6314
  msgid "Required Field"
6315
  msgstr "Pflichtfeld"
6316
 
6317
+ #: app/libraries/main.php:2521 app/libraries/main.php:2551
6318
+ #: app/libraries/main.php:2580 app/libraries/main.php:2610
6319
+ #: app/libraries/main.php:2639 app/libraries/main.php:2668
6320
+ #: app/libraries/main.php:2697 app/libraries/main.php:2726
6321
+ #: app/libraries/main.php:2779 app/libraries/main.php:2823
6322
+ #: app/libraries/main.php:2867 app/libraries/main.php:2914
6323
  msgid "Insert a label for this field"
6324
  msgstr "Geben Sie eine Bezeichnung (Label) für dieses Feld ein."
6325
 
6326
+ #: app/libraries/main.php:2749
6327
  msgid "HTML and shortcode are allowed."
6328
  msgstr "HTML und shortcodes sind erlaubt."
6329
 
6330
+ #: app/libraries/main.php:2792 app/libraries/main.php:2836
6331
+ #: app/libraries/main.php:2880
6332
  msgid "Option"
6333
  msgstr "Option"
6334
 
6335
+ #: app/libraries/main.php:2914
6336
  #, php-format
6337
  msgid "Instead of %s, the page title with a link will be show."
6338
  msgstr "Anstelle von %s, wird der Seitentitel mit einem Link gezeigt"
6339
 
6340
+ #: app/libraries/main.php:2916
6341
  msgid "Agreement Page"
6342
  msgstr "Zustimmungsseite"
6343
 
6344
+ #: app/libraries/main.php:2927
6345
  msgid "Checked by default"
6346
  msgstr ""
6347
 
6348
+ #: app/libraries/main.php:2928
6349
  msgid "Unchecked by default"
6350
  msgstr ""
6351
 
6352
+ #: app/libraries/main.php:2951
6353
  msgid "Insert a label for this option"
6354
  msgstr "Ein neues Label für diese Option einfügen"
6355
 
6356
+ #: app/libraries/main.php:2966
6357
  msgid "Free"
6358
  msgstr "kostenfrei"
6359
 
6360
+ #: app/libraries/main.php:3532 app/libraries/main.php:5113
6361
  #, fuzzy
6362
  #| msgid "M.E. Calendar"
6363
  msgid "M.E. Calender"
6364
  msgstr "M.E. Calender"
6365
 
6366
+ #: app/libraries/main.php:3687
6367
  #, php-format
6368
  msgid "Copy of %s"
6369
  msgstr "Kopie von %s"
6370
 
6371
+ #: app/libraries/main.php:4360
6372
  msgid "Booked an event."
6373
  msgstr "Eine Veranstaltung wurde gebucht."
6374
 
6375
+ #: app/libraries/main.php:4401
6376
  #, php-format
6377
  msgid "%s booked %s event."
6378
  msgstr "%s gebuchtes %s Event"
6379
 
6380
+ #: app/libraries/main.php:4849
6381
  msgid "Taxonomies"
6382
  msgstr "Klassifizierung "
6383
 
6384
+ #: app/libraries/main.php:4851
6385
  msgid "Category Plural Label"
6386
  msgstr "Kategorien"
6387
 
6388
+ #: app/libraries/main.php:4852
6389
  msgid "Category Singular Label"
6390
  msgstr "Kategorie"
6391
 
6392
+ #: app/libraries/main.php:4853
6393
  msgid "Label Plural Label"
6394
  msgstr "Labels"
6395
 
6396
+ #: app/libraries/main.php:4854
6397
  msgid "Label Singular Label"
6398
  msgstr "Label"
6399
 
6400
+ #: app/libraries/main.php:4854
6401
  msgid "label"
6402
  msgstr "label"
6403
 
6404
+ #: app/libraries/main.php:4855
6405
  msgid "Location Plural Label"
6406
  msgstr "Veranstaltungsorte"
6407
 
6408
+ #: app/libraries/main.php:4856
6409
  msgid "Location Singular Label"
6410
  msgstr "Veranstaltungsort"
6411
 
6412
+ #: app/libraries/main.php:4857
6413
  msgid "Organizer Plural Label"
6414
  msgstr "Veranstalter"
6415
 
6416
+ #: app/libraries/main.php:4858
6417
  msgid "Organizer Singular Label"
6418
  msgstr "Veranstalter"
6419
 
6420
+ #: app/libraries/main.php:4859
6421
  #, fuzzy
6422
  #| msgid "Label Plural Label"
6423
  msgid "Speaker Plural Label"
6424
  msgstr "Labels"
6425
 
6426
+ #: app/libraries/main.php:4860
6427
  #, fuzzy
6428
  #| msgid "Label Singular Label"
6429
  msgid "Speaker Singular Label"
6430
  msgstr "Label"
6431
 
6432
+ #: app/libraries/main.php:4866
6433
  msgid "Sunday abbreviation"
6434
  msgstr "Sonntag Abkürzung"
6435
 
6436
+ #: app/libraries/main.php:4867
6437
  msgid "Monday abbreviation"
6438
  msgstr "Montag Abkürzung"
6439
 
6440
+ #: app/libraries/main.php:4868
6441
  msgid "Tuesday abbreviation"
6442
  msgstr "Dienstag Abkürzung"
6443
 
6444
+ #: app/libraries/main.php:4869
6445
  msgid "Wednesday abbreviation"
6446
  msgstr "Mittwoch Abkürzung"
6447
 
6448
+ #: app/libraries/main.php:4870
6449
  msgid "Thursday abbreviation"
6450
  msgstr "Donnerstag Abkürzung"
6451
 
6452
+ #: app/libraries/main.php:4871
6453
  msgid "Friday abbreviation"
6454
  msgstr "Freitag Abkürzung"
6455
 
6456
+ #: app/libraries/main.php:4872
6457
  msgid "Saturday abbreviation"
6458
  msgstr "Samstag Abkürzung "
6459
 
6460
+ #: app/libraries/main.php:4876
6461
  msgid "Others"
6462
  msgstr "Andere"
6463
 
6464
+ #: app/libraries/main.php:4878
6465
  msgid "Booking Success Message"
6466
  msgstr "Buchung erfolgreich Mitteilung"
6467
 
6468
+ #: app/libraries/main.php:4878
6469
  msgid ""
6470
  "Thanks for your booking. Your tickets booked, booking verification might be "
6471
  "needed, please check your email."
6473
  "Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
6474
  "Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
6475
 
6476
+ #: app/libraries/main.php:4879 app/widgets/single.php:131
6477
  msgid "Register Button"
6478
  msgstr "Register Button"
6479
 
6480
+ #: app/libraries/main.php:4879 app/skins/available_spot/tpl.php:210
6481
+ #: app/skins/carousel/render.php:156 app/skins/carousel/render.php:192
6482
+ #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
6483
+ #: app/skins/grid/render.php:205 app/skins/grid/render.php:233
6484
+ #: app/skins/list/render.php:105 app/skins/list/render.php:193
6485
+ #: app/skins/masonry/render.php:178 app/skins/single.php:726
6486
+ #: app/skins/single.php:729 app/skins/single/default.php:233
6487
  #: app/skins/single/default.php:235 app/skins/single/default.php:445
6488
  #: app/skins/single/default.php:447 app/skins/single/m1.php:126
6489
  #: app/skins/single/m1.php:128 app/skins/single/m2.php:58
6490
  #: app/skins/single/m2.php:60 app/skins/single/modern.php:68
6491
+ #: app/skins/single/modern.php:70 app/skins/slider/render.php:112
6492
+ #: app/skins/slider/render.php:160 app/skins/slider/render.php:207
6493
+ #: app/skins/slider/render.php:255 app/skins/slider/render.php:314
6494
  msgid "REGISTER"
6495
  msgstr "ANMELDEN"
6496
 
6497
+ #: app/libraries/main.php:4880
6498
  msgid "View Detail Button"
6499
  msgstr "Ansicht Detail Button"
6500
 
6501
+ #: app/libraries/main.php:4880 app/skins/carousel/render.php:156
6502
+ #: app/skins/carousel/render.php:192 app/skins/grid/render.php:118
6503
+ #: app/skins/grid/render.php:164 app/skins/grid/render.php:205
6504
+ #: app/skins/grid/render.php:233 app/skins/list/render.php:105
6505
+ #: app/skins/list/render.php:193 app/skins/masonry/render.php:178
6506
+ #: app/skins/slider/render.php:112 app/skins/slider/render.php:160
6507
+ #: app/skins/slider/render.php:207 app/skins/slider/render.php:255
6508
+ #: app/skins/slider/render.php:314
6509
  msgid "View Detail"
6510
  msgstr "Details "
6511
 
6512
+ #: app/libraries/main.php:4881
6513
  msgid "Event Detail Button"
6514
  msgstr "Event Detail Button"
6515
 
6516
+ #: app/libraries/main.php:4881 app/skins/countdown/tpl.php:224
6517
  msgid "Event Detail"
6518
  msgstr "Veranstaltungsdetails"
6519
 
6520
+ #: app/libraries/main.php:4883
6521
  msgid "More Info Link"
6522
  msgstr "Link Mehr Informationen"
6523
 
6524
+ #: app/libraries/main.php:4886
6525
  msgid "Ticket (Singular)"
6526
  msgstr "Ticket"
6527
 
6528
+ #: app/libraries/main.php:4887
6529
  msgid "Tickets (Plural)"
6530
  msgstr "Tickets"
6531
 
6532
+ #: app/libraries/main.php:4973
6533
  msgid "EventON"
6534
  msgstr "EventON"
6535
 
6536
+ #: app/libraries/main.php:4974
6537
  msgid "The Events Calendar"
6538
  msgstr "The Events Calendar"
6539
 
6540
+ #: app/libraries/main.php:4975
6541
  msgid "Events Schedule WP Plugin"
6542
  msgstr "Event Zeitplan WP-Plugin"
6543
 
6544
+ #: app/libraries/main.php:4976
6545
  msgid "Calendarize It"
6546
  msgstr ""
6547
 
6548
+ #: app/libraries/main.php:5050 app/libraries/main.php:5070
6549
  msgid "Confirmed"
6550
  msgstr "Bestätigt"
6551
 
6552
+ #: app/libraries/main.php:5051 app/libraries/main.php:5078
6553
  msgid "Rejected"
6554
  msgstr "Abgelehnt"
6555
 
6556
+ #: app/libraries/main.php:5052 app/libraries/main.php:5074
6557
  msgid "Pending"
6558
  msgstr "Ausstehend"
6559
 
6560
+ #: app/libraries/main.php:5100
6561
  msgid "Waiting"
6562
  msgstr "in Bearbeitung"
6563
 
6564
+ #: app/libraries/main.php:5305 app/libraries/render.php:367
6565
  msgid "Skin controller does not exist."
6566
  msgstr "Skin contoller existiert nicht."
6567
 
6652
  "Füllen Sie die Informationen anderer Teilnehmer wie das erste Formular aus."
6653
 
6654
  #: app/modules/booking/steps/form.php:179
6655
+ #: app/modules/booking/steps/tickets.php:55 app/skins/countdown/tpl.php:125
6656
+ #: app/skins/countdown/tpl.php:169 app/skins/countdown/tpl.php:214
6657
  msgid "Next"
6658
  msgstr "Weiter"
6659
 
6693
  msgid "Get Directions"
6694
  msgstr "Wegbeschreibung"
6695
 
6696
+ #: app/modules/links/details.php:17 app/skins/single.php:426
6697
  msgid "Share this event"
6698
  msgstr "Diese Veranstaltung teilen"
6699
 
6720
  msgid "Go to occurrence page"
6721
  msgstr "Zum Event"
6722
 
6723
+ #: app/modules/next-event/details.php:95 app/skins/single.php:702
6724
  #: app/skins/single/default.php:80 app/skins/single/default.php:292
6725
  #: app/skins/single/m1.php:28 app/skins/single/modern.php:178
6726
  msgid "Time"
6786
 
6787
  #: app/skins/agenda/tpl.php:74 app/skins/grid/tpl.php:64
6788
  #: app/skins/list/tpl.php:69 app/skins/masonry/tpl.php:70
6789
+ #: app/skins/yearly_view/render.php:124
6790
  msgid "Load More"
6791
  msgstr "Weitere anzeigen"
6792
 
6793
+ #: app/skins/available_spot/tpl.php:145
6794
  msgid "Available Spot(s):"
6795
  msgstr "Verfügbare Spot (s):"
6796
 
6797
+ #: app/skins/carousel/render.php:213 app/skins/countdown/tpl.php:163
6798
+ #: app/skins/countdown/tpl.php:207 app/skins/cover/tpl.php:105
6799
+ #: app/skins/list/render.php:123
6800
  msgid "EVENT DETAIL"
6801
  msgstr "VERANSTALTUNGSDETAILS"
6802
 
6803
+ #: app/skins/carousel/render.php:225
6804
  #, fuzzy
6805
  #| msgid "All Events"
6806
  msgid "View All Events"
6807
  msgstr "Alle Veranstaltungen"
6808
 
6809
+ #: app/skins/countdown/tpl.php:125 app/skins/countdown/tpl.php:169
6810
+ #: app/skins/countdown/tpl.php:214
6811
  #, php-format
6812
  msgid "%s Upcoming Event"
6813
  msgstr "%s Kommendes Event"
6814
 
6815
+ #: app/skins/cover/tpl.php:87
6816
  msgid "featured event"
6817
  msgstr "Ausgewählte Veranstaltung"
6818
 
6819
+ #: app/skins/daily_view/render.php:104 app/skins/monthly_view/calendar.php:170
6820
+ #: app/skins/monthly_view/calendar_clean.php:170
6821
+ #: app/skins/weekly_view/render.php:113
6822
  #, fuzzy
6823
  #| msgid "Sold out!"
6824
  msgid "Sold Out"
6825
  msgstr "Ausverkauft!"
6826
 
6827
+ #: app/skins/daily_view/render.php:110
6828
  msgid "No event"
6829
  msgstr "Keine Veranstaltung"
6830
 
6837
  msgstr "Alle"
6838
 
6839
  #: app/skins/monthly_view/calendar.php:68
6840
+ #: app/skins/monthly_view/calendar.php:182
6841
  #: app/skins/monthly_view/calendar_clean.php:68
6842
+ #: app/skins/monthly_view/calendar_clean.php:182
6843
  #, php-format
6844
  msgid "Events for %s"
6845
  msgstr "Veranstaltungen für %s"
6846
 
6847
+ #: app/skins/monthly_view/calendar.php:184
6848
+ #: app/skins/monthly_view/calendar_clean.php:184
6849
+ #: app/skins/timetable/render.php:113 app/skins/weekly_view/render.php:122
6850
  msgid "No Events"
6851
  msgstr "Keine Veranstaltungen"
6852
 
6853
+ #: app/skins/single.php:205
6854
  msgid "Home"
6855
  msgstr ""
6856
 
6857
+ #: app/skins/single.php:509 app/skins/single/default.php:43
6858
  #: app/skins/single/m1.php:247 app/skins/single/m2.php:174
6859
  #: app/skins/single/modern.php:256
6860
  msgid "Sold out!"
6861
  msgstr "Ausverkauft!"
6862
 
6863
+ #: app/skins/single.php:774 app/skins/single.php:829
6864
  #: app/skins/single/default.php:205 app/skins/single/default.php:417
6865
  #: app/skins/single/m1.php:100 app/skins/single/m2.php:32
6866
  #: app/skins/single/modern.php:41
6867
  msgid "Phone"
6868
  msgstr "Phone"
6869
 
6870
+ #: app/skins/single.php:788 app/skins/single.php:843
6871
  #: app/skins/single/default.php:219 app/skins/single/default.php:431
6872
  #: app/skins/single/m1.php:114 app/skins/single/m2.php:46
6873
  #: app/skins/single/modern.php:55
6874
  msgid "Website"
6875
  msgstr "Website"
6876
 
6877
+ #: app/skins/single.php:913
6878
  #, fuzzy
6879
  #| msgid "No Search Options"
6880
  msgid "Speakers:"
6894
  msgid "Show events based on created shortcodes."
6895
  msgstr "Veranstaltungen auf Basis der erstellten shortcodes anzeigen"
6896
 
6897
+ #: app/widgets/MEC.php:81
6898
  msgid "Title:"
6899
  msgstr "Titel:"
6900
 
6901
+ #: app/widgets/MEC.php:88
6902
  msgid "Shortcode:"
6903
  msgstr "Shortcode:"
6904
 
6905
+ #: app/widgets/MEC.php:98
6906
+ #, fuzzy
6907
+ #| msgid "Single Event Display Method"
6908
+ msgid "Enable No Event Block Display: "
6909
+ msgstr "Single Event Anzeigemethode"
6910
+
6911
+ #: app/widgets/MEC.php:102
6912
  msgid "Create some calendars first."
6913
  msgstr "Erstellen Sie zuerst einige Kalender."
6914
 
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: 2019-08-13 16:42+0430\n"
5
- "PO-Revision-Date: 2019-08-13 16:45+0430\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: en_US\n"
@@ -21,12 +21,12 @@ msgstr ""
21
  msgid "Modern Events Calendar"
22
  msgstr ""
23
 
24
- #: app/addons/KC.php:70 app/addons/VC.php:64 app/features/mec/styling.php:288
25
  msgid "Content"
26
  msgstr ""
27
 
28
- #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:364
29
- #: app/features/mec.php:395 app/features/mec.php:421
30
  msgid "Shortcode"
31
  msgstr ""
32
 
@@ -56,29 +56,20 @@ msgid "Select Type"
56
  msgstr ""
57
 
58
  #: app/features/colors.php:50 app/features/fes/form.php:794
59
- #: app/features/mec/settings.php:792
60
  msgid "Event Color"
61
  msgstr ""
62
 
63
- #: app/features/contextual.php:55 app/features/mec.php:344
64
- #: app/features/mec/booking.php:33 app/features/mec/dashboard.php:108
65
- #: app/features/mec/gateways.php:24 app/features/mec/ie.php:20
66
- #: app/features/mec/messages.php:24 app/features/mec/modules.php:31
67
- #: app/features/mec/notifications.php:23 app/features/mec/regform.php:61
68
- #: app/features/mec/settings.php:44 app/features/mec/single.php:23
69
- #: app/features/mec/styles.php:24 app/features/mec/styling.php:46
70
  #: app/features/mec/support-page.php:168 app/features/mec/support.php:20
 
71
  msgid "Settings"
72
  msgstr ""
73
 
74
- #: app/features/contextual.php:62 app/features/events.php:2268
75
- #: app/features/mec/booking.php:148 app/features/mec/gateways.php:113
76
- #: app/features/mec/ie.php:109 app/features/mec/messages.php:113
77
- #: app/features/mec/modules.php:175 app/features/mec/notifications.php:112
78
- #: app/features/mec/regform.php:149 app/features/mec/regform.php:218
79
- #: app/features/mec/settings.php:185 app/features/mec/single.php:146
80
- #: app/features/mec/styles.php:113 app/features/mec/styling.php:135
81
- #: app/features/mec/support.php:29
82
  msgid "Booking Form"
83
  msgstr ""
84
 
@@ -91,13 +82,9 @@ msgid ""
91
  "YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
92
  msgstr ""
93
 
94
- #: app/features/contextual.php:70 app/features/mec/booking.php:155
95
- #: app/features/mec/gateways.php:120 app/features/mec/gateways.php:183
96
- #: app/features/mec/ie.php:116 app/features/mec/messages.php:120
97
- #: app/features/mec/modules.php:182 app/features/mec/notifications.php:119
98
- #: app/features/mec/regform.php:156 app/features/mec/settings.php:192
99
- #: app/features/mec/single.php:153 app/features/mec/styles.php:120
100
- #: app/features/mec/styling.php:142 app/features/mec/support.php:36
101
  msgid "Payment Gateways"
102
  msgstr ""
103
 
@@ -108,13 +95,8 @@ msgid ""
108
  "\"0\" allowfullscreen></iframe>"
109
  msgstr ""
110
 
111
- #: app/features/contextual.php:77 app/features/mec/booking.php:164
112
- #: app/features/mec/gateways.php:129 app/features/mec/ie.php:125
113
- #: app/features/mec/messages.php:129 app/features/mec/modules.php:191
114
- #: app/features/mec/notifications.php:131 app/features/mec/regform.php:164
115
- #: app/features/mec/settings.php:201 app/features/mec/single.php:162
116
- #: app/features/mec/styles.php:129 app/features/mec/styling.php:151
117
- #: app/features/mec/support.php:45
118
  msgid "Notifications"
119
  msgstr ""
120
 
@@ -177,23 +159,13 @@ msgid ""
177
  "\"0\" allowfullscreen></iframe>"
178
  msgstr ""
179
 
180
- #: app/features/contextual.php:117 app/features/mec/booking.php:37
181
- #: app/features/mec/gateways.php:28 app/features/mec/ie.php:24
182
- #: app/features/mec/messages.php:28 app/features/mec/modules.php:35
183
- #: app/features/mec/notifications.php:27 app/features/mec/regform.php:65
184
- #: app/features/mec/settings.php:51 app/features/mec/settings.php:259
185
- #: app/features/mec/single.php:27 app/features/mec/styles.php:28
186
- #: app/features/mec/styling.php:50
187
  msgid "General Options"
188
  msgstr ""
189
 
190
- #: app/features/contextual.php:139 app/features/mec/booking.php:39
191
- #: app/features/mec/gateways.php:30 app/features/mec/ie.php:26
192
- #: app/features/mec/messages.php:30 app/features/mec/modules.php:37
193
- #: app/features/mec/notifications.php:29 app/features/mec/regform.php:67
194
- #: app/features/mec/settings.php:63 app/features/mec/settings.php:576
195
- #: app/features/mec/single.php:29 app/features/mec/styles.php:30
196
- #: app/features/mec/styling.php:52
197
  msgid "Slugs/Permalinks"
198
  msgstr ""
199
 
@@ -201,53 +173,29 @@ msgstr ""
201
  msgid "Event Details/Single Event Page"
202
  msgstr ""
203
 
204
- #: app/features/contextual.php:166 app/features/mec/booking.php:40
205
- #: app/features/mec/gateways.php:31 app/features/mec/ie.php:27
206
- #: app/features/mec/messages.php:31 app/features/mec/modules.php:38
207
- #: app/features/mec/notifications.php:30 app/features/mec/regform.php:68
208
- #: app/features/mec/settings.php:69 app/features/mec/settings.php:608
209
- #: app/features/mec/single.php:30 app/features/mec/styles.php:31
210
- #: app/features/mec/styling.php:53
211
  msgid "Currency Options"
212
  msgstr ""
213
 
214
- #: app/features/contextual.php:182 app/features/mec/booking.php:126
215
- #: app/features/mec/gateways.php:91 app/features/mec/ie.php:87
216
- #: app/features/mec/messages.php:91 app/features/mec/modules.php:111
217
- #: app/features/mec/modules.php:273 app/features/mec/modules.php:291
218
- #: app/features/mec/notifications.php:90 app/features/mec/regform.php:128
219
- #: app/features/mec/settings.php:163 app/features/mec/single.php:124
220
- #: app/features/mec/styles.php:91 app/features/mec/styling.php:113
221
  msgid "Google Maps Options"
222
  msgstr ""
223
 
224
- #: app/features/contextual.php:244 app/features/mec/booking.php:41
225
- #: app/features/mec/gateways.php:32 app/features/mec/ie.php:28
226
- #: app/features/mec/messages.php:32 app/features/mec/modules.php:39
227
- #: app/features/mec/notifications.php:31 app/features/mec/regform.php:69
228
- #: app/features/mec/settings.php:75 app/features/mec/settings.php:665
229
- #: app/features/mec/single.php:31 app/features/mec/styles.php:32
230
- #: app/features/mec/styling.php:54
231
  msgid "Google Recaptcha Options"
232
  msgstr ""
233
 
234
- #: app/features/contextual.php:258 app/features/mec/booking.php:61
235
- #: app/features/mec/gateways.php:52 app/features/mec/ie.php:48
236
- #: app/features/mec/messages.php:52 app/features/mec/modules.php:59
237
- #: app/features/mec/notifications.php:51 app/features/mec/regform.php:89
238
- #: app/features/mec/settings.php:124 app/features/mec/single.php:63
239
- #: app/features/mec/single.php:319 app/features/mec/styles.php:52
240
- #: app/features/mec/styling.php:74
241
  msgid "Countdown Options"
242
  msgstr ""
243
 
244
- #: app/features/contextual.php:268 app/features/mec/booking.php:134
245
- #: app/features/mec/gateways.php:99 app/features/mec/ie.php:95
246
- #: app/features/mec/messages.php:99 app/features/mec/modules.php:147
247
- #: app/features/mec/modules.php:469 app/features/mec/notifications.php:98
248
- #: app/features/mec/regform.php:136 app/features/mec/settings.php:171
249
- #: app/features/mec/single.php:132 app/features/mec/styles.php:99
250
- #: app/features/mec/styling.php:121
251
  msgid "Social Networks"
252
  msgstr ""
253
 
@@ -255,75 +203,36 @@ msgstr ""
255
  msgid "Next Event Module"
256
  msgstr ""
257
 
258
- #: app/features/contextual.php:286 app/features/mec/booking.php:42
259
- #: app/features/mec/gateways.php:33 app/features/mec/ie.php:29
260
- #: app/features/mec/messages.php:33 app/features/mec/modules.php:40
261
- #: app/features/mec/notifications.php:32 app/features/mec/regform.php:70
262
- #: app/features/mec/settings.php:81 app/features/mec/settings.php:701
263
- #: app/features/mec/single.php:32 app/features/mec/styles.php:33
264
- #: app/features/mec/styling.php:55
265
  msgid "Frontend Event Submission"
266
  msgstr ""
267
 
268
- #: app/features/contextual.php:298 app/features/events.php:1119
269
- #: app/features/mec/booking.php:62 app/features/mec/gateways.php:53
270
- #: app/features/mec/ie.php:49 app/features/mec/messages.php:53
271
- #: app/features/mec/modules.php:60 app/features/mec/notifications.php:52
272
- #: app/features/mec/regform.php:90 app/features/mec/settings.php:125
273
- #: app/features/mec/single.php:69 app/features/mec/styles.php:53
274
- #: app/features/mec/styling.php:75
275
  msgid "Exceptional Days"
276
  msgstr ""
277
 
278
- #: app/features/contextual.php:308 app/features/events.php:285
279
- #: app/features/mec/booking.php:79 app/features/mec/booking.php:86
280
- #: app/features/mec/booking.php:169 app/features/mec/booking.php:221
281
- #: app/features/mec/gateways.php:66 app/features/mec/gateways.php:70
282
- #: app/features/mec/gateways.php:134 app/features/mec/ie.php:62
283
- #: app/features/mec/ie.php:66 app/features/mec/ie.php:130
284
- #: app/features/mec/messages.php:66 app/features/mec/messages.php:70
285
- #: app/features/mec/messages.php:134 app/features/mec/modules.php:73
286
- #: app/features/mec/modules.php:77 app/features/mec/modules.php:196
287
- #: app/features/mec/notifications.php:65 app/features/mec/notifications.php:69
288
- #: app/features/mec/notifications.php:138
289
- #: app/features/mec/notifications.php:227 app/features/mec/regform.php:103
290
- #: app/features/mec/regform.php:107 app/features/mec/regform.php:169
291
- #: app/features/mec/settings.php:138 app/features/mec/settings.php:142
292
- #: app/features/mec/settings.php:206 app/features/mec/single.php:99
293
- #: app/features/mec/single.php:103 app/features/mec/single.php:167
294
- #: app/features/mec/styles.php:66 app/features/mec/styles.php:70
295
- #: app/features/mec/styles.php:134 app/features/mec/styling.php:88
296
- #: app/features/mec/styling.php:92 app/features/mec/styling.php:156
297
  msgid "Booking"
298
  msgstr ""
299
 
300
- #: app/features/contextual.php:318 app/features/mec/booking.php:94
301
- #: app/features/mec/booking.php:356 app/features/mec/gateways.php:72
302
- #: app/features/mec/ie.php:68 app/features/mec/messages.php:72
303
- #: app/features/mec/modules.php:79 app/features/mec/notifications.php:71
304
- #: app/features/mec/regform.php:109 app/features/mec/settings.php:144
305
- #: app/features/mec/single.php:105 app/features/mec/styles.php:72
306
- #: app/features/mec/styling.php:94
307
  msgid "Coupons"
308
  msgstr ""
309
 
310
- #: app/features/contextual.php:326 app/features/mec/booking.php:137
311
- #: app/features/mec/gateways.php:102 app/features/mec/ie.php:98
312
- #: app/features/mec/messages.php:102 app/features/mec/modules.php:161
313
- #: app/features/mec/modules.php:530 app/features/mec/notifications.php:101
314
- #: app/features/mec/regform.php:139 app/features/mec/settings.php:174
315
- #: app/features/mec/single.php:135 app/features/mec/styles.php:102
316
- #: app/features/mec/styling.php:124
317
  msgid "BuddyPress Integration"
318
  msgstr ""
319
 
320
- #: app/features/contextual.php:334 app/features/mec/booking.php:46
321
- #: app/features/mec/gateways.php:37 app/features/mec/ie.php:33
322
- #: app/features/mec/messages.php:37 app/features/mec/modules.php:44
323
- #: app/features/mec/notifications.php:36 app/features/mec/regform.php:74
324
- #: app/features/mec/settings.php:101 app/features/mec/settings.php:952
325
- #: app/features/mec/single.php:36 app/features/mec/styles.php:37
326
- #: app/features/mec/styling.php:59
327
  msgid "Mailchimp Integration"
328
  msgstr ""
329
 
@@ -331,13 +240,13 @@ msgstr ""
331
  msgid "MEC Activation"
332
  msgstr ""
333
 
334
- #: app/features/events.php:137 app/features/ix/export.php:34
335
  #: app/features/mec/dashboard.php:202 app/skins/daily_view/tpl.php:79
336
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
337
  msgid "Events"
338
  msgstr ""
339
 
340
- #: app/features/events.php:138
341
  #: app/features/mec/meta_boxes/display_options.php:887
342
  #: app/features/mec/meta_boxes/display_options.php:943
343
  #: app/features/mec/meta_boxes/display_options.php:978
@@ -346,36 +255,36 @@ msgstr ""
346
  msgid "Event"
347
  msgstr ""
348
 
349
- #: app/features/events.php:139 app/features/mec.php:330
350
  msgid "Add Event"
351
  msgstr ""
352
 
353
- #: app/features/events.php:140 app/features/mec/dashboard.php:107
354
  msgid "Add New Event"
355
  msgstr ""
356
 
357
- #: app/features/events.php:141 app/features/ix.php:3119
358
- #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:56
359
  msgid "No events found!"
360
  msgstr ""
361
 
362
- #: app/features/events.php:142
363
  msgid "All Events"
364
  msgstr ""
365
 
366
- #: app/features/events.php:143
367
  msgid "Edit Event"
368
  msgstr ""
369
 
370
- #: app/features/events.php:144
371
  msgid "View Event"
372
  msgstr ""
373
 
374
- #: app/features/events.php:145
375
  msgid "No events found in Trash!"
376
  msgstr ""
377
 
378
- #: app/features/events.php:162
379
  #: app/features/mec/meta_boxes/display_options.php:798
380
  #: app/features/mec/meta_boxes/search_form.php:31
381
  #: app/features/mec/meta_boxes/search_form.php:93
@@ -387,112 +296,112 @@ msgstr ""
387
  #: app/features/mec/meta_boxes/search_form.php:453
388
  #: app/features/mec/meta_boxes/search_form.php:514
389
  #: app/features/mec/meta_boxes/search_form.php:575
390
- #: app/features/mec/settings.php:905 app/features/mec/single.php:390
391
- #: app/libraries/main.php:4509 app/libraries/skins.php:807
392
- #: app/skins/single.php:530 app/skins/single/default.php:170
393
  #: app/skins/single/default.php:382 app/skins/single/m1.php:170
394
  #: app/skins/single/m2.php:102 app/skins/single/modern.php:110
395
  msgid "Category"
396
  msgstr ""
397
 
398
- #: app/features/events.php:163 app/features/fes/form.php:745
399
- #: app/features/mec.php:332 app/features/mec/meta_boxes/filter.php:70
400
- #: app/libraries/main.php:4508
401
  msgid "Categories"
402
  msgstr ""
403
 
404
- #: app/features/events.php:173 app/features/labels.php:71
405
  #: app/features/locations.php:69 app/features/organizers.php:69
406
  #: app/features/speakers.php:70
407
  #, php-format
408
  msgid "All %s"
409
  msgstr ""
410
 
411
- #: app/features/events.php:174 app/features/labels.php:72
412
  #: app/features/locations.php:70 app/features/organizers.php:70
413
  #: app/features/speakers.php:71
414
  #, php-format
415
  msgid "Edit %s"
416
  msgstr ""
417
 
418
- #: app/features/events.php:175 app/features/labels.php:73
419
  #: app/features/locations.php:71 app/features/organizers.php:71
420
  #: app/features/speakers.php:72
421
  #, php-format
422
  msgid "View %s"
423
  msgstr ""
424
 
425
- #: app/features/events.php:176 app/features/labels.php:74
426
  #: app/features/locations.php:72 app/features/organizers.php:72
427
  #: app/features/speakers.php:73
428
  #, php-format
429
  msgid "Update %s"
430
  msgstr ""
431
 
432
- #: app/features/events.php:177 app/features/labels.php:75
433
  #: app/features/locations.php:73 app/features/organizers.php:73
434
  #: app/features/speakers.php:74
435
  #, php-format
436
  msgid "Add New %s"
437
  msgstr ""
438
 
439
- #: app/features/events.php:178 app/features/labels.php:76
440
  #: app/features/locations.php:74 app/features/organizers.php:74
441
  #: app/features/speakers.php:75
442
  #, php-format
443
  msgid "New %s Name"
444
  msgstr ""
445
 
446
- #: app/features/events.php:179 app/features/labels.php:77
447
  #: app/features/locations.php:75 app/features/organizers.php:75
448
  #: app/features/speakers.php:76
449
  #, php-format
450
  msgid "Popular %s"
451
  msgstr ""
452
 
453
- #: app/features/events.php:180 app/features/labels.php:78
454
  #: app/features/locations.php:76 app/features/organizers.php:76
455
  #: app/features/speakers.php:77
456
  #, php-format
457
  msgid "Search %s"
458
  msgstr ""
459
 
460
- #: app/features/events.php:205 app/features/events.php:226
461
  msgid "Category Icon"
462
  msgstr ""
463
 
464
- #: app/features/events.php:208 app/features/events.php:231
465
  msgid "Select icon"
466
  msgstr ""
467
 
468
- #: app/features/events.php:280
469
  msgid "Event Details"
470
  msgstr ""
471
 
472
- #: app/features/events.php:322 app/features/events.php:3168
473
- #: app/features/events.php:3210 app/features/fes/form.php:706
474
- #: app/features/ix.php:2740 app/features/ix.php:2781
475
- #: app/features/mec/settings.php:768 app/libraries/main.php:4541
476
  #: app/widgets/single.php:103
477
  msgid "Event Cost"
478
  msgstr ""
479
 
480
- #: app/features/events.php:326 app/features/fes/form.php:709
481
- #: app/libraries/main.php:4542 app/skins/single.php:553
482
  #: app/skins/single/default.php:104 app/skins/single/default.php:316
483
  #: app/skins/single/m1.php:49 app/skins/single/modern.php:199
484
  msgid "Cost"
485
  msgstr ""
486
 
487
- #: app/features/events.php:424
488
  msgid "Note for reviewer"
489
  msgstr ""
490
 
491
- #: app/features/events.php:431
492
  msgid "Guest Data"
493
  msgstr ""
494
 
495
- #: app/features/events.php:432 app/features/events.php:2250
496
  #: app/features/fes/form.php:668 app/features/labels.php:178
497
  #: app/features/mec/regform.php:27 app/features/organizers.php:279
498
  #: app/features/profile/profile.php:90 app/libraries/notifications.php:736
@@ -500,30 +409,30 @@ msgstr ""
500
  msgid "Name"
501
  msgstr ""
502
 
503
- #: app/features/events.php:433 app/features/events.php:2261
504
- #: app/features/events.php:2339 app/features/fes/form.php:664
505
- #: app/features/mec/regform.php:39 app/features/mec/regform.php:270
506
  #: app/features/organizers.php:111 app/features/organizers.php:152
507
  #: app/features/profile/profile.php:93 app/features/speakers.php:124
508
- #: app/features/speakers.php:184 app/libraries/main.php:1150
509
- #: app/libraries/main.php:1216 app/libraries/main.php:2261
510
  #: app/libraries/notifications.php:737 app/modules/booking/steps/form.php:46
511
- #: app/modules/booking/steps/form.php:84 app/skins/single.php:780
512
- #: app/skins/single.php:835 app/skins/single/default.php:212
513
  #: app/skins/single/default.php:424 app/skins/single/m1.php:107
514
  #: app/skins/single/m2.php:39 app/skins/single/modern.php:48
515
  msgid "Email"
516
  msgstr ""
517
 
518
- #: app/features/events.php:437 app/features/fes/form.php:232
519
  msgid "Date and Time"
520
  msgstr ""
521
 
522
- #: app/features/events.php:441 app/features/events.php:447
523
- #: app/features/events.php:2986 app/features/events.php:3168
524
- #: app/features/events.php:3210 app/features/fes/form.php:236
525
- #: app/features/fes/form.php:240 app/features/ix.php:2740
526
- #: app/features/ix.php:2781 app/features/ix/import_g_calendar.php:38
527
  #: app/features/mec/dashboard.php:346
528
  #: app/features/mec/meta_boxes/display_options.php:42
529
  #: app/features/mec/meta_boxes/display_options.php:169
@@ -541,66 +450,66 @@ msgstr ""
541
  msgid "Start Date"
542
  msgstr ""
543
 
544
- #: app/features/events.php:519 app/features/events.php:611
545
- #: app/features/events.php:1604 app/features/events.php:1646
546
- #: app/features/events.php:1813 app/features/events.php:1837
547
  #: app/features/fes/form.php:268 app/features/fes/form.php:308
548
  msgid "AM"
549
  msgstr ""
550
 
551
- #: app/features/events.php:526 app/features/events.php:618
552
- #: app/features/events.php:1611 app/features/events.php:1653
553
- #: app/features/events.php:1814 app/features/events.php:1838
554
  #: app/features/fes/form.php:269 app/features/fes/form.php:309
555
  msgid "PM"
556
  msgstr ""
557
 
558
- #: app/features/events.php:533 app/features/events.php:538
559
- #: app/features/events.php:2987 app/features/events.php:3168
560
- #: app/features/events.php:3210 app/features/fes/form.php:276
561
- #: app/features/fes/form.php:280 app/features/ix.php:2740
562
- #: app/features/ix.php:2781 app/features/ix/import_g_calendar.php:44
563
  #: app/features/mec/dashboard.php:347
564
  msgid "End Date"
565
  msgstr ""
566
 
567
- #: app/features/events.php:632 app/features/fes/form.php:315
568
  msgid "All Day Event"
569
  msgstr ""
570
 
571
- #: app/features/events.php:642 app/features/fes/form.php:318
572
  msgid "Hide Event Time"
573
  msgstr ""
574
 
575
- #: app/features/events.php:652 app/features/fes/form.php:321
576
  msgid "Hide Event End Time"
577
  msgstr ""
578
 
579
- #: app/features/events.php:657 app/features/events.php:661
580
  #: app/features/fes/form.php:325
581
  msgid "Time Comment"
582
  msgstr ""
583
 
584
- #: app/features/events.php:662 app/features/fes/form.php:326
585
  msgid ""
586
  "It shows next to event time on single event page. You can insert Timezone "
587
  "etc. in this field."
588
  msgstr ""
589
 
590
- #: app/features/events.php:664 app/features/events.php:796
591
- #: app/features/events.php:1095 app/features/events.php:1138
592
- #: app/features/events.php:1437 app/features/events.php:1496
593
- #: app/features/events.php:1673 app/features/events.php:1688
594
- #: app/features/events.php:1855 app/features/events.php:1868
595
- #: app/features/events.php:1998 app/features/events.php:2034
596
- #: app/features/events.php:2132 app/features/events.php:2147
597
- #: app/features/events.php:2177 app/features/events.php:2190
598
  #: app/features/fes/form.php:630 app/features/locations.php:299
599
- #: app/features/mec/booking.php:241 app/features/mec/booking.php:278
600
- #: app/features/mec/booking.php:294 app/features/mec/booking.php:401
601
- #: app/features/mec/booking.php:430 app/features/mec/booking.php:478
602
- #: app/features/mec/booking.php:488 app/features/mec/booking.php:510
603
- #: app/features/mec/booking.php:520 app/features/mec/dashboard.php:71
604
  #: app/features/mec/meta_boxes/display_options.php:60
605
  #: app/features/mec/meta_boxes/display_options.php:73
606
  #: app/features/mec/meta_boxes/display_options.php:86
@@ -631,9 +540,9 @@ msgstr ""
631
  #: app/features/mec/meta_boxes/display_options.php:1134
632
  #: app/features/mec/meta_boxes/display_options.php:1147
633
  #: app/features/mec/meta_boxes/display_options.php:1160
634
- #: app/features/mec/modules.php:259 app/features/mec/modules.php:292
635
- #: app/features/mec/modules.php:309 app/features/mec/modules.php:344
636
- #: app/features/mec/modules.php:360 app/features/mec/modules.php:518
637
  #: app/features/mec/notifications.php:246
638
  #: app/features/mec/notifications.php:303
639
  #: app/features/mec/notifications.php:355
@@ -641,473 +550,468 @@ msgstr ""
641
  #: app/features/mec/notifications.php:482
642
  #: app/features/mec/notifications.php:545
643
  #: app/features/mec/notifications.php:556
644
- #: app/features/mec/notifications.php:618 app/features/mec/settings.php:273
645
- #: app/features/mec/settings.php:292 app/features/mec/settings.php:319
646
- #: app/features/mec/settings.php:339 app/features/mec/settings.php:360
647
- #: app/features/mec/settings.php:380 app/features/mec/settings.php:457
648
- #: app/features/mec/settings.php:531 app/features/mec/settings.php:548
649
- #: app/features/mec/settings.php:565 app/features/mec/settings.php:584
650
- #: app/features/mec/settings.php:598 app/features/mec/settings.php:626
651
- #: app/features/mec/settings.php:713 app/features/mec/settings.php:851
652
- #: app/features/mec/settings.php:868 app/features/mec/settings.php:967
653
- #: app/features/mec/settings.php:980 app/features/mec/settings.php:996
654
- #: app/features/mec/single.php:228 app/features/mec/single.php:244
655
- #: app/features/mec/single.php:263 app/features/mec/single.php:280
656
- #: app/features/mec/single.php:296 app/features/mec/single.php:310
657
- #: app/fea
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: modern-events-calendar\n"
4
+ "POT-Creation-Date: 2019-08-21 15:08+0430\n"
5
+ "PO-Revision-Date: 2019-08-21 15:09+0430\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: en_US\n"
21
  msgid "Modern Events Calendar"
22
  msgstr ""
23
 
24
+ #: app/addons/KC.php:70 app/addons/VC.php:64 app/features/mec/styling.php:129
25
  msgid "Content"
26
  msgstr ""
27
 
28
+ #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:367
29
+ #: app/features/mec.php:398 app/features/mec.php:424
30
  msgid "Shortcode"
31
  msgstr ""
32
 
56
  msgstr ""
57
 
58
  #: app/features/colors.php:50 app/features/fes/form.php:794
59
+ #: app/features/mec/settings.php:597
60
  msgid "Event Color"
61
  msgstr ""
62
 
63
+ #: app/features/contextual.php:55 app/features/mec.php:347
64
+ #: app/features/mec/dashboard.php:108 app/features/mec/notifications.php:23
 
 
 
 
 
65
  #: app/features/mec/support-page.php:168 app/features/mec/support.php:20
66
+ #: app/libraries/main.php:585
67
  msgid "Settings"
68
  msgstr ""
69
 
70
+ #: app/features/contextual.php:62 app/features/events.php:2279
71
+ #: app/features/mec/notifications.php:112 app/features/mec/regform.php:61
72
+ #: app/features/mec/support.php:29 app/libraries/main.php:735
 
 
 
 
 
73
  msgid "Booking Form"
74
  msgstr ""
75
 
82
  "YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
83
  msgstr ""
84
 
85
+ #: app/features/contextual.php:70 app/features/mec/gateways.php:24
86
+ #: app/features/mec/notifications.php:119 app/features/mec/support.php:36
87
+ #: app/libraries/main.php:742
 
 
 
 
88
  msgid "Payment Gateways"
89
  msgstr ""
90
 
95
  "\"0\" allowfullscreen></iframe>"
96
  msgstr ""
97
 
98
+ #: app/features/contextual.php:77 app/features/mec/notifications.php:131
99
+ #: app/features/mec/support.php:45 app/libraries/main.php:752
 
 
 
 
 
100
  msgid "Notifications"
101
  msgstr ""
102
 
159
  "\"0\" allowfullscreen></iframe>"
160
  msgstr ""
161
 
162
+ #: app/features/contextual.php:117 app/features/mec/notifications.php:27
163
+ #: app/features/mec/settings.php:49 app/libraries/main.php:528
 
 
 
 
 
164
  msgid "General Options"
165
  msgstr ""
166
 
167
+ #: app/features/contextual.php:139 app/features/mec/notifications.php:29
168
+ #: app/features/mec/settings.php:381 app/libraries/main.php:530
 
 
 
 
 
169
  msgid "Slugs/Permalinks"
170
  msgstr ""
171
 
173
  msgid "Event Details/Single Event Page"
174
  msgstr ""
175
 
176
+ #: app/features/contextual.php:166 app/features/mec/notifications.php:30
177
+ #: app/features/mec/settings.php:413 app/libraries/main.php:531
 
 
 
 
 
178
  msgid "Currency Options"
179
  msgstr ""
180
 
181
+ #: app/features/contextual.php:182 app/features/mec/modules.php:64
182
+ #: app/features/mec/modules.php:82 app/features/mec/notifications.php:90
183
+ #: app/libraries/main.php:558
 
 
 
 
184
  msgid "Google Maps Options"
185
  msgstr ""
186
 
187
+ #: app/features/contextual.php:244 app/features/mec/notifications.php:31
188
+ #: app/features/mec/settings.php:470 app/libraries/main.php:532
 
 
 
 
 
189
  msgid "Google Recaptcha Options"
190
  msgstr ""
191
 
192
+ #: app/features/contextual.php:258 app/features/mec/notifications.php:51
193
+ #: app/features/mec/single.php:130 app/libraries/main.php:542
 
 
 
 
 
194
  msgid "Countdown Options"
195
  msgstr ""
196
 
197
+ #: app/features/contextual.php:268 app/features/mec/modules.php:260
198
+ #: app/features/mec/notifications.php:98 app/libraries/main.php:563
 
 
 
 
 
199
  msgid "Social Networks"
200
  msgstr ""
201
 
203
  msgid "Next Event Module"
204
  msgstr ""
205
 
206
+ #: app/features/contextual.php:286 app/features/mec/notifications.php:32
207
+ #: app/features/mec/settings.php:506 app/libraries/main.php:533
 
 
 
 
 
208
  msgid "Frontend Event Submission"
209
  msgstr ""
210
 
211
+ #: app/features/contextual.php:298 app/features/events.php:1130
212
+ #: app/features/mec/notifications.php:52 app/libraries/main.php:543
 
 
 
 
 
213
  msgid "Exceptional Days"
214
  msgstr ""
215
 
216
+ #: app/features/contextual.php:308 app/features/events.php:296
217
+ #: app/features/mec/booking.php:40 app/features/mec/notifications.php:65
218
+ #: app/features/mec/notifications.php:69 app/features/mec/notifications.php:138
219
+ #: app/features/mec/notifications.php:227 app/libraries/main.php:550
220
+ #: app/libraries/main.php:569 app/libraries/main.php:650
 
 
 
 
 
 
 
 
 
 
 
 
 
 
221
  msgid "Booking"
222
  msgstr ""
223
 
224
+ #: app/features/contextual.php:318 app/features/mec/booking.php:175
225
+ #: app/features/mec/notifications.php:71 app/libraries/main.php:551
 
 
 
 
 
226
  msgid "Coupons"
227
  msgstr ""
228
 
229
+ #: app/features/contextual.php:326 app/features/mec/modules.php:321
230
+ #: app/features/mec/notifications.php:101 app/libraries/main.php:565
 
 
 
 
 
231
  msgid "BuddyPress Integration"
232
  msgstr ""
233
 
234
+ #: app/features/contextual.php:334 app/features/mec/notifications.php:36
235
+ #: app/features/mec/settings.php:763 app/libraries/main.php:536
 
 
 
 
 
236
  msgid "Mailchimp Integration"
237
  msgstr ""
238
 
240
  msgid "MEC Activation"
241
  msgstr ""
242
 
243
+ #: app/features/events.php:148 app/features/ix/export.php:34
244
  #: app/features/mec/dashboard.php:202 app/skins/daily_view/tpl.php:79
245
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
246
  msgid "Events"
247
  msgstr ""
248
 
249
+ #: app/features/events.php:149
250
  #: app/features/mec/meta_boxes/display_options.php:887
251
  #: app/features/mec/meta_boxes/display_options.php:943
252
  #: app/features/mec/meta_boxes/display_options.php:978
255
  msgid "Event"
256
  msgstr ""
257
 
258
+ #: app/features/events.php:150 app/features/mec.php:333
259
  msgid "Add Event"
260
  msgstr ""
261
 
262
+ #: app/features/events.php:151 app/features/mec/dashboard.php:107
263
  msgid "Add New Event"
264
  msgstr ""
265
 
266
+ #: app/features/events.php:152 app/features/ix.php:3122
267
+ #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:57
268
  msgid "No events found!"
269
  msgstr ""
270
 
271
+ #: app/features/events.php:153
272
  msgid "All Events"
273
  msgstr ""
274
 
275
+ #: app/features/events.php:154
276
  msgid "Edit Event"
277
  msgstr ""
278
 
279
+ #: app/features/events.php:155
280
  msgid "View Event"
281
  msgstr ""
282
 
283
+ #: app/features/events.php:156
284
  msgid "No events found in Trash!"
285
  msgstr ""
286
 
287
+ #: app/features/events.php:173 app/features/events.php:3012
288
  #: app/features/mec/meta_boxes/display_options.php:798
289
  #: app/features/mec/meta_boxes/search_form.php:31
290
  #: app/features/mec/meta_boxes/search_form.php:93
296
  #: app/features/mec/meta_boxes/search_form.php:453
297
  #: app/features/mec/meta_boxes/search_form.php:514
298
  #: app/features/mec/meta_boxes/search_form.php:575
299
+ #: app/features/mec/settings.php:716 app/features/mec/single.php:201
300
+ #: app/libraries/main.php:4852 app/libraries/skins.php:807
301
+ #: app/skins/single.php:531 app/skins/single/default.php:170
302
  #: app/skins/single/default.php:382 app/skins/single/m1.php:170
303
  #: app/skins/single/m2.php:102 app/skins/single/modern.php:110
304
  msgid "Category"
305
  msgstr ""
306
 
307
+ #: app/features/events.php:174 app/features/events.php:2983
308
+ #: app/features/fes/form.php:745 app/features/mec.php:335
309
+ #: app/features/mec/meta_boxes/filter.php:70 app/libraries/main.php:4851
310
  msgid "Categories"
311
  msgstr ""
312
 
313
+ #: app/features/events.php:184 app/features/labels.php:71
314
  #: app/features/locations.php:69 app/features/organizers.php:69
315
  #: app/features/speakers.php:70
316
  #, php-format
317
  msgid "All %s"
318
  msgstr ""
319
 
320
+ #: app/features/events.php:185 app/features/labels.php:72
321
  #: app/features/locations.php:70 app/features/organizers.php:70
322
  #: app/features/speakers.php:71
323
  #, php-format
324
  msgid "Edit %s"
325
  msgstr ""
326
 
327
+ #: app/features/events.php:186 app/features/labels.php:73
328
  #: app/features/locations.php:71 app/features/organizers.php:71
329
  #: app/features/speakers.php:72
330
  #, php-format
331
  msgid "View %s"
332
  msgstr ""
333
 
334
+ #: app/features/events.php:187 app/features/labels.php:74
335
  #: app/features/locations.php:72 app/features/organizers.php:72
336
  #: app/features/speakers.php:73
337
  #, php-format
338
  msgid "Update %s"
339
  msgstr ""
340
 
341
+ #: app/features/events.php:188 app/features/labels.php:75
342
  #: app/features/locations.php:73 app/features/organizers.php:73
343
  #: app/features/speakers.php:74
344
  #, php-format
345
  msgid "Add New %s"
346
  msgstr ""
347
 
348
+ #: app/features/events.php:189 app/features/labels.php:76
349
  #: app/features/locations.php:74 app/features/organizers.php:74
350
  #: app/features/speakers.php:75
351
  #, php-format
352
  msgid "New %s Name"
353
  msgstr ""
354
 
355
+ #: app/features/events.php:190 app/features/labels.php:77
356
  #: app/features/locations.php:75 app/features/organizers.php:75
357
  #: app/features/speakers.php:76
358
  #, php-format
359
  msgid "Popular %s"
360
  msgstr ""
361
 
362
+ #: app/features/events.php:191 app/features/labels.php:78
363
  #: app/features/locations.php:76 app/features/organizers.php:76
364
  #: app/features/speakers.php:77
365
  #, php-format
366
  msgid "Search %s"
367
  msgstr ""
368
 
369
+ #: app/features/events.php:216 app/features/events.php:237
370
  msgid "Category Icon"
371
  msgstr ""
372
 
373
+ #: app/features/events.php:219 app/features/events.php:242
374
  msgid "Select icon"
375
  msgstr ""
376
 
377
+ #: app/features/events.php:291
378
  msgid "Event Details"
379
  msgstr ""
380
 
381
+ #: app/features/events.php:333 app/features/events.php:3205
382
+ #: app/features/events.php:3247 app/features/fes/form.php:706
383
+ #: app/features/ix.php:2743 app/features/ix.php:2784
384
+ #: app/features/mec/settings.php:573 app/libraries/main.php:4884
385
  #: app/widgets/single.php:103
386
  msgid "Event Cost"
387
  msgstr ""
388
 
389
+ #: app/features/events.php:337 app/features/fes/form.php:709
390
+ #: app/libraries/main.php:4885 app/skins/single.php:554
391
  #: app/skins/single/default.php:104 app/skins/single/default.php:316
392
  #: app/skins/single/m1.php:49 app/skins/single/modern.php:199
393
  msgid "Cost"
394
  msgstr ""
395
 
396
+ #: app/features/events.php:435
397
  msgid "Note for reviewer"
398
  msgstr ""
399
 
400
+ #: app/features/events.php:442
401
  msgid "Guest Data"
402
  msgstr ""
403
 
404
+ #: app/features/events.php:443 app/features/events.php:2261
405
  #: app/features/fes/form.php:668 app/features/labels.php:178
406
  #: app/features/mec/regform.php:27 app/features/organizers.php:279
407
  #: app/features/profile/profile.php:90 app/libraries/notifications.php:736
409
  msgid "Name"
410
  msgstr ""
411
 
412
+ #: app/features/events.php:444 app/features/events.php:2272
413
+ #: app/features/events.php:2350 app/features/fes/form.php:664
414
+ #: app/features/mec/regform.php:39 app/features/mec/regform.php:113
415
  #: app/features/organizers.php:111 app/features/organizers.php:152
416
  #: app/features/profile/profile.php:93 app/features/speakers.php:124
417
+ #: app/features/speakers.php:184 app/libraries/main.php:1488
418
+ #: app/libraries/main.php:1554 app/libraries/main.php:2599
419
  #: app/libraries/notifications.php:737 app/modules/booking/steps/form.php:46
420
+ #: app/modules/booking/steps/form.php:84 app/skins/single.php:781
421
+ #: app/skins/single.php:836 app/skins/single/default.php:212
422
  #: app/skins/single/default.php:424 app/skins/single/m1.php:107
423
  #: app/skins/single/m2.php:39 app/skins/single/modern.php:48
424
  msgid "Email"
425
  msgstr ""
426
 
427
+ #: app/features/events.php:448 app/features/fes/form.php:232
428
  msgid "Date and Time"
429
  msgstr ""
430
 
431
+ #: app/features/events.php:452 app/features/events.php:458
432
+ #: app/features/events.php:3015 app/features/events.php:3205
433
+ #: app/features/events.php:3247 app/features/fes/form.php:236
434
+ #: app/features/fes/form.php:240 app/features/ix.php:2743
435
+ #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:38
436
  #: app/features/mec/dashboard.php:346
437
  #: app/features/mec/meta_boxes/display_options.php:42
438
  #: app/features/mec/meta_boxes/display_options.php:169
450
  msgid "Start Date"
451
  msgstr ""
452
 
453
+ #: app/features/events.php:530 app/features/events.php:622
454
+ #: app/features/events.php:1615 app/features/events.php:1657
455
+ #: app/features/events.php:1824 app/features/events.php:1848
456
  #: app/features/fes/form.php:268 app/features/fes/form.php:308
457
  msgid "AM"
458
  msgstr ""
459
 
460
+ #: app/features/events.php:537 app/features/events.php:629
461
+ #: app/features/events.php:1622 app/features/events.php:1664
462
+ #: app/features/events.php:1825 app/features/events.php:1849
463
  #: app/features/fes/form.php:269 app/features/fes/form.php:309
464
  msgid "PM"
465
  msgstr ""
466
 
467
+ #: app/features/events.php:544 app/features/events.php:549
468
+ #: app/features/events.php:3016 app/features/events.php:3205
469
+ #: app/features/events.php:3247 app/features/fes/form.php:276
470
+ #: app/features/fes/form.php:280 app/features/ix.php:2743
471
+ #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:44
472
  #: app/features/mec/dashboard.php:347
473
  msgid "End Date"
474
  msgstr ""
475
 
476
+ #: app/features/events.php:643 app/features/fes/form.php:315
477
  msgid "All Day Event"
478
  msgstr ""
479
 
480
+ #: app/features/events.php:653 app/features/fes/form.php:318
481
  msgid "Hide Event Time"
482
  msgstr ""
483
 
484
+ #: app/features/events.php:663 app/features/fes/form.php:321
485
  msgid "Hide Event End Time"
486
  msgstr ""
487
 
488
+ #: app/features/events.php:668 app/features/events.php:672
489
  #: app/features/fes/form.php:325
490
  msgid "Time Comment"
491
  msgstr ""
492
 
493
+ #: app/features/events.php:673 app/features/fes/form.php:326
494
  msgid ""
495
  "It shows next to event time on single event page. You can insert Timezone "
496
  "etc. in this field."
497
  msgstr ""
498
 
499
+ #: app/features/events.php:675 app/features/events.php:807
500
+ #: app/features/events.php:1106 app/features/events.php:1149
501
+ #: app/features/events.php:1448 app/features/events.php:1507
502
+ #: app/features/events.php:1684 app/features/events.php:1699
503
+ #: app/features/events.php:1866 app/features/events.php:1879
504
+ #: app/features/events.php:2009 app/features/events.php:2045
505
+ #: app/features/events.php:2143 app/features/events.php:2158
506
+ #: app/features/events.php:2188 app/features/events.php:2201
507
  #: app/features/fes/form.php:630 app/features/locations.php:299
508
+ #: app/features/mec/booking.php:60 app/features/mec/booking.php:97
509
+ #: app/features/mec/booking.php:113 app/features/mec/booking.php:220
510
+ #: app/features/mec/booking.php:249 app/features/mec/booking.php:297
511
+ #: app/features/mec/booking.php:307 app/features/mec/booking.php:329
512
+ #: app/features/mec/booking.php:339 app/features/mec/dashboard.php:71
513
  #: app/features/mec/meta_boxes/display_options.php:60
514
  #: app/features/mec/meta_boxes/display_options.php:73
515
  #: app/features/mec/meta_boxes/display_options.php:86
540
  #: app/features/mec/meta_boxes/display_options.php:1134
541
  #: app/features/mec/meta_boxes/display_options.php:1147
542
  #: app/features/mec/meta_boxes/display_options.php:1160
543
+ #: app/features/mec/modules.php:50 app/features/mec/modules.php:83
544
+ #: app/features/mec/modules.php:100 app/features/mec/modules.php:135
545
+ #: app/features/mec/modules.php:151 app/features/mec/modules.php:309
546
  #: app/features/mec/notifications.php:246
547
  #: app/features/mec/notifications.php:303
548
  #: app/features/mec/notifications.php:355
550
  #: app/features/mec/notifications.php:482
551
  #: app/features/mec/notifications.php:545
552
  #: app/features/mec/notifications.php:556