Modern Events Calendar Lite - Version 4.3.1

Version Description

  • Added: "Number of Days" and "Week Start Day" options to clean style of timetable skin
  • Added: Instagram to speakers
  • Added: Search form to the clean style of timetable skin
  • Added: All search options to full calendar skin
  • Added: Event status in Frontend Event Submission views
  • Added: Button in WordPress editor (TinyMCE) to insert shortcodes directly from editor
  • Improved: MEC settings mobile /tablet view
  • Removed: "Google +" social network
  • Fixed: Active day issue on daily view
  • Fixed: Block editor compatibility for category and speaker taxonomies
  • Fixed: Displaying ticket when booking is added from backend
  • Fixed: Title color issue on styling options for all shortcodes
  • Fixed: Additional locations in single event modern skin
  • Fixed: Responsive issue in Monthly view (simple style)
Download this release

Release Info

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

Code changes from version 4.3.0 to 4.3.1

Files changed (40) hide show
  1. app/features/events.php +1 -0
  2. app/features/fes/form.php +4 -0
  3. app/features/fes/list.php +8 -1
  4. app/features/mec.php +3 -1
  5. app/features/mec/dyncss.php +2 -2
  6. app/features/mec/meta_boxes/display_options.php +26 -3
  7. app/features/mec/meta_boxes/search_form.php +35 -0
  8. app/features/mec/notifications.php +3 -0
  9. app/features/mec/settings.php +5 -5
  10. app/features/mec/styling.php +3 -0
  11. app/features/speakers.php +8 -7
  12. app/libraries/factory.php +11 -2
  13. app/libraries/main.php +103 -18
  14. app/libraries/skins.php +7 -1
  15. app/modules/attendees-list/details.php +1 -1
  16. app/modules/countdown/details.php +6 -0
  17. app/modules/googlemap/details.php +2 -1
  18. app/modules/next-event/details.php +5 -1
  19. app/modules/speakers/details.php +2 -2
  20. app/skins/full_calendar/tpl.php +40 -2
  21. app/skins/masonry/render.php +41 -9
  22. app/skins/monthly_view/calendar.php +1 -1
  23. app/skins/single.php +4 -4
  24. app/skins/single/modern.php +1 -0
  25. app/skins/timetable.php +51 -64
  26. app/skins/timetable/clean.php +21 -1
  27. app/skins/timetable/render.php +9 -12
  28. assets/css/backend.css +37 -1
  29. assets/css/backend.min.css +2 -2
  30. assets/css/frontend.css +190 -0
  31. assets/css/frontend.min.css +1 -1
  32. assets/js/backend.js +82 -16
  33. assets/js/frontend.js +61 -11
  34. changelog.txt +17 -1
  35. languages/modern-events-calendar-lite-de_DE.mo +0 -0
  36. languages/modern-events-calendar-lite-de_DE.po +1007 -950
  37. languages/modern-events-calendar-lite-en_US.mo +0 -0
  38. languages/modern-events-calendar-lite-en_US.po +962 -919
  39. languages/modern-events-calendar-lite-es_ES.mo +0 -0
  40. languages/modern-events-calendar-lite-es_ES.po +797 -756
app/features/events.php CHANGED
@@ -178,6 +178,7 @@ class MEC_feature_events extends MEC_base {
178
  ),
179
  'public' => true,
180
  'show_ui' => true,
 
181
  'hierarchical' => true,
182
  'has_archive' => true,
183
  'rewrite' => array( 'slug' => $this->main->get_category_slug() ),
178
  ),
179
  'public' => true,
180
  'show_ui' => true,
181
+ 'show_in_rest' => true,
182
  'hierarchical' => true,
183
  'has_archive' => true,
184
  'rewrite' => array( 'slug' => $this->main->get_category_slug() ),
app/features/fes/form.php CHANGED
@@ -157,6 +157,10 @@ $this->factory->params('footer', $javascript);
157
  <?php if(is_user_logged_in()): ?>
158
  <div class="mec-fes-form-top-actions">
159
  <a href="<?php echo $this->link_list_events(); ?>"><?php echo __('Go back to events list.', 'modern-events-calendar-lite'); ?></a>
 
 
 
 
160
  </div>
161
  <?php endif; ?>
162
 
157
  <?php if(is_user_logged_in()): ?>
158
  <div class="mec-fes-form-top-actions">
159
  <a href="<?php echo $this->link_list_events(); ?>"><?php echo __('Go back to events list.', 'modern-events-calendar-lite'); ?></a>
160
+ <?php $status = $this->main->get_event_label_status(get_post_status($post_id)); ?>
161
+ <?php if(trim($status['label']) != "Empty"): ?>
162
+ <span class="post-status <?php echo $status['status_class']; ?>"><?php echo $status['label']; ?></span>
163
+ <?php endif; ?>
164
  </div>
165
  <?php endif; ?>
166
 
app/features/fes/list.php CHANGED
@@ -63,14 +63,21 @@ $this->factory->params('footer', $javascript);
63
  <div class="mec-fes-list-top-actions">
64
  <a href="<?php echo $this->link_add_event(); ?>"><?php echo __('Add new', 'modern-events-calendar-lite'); ?></a>
65
  </div>
 
66
  <ul>
67
- <?php while($query->have_posts()): $query->the_post(); ?>
 
 
 
 
 
68
  <li id="mec_fes_event_<?php echo get_the_ID(); ?>">
69
  <span class="mec-event-title"><a href="<?php echo $this->link_edit_event(get_the_ID()); ?>"><?php the_title(); ?></a></span>
70
  <span class="mec-fes-event-view"><a href="<?php the_permalink(); ?>"><?php _e('View', 'modern-events-calendar-lite'); ?></a></span>
71
  <?php if(current_user_can('delete_post', get_the_ID())): ?>
72
  <span class="mec-fes-event-remove" data-confirmed="0" data-id="<?php echo get_the_ID(); ?>"><?php _e('Remove', 'modern-events-calendar-lite'); ?></span>
73
  <?php endif; ?>
 
74
  </li>
75
  <?php endwhile; wp_reset_postdata(); // Restore original Post Data ?>
76
  </ul>
63
  <div class="mec-fes-list-top-actions">
64
  <a href="<?php echo $this->link_add_event(); ?>"><?php echo __('Add new', 'modern-events-calendar-lite'); ?></a>
65
  </div>
66
+ <?php do_action('mec_fes_list'); ?>
67
  <ul>
68
+ <?php
69
+ while($query->have_posts()): $query->the_post();
70
+ // Show Post Status
71
+ global $post;
72
+ $status = $this->main->get_event_label_status(trim($post->post_status));
73
+ ?>
74
  <li id="mec_fes_event_<?php echo get_the_ID(); ?>">
75
  <span class="mec-event-title"><a href="<?php echo $this->link_edit_event(get_the_ID()); ?>"><?php the_title(); ?></a></span>
76
  <span class="mec-fes-event-view"><a href="<?php the_permalink(); ?>"><?php _e('View', 'modern-events-calendar-lite'); ?></a></span>
77
  <?php if(current_user_can('delete_post', get_the_ID())): ?>
78
  <span class="mec-fes-event-remove" data-confirmed="0" data-id="<?php echo get_the_ID(); ?>"><?php _e('Remove', 'modern-events-calendar-lite'); ?></span>
79
  <?php endif; ?>
80
+ <span class="mec-fes-event-view mec-event-status <?php echo $status['status_class']; ?>"><?php echo $status['label']; ?></span>
81
  </li>
82
  <?php endwhile; wp_reset_postdata(); // Restore original Post Data ?>
83
  </ul>
app/features/mec.php CHANGED
@@ -339,7 +339,8 @@ class MEC_feature_mec extends MEC_base
339
  */
340
  public function register_post_type()
341
  {
342
- $elementor = class_exists( 'MEC_Shortcode_Builder' ) && did_action( 'elementor/loaded' ) ? true : false;
 
343
  register_post_type('mec_calendars',
344
  array(
345
  'labels'=>array
@@ -364,6 +365,7 @@ class MEC_feature_mec extends MEC_base
364
  'supports'=>array('title')
365
  )
366
  );
 
367
  do_action('mec_register_post_type');
368
  }
369
 
339
  */
340
  public function register_post_type()
341
  {
342
+ $elementor = class_exists('MEC_Shortcode_Builder') && did_action('elementor/loaded') ? true : false;
343
+
344
  register_post_type('mec_calendars',
345
  array(
346
  'labels'=>array
365
  'supports'=>array('title')
366
  )
367
  );
368
+
369
  do_action('mec_register_post_type');
370
  }
371
 
app/features/mec/dyncss.php CHANGED
@@ -160,13 +160,13 @@ if($mec_container_large_width): ?>
160
 
161
  if($title_color): ?>
162
  .mec-wrap h1 a, .mec-wrap h2 a, .mec-wrap h3 a, .mec-wrap h4 a, .mec-wrap h5 a, .mec-wrap h6 a,.entry-content .mec-wrap h1 a, .entry-content .mec-wrap h2 a, .entry-content .mec-wrap h3 a,.entry-content .mec-wrap h4 a, .entry-content .mec-wrap h5 a, .entry-content .mec-wrap h6 a {
163
- color: <?php echo $title_color; ?>;
164
  }
165
  <?php endif;
166
 
167
  if($title_color_hover): ?>
168
  .mec-wrap.colorskin-custom h1 a:hover, .mec-wrap.colorskin-custom h2 a:hover, .mec-wrap.colorskin-custom h3 a:hover, .mec-wrap.colorskin-custom h4 a:hover, .mec-wrap.colorskin-custom h5 a:hover, .mec-wrap.colorskin-custom h6 a:hover,.entry-content .mec-wrap.colorskin-custom h1 a:hover, .entry-content .mec-wrap.colorskin-custom h2 a:hover, .entry-content .mec-wrap.colorskin-custom h3 a:hover,.entry-content .mec-wrap.colorskin-custom h4 a:hover, .entry-content .mec-wrap.colorskin-custom h5 a:hover, .entry-content .mec-wrap.colorskin-custom h6 a:hover {
169
- color: <?php echo $title_color_hover; ?>;
170
  }
171
  <?php endif;
172
 
160
 
161
  if($title_color): ?>
162
  .mec-wrap h1 a, .mec-wrap h2 a, .mec-wrap h3 a, .mec-wrap h4 a, .mec-wrap h5 a, .mec-wrap h6 a,.entry-content .mec-wrap h1 a, .entry-content .mec-wrap h2 a, .entry-content .mec-wrap h3 a,.entry-content .mec-wrap h4 a, .entry-content .mec-wrap h5 a, .entry-content .mec-wrap h6 a {
163
+ color: <?php echo $title_color; ?> !important;
164
  }
165
  <?php endif;
166
 
167
  if($title_color_hover): ?>
168
  .mec-wrap.colorskin-custom h1 a:hover, .mec-wrap.colorskin-custom h2 a:hover, .mec-wrap.colorskin-custom h3 a:hover, .mec-wrap.colorskin-custom h4 a:hover, .mec-wrap.colorskin-custom h5 a:hover, .mec-wrap.colorskin-custom h6 a:hover,.entry-content .mec-wrap.colorskin-custom h1 a:hover, .entry-content .mec-wrap.colorskin-custom h2 a:hover, .entry-content .mec-wrap.colorskin-custom h3 a:hover,.entry-content .mec-wrap.colorskin-custom h4 a:hover, .entry-content .mec-wrap.colorskin-custom h5 a:hover, .entry-content .mec-wrap.colorskin-custom h6 a:hover {
169
+ color: <?php echo $title_color_hover; ?> !important;
170
  }
171
  <?php endif;
172
 
app/features/mec/meta_boxes/display_options.php CHANGED
@@ -687,7 +687,7 @@ $events = $this->main->get_events();
687
  <?php $sk_options_timetable = isset($sk_options['timetable']) ? $sk_options['timetable'] : array(); ?>
688
  <div class="mec-form-row">
689
  <label class="mec-col-4" for="mec_skin_timetable_style"><?php _e('Style', 'modern-events-calendar-lite'); ?></label>
690
- <select class="mec-col-4" name="mec[sk-options][timetable][style]" id="mec_skin_timetable_style" onchange="mec_skin_style_changed('timetable', this.value); if(this.value == 'clean') jQuery('.mec-timetable-next-previous-button').hide(); else jQuery('.mec-timetable-next-previous-button').show();">
691
  <option value="modern" <?php if(isset($sk_options_timetable['style']) and $sk_options_timetable['style'] == 'modern') echo 'selected="selected"'; ?>><?php _e('Modern', 'modern-events-calendar-lite'); ?></option>
692
  <option value="clean" <?php if(isset($sk_options_timetable['style']) and $sk_options_timetable['style'] == 'clean') echo 'selected="selected"'; ?>><?php _e('Clean', 'modern-events-calendar-lite'); ?></option>
693
  </select>
@@ -709,7 +709,30 @@ $events = $this->main->get_events();
709
  <label class="mec-col-4" for="mec_skin_timetable_limit"><?php _e('Events per day', 'modern-events-calendar-lite'); ?></label>
710
  <input class="mec-col-4" type="number" name="mec[sk-options][timetable][limit]" id="mec_skin_timetable_limit" placeholder="<?php _e('eg. 6', 'modern-events-calendar-lite'); ?>" value="<?php if(isset($sk_options_timetable['limit'])) echo $sk_options_timetable['limit']; ?>" />
711
  </div>
712
- <div class="mec-timetable-next-previous-button">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
713
  <div class="mec-form-row mec-switcher">
714
  <div class="mec-col-4">
715
  <label><?php _e('Next/Previous Buttons', 'modern-events-calendar-lite'); ?></label>
@@ -767,7 +790,7 @@ $events = $this->main->get_events();
767
  <div class="mec-form-row">
768
  <label class="mec-col-4" for="mec_skin_masonry_filter_by"><?php _e('Filter By', 'modern-events-calendar-lite'); ?></label>
769
  <select class="mec-col-4" name="mec[sk-options][masonry][filter_by]" id="mec_skin_masonry_filter_by">
770
- <option value="" <?php if(isset($sk_options_masonry['filter_by']) and $sk_options_masonry['filter_by'] == '') echo 'selected="selected"'; ?>>-----</option>
771
  <option value="category" <?php if(isset($sk_options_masonry['filter_by']) and $sk_options_masonry['filter_by'] == 'category') echo 'selected="selected"'; ?>><?php _e('Category', 'modern-events-calendar-lite'); ?></option>
772
  <option value="label" <?php if(isset($sk_options_masonry['filter_by']) and $sk_options_masonry['filter_by'] == 'label') echo 'selected="selected"'; ?>><?php _e('Label', 'modern-events-calendar-lite'); ?></option>
773
  <option value="location" <?php if(isset($sk_options_masonry['filter_by']) and $sk_options_masonry['filter_by'] == 'location') echo 'selected="selected"'; ?>><?php _e('Location', 'modern-events-calendar-lite'); ?></option>
687
  <?php $sk_options_timetable = isset($sk_options['timetable']) ? $sk_options['timetable'] : array(); ?>
688
  <div class="mec-form-row">
689
  <label class="mec-col-4" for="mec_skin_timetable_style"><?php _e('Style', 'modern-events-calendar-lite'); ?></label>
690
+ <select class="mec-col-4" name="mec[sk-options][timetable][style]" id="mec_skin_timetable_style" onchange="mec_skin_style_changed('timetable', this.value); if(this.value == 'clean'){ jQuery('.mec-timetable-clean-style-depended').show(); jQuery('.mec-timetable-modern-style-depended').hide(); } else { jQuery('.mec-timetable-clean-style-depended').hide(); jQuery('.mec-timetable-modern-style-depended').show(); }">
691
  <option value="modern" <?php if(isset($sk_options_timetable['style']) and $sk_options_timetable['style'] == 'modern') echo 'selected="selected"'; ?>><?php _e('Modern', 'modern-events-calendar-lite'); ?></option>
692
  <option value="clean" <?php if(isset($sk_options_timetable['style']) and $sk_options_timetable['style'] == 'clean') echo 'selected="selected"'; ?>><?php _e('Clean', 'modern-events-calendar-lite'); ?></option>
693
  </select>
709
  <label class="mec-col-4" for="mec_skin_timetable_limit"><?php _e('Events per day', 'modern-events-calendar-lite'); ?></label>
710
  <input class="mec-col-4" type="number" name="mec[sk-options][timetable][limit]" id="mec_skin_timetable_limit" placeholder="<?php _e('eg. 6', 'modern-events-calendar-lite'); ?>" value="<?php if(isset($sk_options_timetable['limit'])) echo $sk_options_timetable['limit']; ?>" />
711
  </div>
712
+ <div class="mec-timetable-clean-style-depended">
713
+ <div class="mec-form-row">
714
+ <label class="mec-col-4" for="mec_skin_timetable_number_of_days"><?php _e('Number of Days', 'modern-events-calendar-lite'); ?></label>
715
+ <select class="mec-col-4" name="mec[sk-options][timetable][number_of_days]" id="mec_skin_timetable_number_of_days">
716
+ <option value="5" <?php if(isset($sk_options_timetable['number_of_days']) and $sk_options_timetable['number_of_days'] == '5') echo 'selected="selected"'; ?>>5</option>
717
+ <option value="6" <?php if(isset($sk_options_timetable['number_of_days']) and $sk_options_timetable['number_of_days'] == '6') echo 'selected="selected"'; ?>>6</option>
718
+ <option value="7" <?php if(isset($sk_options_timetable['number_of_days']) and $sk_options_timetable['number_of_days'] == '7') echo 'selected="selected"'; ?>>7</option>
719
+ </select>
720
+ </div>
721
+ <div class="mec-form-row">
722
+ <label class="mec-col-4" for="mec_skin_timetable_week_start"><?php _e('Week Start', 'modern-events-calendar-lite'); ?></label>
723
+ <select class="mec-col-4" name="mec[sk-options][timetable][week_start]" id="mec_skin_timetable_week_start">
724
+ <option value="-1" <?php if(isset($sk_options_timetable['week_start']) and $sk_options_timetable['week_start'] == '-1') echo 'selected="selected"'; ?>><?php _e('Inherite from WordPress options', 'modern-events-calendar-lite'); ?></option>
725
+ <option value="0" <?php if(isset($sk_options_timetable['week_start']) and $sk_options_timetable['week_start'] == '0') echo 'selected="selected"'; ?>><?php _e('Sunday', 'modern-events-calendar-lite'); ?></option>
726
+ <option value="1" <?php if(isset($sk_options_timetable['week_start']) and $sk_options_timetable['week_start'] == '1') echo 'selected="selected"'; ?>><?php _e('Monday', 'modern-events-calendar-lite'); ?></option>
727
+ <option value="2" <?php if(isset($sk_options_timetable['week_start']) and $sk_options_timetable['week_start'] == '2') echo 'selected="selected"'; ?>><?php _e('Tuesday', 'modern-events-calendar-lite'); ?></option>
728
+ <option value="3" <?php if(isset($sk_options_timetable['week_start']) and $sk_options_timetable['week_start'] == '3') echo 'selected="selected"'; ?>><?php _e('Wednesday', 'modern-events-calendar-lite'); ?></option>
729
+ <option value="4" <?php if(isset($sk_options_timetable['week_start']) and $sk_options_timetable['week_start'] == '4') echo 'selected="selected"'; ?>><?php _e('Thursday', 'modern-events-calendar-lite'); ?></option>
730
+ <option value="5" <?php if(isset($sk_options_timetable['week_start']) and $sk_options_timetable['week_start'] == '5') echo 'selected="selected"'; ?>><?php _e('Friday', 'modern-events-calendar-lite'); ?></option>
731
+ <option value="6" <?php if(isset($sk_options_timetable['week_start']) and $sk_options_timetable['week_start'] == '6') echo 'selected="selected"'; ?>><?php _e('Saturday', 'modern-events-calendar-lite'); ?></option>
732
+ </select>
733
+ </div>
734
+ </div>
735
+ <div class="mec-timetable-modern-style-depended">
736
  <div class="mec-form-row mec-switcher">
737
  <div class="mec-col-4">
738
  <label><?php _e('Next/Previous Buttons', 'modern-events-calendar-lite'); ?></label>
790
  <div class="mec-form-row">
791
  <label class="mec-col-4" for="mec_skin_masonry_filter_by"><?php _e('Filter By', 'modern-events-calendar-lite'); ?></label>
792
  <select class="mec-col-4" name="mec[sk-options][masonry][filter_by]" id="mec_skin_masonry_filter_by">
793
+ <option value="" <?php if(isset($sk_options_masonry['filter_by']) and $sk_options_masonry['filter_by'] == '') echo 'selected="selected"'; ?>><?php _e('None', 'modern-events-calendar-lite'); ?></option>
794
  <option value="category" <?php if(isset($sk_options_masonry['filter_by']) and $sk_options_masonry['filter_by'] == 'category') echo 'selected="selected"'; ?>><?php _e('Category', 'modern-events-calendar-lite'); ?></option>
795
  <option value="label" <?php if(isset($sk_options_masonry['filter_by']) and $sk_options_masonry['filter_by'] == 'label') echo 'selected="selected"'; ?>><?php _e('Label', 'modern-events-calendar-lite'); ?></option>
796
  <option value="location" <?php if(isset($sk_options_masonry['filter_by']) and $sk_options_masonry['filter_by'] == 'location') echo 'selected="selected"'; ?>><?php _e('Location', 'modern-events-calendar-lite'); ?></option>
app/features/mec/meta_boxes/search_form.php CHANGED
@@ -217,6 +217,41 @@ $sf_options = get_post_meta($post->ID, 'sf-options', true);
217
  <option value="dropdown" <?php if(isset($sf_options_full_calendar['category']) and isset($sf_options_full_calendar['category']['type']) and $sf_options_full_calendar['category']['type'] == 'dropdown') echo 'selected="selected"'; ?>><?php _e('Dropdown', 'modern-events-calendar-lite'); ?></option>
218
  </select>
219
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
220
  <div class="mec-form-row">
221
  <label class="mec-col-12" for="mec_sf_full_calendar_month_filter"><?php _e('Month Filter', 'modern-events-calendar-lite'); ?></label>
222
  <select class="mec-col-12" name="mec[sf-options][full_calendar][month_filter][type]" id="mec_sf_full_calendar_month_filter">
217
  <option value="dropdown" <?php if(isset($sf_options_full_calendar['category']) and isset($sf_options_full_calendar['category']['type']) and $sf_options_full_calendar['category']['type'] == 'dropdown') echo 'selected="selected"'; ?>><?php _e('Dropdown', 'modern-events-calendar-lite'); ?></option>
218
  </select>
219
  </div>
220
+ <div class="mec-form-row">
221
+ <label class="mec-col-12" for="mec_sf_full_calendar_location"><?php echo $this->main->m('taxonomy_location', __('Location', 'modern-events-calendar-lite')); ?></label>
222
+ <select class="mec-col-12" name="mec[sf-options][full_calendar][location][type]" id="mec_sf_full_calendar_location">
223
+ <option value="0" <?php if(isset($sf_options_full_calendar['location']) and isset($sf_options_full_calendar['location']['type']) and $sf_options_full_calendar['location']['type'] == '0') echo 'selected="selected"'; ?>><?php _e('Disabled', 'modern-events-calendar-lite'); ?></option>
224
+ <option value="dropdown" <?php if(isset($sf_options_full_calendar['location']) and isset($sf_options_full_calendar['location']['type']) and $sf_options_full_calendar['location']['type'] == 'dropdown') echo 'selected="selected"'; ?>><?php _e('Dropdown', 'modern-events-calendar-lite'); ?></option>
225
+ </select>
226
+ </div>
227
+ <div class="mec-form-row">
228
+ <label class="mec-col-12" for="mec_sf_full_calendar_organizer"><?php echo $this->main->m('taxonomy_organizer', __('Organizer', 'modern-events-calendar-lite')); ?></label>
229
+ <select class="mec-col-12" name="mec[sf-options][full_calendar][organizer][type]" id="mec_sf_full_calendar_organizer">
230
+ <option value="0" <?php if(isset($sf_options_full_calendar['organizer']) and isset($sf_options_full_calendar['organizer']['type']) and $sf_options_full_calendar['organizer']['type'] == '0') echo 'selected="selected"'; ?>><?php _e('Disabled', 'modern-events-calendar-lite'); ?></option>
231
+ <option value="dropdown" <?php if(isset($sf_options_full_calendar['organizer']) and isset($sf_options_full_calendar['organizer']['type']) and $sf_options_full_calendar['organizer']['type'] == 'dropdown') echo 'selected="selected"'; ?>><?php _e('Dropdown', 'modern-events-calendar-lite'); ?></option>
232
+ </select>
233
+ </div>
234
+ <div class="mec-form-row">
235
+ <label class="mec-col-12" for="mec_sf_full_calendar_speaker"><?php echo $this->main->m('taxonomy_speaker', __('Speaker', 'modern-events-calendar-lite')); ?></label>
236
+ <select class="mec-col-12" name="mec[sf-options][full_calendar][speaker][type]" id="mec_sf_full_calendar_speaker">
237
+ <option value="0" <?php if(isset($sf_options_full_calendar['speaker']) and isset($sf_options_full_calendar['speaker']['type']) and $sf_options_full_calendar['speaker']['type'] == '0') echo 'selected="selected"'; ?>><?php _e('Disabled', 'modern-events-calendar-lite'); ?></option>
238
+ <option value="dropdown" <?php if(isset($sf_options_full_calendar['speaker']) and isset($sf_options_full_calendar['speaker']['type']) and $sf_options_full_calendar['speaker']['type'] == 'dropdown') echo 'selected="selected"'; ?>><?php _e('Dropdown', 'modern-events-calendar-lite'); ?></option>
239
+ </select>
240
+ </div>
241
+ <div class="mec-form-row">
242
+ <label class="mec-col-12" for="mec_sf_full_calendar_tag"><?php echo $this->main->m('taxonomy_tag', __('Tag', 'modern-events-calendar-lite')); ?></label>
243
+ <select class="mec-col-12" name="mec[sf-options][full_calendar][tag][type]" id="mec_sf_full_calendar_tag">
244
+ <option value="0" <?php if(isset($sf_options_full_calendar['tag']) and isset($sf_options_full_calendar['tag']['type']) and $sf_options_full_calendar['tag']['type'] == '0') echo 'selected="selected"'; ?>><?php _e('Disabled', 'modern-events-calendar-lite'); ?></option>
245
+ <option value="dropdown" <?php if(isset($sf_options_full_calendar['tag']) and isset($sf_options_full_calendar['tag']['type']) and $sf_options_full_calendar['tag']['type'] == 'dropdown') echo 'selected="selected"'; ?>><?php _e('Dropdown', 'modern-events-calendar-lite'); ?></option>
246
+ </select>
247
+ </div>
248
+ <div class="mec-form-row">
249
+ <label class="mec-col-12" for="mec_sf_full_calendar_label"><?php echo $this->main->m('taxonomy_label', __('Label', 'modern-events-calendar-lite')); ?></label>
250
+ <select class="mec-col-12" name="mec[sf-options][full_calendar][label][type]" id="mec_sf_full_calendar_label">
251
+ <option value="0" <?php if(isset($sf_options_full_calendar['label']) and isset($sf_options_full_calendar['label']['type']) and $sf_options_full_calendar['label']['type'] == '0') echo 'selected="selected"'; ?>><?php _e('Disabled', 'modern-events-calendar-lite'); ?></option>
252
+ <option value="dropdown" <?php if(isset($sf_options_full_calendar['label']) and isset($sf_options_full_calendar['label']['type']) and $sf_options_full_calendar['label']['type'] == 'dropdown') echo 'selected="selected"'; ?>><?php _e('Dropdown', 'modern-events-calendar-lite'); ?></option>
253
+ </select>
254
+ </div>
255
  <div class="mec-form-row">
256
  <label class="mec-col-12" for="mec_sf_full_calendar_month_filter"><?php _e('Month Filter', 'modern-events-calendar-lite'); ?></label>
257
  <select class="mec-col-12" name="mec[sf-options][full_calendar][month_filter][type]" id="mec_sf_full_calendar_month_filter">
app/features/mec/notifications.php CHANGED
@@ -44,6 +44,9 @@ $notifications = $this->main->get_notifications();
44
 
45
  <li class="wns-be-group-menu-li active">
46
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>" id="" class="wns-be-group-tab-link-a">
 
 
 
47
  <i class="mec-sl-envelope"></i>
48
  <span class="wns-be-group-menu-title"><?php _e('Notifications', 'modern-events-calendar-lite'); ?></span>
49
  </a>
44
 
45
  <li class="wns-be-group-menu-li active">
46
  <a href="<?php echo $this->main->add_qs_var('tab', 'MEC-notifications'); ?>" id="" class="wns-be-group-tab-link-a">
47
+ <span class="extra-icon">
48
+ <i class="mec-sl-arrow-down"></i>
49
+ </span>
50
  <i class="mec-sl-envelope"></i>
51
  <span class="wns-be-group-menu-title"><?php _e('Notifications', 'modern-events-calendar-lite'); ?></span>
52
  </a>
app/features/mec/settings.php CHANGED
@@ -35,7 +35,7 @@ if($this->getPRO())
35
 
36
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>" id="" class="wns-be-group-tab-link-a">
37
  <span class="extra-icon">
38
- <i class="sl-arrow-down"></i>
39
  </span>
40
  <i class="mec-sl-settings"></i>
41
  <span class="wns-be-group-menu-title"><?php echo __('Settings', 'modern-events-calendar-lite'); ?></span>
@@ -699,15 +699,15 @@ if($this->getPRO())
699
  </div>
700
  </div>
701
  <div class="mec-form-row">
702
- <label class="mec-col-3" for="mec_settings_gutenberg"><?php _e('Disable Gutenberg', 'modern-events-calendar-lite'); ?></label>
703
  <label id="mec_settings_gutenberg" >
704
  <input type="hidden" name="mec[settings][gutenberg]" value="0" />
705
- <input value="1" type="checkbox" name="mec[settings][gutenberg]" <?php if(!isset($settings['gutenberg']) or (isset($settings['gutenberg']) and $settings['gutenberg'])) echo 'checked="checked"'; ?> /> <?php _e('Disable Gutenberg Page Builder.', 'modern-events-calendar-lite'); ?>
706
  </label>
707
  <span class="mec-tooltip">
708
  <div class="box top">
709
- <h5 class="title"><?php _e('Gutenberg', 'modern-events-calendar-lite'); ?></h5>
710
- <div class="content"><p><?php esc_attr_e("If Check it, can disable the Gutenberg page builder, So if you want to use the Gutenberg keep unchecking the checkbox.", 'modern-events-calendar-lite'); ?><a href="https://webnus.net/dox/modern-events-calendar/event-detailssingle-event-page/" target="_blank"><?php _e('Read More', 'modern-events-calendar-lite'); ?></a></p></div>
711
  </div>
712
  <i title="" class="dashicons-before dashicons-editor-help"></i>
713
  </span>
35
 
36
  <a href="<?php echo $this->main->remove_qs_var('tab'); ?>" id="" class="wns-be-group-tab-link-a">
37
  <span class="extra-icon">
38
+ <i class="mec-sl-arrow-down"></i>
39
  </span>
40
  <i class="mec-sl-settings"></i>
41
  <span class="wns-be-group-menu-title"><?php echo __('Settings', 'modern-events-calendar-lite'); ?></span>
699
  </div>
700
  </div>
701
  <div class="mec-form-row">
702
+ <label class="mec-col-3" for="mec_settings_gutenberg"><?php _e('Disable Block Editor (Gutenberg)', 'modern-events-calendar-lite'); ?></label>
703
  <label id="mec_settings_gutenberg" >
704
  <input type="hidden" name="mec[settings][gutenberg]" value="0" />
705
+ <input value="1" type="checkbox" name="mec[settings][gutenberg]" <?php if(!isset($settings['gutenberg']) or (isset($settings['gutenberg']) and $settings['gutenberg'])) echo 'checked="checked"'; ?> /> <?php _e('Disable Block Editor', 'modern-events-calendar-lite'); ?>
706
  </label>
707
  <span class="mec-tooltip">
708
  <div class="box top">
709
+ <h5 class="title"><?php _e('Block Editor', 'modern-events-calendar-lite'); ?></h5>
710
+ <div class="content"><p><?php esc_attr_e("If you want to use the new WordPress block editor you should keep this checkbox unchecked.", 'modern-events-calendar-lite'); ?><a href="https://webnus.net/dox/modern-events-calendar/event-detailssingle-event-page/" target="_blank"><?php _e('Read More', 'modern-events-calendar-lite'); ?></a></p></div>
711
  </div>
712
  <i title="" class="dashicons-before dashicons-editor-help"></i>
713
  </span>
app/features/mec/styling.php CHANGED
@@ -185,6 +185,9 @@ if(is_array($fonts))
185
  <div class="mec-col-6">
186
  <input type="text" class="wp-color-picker-field" id="mec_settings_color" name="mec[styling][color]" value="<?php echo (isset($styling['color']) ? $styling['color'] : ''); ?>" data-default-color="" />
187
  </div>
 
 
 
188
  </div>
189
 
190
  <!-- Advanced Options -->
185
  <div class="mec-col-6">
186
  <input type="text" class="wp-color-picker-field" id="mec_settings_color" name="mec[styling][color]" value="<?php echo (isset($styling['color']) ? $styling['color'] : ''); ?>" data-default-color="" />
187
  </div>
188
+ <div class="mec-col-12">
189
+ <p><?php esc_attr_e("If you want to select a predefined color skin, you must clear the color of this item", 'modern-events-calendar-lite'); ?></p>
190
+ </div>
191
  </div>
192
 
193
  <!-- Advanced Options -->
app/features/speakers.php CHANGED
@@ -76,6 +76,7 @@ class MEC_feature_speakers extends MEC_base
76
  'rewrite'=>array('slug'=>'events-speaker'),
77
  'public'=>false,
78
  'show_ui'=>true,
 
79
  'hierarchical'=>false,
80
  )
81
  );
@@ -94,7 +95,7 @@ class MEC_feature_speakers extends MEC_base
94
  $tel = get_metadata('term', $term->term_id, 'tel', true);
95
  $email = get_metadata('term', $term->term_id, 'email', true);
96
  $facebook = get_metadata('term', $term->term_id, 'facebook', true);
97
- $gplus = get_metadata('term', $term->term_id, 'gplus', true);
98
  $twitter = get_metadata('term', $term->term_id, 'twitter', true);
99
  $thumbnail = get_metadata('term', $term->term_id, 'thumbnail', true);
100
  ?>
@@ -132,10 +133,10 @@ class MEC_feature_speakers extends MEC_base
132
  </tr>
133
  <tr class="form-field">
134
  <th scope="row" valign="top">
135
- <label for="mec_gplus"><?php _e('Google+', 'modern-events-calendar-lite'); ?></label>
136
  </th>
137
  <td>
138
- <input type="text" placeholder="<?php esc_attr_e('Insert URL of Google+', 'modern-events-calendar-lite'); ?>" name="gplus" id="mec_gplus" value="<?php echo $gplus; ?>" />
139
  </td>
140
  </tr>
141
  <tr class="form-field">
@@ -184,8 +185,8 @@ class MEC_feature_speakers extends MEC_base
184
  <input type="text" name="facebook" placeholder="<?php esc_attr_e('Insert URL of Facebook Page', 'modern-events-calendar-lite'); ?>" id="mec_facebook" value="" />
185
  </div>
186
  <div class="form-field">
187
- <label for="mec_gplus"><?php _e('Google+', 'modern-events-calendar-lite'); ?></label>
188
- <input type="text" name="gplus" placeholder="<?php esc_attr_e('Insert URL of Google+', 'modern-events-calendar-lite'); ?>" id="mec_gplus" value="" />
189
  </div>
190
  <div class="form-field">
191
  <label for="mec_twitter"><?php _e('Twitter Page', 'modern-events-calendar-lite'); ?></label>
@@ -213,7 +214,7 @@ class MEC_feature_speakers extends MEC_base
213
  $email = isset($_POST['email']) ? sanitize_text_field($_POST['email']) : '';
214
  $facebook = (isset($_POST['facebook']) and trim($_POST['facebook'])) ? (strpos($_POST['facebook'], 'http') === false ? 'http://'.sanitize_text_field($_POST['facebook']) : sanitize_text_field($_POST['facebook'])) : '';
215
  $twitter = (isset($_POST['twitter']) and trim($_POST['twitter'])) ? (strpos($_POST['twitter'], 'http') === false ? 'http://'.sanitize_text_field($_POST['twitter']) : sanitize_text_field($_POST['twitter'])) : '';
216
- $gplus = (isset($_POST['gplus']) and trim($_POST['gplus'])) ? (strpos($_POST['gplus'], 'http') === false ? 'http://'.sanitize_text_field($_POST['gplus']) : sanitize_text_field($_POST['gplus'])) : '';
217
  $thumbnail = isset($_POST['thumbnail']) ? sanitize_text_field($_POST['thumbnail']) : '';
218
 
219
  update_term_meta($term_id, 'job_title', $job_title);
@@ -221,7 +222,7 @@ class MEC_feature_speakers extends MEC_base
221
  update_term_meta($term_id, 'email', $email);
222
  update_term_meta($term_id, 'facebook', $facebook);
223
  update_term_meta($term_id, 'twitter', $twitter);
224
- update_term_meta($term_id, 'gplus', $gplus);
225
  update_term_meta($term_id, 'thumbnail', $thumbnail);
226
  }
227
 
76
  'rewrite'=>array('slug'=>'events-speaker'),
77
  'public'=>false,
78
  'show_ui'=>true,
79
+ 'show_in_rest'=>true,
80
  'hierarchical'=>false,
81
  )
82
  );
95
  $tel = get_metadata('term', $term->term_id, 'tel', true);
96
  $email = get_metadata('term', $term->term_id, 'email', true);
97
  $facebook = get_metadata('term', $term->term_id, 'facebook', true);
98
+ $instagram = get_metadata('term', $term->term_id, 'instagram', true);
99
  $twitter = get_metadata('term', $term->term_id, 'twitter', true);
100
  $thumbnail = get_metadata('term', $term->term_id, 'thumbnail', true);
101
  ?>
133
  </tr>
134
  <tr class="form-field">
135
  <th scope="row" valign="top">
136
+ <label for="mec_instagram"><?php _e('Instagram', 'modern-events-calendar-lite'); ?></label>
137
  </th>
138
  <td>
139
+ <input type="text" placeholder="<?php esc_attr_e('Insert URL of Instagram', 'modern-events-calendar-lite'); ?>" name="instagram" id="mec_instagram" value="<?php echo $instagram; ?>" />
140
  </td>
141
  </tr>
142
  <tr class="form-field">
185
  <input type="text" name="facebook" placeholder="<?php esc_attr_e('Insert URL of Facebook Page', 'modern-events-calendar-lite'); ?>" id="mec_facebook" value="" />
186
  </div>
187
  <div class="form-field">
188
+ <label for="mec_instagram"><?php _e('Instagram', 'modern-events-calendar-lite'); ?></label>
189
+ <input type="text" name="instagram" placeholder="<?php esc_attr_e('Insert URL of Instagram', 'modern-events-calendar-lite'); ?>" id="mec_instagram" value="" />
190
  </div>
191
  <div class="form-field">
192
  <label for="mec_twitter"><?php _e('Twitter Page', 'modern-events-calendar-lite'); ?></label>
214
  $email = isset($_POST['email']) ? sanitize_text_field($_POST['email']) : '';
215
  $facebook = (isset($_POST['facebook']) and trim($_POST['facebook'])) ? (strpos($_POST['facebook'], 'http') === false ? 'http://'.sanitize_text_field($_POST['facebook']) : sanitize_text_field($_POST['facebook'])) : '';
216
  $twitter = (isset($_POST['twitter']) and trim($_POST['twitter'])) ? (strpos($_POST['twitter'], 'http') === false ? 'http://'.sanitize_text_field($_POST['twitter']) : sanitize_text_field($_POST['twitter'])) : '';
217
+ $instagram = (isset($_POST['instagram']) and trim($_POST['instagram'])) ? (strpos($_POST['instagram'], 'http') === false ? 'http://'.sanitize_text_field($_POST['instagram']) : sanitize_text_field($_POST['instagram'])) : '';
218
  $thumbnail = isset($_POST['thumbnail']) ? sanitize_text_field($_POST['thumbnail']) : '';
219
 
220
  update_term_meta($term_id, 'job_title', $job_title);
222
  update_term_meta($term_id, 'email', $email);
223
  update_term_meta($term_id, 'facebook', $facebook);
224
  update_term_meta($term_id, 'twitter', $twitter);
225
+ update_term_meta($term_id, 'instagram', $instagram);
226
  update_term_meta($term_id, 'thumbnail', $thumbnail);
227
  }
228
 
app/libraries/factory.php CHANGED
@@ -128,6 +128,10 @@ class MEC_factory extends MEC_base
128
  // Filter Request
129
  $this->filter('request', array($this->main, 'filter_request'));
130
 
 
 
 
 
131
  // Add Taxonomy etc to filters
132
  $this->filter('mec_vyear_atts', array($this->main, 'add_search_filters'));
133
  $this->filter('mec_vmonth_atts', array($this->main, 'add_search_filters'));
@@ -140,6 +144,8 @@ class MEC_factory extends MEC_base
140
  $this->filter('mec_vtimetable_atts', array($this->main, 'add_search_filters'));
141
  $this->filter('mec_vmasonry_atts', array($this->main, 'add_search_filters'));
142
  $this->filter('mec_vagenda_atts', array($this->main, 'add_search_filters'));
 
 
143
  }
144
 
145
  /**
@@ -235,12 +241,17 @@ class MEC_factory extends MEC_base
235
  // Include MEC backend script file
236
  wp_enqueue_script('mec-typekit-script', $this->main->asset('js/jquery.typewatch.js'));
237
  wp_enqueue_script('mec-backend-script', $this->main->asset('js/backend.js'), array('wp-color-picker', 'jquery-ui-datepicker'));
 
 
 
238
  wp_localize_script( 'mec-backend-script', 'mec_admin_localize',
239
  array(
240
  'ajax_url' => admin_url( 'admin-ajax.php' ),
241
  'ajax_nonce' => wp_create_nonce('mec_settings_nonce'),
 
242
  )
243
  );
 
244
  wp_enqueue_script('mec-events-script', $this->main->asset('js/events.js'));
245
 
246
  // Thickbox
@@ -255,8 +266,6 @@ class MEC_factory extends MEC_base
255
 
256
  // Include "Right to Left" CSS file
257
  if(is_rtl()) wp_enqueue_style('mec-backend-rtl-style', $this->main->asset('css/mecrtl.min.css'));
258
-
259
-
260
  }
261
 
262
  /**
128
  // Filter Request
129
  $this->filter('request', array($this->main, 'filter_request'));
130
 
131
+ // Block Editor Category
132
+ if(function_exists('register_block_type'))
133
+ $this->filter('block_categories', array($this->main, 'add_custome_block_cateogry'), 9999);
134
+
135
  // Add Taxonomy etc to filters
136
  $this->filter('mec_vyear_atts', array($this->main, 'add_search_filters'));
137
  $this->filter('mec_vmonth_atts', array($this->main, 'add_search_filters'));
144
  $this->filter('mec_vtimetable_atts', array($this->main, 'add_search_filters'));
145
  $this->filter('mec_vmasonry_atts', array($this->main, 'add_search_filters'));
146
  $this->filter('mec_vagenda_atts', array($this->main, 'add_search_filters'));
147
+ $this->filter('mce_buttons', array($this->main, 'add_mce_buttons'));
148
+ $this->filter('mce_external_plugins', array($this->main, 'add_mce_external_plugins'));
149
  }
150
 
151
  /**
241
  // Include MEC backend script file
242
  wp_enqueue_script('mec-typekit-script', $this->main->asset('js/jquery.typewatch.js'));
243
  wp_enqueue_script('mec-backend-script', $this->main->asset('js/backend.js'), array('wp-color-picker', 'jquery-ui-datepicker'));
244
+ // Register New Block Editor
245
+ if(function_exists('register_block_type'))
246
+ register_block_type('mec/blockeditor', array('editor_script' => 'block.editor'));
247
  wp_localize_script( 'mec-backend-script', 'mec_admin_localize',
248
  array(
249
  'ajax_url' => admin_url( 'admin-ajax.php' ),
250
  'ajax_nonce' => wp_create_nonce('mec_settings_nonce'),
251
+ 'mce_items' => $this->main->mce_get_shortcode_list(),
252
  )
253
  );
254
+
255
  wp_enqueue_script('mec-events-script', $this->main->asset('js/events.js'));
256
 
257
  // Thickbox
266
 
267
  // Include "Right to Left" CSS file
268
  if(is_rtl()) wp_enqueue_style('mec-backend-rtl-style', $this->main->asset('css/mecrtl.min.css'));
 
 
269
  }
270
 
271
  /**
app/libraries/main.php CHANGED
@@ -350,11 +350,12 @@ class MEC_main extends MEC_base
350
  /**
351
  * Returns weekday labels
352
  * @author Webnus <info@webnus.biz>
 
353
  * @return array
354
  */
355
- public function get_weekday_labels()
356
  {
357
- $week_start = $this->get_first_day_of_week();
358
 
359
  /**
360
  * Please don't change it to translate-able strings
@@ -1080,7 +1081,6 @@ class MEC_main extends MEC_base
1080
  {
1081
  $social_networks = array(
1082
  'facebook'=>array('id'=>'facebook', 'name'=>__('Facebook', 'modern-events-calendar-lite'), 'function'=>array($this, 'sn_facebook')),
1083
- 'gplus'=>array('id'=>'gplus', 'name'=>__('Google+', 'modern-events-calendar-lite'), 'function'=>array($this, 'sn_gplus')),
1084
  'twitter'=>array('id'=>'twitter', 'name'=>__('Twitter', 'modern-events-calendar-lite'), 'function'=>array($this, 'sn_twitter')),
1085
  'linkedin'=>array('id'=>'linkedin', 'name'=>__('Linkedin', 'modern-events-calendar-lite'), 'function'=>array($this, 'sn_linkedin')),
1086
  'vk'=>array('id'=>'vk', 'name'=>__('VK', 'modern-events-calendar-lite'), 'function'=>array($this, 'sn_vk')),
@@ -1105,21 +1105,6 @@ class MEC_main extends MEC_base
1105
  return '<li class="mec-event-social-icon"><a class="facebook" href="https://www.facebook.com/sharer/sharer.php?u='.rawurlencode($url).'" onclick="javascript:window.open(this.href, \'\', \'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=500,width=600\'); return false;" title="'.__('Share on Facebook', 'modern-events-calendar-lite').'"><i class="mec-fa-facebook"></i></a></li>';
1106
  }
1107
 
1108
- /**
1109
- * Do Google+ link for social networks
1110
- * @author Webnus <info@webnus.biz>
1111
- * @param string $url
1112
- * @param object $event
1113
- * @return string
1114
- */
1115
- public function sn_gplus($url, $event)
1116
- {
1117
- $occurrence = (isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : '');
1118
- if(trim($occurrence) != '') $url = $this->add_qs_var('occurrence', $occurrence, $url);
1119
-
1120
- return '<li class="mec-event-social-icon"><a class="google" href="https://plus.google.com/share?url='.rawurlencode($url).'" onclick="javascript:window.open(this.href, \'\', \'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=500\'); return false;" title="'.__('Google Plus', 'modern-events-calendar-lite').'"><i class="mec-fa-google-plus"></i></a></li>';
1121
- }
1122
-
1123
  /**
1124
  * Do twitter link for social networks
1125
  * @author Webnus <info@webnus.biz>
@@ -3066,6 +3051,61 @@ class MEC_main extends MEC_base
3066
  return $atts;
3067
  }
3068
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3069
  /**
3070
  * Return date_diff
3071
  * @author Webnus <info@webnus.biz>
@@ -4559,6 +4599,39 @@ class MEC_main extends MEC_base
4559
  return $label;
4560
  }
4561
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4562
  /**
4563
  * Get Label for booking verification
4564
  * @author Webnus <info@webnus.biz>
@@ -4573,4 +4646,16 @@ class MEC_main extends MEC_base
4573
 
4574
  return $label;
4575
  }
 
 
 
 
 
 
 
 
 
 
 
 
4576
  }
350
  /**
351
  * Returns weekday labels
352
  * @author Webnus <info@webnus.biz>
353
+ * @param integer $week_start
354
  * @return array
355
  */
356
+ public function get_weekday_labels($week_start = NULL)
357
  {
358
+ if(is_null($week_start)) $week_start = $this->get_first_day_of_week();
359
 
360
  /**
361
  * Please don't change it to translate-able strings
1081
  {
1082
  $social_networks = array(
1083
  'facebook'=>array('id'=>'facebook', 'name'=>__('Facebook', 'modern-events-calendar-lite'), 'function'=>array($this, 'sn_facebook')),
 
1084
  'twitter'=>array('id'=>'twitter', 'name'=>__('Twitter', 'modern-events-calendar-lite'), 'function'=>array($this, 'sn_twitter')),
1085
  'linkedin'=>array('id'=>'linkedin', 'name'=>__('Linkedin', 'modern-events-calendar-lite'), 'function'=>array($this, 'sn_linkedin')),
1086
  'vk'=>array('id'=>'vk', 'name'=>__('VK', 'modern-events-calendar-lite'), 'function'=>array($this, 'sn_vk')),
1105
  return '<li class="mec-event-social-icon"><a class="facebook" href="https://www.facebook.com/sharer/sharer.php?u='.rawurlencode($url).'" onclick="javascript:window.open(this.href, \'\', \'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=500,width=600\'); return false;" title="'.__('Share on Facebook', 'modern-events-calendar-lite').'"><i class="mec-fa-facebook"></i></a></li>';
1106
  }
1107
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1108
  /**
1109
  * Do twitter link for social networks
1110
  * @author Webnus <info@webnus.biz>
3051
  return $atts;
3052
  }
3053
 
3054
+ /**
3055
+ * Filter TinyMce Buttons
3056
+ * @author Webnus <info@webnus.biz>
3057
+ * @param array $buttons
3058
+ * @return array
3059
+ */
3060
+ public function add_mce_buttons($buttons)
3061
+ {
3062
+ array_push($buttons, 'mec_mce_buttons');
3063
+ return $buttons;
3064
+ }
3065
+
3066
+ /**
3067
+ * Filter TinyMce plugins
3068
+ * @author Webnus <info@webnus.biz>
3069
+ * @param array $plugins
3070
+ * @return array
3071
+ */
3072
+ public function add_mce_external_plugins($plugins)
3073
+ {
3074
+ $plugins['mec_mce_buttons'] = $this->asset('js/backend.js');
3075
+ return $plugins;
3076
+ }
3077
+
3078
+ /**
3079
+ * Return JSON output id and the name of a post type
3080
+ * @author Webnus <info@webnus.biz>
3081
+ * @param string $post_type
3082
+ * @return string JSON
3083
+ */
3084
+ public function mce_get_shortcode_list($post_type = 'mec_calendars')
3085
+ {
3086
+ if(post_type_exists($post_type))
3087
+ {
3088
+ $args = array('post_type' => $post_type, 'post_status' => 'publish', 'posts_per_page' => -1, 'order' => 'DESC');
3089
+ $shortcodes_list = get_posts($args);
3090
+ if(count($shortcodes_list))
3091
+ {
3092
+ $shortcodes = array();
3093
+ $shortcodes['shortcodes'] = array();
3094
+ foreach($shortcodes_list as $shortcode)
3095
+ {
3096
+ $shortcode_item = array();
3097
+ $shortcode_item['ID'] = $shortcode->ID;
3098
+ // PostName
3099
+ $shortcode_item['PN'] = $shortcode->post_name;
3100
+ array_push($shortcodes['shortcodes'], $shortcode_item);
3101
+ }
3102
+ $shortcodes['mce_title'] = __('M.E. Calender', 'modern-events-calendar-lite');
3103
+ return json_encode($shortcodes);
3104
+ }
3105
+ }
3106
+ return false;
3107
+ }
3108
+
3109
  /**
3110
  * Return date_diff
3111
  * @author Webnus <info@webnus.biz>
4599
  return $label;
4600
  }
4601
 
4602
+ /**
4603
+ * Get Label for events status
4604
+ * @author Webnus <info@webnus.biz>
4605
+ * @param string $label
4606
+ * @param boolean $return_class
4607
+ * @return string|array
4608
+ */
4609
+ public function get_event_label_status($label = 'empty', $return_class = true)
4610
+ {
4611
+ if(!trim($label)) $label = 'empty';
4612
+ switch($label)
4613
+ {
4614
+ case 'publish':
4615
+ $label = __('Confirmed', 'modern-events-calendar-lite');
4616
+ $status_class = 'mec-book-confirmed';
4617
+ break;
4618
+ case 'pending':
4619
+ $label = __('Pending', 'modern-events-calendar-lite');
4620
+ $status_class = 'mec-book-pending';
4621
+ break;
4622
+ case 'trash':
4623
+ $label = __('Rejected', 'modern-events-calendar-lite');
4624
+ $status_class = 'mec-book-pending';
4625
+ break;
4626
+ default:
4627
+ $label = __(ucwords($label), 'modern-events-calendar-lite');
4628
+ $status_class = 'mec-book-other';
4629
+ break;
4630
+ }
4631
+
4632
+ return !$return_class ? $label : array('label' => $label, 'status_class' => $status_class);
4633
+ }
4634
+
4635
  /**
4636
  * Get Label for booking verification
4637
  * @author Webnus <info@webnus.biz>
4646
 
4647
  return $label;
4648
  }
4649
+
4650
+ /**
4651
+ * Added Block Editor Custome Category
4652
+ * @author Webnus <info@webnus.biz>
4653
+ * @param array $categories
4654
+ * @return array
4655
+ */
4656
+ public function add_custome_block_cateogry($categories)
4657
+ {
4658
+ $categories = array_merge(array(array('slug' => 'mec.block.category', 'title' => __('M.E. Calender', 'modern-events-calendar-lite'), 'icon' => 'calendar-alt')), $categories);
4659
+ return $categories;
4660
+ }
4661
  }
app/libraries/skins.php CHANGED
@@ -128,6 +128,9 @@ class MEC_skins extends MEC_base
128
 
129
  // MEC schedule library
130
  $this->schedule = $this->getSchedule();
 
 
 
131
 
132
  // Found Events
133
  $this->found = 0;
@@ -754,6 +757,9 @@ class MEC_skins extends MEC_base
754
 
755
  // Field is disabled
756
  if(!trim($type)) return '';
 
 
 
757
 
758
  $output = '';
759
 
@@ -835,7 +841,7 @@ class MEC_skins extends MEC_base
835
  $output .= '</div>';
836
  }
837
  }
838
- elseif($field == 'speaker')
839
  {
840
  if($type == 'dropdown')
841
  {
128
 
129
  // MEC schedule library
130
  $this->schedule = $this->getSchedule();
131
+
132
+ // MEC Settings
133
+ $this->settings = $this->main->get_settings();
134
 
135
  // Found Events
136
  $this->found = 0;
757
 
758
  // Field is disabled
759
  if(!trim($type)) return '';
760
+
761
+ // Status of Speakers Feature
762
+ $speakers_status = (!isset($this->settings['speakers_status']) or (isset($this->settings['speakers_status']) and !$this->settings['speakers_status'])) ? false : true;
763
 
764
  $output = '';
765
 
841
  $output .= '</div>';
842
  }
843
  }
844
+ elseif($field == 'speaker' and $speakers_status)
845
  {
846
  if($type == 'dropdown')
847
  {
app/modules/attendees-list/details.php CHANGED
@@ -36,7 +36,7 @@ foreach($bookings as $booking)
36
  <p><?php _e('No attendee found! Be the first one to book!', 'modern-events-calendar-lite'); ?></p>
37
  <?php else: ?>
38
  <ul>
39
- <?php foreach($attendees as $attendee_id=>$tickets): ?>
40
  <li>
41
  <div class="mec-attendee-avatar">
42
  <a href="<?php echo bp_core_get_user_domain($attendee_id); ?>" title="<?php echo bp_core_get_user_displayname($attendee_id); ?>">
36
  <p><?php _e('No attendee found! Be the first one to book!', 'modern-events-calendar-lite'); ?></p>
37
  <?php else: ?>
38
  <ul>
39
+ <?php do_action('mec_attendeed_hook', $attendees); foreach($attendees as $attendee_id=>$tickets): ?>
40
  <li>
41
  <div class="mec-attendee-avatar">
42
  <a href="<?php echo bp_core_get_user_domain($attendee_id); ?>" title="<?php echo bp_core_get_user_displayname($attendee_id); ?>">
app/modules/countdown/details.php CHANGED
@@ -105,10 +105,12 @@ jQuery(document).ready(function()
105
  });
106
  });
107
  </script>';
 
108
  ?>
109
  <?php if(!isset($settings['countdown_list']) or (isset($settings['countdown_list']) and $settings['countdown_list'] === 'default')): ?>
110
  <?php
111
  if($this->is_ajax()) echo $defaultjs;
 
112
  else $factory->params('footer', $defaultjs);
113
  ?>
114
  <div class="mec-countdown-details" id="mec_countdown_details">
@@ -148,6 +150,10 @@ jQuery(document).ready(function()
148
  <?php elseif(isset($settings['countdown_list']) and $settings['countdown_list'] === 'flip'): ?>
149
  <?php
150
  if($this->is_ajax()) echo $flipjs;
 
 
 
 
151
  else
152
  {
153
  // Include FlipCount library
105
  });
106
  });
107
  </script>';
108
+ if ( !function_exists('is_plugin_active')) include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
109
  ?>
110
  <?php if(!isset($settings['countdown_list']) or (isset($settings['countdown_list']) and $settings['countdown_list'] === 'default')): ?>
111
  <?php
112
  if($this->is_ajax()) echo $defaultjs;
113
+ elseif (is_plugin_active( 'mec-single-builder/mec-single-builder.php')) echo $defaultjs;
114
  else $factory->params('footer', $defaultjs);
115
  ?>
116
  <div class="mec-countdown-details" id="mec_countdown_details">
150
  <?php elseif(isset($settings['countdown_list']) and $settings['countdown_list'] === 'flip'): ?>
151
  <?php
152
  if($this->is_ajax()) echo $flipjs;
153
+ elseif (is_plugin_active( 'mec-single-builder/mec-single-builder.php')) {
154
+ wp_enqueue_script('mec-flipcount-script', $this->asset('js/flipcount.js'));
155
+ echo $flipjs;
156
+ }
157
  else
158
  {
159
  // Include FlipCount library
app/modules/googlemap/details.php CHANGED
@@ -81,9 +81,10 @@ function mec_init_gmap'.$uniqueid.'()
81
  p'.$uniqueid.'.init();
82
  }
83
  </script>';
84
-
85
  // Include javascript code into the footer
86
  if($this->is_ajax()) echo $javascript;
 
87
  else $factory->params('footer', $javascript);
88
  ?>
89
  <div class="mec-googlemap-details" id="mec_googlemap_canvas<?php echo $uniqueid; ?>" style="height: 500px;">
81
  p'.$uniqueid.'.init();
82
  }
83
  </script>';
84
+ if ( !function_exists('is_plugin_active')) include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
85
  // Include javascript code into the footer
86
  if($this->is_ajax()) echo $javascript;
87
+ elseif (is_plugin_active( 'mec-single-builder/mec-single-builder.php')) echo $javascript;
88
  else $factory->params('footer', $javascript);
89
  ?>
90
  <div class="mec-googlemap-details" id="mec_googlemap_canvas<?php echo $uniqueid; ?>" style="height: 500px;">
app/modules/next-event/details.php CHANGED
@@ -14,7 +14,11 @@ $date_format1 = isset($settings['next_event_module_date_format1']) ? $settings['
14
  // Next Event Method
15
  $method = isset($settings['next_event_module_method']) ? $settings['next_event_module_method'] : 'occurrence';
16
 
17
- $date = $event->date;
 
 
 
 
18
 
19
  $start_date = (isset($date['start']) and isset($date['start']['date'])) ? $date['start']['date'] : date('Y-m-d');
20
  if(isset($_GET['occurrence']) and trim($_GET['occurrence'])) $start_date = sanitize_text_field($_GET['occurrence']);
14
  // Next Event Method
15
  $method = isset($settings['next_event_module_method']) ? $settings['next_event_module_method'] : 'occurrence';
16
 
17
+ $date = '';
18
+ if ( !empty($event->date) )
19
+ {
20
+ $date = $event->date;
21
+ }
22
 
23
  $start_date = (isset($date['start']) and isset($date['start']['date'])) ? $date['start']['date'] : date('Y-m-d');
24
  if(isset($_GET['occurrence']) and trim($_GET['occurrence'])) $start_date = sanitize_text_field($_GET['occurrence']);
app/modules/speakers/details.php CHANGED
@@ -66,8 +66,8 @@ if(!count($speakers)) return false;
66
  <a href="<?php echo $twitter; ?>" target="_blank"><i class="mec-fa-twitter"></i></a>
67
  <?php endif; ?>
68
  <!-- Speaker Google Plus -->
69
- <?php if($gplus = trim(get_term_meta($speaker['id'], 'gplus', true))): ?>
70
- <a href="<?php echo $gplus; ?>" target="_blank"><i class="mec-fa-google-plus"></i></a>
71
  <?php endif; ?>
72
  </div>
73
  <!-- Speaker Description -->
66
  <a href="<?php echo $twitter; ?>" target="_blank"><i class="mec-fa-twitter"></i></a>
67
  <?php endif; ?>
68
  <!-- Speaker Google Plus -->
69
+ <?php if($instagram = trim(get_term_meta($speaker['id'], 'instagram', true))): ?>
70
+ <a href="<?php echo $instagram; ?>" target="_blank"><i class="mec-fa-instagram"></i></a>
71
  <?php endif; ?>
72
  </div>
73
  <!-- Speaker Description -->
app/skins/full_calendar/tpl.php CHANGED
@@ -40,12 +40,25 @@ $event_colorskin = (isset($styling['mec_colorskin'] ) || isset($styling['color']
40
  <?php
41
  $sf_month_filter = (isset($this->sf_options['month_filter']) ? $this->sf_options['month_filter'] : array());
42
  $sf_category = (isset($this->sf_options['category']) ? $this->sf_options['category'] : array());
 
 
 
 
 
43
  $sf_text_search = (isset($this->sf_options['text_search']) ? $this->sf_options['text_search'] : array());
44
 
45
  $sf_month_filter_status = (isset($sf_month_filter['type']) and trim($sf_month_filter['type'])) ? true : false;
46
  $sf_category_status = (isset($sf_category['type']) and trim($sf_category['type'])) ? true : false;
 
 
 
 
 
47
  $sf_text_search_status = (isset($sf_text_search['type']) and trim($sf_text_search['type'])) ? true : false;
48
-
 
 
 
49
  $sf_columns = 8;
50
  ?>
51
  <?php if($sf_month_filter_status): $sf_columns -= 3; ?>
@@ -56,7 +69,32 @@ $event_colorskin = (isset($styling['mec_colorskin'] ) || isset($styling['color']
56
  <?php if($sf_category_status): $sf_columns -= 2; ?>
57
  <div class="col-md-2">
58
  <?php echo $this->sf_search_field('category', $sf_category); ?>
59
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
60
  <?php endif; ?>
61
  <div class="col-md-<?php echo $sf_columns; ?>">
62
  <?php if($sf_text_search_status): ?>
40
  <?php
41
  $sf_month_filter = (isset($this->sf_options['month_filter']) ? $this->sf_options['month_filter'] : array());
42
  $sf_category = (isset($this->sf_options['category']) ? $this->sf_options['category'] : array());
43
+ $sf_location = (isset($this->sf_options['location']) ? $this->sf_options['location'] : array());
44
+ $sf_organizer = (isset($this->sf_options['organizer']) ? $this->sf_options['organizer'] : array());
45
+ $sf_speaker = (isset($this->sf_options['speaker']) ? $this->sf_options['speaker'] : array());
46
+ $sf_tag = (isset($this->sf_options['tag']) ? $this->sf_options['tag'] : array());
47
+ $sf_label = (isset($this->sf_options['label']) ? $this->sf_options['label'] : array());
48
  $sf_text_search = (isset($this->sf_options['text_search']) ? $this->sf_options['text_search'] : array());
49
 
50
  $sf_month_filter_status = (isset($sf_month_filter['type']) and trim($sf_month_filter['type'])) ? true : false;
51
  $sf_category_status = (isset($sf_category['type']) and trim($sf_category['type'])) ? true : false;
52
+ $sf_location_status = (isset($sf_location['type']) and trim($sf_location['type'])) ? true : false;
53
+ $sf_organizer_status = (isset($sf_organizer['type']) and trim($sf_organizer['type'])) ? true : false;
54
+ $sf_speaker_status = (isset($sf_speaker['type']) and trim($sf_speaker['type'])) ? true : false;
55
+ $sf_tag_status = (isset($sf_tag['type']) and trim($sf_tag['type'])) ? true : false;
56
+ $sf_label_status = (isset($sf_label['type']) and trim($sf_label['type'])) ? true : false;
57
  $sf_text_search_status = (isset($sf_text_search['type']) and trim($sf_text_search['type'])) ? true : false;
58
+
59
+ // Status of Speakers Feature
60
+ $speakers_status = (!isset($this->settings['speakers_status']) or (isset($this->settings['speakers_status']) and !$this->settings['speakers_status'])) ? false : true;
61
+
62
  $sf_columns = 8;
63
  ?>
64
  <?php if($sf_month_filter_status): $sf_columns -= 3; ?>
69
  <?php if($sf_category_status): $sf_columns -= 2; ?>
70
  <div class="col-md-2">
71
  <?php echo $this->sf_search_field('category', $sf_category); ?>
72
+ </div>
73
+ <?php endif; ?>
74
+ <?php if($sf_location_status): ?>
75
+ <div class="col-md-2">
76
+ <?php echo $this->sf_search_field('location', $sf_location); ?>
77
+ </div>
78
+ <?php endif; ?>
79
+ <?php if($sf_organizer_status): ?>
80
+ <div class="col-md-2">
81
+ <?php echo $this->sf_search_field('organizer', $sf_organizer); ?>
82
+ </div>
83
+ <?php endif; ?>
84
+ <?php if($sf_speaker_status and $speakers_status): ?>
85
+ <div class="col-md-2">
86
+ <?php echo $this->sf_search_field('speaker', $sf_speaker); ?>
87
+ </div>
88
+ <?php endif; ?>
89
+ <?php if($sf_tag_status): ?>
90
+ <div class="col-md-2">
91
+ <?php echo $this->sf_search_field('tag', $sf_tag); ?>
92
+ </div>
93
+ <?php endif; ?>
94
+ <?php if($sf_label_status): ?>
95
+ <div class="col-md-2">
96
+ <?php echo $this->sf_search_field('label', $sf_label); ?>
97
+ </div>
98
  <?php endif; ?>
99
  <div class="col-md-<?php echo $sf_columns; ?>">
100
  <?php if($sf_text_search_status): ?>
app/skins/masonry/render.php CHANGED
@@ -73,16 +73,48 @@ $settings = $this->main->get_settings();
73
  }
74
  </script>
75
  <?php
76
- $masonry_cats = '';
77
- if ( isset($event->data->categories) && !empty($event->data->categories) ) :
78
- $masonry_cats = "["; foreach ($event->data->categories as $key => $value) {
79
- $masonry_cats .= '"' . $value['id'] . '",';
80
- }
81
- $masonry_cats .= "]";
82
- $masonry_cats = str_replace(",]", "]", $masonry_cats);
83
- endif;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
84
  ?>
85
- <div <?php if ( $this->masonry_like_grid == 1) echo 'data-sort-masonry="'.$event->date['start']['date'].'"'; ?> class="mec-masonry-item-wrap <?php echo $this->filter_by_classes($event->data->ID); ?>" data-groups='<?php echo $masonry_cats; ?>'>
86
  <div class="mec-masonry">
87
 
88
  <article data-style="<?php echo $label_style; ?>" class="mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
73
  }
74
  </script>
75
  <?php
76
+ $masonry_filter = '';
77
+ if ( $this->filter_by == 'category' ) {
78
+ if ( isset($event->data->categories) && !empty($event->data->categories) ) :
79
+ $masonry_filter = "[";
80
+ foreach ($event->data->categories as $key => $value) {
81
+ $masonry_filter .= '"' . $value['id'] . '",';
82
+ }
83
+ $masonry_filter .= "]";
84
+ $masonry_filter = str_replace(",]", "]", $masonry_filter);
85
+ endif;
86
+ } elseif ( $this->filter_by == 'label' ) {
87
+ if ( isset($event->data->labels) && !empty($event->data->labels) ) :
88
+ $masonry_filter = "[";
89
+ foreach ($event->data->labels as $key => $value) {
90
+ $masonry_filter .= '"' . $value['id'] . '",';
91
+ }
92
+ $masonry_filter .= "]";
93
+ $masonry_filter = str_replace(",]", "]", $masonry_filter);
94
+ endif;
95
+ } elseif ( $this->filter_by == 'organizer' ) {
96
+ if ( isset($event->data->organizers) && !empty($event->data->organizers) ) :
97
+ $masonry_filter = "[";
98
+ foreach ($event->data->organizers as $key => $value) {
99
+ $masonry_filter .= '"' . $value['id'] . '",';
100
+ }
101
+ $masonry_filter .= "]";
102
+ $masonry_filter = str_replace(",]", "]", $masonry_filter);
103
+ endif;
104
+ } elseif ( $this->filter_by == 'location' ) {
105
+ if ( isset($event->data->locations) && !empty($event->data->locations) ) :
106
+ $masonry_filter = "[";
107
+ foreach ($event->data->locations as $key => $value) {
108
+ $masonry_filter .= '"' . $value['id'] . '",';
109
+ }
110
+ $masonry_filter .= "]";
111
+ $masonry_filter = str_replace(",]", "]", $masonry_filter);
112
+ endif;
113
+ }
114
+
115
+ if ( empty($masonry_filter )) $masonry_filter = "[\"\"]";
116
  ?>
117
+ <div <?php if ( $this->masonry_like_grid == 1) echo 'data-sort-masonry="'.$event->date['start']['date'].'"'; ?> class="mec-masonry-item-wrap <?php echo $this->filter_by_classes($event->data->ID); ?>" data-groups='<?php echo $masonry_filter; ?>' data-date-created="<?php echo $event->date['start']['date']; ?>">
118
  <div class="mec-masonry">
119
 
120
  <article data-style="<?php echo $label_style; ?>" class="mec-event-article mec-clear <?php echo $this->get_event_classes($event); ?>">
app/skins/monthly_view/calendar.php CHANGED
@@ -63,7 +63,7 @@ elseif($week_start == 5) // Friday
63
  if(isset($events[$today]) and count($events[$today]))
64
  {
65
  echo '<dt class="mec-calendar-day'.$selected_day.' mec-has-event" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', $time).'"><a href="#" class="mec-has-event-a">'.$list_day.'</a>';
66
- do_action('monthly_customiztion', $event);
67
  echo '</dt>';
68
  $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>';
69
 
63
  if(isset($events[$today]) and count($events[$today]))
64
  {
65
  echo '<dt class="mec-calendar-day'.$selected_day.' mec-has-event" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', $time).'"><a href="#" class="mec-has-event-a">'.$list_day.'</a>';
66
+ do_action('monthly_box_hook', $events[$today]);
67
  echo '</dt>';
68
  $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>';
69
 
app/skins/single.php CHANGED
@@ -104,7 +104,7 @@ class MEC_skin_single extends MEC_skins
104
  $rendered = $this->render->data($this->id, (isset($this->atts['content']) ? $this->atts['content'] : ''));
105
 
106
  // Event Repeat Type
107
- $repeat_type = $rendered->meta['mec_repeat_type'];
108
 
109
  $occurrence = isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : date('Y-m-d');
110
 
@@ -186,7 +186,7 @@ class MEC_skin_single extends MEC_skins
186
  $rendered = $this->render->data($event_ID, (isset($this->atts['content']) ? $this->atts['content'] : ''));
187
 
188
  // Event Repeat Type
189
- $repeat_type = $rendered->meta['mec_repeat_type'];
190
 
191
  $occurrence = isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : NULL;
192
 
@@ -439,8 +439,8 @@ class MEC_skin_single extends MEC_skins
439
  <a href="<?php echo $twitter; ?>" target="_blank"><i class="mec-fa-twitter"></i></a>
440
  <?php endif; ?>
441
  <!-- Speaker Google Plus -->
442
- <?php if($gplus = trim(get_term_meta($speaker->term_id, 'gplus', true))): ?>
443
- <a href="<?php echo $gplus; ?>" target="_blank"><i class="mec-fa-google-plus"></i></a>
444
  <?php endif; ?>
445
  </div>
446
  <!-- Speaker Description -->
104
  $rendered = $this->render->data($this->id, (isset($this->atts['content']) ? $this->atts['content'] : ''));
105
 
106
  // Event Repeat Type
107
+ $repeat_type = !empty($rendered->meta['mec_repeat_type']) ? $rendered->meta['mec_repeat_type'] : '';
108
 
109
  $occurrence = isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : date('Y-m-d');
110
 
186
  $rendered = $this->render->data($event_ID, (isset($this->atts['content']) ? $this->atts['content'] : ''));
187
 
188
  // Event Repeat Type
189
+ $repeat_type = !empty($rendered->meta['mec_repeat_type']) ? $rendered->meta['mec_repeat_type'] : '';
190
 
191
  $occurrence = isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : NULL;
192
 
439
  <a href="<?php echo $twitter; ?>" target="_blank"><i class="mec-fa-twitter"></i></a>
440
  <?php endif; ?>
441
  <!-- Speaker Google Plus -->
442
+ <?php if($instagram = trim(get_term_meta($speaker->term_id, 'instagram', true))): ?>
443
+ <a href="<?php echo $instagram; ?>" target="_blank"><i class="mec-fa-instagram"></i></a>
444
  <?php endif; ?>
445
  </div>
446
  <!-- Speaker Description -->
app/skins/single/modern.php CHANGED
@@ -96,6 +96,7 @@ defined('MECEXEC') or die();
96
  <dd class="location"><address class="mec-events-address"><span class="mec-address"><?php echo (isset($location['address']) ? $location['address'] : ''); ?></span></address></dd>
97
  </div>
98
  <?php
 
99
  }
100
  ?>
101
 
96
  <dd class="location"><address class="mec-events-address"><span class="mec-address"><?php echo (isset($location['address']) ? $location['address'] : ''); ?></span></address></dd>
97
  </div>
98
  <?php
99
+ $this->show_other_locations($event); // Show Additional Locations
100
  }
101
  ?>
102
 
app/skins/timetable.php CHANGED
@@ -12,7 +12,9 @@ class MEC_skin_timetable extends MEC_skins
12
  * @var string
13
  */
14
  public $skin = 'timetable';
15
-
 
 
16
  /**
17
  * Constructor method
18
  * @author Webnus <info@webnus.biz>
@@ -30,6 +32,9 @@ class MEC_skin_timetable extends MEC_skins
30
  {
31
  $this->factory->action('wp_ajax_mec_timetable_load_month', array($this, 'load_month'));
32
  $this->factory->action('wp_ajax_nopriv_mec_timetable_load_month', array($this, 'load_month'));
 
 
 
33
  }
34
 
35
  /**
@@ -71,6 +76,12 @@ class MEC_skin_timetable extends MEC_skins
71
 
72
  // Image popup
73
  $this->image_popup = isset($this->skin_options['image_popup']) ? $this->skin_options['image_popup'] : '0';
 
 
 
 
 
 
74
 
75
  // From Widget
76
  $this->widget = (isset($this->atts['widget']) and trim($this->atts['widget'])) ? true : false;
@@ -220,64 +231,6 @@ class MEC_skin_timetable extends MEC_skins
220
  }
221
 
222
  return $events;
223
-
224
- /*$i = 0;
225
- $today = $this->start_date;
226
- $events = array();
227
-
228
- while((date('m', strtotime($today)) == $this->month) or ($this->style == 'clean' and strtotime($today) <= strtotime($this->maximum_date)))
229
- {
230
- $this->setToday($today);
231
-
232
- // Check Finish Date
233
- if(isset($this->maximum_date) and strtotime($today) > strtotime($this->maximum_date)) break;
234
-
235
- // Extending the end date
236
- $this->end_date = $today;
237
-
238
- // Limit
239
- $this->args['posts_per_page'] = $this->limit;
240
-
241
- // The Query
242
- $query = new WP_Query($this->args);
243
-
244
- if($query->have_posts())
245
- {
246
- // The Loop
247
- while($query->have_posts())
248
- {
249
- $query->the_post();
250
-
251
- if(!isset($events[$today])) $events[$today] = array();
252
-
253
- $rendered = $this->render->data(get_the_ID());
254
-
255
- $data = new stdClass();
256
- $data->ID = get_the_ID();
257
- $data->data = $rendered;
258
-
259
- $data->date = array
260
- (
261
- 'start'=>array('date'=>$today),
262
- 'end'=>array('date'=>$this->main->get_end_date($today, $rendered))
263
- );
264
-
265
- $events[$today][] = $data;
266
- }
267
- }
268
- else
269
- {
270
- $events[$today] = array();
271
- }
272
-
273
- // Restore original Post Data
274
- wp_reset_postdata();
275
-
276
- $i++;
277
- $today = date('Y-m-d', strtotime('+'.$i.' Days', strtotime($this->start_date)));
278
- }
279
-
280
- return $events;*/
281
  }
282
 
283
  /**
@@ -289,9 +242,12 @@ class MEC_skin_timetable extends MEC_skins
289
  {
290
  // Default date
291
  $date = current_time('Y-m-d');
292
-
 
 
 
293
  // Weekdays
294
- $weekdays = $this->main->get_weekday_labels();
295
 
296
  if(isset($this->skin_options['start_date_type']) and $this->skin_options['start_date_type'] == 'start_current_week')
297
  {
@@ -320,10 +276,10 @@ class MEC_skin_timetable extends MEC_skins
320
  // Show from start week
321
  if($this->style == 'clean')
322
  {
323
- if(date('w', strtotime($date)) == $this->main->get_first_day_of_week()) $date = date('Y-m-d', strtotime('This '.$weekdays[0], strtotime($date)));
324
  else $date = date('Y-m-d', strtotime('Last '.$weekdays[0], strtotime($date)));
325
 
326
- $this->maximum_date = date('Y-m-d', strtotime('+4 days', strtotime($date)));
327
  }
328
 
329
  $time = strtotime($date);
@@ -331,7 +287,7 @@ class MEC_skin_timetable extends MEC_skins
331
  }
332
 
333
  /**
334
- * Load month for AJAX requert
335
  * @author Webnus <info@webnus.biz>
336
  * @return void
337
  */
@@ -379,4 +335,35 @@ class MEC_skin_timetable extends MEC_skins
379
  echo json_encode($output);
380
  exit;
381
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
382
  }
12
  * @var string
13
  */
14
  public $skin = 'timetable';
15
+ public $number_of_days;
16
+ public $week_start;
17
+
18
  /**
19
  * Constructor method
20
  * @author Webnus <info@webnus.biz>
32
  {
33
  $this->factory->action('wp_ajax_mec_timetable_load_month', array($this, 'load_month'));
34
  $this->factory->action('wp_ajax_nopriv_mec_timetable_load_month', array($this, 'load_month'));
35
+
36
+ $this->factory->action('wp_ajax_mec_weeklyprogram_load', array($this, 'load_weeklyprogram'));
37
+ $this->factory->action('wp_ajax_nopriv_mec_weeklyprogram_load', array($this, 'load_weeklyprogram'));
38
  }
39
 
40
  /**
76
 
77
  // Image popup
78
  $this->image_popup = isset($this->skin_options['image_popup']) ? $this->skin_options['image_popup'] : '0';
79
+
80
+ // Number of Days
81
+ $this->number_of_days = isset($this->skin_options['number_of_days']) ? $this->skin_options['number_of_days'] : 5;
82
+
83
+ // First Day of the Week
84
+ $this->week_start = (isset($this->skin_options['week_start']) and trim($this->skin_options['week_start']) != '' and $this->skin_options['week_start'] != '-1') ? $this->skin_options['week_start'] : NULL;
85
 
86
  // From Widget
87
  $this->widget = (isset($this->atts['widget']) and trim($this->atts['widget'])) ? true : false;
231
  }
232
 
233
  return $events;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
234
  }
235
 
236
  /**
242
  {
243
  // Default date
244
  $date = current_time('Y-m-d');
245
+
246
+ // Start of Week
247
+ $week_start = !is_null($this->week_start) ? $this->week_start : $this->main->get_first_day_of_week();
248
+
249
  // Weekdays
250
+ $weekdays = $this->main->get_weekday_labels($week_start);
251
 
252
  if(isset($this->skin_options['start_date_type']) and $this->skin_options['start_date_type'] == 'start_current_week')
253
  {
276
  // Show from start week
277
  if($this->style == 'clean')
278
  {
279
+ if(date('w', strtotime($date)) == $week_start) $date = date('Y-m-d', strtotime('This '.$weekdays[0], strtotime($date)));
280
  else $date = date('Y-m-d', strtotime('Last '.$weekdays[0], strtotime($date)));
281
 
282
+ $this->maximum_date = date('Y-m-d', strtotime('+'.($this->number_of_days - 1).' days', strtotime($date)));
283
  }
284
 
285
  $time = strtotime($date);
287
  }
288
 
289
  /**
290
+ * Load month for AJAX requert (Modern Style)
291
  * @author Webnus <info@webnus.biz>
292
  * @return void
293
  */
335
  echo json_encode($output);
336
  exit;
337
  }
338
+
339
+ /**
340
+ * Load month for AJAX requert (Clean Style)
341
+ * @author Webnus <info@webnus.biz>
342
+ * @return void
343
+ */
344
+ public function load_weeklyprogram()
345
+ {
346
+ $this->sf = $this->request->getVar('sf', array());
347
+ $apply_sf_date = $this->request->getVar('apply_sf_date', 1);
348
+ $atts = $this->sf_apply($this->request->getVar('atts', array()), $this->sf, $apply_sf_date);
349
+
350
+ // Initialize the skin
351
+ $this->initialize($atts);
352
+
353
+ // Start Date
354
+ $this->year = $this->request->getVar('mec_year', date('Y'));
355
+ $this->month = $this->request->getVar('mec_month', date('m'));
356
+
357
+ // Return the events
358
+ $this->atts['return_items'] = true;
359
+
360
+ // Fetch the events
361
+ $this->fetch();
362
+
363
+ // Return the output
364
+ $output = $this->output();
365
+
366
+ echo json_encode($output);
367
+ exit;
368
+ }
369
  }
app/skins/timetable/clean.php CHANGED
@@ -10,6 +10,15 @@ ob_start();
10
  include $render_path;
11
  $date_events = ob_get_clean();
12
 
 
 
 
 
 
 
 
 
 
13
  // Generating javascript code tpl
14
  $javascript = '<script type="text/javascript">
15
  jQuery(document).ready(function()
@@ -18,8 +27,13 @@ jQuery(document).ready(function()
18
  {
19
  id: "'.$this->id.'",
20
  ajax_url: "'.admin_url('admin-ajax.php', NULL).'",
 
21
  sed_method: "'.$this->sed_method.'",
22
  image_popup: "'.$this->image_popup.'",
 
 
 
 
23
  });
24
  });
25
  </script>';
@@ -32,5 +46,11 @@ $styling = $this->main->get_styling();
32
  $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])) ? 'colorskin-custom' : '';
33
  ?>
34
  <div id="mec_skin_<?php echo $this->id; ?>" class="mec-timetable-wrap mec-wrap <?php echo $event_colorskin . ' ' . $this->html_class; ?>">
35
- <?php echo $date_events; ?>
 
 
 
 
 
 
36
  </div>
10
  include $render_path;
11
  $date_events = ob_get_clean();
12
 
13
+ // Return the data if called by AJAX
14
+ if(isset($this->atts['return_items']) and $this->atts['return_items'])
15
+ {
16
+ echo json_encode(array(
17
+ 'date_events'=>$date_events,
18
+ ));
19
+ exit;
20
+ }
21
+
22
  // Generating javascript code tpl
23
  $javascript = '<script type="text/javascript">
24
  jQuery(document).ready(function()
27
  {
28
  id: "'.$this->id.'",
29
  ajax_url: "'.admin_url('admin-ajax.php', NULL).'",
30
+ atts: "'.http_build_query(array('atts'=>$this->atts), '', '&').'",
31
  sed_method: "'.$this->sed_method.'",
32
  image_popup: "'.$this->image_popup.'",
33
+ sf:
34
+ {
35
+ container: "'.($this->sf_status ? '#mec_search_form_'.$this->id : '').'",
36
+ },
37
  });
38
  });
39
  </script>';
46
  $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])) ? 'colorskin-custom' : '';
47
  ?>
48
  <div id="mec_skin_<?php echo $this->id; ?>" class="mec-timetable-wrap mec-wrap <?php echo $event_colorskin . ' ' . $this->html_class; ?>">
49
+
50
+ <?php if($this->sf_status) echo $this->sf_search_form(); ?>
51
+
52
+ <div id="mec_skin_events_<?php echo $this->id; ?>">
53
+ <?php echo $date_events; ?>
54
+ </div>
55
+
56
  </div>
app/skins/timetable/render.php CHANGED
@@ -116,7 +116,7 @@ $settings = $this->main->get_settings();
116
  <?php elseif($this->style == 'clean'): ?>
117
  <div class="mec-timetable-t2-wrap">
118
  <?php foreach($this->events as $date=>$events): ?>
119
- <div class="mec-timetable-t2-col">
120
  <div class="mec-ttt2-title"> <?php echo date_i18n('l', strtotime($date)); ?> </div>
121
  <?php foreach($events as $event): ?>
122
  <?php
@@ -125,28 +125,25 @@ $settings = $this->main->get_settings();
125
  $start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
126
  $end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
127
  $event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
 
128
  $label_style = '';
129
- if ( !empty($event->data->labels) ):
130
- foreach( $event->data->labels as $label)
131
  {
132
- if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
133
- if ( $label['style'] == 'mec-label-featured' )
134
- {
135
- $label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite');
136
- }
137
- elseif ( $label['style'] == 'mec-label-canceled' )
138
  {
139
- $label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite');
 
 
 
140
  }
141
  }
142
- endif;
143
  ?>
144
  <article class="mec-event-article <?php echo $this->get_event_classes($event); ?>">
145
  <?php echo $event_color; ?>
146
  <div class="mec-timetable-t2-content">
147
  <h4 class="mec-event-title">
148
  <a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a>
149
- <?php if (!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?>
150
  </h4>
151
  <div class="mec-event-time">
152
  <i class="mec-sl-clock-o"></i>
116
  <?php elseif($this->style == 'clean'): ?>
117
  <div class="mec-timetable-t2-wrap">
118
  <?php foreach($this->events as $date=>$events): ?>
119
+ <div class="mec-timetable-t2-col mec-timetable-col-<?php echo $this->number_of_days; ?>">
120
  <div class="mec-ttt2-title"> <?php echo date_i18n('l', strtotime($date)); ?> </div>
121
  <?php foreach($events as $event): ?>
122
  <?php
125
  $start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
126
  $end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
127
  $event_color = isset($event->data->meta['mec_color']) ? '<span class="event-color" style="background: #'.$event->data->meta['mec_color'].'"></span>' : '';
128
+
129
  $label_style = '';
130
+ if(!empty($event->data->labels))
 
131
  {
132
+ foreach($event->data->labels as $label)
 
 
 
 
 
133
  {
134
+ if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
135
+
136
+ if($label['style'] == 'mec-label-featured') $label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite');
137
+ elseif($label['style'] == 'mec-label-canceled') $label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite');
138
  }
139
  }
 
140
  ?>
141
  <article class="mec-event-article <?php echo $this->get_event_classes($event); ?>">
142
  <?php echo $event_color; ?>
143
  <div class="mec-timetable-t2-content">
144
  <h4 class="mec-event-title">
145
  <a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a>
146
+ <?php if(!empty($label_style)) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?>
147
  </h4>
148
  <div class="mec-event-time">
149
  <i class="mec-sl-clock-o"></i>
assets/css/backend.css CHANGED
@@ -345,6 +345,9 @@
345
  .mec-xi-google-import-events .mec-select-deselect-actions li , .mec-xi-facebook-import-events .mec-select-deselect-actions li {display: inline-block; cursor: pointer;}
346
  .lity-content > div {overflow: auto; }
347
 
 
 
 
348
  /* Mec contextual
349
  -------------------------------- */
350
  #mec_setting_contextual li {list-style: none !important; font-size: 12px; margin: 0; padding: 6px; }
@@ -1084,6 +1087,30 @@
1084
  color: #fff;
1085
  }
1086
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1087
  .addons-page-notice,.addons-page-error {
1088
  display: block;
1089
  margin-top: 15px;
@@ -1424,4 +1451,13 @@
1424
  font-size: 12px;
1425
  }
1426
 
1427
- }
 
 
 
 
 
 
 
 
 
345
  .mec-xi-google-import-events .mec-select-deselect-actions li , .mec-xi-facebook-import-events .mec-select-deselect-actions li {display: inline-block; cursor: pointer;}
346
  .lity-content > div {overflow: auto; }
347
 
348
+ /* Mec TinyMce
349
+ -------------------------------- */
350
+ .mce-mec-mce-items{text-transform: capitalize !important;}
351
  /* Mec contextual
352
  -------------------------------- */
353
  #mec_setting_contextual li {list-style: none !important; font-size: 12px; margin: 0; padding: 6px; }
1087
  color: #fff;
1088
  }
1089
 
1090
+ /* Responsive MEC Dashboard */
1091
+ @media(max-width:1366px) {
1092
+ .wns-be-container #wns-be-content {padding: 5px 15px 0px;}
1093
+ .mec-form-row .mec-col-8 label {font-size: 10px;}
1094
+ #webnus-dashboard .mec-tooltip .box p, .mec-tooltip .box p {font-size: 10px;}
1095
+ }
1096
+
1097
+ @media (max-width:780px) {
1098
+ .wns-be-container #wns-be-content {padding: 10px 0;}
1099
+ .wns-be-container .mec-form-row .mec-col-8 label {width: 50%;display: block;}
1100
+ .wns-be-container .mec-form-row input[type=checkbox] {width: 14px; height: 14px;}
1101
+ .wns-be-container .wns-be-sidebar li .subsection a {padding-left: 30px;}
1102
+ .wns-be-container .wns-be-sidebar {width: 200px;}
1103
+ .wns-be-container .wns-be-main {margin-left: 200px;}
1104
+ .wns-be-container .mec-tooltip .box {min-width: 235px !important;}
1105
+ .wns-be-container .mec-tooltip .box p {font-size: 12px !important;}
1106
+ #wns-be-infobar.sticky {position: unset;}
1107
+ }
1108
+
1109
+ @media (max-width:480px) {
1110
+ .wns-be-container .wns-be-sidebar {width: 100%;position: unset;float: none;}
1111
+ .wns-be-container .wns-be-main {margin-left: 0;width: 100%;position: unset;}
1112
+ }
1113
+
1114
  .addons-page-notice,.addons-page-error {
1115
  display: block;
1116
  margin-top: 15px;
1451
  font-size: 12px;
1452
  }
1453
 
1454
+ }
1455
+
1456
+ @media(max-width:1366px) {
1457
+
1458
+ .wns-be-container .wns-be-group-tab p {
1459
+ margin-top: 0;
1460
+ }
1461
+
1462
+ }
1463
+
assets/css/backend.min.css CHANGED
@@ -1,5 +1,5 @@
1
- #mec_location_thumbnail_img img,#mec_organizer_thumbnail_img img,#mec_thumbnail_img img{max-width:250px}.taxonomy-mec_label .column-id,.taxonomy-mec_location .column-id,.taxonomy-mec_organizer .column-id,.taxonomy-mec_speaker .column-id{width:40px}.taxonomy-mec_label .column-primary,.taxonomy-mec_location .column-primary,.taxonomy-mec_organizer .column-primary,.taxonomy-mec_speaker .column-primary{width:250px}.mec-color{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-event-color-container,.mec-event-title-container{display:inline-block}.mec-available-color-row{margin-top:15px}.mec-available-color-row .mec-color{cursor:pointer}.mec-widget-container a{text-decoration:none}.mec-widget-container label{padding-right:15px}.mec-util-hidden{display:none}.button.mec-util-hidden{display:none}.wns-be-container{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Oxygen,Roboto,sans-serif;max-width:100%;background-color:#f6f6f6;border:1px solid #c1cad2;box-shadow:0 1px 1px rgba(0,0,0,.04);margin-top:5px;margin-right:15px;overflow:hidden}.wns-be-sidebar{width:260px;float:left;position:relative}.wns-be-sidebar ul.wns-be-group-menu,.wns-be-sidebar ul.wns-be-group-menu li{list-style:none;margin:0}.wns-be-sidebar .wns-be-group-menu li a{display:block;position:relative;outline:0;padding:13px 4px 13px 20px;background:#e0e0e0;background:0 0;border:none;color:#3f454a;font-size:13px;font-weight:600;text-decoration:none;-webkit-transition:none;transition:none}.wns-be-sidebar .wns-be-group-menu li a:hover{background:#fff;color:#008aff;opacity:1}.wns-be-sidebar .wns-be-group-menu>li.active>a,.wns-be-sidebar .wns-be-group-menu>li.active>a:hover{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff}.wns-be-sidebar .wns-be-group-menu>li.active>a{box-shadow:0 2px 12px -5px #008aff}.wns-be-sidebar .wns-be-group-menu li a:first-child{border-top:none}.wns-be-main{background:#fff;margin-left:260px;border-left:1px solid #dedede;padding-bottom:84px;box-shadow:inset 0 1px 0 #fff;min-height:1120px;position:relative}.wns-be-main .wns-saved-settings{margin:0;border-bottom:1px solid #dedede;background:#dff0d8;color:#468847;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.6)}.wns-be-container .dpr-btn{display:inline-block;font-size:13px;padding:0 16px 1px;height:36px;margin-right:3px;line-height:35px;color:#555;border:1px solid #ccc;background:#f7f7f7;text-decoration:none;transition:.24s all ease;-webkit-transition:.24s all ease}.wns-be-container .dpr-btn:hover{background:#fcfcfc;border-color:#999;color:#303030}.wns-be-container .dpr-btn.dpr-save-btn{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}.wns-be-container .dpr-btn.dpr-save-btn:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);cursor:pointer}.wns-be-container .wns-be-group-tab h2,.wns-be-container .wns-be-group-tab h4{color:#000;margin-bottom:25px;padding:15px;background:#f5f5f5;font-size:21px;line-height:23px;letter-spacing:.4px;font-weight:700;position:relative}.wns-be-container .wns-be-group-tab h2{margin-top:10px}.wns-be-container .wns-be-group-tab h2:before,.wns-be-container .wns-be-group-tab h4:before{content:"";width:4px;height:16px;margin-right:5px;background-color:#008aff;display:block;position:absolute;left:0;top:18px}.wns-be-container .wns-be-group-tab h4:before{width:2px;top:16px}.wns-be-container .wns-be-group-tab h4{font-size:16px;font-weight:600;background:#f8f8f8;border:none;padding:12px 15px 12px 15px}.wns-be-container .wns-be-group-tab p{font-size:13px;color:#888}.wns-be-sidebar .wns-be-group-tab-link-a:hover{cursor:pointer}.wns-be-sidebar .wns-be-group-tab-link-a span{display:block}.wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:24px}.wns-be-sidebar li.active ul.subsection{padding-top:8px;padding-bottom:12px;background:#fff;border-bottom:1px solid #dedede;margin:0}.wns-be-sidebar li .subsection a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 46px}.wns-be-sidebar li .subsection a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a{color:#008aff}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,.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:#fff;right:-1px;top:10px}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:#c5c5c5;right:0}.wns-be-sidebar li a i{color:#a0abb5;vertical-align:middle;font-size:16px;position:absolute;margin-top:0}.wns-be-sidebar .wns-be-group-menu li.active>a i{color:#fff}.wns-be-sidebar .has-sub span.extra-icon{display:inline-block;float:right;padding:4px 7px 4px;margin-left:4px;margin-right:10px;font-family:sans-serif;font-size:9px;font-weight:600;line-height:9px;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;border:0 solid transparent}.wns-be-sidebar .has-sub span.extra-icon i{margin-left:-3px;margin-top:2px;color:#bac6d0;font-size:10px}.wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:10px;font-size:10px}.wns-be-sidebar .wns-be-group-menu li.active>a span.extra-icon i{margin-top:1px}.wns-be-container #wns-be-footer{border-top:1px solid #dedede;z-index:999;padding:25px 20px 20px;background:#fafafa!important;height:44px;text-align:right}.wns-be-container #wns-be-content{padding:5px 40px 40px}.wns-be-container #wns-be-infobar{background:#fff;border-bottom:1px solid #dedede;padding:20px;text-align:right;box-shadow:inset 0 1px 0 #fcfcfc;height:79px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;position:relative}.wns-be-container #wns-be-infobar:before{content:"";width:261px;height:78px;display:block;position:absolute;left:0;top:0;background:#fff url(../img/webnus-logo.png) no-repeat center;border-bottom:1px solid #dedede;background-size:220px;z-index:997}.wns-be-container .notice-yellow{margin:0;border-bottom:1px solid #dedede;background-color:#fcf8e3;color:#c09853;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}.wns-be-container .notice-red,.wns-be-container .wns-be-field-errors{margin:0;border-bottom:1px solid #dedede;background-color:#f2dede;color:#b94a48;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}body.post-type-mec-events th.column-primary{width:35%}body.post-type-mec-events th.column-start_date{width:100px}body.post-type-mec-events th.column-end_date{width:100px}body.post-type-mec-events th.column-repeat{width:75px}body.post-type-mec-events th.column-author{width:150px}body.post-type-mec-books th.column-primary{width:20%}body.post-type-mec-books th.column-event{width:170px}body.post-type-mec-books th.column-bdate{width:120px}body.post-type-mec-books th.column-confirmation{width:120px}body.post-type-mec-books th.column-verification{width:120px}body.post-type-mec-books th.column-author{width:150px}.mec-meta-box-labels-container .mec-form-row{height:100px;overflow:auto}.mec-tooltip{display:inline;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-tooltip:last-child{margin-right:0}.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-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-tooltip .dashicons-before:before{font-size:24px;color:#008aff;line-height:37px}.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-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{position:relative;min-height:1px;padding:0;margin:0 1% 0 0}@media (min-width:783px){.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{float:left}.mec-col-12{width:99%}.mec-col-11{width:90.66666667%}.mec-col-10{width:82.33333333%}.mec-col-9{width:74%}.mec-col-8{width:65.66666667%}.mec-col-7{width:57.33333333%}.mec-col-6{width:49%}.mec-col-5{width:40.66666667%}.mec-col-4{width:32.33333333%}.mec-col-3{width:24%}.mec-col-2{width:15.66666667%}.mec-col-1{width:7.33333333%}}#mec_reg_form_fields{background:#eee;padding:20px}#mec_reg_form_fields li{margin:4px;border-radius:2px;padding:20px 34px 24px;background:#fff;position:relative;transition:all .3s ease}#mec_reg_form_fields li ul{padding-top:15px;padding-bottom:15px;margin:1px}#mec_reg_form_fields li ul li{padding:7px 30px 7px 46px}#mec_reg_form_fields span.mec_reg_field_type{font-size:11px;font-weight:600;color:#8a8a8a;text-transform:uppercase;letter-spacing:2px}#mec_reg_form_fields span.mec_reg_field_option_sort,#mec_reg_form_fields span.mec_reg_field_remove,#mec_reg_form_fields span.mec_reg_field_sort{font-size:0;color:#fff}#mec_reg_form_fields span.mec_reg_field_remove{position:absolute;right:0;top:0}#mec_reg_form_fields span.mec_reg_field_option_sort:before,#mec_reg_form_fields span.mec_reg_field_remove:before,#mec_reg_form_fields span.mec_reg_field_sort:before{position:absolute;left:10px;top:20px;width:80px;height:20px;display:block;cursor:move;font-family:simple-line-icons;content:"\e023";font-size:18px;color:#888}#mec_reg_form_fields span.mec_reg_field_remove:before{content:"\e082";width:20px;height:20px;left:auto;right:15px;color:#f96666;cursor:pointer}#mec_reg_form_fields span.mec_reg_field_option_sort:before{font-size:13px;left:2px;top:23px;width:14px;height:14px}#mec_reg_form_fields li ul li span.mec_reg_field_remove{right:auto;left:60px;top:2px}#mec_reg_form_fields p.mec_reg_field_options{margin:6px 0 8px}#mec_reg_form_fields input[type=number],#mec_reg_form_fields input[type=text],#mec_reg_form_fields select,#mec_reg_form_fields textarea{min-width:260px;min-height:34px;margin-bottom:7px;margin-top:7px}#mec_reg_form_fields textarea{min-height:66px}#mec_reg_form_field_types button,#mec_reg_form_fields button{position:relative;outline:0;background:#fff;border:1px solid #e2e2e2;border-radius:50px;padding:11px 21px 11px 31px;line-height:1;font-size:11px;font-weight:600;color:#444;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 0 3px rgba(0,0,0,.03)}#mec_reg_form_field_types button:hover,#mec_reg_form_fields button:hover{border-color:#008aff;box-shadow:0 0 7px rgba(0,0,0,.1)}#mec_reg_form_field_types button:before,#mec_reg_form_fields button:before{position:absolute;left:12px;color:#008aff;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_reg_form_field_types button.red:hover,#mec_reg_form_fields button.red:hover{border-color:red;box-shadow:0 0 7px rgba(0,0,0,.1)}#mec_reg_form_field_types button.red:before,#mec_reg_form_fields button.red:before{position:absolute;left:12px;color:red;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}@media (max-width:768px){#mec_reg_form_fields input[type=number],#mec_reg_form_fields input[type=text],#mec_reg_form_fields select,#mec_reg_form_fields textarea{min-width:80px;width:100%}}.mec-form-row{margin:0 auto 10px}.mec-options-fields{padding-top:25px;overflow:hidden;animation:fadeEffect 1s}#mec_notifications_form .mec-options-fields,#mec_settings_form .mec-options-fields{display:none}.mec-options-fields.active{display:block!important}@keyframes fadeEffect{from{opacity:0}to{opacity:1}}.mec-form-row:after,.mec-form-row:before{content:" ";display:table}.mec-form-row:after{clear:both}.mec-form-row input[type=number],.mec-form-row input[type=text],.mec-form-row select{height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;box-shadow:none;border-radius:2px;box-shadow:inset 0 1px 5px rgba(0,0,0,.05)}.mec-form-row input[type=radio]{margin:5px 0}.mec-form-row select{margin-top:1px}.mec-book-status-form select{display:block;width:99%;margin-top:10px;margin-bottom:10px}.mec-form-row label{margin:10px 0}.mec-form-row input[type=checkbox]{background-color:#fafafa;border:1px solid #cacece;box-shadow:0 1px 2px rgba(0,0,0,.05),inset 0 -15px 10px -12px rgba(0,0,0,.05);padding:9px;border-radius:3px;min-width:20px;min-height:20px;display:inline-block}.mec-form-row input[type=checkbox]:checked{box-shadow:0 3px 11px -4px #008aff;border-color:#008aff;background:#fff}.mec-form-row input[type=checkbox]:checked:before{color:#008aff;width:20px;font:400 24px/1 dashicons}.mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select{width:75%}.mec-form-row .description{display:inline-block;border-left:1px dashed #ccc;margin-left:12px;line-height:26px;padding-left:12px;color:#555}.mec-form-row .time-dv{font-size:14px;font-weight:700}.mec-meta-box-fields{margin:30px 10px}.mec-meta-box-fields>.mec-meta-box-fields{margin-left:0}.mec-meta-box-fields .mec-title{margin:5px 0}.mec-meta-box-fields h4.mec-title{margin:40px 0 16px}.mec-meta-box-fields .mec-dashicons{font-size:20px;line-height:22px;color:#008aff}.mec-form-row .mec-box,.mec-meta-box-fields .mec-box{background:#f7f7f7;padding:10px;margin:10px 0;border-radius:2px;border:1px solid #e6e6e6}.mec-form-row .mec-box{max-width:960px}.mec-form-row .mec-box .button,.mec-meta-box-fields .mec-box .button{float:right}#mec_gateways_form .mec-form-row:first-child,#mec_notifications_form_container .mec-form-row:nth-child(2){overflow:hidden}#mec_gateways_form .mec-tooltip{float:right}.mec-container{background:#fff;padding:15px}.nav-tab-active{background:#fff;border-bottom:1px solid #fff}#mec_social_networks .mec-form-row{margin-bottom:0}#mec_gateways_form h4,.mec-meta-box-fields h4,.mec-options-fields h4,h4.mec-form-subtitle{text-transform:capitalize;border-bottom:1px solid #e5e5e5;padding-bottom:6px;margin:40px 0 16px;font-size:15px;font-weight:600}#mec_gateways_form h4{margin-bottom:0}#mec_styles_form #mec_styles_CSS{height:200px;margin-bottom:5px;font-family:Consolas,Monaco,monospace;font-size:13px;width:97%;background:#f9f9f9;outline:0}#mec_calendar_filter .description,#mec_styles_form .description{max-width:500px;display:block;margin:0 0 5px 0;padding:0;border:none}.mec-sed-methods li{display:inline-block;padding:8px 12px;border:1px solid #ddd;margin:0 5px 5px 0;cursor:pointer;border-radius:3px;box-shadow:0 2px 15px -2px rgba(0,0,0,.1)}.mec-sed-methods li:hover{border-color:#008aff}.mec-sed-methods li.active{border-color:#008aff;background-color:#fff;color:#008aff;font-weight:600;cursor:default;box-shadow:0 0 8px rgba(1,138,255,.5) inset}.mec-switcher input+label{display:block;position:relative;cursor:pointer;outline:0;padding:2px;width:38px;height:22px;background-color:#ddd;border-radius:60px}.mec-switcher input:checked+label{background-color:#008aff;box-shadow:0 3px 22px -6px #008aff}.mec-switcher input:checked+label:after{margin-left:16px}#mec_gateways_form input[type=text],#mec_gateways_form select,#mec_gateways_form textarea{width:calc(100% - 30px)}#mec_gateways_form textarea{min-height:65px}#mec_gateways_form li .mec-gateway-options-form{padding:15px 20px;background-color:#f7f7f7;border-left:6px solid #e3e3e3;margin-bottom:20px}#mec_notifications_form label{display:inline-block;min-width:160px}#mec_notifications_form input[type=text],#mec_notifications_form select{min-width:300px}@media (max-width:536px){#mec_notifications_form input[type=text],#mec_notifications_form select{min-width:100%}}#mec_notifications_form .wp-editor-container{margin-bottom:45px}#mec_notifications_form ul li:last-child .wp-editor-container{margin-bottom:0}#mec_messages_form_container ul li label{display:block;font-weight:700}#mec_messages_form_container ul li input{display:block;width:100%}.mec-message-categories li.mec-acc-label{font-size:18px;font-weight:700;padding:10px;cursor:pointer;background-color:#f1f1f1;border:1px solid #ccc}.mec-message-categories ul{margin:15px 5px}.webnus-icons-list li{width:40px;display:inline-block;list-style:none;padding:0}.webnus-icons-list input{visibility:hidden;margin:0;padding:0;width:1px;height:1px;-moz-opacity:0;-khtml-opacity:0;opacity:0;cursor:pointer}.webnus-icons-list li label{color:#777;display:inline-block!important;float:none!important;width:33px!important;text-align:center;font-size:23px!important;font-weight:400!important;padding:5px 0!important;border:1px solid #eee!important}.mec-webnus-icon{float:left;margin-right:10px}.mec-webnus-icon i{font-size:24px;color:#222}.mec-accordion ul{display:none}.mec-switcher input{position:absolute;margin-left:-9999px;visibility:hidden}.mec-switcher input+label{display:block;position:relative;cursor:pointer;outline:0;padding:2px;width:50px;height:22px;background-color:#ddd;border-radius:60px}.mec-switcher input+label:after,.mec-switcher input+label:before{display:block;position:absolute;top:1px;left:1px;bottom:1px;content:""}.mec-switcher input+label:before{right:1px;background-color:#f1f1f1;border-radius:60px;transition:background .4s}.mec-switcher input+label:after{width:24px;background-color:#fff;border-radius:100%;box-shadow:0 2px 3px rgba(0,0,0,.1);transition:margin .4s}.wns-be-group-tab .mec-switcher input[value="1"]+label,.wns-be-group-tab .mec-switcher input[value="1"]+label:before{background-color:#008aff;box-shadow:0 3px 22px -7px #008aff}.wns-be-group-tab .mec-switcher input[value="1"]+label:after{margin-left:28px}.mec-switcher input:checked+label{background-color:#008aff}.mec-switcher input:checked+label:before{background-color:#008aff}.mec-switcher input:checked+label:after{margin-left:28px}.mec-switcher label{display:block}.mec-sed-methods li{display:inline-block;padding:10px;border:1px solid #ddd;margin:0 5px 5px 0;cursor:pointer}#wpwrap .mec-button-primary{border-bottom:none;letter-spacing:.5px;line-height:18px;height:46px;transition:all .5s ease;color:#fff;padding:12px 25px;display:block;text-align:center;font-size:14px;background:0 0;background-color:#008aff;text-shadow:none;border:0;box-shadow:none;display:inline-block;margin:25px 0 12px;min-width:146px}#wpwrap .mec-button-primary:hover{background-color:#41c9de}#wpwrap .mec-button-primary.loading{background-color:#73c02a}#wpwrap .mec-button-primary:before{content:"\f00c";font-family:fontawesome;margin-right:4px;font-size:16px;display:none}#wpwrap .mec-button-primary.loading:before{display:inline-block}.mec-image-select-wrap{clear:both;overflow:hidden;padding:10px 0;margin:0}.mec-image-select-wrap li{float:left;display:block;margin-right:15px;margin-bottom:15px}.mec-image-select-wrap li input{display:none}.mec-image-select-wrap li span{width:35px;height:35px;display:block;border:3px solid transparent}.mec-image-select-wrap li input:checked+span{border-color:#e3e3e3}.mec-image-select-wrap li input:checked+span:after{content:"\f00c";font-family:fontawesome;font-size:20px;display:inline-block;color:#fff;padding:8px;max-width:100%;max-height:100%}.mec-image-select-wrap .mec-colorskin-1{background-color:#008aff}.mec-image-select-wrap .mec-colorskin-2{background-color:#0093d0}.mec-image-select-wrap .mec-colorskin-3{background-color:#e53f51}.mec-image-select-wrap .mec-colorskin-4{background-color:#f1c40f}.mec-image-select-wrap .mec-colorskin-5{background-color:#e64883}.mec-image-select-wrap .mec-colorskin-6{background-color:#45ab48}.mec-image-select-wrap .mec-colorskin-7{background-color:#9661ab}.mec-image-select-wrap .mec-colorskin-8{background-color:#0aad80}.mec-image-select-wrap .mec-colorskin-9{background-color:#0ab1f0}.mec-image-select-wrap .mec-colorskin-10{background-color:#ff5a00}.mec-image-select-wrap .mec-colorskin-11{background-color:#c3512f}.mec-image-select-wrap .mec-colorskin-12{background-color:#55606e}.mec-image-select-wrap .mec-colorskin-13{background-color:#fe8178}.mec-image-select-wrap .mec-colorskin-14{background-color:#7c6853}.mec-image-select-wrap .mec-colorskin-15{background-color:#bed431}.mec-image-select-wrap .mec-colorskin-16{background-color:#2d5c88}.mec-image-select-wrap .mec-colorskin-17{background-color:#77da55}.mec-image-select-wrap .mec-colorskin-18{background-color:#2997ab}.mec-image-select-wrap .mec-colorskin-19{background-color:#734854}.mec-image-select-wrap .mec-colorskin-20{background-color:#a81010}.mec-image-select-wrap .mec-colorskin-21{background-color:#4ccfad}.mec-image-select-wrap .mec-colorskin-22{background-color:#3a609f}@media screen and (max-width:782px){.mec-form-row .description{max-width:500px;display:block;margin:0 0 5px 0;padding:0;border:none}.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{margin-bottom:5px;display:block}.mec-form-row .mec-box .button,.mec-meta-box-fields .mec-box .button{float:left}.mec-form-row .time-dv{padding:0 4px}.mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select{width:auto;min-width:192px}.mec-tooltip .dashicons-before:before{font-size:32px}}#frmb-0-clear-all,#frmb-0-save,#frmb-0-view-data{display:none}#mec_sn_googlecal{margin-bottom:0}#mec_fee_row1 .button{margin-right:10px}h4.mec-form-subtitle{font-size:15px;margin-top:0}#webnus-dashboard *{box-sizing:border-box}#webnus-dashboard.about-wrap{max-width:1240px;margin:25px auto 20px}#webnus-dashboard .change-log{word-wrap:break-word}#webnus-dashboard .welcome-head img{border:none}.w-welcome{position:relative;margin-top:30px;margin-bottom:10px}.w-box{position:relative;background:#fff;padding:5px 25px;margin-top:30px}.w-theme-version{box-shadow:0 3px 30px -4px #40d8f0;text-shadow:none;background:#40d8f0;background:linear-gradient(95deg,#40d8f0 0,#2dd1ea 50%,#13cbe8 100%);text-align:center;display:block;padding:10px 0;color:#fff;font-weight:600;margin-top:10px;border-radius:2px}.w-box{padding:0;min-height:310px;box-shadow:0 1px 16px rgba(0,0,0,.034);border-radius:2px}.w-box-head{font-weight:600;padding:20px 72px;position:relative;border-bottom:2px solid #008aff;font-size:20px}.w-box-head span{position:absolute;left:0;padding:0 25px;line-height:58px;background:#008aff;height:100%;top:0;color:#fff}.w-box-child,.w-box-content{padding:18px;line-height:24px;font-size:14px}.mec-count-child{width:50%;margin:0 auto}#webnus-dashboard .w-button a{color:#fff!important;border-radius:0;padding:10px 24px;font-size:12px;letter-spacing:1px;font-weight:600;background:#008aff;margin:10px 0;display:inline-block;text-transform:uppercase}#webnus-dashboard .w-box .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)}.w-system-info{margin-bottom:7px}.w-system-info:first-child{margin-top:20px}.w-system-info>span{display:inline-block;min-width:145px;line-height:20px;font-size:13px}#webnus-dashboard .w-current{min-width:110px}#webnus-dashboard .w-min{min-width:65px}.w-icon{color:#fff;padding:3px;border-radius:4px;margin-right:10px;vertical-align:middle}.w-icon-green{background:#27ae60}.w-icon-red{background:#e74c3c}.extra .w-box-head{padding:20px;border-bottom:1px solid #ededed}.doc .w-box-head{color:#4cbf67}#webnus-dashboard .doc .w-button a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);margin:35px 0 17px;box-shadow:0 5px 10px -5px #4cbf67;background-color:#fff}#webnus-dashboard .support .w-button a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);margin:13px 0 18px;box-shadow:0 5px 10px -5px #ff876c}.doc .w-box-content{background:url(../img/document.png) no-repeat right center}.doc .w-box-content p,.w-box.support .w-box-content p{width:54%;color:#666;margin-top:10px;max-width:380px}.w-box-child p{color:#666;margin-top:10px}.w-box.support{background:#fff url(../img/support.png) no-repeat top right}.w-box.support .w-box-head{width:50%;color:#ff876c}.w-box-content pre{text-align:left;background:#f5f5f5;font-size:13px;padding:20px 25px;height:480px;overflow-y:scroll}.w-box.change-log .w-box-head{color:#01c6d9}#webnus-dashboard .button:not(.mec-intro-section-link-tag){border:0;background:0 0;box-shadow:none;color:#e74c3c;font-weight:700}.w-box .state{position:absolute;top:0;left:-100vw}#webnus-dashboard .button:hover{color:#222}.w-box .state:checked~.content{-webkit-transform:none;-ms-transform:none;transform:none}.w-box .state:checked~.backdrop{bottom:0;opacity:1;z-index:1}.w-box .lightbox{position:fixed;top:0;right:0;left:0;height:0;padding:0 20px}.w-box .lightbox .content{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;overflow:hidden;position:relative;z-index:2;max-width:500px;max-height:95vh;margin:20px auto;padding:20px;background:#fff;-webkit-transform:translateY(-200%);-ms-transform:translateY(-200%);transform:translateY(-200%);-webkit-transition:.3s -webkit-transform ease-in-out;transition:.3s transform ease-in-out;border:1px solid rgba(0,0,0,.1)}.w-box .lightbox .main{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.w-box .lightbox .backdrop{position:fixed;z-index:-1;top:0;right:0;bottom:100%;left:0;opacity:0;background:rgba(0,0,0,.3);-webkit-transition:.3s opacity ease-in-out;transition:.3s opacity ease-in-out}.content .main p{color:#bf3737}p.mec_dash_count{font-size:60px;font-weight:600;margin:0;color:#01c6d9}.w-col-sm-3 .w-box.doc{text-align:center;min-height:auto}.w-Knowledgebase{color:#8e5cea}.mec-view-all-articles a{margin:30px 0 17px;display:inline-block;color:#fff!important;border-radius:0;padding:10px 24px;font-size:12px;letter-spacing:1px;font-weight:600;background:#8e5cea;display:inline-block;text-transform:uppercase;transition:all .24s ease;-webkit-transition:all .24s ease}.mec-view-all-articles a:hover{background-color:#222}.w-box.upcoming-events .mec-event-article{margin-bottom:22px;border-bottom:1px solid #eee;padding-bottom:16px}.w-box.upcoming-events .mec-event-article .mec-event-date{font-size:14px;color:#666}.w-box.upcoming-events .mec-event-article .mec-event-date span{font-weight:600;margin-right:4px}.w-box.upcoming-events .mec-event-article h4.mec-event-title{margin:0;font-size:15px}.w-box.upcoming-events .mec-event-article .mec-event-detail{font-size:13px;color:#999}.w-box.upcoming-events .mec-event-article .mec-detail-button{font-size:10px;font-weight:600;letter-spacing:1px;padding:4px 12px;background:#f2f2f2;float:right}.w-box.total-bookings ul li{display:inline-block;padding:4px 12px;background:#f1f1f1;margin-right:5px;border-radius:3px}.w-box.total-bookings ul li.selected{background:#fff;border:1px solid #e9e9e9}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px}.info-msg{color:#059;background-color:#bef}.info-msg-link{background:#fff;padding:4px 12px 6px;border-radius:3px;line-height:1;font-weight:600;color:#008aff}.mec-success{color:#270;background-color:#dff2bf}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-certain-day>div,.mec-select-deselect-actions li,.mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-xi-google-import-events .mec-select-deselect-actions li{display:inline-block;position:relative;outline:0;background:#fff;border:1px solid #e2e2e2;border-radius:50px;padding:11px 21px 11px 21px;line-height:1;font-size:11px;font-weight:600;color:#444;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 0 3px rgba(0,0,0,.03)}.mec-certain-day>div:hover,.mec-select-deselect-actions li:hover,.mec-xi-facebook-import-events .mec-select-deselect-actions li:hover,.mec-xi-google-import-events .mec-select-deselect-actions li:hover{border-color:#008aff;box-shadow:0 0 7px rgba(0,0,0,.1)}.mec-not-in-days-remove{border:1px solid #f99170;border-radius:20px;padding:0 0 0 2px;color:#f99170}.mec-xi-facebook-import-events .mec-success,.mec-xi-google-import-events .mec-success{width:460px}.mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-xi-google-import-events .mec-select-deselect-actions li{display:inline-block;cursor:pointer}.lity-content>div{overflow:auto}#mec_setting_contextual li{list-style:none!important;font-size:12px;margin:0;padding:6px}.mec-bbf-field-container{margin-bottom:10px}.mec-bbf-field-container label{display:block}.kc-components ul.kc-components-list li .cpicon.mec-kingcomposer-icon,.kc-element-icon .cpicon.mec-kingcomposer-icon{background:url(../img/ico-mec-vc.png) no-repeat center center;background-size:auto;background-repeat:no-repeat}.mec-archive-skinsm.mec-category-skins,.mec-carousel-archive-link,.mec-carousel-head-text,.mec-toggle-month-divider{display:none}span.mec-archive-skins,span.mec-category-skins{margin-left:10px;vertical-align:text-bottom}.mec-archive-skins input,.mec-archive-skins select,.mec-category-skins input,.mec-category-skins select{min-width:225px;vertical-align:baseline}#mec_settings_default_skin_archive,#mec_settings_default_skin_category{min-width:225px}.w-welcome p span{background:#fff;padding:4px 10px}#mec_masonry_skin_options_container .mec-form-row .description{margin-left:0;padding-left:0;border:none;margin-top:-4px}@media (max-width:1280px){span.mec-archive-skins,span.mec-category-skins{margin-left:0}}/*!
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}@-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}.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_settings_form .mec-options-fields{padding-bottom:150px!important}#mec_taxes_fees_container_toggle{margin-bottom:60px}#mec_settings_form .mec-options-fields{padding-bottom:150px!important}#mec_taxes_fees_container_toggle{margin-bottom:60px}.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}}
1
+ #mec_location_thumbnail_img img,#mec_organizer_thumbnail_img img,#mec_thumbnail_img img{max-width:250px}.taxonomy-mec_label .column-id,.taxonomy-mec_location .column-id,.taxonomy-mec_organizer .column-id,.taxonomy-mec_speaker .column-id{width:40px}.taxonomy-mec_label .column-primary,.taxonomy-mec_location .column-primary,.taxonomy-mec_organizer .column-primary,.taxonomy-mec_speaker .column-primary{width:250px}.mec-color{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-event-color-container,.mec-event-title-container{display:inline-block}.mec-available-color-row{margin-top:15px}.mec-available-color-row .mec-color{cursor:pointer}.mec-widget-container a{text-decoration:none}.mec-widget-container label{padding-right:15px}.mec-util-hidden{display:none}.button.mec-util-hidden{display:none}.wns-be-container{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Oxygen,Roboto,sans-serif;max-width:100%;background-color:#f6f6f6;border:1px solid #c1cad2;box-shadow:0 1px 1px rgba(0,0,0,.04);margin-top:5px;margin-right:15px;overflow:hidden}.wns-be-sidebar{width:260px;float:left;position:relative}.wns-be-sidebar ul.wns-be-group-menu,.wns-be-sidebar ul.wns-be-group-menu li{list-style:none;margin:0}.wns-be-sidebar .wns-be-group-menu li a{display:block;position:relative;outline:0;padding:13px 4px 13px 20px;background:#e0e0e0;background:0 0;border:none;color:#3f454a;font-size:13px;font-weight:600;text-decoration:none;-webkit-transition:none;transition:none}.wns-be-sidebar .wns-be-group-menu li a:hover{background:#fff;color:#008aff;opacity:1}.wns-be-sidebar .wns-be-group-menu>li.active>a,.wns-be-sidebar .wns-be-group-menu>li.active>a:hover{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff}.wns-be-sidebar .wns-be-group-menu>li.active>a{box-shadow:0 2px 12px -5px #008aff}.wns-be-sidebar .wns-be-group-menu li a:first-child{border-top:none}.wns-be-main{background:#fff;margin-left:260px;border-left:1px solid #dedede;padding-bottom:84px;box-shadow:inset 0 1px 0 #fff;min-height:1120px;position:relative}.wns-be-main .wns-saved-settings{margin:0;border-bottom:1px solid #dedede;background:#dff0d8;color:#468847;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.6)}.wns-be-container .dpr-btn{display:inline-block;font-size:13px;padding:0 16px 1px;height:36px;margin-right:3px;line-height:35px;color:#555;border:1px solid #ccc;background:#f7f7f7;text-decoration:none;transition:.24s all ease;-webkit-transition:.24s all ease}.wns-be-container .dpr-btn:hover{background:#fcfcfc;border-color:#999;color:#303030}.wns-be-container .dpr-btn.dpr-save-btn{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}.wns-be-container .dpr-btn.dpr-save-btn:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);cursor:pointer}.wns-be-container .wns-be-group-tab h2,.wns-be-container .wns-be-group-tab h4{color:#000;margin-bottom:25px;padding:15px;background:#f5f5f5;font-size:21px;line-height:23px;letter-spacing:.4px;font-weight:700;position:relative}.wns-be-container .wns-be-group-tab h2{margin-top:10px}.wns-be-container .wns-be-group-tab h2:before,.wns-be-container .wns-be-group-tab h4:before{content:"";width:4px;height:16px;margin-right:5px;background-color:#008aff;display:block;position:absolute;left:0;top:18px}.wns-be-container .wns-be-group-tab h4:before{width:2px;top:16px}.wns-be-container .wns-be-group-tab h4{font-size:16px;font-weight:600;background:#f8f8f8;border:none;padding:12px 15px 12px 15px}.wns-be-container .wns-be-group-tab p{font-size:13px;color:#888}.wns-be-sidebar .wns-be-group-tab-link-a:hover{cursor:pointer}.wns-be-sidebar .wns-be-group-tab-link-a span{display:block}.wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:24px}.wns-be-sidebar li.active ul.subsection{padding-top:8px;padding-bottom:12px;background:#fff;border-bottom:1px solid #dedede;margin:0}.wns-be-sidebar li .subsection a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 46px}.wns-be-sidebar li .subsection a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a{color:#008aff}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,.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:#fff;right:-1px;top:10px}.wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:#c5c5c5;right:0}.wns-be-sidebar li a i{color:#a0abb5;vertical-align:middle;font-size:16px;position:absolute;margin-top:0}.wns-be-sidebar .wns-be-group-menu li.active>a i{color:#fff}.wns-be-sidebar .has-sub span.extra-icon{display:inline-block;float:right;padding:4px 7px 4px;margin-left:4px;margin-right:10px;font-family:sans-serif;font-size:9px;font-weight:600;line-height:9px;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;border:0 solid transparent}.wns-be-sidebar .has-sub span.extra-icon i{margin-left:-3px;margin-top:2px;color:#bac6d0;font-size:10px}.wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:10px;font-size:10px}.wns-be-sidebar .wns-be-group-menu li.active>a span.extra-icon i{margin-top:1px}.wns-be-container #wns-be-footer{border-top:1px solid #dedede;z-index:999;padding:25px 20px 20px;background:#fafafa!important;height:44px;text-align:right}.wns-be-container #wns-be-content{padding:5px 40px 40px}.wns-be-container #wns-be-infobar{background:#fff;border-bottom:1px solid #dedede;padding:20px;text-align:right;box-shadow:inset 0 1px 0 #fcfcfc;height:79px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;position:relative}.wns-be-container #wns-be-infobar:before{content:"";width:261px;height:78px;display:block;position:absolute;left:0;top:0;background:#fff url(../img/webnus-logo.png) no-repeat center;border-bottom:1px solid #dedede;background-size:220px;z-index:997}.wns-be-container .notice-yellow{margin:0;border-bottom:1px solid #dedede;background-color:#fcf8e3;color:#c09853;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}.wns-be-container .notice-red,.wns-be-container .wns-be-field-errors{margin:0;border-bottom:1px solid #dedede;background-color:#f2dede;color:#b94a48;padding:8px 35px 8px 14px;text-shadow:0 1px 0 rgba(255,255,255,.5)}body.post-type-mec-events th.column-primary{width:35%}body.post-type-mec-events th.column-start_date{width:100px}body.post-type-mec-events th.column-end_date{width:100px}body.post-type-mec-events th.column-repeat{width:75px}body.post-type-mec-events th.column-author{width:150px}body.post-type-mec-books th.column-primary{width:20%}body.post-type-mec-books th.column-event{width:170px}body.post-type-mec-books th.column-bdate{width:120px}body.post-type-mec-books th.column-confirmation{width:120px}body.post-type-mec-books th.column-verification{width:120px}body.post-type-mec-books th.column-author{width:150px}.mec-meta-box-labels-container .mec-form-row{height:100px;overflow:auto}.mec-tooltip{display:inline;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-tooltip:last-child{margin-right:0}.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-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-tooltip .dashicons-before:before{font-size:24px;color:#008aff;line-height:37px}.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-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{position:relative;min-height:1px;padding:0;margin:0 1% 0 0}@media (min-width:783px){.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{float:left}.mec-col-12{width:99%}.mec-col-11{width:90.66666667%}.mec-col-10{width:82.33333333%}.mec-col-9{width:74%}.mec-col-8{width:65.66666667%}.mec-col-7{width:57.33333333%}.mec-col-6{width:49%}.mec-col-5{width:40.66666667%}.mec-col-4{width:32.33333333%}.mec-col-3{width:24%}.mec-col-2{width:15.66666667%}.mec-col-1{width:7.33333333%}}#mec_reg_form_fields{background:#eee;padding:20px}#mec_reg_form_fields li{margin:4px;border-radius:2px;padding:20px 34px 24px;background:#fff;position:relative;transition:all .3s ease}#mec_reg_form_fields li ul{padding-top:15px;padding-bottom:15px;margin:1px}#mec_reg_form_fields li ul li{padding:7px 30px 7px 46px}#mec_reg_form_fields span.mec_reg_field_type{font-size:11px;font-weight:600;color:#8a8a8a;text-transform:uppercase;letter-spacing:2px}#mec_reg_form_fields span.mec_reg_field_option_sort,#mec_reg_form_fields span.mec_reg_field_remove,#mec_reg_form_fields span.mec_reg_field_sort{font-size:0;color:#fff}#mec_reg_form_fields span.mec_reg_field_remove{position:absolute;right:0;top:0}#mec_reg_form_fields span.mec_reg_field_option_sort:before,#mec_reg_form_fields span.mec_reg_field_remove:before,#mec_reg_form_fields span.mec_reg_field_sort:before{position:absolute;left:10px;top:20px;width:80px;height:20px;display:block;cursor:move;font-family:simple-line-icons;content:"\e023";font-size:18px;color:#888}#mec_reg_form_fields span.mec_reg_field_remove:before{content:"\e082";width:20px;height:20px;left:auto;right:15px;color:#f96666;cursor:pointer}#mec_reg_form_fields span.mec_reg_field_option_sort:before{font-size:13px;left:2px;top:23px;width:14px;height:14px}#mec_reg_form_fields li ul li span.mec_reg_field_remove{right:auto;left:60px;top:2px}#mec_reg_form_fields p.mec_reg_field_options{margin:6px 0 8px}#mec_reg_form_fields input[type=number],#mec_reg_form_fields input[type=text],#mec_reg_form_fields select,#mec_reg_form_fields textarea{min-width:260px;min-height:34px;margin-bottom:7px;margin-top:7px}#mec_reg_form_fields textarea{min-height:66px}#mec_reg_form_field_types button,#mec_reg_form_fields button{position:relative;outline:0;background:#fff;border:1px solid #e2e2e2;border-radius:50px;padding:11px 21px 11px 31px;line-height:1;font-size:11px;font-weight:600;color:#444;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 0 3px rgba(0,0,0,.03)}#mec_reg_form_field_types button:hover,#mec_reg_form_fields button:hover{border-color:#008aff;box-shadow:0 0 7px rgba(0,0,0,.1)}#mec_reg_form_field_types button:before,#mec_reg_form_fields button:before{position:absolute;left:12px;color:#008aff;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_reg_form_field_types button.red:hover,#mec_reg_form_fields button.red:hover{border-color:red;box-shadow:0 0 7px rgba(0,0,0,.1)}#mec_reg_form_field_types button.red:before,#mec_reg_form_fields button.red:before{position:absolute;left:12px;color:red;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}@media (max-width:768px){#mec_reg_form_fields input[type=number],#mec_reg_form_fields input[type=text],#mec_reg_form_fields select,#mec_reg_form_fields textarea{min-width:80px;width:100%}}.mec-form-row{margin:0 auto 10px}.mec-options-fields{padding-top:25px;overflow:hidden;animation:fadeEffect 1s}#mec_notifications_form .mec-options-fields,#mec_settings_form .mec-options-fields{display:none}.mec-options-fields.active{display:block!important}@keyframes fadeEffect{from{opacity:0}to{opacity:1}}.mec-form-row:after,.mec-form-row:before{content:" ";display:table}.mec-form-row:after{clear:both}.mec-form-row input[type=number],.mec-form-row input[type=text],.mec-form-row select{height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;box-shadow:none;border-radius:2px;box-shadow:inset 0 1px 5px rgba(0,0,0,.05)}.mec-form-row input[type=radio]{margin:5px 0}.mec-form-row select{margin-top:1px}.mec-book-status-form select{display:block;width:99%;margin-top:10px;margin-bottom:10px}.mec-form-row label{margin:10px 0}.mec-form-row input[type=checkbox]{background-color:#fafafa;border:1px solid #cacece;box-shadow:0 1px 2px rgba(0,0,0,.05),inset 0 -15px 10px -12px rgba(0,0,0,.05);padding:9px;border-radius:3px;min-width:20px;min-height:20px;display:inline-block}.mec-form-row input[type=checkbox]:checked{box-shadow:0 3px 11px -4px #008aff;border-color:#008aff;background:#fff}.mec-form-row input[type=checkbox]:checked:before{color:#008aff;width:20px;font:400 24px/1 dashicons}.mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select{width:75%}.mec-form-row .description{display:inline-block;border-left:1px dashed #ccc;margin-left:12px;line-height:26px;padding-left:12px;color:#555}.mec-form-row .time-dv{font-size:14px;font-weight:700}.mec-meta-box-fields{margin:30px 10px}.mec-meta-box-fields>.mec-meta-box-fields{margin-left:0}.mec-meta-box-fields .mec-title{margin:5px 0}.mec-meta-box-fields h4.mec-title{margin:40px 0 16px}.mec-meta-box-fields .mec-dashicons{font-size:20px;line-height:22px;color:#008aff}.mec-form-row .mec-box,.mec-meta-box-fields .mec-box{background:#f7f7f7;padding:10px;margin:10px 0;border-radius:2px;border:1px solid #e6e6e6}.mec-form-row .mec-box{max-width:960px}.mec-form-row .mec-box .button,.mec-meta-box-fields .mec-box .button{float:right}#mec_gateways_form .mec-form-row:first-child,#mec_notifications_form_container .mec-form-row:nth-child(2){overflow:hidden}#mec_gateways_form .mec-tooltip{float:right}.mec-container{background:#fff;padding:15px}.nav-tab-active{background:#fff;border-bottom:1px solid #fff}#mec_social_networks .mec-form-row{margin-bottom:0}#mec_gateways_form h4,.mec-meta-box-fields h4,.mec-options-fields h4,h4.mec-form-subtitle{text-transform:capitalize;border-bottom:1px solid #e5e5e5;padding-bottom:6px;margin:40px 0 16px;font-size:15px;font-weight:600}#mec_gateways_form h4{margin-bottom:0}#mec_styles_form #mec_styles_CSS{height:200px;margin-bottom:5px;font-family:Consolas,Monaco,monospace;font-size:13px;width:97%;background:#f9f9f9;outline:0}#mec_calendar_filter .description,#mec_styles_form .description{max-width:500px;display:block;margin:0 0 5px 0;padding:0;border:none}.mec-sed-methods li{display:inline-block;padding:8px 12px;border:1px solid #ddd;margin:0 5px 5px 0;cursor:pointer;border-radius:3px;box-shadow:0 2px 15px -2px rgba(0,0,0,.1)}.mec-sed-methods li:hover{border-color:#008aff}.mec-sed-methods li.active{border-color:#008aff;background-color:#fff;color:#008aff;font-weight:600;cursor:default;box-shadow:0 0 8px rgba(1,138,255,.5) inset}.mec-switcher input+label{display:block;position:relative;cursor:pointer;outline:0;padding:2px;width:38px;height:22px;background-color:#ddd;border-radius:60px}.mec-switcher input:checked+label{background-color:#008aff;box-shadow:0 3px 22px -6px #008aff}.mec-switcher input:checked+label:after{margin-left:16px}#mec_gateways_form input[type=text],#mec_gateways_form select,#mec_gateways_form textarea{width:calc(100% - 30px)}#mec_gateways_form textarea{min-height:65px}#mec_gateways_form li .mec-gateway-options-form{padding:15px 20px;background-color:#f7f7f7;border-left:6px solid #e3e3e3;margin-bottom:20px}#mec_notifications_form label{display:inline-block;min-width:160px}#mec_notifications_form input[type=text],#mec_notifications_form select{min-width:300px}@media (max-width:536px){#mec_notifications_form input[type=text],#mec_notifications_form select{min-width:100%}}#mec_notifications_form .wp-editor-container{margin-bottom:45px}#mec_notifications_form ul li:last-child .wp-editor-container{margin-bottom:0}#mec_messages_form_container ul li label{display:block;font-weight:700}#mec_messages_form_container ul li input{display:block;width:100%}.mec-message-categories li.mec-acc-label{font-size:18px;font-weight:700;padding:10px;cursor:pointer;background-color:#f1f1f1;border:1px solid #ccc}.mec-message-categories ul{margin:15px 5px}.webnus-icons-list li{width:40px;display:inline-block;list-style:none;padding:0}.webnus-icons-list input{visibility:hidden;margin:0;padding:0;width:1px;height:1px;-moz-opacity:0;-khtml-opacity:0;opacity:0;cursor:pointer}.webnus-icons-list li label{color:#777;display:inline-block!important;float:none!important;width:33px!important;text-align:center;font-size:23px!important;font-weight:400!important;padding:5px 0!important;border:1px solid #eee!important}.mec-webnus-icon{float:left;margin-right:10px}.mec-webnus-icon i{font-size:24px;color:#222}.mec-accordion ul{display:none}.mec-switcher input{position:absolute;margin-left:-9999px;visibility:hidden}.mec-switcher input+label{display:block;position:relative;cursor:pointer;outline:0;padding:2px;width:50px;height:22px;background-color:#ddd;border-radius:60px}.mec-switcher input+label:after,.mec-switcher input+label:before{display:block;position:absolute;top:1px;left:1px;bottom:1px;content:""}.mec-switcher input+label:before{right:1px;background-color:#f1f1f1;border-radius:60px;transition:background .4s}.mec-switcher input+label:after{width:24px;background-color:#fff;border-radius:100%;box-shadow:0 2px 3px rgba(0,0,0,.1);transition:margin .4s}.wns-be-group-tab .mec-switcher input[value="1"]+label,.wns-be-group-tab .mec-switcher input[value="1"]+label:before{background-color:#008aff;box-shadow:0 3px 22px -7px #008aff}.wns-be-group-tab .mec-switcher input[value="1"]+label:after{margin-left:28px}.mec-switcher input:checked+label{background-color:#008aff}.mec-switcher input:checked+label:before{background-color:#008aff}.mec-switcher input:checked+label:after{margin-left:28px}.mec-switcher label{display:block}.mec-sed-methods li{display:inline-block;padding:10px;border:1px solid #ddd;margin:0 5px 5px 0;cursor:pointer}#wpwrap .mec-button-primary{border-bottom:none;letter-spacing:.5px;line-height:18px;height:46px;transition:all .5s ease;color:#fff;padding:12px 25px;display:block;text-align:center;font-size:14px;background:0 0;background-color:#008aff;text-shadow:none;border:0;box-shadow:none;display:inline-block;margin:25px 0 12px;min-width:146px}#wpwrap .mec-button-primary:hover{background-color:#41c9de}#wpwrap .mec-button-primary.loading{background-color:#73c02a}#wpwrap .mec-button-primary:before{content:"\f00c";font-family:fontawesome;margin-right:4px;font-size:16px;display:none}#wpwrap .mec-button-primary.loading:before{display:inline-block}.mec-image-select-wrap{clear:both;overflow:hidden;padding:10px 0;margin:0}.mec-image-select-wrap li{float:left;display:block;margin-right:15px;margin-bottom:15px}.mec-image-select-wrap li input{display:none}.mec-image-select-wrap li span{width:35px;height:35px;display:block;border:3px solid transparent}.mec-image-select-wrap li input:checked+span{border-color:#e3e3e3}.mec-image-select-wrap li input:checked+span:after{content:"\f00c";font-family:fontawesome;font-size:20px;display:inline-block;color:#fff;padding:8px;max-width:100%;max-height:100%}.mec-image-select-wrap .mec-colorskin-1{background-color:#008aff}.mec-image-select-wrap .mec-colorskin-2{background-color:#0093d0}.mec-image-select-wrap .mec-colorskin-3{background-color:#e53f51}.mec-image-select-wrap .mec-colorskin-4{background-color:#f1c40f}.mec-image-select-wrap .mec-colorskin-5{background-color:#e64883}.mec-image-select-wrap .mec-colorskin-6{background-color:#45ab48}.mec-image-select-wrap .mec-colorskin-7{background-color:#9661ab}.mec-image-select-wrap .mec-colorskin-8{background-color:#0aad80}.mec-image-select-wrap .mec-colorskin-9{background-color:#0ab1f0}.mec-image-select-wrap .mec-colorskin-10{background-color:#ff5a00}.mec-image-select-wrap .mec-colorskin-11{background-color:#c3512f}.mec-image-select-wrap .mec-colorskin-12{background-color:#55606e}.mec-image-select-wrap .mec-colorskin-13{background-color:#fe8178}.mec-image-select-wrap .mec-colorskin-14{background-color:#7c6853}.mec-image-select-wrap .mec-colorskin-15{background-color:#bed431}.mec-image-select-wrap .mec-colorskin-16{background-color:#2d5c88}.mec-image-select-wrap .mec-colorskin-17{background-color:#77da55}.mec-image-select-wrap .mec-colorskin-18{background-color:#2997ab}.mec-image-select-wrap .mec-colorskin-19{background-color:#734854}.mec-image-select-wrap .mec-colorskin-20{background-color:#a81010}.mec-image-select-wrap .mec-colorskin-21{background-color:#4ccfad}.mec-image-select-wrap .mec-colorskin-22{background-color:#3a609f}@media screen and (max-width:782px){.mec-form-row .description{max-width:500px;display:block;margin:0 0 5px 0;padding:0;border:none}.mec-col-1,.mec-col-10,.mec-col-11,.mec-col-12,.mec-col-2,.mec-col-3,.mec-col-4,.mec-col-5,.mec-col-6,.mec-col-7,.mec-col-8,.mec-col-9{margin-bottom:5px;display:block}.mec-form-row .mec-box .button,.mec-meta-box-fields .mec-box .button{float:left}.mec-form-row .time-dv{padding:0 4px}.mec-form-row .mec-col-4 input[type=text],.mec-form-row .mec-col-4 select{width:auto;min-width:192px}.mec-tooltip .dashicons-before:before{font-size:32px}}#frmb-0-clear-all,#frmb-0-save,#frmb-0-view-data{display:none}#mec_sn_googlecal{margin-bottom:0}#mec_fee_row1 .button{margin-right:10px}h4.mec-form-subtitle{font-size:15px;margin-top:0}#webnus-dashboard *{box-sizing:border-box}#webnus-dashboard.about-wrap{max-width:1240px;margin:25px auto 20px}#webnus-dashboard .change-log{word-wrap:break-word}#webnus-dashboard .welcome-head img{border:none}.w-welcome{position:relative;margin-top:30px;margin-bottom:10px}.w-box{position:relative;background:#fff;padding:5px 25px;margin-top:30px}.w-theme-version{box-shadow:0 3px 30px -4px #40d8f0;text-shadow:none;background:#40d8f0;background:linear-gradient(95deg,#40d8f0 0,#2dd1ea 50%,#13cbe8 100%);text-align:center;display:block;padding:10px 0;color:#fff;font-weight:600;margin-top:10px;border-radius:2px}.w-box{padding:0;min-height:310px;box-shadow:0 1px 16px rgba(0,0,0,.034);border-radius:2px}.w-box-head{font-weight:600;padding:20px 72px;position:relative;border-bottom:2px solid #008aff;font-size:20px}.w-box-head span{position:absolute;left:0;padding:0 25px;line-height:58px;background:#008aff;height:100%;top:0;color:#fff}.w-box-child,.w-box-content{padding:18px;line-height:24px;font-size:14px}.mec-count-child{width:50%;margin:0 auto}#webnus-dashboard .w-button a{color:#fff!important;border-radius:0;padding:10px 24px;font-size:12px;letter-spacing:1px;font-weight:600;background:#008aff;margin:10px 0;display:inline-block;text-transform:uppercase}#webnus-dashboard .w-box .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)}.w-system-info{margin-bottom:7px}.w-system-info:first-child{margin-top:20px}.w-system-info>span{display:inline-block;min-width:145px;line-height:20px;font-size:13px}#webnus-dashboard .w-current{min-width:110px}#webnus-dashboard .w-min{min-width:65px}.w-icon{color:#fff;padding:3px;border-radius:4px;margin-right:10px;vertical-align:middle}.w-icon-green{background:#27ae60}.w-icon-red{background:#e74c3c}.extra .w-box-head{padding:20px;border-bottom:1px solid #ededed}.doc .w-box-head{color:#4cbf67}#webnus-dashboard .doc .w-button a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);margin:35px 0 17px;box-shadow:0 5px 10px -5px #4cbf67;background-color:#fff}#webnus-dashboard .support .w-button a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);margin:13px 0 18px;box-shadow:0 5px 10px -5px #ff876c}.doc .w-box-content{background:url(../img/document.png) no-repeat right center}.doc .w-box-content p,.w-box.support .w-box-content p{width:54%;color:#666;margin-top:10px;max-width:380px}.w-box-child p{color:#666;margin-top:10px}.w-box.support{background:#fff url(../img/support.png) no-repeat top right}.w-box.support .w-box-head{width:50%;color:#ff876c}.w-box-content pre{text-align:left;background:#f5f5f5;font-size:13px;padding:20px 25px;height:480px;overflow-y:scroll}.w-box.change-log .w-box-head{color:#01c6d9}#webnus-dashboard .button:not(.mec-intro-section-link-tag){border:0;background:0 0;box-shadow:none;color:#e74c3c;font-weight:700}.w-box .state{position:absolute;top:0;left:-100vw}#webnus-dashboard .button:hover{color:#222}.w-box .state:checked~.content{-webkit-transform:none;-ms-transform:none;transform:none}.w-box .state:checked~.backdrop{bottom:0;opacity:1;z-index:1}.w-box .lightbox{position:fixed;top:0;right:0;left:0;height:0;padding:0 20px}.w-box .lightbox .content{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;overflow:hidden;position:relative;z-index:2;max-width:500px;max-height:95vh;margin:20px auto;padding:20px;background:#fff;-webkit-transform:translateY(-200%);-ms-transform:translateY(-200%);transform:translateY(-200%);-webkit-transition:.3s -webkit-transform ease-in-out;transition:.3s transform ease-in-out;border:1px solid rgba(0,0,0,.1)}.w-box .lightbox .main{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.w-box .lightbox .backdrop{position:fixed;z-index:-1;top:0;right:0;bottom:100%;left:0;opacity:0;background:rgba(0,0,0,.3);-webkit-transition:.3s opacity ease-in-out;transition:.3s opacity ease-in-out}.content .main p{color:#bf3737}p.mec_dash_count{font-size:60px;font-weight:600;margin:0;color:#01c6d9}.w-col-sm-3 .w-box.doc{text-align:center;min-height:auto}.w-Knowledgebase{color:#8e5cea}.mec-view-all-articles a{margin:30px 0 17px;display:inline-block;color:#fff!important;border-radius:0;padding:10px 24px;font-size:12px;letter-spacing:1px;font-weight:600;background:#8e5cea;display:inline-block;text-transform:uppercase;transition:all .24s ease;-webkit-transition:all .24s ease}.mec-view-all-articles a:hover{background-color:#222}.w-box.upcoming-events .mec-event-article{margin-bottom:22px;border-bottom:1px solid #eee;padding-bottom:16px}.w-box.upcoming-events .mec-event-article .mec-event-date{font-size:14px;color:#666}.w-box.upcoming-events .mec-event-article .mec-event-date span{font-weight:600;margin-right:4px}.w-box.upcoming-events .mec-event-article h4.mec-event-title{margin:0;font-size:15px}.w-box.upcoming-events .mec-event-article .mec-event-detail{font-size:13px;color:#999}.w-box.upcoming-events .mec-event-article .mec-detail-button{font-size:10px;font-weight:600;letter-spacing:1px;padding:4px 12px;background:#f2f2f2;float:right}.w-box.total-bookings ul li{display:inline-block;padding:4px 12px;background:#f1f1f1;margin-right:5px;border-radius:3px}.w-box.total-bookings ul li.selected{background:#fff;border:1px solid #e9e9e9}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px}.info-msg{color:#059;background-color:#bef}.info-msg-link{background:#fff;padding:4px 12px 6px;border-radius:3px;line-height:1;font-weight:600;color:#008aff}.mec-success{color:#270;background-color:#dff2bf}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-certain-day>div,.mec-select-deselect-actions li,.mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-xi-google-import-events .mec-select-deselect-actions li{display:inline-block;position:relative;outline:0;background:#fff;border:1px solid #e2e2e2;border-radius:50px;padding:11px 21px 11px 21px;line-height:1;font-size:11px;font-weight:600;color:#444;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 0 3px rgba(0,0,0,.03)}.mec-certain-day>div:hover,.mec-select-deselect-actions li:hover,.mec-xi-facebook-import-events .mec-select-deselect-actions li:hover,.mec-xi-google-import-events .mec-select-deselect-actions li:hover{border-color:#008aff;box-shadow:0 0 7px rgba(0,0,0,.1)}.mec-not-in-days-remove{border:1px solid #f99170;border-radius:20px;padding:0 0 0 2px;color:#f99170}.mec-xi-facebook-import-events .mec-success,.mec-xi-google-import-events .mec-success{width:460px}.mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-xi-google-import-events .mec-select-deselect-actions li{display:inline-block;cursor:pointer}.lity-content>div{overflow:auto}.mce-mec-mce-items{text-transform:capitalize!important}#mec_setting_contextual li{list-style:none!important;font-size:12px;margin:0;padding:6px}.mec-bbf-field-container{margin-bottom:10px}.mec-bbf-field-container label{display:block}.kc-components ul.kc-components-list li .cpicon.mec-kingcomposer-icon,.kc-element-icon .cpicon.mec-kingcomposer-icon{background:url(../img/ico-mec-vc.png) no-repeat center center;background-size:auto;background-repeat:no-repeat}.mec-archive-skinsm.mec-category-skins,.mec-carousel-archive-link,.mec-carousel-head-text,.mec-toggle-month-divider{display:none}span.mec-archive-skins,span.mec-category-skins{margin-left:10px;vertical-align:text-bottom}.mec-archive-skins input,.mec-archive-skins select,.mec-category-skins input,.mec-category-skins select{min-width:225px;vertical-align:baseline}#mec_settings_default_skin_archive,#mec_settings_default_skin_category{min-width:225px}.w-welcome p span{background:#fff;padding:4px 10px}#mec_masonry_skin_options_container .mec-form-row .description{margin-left:0;padding-left:0;border:none;margin-top:-4px}@media (max-width:1280px){span.mec-archive-skins,span.mec-category-skins{margin-left:0}}/*!
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}@-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}}.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_settings_form .mec-options-fields{padding-bottom:150px!important}#mec_taxes_fees_container_toggle{margin-bottom:60px}#mec_settings_form .mec-options-fields{padding-bottom:150px!important}#mec_taxes_fees_container_toggle{margin-bottom:60px}.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}}
assets/css/frontend.css CHANGED
@@ -2659,6 +2659,10 @@
2659
  margin-left: 15px;
2660
  }
2661
 
 
 
 
 
2662
  .mec-single-event .mec-book-form-gateway-checkout button {
2663
  margin-left: 0;
2664
  }
@@ -4593,6 +4597,19 @@ address.mec-events-address {
4593
  top: -1px !important;
4594
  }
4595
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4596
  /* MEC Events - Calendar Daily
4597
  -------------------------------- */
4598
  .mec-calendar.mec-calendar-daily .mec-calendar-day-events .mec-event-article {
@@ -5413,6 +5430,26 @@ li.mec-no-event-found .mec-event-title {
5413
  font-size: 15px;
5414
  }
5415
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5416
  .mec-fes-list ul li .mec-fes-event-view,
5417
  .mec-fes-list ul li .mec-fes-event-remove {
5418
  font-size: 11px;
@@ -5480,6 +5517,17 @@ li.mec-no-event-found .mec-event-title {
5480
  display: block;
5481
  }
5482
 
 
 
 
 
 
 
 
 
 
 
 
5483
  .mec-fes-form input[type=text],
5484
  .mec-fes-form input[type=number],
5485
  .mec-fes-form input[type=email],
@@ -5835,6 +5883,124 @@ li.mec-no-event-found .mec-event-title {
5835
  }
5836
  }
5837
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5838
  /* Cal search form */
5839
  .mec-search-form {
5840
  padding: 20px 10px;
@@ -9031,6 +9197,17 @@ li.mec-no-event-found .mec-event-title {
9031
  }
9032
  }
9033
 
 
 
 
 
 
 
 
 
 
 
 
9034
 
9035
  /* MEC Weather widget
9036
  -------------------------------- */
@@ -11640,4 +11817,17 @@ ul.mec-weekly-view-dates-events article:before,
11640
  padding-left: 20px;
11641
  }
11642
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11643
  /* --------------------- */
2659
  margin-left: 15px;
2660
  }
2661
 
2662
+ .mec-single-event .mec-book-form-coupon button {
2663
+ margin-left: 0;
2664
+ }
2665
+
2666
  .mec-single-event .mec-book-form-gateway-checkout button {
2667
  margin-left: 0;
2668
  }
4597
  top: -1px !important;
4598
  }
4599
 
4600
+ @media (max-width:780px) {
4601
+ .mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4 {
4602
+ word-break: break-all;
4603
+ font-size: 13px;
4604
+ }
4605
+ }
4606
+
4607
+ @media (max-width:320px) {
4608
+ .mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4 {
4609
+ font-size: 10px;
4610
+ }
4611
+ }
4612
+
4613
  /* MEC Events - Calendar Daily
4614
  -------------------------------- */
4615
  .mec-calendar.mec-calendar-daily .mec-calendar-day-events .mec-event-article {
5430
  font-size: 15px;
5431
  }
5432
 
5433
+ .mec-fes-list .mec-event-status
5434
+ {
5435
+ color:#fff !important;
5436
+ border-color: transparent !important;
5437
+ }
5438
+ .mec-fes-list .mec-book-confirmed, .mec-fes-form .mec-book-confirmed{
5439
+ background: #50d477 !important;
5440
+ }
5441
+
5442
+ .mec-fes-list .mec-book-pending, .mec-fes-form .mec-book-pending {
5443
+ background: #fcbe69 !important;
5444
+ }
5445
+
5446
+ .mec-fes-list .mec-book-rejected, .mec-fes-form .mec-book-rejected{
5447
+ background: #fe686a !important;
5448
+ }
5449
+ .mec-fes-list .mec-book-other, .mec-fes-form .mec-book-other {
5450
+ background: #40d9f1 !important;
5451
+ }
5452
+
5453
  .mec-fes-list ul li .mec-fes-event-view,
5454
  .mec-fes-list ul li .mec-fes-event-remove {
5455
  font-size: 11px;
5517
  display: block;
5518
  }
5519
 
5520
+ .mec-fes-form .post-status
5521
+ {
5522
+ float: right !important;
5523
+ margin: 0px 5px;
5524
+ color: #fff;
5525
+ padding: 0px 10px;
5526
+ border-radius: 12px;
5527
+ font-style: italic;
5528
+ font-size: 18px;
5529
+ }
5530
+
5531
  .mec-fes-form input[type=text],
5532
  .mec-fes-form input[type=number],
5533
  .mec-fes-form input[type=email],
5883
  }
5884
  }
5885
 
5886
+ @media (min-width:961px) and (max-width:1200px) {
5887
+
5888
+ .mec-full-calendar-wrap .mec-totalcal-box {
5889
+ padding: 20px 20px;
5890
+ }
5891
+
5892
+ .mec-full-calendar-wrap .mec-totalcal-box .col-md-2 {
5893
+ width: 50%;
5894
+ }
5895
+
5896
+ .mec-full-calendar-wrap .mec-totalcal-box .col-md-2,
5897
+ .mec-full-calendar-wrap .mec-totalcal-box .col-md-3,
5898
+ .mec-full-calendar-wrap .mec-totalcal-box .col-md-4 {
5899
+ padding-bottom: 20px !important;
5900
+ }
5901
+
5902
+ .mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select {
5903
+ min-width: calc(100% - 36px);
5904
+ }
5905
+
5906
+ .mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select {
5907
+ min-width: calc(30% - 10px);
5908
+ }
5909
+
5910
+ .mec-full-calendar-wrap .mec-totalcal-box .col-md-3:last-child select {
5911
+ min-width: calc(50% - 19px);
5912
+ }
5913
+
5914
+ .mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view {
5915
+ margin-right: 10px;
5916
+ }
5917
+
5918
+ .mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span {
5919
+ font-size: 10px;
5920
+ text-align: center;
5921
+ }
5922
+
5923
+ }
5924
+
5925
+ @media (max-width:960px) {
5926
+
5927
+ .mec-full-calendar-wrap .mec-totalcal-box {
5928
+ padding: 20px 20px;
5929
+ }
5930
+
5931
+ .mec-full-calendar-wrap .mec-totalcal-box .col-md-2 {
5932
+ width: 50%;
5933
+ }
5934
+
5935
+ .mec-full-calendar-wrap .mec-totalcal-box .col-md-2,
5936
+ .mec-full-calendar-wrap .mec-totalcal-box .col-md-3,
5937
+ .mec-full-calendar-wrap .mec-totalcal-box .col-md-4 {
5938
+ padding-bottom: 10px !important;
5939
+ }
5940
+
5941
+ .mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select {
5942
+ min-width: calc(100% - 36px);
5943
+ margin-bottom: 10px;
5944
+ }
5945
+
5946
+ .mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view {
5947
+ margin-right: 10px;
5948
+ }
5949
+
5950
+ .mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span {
5951
+ font-size: 10px;
5952
+ text-align: center;
5953
+ }
5954
+
5955
+ .mec-full-calendar-wrap .mec-totalcal-box .col-md-2 {
5956
+ width: 100%;
5957
+ }
5958
+
5959
+ .mec-full-calendar-wrap .mec-totalcal-box .col-md-4 {
5960
+ position: absolute;
5961
+ top: 20px;
5962
+ }
5963
+
5964
+ }
5965
+
5966
+ @media (min-width:780px) and (max-width:960px) {
5967
+
5968
+ .mec-full-calendar-wrap .mec-totalcal-box .col-md-4 {
5969
+ position: absolute;
5970
+ top: 20px;
5971
+ }
5972
+
5973
+ }
5974
+
5975
+ @media(max-width:780px) {
5976
+
5977
+ .mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{
5978
+ width: calc(50% - 18px) !important;
5979
+ }
5980
+
5981
+ .mec-full-calendar-wrap .mec-totalcal-box .col-md-4 {
5982
+ position: unset;
5983
+ padding-right: 0;
5984
+ }
5985
+
5986
+ .mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span {
5987
+ min-width: 20%;
5988
+ text-align: center;
5989
+ font-size: 12px;
5990
+ }
5991
+
5992
+ }
5993
+
5994
+ @media(max-width:480px) {
5995
+
5996
+ .mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span {
5997
+ min-width: 20%;
5998
+ text-align: center;
5999
+ font-size: 10px;
6000
+ }
6001
+
6002
+ }
6003
+
6004
  /* Cal search form */
6005
  .mec-search-form {
6006
  padding: 20px 10px;
9197
  }
9198
  }
9199
 
9200
+ @media(min-width: 961px) {
9201
+ .mec-timetable-col-7 {
9202
+ width: 14.28%;
9203
+ }
9204
+
9205
+ .mec-timetable-col-6 {
9206
+ width: 16.6666%;
9207
+ }
9208
+ }
9209
+
9210
+
9211
 
9212
  /* MEC Weather widget
9213
  -------------------------------- */
11817
  padding-left: 20px;
11818
  }
11819
 
11820
+ /* Notification single builder */
11821
+ .mec-content-notification a {
11822
+ margin-left: 5px;
11823
+ }
11824
+ .mec-content-notification {
11825
+ background: #f7f7f7;
11826
+ padding: 10px 10px 10px;
11827
+ border: 1px solid #e8e8e8;
11828
+ }
11829
+ .mec-content-notification p {
11830
+ margin-bottom: 0;
11831
+ }
11832
+
11833
  /* --------------------- */
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}.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{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-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-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:auto;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:16px;margin:0}.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple{border-bottom:1px solid #e2e2e2;padding:14px 0;display:block}.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}.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 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 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}@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%}}.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-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%}}@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:700px;background:#fff;box-shadow:0 1px 55px rgba(0,0,0,.5)}.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}}.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}.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}.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-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;width:0;height:0}.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}
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}.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{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-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:auto;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:16px;margin:0}.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple{border-bottom:1px solid #e2e2e2;padding:14px 0;display:block}.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}@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:12px}}@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-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%}}@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:700px;background:#fff;box-shadow:0 1px 55px rgba(0,0,0,.5)}.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}.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}.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-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;width:0;height:0}.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}
assets/js/backend.js CHANGED
@@ -73,11 +73,13 @@ jQuery(document).ready(function($)
73
  });
74
 
75
  // MEC image popup switcher
76
- if ($('.mec-sed-method-wrap').length > 0)
77
  {
78
- $('.mec-sed-method-wrap').each(function() {
 
79
  var sed_value = $(this).find('[id*="_sed_method_field"]').val();
80
- if (sed_value == 'm1') {
 
81
  $(this).siblings('.mec-image-popup-wrap').show();
82
  }
83
  });
@@ -141,7 +143,7 @@ jQuery(document).ready(function($)
141
  });
142
 
143
  // MEC Setting Sticky
144
- if ($('.wns-be-container').length > 0)
145
  {
146
  var stickyNav = function () {
147
  var stickyNavTop = $('.wns-be-container').offset().top;
@@ -161,20 +163,25 @@ jQuery(document).ready(function($)
161
  stickyNav();
162
  });
163
 
164
- $("#mec-search-settings").typeWatch({
 
165
  wait: 400, // 750ms
166
- callback: function (value) {
 
167
  var elements = [];
168
- if (!value || value == "") {
169
- //console.log('value');
170
  $('.mec-options-fields').hide();
171
  $('.mec-options-fields').removeClass('active');
172
  $('#general_option.mec-options-fields').show();
173
  $('#general_option.mec-options-fields').addClass('active');
174
  $('.pr-be-group-menu-li').removeClass('active');
175
  $('.wns-be-group-menu-li .subsection .pr-be-group-menu-li:first').addClass('active');
176
- } else {
177
- $("#mec_settings_form .mec-options-fields").filter(function () {
 
 
 
178
  var search_label = $(this).find('label.mec-col-3').text().toLowerCase();
179
  var search_title = $(this).find('h4.mec-form-subtitle').text().toLowerCase();
180
  if ((!search_label || search_label == "") && (!search_title || search_title == "")) {
@@ -187,20 +194,19 @@ jQuery(document).ready(function($)
187
  }
188
  });
189
 
190
- $.each(elements, function (i, searchStr) {
 
191
  searchStr.show();
192
  searchStr.addClass('active')
193
  });
194
  }
195
-
196
  }
197
  });
198
  }
199
 
200
-
201
-
202
  // Import Settings
203
- function CheckJSON(text) {
 
204
  if (typeof text != 'string')
205
  text = JSON.stringify(text);
206
  try {
@@ -210,6 +216,7 @@ jQuery(document).ready(function($)
210
  return false;
211
  }
212
  }
 
213
  $('.mec-import-settings').on('click', function (e) {
214
  e.preventDefault();
215
  var value = $(this).parent().find('.mec-import-settings-content').val();
@@ -355,4 +362,63 @@ function mec_skin_style_changed(skin, style)
355
  {
356
  jQuery('.mec-skin-'+skin+'-date-format-container').hide();
357
  jQuery('#mec_skin_'+skin+'_date_format_'+style+'_container').show();
358
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
73
  });
74
 
75
  // MEC image popup switcher
76
+ if($('.mec-sed-method-wrap').length > 0)
77
  {
78
+ $('.mec-sed-method-wrap').each(function()
79
+ {
80
  var sed_value = $(this).find('[id*="_sed_method_field"]').val();
81
+ if(sed_value == 'm1')
82
+ {
83
  $(this).siblings('.mec-image-popup-wrap').show();
84
  }
85
  });
143
  });
144
 
145
  // MEC Setting Sticky
146
+ if($('.wns-be-container').length > 0)
147
  {
148
  var stickyNav = function () {
149
  var stickyNavTop = $('.wns-be-container').offset().top;
163
  stickyNav();
164
  });
165
 
166
+ $("#mec-search-settings").typeWatch(
167
+ {
168
  wait: 400, // 750ms
169
+ callback: function (value)
170
+ {
171
  var elements = [];
172
+ if (!value || value == "")
173
+ {
174
  $('.mec-options-fields').hide();
175
  $('.mec-options-fields').removeClass('active');
176
  $('#general_option.mec-options-fields').show();
177
  $('#general_option.mec-options-fields').addClass('active');
178
  $('.pr-be-group-menu-li').removeClass('active');
179
  $('.wns-be-group-menu-li .subsection .pr-be-group-menu-li:first').addClass('active');
180
+ }
181
+ else
182
+ {
183
+ $("#mec_settings_form .mec-options-fields").filter(function ()
184
+ {
185
  var search_label = $(this).find('label.mec-col-3').text().toLowerCase();
186
  var search_title = $(this).find('h4.mec-form-subtitle').text().toLowerCase();
187
  if ((!search_label || search_label == "") && (!search_title || search_title == "")) {
194
  }
195
  });
196
 
197
+ $.each(elements, function (i, searchStr)
198
+ {
199
  searchStr.show();
200
  searchStr.addClass('active')
201
  });
202
  }
 
203
  }
204
  });
205
  }
206
 
 
 
207
  // Import Settings
208
+ function CheckJSON(text)
209
+ {
210
  if (typeof text != 'string')
211
  text = JSON.stringify(text);
212
  try {
216
  return false;
217
  }
218
  }
219
+
220
  $('.mec-import-settings').on('click', function (e) {
221
  e.preventDefault();
222
  var value = $(this).parent().find('.mec-import-settings-content').val();
362
  {
363
  jQuery('.mec-skin-'+skin+'-date-format-container').hide();
364
  jQuery('#mec_skin_'+skin+'_date_format_'+style+'_container').show();
365
+ }
366
+
367
+ // TinyMce Plugins
368
+ var items = JSON.parse(mec_admin_localize.mce_items);
369
+ var menu = new Array();
370
+ if(items && typeof tinymce !== 'undefined')
371
+ {
372
+ tinymce.PluginManager.add('mec_mce_buttons', function (editor, url)
373
+ {
374
+ items.shortcodes.forEach(function(e, i)
375
+ {
376
+ menu.push(
377
+ {
378
+ text: items.shortcodes[i]['PN'].replace(/-/g, ' '),
379
+ id: items.shortcodes[i]['ID'],
380
+ classes: 'mec-mce-items',
381
+ onselect: function(e)
382
+ {
383
+ editor.insertContent(`[MEC id="${e.control.settings.id}"]`);
384
+ }
385
+ });
386
+ });
387
+ // Add menu button
388
+ editor.addButton('mec_mce_buttons',
389
+ {
390
+ text: items.mce_title,
391
+ icon: false,
392
+ type: 'menubutton',
393
+ menu: menu
394
+ });
395
+ });
396
+ }
397
+
398
+ // Block Editor
399
+ (function(wp, $)
400
+ {
401
+ if(items && wp && wp.blocks)
402
+ {
403
+ items.shortcodes.forEach(function(e, i)
404
+ {
405
+ wp.blocks.registerBlockType(`mec/blockeditor-${i}`,
406
+ {
407
+ title: items.shortcodes[i]['PN'].toLowerCase().replace(/(^([a-zA-Z\p{M}]))|([ -][a-zA-Z\p{M}])/g, function(s)
408
+ {
409
+ return s.toUpperCase().replace(/-/g,' ');
410
+ }),
411
+ icon: 'calendar-alt',
412
+ category: 'mec.block.category',
413
+ edit: function()
414
+ {
415
+ return `[MEC id="${(items.shortcodes[i]['ID'])}"]`;
416
+ },
417
+ save: function()
418
+ {
419
+ return `[MEC id="${(items.shortcodes[i]['ID'])}"]`;
420
+ }
421
+ });
422
+ });
423
+ }
424
+ })(window.wp, jQuery);
assets/js/frontend.js CHANGED
@@ -1426,9 +1426,6 @@ var mecSingleEventDisplayer = {
1426
  // Initialize Days Slider
1427
  initDaysSlider(settings.month_id);
1428
 
1429
- // Focused on first event day
1430
- FocusDay();
1431
-
1432
  // Search Widget
1433
  if(settings.sf.container !== '')
1434
  {
@@ -2025,10 +2022,24 @@ var mecSingleEventDisplayer = {
2025
  {
2026
  // These are the defaults.
2027
  id: 0,
 
2028
  sf: {}
2029
  }, options);
2030
 
2031
- //console.log(settings);
 
 
 
 
 
 
 
 
 
 
 
 
 
2032
 
2033
  // Set Listeners
2034
  setListeners();
@@ -2042,6 +2053,37 @@ var mecSingleEventDisplayer = {
2042
  }
2043
  }
2044
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2045
  function sed()
2046
  {
2047
  // Single Event Display
@@ -2085,24 +2127,24 @@ var mecSingleEventDisplayer = {
2085
  if (mecdata.elementor_edit_mode == 'no') {
2086
  jQuery(window).load(function () {
2087
  initMasonry();
2088
- if ( typeof custom_dev != undefined && custom_dev == 'yes') {
2089
- $(".mec-wrap").css("height", "2000");
2090
  if (Math.max(document.documentElement.clientWidth, window.innerWidth || 0) < 768) {
2091
- $(".mec-wrap").css("height", "7470");
2092
  }
2093
  if (Math.max(document.documentElement.clientWidth, window.innerWidth || 0) < 480) {
2094
- $(".mec-wrap").css("height", "6780");
2095
  }
2096
- $(".mec-event-masonry.shuffle .mec-masonry-item-wrap:nth-child(n+26)").css("display", "none");
2097
  $(".mec-load-more-button").on("click", function () {
2098
- $(".mec-event-masonry.shuffle .mec-masonry-item-wrap:nth-child(n+26)").css("display", "block");
2099
  $(".mec-wrap").css("height", "auto");
2100
  initMasonry();
2101
  $(".mec-load-more-button").hide();
2102
  })
2103
  $(".mec-events-masonry-cats a:first-child").on("click", function () {
2104
  $(".mec-wrap").css("height", "auto");
2105
- $(".mec-event-masonry.shuffle .mec-masonry-item-wrap:nth-child(n+26)").css("display", "block");
2106
  $(".mec-load-more-button").hide();
2107
  initMasonry();
2108
  })
@@ -2116,7 +2158,11 @@ var mecSingleEventDisplayer = {
2116
  var CustomShuffle = new Shuffle(element, {
2117
  itemSelector: '.mec-masonry-item-wrap',
2118
  });
 
 
 
2119
  CustomShuffle.filter(selector != '*' ? selector : Shuffle.ALL_ITEMS);
 
2120
  })
2121
  }
2122
  });
@@ -2136,6 +2182,10 @@ var mecSingleEventDisplayer = {
2136
  var shuffleInstance = new Shuffle(element, {
2137
  itemSelector: '.mec-masonry-item-wrap',
2138
  });
 
 
 
 
2139
 
2140
  if (settings.masonry_like_grid == 1) {
2141
  shuffleInstance.sort({
1426
  // Initialize Days Slider
1427
  initDaysSlider(settings.month_id);
1428
 
 
 
 
1429
  // Search Widget
1430
  if(settings.sf.container !== '')
1431
  {
2022
  {
2023
  // These are the defaults.
2024
  id: 0,
2025
+ atts: '',
2026
  sf: {}
2027
  }, options);
2028
 
2029
+ // Search Widget
2030
+ if(settings.sf.container !== '')
2031
+ {
2032
+ $(settings.sf.container).mecSearchForm(
2033
+ {
2034
+ id: settings.id,
2035
+ atts: settings.atts,
2036
+ callback: function(atts)
2037
+ {
2038
+ settings.atts = atts;
2039
+ search();
2040
+ }
2041
+ });
2042
+ }
2043
 
2044
  // Set Listeners
2045
  setListeners();
2053
  }
2054
  }
2055
 
2056
+ function search()
2057
+ {
2058
+ var $modal = $('.mec-modal-result');
2059
+
2060
+ // Add Loading Class
2061
+ if($modal.length === 0) $('.mec-wrap').append('<div class="mec-modal-result"></div>');
2062
+ $modal.addClass('mec-month-navigator-loading');
2063
+
2064
+ $.ajax(
2065
+ {
2066
+ url: settings.ajax_url,
2067
+ data: "action=mec_weeklyprogram_load&"+settings.atts+"&apply_sf_date=1",
2068
+ dataType: "json",
2069
+ type: "post",
2070
+ success: function(response)
2071
+ {
2072
+ // Remove Loading Class
2073
+ $modal.removeClass("mec-month-navigator-loading");
2074
+
2075
+ // Append Month
2076
+ $("#mec_skin_events_"+settings.id).html(response.date_events);
2077
+
2078
+ // Set Listeners
2079
+ setListeners();
2080
+ },
2081
+ error: function()
2082
+ {
2083
+ }
2084
+ });
2085
+ }
2086
+
2087
  function sed()
2088
  {
2089
  // Single Event Display
2127
  if (mecdata.elementor_edit_mode == 'no') {
2128
  jQuery(window).load(function () {
2129
  initMasonry();
2130
+ if (typeof custom_dev != undefined && custom_dev == 'yes') {
2131
+ $(".mec-wrap").css("height", "1550");
2132
  if (Math.max(document.documentElement.clientWidth, window.innerWidth || 0) < 768) {
2133
+ $(".mec-wrap").css("height", "5500");
2134
  }
2135
  if (Math.max(document.documentElement.clientWidth, window.innerWidth || 0) < 480) {
2136
+ $(".mec-wrap").css("height", "5000");
2137
  }
2138
+ $(".mec-event-masonry.shuffle .mec-masonry-item-wrap:nth-child(n+20)").css("display", "none");
2139
  $(".mec-load-more-button").on("click", function () {
2140
+ $(".mec-event-masonry.shuffle .mec-masonry-item-wrap:nth-child(n+20)").css("display", "block");
2141
  $(".mec-wrap").css("height", "auto");
2142
  initMasonry();
2143
  $(".mec-load-more-button").hide();
2144
  })
2145
  $(".mec-events-masonry-cats a:first-child").on("click", function () {
2146
  $(".mec-wrap").css("height", "auto");
2147
+ $(".mec-event-masonry.shuffle .mec-masonry-item-wrap:nth-child(n+20)").css("display", "block");
2148
  $(".mec-load-more-button").hide();
2149
  initMasonry();
2150
  })
2158
  var CustomShuffle = new Shuffle(element, {
2159
  itemSelector: '.mec-masonry-item-wrap',
2160
  });
2161
+ CustomShuffle.sort({
2162
+ by: element.getAttribute('data-created'),
2163
+ });
2164
  CustomShuffle.filter(selector != '*' ? selector : Shuffle.ALL_ITEMS);
2165
+ $(".mec-event-masonry.shuffle .mec-masonry-item-wrap").css("visibility", "visible");
2166
  })
2167
  }
2168
  });
2182
  var shuffleInstance = new Shuffle(element, {
2183
  itemSelector: '.mec-masonry-item-wrap',
2184
  });
2185
+
2186
+ shuffleInstance.sort({
2187
+ by: element.getAttribute('data-created'),
2188
+ });
2189
 
2190
  if (settings.masonry_like_grid == 1) {
2191
  shuffleInstance.sort({
changelog.txt CHANGED
@@ -1,4 +1,20 @@
1
- v 4.3.010 June 2019
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  - Added: Booking cancellation notification
3
  - Added: New feature to disable admin notification
4
  - Fixed: Not showing the event when it is on current day and it is not started yet
1
+ v 4.3.117 June 2019
2
+ - Added: "Number of Days" and "Week Start Day" options to clean style of timetable skin
3
+ - Added: Instagram to speakers
4
+ - Added: Search form to the clean style of timetable skin
5
+ - Added: All search options to full calendar skin
6
+ - Added: Event status in Frontend Event Submission views
7
+ - Added: Button in WordPress editor (TinyMCE) to insert shortcodes directly from editor
8
+ - Improved: MEC settings mobile /tablet view
9
+ - Removed: "Google +" social network
10
+ - Fixed: Active day issue on daily view
11
+ - Fixed: Block editor compatibility for category and speaker taxonomies
12
+ - Fixed: Displaying ticket when booking is added from backend
13
+ - Fixed: Title color issue on styling options for all shortcodes
14
+ - Fixed: Additional locations in single event modern skin
15
+ - Fixed: Responsive issue in Monthly view (simple style)
16
+
17
+ v 4.3.0 – 10 June 2019
18
  - Added: Booking cancellation notification
19
  - Added: New feature to disable admin notification
20
  - Fixed: Not showing the event when it is on current day and it is not started yet
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-06-10 15:04+0430\n"
6
- "PO-Revision-Date: 2019-06-10 15:04+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:212
27
  msgid "Content"
28
  msgstr "Inhalt"
29
 
30
- #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:348
31
- #: app/features/mec.php:378 app/features/mec.php:404
32
  msgid "Shortcode"
33
  msgstr "Shortcode"
34
 
@@ -54,7 +54,7 @@ msgstr "Allgemeine Einstellungen"
54
  msgid "Select Type"
55
  msgstr "Alles Auswählen"
56
 
57
- #: app/features/colors.php:50 app/features/fes/form.php:567
58
  #: app/features/mec/settings.php:1195
59
  msgid "Event Color"
60
  msgstr "Farbe der Veranstaltung"
@@ -69,7 +69,7 @@ msgstr "Farbe der Veranstaltung"
69
  msgid "Settings"
70
  msgstr "Einstellungen"
71
 
72
- #: app/features/contextual.php:62 app/features/events.php:1700
73
  #: app/features/mec/gateways.php:33 app/features/mec/ie.php:29
74
  #: app/features/mec/messages.php:33 app/features/mec/notifications.php:32
75
  #: app/features/mec/regform.php:68 app/features/mec/regform.php:131
@@ -113,7 +113,7 @@ msgstr ""
113
 
114
  #: app/features/contextual.php:77 app/features/mec/gateways.php:49
115
  #: app/features/mec/ie.php:45 app/features/mec/messages.php:49
116
- #: app/features/mec/notifications.php:48 app/features/mec/regform.php:83
117
  #: app/features/mec/settings.php:233 app/features/mec/styles.php:49
118
  #: app/features/mec/styling.php:71 app/features/mec/support.php:45
119
  msgid "Notifications"
@@ -244,12 +244,12 @@ msgstr "Nächstes Veranstaltung Modul"
244
  msgid "Frontend Event Submission"
245
  msgstr "Erstellung von Veranstaltungen im Frontend"
246
 
247
- #: app/features/contextual.php:298 app/features/events.php:791
248
  #: app/features/mec/settings.php:150
249
  msgid "Exceptional Days"
250
  msgstr "Herausgenommene Tage "
251
 
252
- #: app/features/contextual.php:308 app/features/events.php:272
253
  #: app/features/mec/settings.php:168 app/features/mec/settings.php:1324
254
  msgid "Booking"
255
  msgstr "Buchung / Reservierung"
@@ -280,9 +280,9 @@ msgid "Events"
280
  msgstr "Veranstaltungen"
281
 
282
  #: app/features/events.php:135
283
- #: app/features/mec/meta_boxes/display_options.php:840
284
- #: app/features/mec/meta_boxes/display_options.php:896
285
- #: app/features/mec/meta_boxes/display_options.php:931
286
  #: app/features/profile/profile.php:28 app/skins/daily_view/tpl.php:80
287
  #: app/skins/monthly_view/tpl.php:71 app/skins/yearly_view/tpl.php:69
288
  msgid "Event"
@@ -318,26 +318,26 @@ msgid "No events found in Trash!"
318
  msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
319
 
320
  #: app/features/events.php:159
321
- #: app/features/mec/meta_boxes/display_options.php:771
322
  #: app/features/mec/meta_boxes/search_form.php:31
323
  #: app/features/mec/meta_boxes/search_form.php:92
324
  #: app/features/mec/meta_boxes/search_form.php:153
325
  #: app/features/mec/meta_boxes/search_form.php:214
326
- #: app/features/mec/meta_boxes/search_form.php:240
327
- #: app/features/mec/meta_boxes/search_form.php:301
328
- #: app/features/mec/meta_boxes/search_form.php:362
329
- #: app/features/mec/meta_boxes/search_form.php:416
330
- #: app/features/mec/meta_boxes/search_form.php:477
331
- #: app/features/mec/meta_boxes/search_form.php:538 app/libraries/main.php:4376
332
- #: app/libraries/skins.php:775 app/skins/single/default.php:167
333
  #: app/skins/single/default.php:378 app/skins/single/m1.php:170
334
- #: app/skins/single/m2.php:102 app/skins/single/modern.php:109
335
  msgid "Category"
336
  msgstr "Kategorie"
337
 
338
- #: app/features/events.php:160 app/features/fes/form.php:519
339
  #: app/features/mec.php:317 app/features/mec/meta_boxes/filter.php:70
340
- #: app/libraries/main.php:4375
341
  msgid "Categories"
342
  msgstr "Kategorien"
343
 
@@ -397,57 +397,57 @@ msgstr "Beliebt %s"
397
  msgid "Search %s"
398
  msgstr "Suche %s"
399
 
400
- #: app/features/events.php:200 app/features/events.php:219
401
  msgid "Category Icon"
402
  msgstr "Kategoriesymbol"
403
 
404
- #: app/features/events.php:202 app/features/events.php:223
405
  msgid "Select icon"
406
  msgstr "Wählen Sie ein Symbol"
407
 
408
- #: app/features/events.php:268
409
  msgid "Event Details"
410
  msgstr "Veranstaltungsdetails"
411
 
412
- #: app/features/events.php:306 app/features/events.php:2557
413
- #: app/features/events.php:2599 app/features/fes/form.php:480
414
  #: app/features/ix.php:2740 app/features/ix.php:2781
415
- #: app/features/mec/settings.php:1171 app/libraries/main.php:4408
416
  #: app/widgets/single.php:103
417
  msgid "Event Cost"
418
  msgstr ""
419
  "Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
420
 
421
- #: app/features/events.php:309 app/features/fes/form.php:483
422
- #: app/libraries/main.php:4409 app/skins/single/default.php:101
423
  #: app/skins/single/default.php:312 app/skins/single/m1.php:49
424
- #: app/skins/single/modern.php:198
425
  msgid "Cost"
426
  msgstr " Preis"
427
 
428
- #: app/features/events.php:402
429
  msgid "Note for reviewer"
430
  msgstr "Zusätzliche Anmerkungen zum Event "
431
 
432
- #: app/features/events.php:409
433
  msgid "Guest Data"
434
  msgstr "Gäste Daten"
435
 
436
- #: app/features/events.php:410 app/features/events.php:1682
437
- #: app/features/fes/form.php:442 app/features/labels.php:177
438
  #: app/features/mec/regform.php:27 app/features/organizers.php:274
439
  #: app/features/profile/profile.php:90 app/libraries/notifications.php:667
440
  #: app/modules/booking/steps/form.php:35
441
  msgid "Name"
442
  msgstr "Name"
443
 
444
- #: app/features/events.php:411 app/features/events.php:1693
445
- #: app/features/events.php:1766 app/features/fes/form.php:438
446
  #: app/features/mec/regform.php:38 app/features/mec/regform.php:183
447
  #: app/features/organizers.php:110 app/features/organizers.php:150
448
- #: app/features/profile/profile.php:93 app/features/speakers.php:119
449
- #: app/features/speakers.php:179 app/libraries/main.php:1087
450
- #: app/libraries/main.php:1168 app/libraries/main.php:2199
451
  #: app/libraries/notifications.php:668 app/modules/booking/steps/form.php:43
452
  #: app/modules/booking/steps/form.php:80 app/skins/single.php:317
453
  #: app/skins/single/default.php:209 app/skins/single/default.php:420
@@ -456,14 +456,14 @@ msgstr "Name"
456
  msgid "Email"
457
  msgstr "Email"
458
 
459
- #: app/features/events.php:415 app/features/fes/form.php:223
460
  msgid "Date and Time"
461
  msgstr "Datum und Uhrzeit"
462
 
463
- #: app/features/events.php:419 app/features/events.php:423
464
- #: app/features/events.php:2379 app/features/events.php:2557
465
- #: app/features/events.php:2599 app/features/fes/form.php:227
466
- #: app/features/fes/form.php:231 app/features/ix.php:2740
467
  #: app/features/ix.php:2781 app/features/ix/import_g_calendar.php:38
468
  #: app/features/mec/dashboard.php:331
469
  #: app/features/mec/meta_boxes/display_options.php:42
@@ -476,53 +476,53 @@ msgstr "Datum und Uhrzeit"
476
  #: app/features/mec/meta_boxes/display_options.php:615
477
  #: app/features/mec/meta_boxes/display_options.php:650
478
  #: app/features/mec/meta_boxes/display_options.php:696
479
- #: app/features/mec/meta_boxes/display_options.php:739
480
- #: app/features/mec/meta_boxes/display_options.php:954
481
- #: app/features/mec/meta_boxes/display_options.php:1041
482
  msgid "Start Date"
483
  msgstr "Start Datum"
484
 
485
- #: app/features/events.php:487 app/features/events.php:568
486
- #: app/features/events.php:1156 app/features/events.php:1194
487
- #: app/features/events.php:1313 app/features/events.php:1336
488
- #: app/features/fes/form.php:259 app/features/fes/form.php:299
489
  msgid "AM"
490
  msgstr "AM"
491
 
492
- #: app/features/events.php:493 app/features/events.php:574
493
- #: app/features/events.php:1162 app/features/events.php:1200
494
- #: app/features/events.php:1314 app/features/events.php:1337
495
- #: app/features/fes/form.php:260 app/features/fes/form.php:300
496
  msgid "PM"
497
  msgstr "PM"
498
 
499
- #: app/features/events.php:500 app/features/events.php:504
500
- #: app/features/events.php:2380 app/features/events.php:2557
501
- #: app/features/events.php:2599 app/features/fes/form.php:267
502
- #: app/features/fes/form.php:271 app/features/ix.php:2740
503
  #: app/features/ix.php:2781 app/features/ix/import_g_calendar.php:44
504
  #: app/features/mec/dashboard.php:332
505
  msgid "End Date"
506
  msgstr "Ende Datum"
507
 
508
- #: app/features/events.php:585 app/features/fes/form.php:306
509
  msgid "All Day Event"
510
  msgstr "Ganztägige Veranstaltung"
511
 
512
- #: app/features/events.php:593 app/features/fes/form.php:309
513
  msgid "Hide Event Time"
514
  msgstr "Event / Veranstaltungszeit verbergen"
515
 
516
- #: app/features/events.php:601 app/features/fes/form.php:312
517
  msgid "Hide Event End Time"
518
  msgstr "Ende-Zeit der Veranstaltung verbergen"
519
 
520
- #: app/features/events.php:605 app/features/events.php:608
521
- #: app/features/fes/form.php:316
522
  msgid "Time Comment"
523
  msgstr "z.B. MEZ "
524
 
525
- #: app/features/events.php:609 app/features/fes/form.php:317
526
  #, fuzzy
527
  #| msgid ""
528
  #| "It shows next to event time on calendar. You can insert Timezone etc. in "
@@ -534,15 +534,15 @@ msgstr ""
534
  "Neben der Zeit im Kalender wird diese Angabe angezeigt. In diesem Feld "
535
  "können Sie z.B. eine Zeitzone wie z.B. \"MEZ\" usw. einfügen. "
536
 
537
- #: app/features/events.php:609 app/features/events.php:702
538
- #: app/features/events.php:768 app/features/events.php:806
539
- #: app/features/events.php:1024 app/features/events.php:1082
540
- #: app/features/events.php:1213 app/features/events.php:1223
541
- #: app/features/events.php:1350 app/features/events.php:1360
542
- #: app/features/events.php:1465 app/features/events.php:1496
543
- #: app/features/events.php:1580 app/features/events.php:1590
544
- #: app/features/events.php:1614 app/features/events.php:1624
545
- #: app/features/fes/form.php:404 app/features/locations.php:298
546
  #: app/features/mec/dashboard.php:71
547
  #: app/features/mec/meta_boxes/display_options.php:60
548
  #: app/features/mec/meta_boxes/display_options.php:73
@@ -558,30 +558,30 @@ msgstr ""
558
  #: app/features/mec/meta_boxes/display_options.php:259
559
  #: app/features/mec/meta_boxes/display_options.php:326
560
  #: app/features/mec/meta_boxes/display_options.php:498
561
- #: app/features/mec/meta_boxes/display_options.php:758
562
- #: app/features/mec/meta_boxes/display_options.php:811
563
- #: app/features/mec/meta_boxes/display_options.php:823
564
  #: app/features/mec/meta_boxes/display_options.php:834
565
- #: app/features/mec/meta_boxes/display_options.php:866
566
- #: app/features/mec/meta_boxes/display_options.php:877
567
- #: app/features/mec/meta_boxes/display_options.php:890
568
- #: app/features/mec/meta_boxes/display_options.php:925
569
- #: app/features/mec/meta_boxes/display_options.php:974
570
- #: app/features/mec/meta_boxes/display_options.php:985
571
- #: app/features/mec/meta_boxes/display_options.php:996
572
- #: app/features/mec/meta_boxes/display_options.php:1061
573
- #: app/features/mec/meta_boxes/display_options.php:1074
574
- #: app/features/mec/meta_boxes/display_options.php:1087
575
- #: app/features/mec/meta_boxes/display_options.php:1100
576
- #: app/features/mec/meta_boxes/display_options.php:1113
577
- #: app/features/mec/notifications.php:170
578
- #: app/features/mec/notifications.php:228
579
- #: app/features/mec/notifications.php:280
580
- #: app/features/mec/notifications.php:339
581
- #: app/features/mec/notifications.php:406
582
- #: app/features/mec/notifications.php:469
583
- #: app/features/mec/notifications.php:480
584
- #: app/features/mec/notifications.php:541 app/features/mec/settings.php:299
 
 
585
  #: app/features/mec/settings.php:318 app/features/mec/settings.php:345
586
  #: app/features/mec/settings.php:365 app/features/mec/settings.php:386
587
  #: app/features/mec/settings.php:406 app/features/mec/settings.php:483
@@ -601,164 +601,171 @@ msgstr ""
601
  #: app/features/mec/settings.php:1555 app/features/mec/settings.php:1565
602
  #: app/features/mec/settings.php:1587 app/features/mec/settings.php:1597
603
  #: app/features/mec/settings.php:1656 app/features/mec/settings.php:1669
604
- #: app/features/mec/settings.php:1685 app/features/mec/styling.php:282
605
- #: app/features/mec/styling.php:299 app/features/mec/styling.php:312
606
  #: app/features/organizers.php:267 app/skins/single/default.php:116
607
  #: app/skins/single/default.php:327 app/skins/single/m1.php:192
608
- #: app/skins/single/m2.php:125 app/skins/single/modern.php:132
609
  msgid "Read More"
610
  msgstr "Mehr lesen"
611
 
612
- #: app/features/events.php:623 app/features/fes/form.php:323
613
  msgid "Event Repeating"
614
  msgstr "Wiederholende Veranstaltung"
615
 
616
- #: app/features/events.php:627 app/features/fes/form.php:327
617
  msgid "Repeats"
618
  msgstr "Wiederholend"
619
 
620
- #: app/features/events.php:634 app/features/fes/form.php:329
621
- #: app/features/mec/dashboard.php:334 app/skins/full_calendar/tpl.php:73
622
  msgid "Daily"
623
  msgstr "Täglich"
624
 
625
- #: app/features/events.php:640 app/features/fes/form.php:330
626
  msgid "Every Weekday"
627
  msgstr "An jedem Wochentag"
628
 
629
- #: app/features/events.php:646 app/features/fes/form.php:331
630
  msgid "Every Weekend"
631
  msgstr "An jedem Wochenende"
632
 
633
- #: app/features/events.php:652 app/features/fes/form.php:332
634
  msgid "Certain Weekdays"
635
  msgstr "Bestimmte Wochentage"
636
 
637
- #: app/features/events.php:658 app/features/fes/form.php:333
638
- #: app/skins/full_calendar/tpl.php:72
639
  msgid "Weekly"
640
  msgstr "Wöchentlich"
641
 
642
- #: app/features/events.php:664 app/features/fes/form.php:334
643
- #: app/features/mec/dashboard.php:335 app/skins/full_calendar/tpl.php:71
644
  msgid "Monthly"
645
  msgstr "Monatlich"
646
 
647
- #: app/features/events.php:670 app/features/fes/form.php:335
648
- #: app/features/mec/dashboard.php:336 app/skins/full_calendar/tpl.php:70
649
  msgid "Yearly"
650
  msgstr "Jährlich"
651
 
652
- #: app/features/events.php:676 app/features/fes/form.php:336
653
  msgid "Custom Days"
654
  msgstr "Benutzerdefinierte Tage"
655
 
656
- #: app/features/events.php:680 app/features/fes/form.php:340
657
  msgid "Repeat Interval"
658
  msgstr "Wiederholungsintervall"
659
 
660
- #: app/features/events.php:681 app/features/fes/form.php:341
661
  msgid "Repeat interval"
662
  msgstr "Wiederholungsintervall"
663
 
664
- #: app/features/events.php:684 app/features/fes/form.php:344
665
  msgid "Week Days"
666
  msgstr "Wochentage"
667
 
668
- #: app/features/events.php:685 app/features/fes/form.php:345
669
- #: app/libraries/main.php:406
 
670
  msgid "Monday"
671
  msgstr "Montag"
672
 
673
- #: app/features/events.php:686 app/features/fes/form.php:346
674
- #: app/libraries/main.php:406
 
675
  msgid "Tuesday"
676
  msgstr "Dienstag"
677
 
678
- #: app/features/events.php:687 app/features/fes/form.php:347
679
- #: app/libraries/main.php:406
 
680
  msgid "Wednesday"
681
  msgstr "Mittwoch"
682
 
683
- #: app/features/events.php:688 app/features/fes/form.php:348
684
- #: app/libraries/main.php:406
 
685
  msgid "Thursday"
686
  msgstr "Donnerstag"
687
 
688
- #: app/features/events.php:689 app/features/fes/form.php:349
689
- #: app/libraries/main.php:406
 
690
  msgid "Friday"
691
  msgstr "Freitag"
692
 
693
- #: app/features/events.php:690 app/features/fes/form.php:350
694
- #: app/libraries/main.php:406
 
695
  msgid "Saturday"
696
  msgstr "Samstag"
697
 
698
- #: app/features/events.php:691 app/features/fes/form.php:351
699
- #: app/libraries/main.php:406
 
700
  msgid "Sunday"
701
  msgstr "Sonntag"
702
 
703
- #: app/features/events.php:696 app/features/events.php:1260
704
- #: app/features/events.php:1274 app/features/events.php:1386
705
- #: app/features/fes/form.php:356 app/features/ix/import_f_calendar.php:42
706
  #: app/features/ix/import_g_calendar.php:51
707
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
708
  msgid "Start"
709
  msgstr "Start"
710
 
711
- #: app/features/events.php:697 app/features/events.php:1261
712
- #: app/features/events.php:1275 app/features/events.php:1387
713
- #: app/features/fes/form.php:357
714
  #, fuzzy
715
  #| msgid "Enabled"
716
  msgid "End"
717
  msgstr "Aktiviert"
718
 
719
- #: app/features/events.php:698 app/features/events.php:802
720
- #: app/features/events.php:894 app/features/events.php:958
721
- #: app/features/events.php:1112 app/features/events.php:1247
722
- #: app/features/events.php:1378 app/features/events.php:1445
723
- #: app/features/events.php:1560 app/features/fes/form.php:358
724
  msgid "Add"
725
  msgstr "Hinzufügen"
726
 
727
- #: app/features/events.php:701
728
  #, fuzzy
729
  #| msgid "Custom Days"
730
  msgid "Custom Days Repeating"
731
  msgstr "Benutzerdefinierte Tage"
732
 
733
- #: app/features/events.php:702
734
  msgid ""
735
  "Add certain days to event occurrence dates. If you have single day event, "
736
  "start and end date should be the same, If you have multiple day event the "
737
  "start and end dates must be commensurate with the initial date."
738
  msgstr ""
739
 
740
- #: app/features/events.php:731 app/features/fes/form.php:382
741
  msgid "Ends Repeat"
742
  msgstr "Wiederholung endet"
743
 
744
- #: app/features/events.php:740 app/features/fes/form.php:386
745
  msgid "Never"
746
  msgstr "Niemals"
747
 
748
- #: app/features/events.php:750 app/features/fes/form.php:391
749
  msgid "On"
750
  msgstr "Am"
751
 
752
- #: app/features/events.php:762 app/features/fes/form.php:398
753
  msgid "After"
754
  msgstr "Nach"
755
 
756
- #: app/features/events.php:764 app/features/events.php:767
757
- #: app/features/fes/form.php:400 app/features/fes/form.php:403
758
  msgid "Occurrences times"
759
  msgstr " mal vorkommen"
760
 
761
- #: app/features/events.php:768 app/features/fes/form.php:404
762
  msgid ""
763
  "The event will finish after certain repeats. For example if you set it to "
764
  "10, the event will finish after 10 repeats."
@@ -766,132 +773,132 @@ msgstr ""
766
  "Das Event ist nach einer bestimmten Anzahl von Wiederholungen zu Ende. Zum "
767
  "Beispiel: Bei Eingabe von 10 wird das Event nach 10 Wiederholungen beendet"
768
 
769
- #: app/features/events.php:797 app/features/events.php:805
770
  msgid "Exclude certain days"
771
  msgstr "Ausschluss bestimmter Tage"
772
 
773
- #: app/features/events.php:801 app/features/events.php:1767
774
  #: app/features/mec/regform.php:184 app/features/profile/profile.php:31
775
- #: app/libraries/main.php:1654 app/libraries/main.php:2257
776
  #: app/modules/booking/steps/tickets.php:22
777
- #: app/modules/next-event/details.php:86 app/skins/single/default.php:65
778
  #: app/skins/single/default.php:276 app/skins/single/m1.php:16
779
- #: app/skins/single/modern.php:165
780
  msgid "Date"
781
  msgstr "Datum"
782
 
783
- #: app/features/events.php:806
784
  msgid ""
785
  "Exclude certain days from event occurrence dates. Please note that you can "
786
  "exclude only single day occurrences and you cannot exclude one day from "
787
  "multiple day occurrences."
788
  msgstr ""
789
 
790
- #: app/features/events.php:854 app/libraries/render.php:454
791
  msgid "Day 1"
792
  msgstr ""
793
 
794
- #: app/features/events.php:876 app/features/mec/settings.php:1225
795
  #: app/skins/single.php:379
796
  msgid "Hourly Schedule"
797
  msgstr "Stundenplan"
798
 
799
- #: app/features/events.php:879
800
  msgid "Add Day"
801
  msgstr ""
802
 
803
- #: app/features/events.php:880
804
  msgid ""
805
  "Add new days for schedule. For example if your event is multiple days, you "
806
  "can add a different schedule for each day!"
807
  msgstr ""
808
 
809
- #: app/features/events.php:886
810
  #, php-format
811
  msgid "Day %s"
812
  msgstr ""
813
 
814
- #: app/features/events.php:889 app/features/events.php:908
815
- #: app/features/events.php:928 app/features/events.php:953
816
- #: app/features/events.php:969 app/features/events.php:1572
817
- #: app/features/events.php:1606 app/features/events.php:2376
818
- #: app/features/events.php:2557 app/features/events.php:2599
819
- #: app/features/fes/form.php:216 app/features/ix.php:2740
820
  #: app/features/ix.php:2781 app/features/mec/settings.php:1547
821
- #: app/features/mec/settings.php:1579 app/features/mec/styling.php:194
822
  msgid "Title"
823
  msgstr "Titel"
824
 
825
- #: app/features/events.php:891 app/features/events.php:910
826
- #: app/features/events.php:930 app/features/events.php:955
827
- #: app/features/events.php:971 app/features/events.php:1241
828
- #: app/features/events.php:1264 app/features/events.php:1278
829
- #: app/features/events.php:1373 app/features/events.php:1390
830
- #: app/features/events.php:1477 app/features/events.php:1508
831
- #: app/features/events.php:1595 app/features/events.php:1629
832
- #: app/features/fes/list.php:72 app/features/mec/settings.php:1490
833
  #: app/features/mec/settings.php:1519 app/features/mec/settings.php:1570
834
- #: app/features/mec/settings.php:1602 app/libraries/main.php:2118
835
- #: app/libraries/main.php:2148 app/libraries/main.php:2177
836
- #: app/libraries/main.php:2207 app/libraries/main.php:2236
837
- #: app/libraries/main.php:2265 app/libraries/main.php:2294
838
- #: app/libraries/main.php:2323 app/libraries/main.php:2345
839
- #: app/libraries/main.php:2376 app/libraries/main.php:2420
840
- #: app/libraries/main.php:2464 app/libraries/main.php:2511
841
- #: app/libraries/main.php:2549
842
  msgid "Remove"
843
  msgstr "Entfernen"
844
 
845
- #: app/features/events.php:895 app/features/events.php:959
846
  msgid "Add new hourly schedule row"
847
  msgstr "Neue Stundenplan-Zeile hinzufügen"
848
 
849
- #: app/features/events.php:906 app/features/events.php:926
850
- #: app/features/events.php:967
851
  msgid "From e.g. 8:15"
852
  msgstr "Von z.B. 08:15 Uhr"
853
 
854
- #: app/features/events.php:907 app/features/events.php:927
855
- #: app/features/events.php:968
856
  msgid "To e.g. 8:45"
857
  msgstr "bis zum Beispiel 08:45 Uhr"
858
 
859
- #: app/features/events.php:909 app/features/events.php:929
860
- #: app/features/events.php:970 app/features/events.php:1205
861
- #: app/features/events.php:1342
862
  msgid "Description"
863
  msgstr "Beschreibung"
864
 
865
- #: app/features/events.php:913 app/features/events.php:933
866
- #: app/features/events.php:974 app/features/fes/form.php:612
867
  #: app/features/mec.php:325 app/features/mec/settings.php:78
868
  #: app/features/mec/settings.php:1219 app/features/speakers.php:57
869
- #: app/libraries/main.php:4383 app/modules/speakers/details.php:18
870
  msgid "Speakers"
871
  msgstr ""
872
 
873
- #: app/features/events.php:950 app/features/events.php:954
874
  #, fuzzy
875
  #| msgid "Week Days"
876
  msgid "New Day"
877
  msgstr "Wochentage"
878
 
879
- #: app/features/events.php:1001 app/features/fes/form.php:457
880
  #: app/features/mec/settings.php:1165
881
  msgid "Event Links"
882
  msgstr "Veranstaltungslinks"
883
 
884
- #: app/features/events.php:1003 app/features/events.php:1007
885
- #: app/features/fes/form.php:459 app/libraries/main.php:4406
886
  msgid "Event Link"
887
  msgstr "Veranstaltungslink"
888
 
889
- #: app/features/events.php:1004 app/features/events.php:1015
890
- #: app/features/fes/form.php:460 app/features/fes/form.php:465
891
  msgid "eg. http://yoursite.com/your-event"
892
  msgstr "z.B. http://ihreseite.com/ihre-veranstaltung"
893
 
894
- #: app/features/events.php:1008
895
  #, fuzzy
896
  #| msgid ""
897
  #| "If you fill it, it will be replaced instead of default event page link. "
@@ -905,31 +912,31 @@ msgstr ""
905
  "dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
906
  "einschließlich http(s)://"
907
 
908
- #: app/features/events.php:1008
909
  msgid "URL Shortener"
910
  msgstr ""
911
 
912
- #: app/features/events.php:1014 app/features/events.php:1023
913
- #: app/features/fes/form.php:464 app/libraries/main.php:4407
914
  #: app/skins/single/default.php:115 app/skins/single/default.php:326
915
  #: app/skins/single/m1.php:191 app/skins/single/m2.php:124
916
- #: app/skins/single/modern.php:131 app/widgets/single.php:107
917
  msgid "More Info"
918
  msgstr "Mehr Informationen"
919
 
920
- #: app/features/events.php:1016 app/features/fes/form.php:466
921
  msgid "More Information"
922
  msgstr "z.B. Noch mehr Informationen "
923
 
924
- #: app/features/events.php:1018 app/features/fes/form.php:468
925
  msgid "Current Window"
926
  msgstr "Aktuelles Fenster"
927
 
928
- #: app/features/events.php:1019 app/features/fes/form.php:469
929
  msgid "New Window"
930
  msgstr "Neues Fenster"
931
 
932
- #: app/features/events.php:1024 app/features/fes/form.php:471
933
  msgid ""
934
  "If you fill it, it will be shown in event details page as an optional link. "
935
  "Insert full link including http(s)://"
@@ -940,132 +947,133 @@ msgstr ""
940
  "Text angezeigt werden soll: zum Beispiel: Noch mehr Informationen oder Hier "
941
  "zur Anmeldung (z.B. bei Webinaren sinnvoll) "
942
 
943
- #: app/features/events.php:1060 app/features/events.php:1081
944
  msgid "Total booking limits"
945
  msgstr "Gesamt Verfügbare Plätze"
946
 
947
- #: app/features/events.php:1070 app/features/events.php:1239
948
- #: app/features/events.php:1371 app/modules/booking/default.php:81
949
  #: app/modules/booking/steps/tickets.php:40
950
  #: app/skins/available_spot/tpl.php:139
951
  msgid "Unlimited"
952
  msgstr "Unlimitiert"
953
 
954
- #: app/features/events.php:1072
955
  msgid "100"
956
  msgstr "z.B. 100"
957
 
958
- #: app/features/events.php:1082
959
  msgid ""
960
  "If you want to set a limit to all tickets, uncheck this checkbox and put a "
961
  "limitation number."
962
  msgstr ""
963
 
964
- #: app/features/events.php:1082
965
  #, fuzzy
966
  #| msgid "Choose your single event style."
967
  msgid "Read About A Booking System"
968
  msgstr "Wählen Sie Ihren Single Event Stil"
969
 
970
- #: app/features/events.php:1104 app/libraries/book.php:60
971
- #: app/libraries/main.php:4411 app/modules/booking/steps/tickets.php:40
972
  msgid "Tickets"
973
  msgstr "Tickets"
974
 
975
- #: app/features/events.php:1107
976
  msgid ""
977
  "You're translating an event so MEC will use the original event for tickets "
978
  "and booking. You can only translate the ticket name and description. Please "
979
  "define exact tickets that you defined in the original event here."
980
  msgstr ""
981
 
982
- #: app/features/events.php:1124 app/features/events.php:1291
983
  msgid "Ticket Name"
984
  msgstr "Ticket Name"
985
 
986
- #: app/features/events.php:1128 app/features/events.php:1295
987
- #: app/features/events.php:2557 app/features/events.php:2599
988
  #: app/features/ix.php:2740 app/features/ix.php:2781
989
  msgid "Start Time"
990
  msgstr "Uhrzeit des Beginns"
991
 
992
- #: app/features/events.php:1166 app/features/events.php:1318
993
- #: app/features/events.php:2557 app/features/events.php:2599
994
  #: app/features/ix.php:2740 app/features/ix.php:2781
995
  msgid "End Time"
996
  msgstr "Uhrzeit Ende"
997
 
998
- #: app/features/events.php:1209 app/features/events.php:1212
999
- #: app/features/events.php:1262 app/features/events.php:1276
1000
- #: app/features/events.php:1346 app/features/events.php:1349
1001
- #: app/features/events.php:1388 app/features/events.php:1576
1002
- #: app/features/events.php:1579 app/features/events.php:1610
1003
- #: app/features/events.php:1613 app/features/mec/settings.php:1551
1004
  #: app/features/mec/settings.php:1554 app/features/mec/settings.php:1583
1005
  #: app/features/mec/settings.php:1586
1006
  msgid "Price"
1007
  msgstr "Preis"
1008
 
1009
- #: app/features/events.php:1213 app/features/events.php:1350
1010
  msgid "Insert 0 for free ticket. Only numbers please."
1011
  msgstr "Bitte 0 für kostenloses Ticket eingeben. Bitte nur Zahlen eintragen"
1012
 
1013
- #: app/features/events.php:1219 app/features/events.php:1222
1014
- #: app/features/events.php:1356 app/features/events.php:1359
1015
  msgid "Price Label"
1016
  msgstr "Preisschild"
1017
 
1018
- #: app/features/events.php:1223 app/features/events.php:1360
1019
  msgid "For showing on website. e.g. $15"
1020
  msgstr "Um das auf der Webseite anzuzeigen zum Beispiel 15 €"
1021
 
1022
- #: app/features/events.php:1230 app/features/events.php:1367
1023
  msgid "Available Tickets"
1024
  msgstr "Verfügbare Tickets: %s "
1025
 
1026
- #: app/features/events.php:1246 app/features/events.php:1377
1027
  #, fuzzy
1028
  #| msgid "Price Label"
1029
  msgid "Price per Date"
1030
  msgstr "Preisschild"
1031
 
1032
- #: app/features/events.php:1263 app/features/events.php:1277
1033
- #: app/features/events.php:1389 app/features/labels.php:60
1034
- #: app/features/mec/meta_boxes/display_options.php:772
1035
  #: app/features/mec/meta_boxes/search_form.php:66
1036
  #: app/features/mec/meta_boxes/search_form.php:127
1037
  #: app/features/mec/meta_boxes/search_form.php:188
1038
- #: app/features/mec/meta_boxes/search_form.php:275
1039
- #: app/features/mec/meta_boxes/search_form.php:336
1040
- #: app/features/mec/meta_boxes/search_form.php:397
1041
- #: app/features/mec/meta_boxes/search_form.php:451
1042
- #: app/features/mec/meta_boxes/search_form.php:512
1043
- #: app/features/mec/meta_boxes/search_form.php:573 app/libraries/skins.php:905
 
1044
  msgid "Label"
1045
  msgstr "Label"
1046
 
1047
- #: app/features/events.php:1425
1048
  msgid "Fees"
1049
  msgstr "Gebühren"
1050
 
1051
- #: app/features/events.php:1435 app/features/events.php:1550
1052
- #: app/features/events.php:1710
1053
  msgid "Inherit from global options"
1054
  msgstr "Aus den globalen Einstellungen übernehmen"
1055
 
1056
- #: app/features/events.php:1457 app/features/events.php:1488
1057
  #: app/features/mec/settings.php:1470 app/features/mec/settings.php:1499
1058
  msgid "Fee Title"
1059
  msgstr "Gebühren Name"
1060
 
1061
- #: app/features/events.php:1461 app/features/events.php:1464
1062
- #: app/features/events.php:1492 app/features/events.php:1495
1063
  #: app/features/mec/settings.php:1474 app/features/mec/settings.php:1477
1064
  #: app/features/mec/settings.php:1503 app/features/mec/settings.php:1506
1065
  msgid "Amount"
1066
  msgstr "Betrag"
1067
 
1068
- #: app/features/events.php:1465 app/features/events.php:1496
1069
  #: app/features/mec/settings.php:1478 app/features/mec/settings.php:1507
1070
  msgid ""
1071
  "Fee amount, considered as fixed amount if you set the type to amount "
@@ -1074,34 +1082,34 @@ msgstr ""
1074
  "Gebührenbetrag, gilt als fester Betrag, wenn Sie die Art auf Betrag setzen, "
1075
  "sonst als Prozentsatz"
1076
 
1077
- #: app/features/events.php:1472 app/features/events.php:1503
1078
  #: app/features/mec/settings.php:1485 app/features/mec/settings.php:1514
1079
  msgid "Percent"
1080
  msgstr "Prozent"
1081
 
1082
- #: app/features/events.php:1473 app/features/events.php:1504
1083
  #: app/features/mec/settings.php:1486 app/features/mec/settings.php:1515
1084
  msgid "Amount (Per Ticket)"
1085
  msgstr "Betrag (pro Ticket)"
1086
 
1087
- #: app/features/events.php:1474 app/features/events.php:1505
1088
  #: app/features/mec/settings.php:1487 app/features/mec/settings.php:1516
1089
  msgid "Amount (Per Booking)"
1090
  msgstr "Betrag (pro Buchung)"
1091
 
1092
- #: app/features/events.php:1540 app/features/mec/settings.php:1243
1093
  msgid "Ticket Variations / Options"
1094
  msgstr ""
1095
 
1096
- #: app/features/events.php:1580 app/features/events.php:1614
1097
  #: app/features/mec/settings.php:1555 app/features/mec/settings.php:1587
1098
  #, fuzzy
1099
  #| msgid "Option"
1100
  msgid "Option Price"
1101
  msgstr "Option"
1102
 
1103
- #: app/features/events.php:1586 app/features/events.php:1589
1104
- #: app/features/events.php:1620 app/features/events.php:1623
1105
  #: app/features/mec/settings.php:1561 app/features/mec/settings.php:1564
1106
  #: app/features/mec/settings.php:1593 app/features/mec/settings.php:1596
1107
  #, fuzzy
@@ -1109,58 +1117,58 @@ msgstr "Option"
1109
  msgid "Maximum Per Ticket"
1110
  msgstr "Betrag (pro Ticket)"
1111
 
1112
- #: app/features/events.php:1590 app/features/events.php:1624
1113
  #: app/features/mec/settings.php:1565 app/features/mec/settings.php:1597
1114
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1115
  msgstr ""
1116
 
1117
- #: app/features/events.php:1763 app/features/mec/regform.php:180
1118
- #: app/libraries/main.php:2140
1119
  #, fuzzy
1120
  #| msgid "Name"
1121
  msgid "MEC Name"
1122
  msgstr "Name"
1123
 
1124
- #: app/features/events.php:1764 app/features/mec/regform.php:181
1125
- #: app/libraries/main.php:2169
1126
  #, fuzzy
1127
  #| msgid "Email"
1128
  msgid "MEC Email"
1129
  msgstr "Email"
1130
 
1131
- #: app/features/events.php:1765 app/features/mec/regform.php:182
1132
- #: app/libraries/main.php:2110
1133
  msgid "Text"
1134
  msgstr "Text"
1135
 
1136
- #: app/features/events.php:1768 app/features/mec/regform.php:185
1137
  #: app/features/organizers.php:102 app/features/organizers.php:146
1138
- #: app/features/speakers.php:111 app/features/speakers.php:175
1139
- #: app/features/speakers.php:244 app/libraries/main.php:2286
1140
  msgid "Tel"
1141
  msgstr "Tel"
1142
 
1143
- #: app/features/events.php:1769 app/features/mec/regform.php:186
1144
- #: app/libraries/main.php:2228
1145
  msgid "File"
1146
  msgstr ""
1147
 
1148
- #: app/features/events.php:1770 app/features/mec/regform.php:187
1149
- #: app/libraries/main.php:2315
1150
  msgid "Textarea"
1151
  msgstr "Textbereich"
1152
 
1153
- #: app/features/events.php:1771 app/features/mec/regform.php:188
1154
- #: app/libraries/main.php:2368
1155
  msgid "Checkboxes"
1156
  msgstr "Checkboxes"
1157
 
1158
- #: app/features/events.php:1772 app/features/mec/regform.php:189
1159
- #: app/libraries/main.php:2412
1160
  msgid "Radio Buttons"
1161
  msgstr "Radio Buttons"
1162
 
1163
- #: app/features/events.php:1773 app/features/mec/meta_boxes/search_form.php:34
1164
  #: app/features/mec/meta_boxes/search_form.php:41
1165
  #: app/features/mec/meta_boxes/search_form.php:48
1166
  #: app/features/mec/meta_boxes/search_form.php:55
@@ -1183,172 +1191,179 @@ msgstr "Radio Buttons"
1183
  #: app/features/mec/meta_boxes/search_form.php:198
1184
  #: app/features/mec/meta_boxes/search_form.php:217
1185
  #: app/features/mec/meta_boxes/search_form.php:224
1186
- #: app/features/mec/meta_boxes/search_form.php:243
1187
- #: app/features/mec/meta_boxes/search_form.php:250
1188
- #: app/features/mec/meta_boxes/search_form.php:257
1189
- #: app/features/mec/meta_boxes/search_form.php:264
1190
- #: app/features/mec/meta_boxes/search_form.php:271
1191
  #: app/features/mec/meta_boxes/search_form.php:278
1192
  #: app/features/mec/meta_boxes/search_form.php:285
1193
- #: app/features/mec/meta_boxes/search_form.php:304
1194
- #: app/features/mec/meta_boxes/search_form.php:311
1195
- #: app/features/mec/meta_boxes/search_form.php:318
1196
- #: app/features/mec/meta_boxes/search_form.php:325
1197
- #: app/features/mec/meta_boxes/search_form.php:332
1198
  #: app/features/mec/meta_boxes/search_form.php:339
1199
  #: app/features/mec/meta_boxes/search_form.php:346
1200
- #: app/features/mec/meta_boxes/search_form.php:365
1201
- #: app/features/mec/meta_boxes/search_form.php:372
1202
- #: app/features/mec/meta_boxes/search_form.php:379
1203
- #: app/features/mec/meta_boxes/search_form.php:386
1204
- #: app/features/mec/meta_boxes/search_form.php:393
1205
  #: app/features/mec/meta_boxes/search_form.php:400
1206
- #: app/features/mec/meta_boxes/search_form.php:419
1207
- #: app/features/mec/meta_boxes/search_form.php:426
1208
- #: app/features/mec/meta_boxes/search_form.php:433
1209
- #: app/features/mec/meta_boxes/search_form.php:440
1210
- #: app/features/mec/meta_boxes/search_form.php:447
1211
  #: app/features/mec/meta_boxes/search_form.php:454
1212
  #: app/features/mec/meta_boxes/search_form.php:461
1213
- #: app/features/mec/meta_boxes/search_form.php:480
1214
- #: app/features/mec/meta_boxes/search_form.php:487
1215
- #: app/features/mec/meta_boxes/search_form.php:494
1216
- #: app/features/mec/meta_boxes/search_form.php:501
1217
- #: app/features/mec/meta_boxes/search_form.php:508
1218
  #: app/features/mec/meta_boxes/search_form.php:515
1219
  #: app/features/mec/meta_boxes/search_form.php:522
1220
- #: app/features/mec/meta_boxes/search_form.php:541
1221
- #: app/features/mec/meta_boxes/search_form.php:548
1222
- #: app/features/mec/meta_boxes/search_form.php:555
1223
- #: app/features/mec/meta_boxes/search_form.php:562
1224
- #: app/features/mec/meta_boxes/search_form.php:569
1225
  #: app/features/mec/meta_boxes/search_form.php:576
1226
  #: app/features/mec/meta_boxes/search_form.php:583
1227
- #: app/features/mec/regform.php:190 app/libraries/main.php:2456
 
 
 
 
 
1228
  msgid "Dropdown"
1229
  msgstr "Dropdown"
1230
 
1231
- #: app/features/events.php:1774 app/features/mec/regform.php:191
1232
- #: app/libraries/main.php:2503
1233
  msgid "Agreement"
1234
  msgstr "Zustimmung"
1235
 
1236
- #: app/features/events.php:1775 app/features/mec/regform.php:192
1237
- #: app/libraries/main.php:2344
1238
  msgid "Paragraph"
1239
  msgstr "Absatz"
1240
 
1241
- #: app/features/events.php:2315 app/features/events.php:2332
1242
- #: app/features/events.php:2349
1243
  #, php-format
1244
  msgid "Show all %s"
1245
  msgstr "Zeige alle %s"
1246
 
1247
- #: app/features/events.php:2315
1248
  msgid "labels"
1249
  msgstr "Labels + Eventstatus"
1250
 
1251
- #: app/features/events.php:2332
1252
  msgid "locations"
1253
  msgstr "Orte"
1254
 
1255
- #: app/features/events.php:2349
1256
  msgid "organizers"
1257
  msgstr "Veranstalter"
1258
 
1259
- #: app/features/events.php:2377 app/features/events.php:2557
1260
- #: app/features/events.php:2599 app/features/ix.php:2740
1261
  #: app/features/ix.php:2781 app/features/locations.php:58
1262
  #: app/features/locations.php:229 app/features/locations.php:286
1263
  #: app/features/locations.php:288 app/features/locations.php:297
1264
- #: app/features/mec/meta_boxes/display_options.php:773
1265
  #: app/features/mec/meta_boxes/search_form.php:38
1266
  #: app/features/mec/meta_boxes/search_form.php:99
1267
  #: app/features/mec/meta_boxes/search_form.php:160
1268
- #: app/features/mec/meta_boxes/search_form.php:247
1269
- #: app/features/mec/meta_boxes/search_form.php:308
1270
- #: app/features/mec/meta_boxes/search_form.php:369
1271
- #: app/features/mec/meta_boxes/search_form.php:423
1272
- #: app/features/mec/meta_boxes/search_form.php:484
1273
- #: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1648
1274
- #: app/libraries/main.php:4380 app/libraries/skins.php:801
 
1275
  #: app/skins/single.php:356 app/skins/single/default.php:151
1276
  #: app/skins/single/default.php:362 app/skins/single/m1.php:155
1277
  #: app/skins/single/m2.php:87 app/skins/single/modern.php:94
1278
  msgid "Location"
1279
  msgstr "Ort"
1280
 
1281
- #: app/features/events.php:2378 app/features/events.php:2557
1282
- #: app/features/events.php:2599 app/features/ix.php:2740
1283
- #: app/features/ix.php:2781 app/features/mec/meta_boxes/display_options.php:774
1284
  #: app/features/mec/meta_boxes/search_form.php:45
1285
  #: app/features/mec/meta_boxes/search_form.php:106
1286
  #: app/features/mec/meta_boxes/search_form.php:167
1287
- #: app/features/mec/meta_boxes/search_form.php:254
1288
- #: app/features/mec/meta_boxes/search_form.php:315
1289
- #: app/features/mec/meta_boxes/search_form.php:376
1290
- #: app/features/mec/meta_boxes/search_form.php:430
1291
- #: app/features/mec/meta_boxes/search_form.php:491
1292
- #: app/features/mec/meta_boxes/search_form.php:552
 
1293
  #: app/features/organizers.php:58 app/features/organizers.php:199
1294
  #: app/features/organizers.php:255 app/features/organizers.php:257
1295
- #: app/features/organizers.php:266 app/libraries/main.php:4382
1296
- #: app/libraries/skins.php:827 app/skins/single/default.php:192
1297
  #: app/skins/single/default.php:403 app/skins/single/m1.php:90
1298
  #: app/skins/single/m2.php:22 app/skins/single/modern.php:31
1299
  msgid "Organizer"
1300
  msgstr "Veranstalter"
1301
 
1302
- #: app/features/events.php:2382
1303
  msgid "Repeat"
1304
  msgstr "Wiederholen"
1305
 
1306
- #: app/features/events.php:2383
1307
  msgid "Author"
1308
  msgstr "Autor"
1309
 
1310
- #: app/features/events.php:2493 app/features/events.php:2494
1311
  msgid "iCal Export"
1312
  msgstr "ical Export"
1313
 
1314
- #: app/features/events.php:2496 app/features/events.php:2497
1315
  msgid "CSV Export"
1316
  msgstr "CSV Export"
1317
 
1318
- #: app/features/events.php:2499 app/features/events.php:2500
1319
  msgid "MS Excel Export"
1320
  msgstr "MS Excel Export"
1321
 
1322
- #: app/features/events.php:2502 app/features/events.php:2503
1323
  msgid "XML Export"
1324
  msgstr "XML Export"
1325
 
1326
- #: app/features/events.php:2505 app/features/events.php:2506
1327
  msgid "JSON Export"
1328
  msgstr "JSON Export"
1329
 
1330
- #: app/features/events.php:2508 app/features/events.php:2509
1331
  msgid "Duplicate"
1332
  msgstr "Kopie"
1333
 
1334
- #: app/features/events.php:2557 app/features/events.php:2599
1335
  #: app/features/ix.php:2740 app/features/ix.php:2781
1336
  #: app/features/labels.php:176 app/features/locations.php:228
1337
- #: app/features/organizers.php:198 app/features/speakers.php:241
1338
  msgid "ID"
1339
  msgstr "ID"
1340
 
1341
- #: app/features/events.php:2557 app/features/events.php:2599
1342
  #: app/features/ix.php:2740 app/features/ix.php:2781
1343
  msgid "Link"
1344
  msgstr "Link"
1345
 
1346
- #: app/features/events.php:2557 app/features/events.php:2599
1347
  #, php-format
1348
  msgid "%s Tel"
1349
  msgstr "%s Tel"
1350
 
1351
- #: app/features/events.php:2557 app/features/events.php:2599
1352
  #, php-format
1353
  msgid "%s Email"
1354
  msgstr "%s Email"
@@ -1412,27 +1427,27 @@ msgstr "Die Veranstaltung wurde veröffentlicht."
1412
  msgid "Go back to events list."
1413
  msgstr "Zurück zur Liste der Veranstaltungen"
1414
 
1415
- #: app/features/fes/form.php:359
1416
  msgid "Add certain days to event occurrence dates."
1417
  msgstr "Fügen Sie bestimmte Tage zu den Ereignisdaten hinzu. "
1418
 
1419
- #: app/features/fes/form.php:418
1420
  msgid "Note to reviewer"
1421
  msgstr "Zusätzliche Anmerkungen zum Event "
1422
 
1423
- #: app/features/fes/form.php:436
1424
  msgid "User Data"
1425
  msgstr "Benutzerdaten"
1426
 
1427
- #: app/features/fes/form.php:439
1428
  msgid "eg. yourname@gmail.com"
1429
  msgstr "z.B. IhrName@ihrewebseite.de"
1430
 
1431
- #: app/features/fes/form.php:443 app/features/organizers.php:275
1432
  msgid "eg. John Smith"
1433
  msgstr "z.B. Max Mustermann"
1434
 
1435
- #: app/features/fes/form.php:461
1436
  msgid ""
1437
  "If you fill it, it will be replaced instead of default event page link. "
1438
  "Insert full link including http(s)://"
@@ -1441,33 +1456,33 @@ msgstr ""
1441
  "dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
1442
  "einschließlich http(s)://"
1443
 
1444
- #: app/features/fes/form.php:497 app/features/mec/settings.php:1177
1445
  msgid "Featured Image"
1446
  msgstr "Ausgewähltes Bild"
1447
 
1448
- #: app/features/fes/form.php:502
1449
  msgid "Remove Image"
1450
  msgstr "Bild entfernen"
1451
 
1452
- #: app/features/fes/form.php:544 app/features/labels.php:61
1453
  #: app/features/labels.php:220 app/features/mec.php:318
1454
- #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4377
1455
  #: app/skins/single/default.php:130 app/skins/single/default.php:341
1456
- #: app/skins/single/m1.php:64 app/skins/single/modern.php:213
1457
  msgid "Labels"
1458
  msgstr "Labels"
1459
 
1460
- #: app/features/fes/form.php:589 app/features/mec.php:316
1461
  #: app/features/mec/meta_boxes/filter.php:138
1462
  msgid "Tags"
1463
  msgstr "Schlagworte"
1464
 
1465
- #: app/features/fes/form.php:591
1466
  msgid "Insert your desired tags, comma separated."
1467
  msgstr ""
1468
  "Geben Sie die gewünschten Tags (Schlagworte) durch ein Komma separiert ein"
1469
 
1470
- #: app/features/fes/form.php:627
1471
  msgid "Submit"
1472
  msgstr "Buchung abschließen"
1473
 
@@ -1475,15 +1490,15 @@ msgstr "Buchung abschließen"
1475
  msgid "Click again to remove!"
1476
  msgstr "Zum Entfernen nochmals klicken"
1477
 
1478
- #: app/features/fes/list.php:64 app/features/fes/list.php:78
1479
  msgid "Add new"
1480
  msgstr "Neu hinzufügen"
1481
 
1482
- #: app/features/fes/list.php:70
1483
  msgid "View"
1484
  msgstr "Anzeigen"
1485
 
1486
- #: app/features/fes/list.php:78
1487
  #, php-format
1488
  msgid "No events found! %s"
1489
  msgstr "Keine Veranstaltungen gefunden! %s"
@@ -1494,7 +1509,7 @@ msgstr "MEC - Import / Export"
1494
 
1495
  #: app/features/ix.php:107 app/features/mec/gateways.php:77
1496
  #: app/features/mec/ie.php:73 app/features/mec/messages.php:77
1497
- #: app/features/mec/notifications.php:123 app/features/mec/regform.php:111
1498
  #: app/features/mec/settings.php:261 app/features/mec/styles.php:77
1499
  #: app/features/mec/styling.php:99 app/features/mec/support.php:73
1500
  msgid "Import / Export"
@@ -1775,15 +1790,15 @@ msgstr "Umschalten"
1775
  #: app/features/ix/export_g_calendar.php:72
1776
  #: app/features/ix/export_g_calendar.php:147
1777
  #: app/features/ix/export_g_calendar.php:164
1778
- #: app/features/mec/notifications.php:207
1779
- #: app/features/mec/notifications.php:260
1780
- #: app/features/mec/notifications.php:313
1781
- #: app/features/mec/notifications.php:513
1782
  msgid "Add to Google Calendar"
1783
  msgstr "Zum Google Kalender hinzufügen"
1784
 
1785
  #: app/features/ix/export_g_calendar.php:90
1786
- #: app/features/mec/notifications.php:663 app/features/mec/settings.php:1788
1787
  msgid "Checking ..."
1788
  msgstr "Überprüfung"
1789
 
@@ -1841,8 +1856,8 @@ msgstr ""
1841
  #: app/features/mec/meta_boxes/display_options.php:470
1842
  #: app/features/mec/meta_boxes/display_options.php:577
1843
  #: app/features/mec/meta_boxes/display_options.php:684
1844
- #: app/features/mec/meta_boxes/display_options.php:734
1845
- #: app/features/mec/meta_boxes/display_options.php:914
1846
  #: app/features/mec/settings.php:811 app/features/mec/settings.php:985
1847
  #: app/features/mec/settings.php:1003 app/features/mec/settings.php:1327
1848
  #: app/features/mec/settings.php:1436 app/features/mec/settings.php:1454
@@ -2028,7 +2043,7 @@ msgid "Auto Synchronization"
2028
  msgstr "Auto Synchronisation"
2029
 
2030
  #: app/features/ix/sync.php:22
2031
- #: app/features/mec/meta_boxes/display_options.php:734
2032
  #, php-format
2033
  msgid "%s is required to use synchronization feature."
2034
  msgstr ""
@@ -2039,7 +2054,7 @@ msgstr "Automatischer Google Calender Import"
2039
 
2040
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2041
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2042
- #: app/features/mec/notifications.php:457
2043
  msgid "Important Note"
2044
  msgstr "Important Note"
2045
 
@@ -2175,10 +2190,10 @@ msgstr "Wähle Label Farbe"
2175
  #: app/features/mec/meta_boxes/display_options.php:475
2176
  #: app/features/mec/meta_boxes/display_options.php:525
2177
  #: app/features/mec/meta_boxes/display_options.php:689
2178
- #: app/features/mec/meta_boxes/display_options.php:796
2179
- #: app/features/mec/meta_boxes/display_options.php:853
2180
- #: app/features/mec/meta_boxes/display_options.php:945
2181
- #: app/features/mec/meta_boxes/display_options.php:1031
2182
  msgid "Style"
2183
  msgstr "Style"
2184
 
@@ -2194,7 +2209,7 @@ msgstr ""
2194
  #: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:82
2195
  #: app/skins/monthly_view/calendar_clean.php:81
2196
  #: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
2197
- #: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
2198
  #: app/skins/weekly_view/render.php:31 app/skins/yearly_view/render.php:48
2199
  #, fuzzy
2200
  #| msgid "Featured Image"
@@ -2202,7 +2217,7 @@ msgid "Featured"
2202
  msgstr "Ausgewähltes Bild"
2203
 
2204
  #: app/features/labels.php:117 app/features/labels.php:142
2205
- #: app/libraries/main.php:4571 app/skins/agenda/render.php:41
2206
  #: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:59
2207
  #: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
2208
  #: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
@@ -2210,7 +2225,7 @@ msgstr "Ausgewähltes Bild"
2210
  #: app/skins/monthly_view/calendar.php:86
2211
  #: app/skins/monthly_view/calendar_clean.php:85
2212
  #: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
2213
- #: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
2214
  #: app/skins/weekly_view/render.php:35 app/skins/yearly_view/render.php:52
2215
  msgid "Canceled"
2216
  msgstr "Abgesagt"
@@ -2220,7 +2235,7 @@ msgid "You can show featured and canceled events by a different style!"
2220
  msgstr ""
2221
 
2222
  #: app/features/labels.php:179 app/features/locations.php:231
2223
- #: app/features/organizers.php:201 app/features/speakers.php:245
2224
  #: app/modules/booking/steps/tickets.php:38
2225
  msgid "Count"
2226
  msgstr "Zähler"
@@ -2237,7 +2252,7 @@ msgstr "Event %s"
2237
 
2238
  #: app/features/locations.php:59 app/features/mec.php:319
2239
  #: app/features/mec/dashboard.php:201 app/features/mec/meta_boxes/filter.php:87
2240
- #: app/libraries/main.php:4379
2241
  msgid "Locations"
2242
  msgstr "Orte"
2243
 
@@ -2270,13 +2285,13 @@ msgstr "Geologischer Längengrad (Optional)"
2270
 
2271
  #: app/features/locations.php:137 app/features/locations.php:179
2272
  #: app/features/organizers.php:126 app/features/organizers.php:158
2273
- #: app/features/speakers.php:151 app/features/speakers.php:195
2274
  msgid "Thumbnail"
2275
  msgstr "Miniaturansicht"
2276
 
2277
  #: app/features/locations.php:142 app/features/locations.php:182
2278
  #: app/features/organizers.php:131 app/features/organizers.php:161
2279
- #: app/features/speakers.php:156 app/features/speakers.php:198
2280
  msgid "Upload/Add image"
2281
  msgstr "Bild hochladen/hinzufügen"
2282
 
@@ -2284,7 +2299,7 @@ msgstr "Bild hochladen/hinzufügen"
2284
  #: app/features/locations.php:339 app/features/locations.php:346
2285
  #: app/features/organizers.php:132 app/features/organizers.php:162
2286
  #: app/features/organizers.php:294 app/features/organizers.php:301
2287
- #: app/features/speakers.php:157 app/features/speakers.php:199
2288
  msgid "Remove image"
2289
  msgstr "Bild entfernen"
2290
 
@@ -2349,7 +2364,7 @@ msgstr "Bild wählen"
2349
  msgid "Don't show map in single event page"
2350
  msgstr "Karte in Einzelansicht nicht anzeigen"
2351
 
2352
- #: app/features/locations.php:355 app/libraries/main.php:4413
2353
  #, fuzzy
2354
  #| msgid "Locations"
2355
  msgid "Other Locations"
@@ -2401,7 +2416,7 @@ msgstr "Support"
2401
 
2402
  #: app/features/mec.php:299 app/features/mec/gateways.php:84
2403
  #: app/features/mec/ie.php:80 app/features/mec/messages.php:84
2404
- #: app/features/mec/notifications.php:130 app/features/mec/regform.php:118
2405
  #: app/features/mec/settings.php:268 app/features/mec/styles.php:84
2406
  #: app/features/mec/styling.php:106 app/features/mec/support-page.php:9
2407
  #: app/features/mec/support.php:80 app/features/mec/support.php:93
@@ -2410,11 +2425,11 @@ msgstr "Support"
2410
 
2411
  #: app/features/mec.php:320 app/features/mec/dashboard.php:208
2412
  #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2413
- #: app/libraries/main.php:4381
2414
  msgid "Organizers"
2415
  msgstr "Veranstalter"
2416
 
2417
- #: app/features/mec.php:328 app/features/mec.php:347
2418
  #: app/features/mec/dashboard.php:194
2419
  msgid "Shortcodes"
2420
  msgstr "Shortcodes"
@@ -2433,55 +2448,55 @@ msgstr "MEC - Einstellungen"
2433
  msgid "Addons"
2434
  msgstr ""
2435
 
2436
- #: app/features/mec.php:349
2437
  msgid "Add Shortcode"
2438
  msgstr "Shortcode hinzufügen"
2439
 
2440
- #: app/features/mec.php:350
2441
  msgid "Add New Shortcode"
2442
  msgstr "Neuen Shortcode hinzufügen"
2443
 
2444
- #: app/features/mec.php:351
2445
  msgid "No shortcodes found!"
2446
  msgstr "Keine Shortcodes gefunden!"
2447
 
2448
- #: app/features/mec.php:352
2449
  msgid "All Shortcodes"
2450
  msgstr "Alle Shortcodes"
2451
 
2452
- #: app/features/mec.php:353
2453
  msgid "Edit shortcodes"
2454
  msgstr "Shortcode ändern"
2455
 
2456
- #: app/features/mec.php:354
2457
  msgid "No shortcodes found in Trash!"
2458
  msgstr "Keine Shortcodes im Papierkorb gefunden!"
2459
 
2460
- #: app/features/mec.php:402
2461
  msgid "Display Options"
2462
  msgstr "Darstellungsoptionen"
2463
 
2464
- #: app/features/mec.php:403
2465
  msgid "Filter Options"
2466
  msgstr "Filteroptionen"
2467
 
2468
- #: app/features/mec.php:405
2469
  msgid "Search Form"
2470
  msgstr "Suche Formular"
2471
 
2472
- #: app/features/mec.php:755
2473
  msgid "Display content's images as Popup"
2474
  msgstr ""
2475
 
2476
- #: app/features/mec.php:768
2477
  msgid "Single Event Display Method"
2478
  msgstr "Single Event Anzeigemethode"
2479
 
2480
- #: app/features/mec.php:773
2481
  msgid "Separate Window"
2482
  msgstr "Separates Fenster"
2483
 
2484
- #: app/features/mec.php:774
2485
  msgid "Modal 1"
2486
  msgstr "Modal 1"
2487
 
@@ -2531,7 +2546,7 @@ msgstr ""
2531
  msgid "Modern Events Calendar (Lite)"
2532
  msgstr "Moderner Event Kalender "
2533
 
2534
- #: app/features/mec/dashboard.php:65 app/libraries/factory.php:191
2535
  msgctxt "plugin rate"
2536
  msgid "Rate the plugin ★★★★★"
2537
  msgstr ""
@@ -2642,10 +2657,10 @@ msgstr "Änderungsprotokoll"
2642
  #: app/features/mec/gateways.php:171 app/features/mec/messages.php:11
2643
  #: app/features/mec/messages.php:118 app/features/mec/messages.php:127
2644
  #: app/features/mec/messages.php:161 app/features/mec/messages.php:170
2645
- #: app/features/mec/notifications.php:10 app/features/mec/notifications.php:569
2646
- #: app/features/mec/notifications.php:581
2647
- #: app/features/mec/notifications.php:680
2648
- #: app/features/mec/notifications.php:694 app/features/mec/regform.php:47
2649
  #: app/features/mec/regform.php:198 app/features/mec/regform.php:253
2650
  #: app/features/mec/regform.php:289 app/features/mec/regform.php:298
2651
  #: app/features/mec/settings.php:28 app/features/mec/settings.php:1714
@@ -2653,14 +2668,14 @@ msgstr "Änderungsprotokoll"
2653
  #: app/features/mec/settings.php:1819 app/features/mec/styles.php:11
2654
  #: app/features/mec/styles.php:103 app/features/mec/styles.php:112
2655
  #: app/features/mec/styles.php:149 app/features/mec/styles.php:158
2656
- #: app/features/mec/styling.php:33 app/features/mec/styling.php:321
2657
- #: app/features/mec/styling.php:330 app/features/mec/styling.php:393
2658
- #: app/features/mec/styling.php:402
2659
  msgid "Save Changes"
2660
  msgstr "Änderungen sichern"
2661
 
2662
  #: app/features/mec/gateways.php:56 app/features/mec/ie.php:52
2663
- #: app/features/mec/messages.php:56 app/features/mec/notifications.php:102
2664
  #: app/features/mec/regform.php:90 app/features/mec/settings.php:240
2665
  #: app/features/mec/styles.php:56 app/features/mec/styling.php:78
2666
  #: app/features/mec/support.php:52
@@ -2668,7 +2683,7 @@ msgid "Styling Options"
2668
  msgstr "Styling-Optionen"
2669
 
2670
  #: app/features/mec/gateways.php:63 app/features/mec/ie.php:59
2671
- #: app/features/mec/messages.php:63 app/features/mec/notifications.php:109
2672
  #: app/features/mec/regform.php:97 app/features/mec/settings.php:247
2673
  #: app/features/mec/styles.php:63 app/features/mec/styling.php:85
2674
  #: app/features/mec/support.php:59
@@ -2677,23 +2692,23 @@ msgstr "Custom CSS"
2677
 
2678
  #: app/features/mec/gateways.php:70 app/features/mec/ie.php:66
2679
  #: app/features/mec/messages.php:70 app/features/mec/messages.php:97
2680
- #: app/features/mec/notifications.php:116 app/features/mec/regform.php:104
2681
  #: app/features/mec/settings.php:254 app/features/mec/styles.php:70
2682
  #: app/features/mec/styling.php:92 app/features/mec/support.php:66
2683
  msgid "Messages"
2684
  msgstr "Nachrichten"
2685
 
2686
  #: app/features/mec/gateways.php:140 app/features/mec/messages.php:145
2687
- #: app/features/mec/notifications.php:658 app/features/mec/regform.php:273
2688
  #: app/features/mec/settings.php:1783 app/features/mec/styles.php:132
2689
- #: app/features/mec/styling.php:375
2690
  msgid "Saved"
2691
  msgstr "Gesichert"
2692
 
2693
  #: app/features/mec/gateways.php:141 app/features/mec/messages.php:146
2694
- #: app/features/mec/notifications.php:659 app/features/mec/regform.php:274
2695
  #: app/features/mec/settings.php:1784 app/features/mec/styles.php:133
2696
- #: app/features/mec/styling.php:376
2697
  msgid "Settings Saved!"
2698
  msgstr ""
2699
 
@@ -2744,7 +2759,7 @@ msgstr "Skin"
2744
  #: app/features/mec/meta_boxes/display_options.php:34
2745
  #: app/features/mec/meta_boxes/display_options.php:159
2746
  #: app/features/mec/meta_boxes/display_options.php:527
2747
- #: app/features/mec/meta_boxes/display_options.php:798
2748
  #: app/features/mec/settings.php:432 app/features/mec/settings.php:456
2749
  #: app/features/mec/settings.php:465 app/features/mec/settings.php:506
2750
  #: app/features/mec/settings.php:530 app/features/mec/settings.php:539
@@ -2763,7 +2778,7 @@ msgstr "Minimal"
2763
  #: app/features/mec/meta_boxes/display_options.php:477
2764
  #: app/features/mec/meta_boxes/display_options.php:529
2765
  #: app/features/mec/meta_boxes/display_options.php:691
2766
- #: app/features/mec/meta_boxes/display_options.php:800
2767
  #: app/features/mec/settings.php:434 app/features/mec/settings.php:447
2768
  #: app/features/mec/settings.php:458 app/features/mec/settings.php:468
2769
  #: app/features/mec/settings.php:508 app/features/mec/settings.php:521
@@ -2786,9 +2801,9 @@ msgstr "Accordion"
2786
  #: app/features/mec/meta_boxes/display_options.php:309
2787
  #: app/features/mec/meta_boxes/display_options.php:584
2788
  #: app/features/mec/meta_boxes/display_options.php:617
2789
- #: app/features/mec/meta_boxes/display_options.php:741
2790
- #: app/features/mec/meta_boxes/display_options.php:956
2791
- #: app/features/mec/meta_boxes/display_options.php:1043
2792
  msgid "Today"
2793
  msgstr "Heute"
2794
 
@@ -2797,9 +2812,9 @@ msgstr "Heute"
2797
  #: app/features/mec/meta_boxes/display_options.php:310
2798
  #: app/features/mec/meta_boxes/display_options.php:585
2799
  #: app/features/mec/meta_boxes/display_options.php:618
2800
- #: app/features/mec/meta_boxes/display_options.php:742
2801
- #: app/features/mec/meta_boxes/display_options.php:957
2802
- #: app/features/mec/meta_boxes/display_options.php:1044
2803
  msgid "Tomorrow"
2804
  msgstr "Morgen"
2805
 
@@ -2812,9 +2827,9 @@ msgstr "Morgen"
2812
  #: app/features/mec/meta_boxes/display_options.php:619
2813
  #: app/features/mec/meta_boxes/display_options.php:654
2814
  #: app/features/mec/meta_boxes/display_options.php:700
2815
- #: app/features/mec/meta_boxes/display_options.php:743
2816
- #: app/features/mec/meta_boxes/display_options.php:958
2817
- #: app/features/mec/meta_boxes/display_options.php:1045
2818
  msgid "Start of Current Month"
2819
  msgstr "Mit Beginn des laufenden Monats"
2820
 
@@ -2827,9 +2842,9 @@ msgstr "Mit Beginn des laufenden Monats"
2827
  #: app/features/mec/meta_boxes/display_options.php:620
2828
  #: app/features/mec/meta_boxes/display_options.php:655
2829
  #: app/features/mec/meta_boxes/display_options.php:701
2830
- #: app/features/mec/meta_boxes/display_options.php:744
2831
- #: app/features/mec/meta_boxes/display_options.php:959
2832
- #: app/features/mec/meta_boxes/display_options.php:1046
2833
  msgid "Start of Next Month"
2834
  msgstr "Mit Beginn des kommenden Monats"
2835
 
@@ -2843,9 +2858,9 @@ msgstr "Mit Beginn des kommenden Monats"
2843
  #: app/features/mec/meta_boxes/display_options.php:621
2844
  #: app/features/mec/meta_boxes/display_options.php:656
2845
  #: app/features/mec/meta_boxes/display_options.php:702
2846
- #: app/features/mec/meta_boxes/display_options.php:745
2847
- #: app/features/mec/meta_boxes/display_options.php:960
2848
- #: app/features/mec/meta_boxes/display_options.php:1047
2849
  msgid "On a certain date"
2850
  msgstr "An einem bestimmten Tag"
2851
 
@@ -2859,9 +2874,9 @@ msgstr "An einem bestimmten Tag"
2859
  #: app/features/mec/meta_boxes/display_options.php:625
2860
  #: app/features/mec/meta_boxes/display_options.php:659
2861
  #: app/features/mec/meta_boxes/display_options.php:705
2862
- #: app/features/mec/meta_boxes/display_options.php:748
2863
- #: app/features/mec/meta_boxes/display_options.php:963
2864
- #: app/features/mec/meta_boxes/display_options.php:1050
2865
  #, php-format
2866
  msgid "eg. %s"
2867
  msgstr "z.B. %s"
@@ -2894,38 +2909,38 @@ msgstr "z.B. %s"
2894
  #: app/features/mec/meta_boxes/display_options.php:325
2895
  #: app/features/mec/meta_boxes/display_options.php:492
2896
  #: app/features/mec/meta_boxes/display_options.php:497
2897
- #: app/features/mec/meta_boxes/display_options.php:752
2898
- #: app/features/mec/meta_boxes/display_options.php:757
2899
- #: app/features/mec/meta_boxes/display_options.php:804
2900
- #: app/features/mec/meta_boxes/display_options.php:810
2901
- #: app/features/mec/meta_boxes/display_options.php:817
2902
- #: app/features/mec/meta_boxes/display_options.php:822
2903
- #: app/features/mec/meta_boxes/display_options.php:829
2904
  #: app/features/mec/meta_boxes/display_options.php:833
2905
- #: app/features/mec/meta_boxes/display_options.php:861
2906
- #: app/features/mec/meta_boxes/display_options.php:865
2907
- #: app/features/mec/meta_boxes/display_options.php:872
2908
- #: app/features/mec/meta_boxes/display_options.php:876
2909
- #: app/features/mec/meta_boxes/display_options.php:883
2910
- #: app/features/mec/meta_boxes/display_options.php:889
2911
- #: app/features/mec/meta_boxes/display_options.php:919
2912
- #: app/features/mec/meta_boxes/display_options.php:924
2913
- #: app/features/mec/meta_boxes/display_options.php:967
2914
- #: app/features/mec/meta_boxes/display_options.php:973
2915
- #: app/features/mec/meta_boxes/display_options.php:980
2916
- #: app/features/mec/meta_boxes/display_options.php:984
2917
- #: app/features/mec/meta_boxes/display_options.php:991
2918
- #: app/features/mec/meta_boxes/display_options.php:995
2919
- #: app/features/mec/meta_boxes/display_options.php:1054
2920
- #: app/features/mec/meta_boxes/display_options.php:1060
2921
- #: app/features/mec/meta_boxes/display_options.php:1067
2922
- #: app/features/mec/meta_boxes/display_options.php:1073
2923
- #: app/features/mec/meta_boxes/display_options.php:1080
2924
- #: app/features/mec/meta_boxes/display_options.php:1086
2925
- #: app/features/mec/meta_boxes/display_options.php:1093
2926
- #: app/features/mec/meta_boxes/display_options.php:1099
2927
- #: app/features/mec/meta_boxes/display_options.php:1106
2928
- #: app/features/mec/meta_boxes/display_options.php:1112
 
 
 
 
2929
  msgid "Date Formats"
2930
  msgstr "Datumsformate"
2931
 
@@ -2941,11 +2956,11 @@ msgstr "Standard Werte sind T, M und J"
2941
  #: app/features/mec/meta_boxes/display_options.php:86
2942
  #: app/features/mec/meta_boxes/display_options.php:224
2943
  #: app/features/mec/meta_boxes/display_options.php:248
2944
- #: app/features/mec/meta_boxes/display_options.php:1061
2945
- #: app/features/mec/meta_boxes/display_options.php:1074
2946
- #: app/features/mec/meta_boxes/display_options.php:1087
2947
- #: app/features/mec/meta_boxes/display_options.php:1100
2948
- #: app/features/mec/meta_boxes/display_options.php:1113
2949
  msgid "Default values are d, F and l"
2950
  msgstr ""
2951
  "Standardwerte sind Tag, Monat als ganzes Wort und Wochentag als ganzes Wort"
@@ -2963,9 +2978,9 @@ msgstr "Die Standardwerte sind d and F"
2963
  #: app/features/mec/meta_boxes/display_options.php:115
2964
  #: app/features/mec/meta_boxes/display_options.php:276
2965
  #: app/features/mec/meta_boxes/display_options.php:332
2966
- #: app/features/mec/meta_boxes/display_options.php:764
2967
- #: app/features/mec/meta_boxes/display_options.php:1011
2968
- #: app/features/mec/meta_boxes/display_options.php:1119
2969
  msgid "Limit"
2970
  msgstr "Limit"
2971
 
@@ -2977,8 +2992,8 @@ msgstr "Limit"
2977
  #: app/features/mec/meta_boxes/display_options.php:630
2978
  #: app/features/mec/meta_boxes/display_options.php:664
2979
  #: app/features/mec/meta_boxes/display_options.php:710
2980
- #: app/features/mec/meta_boxes/display_options.php:1012
2981
- #: app/features/mec/meta_boxes/display_options.php:1120
2982
  msgid "eg. 6"
2983
  msgstr "z.B. 6"
2984
 
@@ -3004,7 +3019,7 @@ msgstr "Zeige Monatsteilung"
3004
  #: app/features/mec/meta_boxes/display_options.php:385
3005
  #: app/features/mec/meta_boxes/display_options.php:528
3006
  #: app/features/mec/meta_boxes/display_options.php:692
3007
- #: app/features/mec/meta_boxes/display_options.php:799
3008
  #: app/features/mec/settings.php:433 app/features/mec/settings.php:448
3009
  #: app/features/mec/settings.php:466 app/features/mec/settings.php:507
3010
  #: app/features/mec/settings.php:522 app/features/mec/settings.php:540
@@ -3050,7 +3065,7 @@ msgid "Default value is \"d F Y\""
3050
  msgstr "Standardwert ist \"d (Tag) F Y (Jahr)\" "
3051
 
3052
  #: app/features/mec/meta_boxes/display_options.php:265
3053
- #: app/features/mec/meta_boxes/display_options.php:1002
3054
  msgid "Count in row"
3055
  msgstr "Zeilen zählen"
3056
 
@@ -3058,7 +3073,7 @@ msgstr "Zeilen zählen"
3058
  #: app/features/mec/meta_boxes/display_options.php:470
3059
  #: app/features/mec/meta_boxes/display_options.php:577
3060
  #: app/features/mec/meta_boxes/display_options.php:684
3061
- #: app/features/mec/meta_boxes/display_options.php:914
3062
  #, php-format
3063
  msgid "%s is required to use this skin."
3064
  msgstr ""
@@ -3074,15 +3089,15 @@ msgstr "Standardansicht"
3074
 
3075
  #: app/features/mec/meta_boxes/display_options.php:375
3076
  #: app/features/mec/meta_boxes/display_options.php:392
3077
- #: app/libraries/main.php:329 app/libraries/main.php:1201
3078
- #: app/libraries/main.php:1226
3079
  msgid "List View"
3080
  msgstr "Listenansicht"
3081
 
3082
  #: app/features/mec/meta_boxes/display_options.php:376
3083
  #: app/features/mec/meta_boxes/display_options.php:402
3084
- #: app/libraries/main.php:333 app/libraries/main.php:1195
3085
- #: app/libraries/main.php:1220
3086
  msgid "Yearly View"
3087
  msgstr "Jahresansicht"
3088
 
@@ -3093,15 +3108,15 @@ msgstr "Monatliche Kalenderansicht"
3093
 
3094
  #: app/features/mec/meta_boxes/display_options.php:378
3095
  #: app/features/mec/meta_boxes/display_options.php:434
3096
- #: app/libraries/main.php:336 app/libraries/main.php:1197
3097
- #: app/libraries/main.php:1222
3098
  msgid "Weekly View"
3099
  msgstr "Wochenansicht"
3100
 
3101
  #: app/features/mec/meta_boxes/display_options.php:379
3102
  #: app/features/mec/meta_boxes/display_options.php:444
3103
- #: app/libraries/main.php:335 app/libraries/main.php:1198
3104
- #: app/libraries/main.php:1223
3105
  msgid "Daily View"
3106
  msgstr "Tagesansicht"
3107
 
@@ -3144,7 +3159,7 @@ msgstr "Veranstaltungen pro Tag"
3144
  #: app/features/mec/meta_boxes/display_options.php:551
3145
  #: app/features/mec/meta_boxes/display_options.php:634
3146
  #: app/features/mec/meta_boxes/display_options.php:668
3147
- #: app/features/mec/meta_boxes/display_options.php:715
3148
  msgid "Next/Previous Buttons"
3149
  msgstr "Schaltfläche \"Nächste/Letzte\""
3150
 
@@ -3161,7 +3176,7 @@ msgstr "Text"
3161
  #: app/features/mec/meta_boxes/display_options.php:569
3162
  #: app/features/mec/meta_boxes/display_options.php:642
3163
  #: app/features/mec/meta_boxes/display_options.php:676
3164
- #: app/features/mec/meta_boxes/display_options.php:723
3165
  msgid "For showing next/previous month navigation."
3166
  msgstr "Für die Navigation zum nächsten/letzten Monat"
3167
 
@@ -3191,126 +3206,146 @@ msgstr "Aktuelle Woche"
3191
  msgid "Next Week"
3192
  msgstr "Nächste Woche"
3193
 
3194
- #: app/features/mec/meta_boxes/display_options.php:758
3195
- #: app/features/mec/meta_boxes/display_options.php:925
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3196
  msgid "Default values are j and F"
3197
  msgstr "Standardwerte sind j und F"
3198
 
3199
- #: app/features/mec/meta_boxes/display_options.php:765
3200
  msgid "eg. 24"
3201
  msgstr "z.B. 24"
3202
 
3203
- #: app/features/mec/meta_boxes/display_options.php:768
3204
  msgid "Filter By"
3205
  msgstr "Filtern nach"
3206
 
3207
- #: app/features/mec/meta_boxes/display_options.php:779
 
 
 
 
3208
  msgid "Convert Masonry to Grid"
3209
  msgstr ""
3210
 
3211
- #: app/features/mec/meta_boxes/display_options.php:780
3212
  msgid "For using this option, your events should come with image"
3213
  msgstr ""
3214
 
3215
- #: app/features/mec/meta_boxes/display_options.php:811
3216
  msgid "Default values are d, M and Y"
3217
  msgstr "Standardwerte sind T, M und J"
3218
 
3219
- #: app/features/mec/meta_boxes/display_options.php:823
3220
  msgid "Default values are \"F d\" and l"
3221
  msgstr ""
3222
  "Standardwerte sind Monat als ganzes Wort, Tag des Monates mit führender Null "
3223
  "und ausgeschriebener Wochentag"
3224
 
3225
- #: app/features/mec/meta_boxes/display_options.php:834
3226
  msgid "Default value is \"l, F d Y\""
3227
  msgstr ""
3228
  "Standardwerte sind ausgeschriebener Wochentag, Monat als ganzes Wort, Tag "
3229
  "des Monates mit führender 0, Jahr"
3230
 
3231
- #: app/features/mec/meta_boxes/display_options.php:855
3232
  msgid "Style 1"
3233
  msgstr "Stil 1"
3234
 
3235
- #: app/features/mec/meta_boxes/display_options.php:856
3236
  msgid "Style 2"
3237
  msgstr "Stil 2"
3238
 
3239
- #: app/features/mec/meta_boxes/display_options.php:857
3240
  msgid "Style 3"
3241
  msgstr "Stil 3"
3242
 
3243
- #: app/features/mec/meta_boxes/display_options.php:866
3244
- #: app/features/mec/meta_boxes/display_options.php:877
3245
  msgid "Default value is \"j F Y\""
3246
  msgstr "Standardwert ist \"j F Y\""
3247
 
3248
- #: app/features/mec/meta_boxes/display_options.php:890
3249
  msgid "Default values are j, F and Y"
3250
  msgstr ""
3251
  "Standardwerte sind j ( Tag des Monats ohne führende Nullen), F und Y (Jahr)"
3252
 
3253
- #: app/features/mec/meta_boxes/display_options.php:898
3254
- #: app/features/mec/meta_boxes/display_options.php:933
3255
  msgid " -- Next Upcoming Event -- "
3256
  msgstr "-- Nächste Veranstaltung--"
3257
 
3258
- #: app/features/mec/meta_boxes/display_options.php:905
3259
  msgid "Background Color"
3260
  msgstr "Hintergrund Farbe"
3261
 
3262
- #: app/features/mec/meta_boxes/display_options.php:947
3263
- #: app/features/mec/meta_boxes/display_options.php:1033
3264
  msgid "Type 1"
3265
  msgstr "Typ 1"
3266
 
3267
- #: app/features/mec/meta_boxes/display_options.php:948
3268
- #: app/features/mec/meta_boxes/display_options.php:1034
3269
  msgid "Type 2"
3270
  msgstr "Typ 2"
3271
 
3272
- #: app/features/mec/meta_boxes/display_options.php:949
3273
- #: app/features/mec/meta_boxes/display_options.php:1035
3274
  msgid "Type 3"
3275
  msgstr "Type 3"
3276
 
3277
- #: app/features/mec/meta_boxes/display_options.php:950
3278
- #: app/features/mec/meta_boxes/display_options.php:1036
3279
  msgid "Type 4"
3280
  msgstr "Typ 4"
3281
 
3282
- #: app/features/mec/meta_boxes/display_options.php:974
3283
  msgid "Default values are d, F and Y"
3284
  msgstr "Standardwert ist d (Tag) F und Y (Jahr)"
3285
 
3286
- #: app/features/mec/meta_boxes/display_options.php:985
3287
- #: app/features/mec/meta_boxes/display_options.php:996
3288
  msgid "Default value is \"M d, Y\""
3289
  msgstr "Standardwert ist \"M T, J\""
3290
 
3291
- #: app/features/mec/meta_boxes/display_options.php:1015
3292
- #: app/features/mec/meta_boxes/display_options.php:1123
3293
  msgid "Auto Play Time"
3294
  msgstr "Auto Play Time"
3295
 
3296
- #: app/features/mec/meta_boxes/display_options.php:1016
3297
- #: app/features/mec/meta_boxes/display_options.php:1124
3298
  msgid "eg. 3000 default is 3 second"
3299
  msgstr "z.B. Voreinstellung 3000 sind 3 Sekunden"
3300
 
3301
- #: app/features/mec/meta_boxes/display_options.php:1020
3302
  #, fuzzy
3303
  #| msgid "Archive Page Skin"
3304
  msgid "Archive Link"
3305
  msgstr "Skin Seite Archiv"
3306
 
3307
- #: app/features/mec/meta_boxes/display_options.php:1024
3308
  #, fuzzy
3309
  #| msgid "Text"
3310
  msgid "Head Text"
3311
  msgstr "Text"
3312
 
3313
- #: app/features/mec/meta_boxes/display_options.php:1037
3314
  msgid "Type 5"
3315
  msgstr "Typ 5"
3316
 
@@ -3410,53 +3445,58 @@ msgstr "Such Formular anzeigen"
3410
  #: app/features/mec/meta_boxes/search_form.php:216
3411
  #: app/features/mec/meta_boxes/search_form.php:223
3412
  #: app/features/mec/meta_boxes/search_form.php:230
3413
- #: app/features/mec/meta_boxes/search_form.php:242
3414
- #: app/features/mec/meta_boxes/search_form.php:249
3415
- #: app/features/mec/meta_boxes/search_form.php:256
3416
- #: app/features/mec/meta_boxes/search_form.php:263
3417
- #: app/features/mec/meta_boxes/search_form.php:270
3418
  #: app/features/mec/meta_boxes/search_form.php:277
3419
  #: app/features/mec/meta_boxes/search_form.php:284
3420
  #: app/features/mec/meta_boxes/search_form.php:291
3421
- #: app/features/mec/meta_boxes/search_form.php:303
3422
- #: app/features/mec/meta_boxes/search_form.php:310
3423
- #: app/features/mec/meta_boxes/search_form.php:317
3424
- #: app/features/mec/meta_boxes/search_form.php:324
3425
- #: app/features/mec/meta_boxes/search_form.php:331
3426
  #: app/features/mec/meta_boxes/search_form.php:338
3427
  #: app/features/mec/meta_boxes/search_form.php:345
3428
  #: app/features/mec/meta_boxes/search_form.php:352
3429
- #: app/features/mec/meta_boxes/search_form.php:364
3430
- #: app/features/mec/meta_boxes/search_form.php:371
3431
- #: app/features/mec/meta_boxes/search_form.php:378
3432
- #: app/features/mec/meta_boxes/search_form.php:385
3433
- #: app/features/mec/meta_boxes/search_form.php:392
3434
  #: app/features/mec/meta_boxes/search_form.php:399
3435
  #: app/features/mec/meta_boxes/search_form.php:406
3436
- #: app/features/mec/meta_boxes/search_form.php:418
3437
- #: app/features/mec/meta_boxes/search_form.php:425
3438
- #: app/features/mec/meta_boxes/search_form.php:432
3439
- #: app/features/mec/meta_boxes/search_form.php:439
3440
- #: app/features/mec/meta_boxes/search_form.php:446
3441
  #: app/features/mec/meta_boxes/search_form.php:453
3442
  #: app/features/mec/meta_boxes/search_form.php:460
3443
  #: app/features/mec/meta_boxes/search_form.php:467
3444
- #: app/features/mec/meta_boxes/search_form.php:479
3445
- #: app/features/mec/meta_boxes/search_form.php:486
3446
- #: app/features/mec/meta_boxes/search_form.php:493
3447
- #: app/features/mec/meta_boxes/search_form.php:500
3448
- #: app/features/mec/meta_boxes/search_form.php:507
3449
  #: app/features/mec/meta_boxes/search_form.php:514
3450
  #: app/features/mec/meta_boxes/search_form.php:521
3451
  #: app/features/mec/meta_boxes/search_form.php:528
3452
- #: app/features/mec/meta_boxes/search_form.php:540
3453
- #: app/features/mec/meta_boxes/search_form.php:547
3454
- #: app/features/mec/meta_boxes/search_form.php:554
3455
- #: app/features/mec/meta_boxes/search_form.php:561
3456
- #: app/features/mec/meta_boxes/search_form.php:568
3457
  #: app/features/mec/meta_boxes/search_form.php:575
3458
  #: app/features/mec/meta_boxes/search_form.php:582
3459
  #: app/features/mec/meta_boxes/search_form.php:589
 
 
 
 
 
3460
  #: app/features/mec/settings.php:330 app/features/mec/settings.php:586
3461
  #: app/features/mec/settings.php:866
3462
  msgid "Disabled"
@@ -3465,26 +3505,28 @@ msgstr "Deaktiviert"
3465
  #: app/features/mec/meta_boxes/search_form.php:52
3466
  #: app/features/mec/meta_boxes/search_form.php:113
3467
  #: app/features/mec/meta_boxes/search_form.php:174
3468
- #: app/features/mec/meta_boxes/search_form.php:261
3469
- #: app/features/mec/meta_boxes/search_form.php:322
3470
- #: app/features/mec/meta_boxes/search_form.php:383
3471
- #: app/features/mec/meta_boxes/search_form.php:437
3472
- #: app/features/mec/meta_boxes/search_form.php:498
3473
- #: app/features/mec/meta_boxes/search_form.php:559 app/features/speakers.php:56
3474
- #: app/features/speakers.php:242 app/libraries/main.php:4384
3475
- #: app/libraries/skins.php:853
 
3476
  msgid "Speaker"
3477
  msgstr ""
3478
 
3479
  #: app/features/mec/meta_boxes/search_form.php:59
3480
  #: app/features/mec/meta_boxes/search_form.php:120
3481
  #: app/features/mec/meta_boxes/search_form.php:181
3482
- #: app/features/mec/meta_boxes/search_form.php:268
3483
- #: app/features/mec/meta_boxes/search_form.php:329
3484
- #: app/features/mec/meta_boxes/search_form.php:390
3485
- #: app/features/mec/meta_boxes/search_form.php:444
3486
- #: app/features/mec/meta_boxes/search_form.php:505
3487
- #: app/features/mec/meta_boxes/search_form.php:566 app/libraries/skins.php:879
 
3488
  #, fuzzy
3489
  #| msgid "Tags"
3490
  msgid "Tag"
@@ -3493,147 +3535,137 @@ msgstr "Schlagworte"
3493
  #: app/features/mec/meta_boxes/search_form.php:73
3494
  #: app/features/mec/meta_boxes/search_form.php:134
3495
  #: app/features/mec/meta_boxes/search_form.php:195
3496
- #: app/features/mec/meta_boxes/search_form.php:221
3497
- #: app/features/mec/meta_boxes/search_form.php:282
3498
- #: app/features/mec/meta_boxes/search_form.php:343
3499
- #: app/features/mec/meta_boxes/search_form.php:458
3500
- #: app/features/mec/meta_boxes/search_form.php:519
3501
- #: app/features/mec/meta_boxes/search_form.php:580
3502
  msgid "Month Filter"
3503
  msgstr "Monatsfilter"
3504
 
3505
  #: app/features/mec/meta_boxes/search_form.php:80
3506
  #: app/features/mec/meta_boxes/search_form.php:141
3507
  #: app/features/mec/meta_boxes/search_form.php:202
3508
- #: app/features/mec/meta_boxes/search_form.php:228
3509
- #: app/features/mec/meta_boxes/search_form.php:289
3510
- #: app/features/mec/meta_boxes/search_form.php:350
3511
- #: app/features/mec/meta_boxes/search_form.php:404
3512
- #: app/features/mec/meta_boxes/search_form.php:465
3513
- #: app/features/mec/meta_boxes/search_form.php:526
3514
- #: app/features/mec/meta_boxes/search_form.php:587
3515
  msgid "Text Search"
3516
  msgstr "Textsuche"
3517
 
3518
  #: app/features/mec/meta_boxes/search_form.php:83
3519
  #: app/features/mec/meta_boxes/search_form.php:144
3520
  #: app/features/mec/meta_boxes/search_form.php:205
3521
- #: app/features/mec/meta_boxes/search_form.php:231
3522
- #: app/features/mec/meta_boxes/search_form.php:292
3523
- #: app/features/mec/meta_boxes/search_form.php:353
3524
- #: app/features/mec/meta_boxes/search_form.php:407
3525
- #: app/features/mec/meta_boxes/search_form.php:468
3526
- #: app/features/mec/meta_boxes/search_form.php:529
3527
- #: app/features/mec/meta_boxes/search_form.php:590
3528
  msgid "Text Input"
3529
  msgstr "Text eingeben"
3530
 
3531
- #: app/features/mec/meta_boxes/search_form.php:598
3532
- #: app/features/mec/meta_boxes/search_form.php:604
3533
- #: app/features/mec/meta_boxes/search_form.php:610
3534
- #: app/features/mec/meta_boxes/search_form.php:616
3535
- #: app/features/mec/meta_boxes/search_form.php:622
3536
- #: app/features/mec/meta_boxes/search_form.php:628
3537
  msgid "No Search Options"
3538
  msgstr "Keine Suchoptionen"
3539
 
3540
- #: app/features/mec/notifications.php:55 app/features/mec/notifications.php:151
3541
  msgid "Booking Notification"
3542
  msgstr "Buchungsbenachrichtigung"
3543
 
3544
- #: app/features/mec/notifications.php:61 app/features/mec/notifications.php:216
3545
  msgid "Booking Verification"
3546
  msgstr "Verifizierung der Buchung"
3547
 
3548
- #: app/features/mec/notifications.php:67 app/features/mec/notifications.php:268
3549
  #: app/features/mec/settings.php:1409
3550
  msgid "Booking Confirmation"
3551
  msgstr "Buchungsbestätigung"
3552
 
3553
- #: app/features/mec/notifications.php:73 app/features/mec/notifications.php:320
3554
  #, fuzzy
3555
  #| msgid "Booking cancellation link."
3556
  msgid "Booking Cancellation"
3557
  msgstr "Link zur Stornierung der Buchung"
3558
 
3559
- #: app/features/mec/notifications.php:79 app/features/mec/notifications.php:387
3560
  msgid "Admin Notification"
3561
  msgstr "Admin-Benachrichtiung"
3562
 
3563
- #: app/features/mec/notifications.php:85 app/features/mec/notifications.php:447
3564
  #: app/libraries/notifications.php:354
3565
  msgid "Booking Reminder"
3566
  msgstr "Buchungs Erinnerung"
3567
 
3568
- #: app/features/mec/notifications.php:91 app/features/mec/notifications.php:522
3569
  #: app/features/mec/support-page.php:80
3570
  msgid "New Event"
3571
  msgstr "Neue Veranstaltung"
3572
 
3573
- #: app/features/mec/notifications.php:155
3574
  msgid "Enable booking notification"
3575
  msgstr "Buchungsbenachrichtigung aktivieren"
3576
 
3577
- #: app/features/mec/notifications.php:159
3578
  msgid "It sends to attendee after booking for notifying him/her."
3579
  msgstr ""
3580
  "Wird an den Teilnehmer in Anschluss an die Buchung versendet, um Ihn/Sie zu "
3581
  "benachrichtigen."
3582
 
3583
- #: app/features/mec/notifications.php:161
3584
- #: app/features/mec/notifications.php:219
3585
- #: app/features/mec/notifications.php:271
3586
- #: app/features/mec/notifications.php:330
3587
- #: app/features/mec/notifications.php:397
3588
- #: app/features/mec/notifications.php:460
3589
- #: app/features/mec/notifications.php:532
3590
  msgid "Email Subject"
3591
  msgstr "Email Betreff"
3592
 
3593
- #: app/features/mec/notifications.php:165
3594
- #: app/features/mec/notifications.php:169
3595
- #: app/features/mec/notifications.php:223
3596
- #: app/features/mec/notifications.php:227
3597
- #: app/features/mec/notifications.php:275
3598
- #: app/features/mec/notifications.php:279
3599
- #: app/features/mec/notifications.php:334
3600
- #: app/features/mec/notifications.php:338
3601
- #: app/features/mec/notifications.php:401
3602
- #: app/features/mec/notifications.php:405
3603
- #: app/features/mec/notifications.php:464
3604
- #: app/features/mec/notifications.php:468
3605
- #: app/features/mec/notifications.php:479
3606
- #: app/features/mec/notifications.php:536
3607
- #: app/features/mec/notifications.php:540
3608
  msgid "Custom Recipients"
3609
  msgstr "Individuelle Empfänger"
3610
 
3611
- #: app/features/mec/notifications.php:170
3612
- #: app/features/mec/notifications.php:228
3613
- #: app/features/mec/notifications.php:280
3614
- #: app/features/mec/notifications.php:339
3615
- #: app/features/mec/notifications.php:406
3616
- #: app/features/mec/notifications.php:469
3617
- #: app/features/mec/notifications.php:480
3618
- #: app/features/mec/notifications.php:541
3619
  msgid "Insert comma separated emails for multiple recipients."
3620
  msgstr "Geben Sie mit Komma getrennte email-Adressen ein für mehrere Empfänger"
3621
 
3622
- #: app/features/mec/notifications.php:177
3623
- #: app/features/mec/notifications.php:350
3624
- #: app/features/mec/notifications.php:413
3625
- msgid "Send the email to event organizer"
3626
- msgstr "Sendet das Email zum Event Organisator"
3627
-
3628
  #: app/features/mec/notifications.php:180
3629
- #: app/features/mec/notifications.php:234
3630
- #: app/features/mec/notifications.php:286
3631
- #: app/features/mec/notifications.php:357
3632
  #: app/features/mec/notifications.php:416
3633
- #: app/features/mec/notifications.php:486
3634
- #: app/features/mec/notifications.php:547
3635
- msgid "Email Content"
3636
- msgstr "Email Inhalt"
3637
 
3638
  #: app/features/mec/notifications.php:183
3639
  #: app/features/mec/notifications.php:237
@@ -3642,17 +3674,8 @@ msgstr "Email Inhalt"
3642
  #: app/features/mec/notifications.php:419
3643
  #: app/features/mec/notifications.php:489
3644
  #: app/features/mec/notifications.php:550
3645
- msgid "You can use following placeholders"
3646
- msgstr "Sie können die folgenden Platzhalter wählen"
3647
-
3648
- #: app/features/mec/notifications.php:185
3649
- #: app/features/mec/notifications.php:239
3650
- #: app/features/mec/notifications.php:291
3651
- #: app/features/mec/notifications.php:362
3652
- #: app/features/mec/notifications.php:421
3653
- #: app/features/mec/notifications.php:491
3654
- msgid "First name of attendee"
3655
- msgstr "Vorname des Teilnehmers"
3656
 
3657
  #: app/features/mec/notifications.php:186
3658
  #: app/features/mec/notifications.php:240
@@ -3660,17 +3683,9 @@ msgstr "Vorname des Teilnehmers"
3660
  #: app/features/mec/notifications.php:363
3661
  #: app/features/mec/notifications.php:422
3662
  #: app/features/mec/notifications.php:492
3663
- msgid "Last name of attendee"
3664
- msgstr "Nachname des Teilnehmers"
3665
-
3666
- #: app/features/mec/notifications.php:187
3667
- #: app/features/mec/notifications.php:241
3668
- #: app/features/mec/notifications.php:293
3669
- #: app/features/mec/notifications.php:364
3670
- #: app/features/mec/notifications.php:423
3671
- #: app/features/mec/notifications.php:493
3672
- msgid "Email of attendee"
3673
- msgstr "Email des Teilnehmers"
3674
 
3675
  #: app/features/mec/notifications.php:188
3676
  #: app/features/mec/notifications.php:242
@@ -3678,8 +3693,8 @@ msgstr "Email des Teilnehmers"
3678
  #: app/features/mec/notifications.php:365
3679
  #: app/features/mec/notifications.php:424
3680
  #: app/features/mec/notifications.php:494
3681
- msgid "Booked date of event"
3682
- msgstr "Gebuchtes Datum der Veranstaltung"
3683
 
3684
  #: app/features/mec/notifications.php:189
3685
  #: app/features/mec/notifications.php:243
@@ -3687,10 +3702,8 @@ msgstr "Gebuchtes Datum der Veranstaltung"
3687
  #: app/features/mec/notifications.php:366
3688
  #: app/features/mec/notifications.php:425
3689
  #: app/features/mec/notifications.php:495
3690
- #, fuzzy
3691
- #| msgid "Booked date of event"
3692
- msgid "Booked time of event"
3693
- msgstr "Gebuchtes Datum der Veranstaltung"
3694
 
3695
  #: app/features/mec/notifications.php:190
3696
  #: app/features/mec/notifications.php:244
@@ -3698,8 +3711,8 @@ msgstr "Gebuchtes Datum der Veranstaltung"
3698
  #: app/features/mec/notifications.php:367
3699
  #: app/features/mec/notifications.php:426
3700
  #: app/features/mec/notifications.php:496
3701
- msgid "Booking Price"
3702
- msgstr "Buchungspreis"
3703
 
3704
  #: app/features/mec/notifications.php:191
3705
  #: app/features/mec/notifications.php:245
@@ -3707,9 +3720,8 @@ msgstr "Buchungspreis"
3707
  #: app/features/mec/notifications.php:368
3708
  #: app/features/mec/notifications.php:427
3709
  #: app/features/mec/notifications.php:497
3710
- #: app/features/mec/notifications.php:556
3711
- msgid "Your website title"
3712
- msgstr "Titel Ihrer Webseite"
3713
 
3714
  #: app/features/mec/notifications.php:192
3715
  #: app/features/mec/notifications.php:246
@@ -3717,9 +3729,10 @@ msgstr "Titel Ihrer Webseite"
3717
  #: app/features/mec/notifications.php:369
3718
  #: app/features/mec/notifications.php:428
3719
  #: app/features/mec/notifications.php:498
3720
- #: app/features/mec/notifications.php:557
3721
- msgid "Your website URL"
3722
- msgstr "URL Ihrer Webseite"
 
3723
 
3724
  #: app/features/mec/notifications.php:193
3725
  #: app/features/mec/notifications.php:247
@@ -3727,9 +3740,8 @@ msgstr "URL Ihrer Webseite"
3727
  #: app/features/mec/notifications.php:370
3728
  #: app/features/mec/notifications.php:429
3729
  #: app/features/mec/notifications.php:499
3730
- #: app/features/mec/notifications.php:558
3731
- msgid "Your website description"
3732
- msgstr "Beschreibung Ihrer Webseite"
3733
 
3734
  #: app/features/mec/notifications.php:194
3735
  #: app/features/mec/notifications.php:248
@@ -3737,8 +3749,9 @@ msgstr "Beschreibung Ihrer Webseite"
3737
  #: app/features/mec/notifications.php:371
3738
  #: app/features/mec/notifications.php:430
3739
  #: app/features/mec/notifications.php:500
3740
- msgid "Event title"
3741
- msgstr "Titel der Veranstaltung"
 
3742
 
3743
  #: app/features/mec/notifications.php:195
3744
  #: app/features/mec/notifications.php:249
@@ -3746,10 +3759,9 @@ msgstr "Titel der Veranstaltung"
3746
  #: app/features/mec/notifications.php:372
3747
  #: app/features/mec/notifications.php:431
3748
  #: app/features/mec/notifications.php:501
3749
- #, fuzzy
3750
- #| msgid "Event Link"
3751
- msgid "Event link"
3752
- msgstr "Veranstaltungslink"
3753
 
3754
  #: app/features/mec/notifications.php:196
3755
  #: app/features/mec/notifications.php:250
@@ -3757,8 +3769,9 @@ msgstr "Veranstaltungslink"
3757
  #: app/features/mec/notifications.php:373
3758
  #: app/features/mec/notifications.php:432
3759
  #: app/features/mec/notifications.php:502
3760
- msgid "Organizer name of booked event"
3761
- msgstr "Name des Veranstalters des gebuchten Events"
 
3762
 
3763
  #: app/features/mec/notifications.php:197
3764
  #: app/features/mec/notifications.php:251
@@ -3766,8 +3779,8 @@ msgstr "Name des Veranstalters des gebuchten Events"
3766
  #: app/features/mec/notifications.php:374
3767
  #: app/features/mec/notifications.php:433
3768
  #: app/features/mec/notifications.php:503
3769
- msgid "Organizer tel of booked event"
3770
- msgstr "Tel des Veranstalters"
3771
 
3772
  #: app/features/mec/notifications.php:198
3773
  #: app/features/mec/notifications.php:252
@@ -3775,8 +3788,10 @@ msgstr "Tel des Veranstalters"
3775
  #: app/features/mec/notifications.php:375
3776
  #: app/features/mec/notifications.php:434
3777
  #: app/features/mec/notifications.php:504
3778
- msgid "Organizer email of booked event"
3779
- msgstr "Email des Veranstalters des gebuchten events"
 
 
3780
 
3781
  #: app/features/mec/notifications.php:199
3782
  #: app/features/mec/notifications.php:253
@@ -3784,8 +3799,8 @@ msgstr "Email des Veranstalters des gebuchten events"
3784
  #: app/features/mec/notifications.php:376
3785
  #: app/features/mec/notifications.php:435
3786
  #: app/features/mec/notifications.php:505
3787
- msgid "Location name of booked event"
3788
- msgstr "Veranstaltungsort"
3789
 
3790
  #: app/features/mec/notifications.php:200
3791
  #: app/features/mec/notifications.php:254
@@ -3793,86 +3808,113 @@ msgstr "Veranstaltungsort"
3793
  #: app/features/mec/notifications.php:377
3794
  #: app/features/mec/notifications.php:436
3795
  #: app/features/mec/notifications.php:506
3796
- msgid "Location address of booked event"
3797
- msgstr "Adresse der gebuchten Veranstaltung"
3798
 
3799
  #: app/features/mec/notifications.php:201
3800
- #: app/features/mec/notifications.php:379
3801
- #: app/features/mec/notifications.php:438
3802
- msgid "Full Attendee info such as booking form data, name, email etc."
3803
- msgstr ""
3804
- "Gesamte Teinehmerinformationen wie z.B. Daten aus dem Buchungsformular, "
3805
- "Name, email, etc."
 
3806
 
3807
  #: app/features/mec/notifications.php:202
 
3808
  #: app/features/mec/notifications.php:308
 
 
3809
  #: app/features/mec/notifications.php:508
3810
- msgid "Invoice Link"
3811
- msgstr "Rechnungslink"
3812
 
3813
  #: app/features/mec/notifications.php:203
3814
- #: app/features/mec/notifications.php:256
3815
  #: app/features/mec/notifications.php:309
3816
  #: app/features/mec/notifications.php:380
3817
  #: app/features/mec/notifications.php:439
3818
  #: app/features/mec/notifications.php:509
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3819
  msgid "Total Attendees"
3820
  msgstr ""
3821
 
3822
- #: app/features/mec/notifications.php:204
3823
- #: app/features/mec/notifications.php:257
3824
- #: app/features/mec/notifications.php:310
3825
- #: app/features/mec/notifications.php:510
3826
  #, fuzzy
3827
  #| msgid "Ticket Name"
3828
  msgid "Ticket name"
3829
  msgstr "Ticket Name"
3830
 
3831
- #: app/features/mec/notifications.php:205
3832
- #: app/features/mec/notifications.php:258
3833
- #: app/features/mec/notifications.php:311
3834
- #: app/features/mec/notifications.php:511
3835
  #, fuzzy
3836
  #| msgid "Ticket Name"
3837
  msgid "Ticket time"
3838
  msgstr "Ticket Name"
3839
 
3840
- #: app/features/mec/notifications.php:206
3841
- #: app/features/mec/notifications.php:259
3842
- #: app/features/mec/notifications.php:312
3843
- #: app/features/mec/notifications.php:512
3844
  #, fuzzy
3845
  #| msgid "Download Invoice"
3846
  msgid "Download ICS file"
3847
  msgstr "Download Rechnung\n"
3848
 
3849
- #: app/features/mec/notifications.php:217
3850
  msgid "It sends to attendee email for verifying their booking/email."
3851
  msgstr ""
3852
  "Versendet an den Teilnehmer eine Email um dessen Buchung/Mail zu "
3853
  "verifizieren."
3854
 
3855
- #: app/features/mec/notifications.php:255
3856
  msgid "Email/Booking verification link."
3857
  msgstr "Bestätigungslink für Email/Buchung"
3858
 
3859
- #: app/features/mec/notifications.php:269
3860
  msgid "It sends to attendee after confirming the booking by admin."
3861
  msgstr ""
3862
  "Es wird an den Teilnehmer gesendet nach Bestätigung der Buchung vom admin."
3863
 
3864
- #: app/features/mec/notifications.php:307
3865
- #: app/features/mec/notifications.php:507
3866
  msgid "Booking cancellation link."
3867
  msgstr "Link zur Stornierung der Buchung"
3868
 
3869
- #: app/features/mec/notifications.php:324
3870
  #, fuzzy
3871
  #| msgid "Enable new event notification"
3872
  msgid "Enable cancellation notification"
3873
  msgstr "Benachrichtigung bei neuen Veranstaltungen aktivieren"
3874
 
3875
- #: app/features/mec/notifications.php:328
3876
  #, fuzzy
3877
  #| msgid "It sends to attendee after booking for notifying him/her."
3878
  msgid ""
@@ -3882,40 +3924,40 @@ msgstr ""
3882
  "Wird an den Teilnehmer in Anschluss an die Buchung versendet, um Ihn/Sie zu "
3883
  "benachrichtigen."
3884
 
3885
- #: app/features/mec/notifications.php:346
3886
  #, fuzzy
3887
  #| msgid "Send the email to event organizer"
3888
  msgid "Send the email to admin"
3889
  msgstr "Sendet das Email zum Event Organisator"
3890
 
3891
- #: app/features/mec/notifications.php:354
3892
  #, fuzzy
3893
  #| msgid "Send the email to event organizer"
3894
  msgid "Send the email to booking user"
3895
  msgstr "Sendet das Email zum Event Organisator"
3896
 
3897
- #: app/features/mec/notifications.php:378
3898
- #: app/features/mec/notifications.php:437
3899
  msgid "Admin booking management link."
3900
  msgstr "Admin-link zur Buchungsverwaltung"
3901
 
3902
- #: app/features/mec/notifications.php:391
3903
  #, fuzzy
3904
  #| msgid "Enable booking notification"
3905
  msgid "Enable admin notification"
3906
  msgstr "Buchungsbenachrichtigung aktivieren"
3907
 
3908
- #: app/features/mec/notifications.php:395
3909
  msgid "It sends to admin to notify him/her that a new booking received."
3910
  msgstr ""
3911
  "Sendet eine Benachrichtigung an den Adminstrator um diesen darüber zu "
3912
  "Informieren, dass eine neue Buchung eingegangen ist."
3913
 
3914
- #: app/features/mec/notifications.php:451
3915
  msgid "Enable booking reminder notification"
3916
  msgstr "Aktivieren Sie die Erinnerung für die Buchungserinnerung"
3917
 
3918
- #: app/features/mec/notifications.php:457
3919
  #, php-format
3920
  msgid ""
3921
  "Set a cronjob to call %s file once per day otherwise it won't send the "
@@ -3927,19 +3969,19 @@ msgstr ""
3927
  "Sie diese Datei% s aufrufen sollten, sonst könnten die Erinnerungen mehrmals "
3928
  "gesendet werden."
3929
 
3930
- #: app/features/mec/notifications.php:457
3931
  msgid "only once per day"
3932
  msgstr "nur einmal pro Tag"
3933
 
3934
- #: app/features/mec/notifications.php:475
3935
  msgid "Days"
3936
  msgstr "Tage"
3937
 
3938
- #: app/features/mec/notifications.php:526
3939
  msgid "Enable new event notification"
3940
  msgstr "Benachrichtigung bei neuen Veranstaltungen aktivieren"
3941
 
3942
- #: app/features/mec/notifications.php:530
3943
  msgid ""
3944
  "It sends after adding a new event from frontend event submission or from "
3945
  "website backend."
@@ -3947,36 +3989,36 @@ msgstr ""
3947
  "Wird nach dem Hinzufügen einer neuen Veranstaltung aus der Frontend-"
3948
  "Übermittlung oder dem Backend versandt."
3949
 
3950
- #: app/features/mec/notifications.php:552
3951
  msgid "Title of event"
3952
  msgstr "Titel der Veranstaltung"
3953
 
3954
- #: app/features/mec/notifications.php:553
3955
  #, fuzzy
3956
  #| msgid "Title of event"
3957
  msgid "Link of event"
3958
  msgstr "Titel der Veranstaltung"
3959
 
3960
- #: app/features/mec/notifications.php:554
3961
  msgid "Status of event"
3962
  msgstr "Status der Veranstaltung"
3963
 
3964
- #: app/features/mec/notifications.php:555 app/features/mec/settings.php:1249
3965
  #: app/features/mec/settings.php:1253
3966
  msgid "Event Note"
3967
  msgstr "Veranstaltungsnotiz"
3968
 
3969
- #: app/features/mec/notifications.php:559
3970
  msgid "Admin events management link."
3971
  msgstr "Admin-link zur Veranstaltungsverwaltung"
3972
 
3973
- #: app/features/mec/notifications.php:661
3974
- #: app/features/mec/notifications.php:683 app/features/mec/settings.php:1786
3975
- #: app/features/mec/settings.php:1808 app/libraries/main.php:4570
3976
  msgid "Verified"
3977
  msgstr "Verifiziert"
3978
 
3979
- #: app/features/mec/notifications.php:685 app/features/mec/settings.php:1810
3980
  msgid "Please Refresh Page"
3981
  msgstr "Bitte Seiten Refresh vornehmen"
3982
 
@@ -4109,7 +4151,7 @@ msgid ""
4109
  msgstr ""
4110
 
4111
  #: app/features/mec/settings.php:354 app/features/mec/settings.php:364
4112
- #: app/libraries/main.php:4388
4113
  msgid "Weekdays"
4114
  msgstr "Wochentage"
4115
 
@@ -4348,21 +4390,21 @@ msgid ""
4348
  msgstr ""
4349
 
4350
  #: app/features/mec/settings.php:702
4351
- msgid "Disable Gutenberg"
4352
  msgstr ""
4353
 
4354
  #: app/features/mec/settings.php:705
4355
- msgid "Disable Gutenberg Page Builder."
4356
  msgstr ""
4357
 
4358
  #: app/features/mec/settings.php:709
4359
- msgid "Gutenberg"
4360
  msgstr ""
4361
 
4362
  #: app/features/mec/settings.php:710
4363
  msgid ""
4364
- "If Check it, can disable the Gutenberg page builder, So if you want to use "
4365
- "the Gutenberg keep unchecking the checkbox."
4366
  msgstr ""
4367
 
4368
  #: app/features/mec/settings.php:716 app/features/mec/settings.php:723
@@ -4928,8 +4970,8 @@ msgstr ""
4928
  "Ihre eigenen Stilcodes einfügen. Diese Codes werden in Ihr Frontend "
4929
  "übernommen und übersteuern die MEC- (oder Thema-) Grundeinstellungen."
4930
 
4931
- #: app/features/mec/styling.php:10 app/features/mec/styling.php:237
4932
- #: app/features/mec/styling.php:263
4933
  msgid "Default Font"
4934
  msgstr "Standardschriftart des Themas "
4935
 
@@ -4949,51 +4991,57 @@ msgstr "Vordefinierte Farbenoberfläche"
4949
  msgid "Custom Color Skin"
4950
  msgstr "Benutzerdefinierte Farboberfläche"
4951
 
4952
- #: app/features/mec/styling.php:191
 
 
 
 
 
 
4953
  msgid "Advanced Color Options (shortcodes)"
4954
  msgstr ""
4955
 
4956
- #: app/features/mec/styling.php:203
4957
  #, fuzzy
4958
  #| msgid "Title of event"
4959
  msgid "Title Hover"
4960
  msgstr "Titel der Veranstaltung"
4961
 
4962
- #: app/features/mec/styling.php:220
4963
  msgid "Typography"
4964
  msgstr "Typographie"
4965
 
4966
- #: app/features/mec/styling.php:222
4967
  msgid "Heading (Events Title) Font Family"
4968
  msgstr "Schriftart Überschrift (Titel der Veranstaltung)"
4969
 
4970
- #: app/features/mec/styling.php:248
4971
  msgid "Paragraph Font Family"
4972
  msgstr "Schriftart Absätze"
4973
 
4974
- #: app/features/mec/styling.php:275 app/features/mec/styling.php:281
4975
  #, fuzzy
4976
  #| msgid "Enable Google Recaptcha"
4977
  msgid "Disable Google Fonts"
4978
  msgstr "Google Recaptcha aktivieren"
4979
 
4980
- #: app/features/mec/styling.php:282
4981
  msgid "To be GDPR compliant you may need to disable Google fonts!"
4982
  msgstr ""
4983
 
4984
- #: app/features/mec/styling.php:291
4985
  msgid "Container Width"
4986
  msgstr ""
4987
 
4988
- #: app/features/mec/styling.php:293 app/features/mec/styling.php:298
4989
  msgid "Desktop Normal Screens"
4990
  msgstr ""
4991
 
4992
- #: app/features/mec/styling.php:299 app/features/mec/styling.php:312
4993
  msgid "You can enter your theme container size in this field"
4994
  msgstr ""
4995
 
4996
- #: app/features/mec/styling.php:306 app/features/mec/styling.php:311
4997
  msgid "Desktop Large Screens"
4998
  msgstr ""
4999
 
@@ -5405,12 +5453,12 @@ msgid "How to add/manage shortcodes?"
5405
  msgstr "Wie kann man shortcodes hinzufügen / managen?"
5406
 
5407
  #: app/features/organizers.php:105 app/features/organizers.php:147
5408
- #: app/features/speakers.php:176
5409
  msgid "Insert organizer phone number."
5410
  msgstr "Veranstalter Telefonnummer einfügen"
5411
 
5412
  #: app/features/organizers.php:113 app/features/organizers.php:151
5413
- #: app/features/speakers.php:180
5414
  msgid "Insert organizer email address."
5415
  msgstr "Veranstalter Email-Adresse einfügen"
5416
 
@@ -5470,7 +5518,7 @@ msgstr "z.B.. max@mustermann.com"
5470
  msgid "eg. https://webnus.net"
5471
  msgstr "http://webnus.net"
5472
 
5473
- #: app/features/organizers.php:306 app/libraries/main.php:4412
5474
  #: app/skins/single.php:295
5475
  msgid "Other Organizers"
5476
  msgstr "Andere Veranstalter"
@@ -5492,11 +5540,11 @@ msgstr "Um neue Veranstaltungen einzugeben, bitte %s/%s"
5492
  msgid "#"
5493
  msgstr ""
5494
 
5495
- #: app/features/profile/profile.php:34 app/libraries/main.php:2525
5496
  msgid "Status"
5497
  msgstr ""
5498
 
5499
- #: app/features/profile/profile.php:37 app/libraries/main.php:1669
5500
  msgid "Attendees"
5501
  msgstr "Teilnehmer"
5502
 
@@ -5511,8 +5559,8 @@ msgstr "% s Rechnung"
5511
  msgid "<i class=\"mec-sl-eye\"></i> %s"
5512
  msgstr ""
5513
 
5514
- #: app/features/profile/profile.php:96 app/libraries/main.php:1683
5515
- #: app/libraries/main.php:4410
5516
  msgid "Ticket"
5517
  msgstr "Ticket"
5518
 
@@ -5526,57 +5574,58 @@ msgstr "Verifizierung"
5526
  msgid "No bookings found!"
5527
  msgstr "Keine Buchungen gefunden"
5528
 
5529
- #: app/features/speakers.php:103 app/features/speakers.php:171
5530
- #: app/features/speakers.php:243
5531
  #, fuzzy
5532
  #| msgid "Title"
5533
  msgid "Job Title"
5534
  msgstr "Titel"
5535
 
5536
- #: app/features/speakers.php:106 app/features/speakers.php:172
5537
  msgid "Insert speaker job title."
5538
  msgstr ""
5539
 
5540
- #: app/features/speakers.php:114
5541
  #, fuzzy
5542
  #| msgid "Insert organizer phone number."
5543
  msgid "Insert speaker phone number."
5544
  msgstr "Veranstalter Telefonnummer einfügen"
5545
 
5546
- #: app/features/speakers.php:122
5547
  #, fuzzy
5548
  #| msgid "Insert organizer email address."
5549
  msgid "Insert speaker email address."
5550
  msgstr "Veranstalter Email-Adresse einfügen"
5551
 
5552
- #: app/features/speakers.php:127 app/features/speakers.php:183
5553
  #, fuzzy
5554
  #| msgid "Facebook Page Link"
5555
  msgid "Facebook Page"
5556
  msgstr "Facebook Seiten Link"
5557
 
5558
- #: app/features/speakers.php:130 app/features/speakers.php:184
5559
  #, fuzzy
5560
  #| msgid "Import from Facebook Calendar"
5561
  msgid "Insert URL of Facebook Page"
5562
  msgstr "Vom Facebook Kalender Importieren"
5563
 
5564
- #: app/features/speakers.php:135 app/features/speakers.php:187
5565
- #: app/libraries/main.php:1083
5566
- msgid "Google+"
5567
- msgstr "Google+"
5568
-
5569
- #: app/features/speakers.php:138 app/features/speakers.php:188
5570
- msgid "Insert URL of Google+"
5571
  msgstr ""
5572
 
5573
- #: app/features/speakers.php:143 app/features/speakers.php:191
 
 
 
 
 
 
5574
  #, fuzzy
5575
  #| msgid "Twitter"
5576
  msgid "Twitter Page"
5577
  msgstr "Twitter"
5578
 
5579
- #: app/features/speakers.php:146 app/features/speakers.php:192
5580
  #, fuzzy
5581
  #| msgid "Insert -1 for unlimited usage"
5582
  msgid "Insert URL of Twitter Page"
@@ -5596,72 +5645,72 @@ msgstr "Rabatt"
5596
  msgid "Download Invoice"
5597
  msgstr "Download Rechnung"
5598
 
5599
- #: app/libraries/factory.php:151
5600
  msgid "M.E. Calendar"
5601
  msgstr "M.E. Calender"
5602
 
5603
- #: app/libraries/factory.php:190
5604
  msgctxt "plugin link"
5605
  msgid "Upgrade to Pro Version"
5606
  msgstr ""
5607
 
5608
- #: app/libraries/factory.php:208
5609
  #, fuzzy
5610
  #| msgid "Settings"
5611
  msgctxt "plugin link"
5612
  msgid "Settings"
5613
  msgstr "Einstellungen"
5614
 
5615
- #: app/libraries/factory.php:213
5616
  msgctxt "plugin link"
5617
  msgid "Upgrade"
5618
  msgstr ""
5619
 
5620
- #: app/libraries/factory.php:307
5621
  msgid "day"
5622
  msgstr "Tag"
5623
 
5624
- #: app/libraries/factory.php:308 app/modules/countdown/details.php:121
5625
  #: app/skins/available_spot/tpl.php:146 app/skins/countdown/tpl.php:131
5626
  #: app/skins/countdown/tpl.php:175 app/skins/countdown/tpl.php:224
5627
  msgid "days"
5628
  msgstr "Tage"
5629
 
5630
- #: app/libraries/factory.php:309
5631
  msgid "hour"
5632
  msgstr "Stunde"
5633
 
5634
- #: app/libraries/factory.php:310 app/modules/countdown/details.php:128
5635
  #: app/skins/available_spot/tpl.php:150 app/skins/countdown/tpl.php:137
5636
  #: app/skins/countdown/tpl.php:181 app/skins/countdown/tpl.php:230
5637
  msgid "hours"
5638
  msgstr "Stunden"
5639
 
5640
- #: app/libraries/factory.php:311
5641
  msgid "minute"
5642
  msgstr "Minute"
5643
 
5644
- #: app/libraries/factory.php:312 app/modules/countdown/details.php:135
5645
  #: app/skins/available_spot/tpl.php:154 app/skins/countdown/tpl.php:143
5646
  #: app/skins/countdown/tpl.php:187 app/skins/countdown/tpl.php:236
5647
  msgid "minutes"
5648
  msgstr "Minuten"
5649
 
5650
- #: app/libraries/factory.php:313
5651
  msgid "second"
5652
  msgstr "Sekunde"
5653
 
5654
- #: app/libraries/factory.php:314 app/modules/countdown/details.php:142
5655
  #: app/skins/available_spot/tpl.php:158 app/skins/countdown/tpl.php:149
5656
  #: app/skins/countdown/tpl.php:193 app/skins/countdown/tpl.php:242
5657
  msgid "seconds"
5658
  msgstr "Sekunden"
5659
 
5660
- #: app/libraries/factory.php:357
5661
  msgid "MEC Single Sidebar"
5662
  msgstr "MEC Single Sidebar"
5663
 
5664
- #: app/libraries/factory.php:358
5665
  msgid "Custom sidebar for single and modal page of MEC."
5666
  msgstr "Custom sidebar for single and modal page of MEC."
5667
 
@@ -5671,38 +5720,38 @@ msgstr ""
5671
  "Eine Vorschau kann nicht angezeit werden, da es sich um einen geschützen "
5672
  "Beitrag handelt."
5673
 
5674
- #: app/libraries/main.php:330 app/libraries/main.php:1202
5675
- #: app/libraries/main.php:1227
5676
  msgid "Grid View"
5677
  msgstr "Rasterdarstellung"
5678
 
5679
- #: app/libraries/main.php:331 app/libraries/main.php:1203
5680
- #: app/libraries/main.php:1228
5681
  msgid "Agenda View"
5682
  msgstr "Agendaansicht"
5683
 
5684
- #: app/libraries/main.php:332 app/libraries/main.php:1194
5685
- #: app/libraries/main.php:1219
5686
  msgid "Full Calendar"
5687
  msgstr "Ganzer Kalender"
5688
 
5689
- #: app/libraries/main.php:334 app/libraries/main.php:1196
5690
- #: app/libraries/main.php:1221
5691
  msgid "Calendar/Monthly View"
5692
  msgstr "Kalender-/Monatsansicht"
5693
 
5694
- #: app/libraries/main.php:337 app/libraries/main.php:1199
5695
- #: app/libraries/main.php:1224
5696
  msgid "Timetable View"
5697
  msgstr "Stundenplan"
5698
 
5699
- #: app/libraries/main.php:338 app/libraries/main.php:1200
5700
- #: app/libraries/main.php:1225
5701
  msgid "Masonry View"
5702
  msgstr "Kachel Ansicht"
5703
 
5704
- #: app/libraries/main.php:339 app/libraries/main.php:1204
5705
- #: app/libraries/main.php:1229
5706
  msgid "Map View"
5707
  msgstr "Kartenansicht"
5708
 
@@ -5726,43 +5775,43 @@ msgstr "Karussellansicht"
5726
  msgid "Slider View"
5727
  msgstr "Slideransicht"
5728
 
5729
- #: app/libraries/main.php:381 app/libraries/main.php:4390
5730
  msgid "SU"
5731
  msgstr "SO"
5732
 
5733
- #: app/libraries/main.php:382 app/libraries/main.php:4391
5734
  msgid "MO"
5735
  msgstr "MO"
5736
 
5737
- #: app/libraries/main.php:383 app/libraries/main.php:4392
5738
  msgid "TU"
5739
  msgstr "DI"
5740
 
5741
- #: app/libraries/main.php:384 app/libraries/main.php:4393
5742
  msgid "WE"
5743
  msgstr "MI"
5744
 
5745
- #: app/libraries/main.php:385 app/libraries/main.php:4394
5746
  msgid "TH"
5747
  msgstr "DO"
5748
 
5749
- #: app/libraries/main.php:386 app/libraries/main.php:4395
5750
  msgid "FR"
5751
  msgstr "FR"
5752
 
5753
- #: app/libraries/main.php:387 app/libraries/main.php:4396
5754
  msgid "SA"
5755
  msgstr "SA"
5756
 
5757
- #: app/libraries/main.php:1041
5758
  msgid "Events at this location"
5759
  msgstr "Veranstaltungen an diesem Ort "
5760
 
5761
- #: app/libraries/main.php:1041
5762
  msgid "Event at this location"
5763
  msgstr "Veranstaltung an diesem Ort "
5764
 
5765
- #: app/libraries/main.php:1082
5766
  msgid "Facebook"
5767
  msgstr "Facebook"
5768
 
@@ -5770,11 +5819,11 @@ msgstr "Facebook"
5770
  msgid "Twitter"
5771
  msgstr "Twitter"
5772
 
5773
- #: app/libraries/main.php:1085 app/libraries/main.php:1150
5774
  msgid "Linkedin"
5775
  msgstr "Linkedin"
5776
 
5777
- #: app/libraries/main.php:1086 app/libraries/main.php:1183
5778
  msgid "VK"
5779
  msgstr ""
5780
 
@@ -5783,247 +5832,249 @@ msgid "Share on Facebook"
5783
  msgstr "Teilen auf Facebook"
5784
 
5785
  #: app/libraries/main.php:1120
5786
- msgid "Google Plus"
5787
- msgstr "Google Plus"
5788
-
5789
- #: app/libraries/main.php:1135
5790
  msgid "Tweet"
5791
  msgstr "Tweet"
5792
 
5793
- #: app/libraries/main.php:1205
5794
  #, fuzzy
5795
  #| msgid "Shortcode"
5796
  msgid "Custom Shortcode"
5797
  msgstr "Shortcode"
5798
 
5799
- #: app/libraries/main.php:1564
5800
  msgid "Your booking successfully verified."
5801
  msgstr "Ihre Buchung wurde erfolgreich verifiziert."
5802
 
5803
- #: app/libraries/main.php:1565
5804
  msgid "Your booking cannot verify!"
5805
  msgstr "Ihre Buchung kann nicht verifiziert werden!"
5806
 
5807
- #: app/libraries/main.php:1577
5808
  msgid "Your booking successfully canceled."
5809
  msgstr "Ihre Buchung wurde erfolgreich storniert."
5810
 
5811
- #: app/libraries/main.php:1578
5812
  msgid "Your booking cannot be canceled."
5813
  msgstr "Ihre Buchung kann nicht storniert werden."
5814
 
5815
- #: app/libraries/main.php:1582
5816
  msgid "You canceled the payment successfully."
5817
  msgstr "Sie haben die Zahlung erfolgreich storniert."
5818
 
5819
- #: app/libraries/main.php:1586
5820
  msgid "You returned from payment gateway successfully."
5821
  msgstr "Sie sind vom Bezahlungs-Gateway erfolgreich zurückgekehrt."
5822
 
5823
- #: app/libraries/main.php:1610
5824
  msgid "Cannot find the booking!"
5825
  msgstr "Kann die Buchung nicht finden!"
5826
 
5827
- #: app/libraries/main.php:1610
5828
  msgid "Booking is invalid."
5829
  msgstr "Buchung ist ungültig."
5830
 
5831
- #: app/libraries/main.php:1639
5832
  #, php-format
5833
  msgid "%s Invoice"
5834
  msgstr "% s Rechnung"
5835
 
5836
- #: app/libraries/main.php:1660
5837
  msgid "Transaction ID"
5838
  msgstr "Transaktions-ID"
5839
 
5840
- #: app/libraries/main.php:1713
5841
  msgid "Billing"
5842
  msgstr "Abrechnung"
5843
 
5844
- #: app/libraries/main.php:1724
5845
  msgid "Total"
5846
  msgstr "Gesamt"
5847
 
5848
- #: app/libraries/main.php:1757
5849
  msgid "Security nonce is not valid."
5850
  msgstr "Sicherheits-Nonce ist ungültig."
5851
 
5852
- #: app/libraries/main.php:1757 app/libraries/main.php:1789
5853
  msgid "iCal export stopped!"
5854
  msgstr "iCal Export wurde unterbrochen!"
5855
 
5856
- #: app/libraries/main.php:1789
5857
  #, fuzzy
5858
  #| msgid "Request is invalid!"
5859
  msgid "Request is not valid."
5860
  msgstr "Die Anfrage ist ungültig!"
5861
 
5862
- #: app/libraries/main.php:2109 app/libraries/main.php:2139
5863
- #: app/libraries/main.php:2168 app/libraries/main.php:2198
5864
- #: app/libraries/main.php:2227 app/libraries/main.php:2256
5865
- #: app/libraries/main.php:2285 app/libraries/main.php:2314
5866
- #: app/libraries/main.php:2343 app/libraries/main.php:2367
5867
- #: app/libraries/main.php:2411 app/libraries/main.php:2455
5868
- #: app/libraries/main.php:2502 app/libraries/main.php:2548
5869
  msgid "Sort"
5870
  msgstr "Sortieren"
5871
 
5872
- #: app/libraries/main.php:2115 app/libraries/main.php:2145
5873
- #: app/libraries/main.php:2174 app/libraries/main.php:2204
5874
- #: app/libraries/main.php:2233 app/libraries/main.php:2262
5875
- #: app/libraries/main.php:2291 app/libraries/main.php:2320
5876
- #: app/libraries/main.php:2373 app/libraries/main.php:2417
5877
- #: app/libraries/main.php:2461 app/libraries/main.php:2508
5878
  msgid "Required Field"
5879
  msgstr "Pflichtfeld"
5880
 
5881
- #: app/libraries/main.php:2121 app/libraries/main.php:2151
5882
- #: app/libraries/main.php:2180 app/libraries/main.php:2210
5883
- #: app/libraries/main.php:2239 app/libraries/main.php:2268
5884
- #: app/libraries/main.php:2297 app/libraries/main.php:2326
5885
- #: app/libraries/main.php:2379 app/libraries/main.php:2423
5886
- #: app/libraries/main.php:2467 app/libraries/main.php:2514
5887
  msgid "Insert a label for this field"
5888
  msgstr "Geben Sie eine Bezeichnung (Label) für dieses Feld ein."
5889
 
5890
- #: app/libraries/main.php:2349
5891
  msgid "HTML and shortcode are allowed."
5892
  msgstr "HTML und shortcodes sind erlaubt."
5893
 
5894
- #: app/libraries/main.php:2392 app/libraries/main.php:2436
5895
- #: app/libraries/main.php:2480
5896
  msgid "Option"
5897
  msgstr "Option"
5898
 
5899
- #: app/libraries/main.php:2514
5900
  #, php-format
5901
  msgid "Instead of %s, the page title with a link will be show."
5902
  msgstr "Anstelle von %s, wird der Seitentitel mit einem Link gezeigt"
5903
 
5904
- #: app/libraries/main.php:2516
5905
  msgid "Agreement Page"
5906
  msgstr "Zustimmungsseite"
5907
 
5908
- #: app/libraries/main.php:2527
5909
  msgid "Checked by default"
5910
  msgstr ""
5911
 
5912
- #: app/libraries/main.php:2528
5913
  msgid "Unchecked by default"
5914
  msgstr ""
5915
 
5916
- #: app/libraries/main.php:2550
5917
  msgid "Insert a label for this option"
5918
  msgstr "Ein neues Label für diese Option einfügen"
5919
 
5920
- #: app/libraries/main.php:2565
5921
  msgid "Free"
5922
  msgstr "kostenfrei"
5923
 
5924
- #: app/libraries/main.php:3217
 
 
 
 
 
 
5925
  #, php-format
5926
  msgid "Copy of %s"
5927
  msgstr "Kopie von %s"
5928
 
5929
- #: app/libraries/main.php:3880
5930
  msgid "Booked an event."
5931
  msgstr "Eine Veranstaltung wurde gebucht."
5932
 
5933
- #: app/libraries/main.php:3921
5934
  #, php-format
5935
  msgid "%s booked %s event."
5936
  msgstr "%s gebuchtes %s Event"
5937
 
5938
- #: app/libraries/main.php:4373
5939
  msgid "Taxonomies"
5940
  msgstr "Klassifizierung "
5941
 
5942
- #: app/libraries/main.php:4375
5943
  msgid "Category Plural Label"
5944
  msgstr "Kategorien"
5945
 
5946
- #: app/libraries/main.php:4376
5947
  msgid "Category Singular Label"
5948
  msgstr "Kategorie"
5949
 
5950
- #: app/libraries/main.php:4377
5951
  msgid "Label Plural Label"
5952
  msgstr "Labels"
5953
 
5954
- #: app/libraries/main.php:4378
5955
  msgid "Label Singular Label"
5956
  msgstr "Label"
5957
 
5958
- #: app/libraries/main.php:4378
5959
  msgid "label"
5960
  msgstr "label"
5961
 
5962
- #: app/libraries/main.php:4379
5963
  msgid "Location Plural Label"
5964
  msgstr "Veranstaltungsorte"
5965
 
5966
- #: app/libraries/main.php:4380
5967
  msgid "Location Singular Label"
5968
  msgstr "Veranstaltungsort"
5969
 
5970
- #: app/libraries/main.php:4381
5971
  msgid "Organizer Plural Label"
5972
  msgstr "Veranstalter"
5973
 
5974
- #: app/libraries/main.php:4382
5975
  msgid "Organizer Singular Label"
5976
  msgstr "Veranstalter"
5977
 
5978
- #: app/libraries/main.php:4383
5979
  #, fuzzy
5980
  #| msgid "Label Plural Label"
5981
  msgid "Speaker Plural Label"
5982
  msgstr "Labels"
5983
 
5984
- #: app/libraries/main.php:4384
5985
  #, fuzzy
5986
  #| msgid "Label Singular Label"
5987
  msgid "Speaker Singular Label"
5988
  msgstr "Label"
5989
 
5990
- #: app/libraries/main.php:4390
5991
  msgid "Sunday abbreviation"
5992
  msgstr "Sonntag Abkürzung"
5993
 
5994
- #: app/libraries/main.php:4391
5995
  msgid "Monday abbreviation"
5996
  msgstr "Montag Abkürzung"
5997
 
5998
- #: app/libraries/main.php:4392
5999
  msgid "Tuesday abbreviation"
6000
  msgstr "Dienstag Abkürzung"
6001
 
6002
- #: app/libraries/main.php:4393
6003
  msgid "Wednesday abbreviation"
6004
  msgstr "Mittwoch Abkürzung"
6005
 
6006
- #: app/libraries/main.php:4394
6007
  msgid "Thursday abbreviation"
6008
  msgstr "Donnerstag Abkürzung"
6009
 
6010
- #: app/libraries/main.php:4395
6011
  msgid "Friday abbreviation"
6012
  msgstr "Freitag Abkürzung"
6013
 
6014
- #: app/libraries/main.php:4396
6015
  msgid "Saturday abbreviation"
6016
  msgstr "Samstag Abkürzung "
6017
 
6018
- #: app/libraries/main.php:4400
6019
  msgid "Others"
6020
  msgstr "Andere"
6021
 
6022
- #: app/libraries/main.php:4402
6023
  msgid "Booking Success Message"
6024
  msgstr "Buchung erfolgreich Mitteilung"
6025
 
6026
- #: app/libraries/main.php:4402
6027
  msgid ""
6028
  "Thanks for your booking. Your tickets booked, booking verification might be "
6029
  "needed, please check your email."
@@ -6031,16 +6082,16 @@ msgstr ""
6031
  "Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
6032
  "Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
6033
 
6034
- #: app/libraries/main.php:4403 app/widgets/single.php:131
6035
  msgid "Register Button"
6036
  msgstr "Register Button"
6037
 
6038
- #: app/libraries/main.php:4403 app/skins/available_spot/tpl.php:204
6039
  #: app/skins/carousel/render.php:148 app/skins/carousel/render.php:175
6040
  #: app/skins/grid/render.php:116 app/skins/grid/render.php:151
6041
  #: app/skins/grid/render.php:188 app/skins/grid/render.php:216
6042
  #: app/skins/list/render.php:102 app/skins/list/render.php:185
6043
- #: app/skins/masonry/render.php:143 app/skins/single/default.php:229
6044
  #: app/skins/single/default.php:231 app/skins/single/default.php:440
6045
  #: app/skins/single/default.php:442 app/skins/single/m1.php:126
6046
  #: app/skins/single/m1.php:128 app/skins/single/m2.php:58
@@ -6051,70 +6102,70 @@ msgstr "Register Button"
6051
  msgid "REGISTER"
6052
  msgstr "ANMELDEN"
6053
 
6054
- #: app/libraries/main.php:4404
6055
  msgid "View Detail Button"
6056
  msgstr "Ansicht Detail Button"
6057
 
6058
- #: app/libraries/main.php:4404 app/skins/carousel/render.php:148
6059
  #: app/skins/carousel/render.php:175 app/skins/grid/render.php:116
6060
  #: app/skins/grid/render.php:151 app/skins/grid/render.php:188
6061
  #: app/skins/grid/render.php:216 app/skins/list/render.php:102
6062
- #: app/skins/list/render.php:185 app/skins/masonry/render.php:143
6063
  #: app/skins/slider/render.php:109 app/skins/slider/render.php:154
6064
  #: app/skins/slider/render.php:198 app/skins/slider/render.php:243
6065
  #: app/skins/slider/render.php:299
6066
  msgid "View Detail"
6067
  msgstr "Details "
6068
 
6069
- #: app/libraries/main.php:4405
6070
  msgid "Event Detail Button"
6071
  msgstr "Event Detail Button"
6072
 
6073
- #: app/libraries/main.php:4405 app/skins/countdown/tpl.php:217
6074
  msgid "Event Detail"
6075
  msgstr "Veranstaltungsdetails"
6076
 
6077
- #: app/libraries/main.php:4407
6078
  msgid "More Info Link"
6079
  msgstr "Link Mehr Informationen"
6080
 
6081
- #: app/libraries/main.php:4410
6082
  msgid "Ticket (Singular)"
6083
  msgstr "Ticket"
6084
 
6085
- #: app/libraries/main.php:4411
6086
  msgid "Tickets (Plural)"
6087
  msgstr "Tickets"
6088
 
6089
- #: app/libraries/main.php:4478
6090
  msgid "EventON"
6091
  msgstr "EventON"
6092
 
6093
- #: app/libraries/main.php:4479
6094
  msgid "The Events Calendar"
6095
  msgstr "The Events Calendar"
6096
 
6097
- #: app/libraries/main.php:4480
6098
  msgid "Events Schedule WP Plugin"
6099
  msgstr "Event Zeitplan WP-Plugin"
6100
 
6101
- #: app/libraries/main.php:4481
6102
  msgid "Calendarize It"
6103
  msgstr ""
6104
 
6105
- #: app/libraries/main.php:4555
6106
  msgid "Confirmed"
6107
  msgstr "Bestätigt"
6108
 
6109
- #: app/libraries/main.php:4556
6110
  msgid "Rejected"
6111
  msgstr "Abgelehnt"
6112
 
6113
- #: app/libraries/main.php:4557
6114
  msgid "Pending"
6115
  msgstr "Ausstehend"
6116
 
6117
- #: app/libraries/main.php:4572
6118
  msgid "Waiting"
6119
  msgstr "in Bearbeitung"
6120
 
@@ -6145,9 +6196,9 @@ msgid "A new event is added."
6145
  msgstr "Eine neue Veranstaltung wurde hinzugefügt."
6146
 
6147
  #: app/libraries/notifications.php:535 app/libraries/render.php:436
6148
- #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:97
6149
  #: app/skins/single/default.php:83 app/skins/single/default.php:294
6150
- #: app/skins/single/m1.php:34 app/skins/single/modern.php:183
6151
  msgid "All of the day"
6152
  msgstr "Den ganzen Tag"
6153
 
@@ -6175,7 +6226,7 @@ msgstr "Nein"
6175
  msgid "Skin controller does not exist."
6176
  msgstr "Skin contoller existiert nicht."
6177
 
6178
- #: app/libraries/skins.php:926
6179
  msgid "Ignore month and years"
6180
  msgstr "Monat und Jahre ignorieren"
6181
 
@@ -6249,11 +6300,11 @@ msgstr "Das Event ist beendet"
6249
  msgid "The event is ongoing."
6250
  msgstr "Die Veranstaltung ist im Gange."
6251
 
6252
- #: app/modules/googlemap/details.php:95
6253
  msgid "Address from ..."
6254
  msgstr "Adresse von..."
6255
 
6256
- #: app/modules/googlemap/details.php:99
6257
  msgid "Get Directions"
6258
  msgstr "Wegbeschreibung"
6259
 
@@ -6280,21 +6331,21 @@ msgstr "Datum: %s"
6280
  msgid "Time: %s"
6281
  msgstr "Zeit: %s"
6282
 
6283
- #: app/modules/next-event/details.php:78
6284
  msgid "Next Occurrence"
6285
  msgstr "Nächstes Event"
6286
 
6287
- #: app/modules/next-event/details.php:78
6288
  msgid "Next Event"
6289
  msgstr "Nächstes Event"
6290
 
6291
- #: app/modules/next-event/details.php:82
6292
  msgid "Go to occurrence page"
6293
  msgstr "Zum Event"
6294
 
6295
- #: app/modules/next-event/details.php:91 app/skins/single/default.php:77
6296
  #: app/skins/single/default.php:288 app/skins/single/m1.php:28
6297
- #: app/skins/single/modern.php:177
6298
  msgid "Time"
6299
  msgstr "Uhrzeit"
6300
 
@@ -6377,7 +6428,7 @@ msgstr "Ausgewählte Veranstaltung"
6377
  msgid "No event"
6378
  msgstr "Keine Veranstaltung"
6379
 
6380
- #: app/skins/full_calendar/tpl.php:74
6381
  msgid "List"
6382
  msgstr "Liste / Listenansicht"
6383
 
@@ -6422,12 +6473,12 @@ msgid "Speakers:"
6422
  msgstr "Keine Suchoptionen"
6423
 
6424
  #: app/skins/single/default.php:40 app/skins/single/m1.php:236
6425
- #: app/skins/single/m2.php:174 app/skins/single/modern.php:255
6426
  msgid "Sold out!"
6427
  msgstr "Ausverkauft!"
6428
 
6429
  #: app/skins/single/default.php:50 app/skins/single/m1.php:245
6430
- #: app/skins/single/m2.php:183 app/skins/single/modern.php:265
6431
  msgid "Tags: "
6432
  msgstr "Tags:"
6433
 
@@ -6864,6 +6915,12 @@ msgstr "http://webnus.net"
6864
  #~ msgid "This booking is not free!"
6865
  #~ msgstr "Diese Buchung ist nicht kostenlos!"
6866
 
 
 
 
 
 
 
6867
  #~ msgid "Exclude certain days from event occurrence dates."
6868
  #~ msgstr ""
6869
  #~ "Ausschliessen bestimmter Tage von den Eventdaten z.B. bei regelmäßigen "
2
  msgstr ""
3
  "Project-Id-Version: ME Calender\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-06-17 11:07+0430\n"
6
+ "PO-Revision-Date: 2019-06-17 11:07+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:215
27
  msgid "Content"
28
  msgstr "Inhalt"
29
 
30
+ #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:349
31
+ #: app/features/mec.php:380 app/features/mec.php:406
32
  msgid "Shortcode"
33
  msgstr "Shortcode"
34
 
54
  msgid "Select Type"
55
  msgstr "Alles Auswählen"
56
 
57
+ #: app/features/colors.php:50 app/features/fes/form.php:571
58
  #: app/features/mec/settings.php:1195
59
  msgid "Event Color"
60
  msgstr "Farbe der Veranstaltung"
69
  msgid "Settings"
70
  msgstr "Einstellungen"
71
 
72
+ #: app/features/contextual.php:62 app/features/events.php:1701
73
  #: app/features/mec/gateways.php:33 app/features/mec/ie.php:29
74
  #: app/features/mec/messages.php:33 app/features/mec/notifications.php:32
75
  #: app/features/mec/regform.php:68 app/features/mec/regform.php:131
113
 
114
  #: app/features/contextual.php:77 app/features/mec/gateways.php:49
115
  #: app/features/mec/ie.php:45 app/features/mec/messages.php:49
116
+ #: app/features/mec/notifications.php:51 app/features/mec/regform.php:83
117
  #: app/features/mec/settings.php:233 app/features/mec/styles.php:49
118
  #: app/features/mec/styling.php:71 app/features/mec/support.php:45
119
  msgid "Notifications"
244
  msgid "Frontend Event Submission"
245
  msgstr "Erstellung von Veranstaltungen im Frontend"
246
 
247
+ #: app/features/contextual.php:298 app/features/events.php:792
248
  #: app/features/mec/settings.php:150
249
  msgid "Exceptional Days"
250
  msgstr "Herausgenommene Tage "
251
 
252
+ #: app/features/contextual.php:308 app/features/events.php:273
253
  #: app/features/mec/settings.php:168 app/features/mec/settings.php:1324
254
  msgid "Booking"
255
  msgstr "Buchung / Reservierung"
280
  msgstr "Veranstaltungen"
281
 
282
  #: app/features/events.php:135
283
+ #: app/features/mec/meta_boxes/display_options.php:863
284
+ #: app/features/mec/meta_boxes/display_options.php:919
285
+ #: app/features/mec/meta_boxes/display_options.php:954
286
  #: app/features/profile/profile.php:28 app/skins/daily_view/tpl.php:80
287
  #: app/skins/monthly_view/tpl.php:71 app/skins/yearly_view/tpl.php:69
288
  msgid "Event"
318
  msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
319
 
320
  #: app/features/events.php:159
321
+ #: app/features/mec/meta_boxes/display_options.php:794
322
  #: app/features/mec/meta_boxes/search_form.php:31
323
  #: app/features/mec/meta_boxes/search_form.php:92
324
  #: app/features/mec/meta_boxes/search_form.php:153
325
  #: app/features/mec/meta_boxes/search_form.php:214
326
+ #: app/features/mec/meta_boxes/search_form.php:275
327
+ #: app/features/mec/meta_boxes/search_form.php:336
328
+ #: app/features/mec/meta_boxes/search_form.php:397
329
+ #: app/features/mec/meta_boxes/search_form.php:451
330
+ #: app/features/mec/meta_boxes/search_form.php:512
331
+ #: app/features/mec/meta_boxes/search_form.php:573 app/libraries/main.php:4416
332
+ #: app/libraries/skins.php:781 app/skins/single/default.php:167
333
  #: app/skins/single/default.php:378 app/skins/single/m1.php:170
334
+ #: app/skins/single/m2.php:102 app/skins/single/modern.php:110
335
  msgid "Category"
336
  msgstr "Kategorie"
337
 
338
+ #: app/features/events.php:160 app/features/fes/form.php:523
339
  #: app/features/mec.php:317 app/features/mec/meta_boxes/filter.php:70
340
+ #: app/libraries/main.php:4415
341
  msgid "Categories"
342
  msgstr "Kategorien"
343
 
397
  msgid "Search %s"
398
  msgstr "Suche %s"
399
 
400
+ #: app/features/events.php:201 app/features/events.php:220
401
  msgid "Category Icon"
402
  msgstr "Kategoriesymbol"
403
 
404
+ #: app/features/events.php:203 app/features/events.php:224
405
  msgid "Select icon"
406
  msgstr "Wählen Sie ein Symbol"
407
 
408
+ #: app/features/events.php:269
409
  msgid "Event Details"
410
  msgstr "Veranstaltungsdetails"
411
 
412
+ #: app/features/events.php:307 app/features/events.php:2558
413
+ #: app/features/events.php:2600 app/features/fes/form.php:484
414
  #: app/features/ix.php:2740 app/features/ix.php:2781
415
+ #: app/features/mec/settings.php:1171 app/libraries/main.php:4448
416
  #: app/widgets/single.php:103
417
  msgid "Event Cost"
418
  msgstr ""
419
  "Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
420
 
421
+ #: app/features/events.php:310 app/features/fes/form.php:487
422
+ #: app/libraries/main.php:4449 app/skins/single/default.php:101
423
  #: app/skins/single/default.php:312 app/skins/single/m1.php:49
424
+ #: app/skins/single/modern.php:199
425
  msgid "Cost"
426
  msgstr " Preis"
427
 
428
+ #: app/features/events.php:403
429
  msgid "Note for reviewer"
430
  msgstr "Zusätzliche Anmerkungen zum Event "
431
 
432
+ #: app/features/events.php:410
433
  msgid "Guest Data"
434
  msgstr "Gäste Daten"
435
 
436
+ #: app/features/events.php:411 app/features/events.php:1683
437
+ #: app/features/fes/form.php:446 app/features/labels.php:177
438
  #: app/features/mec/regform.php:27 app/features/organizers.php:274
439
  #: app/features/profile/profile.php:90 app/libraries/notifications.php:667
440
  #: app/modules/booking/steps/form.php:35
441
  msgid "Name"
442
  msgstr "Name"
443
 
444
+ #: app/features/events.php:412 app/features/events.php:1694
445
+ #: app/features/events.php:1767 app/features/fes/form.php:442
446
  #: app/features/mec/regform.php:38 app/features/mec/regform.php:183
447
  #: app/features/organizers.php:110 app/features/organizers.php:150
448
+ #: app/features/profile/profile.php:93 app/features/speakers.php:120
449
+ #: app/features/speakers.php:180 app/libraries/main.php:1087
450
+ #: app/libraries/main.php:1153 app/libraries/main.php:2184
451
  #: app/libraries/notifications.php:668 app/modules/booking/steps/form.php:43
452
  #: app/modules/booking/steps/form.php:80 app/skins/single.php:317
453
  #: app/skins/single/default.php:209 app/skins/single/default.php:420
456
  msgid "Email"
457
  msgstr "Email"
458
 
459
+ #: app/features/events.php:416 app/features/fes/form.php:227
460
  msgid "Date and Time"
461
  msgstr "Datum und Uhrzeit"
462
 
463
+ #: app/features/events.php:420 app/features/events.php:424
464
+ #: app/features/events.php:2380 app/features/events.php:2558
465
+ #: app/features/events.php:2600 app/features/fes/form.php:231
466
+ #: app/features/fes/form.php:235 app/features/ix.php:2740
467
  #: app/features/ix.php:2781 app/features/ix/import_g_calendar.php:38
468
  #: app/features/mec/dashboard.php:331
469
  #: app/features/mec/meta_boxes/display_options.php:42
476
  #: app/features/mec/meta_boxes/display_options.php:615
477
  #: app/features/mec/meta_boxes/display_options.php:650
478
  #: app/features/mec/meta_boxes/display_options.php:696
479
+ #: app/features/mec/meta_boxes/display_options.php:762
480
+ #: app/features/mec/meta_boxes/display_options.php:977
481
+ #: app/features/mec/meta_boxes/display_options.php:1064
482
  msgid "Start Date"
483
  msgstr "Start Datum"
484
 
485
+ #: app/features/events.php:488 app/features/events.php:569
486
+ #: app/features/events.php:1157 app/features/events.php:1195
487
+ #: app/features/events.php:1314 app/features/events.php:1337
488
+ #: app/features/fes/form.php:263 app/features/fes/form.php:303
489
  msgid "AM"
490
  msgstr "AM"
491
 
492
+ #: app/features/events.php:494 app/features/events.php:575
493
+ #: app/features/events.php:1163 app/features/events.php:1201
494
+ #: app/features/events.php:1315 app/features/events.php:1338
495
+ #: app/features/fes/form.php:264 app/features/fes/form.php:304
496
  msgid "PM"
497
  msgstr "PM"
498
 
499
+ #: app/features/events.php:501 app/features/events.php:505
500
+ #: app/features/events.php:2381 app/features/events.php:2558
501
+ #: app/features/events.php:2600 app/features/fes/form.php:271
502
+ #: app/features/fes/form.php:275 app/features/ix.php:2740
503
  #: app/features/ix.php:2781 app/features/ix/import_g_calendar.php:44
504
  #: app/features/mec/dashboard.php:332
505
  msgid "End Date"
506
  msgstr "Ende Datum"
507
 
508
+ #: app/features/events.php:586 app/features/fes/form.php:310
509
  msgid "All Day Event"
510
  msgstr "Ganztägige Veranstaltung"
511
 
512
+ #: app/features/events.php:594 app/features/fes/form.php:313
513
  msgid "Hide Event Time"
514
  msgstr "Event / Veranstaltungszeit verbergen"
515
 
516
+ #: app/features/events.php:602 app/features/fes/form.php:316
517
  msgid "Hide Event End Time"
518
  msgstr "Ende-Zeit der Veranstaltung verbergen"
519
 
520
+ #: app/features/events.php:606 app/features/events.php:609
521
+ #: app/features/fes/form.php:320
522
  msgid "Time Comment"
523
  msgstr "z.B. MEZ "
524
 
525
+ #: app/features/events.php:610 app/features/fes/form.php:321
526
  #, fuzzy
527
  #| msgid ""
528
  #| "It shows next to event time on calendar. You can insert Timezone etc. in "
534
  "Neben der Zeit im Kalender wird diese Angabe angezeigt. In diesem Feld "
535
  "können Sie z.B. eine Zeitzone wie z.B. \"MEZ\" usw. einfügen. "
536
 
537
+ #: app/features/events.php:610 app/features/events.php:703
538
+ #: app/features/events.php:769 app/features/events.php:807
539
+ #: app/features/events.php:1025 app/features/events.php:1083
540
+ #: app/features/events.php:1214 app/features/events.php:1224
541
+ #: app/features/events.php:1351 app/features/events.php:1361
542
+ #: app/features/events.php:1466 app/features/events.php:1497
543
+ #: app/features/events.php:1581 app/features/events.php:1591
544
+ #: app/features/events.php:1615 app/features/events.php:1625
545
+ #: app/features/fes/form.php:408 app/features/locations.php:298
546
  #: app/features/mec/dashboard.php:71
547
  #: app/features/mec/meta_boxes/display_options.php:60
548
  #: app/features/mec/meta_boxes/display_options.php:73
558
  #: app/features/mec/meta_boxes/display_options.php:259
559
  #: app/features/mec/meta_boxes/display_options.php:326
560
  #: app/features/mec/meta_boxes/display_options.php:498
561
+ #: app/features/mec/meta_boxes/display_options.php:781
 
 
562
  #: app/features/mec/meta_boxes/display_options.php:834
563
+ #: app/features/mec/meta_boxes/display_options.php:846
564
+ #: app/features/mec/meta_boxes/display_options.php:857
565
+ #: app/features/mec/meta_boxes/display_options.php:889
566
+ #: app/features/mec/meta_boxes/display_options.php:900
567
+ #: app/features/mec/meta_boxes/display_options.php:913
568
+ #: app/features/mec/meta_boxes/display_options.php:948
569
+ #: app/features/mec/meta_boxes/display_options.php:997
570
+ #: app/features/mec/meta_boxes/display_options.php:1008
571
+ #: app/features/mec/meta_boxes/display_options.php:1019
572
+ #: app/features/mec/meta_boxes/display_options.php:1084
573
+ #: app/features/mec/meta_boxes/display_options.php:1097
574
+ #: app/features/mec/meta_boxes/display_options.php:1110
575
+ #: app/features/mec/meta_boxes/display_options.php:1123
576
+ #: app/features/mec/meta_boxes/display_options.php:1136
577
+ #: app/features/mec/notifications.php:173
578
+ #: app/features/mec/notifications.php:231
579
+ #: app/features/mec/notifications.php:283
580
+ #: app/features/mec/notifications.php:342
581
+ #: app/features/mec/notifications.php:409
582
+ #: app/features/mec/notifications.php:472
583
+ #: app/features/mec/notifications.php:483
584
+ #: app/features/mec/notifications.php:544 app/features/mec/settings.php:299
585
  #: app/features/mec/settings.php:318 app/features/mec/settings.php:345
586
  #: app/features/mec/settings.php:365 app/features/mec/settings.php:386
587
  #: app/features/mec/settings.php:406 app/features/mec/settings.php:483
601
  #: app/features/mec/settings.php:1555 app/features/mec/settings.php:1565
602
  #: app/features/mec/settings.php:1587 app/features/mec/settings.php:1597
603
  #: app/features/mec/settings.php:1656 app/features/mec/settings.php:1669
604
+ #: app/features/mec/settings.php:1685 app/features/mec/styling.php:285
605
+ #: app/features/mec/styling.php:302 app/features/mec/styling.php:315
606
  #: app/features/organizers.php:267 app/skins/single/default.php:116
607
  #: app/skins/single/default.php:327 app/skins/single/m1.php:192
608
+ #: app/skins/single/m2.php:125 app/skins/single/modern.php:133
609
  msgid "Read More"
610
  msgstr "Mehr lesen"
611
 
612
+ #: app/features/events.php:624 app/features/fes/form.php:327
613
  msgid "Event Repeating"
614
  msgstr "Wiederholende Veranstaltung"
615
 
616
+ #: app/features/events.php:628 app/features/fes/form.php:331
617
  msgid "Repeats"
618
  msgstr "Wiederholend"
619
 
620
+ #: app/features/events.php:635 app/features/fes/form.php:333
621
+ #: app/features/mec/dashboard.php:334 app/skins/full_calendar/tpl.php:111
622
  msgid "Daily"
623
  msgstr "Täglich"
624
 
625
+ #: app/features/events.php:641 app/features/fes/form.php:334
626
  msgid "Every Weekday"
627
  msgstr "An jedem Wochentag"
628
 
629
+ #: app/features/events.php:647 app/features/fes/form.php:335
630
  msgid "Every Weekend"
631
  msgstr "An jedem Wochenende"
632
 
633
+ #: app/features/events.php:653 app/features/fes/form.php:336
634
  msgid "Certain Weekdays"
635
  msgstr "Bestimmte Wochentage"
636
 
637
+ #: app/features/events.php:659 app/features/fes/form.php:337
638
+ #: app/skins/full_calendar/tpl.php:110
639
  msgid "Weekly"
640
  msgstr "Wöchentlich"
641
 
642
+ #: app/features/events.php:665 app/features/fes/form.php:338
643
+ #: app/features/mec/dashboard.php:335 app/skins/full_calendar/tpl.php:109
644
  msgid "Monthly"
645
  msgstr "Monatlich"
646
 
647
+ #: app/features/events.php:671 app/features/fes/form.php:339
648
+ #: app/features/mec/dashboard.php:336 app/skins/full_calendar/tpl.php:108
649
  msgid "Yearly"
650
  msgstr "Jährlich"
651
 
652
+ #: app/features/events.php:677 app/features/fes/form.php:340
653
  msgid "Custom Days"
654
  msgstr "Benutzerdefinierte Tage"
655
 
656
+ #: app/features/events.php:681 app/features/fes/form.php:344
657
  msgid "Repeat Interval"
658
  msgstr "Wiederholungsintervall"
659
 
660
+ #: app/features/events.php:682 app/features/fes/form.php:345
661
  msgid "Repeat interval"
662
  msgstr "Wiederholungsintervall"
663
 
664
+ #: app/features/events.php:685 app/features/fes/form.php:348
665
  msgid "Week Days"
666
  msgstr "Wochentage"
667
 
668
+ #: app/features/events.php:686 app/features/fes/form.php:349
669
+ #: app/features/mec/meta_boxes/display_options.php:726
670
+ #: app/libraries/main.php:407
671
  msgid "Monday"
672
  msgstr "Montag"
673
 
674
+ #: app/features/events.php:687 app/features/fes/form.php:350
675
+ #: app/features/mec/meta_boxes/display_options.php:727
676
+ #: app/libraries/main.php:407
677
  msgid "Tuesday"
678
  msgstr "Dienstag"
679
 
680
+ #: app/features/events.php:688 app/features/fes/form.php:351
681
+ #: app/features/mec/meta_boxes/display_options.php:728
682
+ #: app/libraries/main.php:407
683
  msgid "Wednesday"
684
  msgstr "Mittwoch"
685
 
686
+ #: app/features/events.php:689 app/features/fes/form.php:352
687
+ #: app/features/mec/meta_boxes/display_options.php:729
688
+ #: app/libraries/main.php:407
689
  msgid "Thursday"
690
  msgstr "Donnerstag"
691
 
692
+ #: app/features/events.php:690 app/features/fes/form.php:353
693
+ #: app/features/mec/meta_boxes/display_options.php:730
694
+ #: app/libraries/main.php:407
695
  msgid "Friday"
696
  msgstr "Freitag"
697
 
698
+ #: app/features/events.php:691 app/features/fes/form.php:354
699
+ #: app/features/mec/meta_boxes/display_options.php:731
700
+ #: app/libraries/main.php:407
701
  msgid "Saturday"
702
  msgstr "Samstag"
703
 
704
+ #: app/features/events.php:692 app/features/fes/form.php:355
705
+ #: app/features/mec/meta_boxes/display_options.php:725
706
+ #: app/libraries/main.php:407
707
  msgid "Sunday"
708
  msgstr "Sonntag"
709
 
710
+ #: app/features/events.php:697 app/features/events.php:1261
711
+ #: app/features/events.php:1275 app/features/events.php:1387
712
+ #: app/features/fes/form.php:360 app/features/ix/import_f_calendar.php:42
713
  #: app/features/ix/import_g_calendar.php:51
714
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
715
  msgid "Start"
716
  msgstr "Start"
717
 
718
+ #: app/features/events.php:698 app/features/events.php:1262
719
+ #: app/features/events.php:1276 app/features/events.php:1388
720
+ #: app/features/fes/form.php:361
721
  #, fuzzy
722
  #| msgid "Enabled"
723
  msgid "End"
724
  msgstr "Aktiviert"
725
 
726
+ #: app/features/events.php:699 app/features/events.php:803
727
+ #: app/features/events.php:895 app/features/events.php:959
728
+ #: app/features/events.php:1113 app/features/events.php:1248
729
+ #: app/features/events.php:1379 app/features/events.php:1446
730
+ #: app/features/events.php:1561 app/features/fes/form.php:362
731
  msgid "Add"
732
  msgstr "Hinzufügen"
733
 
734
+ #: app/features/events.php:702
735
  #, fuzzy
736
  #| msgid "Custom Days"
737
  msgid "Custom Days Repeating"
738
  msgstr "Benutzerdefinierte Tage"
739
 
740
+ #: app/features/events.php:703
741
  msgid ""
742
  "Add certain days to event occurrence dates. If you have single day event, "
743
  "start and end date should be the same, If you have multiple day event the "
744
  "start and end dates must be commensurate with the initial date."
745
  msgstr ""
746
 
747
+ #: app/features/events.php:732 app/features/fes/form.php:386
748
  msgid "Ends Repeat"
749
  msgstr "Wiederholung endet"
750
 
751
+ #: app/features/events.php:741 app/features/fes/form.php:390
752
  msgid "Never"
753
  msgstr "Niemals"
754
 
755
+ #: app/features/events.php:751 app/features/fes/form.php:395
756
  msgid "On"
757
  msgstr "Am"
758
 
759
+ #: app/features/events.php:763 app/features/fes/form.php:402
760
  msgid "After"
761
  msgstr "Nach"
762
 
763
+ #: app/features/events.php:765 app/features/events.php:768
764
+ #: app/features/fes/form.php:404 app/features/fes/form.php:407
765
  msgid "Occurrences times"
766
  msgstr " mal vorkommen"
767
 
768
+ #: app/features/events.php:769 app/features/fes/form.php:408
769
  msgid ""
770
  "The event will finish after certain repeats. For example if you set it to "
771
  "10, the event will finish after 10 repeats."
773
  "Das Event ist nach einer bestimmten Anzahl von Wiederholungen zu Ende. Zum "
774
  "Beispiel: Bei Eingabe von 10 wird das Event nach 10 Wiederholungen beendet"
775
 
776
+ #: app/features/events.php:798 app/features/events.php:806
777
  msgid "Exclude certain days"
778
  msgstr "Ausschluss bestimmter Tage"
779
 
780
+ #: app/features/events.php:802 app/features/events.php:1768
781
  #: app/features/mec/regform.php:184 app/features/profile/profile.php:31
782
+ #: app/libraries/main.php:1639 app/libraries/main.php:2242
783
  #: app/modules/booking/steps/tickets.php:22
784
+ #: app/modules/next-event/details.php:90 app/skins/single/default.php:65
785
  #: app/skins/single/default.php:276 app/skins/single/m1.php:16
786
+ #: app/skins/single/modern.php:166
787
  msgid "Date"
788
  msgstr "Datum"
789
 
790
+ #: app/features/events.php:807
791
  msgid ""
792
  "Exclude certain days from event occurrence dates. Please note that you can "
793
  "exclude only single day occurrences and you cannot exclude one day from "
794
  "multiple day occurrences."
795
  msgstr ""
796
 
797
+ #: app/features/events.php:855 app/libraries/render.php:454
798
  msgid "Day 1"
799
  msgstr ""
800
 
801
+ #: app/features/events.php:877 app/features/mec/settings.php:1225
802
  #: app/skins/single.php:379
803
  msgid "Hourly Schedule"
804
  msgstr "Stundenplan"
805
 
806
+ #: app/features/events.php:880
807
  msgid "Add Day"
808
  msgstr ""
809
 
810
+ #: app/features/events.php:881
811
  msgid ""
812
  "Add new days for schedule. For example if your event is multiple days, you "
813
  "can add a different schedule for each day!"
814
  msgstr ""
815
 
816
+ #: app/features/events.php:887
817
  #, php-format
818
  msgid "Day %s"
819
  msgstr ""
820
 
821
+ #: app/features/events.php:890 app/features/events.php:909
822
+ #: app/features/events.php:929 app/features/events.php:954
823
+ #: app/features/events.php:970 app/features/events.php:1573
824
+ #: app/features/events.php:1607 app/features/events.php:2377
825
+ #: app/features/events.php:2558 app/features/events.php:2600
826
+ #: app/features/fes/form.php:220 app/features/ix.php:2740
827
  #: app/features/ix.php:2781 app/features/mec/settings.php:1547
828
+ #: app/features/mec/settings.php:1579 app/features/mec/styling.php:197
829
  msgid "Title"
830
  msgstr "Titel"
831
 
832
+ #: app/features/events.php:892 app/features/events.php:911
833
+ #: app/features/events.php:931 app/features/events.php:956
834
+ #: app/features/events.php:972 app/features/events.php:1242
835
+ #: app/features/events.php:1265 app/features/events.php:1279
836
+ #: app/features/events.php:1374 app/features/events.php:1391
837
+ #: app/features/events.php:1478 app/features/events.php:1509
838
+ #: app/features/events.php:1596 app/features/events.php:1630
839
+ #: app/features/fes/list.php:78 app/features/mec/settings.php:1490
840
  #: app/features/mec/settings.php:1519 app/features/mec/settings.php:1570
841
+ #: app/features/mec/settings.php:1602 app/libraries/main.php:2103
842
+ #: app/libraries/main.php:2133 app/libraries/main.php:2162
843
+ #: app/libraries/main.php:2192 app/libraries/main.php:2221
844
+ #: app/libraries/main.php:2250 app/libraries/main.php:2279
845
+ #: app/libraries/main.php:2308 app/libraries/main.php:2330
846
+ #: app/libraries/main.php:2361 app/libraries/main.php:2405
847
+ #: app/libraries/main.php:2449 app/libraries/main.php:2496
848
+ #: app/libraries/main.php:2534
849
  msgid "Remove"
850
  msgstr "Entfernen"
851
 
852
+ #: app/features/events.php:896 app/features/events.php:960
853
  msgid "Add new hourly schedule row"
854
  msgstr "Neue Stundenplan-Zeile hinzufügen"
855
 
856
+ #: app/features/events.php:907 app/features/events.php:927
857
+ #: app/features/events.php:968
858
  msgid "From e.g. 8:15"
859
  msgstr "Von z.B. 08:15 Uhr"
860
 
861
+ #: app/features/events.php:908 app/features/events.php:928
862
+ #: app/features/events.php:969
863
  msgid "To e.g. 8:45"
864
  msgstr "bis zum Beispiel 08:45 Uhr"
865
 
866
+ #: app/features/events.php:910 app/features/events.php:930
867
+ #: app/features/events.php:971 app/features/events.php:1206
868
+ #: app/features/events.php:1343
869
  msgid "Description"
870
  msgstr "Beschreibung"
871
 
872
+ #: app/features/events.php:914 app/features/events.php:934
873
+ #: app/features/events.php:975 app/features/fes/form.php:616
874
  #: app/features/mec.php:325 app/features/mec/settings.php:78
875
  #: app/features/mec/settings.php:1219 app/features/speakers.php:57
876
+ #: app/libraries/main.php:4423 app/modules/speakers/details.php:18
877
  msgid "Speakers"
878
  msgstr ""
879
 
880
+ #: app/features/events.php:951 app/features/events.php:955
881
  #, fuzzy
882
  #| msgid "Week Days"
883
  msgid "New Day"
884
  msgstr "Wochentage"
885
 
886
+ #: app/features/events.php:1002 app/features/fes/form.php:461
887
  #: app/features/mec/settings.php:1165
888
  msgid "Event Links"
889
  msgstr "Veranstaltungslinks"
890
 
891
+ #: app/features/events.php:1004 app/features/events.php:1008
892
+ #: app/features/fes/form.php:463 app/libraries/main.php:4446
893
  msgid "Event Link"
894
  msgstr "Veranstaltungslink"
895
 
896
+ #: app/features/events.php:1005 app/features/events.php:1016
897
+ #: app/features/fes/form.php:464 app/features/fes/form.php:469
898
  msgid "eg. http://yoursite.com/your-event"
899
  msgstr "z.B. http://ihreseite.com/ihre-veranstaltung"
900
 
901
+ #: app/features/events.php:1009
902
  #, fuzzy
903
  #| msgid ""
904
  #| "If you fill it, it will be replaced instead of default event page link. "
912
  "dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
913
  "einschließlich http(s)://"
914
 
915
+ #: app/features/events.php:1009
916
  msgid "URL Shortener"
917
  msgstr ""
918
 
919
+ #: app/features/events.php:1015 app/features/events.php:1024
920
+ #: app/features/fes/form.php:468 app/libraries/main.php:4447
921
  #: app/skins/single/default.php:115 app/skins/single/default.php:326
922
  #: app/skins/single/m1.php:191 app/skins/single/m2.php:124
923
+ #: app/skins/single/modern.php:132 app/widgets/single.php:107
924
  msgid "More Info"
925
  msgstr "Mehr Informationen"
926
 
927
+ #: app/features/events.php:1017 app/features/fes/form.php:470
928
  msgid "More Information"
929
  msgstr "z.B. Noch mehr Informationen "
930
 
931
+ #: app/features/events.php:1019 app/features/fes/form.php:472
932
  msgid "Current Window"
933
  msgstr "Aktuelles Fenster"
934
 
935
+ #: app/features/events.php:1020 app/features/fes/form.php:473
936
  msgid "New Window"
937
  msgstr "Neues Fenster"
938
 
939
+ #: app/features/events.php:1025 app/features/fes/form.php:475
940
  msgid ""
941
  "If you fill it, it will be shown in event details page as an optional link. "
942
  "Insert full link including http(s)://"
947
  "Text angezeigt werden soll: zum Beispiel: Noch mehr Informationen oder Hier "
948
  "zur Anmeldung (z.B. bei Webinaren sinnvoll) "
949
 
950
+ #: app/features/events.php:1061 app/features/events.php:1082
951
  msgid "Total booking limits"
952
  msgstr "Gesamt Verfügbare Plätze"
953
 
954
+ #: app/features/events.php:1071 app/features/events.php:1240
955
+ #: app/features/events.php:1372 app/modules/booking/default.php:81
956
  #: app/modules/booking/steps/tickets.php:40
957
  #: app/skins/available_spot/tpl.php:139
958
  msgid "Unlimited"
959
  msgstr "Unlimitiert"
960
 
961
+ #: app/features/events.php:1073
962
  msgid "100"
963
  msgstr "z.B. 100"
964
 
965
+ #: app/features/events.php:1083
966
  msgid ""
967
  "If you want to set a limit to all tickets, uncheck this checkbox and put a "
968
  "limitation number."
969
  msgstr ""
970
 
971
+ #: app/features/events.php:1083
972
  #, fuzzy
973
  #| msgid "Choose your single event style."
974
  msgid "Read About A Booking System"
975
  msgstr "Wählen Sie Ihren Single Event Stil"
976
 
977
+ #: app/features/events.php:1105 app/libraries/book.php:60
978
+ #: app/libraries/main.php:4451 app/modules/booking/steps/tickets.php:40
979
  msgid "Tickets"
980
  msgstr "Tickets"
981
 
982
+ #: app/features/events.php:1108
983
  msgid ""
984
  "You're translating an event so MEC will use the original event for tickets "
985
  "and booking. You can only translate the ticket name and description. Please "
986
  "define exact tickets that you defined in the original event here."
987
  msgstr ""
988
 
989
+ #: app/features/events.php:1125 app/features/events.php:1292
990
  msgid "Ticket Name"
991
  msgstr "Ticket Name"
992
 
993
+ #: app/features/events.php:1129 app/features/events.php:1296
994
+ #: app/features/events.php:2558 app/features/events.php:2600
995
  #: app/features/ix.php:2740 app/features/ix.php:2781
996
  msgid "Start Time"
997
  msgstr "Uhrzeit des Beginns"
998
 
999
+ #: app/features/events.php:1167 app/features/events.php:1319
1000
+ #: app/features/events.php:2558 app/features/events.php:2600
1001
  #: app/features/ix.php:2740 app/features/ix.php:2781
1002
  msgid "End Time"
1003
  msgstr "Uhrzeit Ende"
1004
 
1005
+ #: app/features/events.php:1210 app/features/events.php:1213
1006
+ #: app/features/events.php:1263 app/features/events.php:1277
1007
+ #: app/features/events.php:1347 app/features/events.php:1350
1008
+ #: app/features/events.php:1389 app/features/events.php:1577
1009
+ #: app/features/events.php:1580 app/features/events.php:1611
1010
+ #: app/features/events.php:1614 app/features/mec/settings.php:1551
1011
  #: app/features/mec/settings.php:1554 app/features/mec/settings.php:1583
1012
  #: app/features/mec/settings.php:1586
1013
  msgid "Price"
1014
  msgstr "Preis"
1015
 
1016
+ #: app/features/events.php:1214 app/features/events.php:1351
1017
  msgid "Insert 0 for free ticket. Only numbers please."
1018
  msgstr "Bitte 0 für kostenloses Ticket eingeben. Bitte nur Zahlen eintragen"
1019
 
1020
+ #: app/features/events.php:1220 app/features/events.php:1223
1021
+ #: app/features/events.php:1357 app/features/events.php:1360
1022
  msgid "Price Label"
1023
  msgstr "Preisschild"
1024
 
1025
+ #: app/features/events.php:1224 app/features/events.php:1361
1026
  msgid "For showing on website. e.g. $15"
1027
  msgstr "Um das auf der Webseite anzuzeigen zum Beispiel 15 €"
1028
 
1029
+ #: app/features/events.php:1231 app/features/events.php:1368
1030
  msgid "Available Tickets"
1031
  msgstr "Verfügbare Tickets: %s "
1032
 
1033
+ #: app/features/events.php:1247 app/features/events.php:1378
1034
  #, fuzzy
1035
  #| msgid "Price Label"
1036
  msgid "Price per Date"
1037
  msgstr "Preisschild"
1038
 
1039
+ #: app/features/events.php:1264 app/features/events.php:1278
1040
+ #: app/features/events.php:1390 app/features/labels.php:60
1041
+ #: app/features/mec/meta_boxes/display_options.php:795
1042
  #: app/features/mec/meta_boxes/search_form.php:66
1043
  #: app/features/mec/meta_boxes/search_form.php:127
1044
  #: app/features/mec/meta_boxes/search_form.php:188
1045
+ #: app/features/mec/meta_boxes/search_form.php:249
1046
+ #: app/features/mec/meta_boxes/search_form.php:310
1047
+ #: app/features/mec/meta_boxes/search_form.php:371
1048
+ #: app/features/mec/meta_boxes/search_form.php:432
1049
+ #: app/features/mec/meta_boxes/search_form.php:486
1050
+ #: app/features/mec/meta_boxes/search_form.php:547
1051
+ #: app/features/mec/meta_boxes/search_form.php:608 app/libraries/skins.php:911
1052
  msgid "Label"
1053
  msgstr "Label"
1054
 
1055
+ #: app/features/events.php:1426
1056
  msgid "Fees"
1057
  msgstr "Gebühren"
1058
 
1059
+ #: app/features/events.php:1436 app/features/events.php:1551
1060
+ #: app/features/events.php:1711
1061
  msgid "Inherit from global options"
1062
  msgstr "Aus den globalen Einstellungen übernehmen"
1063
 
1064
+ #: app/features/events.php:1458 app/features/events.php:1489
1065
  #: app/features/mec/settings.php:1470 app/features/mec/settings.php:1499
1066
  msgid "Fee Title"
1067
  msgstr "Gebühren Name"
1068
 
1069
+ #: app/features/events.php:1462 app/features/events.php:1465
1070
+ #: app/features/events.php:1493 app/features/events.php:1496
1071
  #: app/features/mec/settings.php:1474 app/features/mec/settings.php:1477
1072
  #: app/features/mec/settings.php:1503 app/features/mec/settings.php:1506
1073
  msgid "Amount"
1074
  msgstr "Betrag"
1075
 
1076
+ #: app/features/events.php:1466 app/features/events.php:1497
1077
  #: app/features/mec/settings.php:1478 app/features/mec/settings.php:1507
1078
  msgid ""
1079
  "Fee amount, considered as fixed amount if you set the type to amount "
1082
  "Gebührenbetrag, gilt als fester Betrag, wenn Sie die Art auf Betrag setzen, "
1083
  "sonst als Prozentsatz"
1084
 
1085
+ #: app/features/events.php:1473 app/features/events.php:1504
1086
  #: app/features/mec/settings.php:1485 app/features/mec/settings.php:1514
1087
  msgid "Percent"
1088
  msgstr "Prozent"
1089
 
1090
+ #: app/features/events.php:1474 app/features/events.php:1505
1091
  #: app/features/mec/settings.php:1486 app/features/mec/settings.php:1515
1092
  msgid "Amount (Per Ticket)"
1093
  msgstr "Betrag (pro Ticket)"
1094
 
1095
+ #: app/features/events.php:1475 app/features/events.php:1506
1096
  #: app/features/mec/settings.php:1487 app/features/mec/settings.php:1516
1097
  msgid "Amount (Per Booking)"
1098
  msgstr "Betrag (pro Buchung)"
1099
 
1100
+ #: app/features/events.php:1541 app/features/mec/settings.php:1243
1101
  msgid "Ticket Variations / Options"
1102
  msgstr ""
1103
 
1104
+ #: app/features/events.php:1581 app/features/events.php:1615
1105
  #: app/features/mec/settings.php:1555 app/features/mec/settings.php:1587
1106
  #, fuzzy
1107
  #| msgid "Option"
1108
  msgid "Option Price"
1109
  msgstr "Option"
1110
 
1111
+ #: app/features/events.php:1587 app/features/events.php:1590
1112
+ #: app/features/events.php:1621 app/features/events.php:1624
1113
  #: app/features/mec/settings.php:1561 app/features/mec/settings.php:1564
1114
  #: app/features/mec/settings.php:1593 app/features/mec/settings.php:1596
1115
  #, fuzzy
1117
  msgid "Maximum Per Ticket"
1118
  msgstr "Betrag (pro Ticket)"
1119
 
1120
+ #: app/features/events.php:1591 app/features/events.php:1625
1121
  #: app/features/mec/settings.php:1565 app/features/mec/settings.php:1597
1122
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1123
  msgstr ""
1124
 
1125
+ #: app/features/events.php:1764 app/features/mec/regform.php:180
1126
+ #: app/libraries/main.php:2125
1127
  #, fuzzy
1128
  #| msgid "Name"
1129
  msgid "MEC Name"
1130
  msgstr "Name"
1131
 
1132
+ #: app/features/events.php:1765 app/features/mec/regform.php:181
1133
+ #: app/libraries/main.php:2154
1134
  #, fuzzy
1135
  #| msgid "Email"
1136
  msgid "MEC Email"
1137
  msgstr "Email"
1138
 
1139
+ #: app/features/events.php:1766 app/features/mec/regform.php:182
1140
+ #: app/libraries/main.php:2095
1141
  msgid "Text"
1142
  msgstr "Text"
1143
 
1144
+ #: app/features/events.php:1769 app/features/mec/regform.php:185
1145
  #: app/features/organizers.php:102 app/features/organizers.php:146
1146
+ #: app/features/speakers.php:112 app/features/speakers.php:176
1147
+ #: app/features/speakers.php:245 app/libraries/main.php:2271
1148
  msgid "Tel"
1149
  msgstr "Tel"
1150
 
1151
+ #: app/features/events.php:1770 app/features/mec/regform.php:186
1152
+ #: app/libraries/main.php:2213
1153
  msgid "File"
1154
  msgstr ""
1155
 
1156
+ #: app/features/events.php:1771 app/features/mec/regform.php:187
1157
+ #: app/libraries/main.php:2300
1158
  msgid "Textarea"
1159
  msgstr "Textbereich"
1160
 
1161
+ #: app/features/events.php:1772 app/features/mec/regform.php:188
1162
+ #: app/libraries/main.php:2353
1163
  msgid "Checkboxes"
1164
  msgstr "Checkboxes"
1165
 
1166
+ #: app/features/events.php:1773 app/features/mec/regform.php:189
1167
+ #: app/libraries/main.php:2397
1168
  msgid "Radio Buttons"
1169
  msgstr "Radio Buttons"
1170
 
1171
+ #: app/features/events.php:1774 app/features/mec/meta_boxes/search_form.php:34
1172
  #: app/features/mec/meta_boxes/search_form.php:41
1173
  #: app/features/mec/meta_boxes/search_form.php:48
1174
  #: app/features/mec/meta_boxes/search_form.php:55
1191
  #: app/features/mec/meta_boxes/search_form.php:198
1192
  #: app/features/mec/meta_boxes/search_form.php:217
1193
  #: app/features/mec/meta_boxes/search_form.php:224
1194
+ #: app/features/mec/meta_boxes/search_form.php:231
1195
+ #: app/features/mec/meta_boxes/search_form.php:238
1196
+ #: app/features/mec/meta_boxes/search_form.php:245
1197
+ #: app/features/mec/meta_boxes/search_form.php:252
1198
+ #: app/features/mec/meta_boxes/search_form.php:259
1199
  #: app/features/mec/meta_boxes/search_form.php:278
1200
  #: app/features/mec/meta_boxes/search_form.php:285
1201
+ #: app/features/mec/meta_boxes/search_form.php:292
1202
+ #: app/features/mec/meta_boxes/search_form.php:299
1203
+ #: app/features/mec/meta_boxes/search_form.php:306
1204
+ #: app/features/mec/meta_boxes/search_form.php:313
1205
+ #: app/features/mec/meta_boxes/search_form.php:320
1206
  #: app/features/mec/meta_boxes/search_form.php:339
1207
  #: app/features/mec/meta_boxes/search_form.php:346
1208
+ #: app/features/mec/meta_boxes/search_form.php:353
1209
+ #: app/features/mec/meta_boxes/search_form.php:360
1210
+ #: app/features/mec/meta_boxes/search_form.php:367
1211
+ #: app/features/mec/meta_boxes/search_form.php:374
1212
+ #: app/features/mec/meta_boxes/search_form.php:381
1213
  #: app/features/mec/meta_boxes/search_form.php:400
1214
+ #: app/features/mec/meta_boxes/search_form.php:407
1215
+ #: app/features/mec/meta_boxes/search_form.php:414
1216
+ #: app/features/mec/meta_boxes/search_form.php:421
1217
+ #: app/features/mec/meta_boxes/search_form.php:428
1218
+ #: app/features/mec/meta_boxes/search_form.php:435
1219
  #: app/features/mec/meta_boxes/search_form.php:454
1220
  #: app/features/mec/meta_boxes/search_form.php:461
1221
+ #: app/features/mec/meta_boxes/search_form.php:468
1222
+ #: app/features/mec/meta_boxes/search_form.php:475
1223
+ #: app/features/mec/meta_boxes/search_form.php:482
1224
+ #: app/features/mec/meta_boxes/search_form.php:489
1225
+ #: app/features/mec/meta_boxes/search_form.php:496
1226
  #: app/features/mec/meta_boxes/search_form.php:515
1227
  #: app/features/mec/meta_boxes/search_form.php:522
1228
+ #: app/features/mec/meta_boxes/search_form.php:529
1229
+ #: app/features/mec/meta_boxes/search_form.php:536
1230
+ #: app/features/mec/meta_boxes/search_form.php:543
1231
+ #: app/features/mec/meta_boxes/search_form.php:550
1232
+ #: app/features/mec/meta_boxes/search_form.php:557
1233
  #: app/features/mec/meta_boxes/search_form.php:576
1234
  #: app/features/mec/meta_boxes/search_form.php:583
1235
+ #: app/features/mec/meta_boxes/search_form.php:590
1236
+ #: app/features/mec/meta_boxes/search_form.php:597
1237
+ #: app/features/mec/meta_boxes/search_form.php:604
1238
+ #: app/features/mec/meta_boxes/search_form.php:611
1239
+ #: app/features/mec/meta_boxes/search_form.php:618
1240
+ #: app/features/mec/regform.php:190 app/libraries/main.php:2441
1241
  msgid "Dropdown"
1242
  msgstr "Dropdown"
1243
 
1244
+ #: app/features/events.php:1775 app/features/mec/regform.php:191
1245
+ #: app/libraries/main.php:2488
1246
  msgid "Agreement"
1247
  msgstr "Zustimmung"
1248
 
1249
+ #: app/features/events.php:1776 app/features/mec/regform.php:192
1250
+ #: app/libraries/main.php:2329
1251
  msgid "Paragraph"
1252
  msgstr "Absatz"
1253
 
1254
+ #: app/features/events.php:2316 app/features/events.php:2333
1255
+ #: app/features/events.php:2350
1256
  #, php-format
1257
  msgid "Show all %s"
1258
  msgstr "Zeige alle %s"
1259
 
1260
+ #: app/features/events.php:2316
1261
  msgid "labels"
1262
  msgstr "Labels + Eventstatus"
1263
 
1264
+ #: app/features/events.php:2333
1265
  msgid "locations"
1266
  msgstr "Orte"
1267
 
1268
+ #: app/features/events.php:2350
1269
  msgid "organizers"
1270
  msgstr "Veranstalter"
1271
 
1272
+ #: app/features/events.php:2378 app/features/events.php:2558
1273
+ #: app/features/events.php:2600 app/features/ix.php:2740
1274
  #: app/features/ix.php:2781 app/features/locations.php:58
1275
  #: app/features/locations.php:229 app/features/locations.php:286
1276
  #: app/features/locations.php:288 app/features/locations.php:297
1277
+ #: app/features/mec/meta_boxes/display_options.php:796
1278
  #: app/features/mec/meta_boxes/search_form.php:38
1279
  #: app/features/mec/meta_boxes/search_form.php:99
1280
  #: app/features/mec/meta_boxes/search_form.php:160
1281
+ #: app/features/mec/meta_boxes/search_form.php:221
1282
+ #: app/features/mec/meta_boxes/search_form.php:282
1283
+ #: app/features/mec/meta_boxes/search_form.php:343
1284
+ #: app/features/mec/meta_boxes/search_form.php:404
1285
+ #: app/features/mec/meta_boxes/search_form.php:458
1286
+ #: app/features/mec/meta_boxes/search_form.php:519
1287
+ #: app/features/mec/meta_boxes/search_form.php:580 app/libraries/main.php:1633
1288
+ #: app/libraries/main.php:4420 app/libraries/skins.php:807
1289
  #: app/skins/single.php:356 app/skins/single/default.php:151
1290
  #: app/skins/single/default.php:362 app/skins/single/m1.php:155
1291
  #: app/skins/single/m2.php:87 app/skins/single/modern.php:94
1292
  msgid "Location"
1293
  msgstr "Ort"
1294
 
1295
+ #: app/features/events.php:2379 app/features/events.php:2558
1296
+ #: app/features/events.php:2600 app/features/ix.php:2740
1297
+ #: app/features/ix.php:2781 app/features/mec/meta_boxes/display_options.php:797
1298
  #: app/features/mec/meta_boxes/search_form.php:45
1299
  #: app/features/mec/meta_boxes/search_form.php:106
1300
  #: app/features/mec/meta_boxes/search_form.php:167
1301
+ #: app/features/mec/meta_boxes/search_form.php:228
1302
+ #: app/features/mec/meta_boxes/search_form.php:289
1303
+ #: app/features/mec/meta_boxes/search_form.php:350
1304
+ #: app/features/mec/meta_boxes/search_form.php:411
1305
+ #: app/features/mec/meta_boxes/search_form.php:465
1306
+ #: app/features/mec/meta_boxes/search_form.php:526
1307
+ #: app/features/mec/meta_boxes/search_form.php:587
1308
  #: app/features/organizers.php:58 app/features/organizers.php:199
1309
  #: app/features/organizers.php:255 app/features/organizers.php:257
1310
+ #: app/features/organizers.php:266 app/libraries/main.php:4422
1311
+ #: app/libraries/skins.php:833 app/skins/single/default.php:192
1312
  #: app/skins/single/default.php:403 app/skins/single/m1.php:90
1313
  #: app/skins/single/m2.php:22 app/skins/single/modern.php:31
1314
  msgid "Organizer"
1315
  msgstr "Veranstalter"
1316
 
1317
+ #: app/features/events.php:2383
1318
  msgid "Repeat"
1319
  msgstr "Wiederholen"
1320
 
1321
+ #: app/features/events.php:2384
1322
  msgid "Author"
1323
  msgstr "Autor"
1324
 
1325
+ #: app/features/events.php:2494 app/features/events.php:2495
1326
  msgid "iCal Export"
1327
  msgstr "ical Export"
1328
 
1329
+ #: app/features/events.php:2497 app/features/events.php:2498
1330
  msgid "CSV Export"
1331
  msgstr "CSV Export"
1332
 
1333
+ #: app/features/events.php:2500 app/features/events.php:2501
1334
  msgid "MS Excel Export"
1335
  msgstr "MS Excel Export"
1336
 
1337
+ #: app/features/events.php:2503 app/features/events.php:2504
1338
  msgid "XML Export"
1339
  msgstr "XML Export"
1340
 
1341
+ #: app/features/events.php:2506 app/features/events.php:2507
1342
  msgid "JSON Export"
1343
  msgstr "JSON Export"
1344
 
1345
+ #: app/features/events.php:2509 app/features/events.php:2510
1346
  msgid "Duplicate"
1347
  msgstr "Kopie"
1348
 
1349
+ #: app/features/events.php:2558 app/features/events.php:2600
1350
  #: app/features/ix.php:2740 app/features/ix.php:2781
1351
  #: app/features/labels.php:176 app/features/locations.php:228
1352
+ #: app/features/organizers.php:198 app/features/speakers.php:242
1353
  msgid "ID"
1354
  msgstr "ID"
1355
 
1356
+ #: app/features/events.php:2558 app/features/events.php:2600
1357
  #: app/features/ix.php:2740 app/features/ix.php:2781
1358
  msgid "Link"
1359
  msgstr "Link"
1360
 
1361
+ #: app/features/events.php:2558 app/features/events.php:2600
1362
  #, php-format
1363
  msgid "%s Tel"
1364
  msgstr "%s Tel"
1365
 
1366
+ #: app/features/events.php:2558 app/features/events.php:2600
1367
  #, php-format
1368
  msgid "%s Email"
1369
  msgstr "%s Email"
1427
  msgid "Go back to events list."
1428
  msgstr "Zurück zur Liste der Veranstaltungen"
1429
 
1430
+ #: app/features/fes/form.php:363
1431
  msgid "Add certain days to event occurrence dates."
1432
  msgstr "Fügen Sie bestimmte Tage zu den Ereignisdaten hinzu. "
1433
 
1434
+ #: app/features/fes/form.php:422
1435
  msgid "Note to reviewer"
1436
  msgstr "Zusätzliche Anmerkungen zum Event "
1437
 
1438
+ #: app/features/fes/form.php:440
1439
  msgid "User Data"
1440
  msgstr "Benutzerdaten"
1441
 
1442
+ #: app/features/fes/form.php:443
1443
  msgid "eg. yourname@gmail.com"
1444
  msgstr "z.B. IhrName@ihrewebseite.de"
1445
 
1446
+ #: app/features/fes/form.php:447 app/features/organizers.php:275
1447
  msgid "eg. John Smith"
1448
  msgstr "z.B. Max Mustermann"
1449
 
1450
+ #: app/features/fes/form.php:465
1451
  msgid ""
1452
  "If you fill it, it will be replaced instead of default event page link. "
1453
  "Insert full link including http(s)://"
1456
  "dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
1457
  "einschließlich http(s)://"
1458
 
1459
+ #: app/features/fes/form.php:501 app/features/mec/settings.php:1177
1460
  msgid "Featured Image"
1461
  msgstr "Ausgewähltes Bild"
1462
 
1463
+ #: app/features/fes/form.php:506
1464
  msgid "Remove Image"
1465
  msgstr "Bild entfernen"
1466
 
1467
+ #: app/features/fes/form.php:548 app/features/labels.php:61
1468
  #: app/features/labels.php:220 app/features/mec.php:318
1469
+ #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4417
1470
  #: app/skins/single/default.php:130 app/skins/single/default.php:341
1471
+ #: app/skins/single/m1.php:64 app/skins/single/modern.php:214
1472
  msgid "Labels"
1473
  msgstr "Labels"
1474
 
1475
+ #: app/features/fes/form.php:593 app/features/mec.php:316
1476
  #: app/features/mec/meta_boxes/filter.php:138
1477
  msgid "Tags"
1478
  msgstr "Schlagworte"
1479
 
1480
+ #: app/features/fes/form.php:595
1481
  msgid "Insert your desired tags, comma separated."
1482
  msgstr ""
1483
  "Geben Sie die gewünschten Tags (Schlagworte) durch ein Komma separiert ein"
1484
 
1485
+ #: app/features/fes/form.php:631
1486
  msgid "Submit"
1487
  msgstr "Buchung abschließen"
1488
 
1490
  msgid "Click again to remove!"
1491
  msgstr "Zum Entfernen nochmals klicken"
1492
 
1493
+ #: app/features/fes/list.php:64 app/features/fes/list.php:85
1494
  msgid "Add new"
1495
  msgstr "Neu hinzufügen"
1496
 
1497
+ #: app/features/fes/list.php:76
1498
  msgid "View"
1499
  msgstr "Anzeigen"
1500
 
1501
+ #: app/features/fes/list.php:85
1502
  #, php-format
1503
  msgid "No events found! %s"
1504
  msgstr "Keine Veranstaltungen gefunden! %s"
1509
 
1510
  #: app/features/ix.php:107 app/features/mec/gateways.php:77
1511
  #: app/features/mec/ie.php:73 app/features/mec/messages.php:77
1512
+ #: app/features/mec/notifications.php:126 app/features/mec/regform.php:111
1513
  #: app/features/mec/settings.php:261 app/features/mec/styles.php:77
1514
  #: app/features/mec/styling.php:99 app/features/mec/support.php:73
1515
  msgid "Import / Export"
1790
  #: app/features/ix/export_g_calendar.php:72
1791
  #: app/features/ix/export_g_calendar.php:147
1792
  #: app/features/ix/export_g_calendar.php:164
1793
+ #: app/features/mec/notifications.php:210
1794
+ #: app/features/mec/notifications.php:263
1795
+ #: app/features/mec/notifications.php:316
1796
+ #: app/features/mec/notifications.php:516
1797
  msgid "Add to Google Calendar"
1798
  msgstr "Zum Google Kalender hinzufügen"
1799
 
1800
  #: app/features/ix/export_g_calendar.php:90
1801
+ #: app/features/mec/notifications.php:666 app/features/mec/settings.php:1788
1802
  msgid "Checking ..."
1803
  msgstr "Überprüfung"
1804
 
1856
  #: app/features/mec/meta_boxes/display_options.php:470
1857
  #: app/features/mec/meta_boxes/display_options.php:577
1858
  #: app/features/mec/meta_boxes/display_options.php:684
1859
+ #: app/features/mec/meta_boxes/display_options.php:757
1860
+ #: app/features/mec/meta_boxes/display_options.php:937
1861
  #: app/features/mec/settings.php:811 app/features/mec/settings.php:985
1862
  #: app/features/mec/settings.php:1003 app/features/mec/settings.php:1327
1863
  #: app/features/mec/settings.php:1436 app/features/mec/settings.php:1454
2043
  msgstr "Auto Synchronisation"
2044
 
2045
  #: app/features/ix/sync.php:22
2046
+ #: app/features/mec/meta_boxes/display_options.php:757
2047
  #, php-format
2048
  msgid "%s is required to use synchronization feature."
2049
  msgstr ""
2054
 
2055
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2056
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2057
+ #: app/features/mec/notifications.php:460
2058
  msgid "Important Note"
2059
  msgstr "Important Note"
2060
 
2190
  #: app/features/mec/meta_boxes/display_options.php:475
2191
  #: app/features/mec/meta_boxes/display_options.php:525
2192
  #: app/features/mec/meta_boxes/display_options.php:689
2193
+ #: app/features/mec/meta_boxes/display_options.php:819
2194
+ #: app/features/mec/meta_boxes/display_options.php:876
2195
+ #: app/features/mec/meta_boxes/display_options.php:968
2196
+ #: app/features/mec/meta_boxes/display_options.php:1054
2197
  msgid "Style"
2198
  msgstr "Style"
2199
 
2209
  #: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:82
2210
  #: app/skins/monthly_view/calendar_clean.php:81
2211
  #: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
2212
+ #: app/skins/timetable/render.php:33 app/skins/timetable/render.php:136
2213
  #: app/skins/weekly_view/render.php:31 app/skins/yearly_view/render.php:48
2214
  #, fuzzy
2215
  #| msgid "Featured Image"
2217
  msgstr "Ausgewähltes Bild"
2218
 
2219
  #: app/features/labels.php:117 app/features/labels.php:142
2220
+ #: app/libraries/main.php:4644 app/skins/agenda/render.php:41
2221
  #: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:59
2222
  #: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
2223
  #: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
2225
  #: app/skins/monthly_view/calendar.php:86
2226
  #: app/skins/monthly_view/calendar_clean.php:85
2227
  #: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
2228
+ #: app/skins/timetable/render.php:37 app/skins/timetable/render.php:137
2229
  #: app/skins/weekly_view/render.php:35 app/skins/yearly_view/render.php:52
2230
  msgid "Canceled"
2231
  msgstr "Abgesagt"
2235
  msgstr ""
2236
 
2237
  #: app/features/labels.php:179 app/features/locations.php:231
2238
+ #: app/features/organizers.php:201 app/features/speakers.php:246
2239
  #: app/modules/booking/steps/tickets.php:38
2240
  msgid "Count"
2241
  msgstr "Zähler"
2252
 
2253
  #: app/features/locations.php:59 app/features/mec.php:319
2254
  #: app/features/mec/dashboard.php:201 app/features/mec/meta_boxes/filter.php:87
2255
+ #: app/libraries/main.php:4419
2256
  msgid "Locations"
2257
  msgstr "Orte"
2258
 
2285
 
2286
  #: app/features/locations.php:137 app/features/locations.php:179
2287
  #: app/features/organizers.php:126 app/features/organizers.php:158
2288
+ #: app/features/speakers.php:152 app/features/speakers.php:196
2289
  msgid "Thumbnail"
2290
  msgstr "Miniaturansicht"
2291
 
2292
  #: app/features/locations.php:142 app/features/locations.php:182
2293
  #: app/features/organizers.php:131 app/features/organizers.php:161
2294
+ #: app/features/speakers.php:157 app/features/speakers.php:199
2295
  msgid "Upload/Add image"
2296
  msgstr "Bild hochladen/hinzufügen"
2297
 
2299
  #: app/features/locations.php:339 app/features/locations.php:346
2300
  #: app/features/organizers.php:132 app/features/organizers.php:162
2301
  #: app/features/organizers.php:294 app/features/organizers.php:301
2302
+ #: app/features/speakers.php:158 app/features/speakers.php:200
2303
  msgid "Remove image"
2304
  msgstr "Bild entfernen"
2305
 
2364
  msgid "Don't show map in single event page"
2365
  msgstr "Karte in Einzelansicht nicht anzeigen"
2366
 
2367
+ #: app/features/locations.php:355 app/libraries/main.php:4453
2368
  #, fuzzy
2369
  #| msgid "Locations"
2370
  msgid "Other Locations"
2416
 
2417
  #: app/features/mec.php:299 app/features/mec/gateways.php:84
2418
  #: app/features/mec/ie.php:80 app/features/mec/messages.php:84
2419
+ #: app/features/mec/notifications.php:133 app/features/mec/regform.php:118
2420
  #: app/features/mec/settings.php:268 app/features/mec/styles.php:84
2421
  #: app/features/mec/styling.php:106 app/features/mec/support-page.php:9
2422
  #: app/features/mec/support.php:80 app/features/mec/support.php:93
2425
 
2426
  #: app/features/mec.php:320 app/features/mec/dashboard.php:208
2427
  #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2428
+ #: app/libraries/main.php:4421
2429
  msgid "Organizers"
2430
  msgstr "Veranstalter"
2431
 
2432
+ #: app/features/mec.php:328 app/features/mec.php:348
2433
  #: app/features/mec/dashboard.php:194
2434
  msgid "Shortcodes"
2435
  msgstr "Shortcodes"
2448
  msgid "Addons"
2449
  msgstr ""
2450
 
2451
+ #: app/features/mec.php:350
2452
  msgid "Add Shortcode"
2453
  msgstr "Shortcode hinzufügen"
2454
 
2455
+ #: app/features/mec.php:351
2456
  msgid "Add New Shortcode"
2457
  msgstr "Neuen Shortcode hinzufügen"
2458
 
2459
+ #: app/features/mec.php:352
2460
  msgid "No shortcodes found!"
2461
  msgstr "Keine Shortcodes gefunden!"
2462
 
2463
+ #: app/features/mec.php:353
2464
  msgid "All Shortcodes"
2465
  msgstr "Alle Shortcodes"
2466
 
2467
+ #: app/features/mec.php:354
2468
  msgid "Edit shortcodes"
2469
  msgstr "Shortcode ändern"
2470
 
2471
+ #: app/features/mec.php:355
2472
  msgid "No shortcodes found in Trash!"
2473
  msgstr "Keine Shortcodes im Papierkorb gefunden!"
2474
 
2475
+ #: app/features/mec.php:404
2476
  msgid "Display Options"
2477
  msgstr "Darstellungsoptionen"
2478
 
2479
+ #: app/features/mec.php:405
2480
  msgid "Filter Options"
2481
  msgstr "Filteroptionen"
2482
 
2483
+ #: app/features/mec.php:407
2484
  msgid "Search Form"
2485
  msgstr "Suche Formular"
2486
 
2487
+ #: app/features/mec.php:757
2488
  msgid "Display content's images as Popup"
2489
  msgstr ""
2490
 
2491
+ #: app/features/mec.php:770
2492
  msgid "Single Event Display Method"
2493
  msgstr "Single Event Anzeigemethode"
2494
 
2495
+ #: app/features/mec.php:775
2496
  msgid "Separate Window"
2497
  msgstr "Separates Fenster"
2498
 
2499
+ #: app/features/mec.php:776
2500
  msgid "Modal 1"
2501
  msgstr "Modal 1"
2502
 
2546
  msgid "Modern Events Calendar (Lite)"
2547
  msgstr "Moderner Event Kalender "
2548
 
2549
+ #: app/features/mec/dashboard.php:65 app/libraries/factory.php:197
2550
  msgctxt "plugin rate"
2551
  msgid "Rate the plugin ★★★★★"
2552
  msgstr ""
2657
  #: app/features/mec/gateways.php:171 app/features/mec/messages.php:11
2658
  #: app/features/mec/messages.php:118 app/features/mec/messages.php:127
2659
  #: app/features/mec/messages.php:161 app/features/mec/messages.php:170
2660
+ #: app/features/mec/notifications.php:10 app/features/mec/notifications.php:572
2661
+ #: app/features/mec/notifications.php:584
2662
+ #: app/features/mec/notifications.php:683
2663
+ #: app/features/mec/notifications.php:697 app/features/mec/regform.php:47
2664
  #: app/features/mec/regform.php:198 app/features/mec/regform.php:253
2665
  #: app/features/mec/regform.php:289 app/features/mec/regform.php:298
2666
  #: app/features/mec/settings.php:28 app/features/mec/settings.php:1714
2668
  #: app/features/mec/settings.php:1819 app/features/mec/styles.php:11
2669
  #: app/features/mec/styles.php:103 app/features/mec/styles.php:112
2670
  #: app/features/mec/styles.php:149 app/features/mec/styles.php:158
2671
+ #: app/features/mec/styling.php:33 app/features/mec/styling.php:324
2672
+ #: app/features/mec/styling.php:333 app/features/mec/styling.php:396
2673
+ #: app/features/mec/styling.php:405
2674
  msgid "Save Changes"
2675
  msgstr "Änderungen sichern"
2676
 
2677
  #: app/features/mec/gateways.php:56 app/features/mec/ie.php:52
2678
+ #: app/features/mec/messages.php:56 app/features/mec/notifications.php:105
2679
  #: app/features/mec/regform.php:90 app/features/mec/settings.php:240
2680
  #: app/features/mec/styles.php:56 app/features/mec/styling.php:78
2681
  #: app/features/mec/support.php:52
2683
  msgstr "Styling-Optionen"
2684
 
2685
  #: app/features/mec/gateways.php:63 app/features/mec/ie.php:59
2686
+ #: app/features/mec/messages.php:63 app/features/mec/notifications.php:112
2687
  #: app/features/mec/regform.php:97 app/features/mec/settings.php:247
2688
  #: app/features/mec/styles.php:63 app/features/mec/styling.php:85
2689
  #: app/features/mec/support.php:59
2692
 
2693
  #: app/features/mec/gateways.php:70 app/features/mec/ie.php:66
2694
  #: app/features/mec/messages.php:70 app/features/mec/messages.php:97
2695
+ #: app/features/mec/notifications.php:119 app/features/mec/regform.php:104
2696
  #: app/features/mec/settings.php:254 app/features/mec/styles.php:70
2697
  #: app/features/mec/styling.php:92 app/features/mec/support.php:66
2698
  msgid "Messages"
2699
  msgstr "Nachrichten"
2700
 
2701
  #: app/features/mec/gateways.php:140 app/features/mec/messages.php:145
2702
+ #: app/features/mec/notifications.php:661 app/features/mec/regform.php:273
2703
  #: app/features/mec/settings.php:1783 app/features/mec/styles.php:132
2704
+ #: app/features/mec/styling.php:378
2705
  msgid "Saved"
2706
  msgstr "Gesichert"
2707
 
2708
  #: app/features/mec/gateways.php:141 app/features/mec/messages.php:146
2709
+ #: app/features/mec/notifications.php:662 app/features/mec/regform.php:274
2710
  #: app/features/mec/settings.php:1784 app/features/mec/styles.php:133
2711
+ #: app/features/mec/styling.php:379
2712
  msgid "Settings Saved!"
2713
  msgstr ""
2714
 
2759
  #: app/features/mec/meta_boxes/display_options.php:34
2760
  #: app/features/mec/meta_boxes/display_options.php:159
2761
  #: app/features/mec/meta_boxes/display_options.php:527
2762
+ #: app/features/mec/meta_boxes/display_options.php:821
2763
  #: app/features/mec/settings.php:432 app/features/mec/settings.php:456
2764
  #: app/features/mec/settings.php:465 app/features/mec/settings.php:506
2765
  #: app/features/mec/settings.php:530 app/features/mec/settings.php:539
2778
  #: app/features/mec/meta_boxes/display_options.php:477
2779
  #: app/features/mec/meta_boxes/display_options.php:529
2780
  #: app/features/mec/meta_boxes/display_options.php:691
2781
+ #: app/features/mec/meta_boxes/display_options.php:823
2782
  #: app/features/mec/settings.php:434 app/features/mec/settings.php:447
2783
  #: app/features/mec/settings.php:458 app/features/mec/settings.php:468
2784
  #: app/features/mec/settings.php:508 app/features/mec/settings.php:521
2801
  #: app/features/mec/meta_boxes/display_options.php:309
2802
  #: app/features/mec/meta_boxes/display_options.php:584
2803
  #: app/features/mec/meta_boxes/display_options.php:617
2804
+ #: app/features/mec/meta_boxes/display_options.php:764
2805
+ #: app/features/mec/meta_boxes/display_options.php:979
2806
+ #: app/features/mec/meta_boxes/display_options.php:1066
2807
  msgid "Today"
2808
  msgstr "Heute"
2809
 
2812
  #: app/features/mec/meta_boxes/display_options.php:310
2813
  #: app/features/mec/meta_boxes/display_options.php:585
2814
  #: app/features/mec/meta_boxes/display_options.php:618
2815
+ #: app/features/mec/meta_boxes/display_options.php:765
2816
+ #: app/features/mec/meta_boxes/display_options.php:980
2817
+ #: app/features/mec/meta_boxes/display_options.php:1067
2818
  msgid "Tomorrow"
2819
  msgstr "Morgen"
2820
 
2827
  #: app/features/mec/meta_boxes/display_options.php:619
2828
  #: app/features/mec/meta_boxes/display_options.php:654
2829
  #: app/features/mec/meta_boxes/display_options.php:700
2830
+ #: app/features/mec/meta_boxes/display_options.php:766
2831
+ #: app/features/mec/meta_boxes/display_options.php:981
2832
+ #: app/features/mec/meta_boxes/display_options.php:1068
2833
  msgid "Start of Current Month"
2834
  msgstr "Mit Beginn des laufenden Monats"
2835
 
2842
  #: app/features/mec/meta_boxes/display_options.php:620
2843
  #: app/features/mec/meta_boxes/display_options.php:655
2844
  #: app/features/mec/meta_boxes/display_options.php:701
2845
+ #: app/features/mec/meta_boxes/display_options.php:767
2846
+ #: app/features/mec/meta_boxes/display_options.php:982
2847
+ #: app/features/mec/meta_boxes/display_options.php:1069
2848
  msgid "Start of Next Month"
2849
  msgstr "Mit Beginn des kommenden Monats"
2850
 
2858
  #: app/features/mec/meta_boxes/display_options.php:621
2859
  #: app/features/mec/meta_boxes/display_options.php:656
2860
  #: app/features/mec/meta_boxes/display_options.php:702
2861
+ #: app/features/mec/meta_boxes/display_options.php:768
2862
+ #: app/features/mec/meta_boxes/display_options.php:983
2863
+ #: app/features/mec/meta_boxes/display_options.php:1070
2864
  msgid "On a certain date"
2865
  msgstr "An einem bestimmten Tag"
2866
 
2874
  #: app/features/mec/meta_boxes/display_options.php:625
2875
  #: app/features/mec/meta_boxes/display_options.php:659
2876
  #: app/features/mec/meta_boxes/display_options.php:705
2877
+ #: app/features/mec/meta_boxes/display_options.php:771
2878
+ #: app/features/mec/meta_boxes/display_options.php:986
2879
+ #: app/features/mec/meta_boxes/display_options.php:1073
2880
  #, php-format
2881
  msgid "eg. %s"
2882
  msgstr "z.B. %s"
2909
  #: app/features/mec/meta_boxes/display_options.php:325
2910
  #: app/features/mec/meta_boxes/display_options.php:492
2911
  #: app/features/mec/meta_boxes/display_options.php:497
2912
+ #: app/features/mec/meta_boxes/display_options.php:775
2913
+ #: app/features/mec/meta_boxes/display_options.php:780
2914
+ #: app/features/mec/meta_boxes/display_options.php:827
 
 
 
 
2915
  #: app/features/mec/meta_boxes/display_options.php:833
2916
+ #: app/features/mec/meta_boxes/display_options.php:840
2917
+ #: app/features/mec/meta_boxes/display_options.php:845
2918
+ #: app/features/mec/meta_boxes/display_options.php:852
2919
+ #: app/features/mec/meta_boxes/display_options.php:856
2920
+ #: app/features/mec/meta_boxes/display_options.php:884
2921
+ #: app/features/mec/meta_boxes/display_options.php:888
2922
+ #: app/features/mec/meta_boxes/display_options.php:895
2923
+ #: app/features/mec/meta_boxes/display_options.php:899
2924
+ #: app/features/mec/meta_boxes/display_options.php:906
2925
+ #: app/features/mec/meta_boxes/display_options.php:912
2926
+ #: app/features/mec/meta_boxes/display_options.php:942
2927
+ #: app/features/mec/meta_boxes/display_options.php:947
2928
+ #: app/features/mec/meta_boxes/display_options.php:990
2929
+ #: app/features/mec/meta_boxes/display_options.php:996
2930
+ #: app/features/mec/meta_boxes/display_options.php:1003
2931
+ #: app/features/mec/meta_boxes/display_options.php:1007
2932
+ #: app/features/mec/meta_boxes/display_options.php:1014
2933
+ #: app/features/mec/meta_boxes/display_options.php:1018
2934
+ #: app/features/mec/meta_boxes/display_options.php:1077
2935
+ #: app/features/mec/meta_boxes/display_options.php:1083
2936
+ #: app/features/mec/meta_boxes/display_options.php:1090
2937
+ #: app/features/mec/meta_boxes/display_options.php:1096
2938
+ #: app/features/mec/meta_boxes/display_options.php:1103
2939
+ #: app/features/mec/meta_boxes/display_options.php:1109
2940
+ #: app/features/mec/meta_boxes/display_options.php:1116
2941
+ #: app/features/mec/meta_boxes/display_options.php:1122
2942
+ #: app/features/mec/meta_boxes/display_options.php:1129
2943
+ #: app/features/mec/meta_boxes/display_options.php:1135
2944
  msgid "Date Formats"
2945
  msgstr "Datumsformate"
2946
 
2956
  #: app/features/mec/meta_boxes/display_options.php:86
2957
  #: app/features/mec/meta_boxes/display_options.php:224
2958
  #: app/features/mec/meta_boxes/display_options.php:248
2959
+ #: app/features/mec/meta_boxes/display_options.php:1084
2960
+ #: app/features/mec/meta_boxes/display_options.php:1097
2961
+ #: app/features/mec/meta_boxes/display_options.php:1110
2962
+ #: app/features/mec/meta_boxes/display_options.php:1123
2963
+ #: app/features/mec/meta_boxes/display_options.php:1136
2964
  msgid "Default values are d, F and l"
2965
  msgstr ""
2966
  "Standardwerte sind Tag, Monat als ganzes Wort und Wochentag als ganzes Wort"
2978
  #: app/features/mec/meta_boxes/display_options.php:115
2979
  #: app/features/mec/meta_boxes/display_options.php:276
2980
  #: app/features/mec/meta_boxes/display_options.php:332
2981
+ #: app/features/mec/meta_boxes/display_options.php:787
2982
+ #: app/features/mec/meta_boxes/display_options.php:1034
2983
+ #: app/features/mec/meta_boxes/display_options.php:1142
2984
  msgid "Limit"
2985
  msgstr "Limit"
2986
 
2992
  #: app/features/mec/meta_boxes/display_options.php:630
2993
  #: app/features/mec/meta_boxes/display_options.php:664
2994
  #: app/features/mec/meta_boxes/display_options.php:710
2995
+ #: app/features/mec/meta_boxes/display_options.php:1035
2996
+ #: app/features/mec/meta_boxes/display_options.php:1143
2997
  msgid "eg. 6"
2998
  msgstr "z.B. 6"
2999
 
3019
  #: app/features/mec/meta_boxes/display_options.php:385
3020
  #: app/features/mec/meta_boxes/display_options.php:528
3021
  #: app/features/mec/meta_boxes/display_options.php:692
3022
+ #: app/features/mec/meta_boxes/display_options.php:822
3023
  #: app/features/mec/settings.php:433 app/features/mec/settings.php:448
3024
  #: app/features/mec/settings.php:466 app/features/mec/settings.php:507
3025
  #: app/features/mec/settings.php:522 app/features/mec/settings.php:540
3065
  msgstr "Standardwert ist \"d (Tag) F Y (Jahr)\" "
3066
 
3067
  #: app/features/mec/meta_boxes/display_options.php:265
3068
+ #: app/features/mec/meta_boxes/display_options.php:1025
3069
  msgid "Count in row"
3070
  msgstr "Zeilen zählen"
3071
 
3073
  #: app/features/mec/meta_boxes/display_options.php:470
3074
  #: app/features/mec/meta_boxes/display_options.php:577
3075
  #: app/features/mec/meta_boxes/display_options.php:684
3076
+ #: app/features/mec/meta_boxes/display_options.php:937
3077
  #, php-format
3078
  msgid "%s is required to use this skin."
3079
  msgstr ""
3089
 
3090
  #: app/features/mec/meta_boxes/display_options.php:375
3091
  #: app/features/mec/meta_boxes/display_options.php:392
3092
+ #: app/libraries/main.php:329 app/libraries/main.php:1186
3093
+ #: app/libraries/main.php:1211
3094
  msgid "List View"
3095
  msgstr "Listenansicht"
3096
 
3097
  #: app/features/mec/meta_boxes/display_options.php:376
3098
  #: app/features/mec/meta_boxes/display_options.php:402
3099
+ #: app/libraries/main.php:333 app/libraries/main.php:1180
3100
+ #: app/libraries/main.php:1205
3101
  msgid "Yearly View"
3102
  msgstr "Jahresansicht"
3103
 
3108
 
3109
  #: app/features/mec/meta_boxes/display_options.php:378
3110
  #: app/features/mec/meta_boxes/display_options.php:434
3111
+ #: app/libraries/main.php:336 app/libraries/main.php:1182
3112
+ #: app/libraries/main.php:1207
3113
  msgid "Weekly View"
3114
  msgstr "Wochenansicht"
3115
 
3116
  #: app/features/mec/meta_boxes/display_options.php:379
3117
  #: app/features/mec/meta_boxes/display_options.php:444
3118
+ #: app/libraries/main.php:335 app/libraries/main.php:1183
3119
+ #: app/libraries/main.php:1208
3120
  msgid "Daily View"
3121
  msgstr "Tagesansicht"
3122
 
3159
  #: app/features/mec/meta_boxes/display_options.php:551
3160
  #: app/features/mec/meta_boxes/display_options.php:634
3161
  #: app/features/mec/meta_boxes/display_options.php:668
3162
+ #: app/features/mec/meta_boxes/display_options.php:738
3163
  msgid "Next/Previous Buttons"
3164
  msgstr "Schaltfläche \"Nächste/Letzte\""
3165
 
3176
  #: app/features/mec/meta_boxes/display_options.php:569
3177
  #: app/features/mec/meta_boxes/display_options.php:642
3178
  #: app/features/mec/meta_boxes/display_options.php:676
3179
+ #: app/features/mec/meta_boxes/display_options.php:746
3180
  msgid "For showing next/previous month navigation."
3181
  msgstr "Für die Navigation zum nächsten/letzten Monat"
3182
 
3206
  msgid "Next Week"
3207
  msgstr "Nächste Woche"
3208
 
3209
+ #: app/features/mec/meta_boxes/display_options.php:714
3210
+ msgid "Number of Days"
3211
+ msgstr ""
3212
+
3213
+ #: app/features/mec/meta_boxes/display_options.php:722
3214
+ #, fuzzy
3215
+ #| msgid "Start"
3216
+ msgid "Week Start"
3217
+ msgstr "Start"
3218
+
3219
+ #: app/features/mec/meta_boxes/display_options.php:724
3220
+ #, fuzzy
3221
+ #| msgid "Inherit from global options"
3222
+ msgid "Inherite from WordPress options"
3223
+ msgstr "Aus den globalen Einstellungen übernehmen"
3224
+
3225
+ #: app/features/mec/meta_boxes/display_options.php:781
3226
+ #: app/features/mec/meta_boxes/display_options.php:948
3227
  msgid "Default values are j and F"
3228
  msgstr "Standardwerte sind j und F"
3229
 
3230
+ #: app/features/mec/meta_boxes/display_options.php:788
3231
  msgid "eg. 24"
3232
  msgstr "z.B. 24"
3233
 
3234
+ #: app/features/mec/meta_boxes/display_options.php:791
3235
  msgid "Filter By"
3236
  msgstr "Filtern nach"
3237
 
3238
+ #: app/features/mec/meta_boxes/display_options.php:793
3239
+ msgid "None"
3240
+ msgstr ""
3241
+
3242
+ #: app/features/mec/meta_boxes/display_options.php:802
3243
  msgid "Convert Masonry to Grid"
3244
  msgstr ""
3245
 
3246
+ #: app/features/mec/meta_boxes/display_options.php:803
3247
  msgid "For using this option, your events should come with image"
3248
  msgstr ""
3249
 
3250
+ #: app/features/mec/meta_boxes/display_options.php:834
3251
  msgid "Default values are d, M and Y"
3252
  msgstr "Standardwerte sind T, M und J"
3253
 
3254
+ #: app/features/mec/meta_boxes/display_options.php:846
3255
  msgid "Default values are \"F d\" and l"
3256
  msgstr ""
3257
  "Standardwerte sind Monat als ganzes Wort, Tag des Monates mit führender Null "
3258
  "und ausgeschriebener Wochentag"
3259
 
3260
+ #: app/features/mec/meta_boxes/display_options.php:857
3261
  msgid "Default value is \"l, F d Y\""
3262
  msgstr ""
3263
  "Standardwerte sind ausgeschriebener Wochentag, Monat als ganzes Wort, Tag "
3264
  "des Monates mit führender 0, Jahr"
3265
 
3266
+ #: app/features/mec/meta_boxes/display_options.php:878
3267
  msgid "Style 1"
3268
  msgstr "Stil 1"
3269
 
3270
+ #: app/features/mec/meta_boxes/display_options.php:879
3271
  msgid "Style 2"
3272
  msgstr "Stil 2"
3273
 
3274
+ #: app/features/mec/meta_boxes/display_options.php:880
3275
  msgid "Style 3"
3276
  msgstr "Stil 3"
3277
 
3278
+ #: app/features/mec/meta_boxes/display_options.php:889
3279
+ #: app/features/mec/meta_boxes/display_options.php:900
3280
  msgid "Default value is \"j F Y\""
3281
  msgstr "Standardwert ist \"j F Y\""
3282
 
3283
+ #: app/features/mec/meta_boxes/display_options.php:913
3284
  msgid "Default values are j, F and Y"
3285
  msgstr ""
3286
  "Standardwerte sind j ( Tag des Monats ohne führende Nullen), F und Y (Jahr)"
3287
 
3288
+ #: app/features/mec/meta_boxes/display_options.php:921
3289
+ #: app/features/mec/meta_boxes/display_options.php:956
3290
  msgid " -- Next Upcoming Event -- "
3291
  msgstr "-- Nächste Veranstaltung--"
3292
 
3293
+ #: app/features/mec/meta_boxes/display_options.php:928
3294
  msgid "Background Color"
3295
  msgstr "Hintergrund Farbe"
3296
 
3297
+ #: app/features/mec/meta_boxes/display_options.php:970
3298
+ #: app/features/mec/meta_boxes/display_options.php:1056
3299
  msgid "Type 1"
3300
  msgstr "Typ 1"
3301
 
3302
+ #: app/features/mec/meta_boxes/display_options.php:971
3303
+ #: app/features/mec/meta_boxes/display_options.php:1057
3304
  msgid "Type 2"
3305
  msgstr "Typ 2"
3306
 
3307
+ #: app/features/mec/meta_boxes/display_options.php:972
3308
+ #: app/features/mec/meta_boxes/display_options.php:1058
3309
  msgid "Type 3"
3310
  msgstr "Type 3"
3311
 
3312
+ #: app/features/mec/meta_boxes/display_options.php:973
3313
+ #: app/features/mec/meta_boxes/display_options.php:1059
3314
  msgid "Type 4"
3315
  msgstr "Typ 4"
3316
 
3317
+ #: app/features/mec/meta_boxes/display_options.php:997
3318
  msgid "Default values are d, F and Y"
3319
  msgstr "Standardwert ist d (Tag) F und Y (Jahr)"
3320
 
3321
+ #: app/features/mec/meta_boxes/display_options.php:1008
3322
+ #: app/features/mec/meta_boxes/display_options.php:1019
3323
  msgid "Default value is \"M d, Y\""
3324
  msgstr "Standardwert ist \"M T, J\""
3325
 
3326
+ #: app/features/mec/meta_boxes/display_options.php:1038
3327
+ #: app/features/mec/meta_boxes/display_options.php:1146
3328
  msgid "Auto Play Time"
3329
  msgstr "Auto Play Time"
3330
 
3331
+ #: app/features/mec/meta_boxes/display_options.php:1039
3332
+ #: app/features/mec/meta_boxes/display_options.php:1147
3333
  msgid "eg. 3000 default is 3 second"
3334
  msgstr "z.B. Voreinstellung 3000 sind 3 Sekunden"
3335
 
3336
+ #: app/features/mec/meta_boxes/display_options.php:1043
3337
  #, fuzzy
3338
  #| msgid "Archive Page Skin"
3339
  msgid "Archive Link"
3340
  msgstr "Skin Seite Archiv"
3341
 
3342
+ #: app/features/mec/meta_boxes/display_options.php:1047
3343
  #, fuzzy
3344
  #| msgid "Text"
3345
  msgid "Head Text"
3346
  msgstr "Text"
3347
 
3348
+ #: app/features/mec/meta_boxes/display_options.php:1060
3349
  msgid "Type 5"
3350
  msgstr "Typ 5"
3351
 
3445
  #: app/features/mec/meta_boxes/search_form.php:216
3446
  #: app/features/mec/meta_boxes/search_form.php:223
3447
  #: app/features/mec/meta_boxes/search_form.php:230
3448
+ #: app/features/mec/meta_boxes/search_form.php:237
3449
+ #: app/features/mec/meta_boxes/search_form.php:244
3450
+ #: app/features/mec/meta_boxes/search_form.php:251
3451
+ #: app/features/mec/meta_boxes/search_form.php:258
3452
+ #: app/features/mec/meta_boxes/search_form.php:265
3453
  #: app/features/mec/meta_boxes/search_form.php:277
3454
  #: app/features/mec/meta_boxes/search_form.php:284
3455
  #: app/features/mec/meta_boxes/search_form.php:291
3456
+ #: app/features/mec/meta_boxes/search_form.php:298
3457
+ #: app/features/mec/meta_boxes/search_form.php:305
3458
+ #: app/features/mec/meta_boxes/search_form.php:312
3459
+ #: app/features/mec/meta_boxes/search_form.php:319
3460
+ #: app/features/mec/meta_boxes/search_form.php:326
3461
  #: app/features/mec/meta_boxes/search_form.php:338
3462
  #: app/features/mec/meta_boxes/search_form.php:345
3463
  #: app/features/mec/meta_boxes/search_form.php:352
3464
+ #: app/features/mec/meta_boxes/search_form.php:359
3465
+ #: app/features/mec/meta_boxes/search_form.php:366
3466
+ #: app/features/mec/meta_boxes/search_form.php:373
3467
+ #: app/features/mec/meta_boxes/search_form.php:380
3468
+ #: app/features/mec/meta_boxes/search_form.php:387
3469
  #: app/features/mec/meta_boxes/search_form.php:399
3470
  #: app/features/mec/meta_boxes/search_form.php:406
3471
+ #: app/features/mec/meta_boxes/search_form.php:413
3472
+ #: app/features/mec/meta_boxes/search_form.php:420
3473
+ #: app/features/mec/meta_boxes/search_form.php:427
3474
+ #: app/features/mec/meta_boxes/search_form.php:434
3475
+ #: app/features/mec/meta_boxes/search_form.php:441
3476
  #: app/features/mec/meta_boxes/search_form.php:453
3477
  #: app/features/mec/meta_boxes/search_form.php:460
3478
  #: app/features/mec/meta_boxes/search_form.php:467
3479
+ #: app/features/mec/meta_boxes/search_form.php:474
3480
+ #: app/features/mec/meta_boxes/search_form.php:481
3481
+ #: app/features/mec/meta_boxes/search_form.php:488
3482
+ #: app/features/mec/meta_boxes/search_form.php:495
3483
+ #: app/features/mec/meta_boxes/search_form.php:502
3484
  #: app/features/mec/meta_boxes/search_form.php:514
3485
  #: app/features/mec/meta_boxes/search_form.php:521
3486
  #: app/features/mec/meta_boxes/search_form.php:528
3487
+ #: app/features/mec/meta_boxes/search_form.php:535
3488
+ #: app/features/mec/meta_boxes/search_form.php:542
3489
+ #: app/features/mec/meta_boxes/search_form.php:549
3490
+ #: app/features/mec/meta_boxes/search_form.php:556
3491
+ #: app/features/mec/meta_boxes/search_form.php:563
3492
  #: app/features/mec/meta_boxes/search_form.php:575
3493
  #: app/features/mec/meta_boxes/search_form.php:582
3494
  #: app/features/mec/meta_boxes/search_form.php:589
3495
+ #: app/features/mec/meta_boxes/search_form.php:596
3496
+ #: app/features/mec/meta_boxes/search_form.php:603
3497
+ #: app/features/mec/meta_boxes/search_form.php:610
3498
+ #: app/features/mec/meta_boxes/search_form.php:617
3499
+ #: app/features/mec/meta_boxes/search_form.php:624
3500
  #: app/features/mec/settings.php:330 app/features/mec/settings.php:586
3501
  #: app/features/mec/settings.php:866
3502
  msgid "Disabled"
3505
  #: app/features/mec/meta_boxes/search_form.php:52
3506
  #: app/features/mec/meta_boxes/search_form.php:113
3507
  #: app/features/mec/meta_boxes/search_form.php:174
3508
+ #: app/features/mec/meta_boxes/search_form.php:235
3509
+ #: app/features/mec/meta_boxes/search_form.php:296
3510
+ #: app/features/mec/meta_boxes/search_form.php:357
3511
+ #: app/features/mec/meta_boxes/search_form.php:418
3512
+ #: app/features/mec/meta_boxes/search_form.php:472
3513
+ #: app/features/mec/meta_boxes/search_form.php:533
3514
+ #: app/features/mec/meta_boxes/search_form.php:594 app/features/speakers.php:56
3515
+ #: app/features/speakers.php:243 app/libraries/main.php:4424
3516
+ #: app/libraries/skins.php:859
3517
  msgid "Speaker"
3518
  msgstr ""
3519
 
3520
  #: app/features/mec/meta_boxes/search_form.php:59
3521
  #: app/features/mec/meta_boxes/search_form.php:120
3522
  #: app/features/mec/meta_boxes/search_form.php:181
3523
+ #: app/features/mec/meta_boxes/search_form.php:242
3524
+ #: app/features/mec/meta_boxes/search_form.php:303
3525
+ #: app/features/mec/meta_boxes/search_form.php:364
3526
+ #: app/features/mec/meta_boxes/search_form.php:425
3527
+ #: app/features/mec/meta_boxes/search_form.php:479
3528
+ #: app/features/mec/meta_boxes/search_form.php:540
3529
+ #: app/features/mec/meta_boxes/search_form.php:601 app/libraries/skins.php:885
3530
  #, fuzzy
3531
  #| msgid "Tags"
3532
  msgid "Tag"
3535
  #: app/features/mec/meta_boxes/search_form.php:73
3536
  #: app/features/mec/meta_boxes/search_form.php:134
3537
  #: app/features/mec/meta_boxes/search_form.php:195
3538
+ #: app/features/mec/meta_boxes/search_form.php:256
3539
+ #: app/features/mec/meta_boxes/search_form.php:317
3540
+ #: app/features/mec/meta_boxes/search_form.php:378
3541
+ #: app/features/mec/meta_boxes/search_form.php:493
3542
+ #: app/features/mec/meta_boxes/search_form.php:554
3543
+ #: app/features/mec/meta_boxes/search_form.php:615
3544
  msgid "Month Filter"
3545
  msgstr "Monatsfilter"
3546
 
3547
  #: app/features/mec/meta_boxes/search_form.php:80
3548
  #: app/features/mec/meta_boxes/search_form.php:141
3549
  #: app/features/mec/meta_boxes/search_form.php:202
3550
+ #: app/features/mec/meta_boxes/search_form.php:263
3551
+ #: app/features/mec/meta_boxes/search_form.php:324
3552
+ #: app/features/mec/meta_boxes/search_form.php:385
3553
+ #: app/features/mec/meta_boxes/search_form.php:439
3554
+ #: app/features/mec/meta_boxes/search_form.php:500
3555
+ #: app/features/mec/meta_boxes/search_form.php:561
3556
+ #: app/features/mec/meta_boxes/search_form.php:622
3557
  msgid "Text Search"
3558
  msgstr "Textsuche"
3559
 
3560
  #: app/features/mec/meta_boxes/search_form.php:83
3561
  #: app/features/mec/meta_boxes/search_form.php:144
3562
  #: app/features/mec/meta_boxes/search_form.php:205
3563
+ #: app/features/mec/meta_boxes/search_form.php:266
3564
+ #: app/features/mec/meta_boxes/search_form.php:327
3565
+ #: app/features/mec/meta_boxes/search_form.php:388
3566
+ #: app/features/mec/meta_boxes/search_form.php:442
3567
+ #: app/features/mec/meta_boxes/search_form.php:503
3568
+ #: app/features/mec/meta_boxes/search_form.php:564
3569
+ #: app/features/mec/meta_boxes/search_form.php:625
3570
  msgid "Text Input"
3571
  msgstr "Text eingeben"
3572
 
3573
+ #: app/features/mec/meta_boxes/search_form.php:633
3574
+ #: app/features/mec/meta_boxes/search_form.php:639
3575
+ #: app/features/mec/meta_boxes/search_form.php:645
3576
+ #: app/features/mec/meta_boxes/search_form.php:651
3577
+ #: app/features/mec/meta_boxes/search_form.php:657
3578
+ #: app/features/mec/meta_boxes/search_form.php:663
3579
  msgid "No Search Options"
3580
  msgstr "Keine Suchoptionen"
3581
 
3582
+ #: app/features/mec/notifications.php:58 app/features/mec/notifications.php:154
3583
  msgid "Booking Notification"
3584
  msgstr "Buchungsbenachrichtigung"
3585
 
3586
+ #: app/features/mec/notifications.php:64 app/features/mec/notifications.php:219
3587
  msgid "Booking Verification"
3588
  msgstr "Verifizierung der Buchung"
3589
 
3590
+ #: app/features/mec/notifications.php:70 app/features/mec/notifications.php:271
3591
  #: app/features/mec/settings.php:1409
3592
  msgid "Booking Confirmation"
3593
  msgstr "Buchungsbestätigung"
3594
 
3595
+ #: app/features/mec/notifications.php:76 app/features/mec/notifications.php:323
3596
  #, fuzzy
3597
  #| msgid "Booking cancellation link."
3598
  msgid "Booking Cancellation"
3599
  msgstr "Link zur Stornierung der Buchung"
3600
 
3601
+ #: app/features/mec/notifications.php:82 app/features/mec/notifications.php:390
3602
  msgid "Admin Notification"
3603
  msgstr "Admin-Benachrichtiung"
3604
 
3605
+ #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:450
3606
  #: app/libraries/notifications.php:354
3607
  msgid "Booking Reminder"
3608
  msgstr "Buchungs Erinnerung"
3609
 
3610
+ #: app/features/mec/notifications.php:94 app/features/mec/notifications.php:525
3611
  #: app/features/mec/support-page.php:80
3612
  msgid "New Event"
3613
  msgstr "Neue Veranstaltung"
3614
 
3615
+ #: app/features/mec/notifications.php:158
3616
  msgid "Enable booking notification"
3617
  msgstr "Buchungsbenachrichtigung aktivieren"
3618
 
3619
+ #: app/features/mec/notifications.php:162
3620
  msgid "It sends to attendee after booking for notifying him/her."
3621
  msgstr ""
3622
  "Wird an den Teilnehmer in Anschluss an die Buchung versendet, um Ihn/Sie zu "
3623
  "benachrichtigen."
3624
 
3625
+ #: app/features/mec/notifications.php:164
3626
+ #: app/features/mec/notifications.php:222
3627
+ #: app/features/mec/notifications.php:274
3628
+ #: app/features/mec/notifications.php:333
3629
+ #: app/features/mec/notifications.php:400
3630
+ #: app/features/mec/notifications.php:463
3631
+ #: app/features/mec/notifications.php:535
3632
  msgid "Email Subject"
3633
  msgstr "Email Betreff"
3634
 
3635
+ #: app/features/mec/notifications.php:168
3636
+ #: app/features/mec/notifications.php:172
3637
+ #: app/features/mec/notifications.php:226
3638
+ #: app/features/mec/notifications.php:230
3639
+ #: app/features/mec/notifications.php:278
3640
+ #: app/features/mec/notifications.php:282
3641
+ #: app/features/mec/notifications.php:337
3642
+ #: app/features/mec/notifications.php:341
3643
+ #: app/features/mec/notifications.php:404
3644
+ #: app/features/mec/notifications.php:408
3645
+ #: app/features/mec/notifications.php:467
3646
+ #: app/features/mec/notifications.php:471
3647
+ #: app/features/mec/notifications.php:482
3648
+ #: app/features/mec/notifications.php:539
3649
+ #: app/features/mec/notifications.php:543
3650
  msgid "Custom Recipients"
3651
  msgstr "Individuelle Empfänger"
3652
 
3653
+ #: app/features/mec/notifications.php:173
3654
+ #: app/features/mec/notifications.php:231
3655
+ #: app/features/mec/notifications.php:283
3656
+ #: app/features/mec/notifications.php:342
3657
+ #: app/features/mec/notifications.php:409
3658
+ #: app/features/mec/notifications.php:472
3659
+ #: app/features/mec/notifications.php:483
3660
+ #: app/features/mec/notifications.php:544
3661
  msgid "Insert comma separated emails for multiple recipients."
3662
  msgstr "Geben Sie mit Komma getrennte email-Adressen ein für mehrere Empfänger"
3663
 
 
 
 
 
 
 
3664
  #: app/features/mec/notifications.php:180
3665
+ #: app/features/mec/notifications.php:353
 
 
3666
  #: app/features/mec/notifications.php:416
3667
+ msgid "Send the email to event organizer"
3668
+ msgstr "Sendet das Email zum Event Organisator"
 
 
3669
 
3670
  #: app/features/mec/notifications.php:183
3671
  #: app/features/mec/notifications.php:237
3674
  #: app/features/mec/notifications.php:419
3675
  #: app/features/mec/notifications.php:489
3676
  #: app/features/mec/notifications.php:550
3677
+ msgid "Email Content"
3678
+ msgstr "Email Inhalt"
 
 
 
 
 
 
 
 
 
3679
 
3680
  #: app/features/mec/notifications.php:186
3681
  #: app/features/mec/notifications.php:240
3683
  #: app/features/mec/notifications.php:363
3684
  #: app/features/mec/notifications.php:422
3685
  #: app/features/mec/notifications.php:492
3686
+ #: app/features/mec/notifications.php:553
3687
+ msgid "You can use following placeholders"
3688
+ msgstr "Sie können die folgenden Platzhalter wählen"
 
 
 
 
 
 
 
 
3689
 
3690
  #: app/features/mec/notifications.php:188
3691
  #: app/features/mec/notifications.php:242
3693
  #: app/features/mec/notifications.php:365
3694
  #: app/features/mec/notifications.php:424
3695
  #: app/features/mec/notifications.php:494
3696
+ msgid "First name of attendee"
3697
+ msgstr "Vorname des Teilnehmers"
3698
 
3699
  #: app/features/mec/notifications.php:189
3700
  #: app/features/mec/notifications.php:243
3702
  #: app/features/mec/notifications.php:366
3703
  #: app/features/mec/notifications.php:425
3704
  #: app/features/mec/notifications.php:495
3705
+ msgid "Last name of attendee"
3706
+ msgstr "Nachname des Teilnehmers"
 
 
3707
 
3708
  #: app/features/mec/notifications.php:190
3709
  #: app/features/mec/notifications.php:244
3711
  #: app/features/mec/notifications.php:367
3712
  #: app/features/mec/notifications.php:426
3713
  #: app/features/mec/notifications.php:496
3714
+ msgid "Email of attendee"
3715
+ msgstr "Email des Teilnehmers"
3716
 
3717
  #: app/features/mec/notifications.php:191
3718
  #: app/features/mec/notifications.php:245
3720
  #: app/features/mec/notifications.php:368
3721
  #: app/features/mec/notifications.php:427
3722
  #: app/features/mec/notifications.php:497
3723
+ msgid "Booked date of event"
3724
+ msgstr "Gebuchtes Datum der Veranstaltung"
 
3725
 
3726
  #: app/features/mec/notifications.php:192
3727
  #: app/features/mec/notifications.php:246
3729
  #: app/features/mec/notifications.php:369
3730
  #: app/features/mec/notifications.php:428
3731
  #: app/features/mec/notifications.php:498
3732
+ #, fuzzy
3733
+ #| msgid "Booked date of event"
3734
+ msgid "Booked time of event"
3735
+ msgstr "Gebuchtes Datum der Veranstaltung"
3736
 
3737
  #: app/features/mec/notifications.php:193
3738
  #: app/features/mec/notifications.php:247
3740
  #: app/features/mec/notifications.php:370
3741
  #: app/features/mec/notifications.php:429
3742
  #: app/features/mec/notifications.php:499
3743
+ msgid "Booking Price"
3744
+ msgstr "Buchungspreis"
 
3745
 
3746
  #: app/features/mec/notifications.php:194
3747
  #: app/features/mec/notifications.php:248
3749
  #: app/features/mec/notifications.php:371
3750
  #: app/features/mec/notifications.php:430
3751
  #: app/features/mec/notifications.php:500
3752
+ #: app/features/mec/notifications.php:559
3753
+ msgid "Your website title"
3754
+ msgstr "Titel Ihrer Webseite"
3755
 
3756
  #: app/features/mec/notifications.php:195
3757
  #: app/features/mec/notifications.php:249
3759
  #: app/features/mec/notifications.php:372
3760
  #: app/features/mec/notifications.php:431
3761
  #: app/features/mec/notifications.php:501
3762
+ #: app/features/mec/notifications.php:560
3763
+ msgid "Your website URL"
3764
+ msgstr "URL Ihrer Webseite"
 
3765
 
3766
  #: app/features/mec/notifications.php:196
3767
  #: app/features/mec/notifications.php:250
3769
  #: app/features/mec/notifications.php:373
3770
  #: app/features/mec/notifications.php:432
3771
  #: app/features/mec/notifications.php:502
3772
+ #: app/features/mec/notifications.php:561
3773
+ msgid "Your website description"
3774
+ msgstr "Beschreibung Ihrer Webseite"
3775
 
3776
  #: app/features/mec/notifications.php:197
3777
  #: app/features/mec/notifications.php:251
3779
  #: app/features/mec/notifications.php:374
3780
  #: app/features/mec/notifications.php:433
3781
  #: app/features/mec/notifications.php:503
3782
+ msgid "Event title"
3783
+ msgstr "Titel der Veranstaltung"
3784
 
3785
  #: app/features/mec/notifications.php:198
3786
  #: app/features/mec/notifications.php:252
3788
  #: app/features/mec/notifications.php:375
3789
  #: app/features/mec/notifications.php:434
3790
  #: app/features/mec/notifications.php:504
3791
+ #, fuzzy
3792
+ #| msgid "Event Link"
3793
+ msgid "Event link"
3794
+ msgstr "Veranstaltungslink"
3795
 
3796
  #: app/features/mec/notifications.php:199
3797
  #: app/features/mec/notifications.php:253
3799
  #: app/features/mec/notifications.php:376
3800
  #: app/features/mec/notifications.php:435
3801
  #: app/features/mec/notifications.php:505
3802
+ msgid "Organizer name of booked event"
3803
+ msgstr "Name des Veranstalters des gebuchten Events"
3804
 
3805
  #: app/features/mec/notifications.php:200
3806
  #: app/features/mec/notifications.php:254
3808
  #: app/features/mec/notifications.php:377
3809
  #: app/features/mec/notifications.php:436
3810
  #: app/features/mec/notifications.php:506
3811
+ msgid "Organizer tel of booked event"
3812
+ msgstr "Tel des Veranstalters"
3813
 
3814
  #: app/features/mec/notifications.php:201
3815
+ #: app/features/mec/notifications.php:255
3816
+ #: app/features/mec/notifications.php:307
3817
+ #: app/features/mec/notifications.php:378
3818
+ #: app/features/mec/notifications.php:437
3819
+ #: app/features/mec/notifications.php:507
3820
+ msgid "Organizer email of booked event"
3821
+ msgstr "Email des Veranstalters des gebuchten events"
3822
 
3823
  #: app/features/mec/notifications.php:202
3824
+ #: app/features/mec/notifications.php:256
3825
  #: app/features/mec/notifications.php:308
3826
+ #: app/features/mec/notifications.php:379
3827
+ #: app/features/mec/notifications.php:438
3828
  #: app/features/mec/notifications.php:508
3829
+ msgid "Location name of booked event"
3830
+ msgstr "Veranstaltungsort"
3831
 
3832
  #: app/features/mec/notifications.php:203
3833
+ #: app/features/mec/notifications.php:257
3834
  #: app/features/mec/notifications.php:309
3835
  #: app/features/mec/notifications.php:380
3836
  #: app/features/mec/notifications.php:439
3837
  #: app/features/mec/notifications.php:509
3838
+ msgid "Location address of booked event"
3839
+ msgstr "Adresse der gebuchten Veranstaltung"
3840
+
3841
+ #: app/features/mec/notifications.php:204
3842
+ #: app/features/mec/notifications.php:382
3843
+ #: app/features/mec/notifications.php:441
3844
+ msgid "Full Attendee info such as booking form data, name, email etc."
3845
+ msgstr ""
3846
+ "Gesamte Teinehmerinformationen wie z.B. Daten aus dem Buchungsformular, "
3847
+ "Name, email, etc."
3848
+
3849
+ #: app/features/mec/notifications.php:205
3850
+ #: app/features/mec/notifications.php:311
3851
+ #: app/features/mec/notifications.php:511
3852
+ msgid "Invoice Link"
3853
+ msgstr "Rechnungslink"
3854
+
3855
+ #: app/features/mec/notifications.php:206
3856
+ #: app/features/mec/notifications.php:259
3857
+ #: app/features/mec/notifications.php:312
3858
+ #: app/features/mec/notifications.php:383
3859
+ #: app/features/mec/notifications.php:442
3860
+ #: app/features/mec/notifications.php:512
3861
  msgid "Total Attendees"
3862
  msgstr ""
3863
 
3864
+ #: app/features/mec/notifications.php:207
3865
+ #: app/features/mec/notifications.php:260
3866
+ #: app/features/mec/notifications.php:313
3867
+ #: app/features/mec/notifications.php:513
3868
  #, fuzzy
3869
  #| msgid "Ticket Name"
3870
  msgid "Ticket name"
3871
  msgstr "Ticket Name"
3872
 
3873
+ #: app/features/mec/notifications.php:208
3874
+ #: app/features/mec/notifications.php:261
3875
+ #: app/features/mec/notifications.php:314
3876
+ #: app/features/mec/notifications.php:514
3877
  #, fuzzy
3878
  #| msgid "Ticket Name"
3879
  msgid "Ticket time"
3880
  msgstr "Ticket Name"
3881
 
3882
+ #: app/features/mec/notifications.php:209
3883
+ #: app/features/mec/notifications.php:262
3884
+ #: app/features/mec/notifications.php:315
3885
+ #: app/features/mec/notifications.php:515
3886
  #, fuzzy
3887
  #| msgid "Download Invoice"
3888
  msgid "Download ICS file"
3889
  msgstr "Download Rechnung\n"
3890
 
3891
+ #: app/features/mec/notifications.php:220
3892
  msgid "It sends to attendee email for verifying their booking/email."
3893
  msgstr ""
3894
  "Versendet an den Teilnehmer eine Email um dessen Buchung/Mail zu "
3895
  "verifizieren."
3896
 
3897
+ #: app/features/mec/notifications.php:258
3898
  msgid "Email/Booking verification link."
3899
  msgstr "Bestätigungslink für Email/Buchung"
3900
 
3901
+ #: app/features/mec/notifications.php:272
3902
  msgid "It sends to attendee after confirming the booking by admin."
3903
  msgstr ""
3904
  "Es wird an den Teilnehmer gesendet nach Bestätigung der Buchung vom admin."
3905
 
3906
+ #: app/features/mec/notifications.php:310
3907
+ #: app/features/mec/notifications.php:510
3908
  msgid "Booking cancellation link."
3909
  msgstr "Link zur Stornierung der Buchung"
3910
 
3911
+ #: app/features/mec/notifications.php:327
3912
  #, fuzzy
3913
  #| msgid "Enable new event notification"
3914
  msgid "Enable cancellation notification"
3915
  msgstr "Benachrichtigung bei neuen Veranstaltungen aktivieren"
3916
 
3917
+ #: app/features/mec/notifications.php:331
3918
  #, fuzzy
3919
  #| msgid "It sends to attendee after booking for notifying him/her."
3920
  msgid ""
3924
  "Wird an den Teilnehmer in Anschluss an die Buchung versendet, um Ihn/Sie zu "
3925
  "benachrichtigen."
3926
 
3927
+ #: app/features/mec/notifications.php:349
3928
  #, fuzzy
3929
  #| msgid "Send the email to event organizer"
3930
  msgid "Send the email to admin"
3931
  msgstr "Sendet das Email zum Event Organisator"
3932
 
3933
+ #: app/features/mec/notifications.php:357
3934
  #, fuzzy
3935
  #| msgid "Send the email to event organizer"
3936
  msgid "Send the email to booking user"
3937
  msgstr "Sendet das Email zum Event Organisator"
3938
 
3939
+ #: app/features/mec/notifications.php:381
3940
+ #: app/features/mec/notifications.php:440
3941
  msgid "Admin booking management link."
3942
  msgstr "Admin-link zur Buchungsverwaltung"
3943
 
3944
+ #: app/features/mec/notifications.php:394
3945
  #, fuzzy
3946
  #| msgid "Enable booking notification"
3947
  msgid "Enable admin notification"
3948
  msgstr "Buchungsbenachrichtigung aktivieren"
3949
 
3950
+ #: app/features/mec/notifications.php:398
3951
  msgid "It sends to admin to notify him/her that a new booking received."
3952
  msgstr ""
3953
  "Sendet eine Benachrichtigung an den Adminstrator um diesen darüber zu "
3954
  "Informieren, dass eine neue Buchung eingegangen ist."
3955
 
3956
+ #: app/features/mec/notifications.php:454
3957
  msgid "Enable booking reminder notification"
3958
  msgstr "Aktivieren Sie die Erinnerung für die Buchungserinnerung"
3959
 
3960
+ #: app/features/mec/notifications.php:460
3961
  #, php-format
3962
  msgid ""
3963
  "Set a cronjob to call %s file once per day otherwise it won't send the "
3969
  "Sie diese Datei% s aufrufen sollten, sonst könnten die Erinnerungen mehrmals "
3970
  "gesendet werden."
3971
 
3972
+ #: app/features/mec/notifications.php:460
3973
  msgid "only once per day"
3974
  msgstr "nur einmal pro Tag"
3975
 
3976
+ #: app/features/mec/notifications.php:478
3977
  msgid "Days"
3978
  msgstr "Tage"
3979
 
3980
+ #: app/features/mec/notifications.php:529
3981
  msgid "Enable new event notification"
3982
  msgstr "Benachrichtigung bei neuen Veranstaltungen aktivieren"
3983
 
3984
+ #: app/features/mec/notifications.php:533
3985
  msgid ""
3986
  "It sends after adding a new event from frontend event submission or from "
3987
  "website backend."
3989
  "Wird nach dem Hinzufügen einer neuen Veranstaltung aus der Frontend-"
3990
  "Übermittlung oder dem Backend versandt."
3991
 
3992
+ #: app/features/mec/notifications.php:555
3993
  msgid "Title of event"
3994
  msgstr "Titel der Veranstaltung"
3995
 
3996
+ #: app/features/mec/notifications.php:556
3997
  #, fuzzy
3998
  #| msgid "Title of event"
3999
  msgid "Link of event"
4000
  msgstr "Titel der Veranstaltung"
4001
 
4002
+ #: app/features/mec/notifications.php:557
4003
  msgid "Status of event"
4004
  msgstr "Status der Veranstaltung"
4005
 
4006
+ #: app/features/mec/notifications.php:558 app/features/mec/settings.php:1249
4007
  #: app/features/mec/settings.php:1253
4008
  msgid "Event Note"
4009
  msgstr "Veranstaltungsnotiz"
4010
 
4011
+ #: app/features/mec/notifications.php:562
4012
  msgid "Admin events management link."
4013
  msgstr "Admin-link zur Veranstaltungsverwaltung"
4014
 
4015
+ #: app/features/mec/notifications.php:664
4016
+ #: app/features/mec/notifications.php:686 app/features/mec/settings.php:1786
4017
+ #: app/features/mec/settings.php:1808 app/libraries/main.php:4643
4018
  msgid "Verified"
4019
  msgstr "Verifiziert"
4020
 
4021
+ #: app/features/mec/notifications.php:688 app/features/mec/settings.php:1810
4022
  msgid "Please Refresh Page"
4023
  msgstr "Bitte Seiten Refresh vornehmen"
4024
 
4151
  msgstr ""
4152
 
4153
  #: app/features/mec/settings.php:354 app/features/mec/settings.php:364
4154
+ #: app/libraries/main.php:4428
4155
  msgid "Weekdays"
4156
  msgstr "Wochentage"
4157
 
4390
  msgstr ""
4391
 
4392
  #: app/features/mec/settings.php:702
4393
+ msgid "Disable Block Editor (Gutenberg)"
4394
  msgstr ""
4395
 
4396
  #: app/features/mec/settings.php:705
4397
+ msgid "Disable Block Editor"
4398
  msgstr ""
4399
 
4400
  #: app/features/mec/settings.php:709
4401
+ msgid "Block Editor"
4402
  msgstr ""
4403
 
4404
  #: app/features/mec/settings.php:710
4405
  msgid ""
4406
+ "If you want to use the new WordPress block editor you should keep this "
4407
+ "checkbox unchecked."
4408
  msgstr ""
4409
 
4410
  #: app/features/mec/settings.php:716 app/features/mec/settings.php:723
4970
  "Ihre eigenen Stilcodes einfügen. Diese Codes werden in Ihr Frontend "
4971
  "übernommen und übersteuern die MEC- (oder Thema-) Grundeinstellungen."
4972
 
4973
+ #: app/features/mec/styling.php:10 app/features/mec/styling.php:240
4974
+ #: app/features/mec/styling.php:266
4975
  msgid "Default Font"
4976
  msgstr "Standardschriftart des Themas "
4977
 
4991
  msgid "Custom Color Skin"
4992
  msgstr "Benutzerdefinierte Farboberfläche"
4993
 
4994
+ #: app/features/mec/styling.php:189
4995
+ msgid ""
4996
+ "If you want to select a predefined color skin, you must clear the color of "
4997
+ "this item"
4998
+ msgstr ""
4999
+
5000
+ #: app/features/mec/styling.php:194
5001
  msgid "Advanced Color Options (shortcodes)"
5002
  msgstr ""
5003
 
5004
+ #: app/features/mec/styling.php:206
5005
  #, fuzzy
5006
  #| msgid "Title of event"
5007
  msgid "Title Hover"
5008
  msgstr "Titel der Veranstaltung"
5009
 
5010
+ #: app/features/mec/styling.php:223
5011
  msgid "Typography"
5012
  msgstr "Typographie"
5013
 
5014
+ #: app/features/mec/styling.php:225
5015
  msgid "Heading (Events Title) Font Family"
5016
  msgstr "Schriftart Überschrift (Titel der Veranstaltung)"
5017
 
5018
+ #: app/features/mec/styling.php:251
5019
  msgid "Paragraph Font Family"
5020
  msgstr "Schriftart Absätze"
5021
 
5022
+ #: app/features/mec/styling.php:278 app/features/mec/styling.php:284
5023
  #, fuzzy
5024
  #| msgid "Enable Google Recaptcha"
5025
  msgid "Disable Google Fonts"
5026
  msgstr "Google Recaptcha aktivieren"
5027
 
5028
+ #: app/features/mec/styling.php:285
5029
  msgid "To be GDPR compliant you may need to disable Google fonts!"
5030
  msgstr ""
5031
 
5032
+ #: app/features/mec/styling.php:294
5033
  msgid "Container Width"
5034
  msgstr ""
5035
 
5036
+ #: app/features/mec/styling.php:296 app/features/mec/styling.php:301
5037
  msgid "Desktop Normal Screens"
5038
  msgstr ""
5039
 
5040
+ #: app/features/mec/styling.php:302 app/features/mec/styling.php:315
5041
  msgid "You can enter your theme container size in this field"
5042
  msgstr ""
5043
 
5044
+ #: app/features/mec/styling.php:309 app/features/mec/styling.php:314
5045
  msgid "Desktop Large Screens"
5046
  msgstr ""
5047
 
5453
  msgstr "Wie kann man shortcodes hinzufügen / managen?"
5454
 
5455
  #: app/features/organizers.php:105 app/features/organizers.php:147
5456
+ #: app/features/speakers.php:177
5457
  msgid "Insert organizer phone number."
5458
  msgstr "Veranstalter Telefonnummer einfügen"
5459
 
5460
  #: app/features/organizers.php:113 app/features/organizers.php:151
5461
+ #: app/features/speakers.php:181
5462
  msgid "Insert organizer email address."
5463
  msgstr "Veranstalter Email-Adresse einfügen"
5464
 
5518
  msgid "eg. https://webnus.net"
5519
  msgstr "http://webnus.net"
5520
 
5521
+ #: app/features/organizers.php:306 app/libraries/main.php:4452
5522
  #: app/skins/single.php:295
5523
  msgid "Other Organizers"
5524
  msgstr "Andere Veranstalter"
5540
  msgid "#"
5541
  msgstr ""
5542
 
5543
+ #: app/features/profile/profile.php:34 app/libraries/main.php:2510
5544
  msgid "Status"
5545
  msgstr ""
5546
 
5547
+ #: app/features/profile/profile.php:37 app/libraries/main.php:1654
5548
  msgid "Attendees"
5549
  msgstr "Teilnehmer"
5550
 
5559
  msgid "<i class=\"mec-sl-eye\"></i> %s"
5560
  msgstr ""
5561
 
5562
+ #: app/features/profile/profile.php:96 app/libraries/main.php:1668
5563
+ #: app/libraries/main.php:4450
5564
  msgid "Ticket"
5565
  msgstr "Ticket"
5566
 
5574
  msgid "No bookings found!"
5575
  msgstr "Keine Buchungen gefunden"
5576
 
5577
+ #: app/features/speakers.php:104 app/features/speakers.php:172
5578
+ #: app/features/speakers.php:244
5579
  #, fuzzy
5580
  #| msgid "Title"
5581
  msgid "Job Title"
5582
  msgstr "Titel"
5583
 
5584
+ #: app/features/speakers.php:107 app/features/speakers.php:173
5585
  msgid "Insert speaker job title."
5586
  msgstr ""
5587
 
5588
+ #: app/features/speakers.php:115
5589
  #, fuzzy
5590
  #| msgid "Insert organizer phone number."
5591
  msgid "Insert speaker phone number."
5592
  msgstr "Veranstalter Telefonnummer einfügen"
5593
 
5594
+ #: app/features/speakers.php:123
5595
  #, fuzzy
5596
  #| msgid "Insert organizer email address."
5597
  msgid "Insert speaker email address."
5598
  msgstr "Veranstalter Email-Adresse einfügen"
5599
 
5600
+ #: app/features/speakers.php:128 app/features/speakers.php:184
5601
  #, fuzzy
5602
  #| msgid "Facebook Page Link"
5603
  msgid "Facebook Page"
5604
  msgstr "Facebook Seiten Link"
5605
 
5606
+ #: app/features/speakers.php:131 app/features/speakers.php:185
5607
  #, fuzzy
5608
  #| msgid "Import from Facebook Calendar"
5609
  msgid "Insert URL of Facebook Page"
5610
  msgstr "Vom Facebook Kalender Importieren"
5611
 
5612
+ #: app/features/speakers.php:136 app/features/speakers.php:188
5613
+ msgid "Instagram"
 
 
 
 
 
5614
  msgstr ""
5615
 
5616
+ #: app/features/speakers.php:139 app/features/speakers.php:189
5617
+ #, fuzzy
5618
+ #| msgid "Insert -1 for unlimited usage"
5619
+ msgid "Insert URL of Instagram"
5620
+ msgstr "Geben Sie -1 ein für unlimitierte Verwendung"
5621
+
5622
+ #: app/features/speakers.php:144 app/features/speakers.php:192
5623
  #, fuzzy
5624
  #| msgid "Twitter"
5625
  msgid "Twitter Page"
5626
  msgstr "Twitter"
5627
 
5628
+ #: app/features/speakers.php:147 app/features/speakers.php:193
5629
  #, fuzzy
5630
  #| msgid "Insert -1 for unlimited usage"
5631
  msgid "Insert URL of Twitter Page"
5645
  msgid "Download Invoice"
5646
  msgstr "Download Rechnung"
5647
 
5648
+ #: app/libraries/factory.php:157
5649
  msgid "M.E. Calendar"
5650
  msgstr "M.E. Calender"
5651
 
5652
+ #: app/libraries/factory.php:196
5653
  msgctxt "plugin link"
5654
  msgid "Upgrade to Pro Version"
5655
  msgstr ""
5656
 
5657
+ #: app/libraries/factory.php:214
5658
  #, fuzzy
5659
  #| msgid "Settings"
5660
  msgctxt "plugin link"
5661
  msgid "Settings"
5662
  msgstr "Einstellungen"
5663
 
5664
+ #: app/libraries/factory.php:219
5665
  msgctxt "plugin link"
5666
  msgid "Upgrade"
5667
  msgstr ""
5668
 
5669
+ #: app/libraries/factory.php:316
5670
  msgid "day"
5671
  msgstr "Tag"
5672
 
5673
+ #: app/libraries/factory.php:317 app/modules/countdown/details.php:123
5674
  #: app/skins/available_spot/tpl.php:146 app/skins/countdown/tpl.php:131
5675
  #: app/skins/countdown/tpl.php:175 app/skins/countdown/tpl.php:224
5676
  msgid "days"
5677
  msgstr "Tage"
5678
 
5679
+ #: app/libraries/factory.php:318
5680
  msgid "hour"
5681
  msgstr "Stunde"
5682
 
5683
+ #: app/libraries/factory.php:319 app/modules/countdown/details.php:130
5684
  #: app/skins/available_spot/tpl.php:150 app/skins/countdown/tpl.php:137
5685
  #: app/skins/countdown/tpl.php:181 app/skins/countdown/tpl.php:230
5686
  msgid "hours"
5687
  msgstr "Stunden"
5688
 
5689
+ #: app/libraries/factory.php:320
5690
  msgid "minute"
5691
  msgstr "Minute"
5692
 
5693
+ #: app/libraries/factory.php:321 app/modules/countdown/details.php:137
5694
  #: app/skins/available_spot/tpl.php:154 app/skins/countdown/tpl.php:143
5695
  #: app/skins/countdown/tpl.php:187 app/skins/countdown/tpl.php:236
5696
  msgid "minutes"
5697
  msgstr "Minuten"
5698
 
5699
+ #: app/libraries/factory.php:322
5700
  msgid "second"
5701
  msgstr "Sekunde"
5702
 
5703
+ #: app/libraries/factory.php:323 app/modules/countdown/details.php:144
5704
  #: app/skins/available_spot/tpl.php:158 app/skins/countdown/tpl.php:149
5705
  #: app/skins/countdown/tpl.php:193 app/skins/countdown/tpl.php:242
5706
  msgid "seconds"
5707
  msgstr "Sekunden"
5708
 
5709
+ #: app/libraries/factory.php:366
5710
  msgid "MEC Single Sidebar"
5711
  msgstr "MEC Single Sidebar"
5712
 
5713
+ #: app/libraries/factory.php:367
5714
  msgid "Custom sidebar for single and modal page of MEC."
5715
  msgstr "Custom sidebar for single and modal page of MEC."
5716
 
5720
  "Eine Vorschau kann nicht angezeit werden, da es sich um einen geschützen "
5721
  "Beitrag handelt."
5722
 
5723
+ #: app/libraries/main.php:330 app/libraries/main.php:1187
5724
+ #: app/libraries/main.php:1212
5725
  msgid "Grid View"
5726
  msgstr "Rasterdarstellung"
5727
 
5728
+ #: app/libraries/main.php:331 app/libraries/main.php:1188
5729
+ #: app/libraries/main.php:1213
5730
  msgid "Agenda View"
5731
  msgstr "Agendaansicht"
5732
 
5733
+ #: app/libraries/main.php:332 app/libraries/main.php:1179
5734
+ #: app/libraries/main.php:1204
5735
  msgid "Full Calendar"
5736
  msgstr "Ganzer Kalender"
5737
 
5738
+ #: app/libraries/main.php:334 app/libraries/main.php:1181
5739
+ #: app/libraries/main.php:1206
5740
  msgid "Calendar/Monthly View"
5741
  msgstr "Kalender-/Monatsansicht"
5742
 
5743
+ #: app/libraries/main.php:337 app/libraries/main.php:1184
5744
+ #: app/libraries/main.php:1209
5745
  msgid "Timetable View"
5746
  msgstr "Stundenplan"
5747
 
5748
+ #: app/libraries/main.php:338 app/libraries/main.php:1185
5749
+ #: app/libraries/main.php:1210
5750
  msgid "Masonry View"
5751
  msgstr "Kachel Ansicht"
5752
 
5753
+ #: app/libraries/main.php:339 app/libraries/main.php:1189
5754
+ #: app/libraries/main.php:1214
5755
  msgid "Map View"
5756
  msgstr "Kartenansicht"
5757
 
5775
  msgid "Slider View"
5776
  msgstr "Slideransicht"
5777
 
5778
+ #: app/libraries/main.php:382 app/libraries/main.php:4430
5779
  msgid "SU"
5780
  msgstr "SO"
5781
 
5782
+ #: app/libraries/main.php:383 app/libraries/main.php:4431
5783
  msgid "MO"
5784
  msgstr "MO"
5785
 
5786
+ #: app/libraries/main.php:384 app/libraries/main.php:4432
5787
  msgid "TU"
5788
  msgstr "DI"
5789
 
5790
+ #: app/libraries/main.php:385 app/libraries/main.php:4433
5791
  msgid "WE"
5792
  msgstr "MI"
5793
 
5794
+ #: app/libraries/main.php:386 app/libraries/main.php:4434
5795
  msgid "TH"
5796
  msgstr "DO"
5797
 
5798
+ #: app/libraries/main.php:387 app/libraries/main.php:4435
5799
  msgid "FR"
5800
  msgstr "FR"
5801
 
5802
+ #: app/libraries/main.php:388 app/libraries/main.php:4436
5803
  msgid "SA"
5804
  msgstr "SA"
5805
 
5806
+ #: app/libraries/main.php:1042
5807
  msgid "Events at this location"
5808
  msgstr "Veranstaltungen an diesem Ort "
5809
 
5810
+ #: app/libraries/main.php:1042
5811
  msgid "Event at this location"
5812
  msgstr "Veranstaltung an diesem Ort "
5813
 
5814
+ #: app/libraries/main.php:1083
5815
  msgid "Facebook"
5816
  msgstr "Facebook"
5817
 
5819
  msgid "Twitter"
5820
  msgstr "Twitter"
5821
 
5822
+ #: app/libraries/main.php:1085 app/libraries/main.php:1135
5823
  msgid "Linkedin"
5824
  msgstr "Linkedin"
5825
 
5826
+ #: app/libraries/main.php:1086 app/libraries/main.php:1168
5827
  msgid "VK"
5828
  msgstr ""
5829
 
5832
  msgstr "Teilen auf Facebook"
5833
 
5834
  #: app/libraries/main.php:1120
 
 
 
 
5835
  msgid "Tweet"
5836
  msgstr "Tweet"
5837
 
5838
+ #: app/libraries/main.php:1190
5839
  #, fuzzy
5840
  #| msgid "Shortcode"
5841
  msgid "Custom Shortcode"
5842
  msgstr "Shortcode"
5843
 
5844
+ #: app/libraries/main.php:1549
5845
  msgid "Your booking successfully verified."
5846
  msgstr "Ihre Buchung wurde erfolgreich verifiziert."
5847
 
5848
+ #: app/libraries/main.php:1550
5849
  msgid "Your booking cannot verify!"
5850
  msgstr "Ihre Buchung kann nicht verifiziert werden!"
5851
 
5852
+ #: app/libraries/main.php:1562
5853
  msgid "Your booking successfully canceled."
5854
  msgstr "Ihre Buchung wurde erfolgreich storniert."
5855
 
5856
+ #: app/libraries/main.php:1563
5857
  msgid "Your booking cannot be canceled."
5858
  msgstr "Ihre Buchung kann nicht storniert werden."
5859
 
5860
+ #: app/libraries/main.php:1567
5861
  msgid "You canceled the payment successfully."
5862
  msgstr "Sie haben die Zahlung erfolgreich storniert."
5863
 
5864
+ #: app/libraries/main.php:1571
5865
  msgid "You returned from payment gateway successfully."
5866
  msgstr "Sie sind vom Bezahlungs-Gateway erfolgreich zurückgekehrt."
5867
 
5868
+ #: app/libraries/main.php:1595
5869
  msgid "Cannot find the booking!"
5870
  msgstr "Kann die Buchung nicht finden!"
5871
 
5872
+ #: app/libraries/main.php:1595
5873
  msgid "Booking is invalid."
5874
  msgstr "Buchung ist ungültig."
5875
 
5876
+ #: app/libraries/main.php:1624
5877
  #, php-format
5878
  msgid "%s Invoice"
5879
  msgstr "% s Rechnung"
5880
 
5881
+ #: app/libraries/main.php:1645
5882
  msgid "Transaction ID"
5883
  msgstr "Transaktions-ID"
5884
 
5885
+ #: app/libraries/main.php:1698
5886
  msgid "Billing"
5887
  msgstr "Abrechnung"
5888
 
5889
+ #: app/libraries/main.php:1709
5890
  msgid "Total"
5891
  msgstr "Gesamt"
5892
 
5893
+ #: app/libraries/main.php:1742
5894
  msgid "Security nonce is not valid."
5895
  msgstr "Sicherheits-Nonce ist ungültig."
5896
 
5897
+ #: app/libraries/main.php:1742 app/libraries/main.php:1774
5898
  msgid "iCal export stopped!"
5899
  msgstr "iCal Export wurde unterbrochen!"
5900
 
5901
+ #: app/libraries/main.php:1774
5902
  #, fuzzy
5903
  #| msgid "Request is invalid!"
5904
  msgid "Request is not valid."
5905
  msgstr "Die Anfrage ist ungültig!"
5906
 
5907
+ #: app/libraries/main.php:2094 app/libraries/main.php:2124
5908
+ #: app/libraries/main.php:2153 app/libraries/main.php:2183
5909
+ #: app/libraries/main.php:2212 app/libraries/main.php:2241
5910
+ #: app/libraries/main.php:2270 app/libraries/main.php:2299
5911
+ #: app/libraries/main.php:2328 app/libraries/main.php:2352
5912
+ #: app/libraries/main.php:2396 app/libraries/main.php:2440
5913
+ #: app/libraries/main.php:2487 app/libraries/main.php:2533
5914
  msgid "Sort"
5915
  msgstr "Sortieren"
5916
 
5917
+ #: app/libraries/main.php:2100 app/libraries/main.php:2130
5918
+ #: app/libraries/main.php:2159 app/libraries/main.php:2189
5919
+ #: app/libraries/main.php:2218 app/libraries/main.php:2247
5920
+ #: app/libraries/main.php:2276 app/libraries/main.php:2305
5921
+ #: app/libraries/main.php:2358 app/libraries/main.php:2402
5922
+ #: app/libraries/main.php:2446 app/libraries/main.php:2493
5923
  msgid "Required Field"
5924
  msgstr "Pflichtfeld"
5925
 
5926
+ #: app/libraries/main.php:2106 app/libraries/main.php:2136
5927
+ #: app/libraries/main.php:2165 app/libraries/main.php:2195
5928
+ #: app/libraries/main.php:2224 app/libraries/main.php:2253
5929
+ #: app/libraries/main.php:2282 app/libraries/main.php:2311
5930
+ #: app/libraries/main.php:2364 app/libraries/main.php:2408
5931
+ #: app/libraries/main.php:2452 app/libraries/main.php:2499
5932
  msgid "Insert a label for this field"
5933
  msgstr "Geben Sie eine Bezeichnung (Label) für dieses Feld ein."
5934
 
5935
+ #: app/libraries/main.php:2334
5936
  msgid "HTML and shortcode are allowed."
5937
  msgstr "HTML und shortcodes sind erlaubt."
5938
 
5939
+ #: app/libraries/main.php:2377 app/libraries/main.php:2421
5940
+ #: app/libraries/main.php:2465
5941
  msgid "Option"
5942
  msgstr "Option"
5943
 
5944
+ #: app/libraries/main.php:2499
5945
  #, php-format
5946
  msgid "Instead of %s, the page title with a link will be show."
5947
  msgstr "Anstelle von %s, wird der Seitentitel mit einem Link gezeigt"
5948
 
5949
+ #: app/libraries/main.php:2501
5950
  msgid "Agreement Page"
5951
  msgstr "Zustimmungsseite"
5952
 
5953
+ #: app/libraries/main.php:2512
5954
  msgid "Checked by default"
5955
  msgstr ""
5956
 
5957
+ #: app/libraries/main.php:2513
5958
  msgid "Unchecked by default"
5959
  msgstr ""
5960
 
5961
+ #: app/libraries/main.php:2535
5962
  msgid "Insert a label for this option"
5963
  msgstr "Ein neues Label für diese Option einfügen"
5964
 
5965
+ #: app/libraries/main.php:2550
5966
  msgid "Free"
5967
  msgstr "kostenfrei"
5968
 
5969
+ #: app/libraries/main.php:3102 app/libraries/main.php:4658
5970
+ #, fuzzy
5971
+ #| msgid "M.E. Calendar"
5972
+ msgid "M.E. Calender"
5973
+ msgstr "M.E. Calender"
5974
+
5975
+ #: app/libraries/main.php:3257
5976
  #, php-format
5977
  msgid "Copy of %s"
5978
  msgstr "Kopie von %s"
5979
 
5980
+ #: app/libraries/main.php:3920
5981
  msgid "Booked an event."
5982
  msgstr "Eine Veranstaltung wurde gebucht."
5983
 
5984
+ #: app/libraries/main.php:3961
5985
  #, php-format
5986
  msgid "%s booked %s event."
5987
  msgstr "%s gebuchtes %s Event"
5988
 
5989
+ #: app/libraries/main.php:4413
5990
  msgid "Taxonomies"
5991
  msgstr "Klassifizierung "
5992
 
5993
+ #: app/libraries/main.php:4415
5994
  msgid "Category Plural Label"
5995
  msgstr "Kategorien"
5996
 
5997
+ #: app/libraries/main.php:4416
5998
  msgid "Category Singular Label"
5999
  msgstr "Kategorie"
6000
 
6001
+ #: app/libraries/main.php:4417
6002
  msgid "Label Plural Label"
6003
  msgstr "Labels"
6004
 
6005
+ #: app/libraries/main.php:4418
6006
  msgid "Label Singular Label"
6007
  msgstr "Label"
6008
 
6009
+ #: app/libraries/main.php:4418
6010
  msgid "label"
6011
  msgstr "label"
6012
 
6013
+ #: app/libraries/main.php:4419
6014
  msgid "Location Plural Label"
6015
  msgstr "Veranstaltungsorte"
6016
 
6017
+ #: app/libraries/main.php:4420
6018
  msgid "Location Singular Label"
6019
  msgstr "Veranstaltungsort"
6020
 
6021
+ #: app/libraries/main.php:4421
6022
  msgid "Organizer Plural Label"
6023
  msgstr "Veranstalter"
6024
 
6025
+ #: app/libraries/main.php:4422
6026
  msgid "Organizer Singular Label"
6027
  msgstr "Veranstalter"
6028
 
6029
+ #: app/libraries/main.php:4423
6030
  #, fuzzy
6031
  #| msgid "Label Plural Label"
6032
  msgid "Speaker Plural Label"
6033
  msgstr "Labels"
6034
 
6035
+ #: app/libraries/main.php:4424
6036
  #, fuzzy
6037
  #| msgid "Label Singular Label"
6038
  msgid "Speaker Singular Label"
6039
  msgstr "Label"
6040
 
6041
+ #: app/libraries/main.php:4430
6042
  msgid "Sunday abbreviation"
6043
  msgstr "Sonntag Abkürzung"
6044
 
6045
+ #: app/libraries/main.php:4431
6046
  msgid "Monday abbreviation"
6047
  msgstr "Montag Abkürzung"
6048
 
6049
+ #: app/libraries/main.php:4432
6050
  msgid "Tuesday abbreviation"
6051
  msgstr "Dienstag Abkürzung"
6052
 
6053
+ #: app/libraries/main.php:4433
6054
  msgid "Wednesday abbreviation"
6055
  msgstr "Mittwoch Abkürzung"
6056
 
6057
+ #: app/libraries/main.php:4434
6058
  msgid "Thursday abbreviation"
6059
  msgstr "Donnerstag Abkürzung"
6060
 
6061
+ #: app/libraries/main.php:4435
6062
  msgid "Friday abbreviation"
6063
  msgstr "Freitag Abkürzung"
6064
 
6065
+ #: app/libraries/main.php:4436
6066
  msgid "Saturday abbreviation"
6067
  msgstr "Samstag Abkürzung "
6068
 
6069
+ #: app/libraries/main.php:4440
6070
  msgid "Others"
6071
  msgstr "Andere"
6072
 
6073
+ #: app/libraries/main.php:4442
6074
  msgid "Booking Success Message"
6075
  msgstr "Buchung erfolgreich Mitteilung"
6076
 
6077
+ #: app/libraries/main.php:4442
6078
  msgid ""
6079
  "Thanks for your booking. Your tickets booked, booking verification might be "
6080
  "needed, please check your email."
6082
  "Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
6083
  "Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
6084
 
6085
+ #: app/libraries/main.php:4443 app/widgets/single.php:131
6086
  msgid "Register Button"
6087
  msgstr "Register Button"
6088
 
6089
+ #: app/libraries/main.php:4443 app/skins/available_spot/tpl.php:204
6090
  #: app/skins/carousel/render.php:148 app/skins/carousel/render.php:175
6091
  #: app/skins/grid/render.php:116 app/skins/grid/render.php:151
6092
  #: app/skins/grid/render.php:188 app/skins/grid/render.php:216
6093
  #: app/skins/list/render.php:102 app/skins/list/render.php:185
6094
+ #: app/skins/masonry/render.php:175 app/skins/single/default.php:229
6095
  #: app/skins/single/default.php:231 app/skins/single/default.php:440
6096
  #: app/skins/single/default.php:442 app/skins/single/m1.php:126
6097
  #: app/skins/single/m1.php:128 app/skins/single/m2.php:58
6102
  msgid "REGISTER"
6103
  msgstr "ANMELDEN"
6104
 
6105
+ #: app/libraries/main.php:4444
6106
  msgid "View Detail Button"
6107
  msgstr "Ansicht Detail Button"
6108
 
6109
+ #: app/libraries/main.php:4444 app/skins/carousel/render.php:148
6110
  #: app/skins/carousel/render.php:175 app/skins/grid/render.php:116
6111
  #: app/skins/grid/render.php:151 app/skins/grid/render.php:188
6112
  #: app/skins/grid/render.php:216 app/skins/list/render.php:102
6113
+ #: app/skins/list/render.php:185 app/skins/masonry/render.php:175
6114
  #: app/skins/slider/render.php:109 app/skins/slider/render.php:154
6115
  #: app/skins/slider/render.php:198 app/skins/slider/render.php:243
6116
  #: app/skins/slider/render.php:299
6117
  msgid "View Detail"
6118
  msgstr "Details "
6119
 
6120
+ #: app/libraries/main.php:4445
6121
  msgid "Event Detail Button"
6122
  msgstr "Event Detail Button"
6123
 
6124
+ #: app/libraries/main.php:4445 app/skins/countdown/tpl.php:217
6125
  msgid "Event Detail"
6126
  msgstr "Veranstaltungsdetails"
6127
 
6128
+ #: app/libraries/main.php:4447
6129
  msgid "More Info Link"
6130
  msgstr "Link Mehr Informationen"
6131
 
6132
+ #: app/libraries/main.php:4450
6133
  msgid "Ticket (Singular)"
6134
  msgstr "Ticket"
6135
 
6136
+ #: app/libraries/main.php:4451
6137
  msgid "Tickets (Plural)"
6138
  msgstr "Tickets"
6139
 
6140
+ #: app/libraries/main.php:4518
6141
  msgid "EventON"
6142
  msgstr "EventON"
6143
 
6144
+ #: app/libraries/main.php:4519
6145
  msgid "The Events Calendar"
6146
  msgstr "The Events Calendar"
6147
 
6148
+ #: app/libraries/main.php:4520
6149
  msgid "Events Schedule WP Plugin"
6150
  msgstr "Event Zeitplan WP-Plugin"
6151
 
6152
+ #: app/libraries/main.php:4521
6153
  msgid "Calendarize It"
6154
  msgstr ""
6155
 
6156
+ #: app/libraries/main.php:4595 app/libraries/main.php:4615
6157
  msgid "Confirmed"
6158
  msgstr "Bestätigt"
6159
 
6160
+ #: app/libraries/main.php:4596 app/libraries/main.php:4623
6161
  msgid "Rejected"
6162
  msgstr "Abgelehnt"
6163
 
6164
+ #: app/libraries/main.php:4597 app/libraries/main.php:4619
6165
  msgid "Pending"
6166
  msgstr "Ausstehend"
6167
 
6168
+ #: app/libraries/main.php:4645
6169
  msgid "Waiting"
6170
  msgstr "in Bearbeitung"
6171
 
6196
  msgstr "Eine neue Veranstaltung wurde hinzugefügt."
6197
 
6198
  #: app/libraries/notifications.php:535 app/libraries/render.php:436
6199
+ #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
6200
  #: app/skins/single/default.php:83 app/skins/single/default.php:294
6201
+ #: app/skins/single/m1.php:34 app/skins/single/modern.php:184
6202
  msgid "All of the day"
6203
  msgstr "Den ganzen Tag"
6204
 
6226
  msgid "Skin controller does not exist."
6227
  msgstr "Skin contoller existiert nicht."
6228
 
6229
+ #: app/libraries/skins.php:932
6230
  msgid "Ignore month and years"
6231
  msgstr "Monat und Jahre ignorieren"
6232
 
6300
  msgid "The event is ongoing."
6301
  msgstr "Die Veranstaltung ist im Gange."
6302
 
6303
+ #: app/modules/googlemap/details.php:96
6304
  msgid "Address from ..."
6305
  msgstr "Adresse von..."
6306
 
6307
+ #: app/modules/googlemap/details.php:100
6308
  msgid "Get Directions"
6309
  msgstr "Wegbeschreibung"
6310
 
6331
  msgid "Time: %s"
6332
  msgstr "Zeit: %s"
6333
 
6334
+ #: app/modules/next-event/details.php:82
6335
  msgid "Next Occurrence"
6336
  msgstr "Nächstes Event"
6337
 
6338
+ #: app/modules/next-event/details.php:82
6339
  msgid "Next Event"
6340
  msgstr "Nächstes Event"
6341
 
6342
+ #: app/modules/next-event/details.php:86
6343
  msgid "Go to occurrence page"
6344
  msgstr "Zum Event"
6345
 
6346
+ #: app/modules/next-event/details.php:95 app/skins/single/default.php:77
6347
  #: app/skins/single/default.php:288 app/skins/single/m1.php:28
6348
+ #: app/skins/single/modern.php:178
6349
  msgid "Time"
6350
  msgstr "Uhrzeit"
6351
 
6428
  msgid "No event"
6429
  msgstr "Keine Veranstaltung"
6430
 
6431
+ #: app/skins/full_calendar/tpl.php:112
6432
  msgid "List"
6433
  msgstr "Liste / Listenansicht"
6434
 
6473
  msgstr "Keine Suchoptionen"
6474
 
6475
  #: app/skins/single/default.php:40 app/skins/single/m1.php:236
6476
+ #: app/skins/single/m2.php:174 app/skins/single/modern.php:256
6477
  msgid "Sold out!"
6478
  msgstr "Ausverkauft!"
6479
 
6480
  #: app/skins/single/default.php:50 app/skins/single/m1.php:245
6481
+ #: app/skins/single/m2.php:183 app/skins/single/modern.php:266
6482
  msgid "Tags: "
6483
  msgstr "Tags:"
6484
 
6915
  #~ msgid "This booking is not free!"
6916
  #~ msgstr "Diese Buchung ist nicht kostenlos!"
6917
 
6918
+ #~ msgid "Google+"
6919
+ #~ msgstr "Google+"
6920
+
6921
+ #~ msgid "Google Plus"
6922
+ #~ msgstr "Google Plus"
6923
+
6924
  #~ msgid "Exclude certain days from event occurrence dates."
6925
  #~ msgstr ""
6926
  #~ "Ausschliessen bestimmter Tage von den Eventdaten z.B. bei regelmäßigen "
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-06-10 15:04+0430\n"
5
- "PO-Revision-Date: 2019-06-10 15:04+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:212
25
  msgid "Content"
26
  msgstr ""
27
 
28
- #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:348
29
- #: app/features/mec.php:378 app/features/mec.php:404
30
  msgid "Shortcode"
31
  msgstr ""
32
 
@@ -46,7 +46,7 @@ msgstr ""
46
  msgid "Select Type"
47
  msgstr ""
48
 
49
- #: app/features/colors.php:50 app/features/fes/form.php:567
50
  #: app/features/mec/settings.php:1195
51
  msgid "Event Color"
52
  msgstr ""
@@ -61,7 +61,7 @@ msgstr ""
61
  msgid "Settings"
62
  msgstr ""
63
 
64
- #: app/features/contextual.php:62 app/features/events.php:1700
65
  #: app/features/mec/gateways.php:33 app/features/mec/ie.php:29
66
  #: app/features/mec/messages.php:33 app/features/mec/notifications.php:32
67
  #: app/features/mec/regform.php:68 app/features/mec/regform.php:131
@@ -97,7 +97,7 @@ msgstr ""
97
 
98
  #: app/features/contextual.php:77 app/features/mec/gateways.php:49
99
  #: app/features/mec/ie.php:45 app/features/mec/messages.php:49
100
- #: app/features/mec/notifications.php:48 app/features/mec/regform.php:83
101
  #: app/features/mec/settings.php:233 app/features/mec/styles.php:49
102
  #: app/features/mec/styling.php:71 app/features/mec/support.php:45
103
  msgid "Notifications"
@@ -212,12 +212,12 @@ msgstr ""
212
  msgid "Frontend Event Submission"
213
  msgstr ""
214
 
215
- #: app/features/contextual.php:298 app/features/events.php:791
216
  #: app/features/mec/settings.php:150
217
  msgid "Exceptional Days"
218
  msgstr ""
219
 
220
- #: app/features/contextual.php:308 app/features/events.php:272
221
  #: app/features/mec/settings.php:168 app/features/mec/settings.php:1324
222
  msgid "Booking"
223
  msgstr ""
@@ -248,9 +248,9 @@ msgid "Events"
248
  msgstr ""
249
 
250
  #: app/features/events.php:135
251
- #: app/features/mec/meta_boxes/display_options.php:840
252
- #: app/features/mec/meta_boxes/display_options.php:896
253
- #: app/features/mec/meta_boxes/display_options.php:931
254
  #: app/features/profile/profile.php:28 app/skins/daily_view/tpl.php:80
255
  #: app/skins/monthly_view/tpl.php:71 app/skins/yearly_view/tpl.php:69
256
  msgid "Event"
@@ -286,26 +286,26 @@ msgid "No events found in Trash!"
286
  msgstr ""
287
 
288
  #: app/features/events.php:159
289
- #: app/features/mec/meta_boxes/display_options.php:771
290
  #: app/features/mec/meta_boxes/search_form.php:31
291
  #: app/features/mec/meta_boxes/search_form.php:92
292
  #: app/features/mec/meta_boxes/search_form.php:153
293
  #: app/features/mec/meta_boxes/search_form.php:214
294
- #: app/features/mec/meta_boxes/search_form.php:240
295
- #: app/features/mec/meta_boxes/search_form.php:301
296
- #: app/features/mec/meta_boxes/search_form.php:362
297
- #: app/features/mec/meta_boxes/search_form.php:416
298
- #: app/features/mec/meta_boxes/search_form.php:477
299
- #: app/features/mec/meta_boxes/search_form.php:538 app/libraries/main.php:4376
300
- #: app/libraries/skins.php:775 app/skins/single/default.php:167
301
  #: app/skins/single/default.php:378 app/skins/single/m1.php:170
302
- #: app/skins/single/m2.php:102 app/skins/single/modern.php:109
303
  msgid "Category"
304
  msgstr ""
305
 
306
- #: app/features/events.php:160 app/features/fes/form.php:519
307
  #: app/features/mec.php:317 app/features/mec/meta_boxes/filter.php:70
308
- #: app/libraries/main.php:4375
309
  msgid "Categories"
310
  msgstr ""
311
 
@@ -365,56 +365,56 @@ msgstr ""
365
  msgid "Search %s"
366
  msgstr ""
367
 
368
- #: app/features/events.php:200 app/features/events.php:219
369
  msgid "Category Icon"
370
  msgstr ""
371
 
372
- #: app/features/events.php:202 app/features/events.php:223
373
  msgid "Select icon"
374
  msgstr ""
375
 
376
- #: app/features/events.php:268
377
  msgid "Event Details"
378
  msgstr ""
379
 
380
- #: app/features/events.php:306 app/features/events.php:2557
381
- #: app/features/events.php:2599 app/features/fes/form.php:480
382
  #: app/features/ix.php:2740 app/features/ix.php:2781
383
- #: app/features/mec/settings.php:1171 app/libraries/main.php:4408
384
  #: app/widgets/single.php:103
385
  msgid "Event Cost"
386
  msgstr ""
387
 
388
- #: app/features/events.php:309 app/features/fes/form.php:483
389
- #: app/libraries/main.php:4409 app/skins/single/default.php:101
390
  #: app/skins/single/default.php:312 app/skins/single/m1.php:49
391
- #: app/skins/single/modern.php:198
392
  msgid "Cost"
393
  msgstr ""
394
 
395
- #: app/features/events.php:402
396
  msgid "Note for reviewer"
397
  msgstr ""
398
 
399
- #: app/features/events.php:409
400
  msgid "Guest Data"
401
  msgstr ""
402
 
403
- #: app/features/events.php:410 app/features/events.php:1682
404
- #: app/features/fes/form.php:442 app/features/labels.php:177
405
  #: app/features/mec/regform.php:27 app/features/organizers.php:274
406
  #: app/features/profile/profile.php:90 app/libraries/notifications.php:667
407
  #: app/modules/booking/steps/form.php:35
408
  msgid "Name"
409
  msgstr ""
410
 
411
- #: app/features/events.php:411 app/features/events.php:1693
412
- #: app/features/events.php:1766 app/features/fes/form.php:438
413
  #: app/features/mec/regform.php:38 app/features/mec/regform.php:183
414
  #: app/features/organizers.php:110 app/features/organizers.php:150
415
- #: app/features/profile/profile.php:93 app/features/speakers.php:119
416
- #: app/features/speakers.php:179 app/libraries/main.php:1087
417
- #: app/libraries/main.php:1168 app/libraries/main.php:2199
418
  #: app/libraries/notifications.php:668 app/modules/booking/steps/form.php:43
419
  #: app/modules/booking/steps/form.php:80 app/skins/single.php:317
420
  #: app/skins/single/default.php:209 app/skins/single/default.php:420
@@ -423,14 +423,14 @@ msgstr ""
423
  msgid "Email"
424
  msgstr ""
425
 
426
- #: app/features/events.php:415 app/features/fes/form.php:223
427
  msgid "Date and Time"
428
  msgstr ""
429
 
430
- #: app/features/events.php:419 app/features/events.php:423
431
- #: app/features/events.php:2379 app/features/events.php:2557
432
- #: app/features/events.php:2599 app/features/fes/form.php:227
433
- #: app/features/fes/form.php:231 app/features/ix.php:2740
434
  #: app/features/ix.php:2781 app/features/ix/import_g_calendar.php:38
435
  #: app/features/mec/dashboard.php:331
436
  #: app/features/mec/meta_boxes/display_options.php:42
@@ -443,67 +443,67 @@ msgstr ""
443
  #: app/features/mec/meta_boxes/display_options.php:615
444
  #: app/features/mec/meta_boxes/display_options.php:650
445
  #: app/features/mec/meta_boxes/display_options.php:696
446
- #: app/features/mec/meta_boxes/display_options.php:739
447
- #: app/features/mec/meta_boxes/display_options.php:954
448
- #: app/features/mec/meta_boxes/display_options.php:1041
449
  msgid "Start Date"
450
  msgstr ""
451
 
452
- #: app/features/events.php:487 app/features/events.php:568
453
- #: app/features/events.php:1156 app/features/events.php:1194
454
- #: app/features/events.php:1313 app/features/events.php:1336
455
- #: app/features/fes/form.php:259 app/features/fes/form.php:299
456
  msgid "AM"
457
  msgstr ""
458
 
459
- #: app/features/events.php:493 app/features/events.php:574
460
- #: app/features/events.php:1162 app/features/events.php:1200
461
- #: app/features/events.php:1314 app/features/events.php:1337
462
- #: app/features/fes/form.php:260 app/features/fes/form.php:300
463
  msgid "PM"
464
  msgstr ""
465
 
466
- #: app/features/events.php:500 app/features/events.php:504
467
- #: app/features/events.php:2380 app/features/events.php:2557
468
- #: app/features/events.php:2599 app/features/fes/form.php:267
469
- #: app/features/fes/form.php:271 app/features/ix.php:2740
470
  #: app/features/ix.php:2781 app/features/ix/import_g_calendar.php:44
471
  #: app/features/mec/dashboard.php:332
472
  msgid "End Date"
473
  msgstr ""
474
 
475
- #: app/features/events.php:585 app/features/fes/form.php:306
476
  msgid "All Day Event"
477
  msgstr ""
478
 
479
- #: app/features/events.php:593 app/features/fes/form.php:309
480
  msgid "Hide Event Time"
481
  msgstr ""
482
 
483
- #: app/features/events.php:601 app/features/fes/form.php:312
484
  msgid "Hide Event End Time"
485
  msgstr ""
486
 
487
- #: app/features/events.php:605 app/features/events.php:608
488
- #: app/features/fes/form.php:316
489
  msgid "Time Comment"
490
  msgstr ""
491
 
492
- #: app/features/events.php:609 app/features/fes/form.php:317
493
  msgid ""
494
  "It shows next to event time on single event page. You can insert Timezone "
495
  "etc. in this field."
496
  msgstr ""
497
 
498
- #: app/features/events.php:609 app/features/events.php:702
499
- #: app/features/events.php:768 app/features/events.php:806
500
- #: app/features/events.php:1024 app/features/events.php:1082
501
- #: app/features/events.php:1213 app/features/events.php:1223
502
- #: app/features/events.php:1350 app/features/events.php:1360
503
- #: app/features/events.php:1465 app/features/events.php:1496
504
- #: app/features/events.php:1580 app/features/events.php:1590
505
- #: app/features/events.php:1614 app/features/events.php:1624
506
- #: app/features/fes/form.php:404 app/features/locations.php:298
507
  #: app/features/mec/dashboard.php:71
508
  #: app/features/mec/meta_boxes/display_options.php:60
509
  #: app/features/mec/meta_boxes/display_options.php:73
@@ -519,30 +519,30 @@ msgstr ""
519
  #: app/features/mec/meta_boxes/display_options.php:259
520
  #: app/features/mec/meta_boxes/display_options.php:326
521
  #: app/features/mec/meta_boxes/display_options.php:498
522
- #: app/features/mec/meta_boxes/display_options.php:758
523
- #: app/features/mec/meta_boxes/display_options.php:811
524
- #: app/features/mec/meta_boxes/display_options.php:823
525
  #: app/features/mec/meta_boxes/display_options.php:834
526
- #: app/features/mec/meta_boxes/display_options.php:866
527
- #: app/features/mec/meta_boxes/display_options.php:877
528
- #: app/features/mec/meta_boxes/display_options.php:890
529
- #: app/features/mec/meta_boxes/display_options.php:925
530
- #: app/features/mec/meta_boxes/display_options.php:974
531
- #: app/features/mec/meta_boxes/display_options.php:985
532
- #: app/features/mec/meta_boxes/display_options.php:996
533
- #: app/features/mec/meta_boxes/display_options.php:1061
534
- #: app/features/mec/meta_boxes/display_options.php:1074
535
- #: app/features/mec/meta_boxes/display_options.php:1087
536
- #: app/features/mec/meta_boxes/display_options.php:1100
537
- #: app/features/mec/meta_boxes/display_options.php:1113
538
- #: app/features/mec/notifications.php:170
539
- #: app/features/mec/notifications.php:228
540
- #: app/features/mec/notifications.php:280
541
- #: app/features/mec/notifications.php:339
542
- #: app/features/mec/notifications.php:406
543
- #: app/features/mec/notifications.php:469
544
- #: app/features/mec/notifications.php:480
545
- #: app/features/mec/notifications.php:541 app/features/mec/settings.php:299
 
 
546
  #: app/features/mec/settings.php:318 app/features/mec/settings.php:345
547
  #: app/features/mec/settings.php:365 app/features/mec/settings.php:386
548
  #: app/features/mec/settings.php:406 app/features/mec/settings.php:483
@@ -562,532 +562,540 @@ msgstr ""
562
  #: app/features/mec/settings.php:1555 app/features/mec/settings.php:1565
563
  #: app/features/mec/settings.php:1587 app/features/mec/settings.php:1597
564
  #: app/features/mec/settings.php:1656 app/features/mec/settings.php:1669
565
- #: app/features/mec/settings.php:1685 app/features/mec/styling.php:282
566
- #: app/features/mec/styling.php:299 app/features/mec/styling.php:312
567
  #: app/features/organizers.php:267 app/skins/single/default.php:116
568
  #: app/skins/single/default.php:327 app/skins/single/m1.php:192
569
- #: app/skins/single/m2.php:125 app/skins/single/modern.php:132
570
  msgid "Read More"
571
  msgstr ""
572
 
573
- #: app/features/events.php:623 app/features/fes/form.php:323
574
  msgid "Event Repeating"
575
  msgstr ""
576
 
577
- #: app/features/events.php:627 app/features/fes/form.php:327
578
  msgid "Repeats"
579
  msgstr ""
580
 
581
- #: app/features/events.php:634 app/features/fes/form.php:329
582
- #: app/features/mec/dashboard.php:334 app/skins/full_calendar/tpl.php:73
583
  msgid "Daily"
584
  msgstr ""
585
 
586
- #: app/features/events.php:640 app/features/fes/form.php:330
587
  msgid "Every Weekday"
588
  msgstr ""
589
 
590
- #: app/features/events.php:646 app/features/fes/form.php:331
591
  msgid "Every Weekend"
592
  msgstr ""
593
 
594
- #: app/features/events.php:652 app/features/fes/form.php:332
595
  msgid "Certain Weekdays"
596
  msgstr ""
597
 
598
- #: app/features/events.php:658 app/features/fes/form.php:333
599
- #: app/skins/full_calendar/tpl.php:72
600
  msgid "Weekly"
601
  msgstr ""
602
 
603
- #: app/features/events.php:664 app/features/fes/form.php:334
604
- #: app/features/mec/dashboard.php:335 app/skins/full_calendar/tpl.php:71
605
  msgid "Monthly"
606
  msgstr ""
607
 
608
- #: app/features/events.php:670 app/features/fes/form.php:335
609
- #: app/features/mec/dashboard.php:336 app/skins/full_calendar/tpl.php:70
610
  msgid "Yearly"
611
  msgstr ""
612
 
613
- #: app/features/events.php:676 app/features/fes/form.php:336
614
  msgid "Custom Days"
615
  msgstr ""
616
 
617
- #: app/features/events.php:680 app/features/fes/form.php:340
618
  msgid "Repeat Interval"
619
  msgstr ""
620
 
621
- #: app/features/events.php:681 app/features/fes/form.php:341
622
  msgid "Repeat interval"
623
  msgstr ""
624
 
625
- #: app/features/events.php:684 app/features/fes/form.php:344
626
  msgid "Week Days"
627
  msgstr ""
628
 
629
- #: app/features/events.php:685 app/features/fes/form.php:345
630
- #: app/libraries/main.php:406
 
631
  msgid "Monday"
632
  msgstr ""
633
 
634
- #: app/features/events.php:686 app/features/fes/form.php:346
635
- #: app/libraries/main.php:406
 
636
  msgid "Tuesday"
637
  msgstr ""
638
 
639
- #: app/features/events.php:687 app/features/fes/form.php:347
640
- #: app/libraries/main.php:406
 
641
  msgid "Wednesday"
642
  msgstr ""
643
 
644
- #: app/features/events.php:688 app/features/fes/form.php:348
645
- #: app/libraries/main.php:406
 
646
  msgid "Thursday"
647
  msgstr ""
648
 
649
- #: app/features/events.php:689 app/features/fes/form.php:349
650
- #: app/libraries/main.php:406
 
651
  msgid "Friday"
652
  msgstr ""
653
 
654
- #: app/features/events.php:690 app/features/fes/form.php:350
655
- #: app/libraries/main.php:406
 
656
  msgid "Saturday"
657
  msgstr ""
658
 
659
- #: app/features/events.php:691 app/features/fes/form.php:351
660
- #: app/libraries/main.php:406
 
661
  msgid "Sunday"
662
  msgstr ""
663
 
664
- #: app/features/events.php:696 app/features/events.php:1260
665
- #: app/features/events.php:1274 app/features/events.php:1386
666
- #: app/features/fes/form.php:356 app/features/ix/import_f_calendar.php:42
667
  #: app/features/ix/import_g_calendar.php:51
668
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
669
  msgid "Start"
670
  msgstr ""
671
 
672
- #: app/features/events.php:697 app/features/events.php:1261
673
- #: app/features/events.php:1275 app/features/events.php:1387
674
- #: app/features/fes/form.php:357
675
  msgid "End"
676
  msgstr ""
677
 
678
- #: app/features/events.php:698 app/features/events.php:802
679
- #: app/features/events.php:894 app/features/events.php:958
680
- #: app/features/events.php:1112 app/features/events.php:1247
681
- #: app/features/events.php:1378 app/features/events.php:1445
682
- #: app/features/events.php:1560 app/features/fes/form.php:358
683
  msgid "Add"
684
  msgstr ""
685
 
686
- #: app/features/events.php:701
687
  msgid "Custom Days Repeating"
688
  msgstr ""
689
 
690
- #: app/features/events.php:702
691
  msgid ""
692
  "Add certain days to event occurrence dates. If you have single day event, "
693
  "start and end date should be the same, If you have multiple day event the "
694
  "start and end dates must be commensurate with the initial date."
695
  msgstr ""
696
 
697
- #: app/features/events.php:731 app/features/fes/form.php:382
698
  msgid "Ends Repeat"
699
  msgstr ""
700
 
701
- #: app/features/events.php:740 app/features/fes/form.php:386
702
  msgid "Never"
703
  msgstr ""
704
 
705
- #: app/features/events.php:750 app/features/fes/form.php:391
706
  msgid "On"
707
  msgstr ""
708
 
709
- #: app/features/events.php:762 app/features/fes/form.php:398
710
  msgid "After"
711
  msgstr ""
712
 
713
- #: app/features/events.php:764 app/features/events.php:767
714
- #: app/features/fes/form.php:400 app/features/fes/form.php:403
715
  msgid "Occurrences times"
716
  msgstr ""
717
 
718
- #: app/features/events.php:768 app/features/fes/form.php:404
719
  msgid ""
720
  "The event will finish after certain repeats. For example if you set it to "
721
  "10, the event will finish after 10 repeats."
722
  msgstr ""
723
 
724
- #: app/features/events.php:797 app/features/events.php:805
725
  msgid "Exclude certain days"
726
  msgstr ""
727
 
728
- #: app/features/events.php:801 app/features/events.php:1767
729
  #: app/features/mec/regform.php:184 app/features/profile/profile.php:31
730
- #: app/libraries/main.php:1654 app/libraries/main.php:2257
731
  #: app/modules/booking/steps/tickets.php:22
732
- #: app/modules/next-event/details.php:86 app/skins/single/default.php:65
733
  #: app/skins/single/default.php:276 app/skins/single/m1.php:16
734
- #: app/skins/single/modern.php:165
735
  msgid "Date"
736
  msgstr ""
737
 
738
- #: app/features/events.php:806
739
  msgid ""
740
  "Exclude certain days from event occurrence dates. Please note that you can "
741
  "exclude only single day occurrences and you cannot exclude one day from "
742
  "multiple day occurrences."
743
  msgstr ""
744
 
745
- #: app/features/events.php:854 app/libraries/render.php:454
746
  msgid "Day 1"
747
  msgstr ""
748
 
749
- #: app/features/events.php:876 app/features/mec/settings.php:1225
750
  #: app/skins/single.php:379
751
  msgid "Hourly Schedule"
752
  msgstr ""
753
 
754
- #: app/features/events.php:879
755
  msgid "Add Day"
756
  msgstr ""
757
 
758
- #: app/features/events.php:880
759
  msgid ""
760
  "Add new days for schedule. For example if your event is multiple days, you "
761
  "can add a different schedule for each day!"
762
  msgstr ""
763
 
764
- #: app/features/events.php:886
765
  #, php-format
766
  msgid "Day %s"
767
  msgstr ""
768
 
769
- #: app/features/events.php:889 app/features/events.php:908
770
- #: app/features/events.php:928 app/features/events.php:953
771
- #: app/features/events.php:969 app/features/events.php:1572
772
- #: app/features/events.php:1606 app/features/events.php:2376
773
- #: app/features/events.php:2557 app/features/events.php:2599
774
- #: app/features/fes/form.php:216 app/features/ix.php:2740
775
  #: app/features/ix.php:2781 app/features/mec/settings.php:1547
776
- #: app/features/mec/settings.php:1579 app/features/mec/styling.php:194
777
  msgid "Title"
778
  msgstr ""
779
 
780
- #: app/features/events.php:891 app/features/events.php:910
781
- #: app/features/events.php:930 app/features/events.php:955
782
- #: app/features/events.php:971 app/features/events.php:1241
783
- #: app/features/events.php:1264 app/features/events.php:1278
784
- #: app/features/events.php:1373 app/features/events.php:1390
785
- #: app/features/events.php:1477 app/features/events.php:1508
786
- #: app/features/events.php:1595 app/features/events.php:1629
787
- #: app/features/fes/list.php:72 app/features/mec/settings.php:1490
788
  #: app/features/mec/settings.php:1519 app/features/mec/settings.php:1570
789
- #: app/features/mec/settings.php:1602 app/libraries/main.php:2118
790
- #: app/libraries/main.php:2148 app/libraries/main.php:2177
791
- #: app/libraries/main.php:2207 app/libraries/main.php:2236
792
- #: app/libraries/main.php:2265 app/libraries/main.php:2294
793
- #: app/libraries/main.php:2323 app/libraries/main.php:2345
794
- #: app/libraries/main.php:2376 app/libraries/main.php:2420
795
- #: app/libraries/main.php:2464 app/libraries/main.php:2511
796
- #: app/libraries/main.php:2549
797
  msgid "Remove"
798
  msgstr ""
799
 
800
- #: app/features/events.php:895 app/features/events.php:959
801
  msgid "Add new hourly schedule row"
802
  msgstr ""
803
 
804
- #: app/features/events.php:906 app/features/events.php:926
805
- #: app/features/events.php:967
806
  msgid "From e.g. 8:15"
807
  msgstr ""
808
 
809
- #: app/features/events.php:907 app/features/events.php:927
810
- #: app/features/events.php:968
811
  msgid "To e.g. 8:45"
812
  msgstr ""
813
 
814
- #: app/features/events.php:909 app/features/events.php:929
815
- #: app/features/events.php:970 app/features/events.php:1205
816
- #: app/features/events.php:1342
817
  msgid "Description"
818
  msgstr ""
819
 
820
- #: app/features/events.php:913 app/features/events.php:933
821
- #: app/features/events.php:974 app/features/fes/form.php:612
822
  #: app/features/mec.php:325 app/features/mec/settings.php:78
823
  #: app/features/mec/settings.php:1219 app/features/speakers.php:57
824
- #: app/libraries/main.php:4383 app/modules/speakers/details.php:18
825
  msgid "Speakers"
826
  msgstr ""
827
 
828
- #: app/features/events.php:950 app/features/events.php:954
829
  msgid "New Day"
830
  msgstr ""
831
 
832
- #: app/features/events.php:1001 app/features/fes/form.php:457
833
  #: app/features/mec/settings.php:1165
834
  msgid "Event Links"
835
  msgstr ""
836
 
837
- #: app/features/events.php:1003 app/features/events.php:1007
838
- #: app/features/fes/form.php:459 app/libraries/main.php:4406
839
  msgid "Event Link"
840
  msgstr ""
841
 
842
- #: app/features/events.php:1004 app/features/events.php:1015
843
- #: app/features/fes/form.php:460 app/features/fes/form.php:465
844
  msgid "eg. http://yoursite.com/your-event"
845
  msgstr ""
846
 
847
- #: app/features/events.php:1008
848
  msgid ""
849
  "If you fill it, it will be replaced instead of default event page link. "
850
  "Insert full link including http(s):// - Also, if you use advertising URL, "
851
  "can use URL Shortener"
852
  msgstr ""
853
 
854
- #: app/features/events.php:1008
855
  msgid "URL Shortener"
856
  msgstr ""
857
 
858
- #: app/features/events.php:1014 app/features/events.php:1023
859
- #: app/features/fes/form.php:464 app/libraries/main.php:4407
860
  #: app/skins/single/default.php:115 app/skins/single/default.php:326
861
  #: app/skins/single/m1.php:191 app/skins/single/m2.php:124
862
- #: app/skins/single/modern.php:131 app/widgets/single.php:107
863
  msgid "More Info"
864
  msgstr ""
865
 
866
- #: app/features/events.php:1016 app/features/fes/form.php:466
867
  msgid "More Information"
868
  msgstr ""
869
 
870
- #: app/features/events.php:1018 app/features/fes/form.php:468
871
  msgid "Current Window"
872
  msgstr ""
873
 
874
- #: app/features/events.php:1019 app/features/fes/form.php:469
875
  msgid "New Window"
876
  msgstr ""
877
 
878
- #: app/features/events.php:1024 app/features/fes/form.php:471
879
  msgid ""
880
  "If you fill it, it will be shown in event details page as an optional link. "
881
  "Insert full link including http(s)://"
882
  msgstr ""
883
 
884
- #: app/features/events.php:1060 app/features/events.php:1081
885
  msgid "Total booking limits"
886
  msgstr ""
887
 
888
- #: app/features/events.php:1070 app/features/events.php:1239
889
- #: app/features/events.php:1371 app/modules/booking/default.php:81
890
  #: app/modules/booking/steps/tickets.php:40
891
  #: app/skins/available_spot/tpl.php:139
892
  msgid "Unlimited"
893
  msgstr ""
894
 
895
- #: app/features/events.php:1072
896
  msgid "100"
897
  msgstr ""
898
 
899
- #: app/features/events.php:1082
900
  msgid ""
901
  "If you want to set a limit to all tickets, uncheck this checkbox and put a "
902
  "limitation number."
903
  msgstr ""
904
 
905
- #: app/features/events.php:1082
906
  msgid "Read About A Booking System"
907
  msgstr ""
908
 
909
- #: app/features/events.php:1104 app/libraries/book.php:60
910
- #: app/libraries/main.php:4411 app/modules/booking/steps/tickets.php:40
911
  msgid "Tickets"
912
  msgstr ""
913
 
914
- #: app/features/events.php:1107
915
  msgid ""
916
  "You're translating an event so MEC will use the original event for tickets "
917
  "and booking. You can only translate the ticket name and description. Please "
918
  "define exact tickets that you defined in the original event here."
919
  msgstr ""
920
 
921
- #: app/features/events.php:1124 app/features/events.php:1291
922
  msgid "Ticket Name"
923
  msgstr ""
924
 
925
- #: app/features/events.php:1128 app/features/events.php:1295
926
- #: app/features/events.php:2557 app/features/events.php:2599
927
  #: app/features/ix.php:2740 app/features/ix.php:2781
928
  msgid "Start Time"
929
  msgstr ""
930
 
931
- #: app/features/events.php:1166 app/features/events.php:1318
932
- #: app/features/events.php:2557 app/features/events.php:2599
933
  #: app/features/ix.php:2740 app/features/ix.php:2781
934
  msgid "End Time"
935
  msgstr ""
936
 
937
- #: app/features/events.php:1209 app/features/events.php:1212
938
- #: app/features/events.php:1262 app/features/events.php:1276
939
- #: app/features/events.php:1346 app/features/events.php:1349
940
- #: app/features/events.php:1388 app/features/events.php:1576
941
- #: app/features/events.php:1579 app/features/events.php:1610
942
- #: app/features/events.php:1613 app/features/mec/settings.php:1551
943
  #: app/features/mec/settings.php:1554 app/features/mec/settings.php:1583
944
  #: app/features/mec/settings.php:1586
945
  msgid "Price"
946
  msgstr ""
947
 
948
- #: app/features/events.php:1213 app/features/events.php:1350
949
  msgid "Insert 0 for free ticket. Only numbers please."
950
  msgstr ""
951
 
952
- #: app/features/events.php:1219 app/features/events.php:1222
953
- #: app/features/events.php:1356 app/features/events.php:1359
954
  msgid "Price Label"
955
  msgstr ""
956
 
957
- #: app/features/events.php:1223 app/features/events.php:1360
958
  msgid "For showing on website. e.g. $15"
959
  msgstr ""
960
 
961
- #: app/features/events.php:1230 app/features/events.php:1367
962
  msgid "Available Tickets"
963
  msgstr ""
964
 
965
- #: app/features/events.php:1246 app/features/events.php:1377
966
  msgid "Price per Date"
967
  msgstr ""
968
 
969
- #: app/features/events.php:1263 app/features/events.php:1277
970
- #: app/features/events.php:1389 app/features/labels.php:60
971
- #: app/features/mec/meta_boxes/display_options.php:772
972
  #: app/features/mec/meta_boxes/search_form.php:66
973
  #: app/features/mec/meta_boxes/search_form.php:127
974
  #: app/features/mec/meta_boxes/search_form.php:188
975
- #: app/features/mec/meta_boxes/search_form.php:275
976
- #: app/features/mec/meta_boxes/search_form.php:336
977
- #: app/features/mec/meta_boxes/search_form.php:397
978
- #: app/features/mec/meta_boxes/search_form.php:451
979
- #: app/features/mec/meta_boxes/search_form.php:512
980
- #: app/features/mec/meta_boxes/search_form.php:573 app/libraries/skins.php:905
 
981
  msgid "Label"
982
  msgstr ""
983
 
984
- #: app/features/events.php:1425
985
  msgid "Fees"
986
  msgstr ""
987
 
988
- #: app/features/events.php:1435 app/features/events.php:1550
989
- #: app/features/events.php:1710
990
  msgid "Inherit from global options"
991
  msgstr ""
992
 
993
- #: app/features/events.php:1457 app/features/events.php:1488
994
  #: app/features/mec/settings.php:1470 app/features/mec/settings.php:1499
995
  msgid "Fee Title"
996
  msgstr ""
997
 
998
- #: app/features/events.php:1461 app/features/events.php:1464
999
- #: app/features/events.php:1492 app/features/events.php:1495
1000
  #: app/features/mec/settings.php:1474 app/features/mec/settings.php:1477
1001
  #: app/features/mec/settings.php:1503 app/features/mec/settings.php:1506
1002
  msgid "Amount"
1003
  msgstr ""
1004
 
1005
- #: app/features/events.php:1465 app/features/events.php:1496
1006
  #: app/features/mec/settings.php:1478 app/features/mec/settings.php:1507
1007
  msgid ""
1008
  "Fee amount, considered as fixed amount if you set the type to amount "
1009
  "otherwise considered as percentage"
1010
  msgstr ""
1011
 
1012
- #: app/features/events.php:1472 app/features/events.php:1503
1013
  #: app/features/mec/settings.php:1485 app/features/mec/settings.php:1514
1014
  msgid "Percent"
1015
  msgstr ""
1016
 
1017
- #: app/features/events.php:1473 app/features/events.php:1504
1018
  #: app/features/mec/settings.php:1486 app/features/mec/settings.php:1515
1019
  msgid "Amount (Per Ticket)"
1020
  msgstr ""
1021
 
1022
- #: app/features/events.php:1474 app/features/events.php:1505
1023
  #: app/features/mec/settings.php:1487 app/features/mec/settings.php:1516
1024
  msgid "Amount (Per Booking)"
1025
  msgstr ""
1026
 
1027
- #: app/features/events.php:1540 app/features/mec/settings.php:1243
1028
  msgid "Ticket Variations / Options"
1029
  msgstr ""
1030
 
1031
- #: app/features/events.php:1580 app/features/events.php:1614
1032
  #: app/features/mec/settings.php:1555 app/features/mec/settings.php:1587
1033
  msgid "Option Price"
1034
  msgstr ""
1035
 
1036
- #: app/features/events.php:1586 app/features/events.php:1589
1037
- #: app/features/events.php:1620 app/features/events.php:1623
1038
  #: app/features/mec/settings.php:1561 app/features/mec/settings.php:1564
1039
  #: app/features/mec/settings.php:1593 app/features/mec/settings.php:1596
1040
  msgid "Maximum Per Ticket"
1041
  msgstr ""
1042
 
1043
- #: app/features/events.php:1590 app/features/events.php:1624
1044
  #: app/features/mec/settings.php:1565 app/features/mec/settings.php:1597
1045
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1046
  msgstr ""
1047
 
1048
- #: app/features/events.php:1763 app/features/mec/regform.php:180
1049
- #: app/libraries/main.php:2140
1050
  msgid "MEC Name"
1051
  msgstr ""
1052
 
1053
- #: app/features/events.php:1764 app/features/mec/regform.php:181
1054
- #: app/libraries/main.php:2169
1055
  msgid "MEC Email"
1056
  msgstr ""
1057
 
1058
- #: app/features/events.php:1765 app/features/mec/regform.php:182
1059
- #: app/libraries/main.php:2110
1060
  msgid "Text"
1061
  msgstr ""
1062
 
1063
- #: app/features/events.php:1768 app/features/mec/regform.php:185
1064
  #: app/features/organizers.php:102 app/features/organizers.php:146
1065
- #: app/features/speakers.php:111 app/features/speakers.php:175
1066
- #: app/features/speakers.php:244 app/libraries/main.php:2286
1067
  msgid "Tel"
1068
  msgstr ""
1069
 
1070
- #: app/features/events.php:1769 app/features/mec/regform.php:186
1071
- #: app/libraries/main.php:2228
1072
  msgid "File"
1073
  msgstr ""
1074
 
1075
- #: app/features/events.php:1770 app/features/mec/regform.php:187
1076
- #: app/libraries/main.php:2315
1077
  msgid "Textarea"
1078
  msgstr ""
1079
 
1080
- #: app/features/events.php:1771 app/features/mec/regform.php:188
1081
- #: app/libraries/main.php:2368
1082
  msgid "Checkboxes"
1083
  msgstr ""
1084
 
1085
- #: app/features/events.php:1772 app/features/mec/regform.php:189
1086
- #: app/libraries/main.php:2412
1087
  msgid "Radio Buttons"
1088
  msgstr ""
1089
 
1090
- #: app/features/events.php:1773 app/features/mec/meta_boxes/search_form.php:34
1091
  #: app/features/mec/meta_boxes/search_form.php:41
1092
  #: app/features/mec/meta_boxes/search_form.php:48
1093
  #: app/features/mec/meta_boxes/search_form.php:55
@@ -1110,172 +1118,179 @@ msgstr ""
1110
  #: app/features/mec/meta_boxes/search_form.php:198
1111
  #: app/features/mec/meta_boxes/search_form.php:217
1112
  #: app/features/mec/meta_boxes/search_form.php:224
1113
- #: app/features/mec/meta_boxes/search_form.php:243
1114
- #: app/features/mec/meta_boxes/search_form.php:250
1115
- #: app/features/mec/meta_boxes/search_form.php:257
1116
- #: app/features/mec/meta_boxes/search_form.php:264
1117
- #: app/features/mec/meta_boxes/search_form.php:271
1118
  #: app/features/mec/meta_boxes/search_form.php:278
1119
  #: app/features/mec/meta_boxes/search_form.php:285
1120
- #: app/features/mec/meta_boxes/search_form.php:304
1121
- #: app/features/mec/meta_boxes/search_form.php:311
1122
- #: app/features/mec/meta_boxes/search_form.php:318
1123
- #: app/features/mec/meta_boxes/search_form.php:325
1124
- #: app/features/mec/meta_boxes/search_form.php:332
1125
  #: app/features/mec/meta_boxes/search_form.php:339
1126
  #: app/features/mec/meta_boxes/search_form.php:346
1127
- #: app/features/mec/meta_boxes/search_form.php:365
1128
- #: app/features/mec/meta_boxes/search_form.php:372
1129
- #: app/features/mec/meta_boxes/search_form.php:379
1130
- #: app/features/mec/meta_boxes/search_form.php:386
1131
- #: app/features/mec/meta_boxes/search_form.php:393
1132
  #: app/features/mec/meta_boxes/search_form.php:400
1133
- #: app/features/mec/meta_boxes/search_form.php:419
1134
- #: app/features/mec/meta_boxes/search_form.php:426
1135
- #: app/features/mec/meta_boxes/search_form.php:433
1136
- #: app/features/mec/meta_boxes/search_form.php:440
1137
- #: app/features/mec/meta_boxes/search_form.php:447
1138
  #: app/features/mec/meta_boxes/search_form.php:454
1139
  #: app/features/mec/meta_boxes/search_form.php:461
1140
- #: app/features/mec/meta_boxes/search_form.php:480
1141
- #: app/features/mec/meta_boxes/search_form.php:487
1142
- #: app/features/mec/meta_boxes/search_form.php:494
1143
- #: app/features/mec/meta_boxes/search_form.php:501
1144
- #: app/features/mec/meta_boxes/search_form.php:508
1145
  #: app/features/mec/meta_boxes/search_form.php:515
1146
  #: app/features/mec/meta_boxes/search_form.php:522
1147
- #: app/features/mec/meta_boxes/search_form.php:541
1148
- #: app/features/mec/meta_boxes/search_form.php:548
1149
- #: app/features/mec/meta_boxes/search_form.php:555
1150
- #: app/features/mec/meta_boxes/search_form.php:562
1151
- #: app/features/mec/meta_boxes/search_form.php:569
1152
  #: app/features/mec/meta_boxes/search_form.php:576
1153
  #: app/features/mec/meta_boxes/search_form.php:583
1154
- #: app/features/mec/regform.php:190 app/libraries/main.php:2456
 
 
 
 
 
1155
  msgid "Dropdown"
1156
  msgstr ""
1157
 
1158
- #: app/features/events.php:1774 app/features/mec/regform.php:191
1159
- #: app/libraries/main.php:2503
1160
  msgid "Agreement"
1161
  msgstr ""
1162
 
1163
- #: app/features/events.php:1775 app/features/mec/regform.php:192
1164
- #: app/libraries/main.php:2344
1165
  msgid "Paragraph"
1166
  msgstr ""
1167
 
1168
- #: app/features/events.php:2315 app/features/events.php:2332
1169
- #: app/features/events.php:2349
1170
  #, php-format
1171
  msgid "Show all %s"
1172
  msgstr ""
1173
 
1174
- #: app/features/events.php:2315
1175
  msgid "labels"
1176
  msgstr ""
1177
 
1178
- #: app/features/events.php:2332
1179
  msgid "locations"
1180
  msgstr ""
1181
 
1182
- #: app/features/events.php:2349
1183
  msgid "organizers"
1184
  msgstr ""
1185
 
1186
- #: app/features/events.php:2377 app/features/events.php:2557
1187
- #: app/features/events.php:2599 app/features/ix.php:2740
1188
  #: app/features/ix.php:2781 app/features/locations.php:58
1189
  #: app/features/locations.php:229 app/features/locations.php:286
1190
  #: app/features/locations.php:288 app/features/locations.php:297
1191
- #: app/features/mec/meta_boxes/display_options.php:773
1192
  #: app/features/mec/meta_boxes/search_form.php:38
1193
  #: app/features/mec/meta_boxes/search_form.php:99
1194
  #: app/features/mec/meta_boxes/search_form.php:160
1195
- #: app/features/mec/meta_boxes/search_form.php:247
1196
- #: app/features/mec/meta_boxes/search_form.php:308
1197
- #: app/features/mec/meta_boxes/search_form.php:369
1198
- #: app/features/mec/meta_boxes/search_form.php:423
1199
- #: app/features/mec/meta_boxes/search_form.php:484
1200
- #: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1648
1201
- #: app/libraries/main.php:4380 app/libraries/skins.php:801
 
1202
  #: app/skins/single.php:356 app/skins/single/default.php:151
1203
  #: app/skins/single/default.php:362 app/skins/single/m1.php:155
1204
  #: app/skins/single/m2.php:87 app/skins/single/modern.php:94
1205
  msgid "Location"
1206
  msgstr ""
1207
 
1208
- #: app/features/events.php:2378 app/features/events.php:2557
1209
- #: app/features/events.php:2599 app/features/ix.php:2740
1210
- #: app/features/ix.php:2781 app/features/mec/meta_boxes/display_options.php:774
1211
  #: app/features/mec/meta_boxes/search_form.php:45
1212
  #: app/features/mec/meta_boxes/search_form.php:106
1213
  #: app/features/mec/meta_boxes/search_form.php:167
1214
- #: app/features/mec/meta_boxes/search_form.php:254
1215
- #: app/features/mec/meta_boxes/search_form.php:315
1216
- #: app/features/mec/meta_boxes/search_form.php:376
1217
- #: app/features/mec/meta_boxes/search_form.php:430
1218
- #: app/features/mec/meta_boxes/search_form.php:491
1219
- #: app/features/mec/meta_boxes/search_form.php:552
 
1220
  #: app/features/organizers.php:58 app/features/organizers.php:199
1221
  #: app/features/organizers.php:255 app/features/organizers.php:257
1222
- #: app/features/organizers.php:266 app/libraries/main.php:4382
1223
- #: app/libraries/skins.php:827 app/skins/single/default.php:192
1224
  #: app/skins/single/default.php:403 app/skins/single/m1.php:90
1225
  #: app/skins/single/m2.php:22 app/skins/single/modern.php:31
1226
  msgid "Organizer"
1227
  msgstr ""
1228
 
1229
- #: app/features/events.php:2382
1230
  msgid "Repeat"
1231
  msgstr ""
1232
 
1233
- #: app/features/events.php:2383
1234
  msgid "Author"
1235
  msgstr ""
1236
 
1237
- #: app/features/events.php:2493 app/features/events.php:2494
1238
  msgid "iCal Export"
1239
  msgstr ""
1240
 
1241
- #: app/features/events.php:2496 app/features/events.php:2497
1242
  msgid "CSV Export"
1243
  msgstr ""
1244
 
1245
- #: app/features/events.php:2499 app/features/events.php:2500
1246
  msgid "MS Excel Export"
1247
  msgstr ""
1248
 
1249
- #: app/features/events.php:2502 app/features/events.php:2503
1250
  msgid "XML Export"
1251
  msgstr ""
1252
 
1253
- #: app/features/events.php:2505 app/features/events.php:2506
1254
  msgid "JSON Export"
1255
  msgstr ""
1256
 
1257
- #: app/features/events.php:2508 app/features/events.php:2509
1258
  msgid "Duplicate"
1259
  msgstr ""
1260
 
1261
- #: app/features/events.php:2557 app/features/events.php:2599
1262
  #: app/features/ix.php:2740 app/features/ix.php:2781
1263
  #: app/features/labels.php:176 app/features/locations.php:228
1264
- #: app/features/organizers.php:198 app/features/speakers.php:241
1265
  msgid "ID"
1266
  msgstr ""
1267
 
1268
- #: app/features/events.php:2557 app/features/events.php:2599
1269
  #: app/features/ix.php:2740 app/features/ix.php:2781
1270
  msgid "Link"
1271
  msgstr ""
1272
 
1273
- #: app/features/events.php:2557 app/features/events.php:2599
1274
  #, php-format
1275
  msgid "%s Tel"
1276
  msgstr ""
1277
 
1278
- #: app/features/events.php:2557 app/features/events.php:2599
1279
  #, php-format
1280
  msgid "%s Email"
1281
  msgstr ""
@@ -1334,58 +1349,58 @@ msgstr ""
1334
  msgid "Go back to events list."
1335
  msgstr ""
1336
 
1337
- #: app/features/fes/form.php:359
1338
  msgid "Add certain days to event occurrence dates."
1339
  msgstr ""
1340
 
1341
- #: app/features/fes/form.php:418
1342
  msgid "Note to reviewer"
1343
  msgstr ""
1344
 
1345
- #: app/features/fes/form.php:436
1346
  msgid "User Data"
1347
  msgstr ""
1348
 
1349
- #: app/features/fes/form.php:439
1350
  msgid "eg. yourname@gmail.com"
1351
  msgstr ""
1352
 
1353
- #: app/features/fes/form.php:443 app/features/organizers.php:275
1354
  msgid "eg. John Smith"
1355
  msgstr ""
1356
 
1357
- #: app/features/fes/form.php:461
1358
  msgid ""
1359
  "If you fill it, it will be replaced instead of default event page link. "
1360
  "Insert full link including http(s)://"
1361
  msgstr ""
1362
 
1363
- #: app/features/fes/form.php:497 app/features/mec/settings.php:1177
1364
  msgid "Featured Image"
1365
  msgstr ""
1366
 
1367
- #: app/features/fes/form.php:502
1368
  msgid "Remove Image"
1369
  msgstr ""
1370
 
1371
- #: app/features/fes/form.php:544 app/features/labels.php:61
1372
  #: app/features/labels.php:220 app/features/mec.php:318
1373
- #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4377
1374
  #: app/skins/single/default.php:130 app/skins/single/default.php:341
1375
- #: app/skins/single/m1.php:64 app/skins/single/modern.php:213
1376
  msgid "Labels"
1377
  msgstr ""
1378
 
1379
- #: app/features/fes/form.php:589 app/features/mec.php:316
1380
  #: app/features/mec/meta_boxes/filter.php:138
1381
  msgid "Tags"
1382
  msgstr ""
1383
 
1384
- #: app/features/fes/form.php:591
1385
  msgid "Insert your desired tags, comma separated."
1386
  msgstr ""
1387
 
1388
- #: app/features/fes/form.php:627
1389
  msgid "Submit"
1390
  msgstr ""
1391
 
@@ -1393,15 +1408,15 @@ msgstr ""
1393
  msgid "Click again to remove!"
1394
  msgstr ""
1395
 
1396
- #: app/features/fes/list.php:64 app/features/fes/list.php:78
1397
  msgid "Add new"
1398
  msgstr ""
1399
 
1400
- #: app/features/fes/list.php:70
1401
  msgid "View"
1402
  msgstr ""
1403
 
1404
- #: app/features/fes/list.php:78
1405
  #, php-format
1406
  msgid "No events found! %s"
1407
  msgstr ""
@@ -1412,7 +1427,7 @@ msgstr ""
1412
 
1413
  #: app/features/ix.php:107 app/features/mec/gateways.php:77
1414
  #: app/features/mec/ie.php:73 app/features/mec/messages.php:77
1415
- #: app/features/mec/notifications.php:123 app/features/mec/regform.php:111
1416
  #: app/features/mec/settings.php:261 app/features/mec/styles.php:77
1417
  #: app/features/mec/styling.php:99 app/features/mec/support.php:73
1418
  msgid "Import / Export"
@@ -1671,15 +1686,15 @@ msgstr ""
1671
  #: app/features/ix/export_g_calendar.php:72
1672
  #: app/features/ix/export_g_calendar.php:147
1673
  #: app/features/ix/export_g_calendar.php:164
1674
- #: app/features/mec/notifications.php:207
1675
- #: app/features/mec/notifications.php:260
1676
- #: app/features/mec/notifications.php:313
1677
- #: app/features/mec/notifications.php:513
1678
  msgid "Add to Google Calendar"
1679
  msgstr ""
1680
 
1681
  #: app/features/ix/export_g_calendar.php:90
1682
- #: app/features/mec/notifications.php:663 app/features/mec/settings.php:1788
1683
  msgid "Checking ..."
1684
  msgstr ""
1685
 
@@ -1735,8 +1750,8 @@ msgstr ""
1735
  #: app/features/mec/meta_boxes/display_options.php:470
1736
  #: app/features/mec/meta_boxes/display_options.php:577
1737
  #: app/features/mec/meta_boxes/display_options.php:684
1738
- #: app/features/mec/meta_boxes/display_options.php:734
1739
- #: app/features/mec/meta_boxes/display_options.php:914
1740
  #: app/features/mec/settings.php:811 app/features/mec/settings.php:985
1741
  #: app/features/mec/settings.php:1003 app/features/mec/settings.php:1327
1742
  #: app/features/mec/settings.php:1436 app/features/mec/settings.php:1454
@@ -1892,7 +1907,7 @@ msgid "Auto Synchronization"
1892
  msgstr ""
1893
 
1894
  #: app/features/ix/sync.php:22
1895
- #: app/features/mec/meta_boxes/display_options.php:734
1896
  #, php-format
1897
  msgid "%s is required to use synchronization feature."
1898
  msgstr ""
@@ -1903,7 +1918,7 @@ msgstr ""
1903
 
1904
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
1905
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
1906
- #: app/features/mec/notifications.php:457
1907
  msgid "Important Note"
1908
  msgstr ""
1909
 
@@ -2013,10 +2028,10 @@ msgstr ""
2013
  #: app/features/mec/meta_boxes/display_options.php:475
2014
  #: app/features/mec/meta_boxes/display_options.php:525
2015
  #: app/features/mec/meta_boxes/display_options.php:689
2016
- #: app/features/mec/meta_boxes/display_options.php:796
2017
- #: app/features/mec/meta_boxes/display_options.php:853
2018
- #: app/features/mec/meta_boxes/display_options.php:945
2019
- #: app/features/mec/meta_boxes/display_options.php:1031
2020
  msgid "Style"
2021
  msgstr ""
2022
 
@@ -2032,13 +2047,13 @@ msgstr ""
2032
  #: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:82
2033
  #: app/skins/monthly_view/calendar_clean.php:81
2034
  #: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
2035
- #: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
2036
  #: app/skins/weekly_view/render.php:31 app/skins/yearly_view/render.php:48
2037
  msgid "Featured"
2038
  msgstr ""
2039
 
2040
  #: app/features/labels.php:117 app/features/labels.php:142
2041
- #: app/libraries/main.php:4571 app/skins/agenda/render.php:41
2042
  #: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:59
2043
  #: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
2044
  #: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
@@ -2046,7 +2061,7 @@ msgstr ""
2046
  #: app/skins/monthly_view/calendar.php:86
2047
  #: app/skins/monthly_view/calendar_clean.php:85
2048
  #: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
2049
- #: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
2050
  #: app/skins/weekly_view/render.php:35 app/skins/yearly_view/render.php:52
2051
  msgid "Canceled"
2052
  msgstr ""
@@ -2056,7 +2071,7 @@ msgid "You can show featured and canceled events by a different style!"
2056
  msgstr ""
2057
 
2058
  #: app/features/labels.php:179 app/features/locations.php:231
2059
- #: app/features/organizers.php:201 app/features/speakers.php:245
2060
  #: app/modules/booking/steps/tickets.php:38
2061
  msgid "Count"
2062
  msgstr ""
@@ -2073,7 +2088,7 @@ msgstr ""
2073
 
2074
  #: app/features/locations.php:59 app/features/mec.php:319
2075
  #: app/features/mec/dashboard.php:201 app/features/mec/meta_boxes/filter.php:87
2076
- #: app/libraries/main.php:4379
2077
  msgid "Locations"
2078
  msgstr ""
2079
 
@@ -2106,13 +2121,13 @@ msgstr ""
2106
 
2107
  #: app/features/locations.php:137 app/features/locations.php:179
2108
  #: app/features/organizers.php:126 app/features/organizers.php:158
2109
- #: app/features/speakers.php:151 app/features/speakers.php:195
2110
  msgid "Thumbnail"
2111
  msgstr ""
2112
 
2113
  #: app/features/locations.php:142 app/features/locations.php:182
2114
  #: app/features/organizers.php:131 app/features/organizers.php:161
2115
- #: app/features/speakers.php:156 app/features/speakers.php:198
2116
  msgid "Upload/Add image"
2117
  msgstr ""
2118
 
@@ -2120,7 +2135,7 @@ msgstr ""
2120
  #: app/features/locations.php:339 app/features/locations.php:346
2121
  #: app/features/organizers.php:132 app/features/organizers.php:162
2122
  #: app/features/organizers.php:294 app/features/organizers.php:301
2123
- #: app/features/speakers.php:157 app/features/speakers.php:199
2124
  msgid "Remove image"
2125
  msgstr ""
2126
 
@@ -2178,7 +2193,7 @@ msgstr ""
2178
  msgid "Don't show map in single event page"
2179
  msgstr ""
2180
 
2181
- #: app/features/locations.php:355 app/libraries/main.php:4413
2182
  msgid "Other Locations"
2183
  msgstr ""
2184
 
@@ -2217,7 +2232,7 @@ msgstr ""
2217
 
2218
  #: app/features/mec.php:299 app/features/mec/gateways.php:84
2219
  #: app/features/mec/ie.php:80 app/features/mec/messages.php:84
2220
- #: app/features/mec/notifications.php:130 app/features/mec/regform.php:118
2221
  #: app/features/mec/settings.php:268 app/features/mec/styles.php:84
2222
  #: app/features/mec/styling.php:106 app/features/mec/support-page.php:9
2223
  #: app/features/mec/support.php:80 app/features/mec/support.php:93
@@ -2226,11 +2241,11 @@ msgstr ""
2226
 
2227
  #: app/features/mec.php:320 app/features/mec/dashboard.php:208
2228
  #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2229
- #: app/libraries/main.php:4381
2230
  msgid "Organizers"
2231
  msgstr ""
2232
 
2233
- #: app/features/mec.php:328 app/features/mec.php:347
2234
  #: app/features/mec/dashboard.php:194
2235
  msgid "Shortcodes"
2236
  msgstr ""
@@ -2247,55 +2262,55 @@ msgstr ""
2247
  msgid "Addons"
2248
  msgstr ""
2249
 
2250
- #: app/features/mec.php:349
2251
  msgid "Add Shortcode"
2252
  msgstr ""
2253
 
2254
- #: app/features/mec.php:350
2255
  msgid "Add New Shortcode"
2256
  msgstr ""
2257
 
2258
- #: app/features/mec.php:351
2259
  msgid "No shortcodes found!"
2260
  msgstr ""
2261
 
2262
- #: app/features/mec.php:352
2263
  msgid "All Shortcodes"
2264
  msgstr ""
2265
 
2266
- #: app/features/mec.php:353
2267
  msgid "Edit shortcodes"
2268
  msgstr ""
2269
 
2270
- #: app/features/mec.php:354
2271
  msgid "No shortcodes found in Trash!"
2272
  msgstr ""
2273
 
2274
- #: app/features/mec.php:402
2275
  msgid "Display Options"
2276
  msgstr ""
2277
 
2278
- #: app/features/mec.php:403
2279
  msgid "Filter Options"
2280
  msgstr ""
2281
 
2282
- #: app/features/mec.php:405
2283
  msgid "Search Form"
2284
  msgstr ""
2285
 
2286
- #: app/features/mec.php:755
2287
  msgid "Display content's images as Popup"
2288
  msgstr ""
2289
 
2290
- #: app/features/mec.php:768
2291
  msgid "Single Event Display Method"
2292
  msgstr ""
2293
 
2294
- #: app/features/mec.php:773
2295
  msgid "Separate Window"
2296
  msgstr ""
2297
 
2298
- #: app/features/mec.php:774
2299
  msgid "Modal 1"
2300
  msgstr ""
2301
 
@@ -2343,7 +2358,7 @@ msgstr ""
2343
  msgid "Modern Events Calendar (Lite)"
2344
  msgstr ""
2345
 
2346
- #: app/features/mec/dashboard.php:65 app/libraries/factory.php:191
2347
  msgctxt "plugin rate"
2348
  msgid "Rate the plugin ★★★★★"
2349
  msgstr ""
@@ -2446,10 +2461,10 @@ msgstr ""
2446
  #: app/features/mec/gateways.php:171 app/features/mec/messages.php:11
2447
  #: app/features/mec/messages.php:118 app/features/mec/messages.php:127
2448
  #: app/features/mec/messages.php:161 app/features/mec/messages.php:170
2449
- #: app/features/mec/notifications.php:10 app/features/mec/notifications.php:569
2450
- #: app/features/mec/notifications.php:581
2451
- #: app/features/mec/notifications.php:680
2452
- #: app/features/mec/notifications.php:694 app/features/mec/regform.php:47
2453
  #: app/features/mec/regform.php:198 app/features/mec/regform.php:253
2454
  #: app/features/mec/regform.php:289 app/features/mec/regform.php:298
2455
  #: app/features/mec/settings.php:28 app/features/mec/settings.php:1714
@@ -2457,14 +2472,14 @@ msgstr ""
2457
  #: app/features/mec/settings.php:1819 app/features/mec/styles.php:11
2458
  #: app/features/mec/styles.php:103 app/features/mec/styles.php:112
2459
  #: app/features/mec/styles.php:149 app/features/mec/styles.php:158
2460
- #: app/features/mec/styling.php:33 app/features/mec/styling.php:321
2461
- #: app/features/mec/styling.php:330 app/features/mec/styling.php:393
2462
- #: app/features/mec/styling.php:402
2463
  msgid "Save Changes"
2464
  msgstr ""
2465
 
2466
  #: app/features/mec/gateways.php:56 app/features/mec/ie.php:52
2467
- #: app/features/mec/messages.php:56 app/features/mec/notifications.php:102
2468
  #: app/features/mec/regform.php:90 app/features/mec/settings.php:240
2469
  #: app/features/mec/styles.php:56 app/features/mec/styling.php:78
2470
  #: app/features/mec/support.php:52
@@ -2472,7 +2487,7 @@ msgid "Styling Options"
2472
  msgstr ""
2473
 
2474
  #: app/features/mec/gateways.php:63 app/features/mec/ie.php:59
2475
- #: app/features/mec/messages.php:63 app/features/mec/notifications.php:109
2476
  #: app/features/mec/regform.php:97 app/features/mec/settings.php:247
2477
  #: app/features/mec/styles.php:63 app/features/mec/styling.php:85
2478
  #: app/features/mec/support.php:59
@@ -2481,23 +2496,23 @@ msgstr ""
2481
 
2482
  #: app/features/mec/gateways.php:70 app/features/mec/ie.php:66
2483
  #: app/features/mec/messages.php:70 app/features/mec/messages.php:97
2484
- #: app/features/mec/notifications.php:116 app/features/mec/regform.php:104
2485
  #: app/features/mec/settings.php:254 app/features/mec/styles.php:70
2486
  #: app/features/mec/styling.php:92 app/features/mec/support.php:66
2487
  msgid "Messages"
2488
  msgstr ""
2489
 
2490
  #: app/features/mec/gateways.php:140 app/features/mec/messages.php:145
2491
- #: app/features/mec/notifications.php:658 app/features/mec/regform.php:273
2492
  #: app/features/mec/settings.php:1783 app/features/mec/styles.php:132
2493
- #: app/features/mec/styling.php:375
2494
  msgid "Saved"
2495
  msgstr ""
2496
 
2497
  #: app/features/mec/gateways.php:141 app/features/mec/messages.php:146
2498
- #: app/features/mec/notifications.php:659 app/features/mec/regform.php:274
2499
  #: app/features/mec/settings.php:1784 app/features/mec/styles.php:133
2500
- #: app/features/mec/styling.php:376
2501
  msgid "Settings Saved!"
2502
  msgstr ""
2503
 
@@ -2540,7 +2555,7 @@ msgstr ""
2540
  #: app/features/mec/meta_boxes/display_options.php:34
2541
  #: app/features/mec/meta_boxes/display_options.php:159
2542
  #: app/features/mec/meta_boxes/display_options.php:527
2543
- #: app/features/mec/meta_boxes/display_options.php:798
2544
  #: app/features/mec/settings.php:432 app/features/mec/settings.php:456
2545
  #: app/features/mec/settings.php:465 app/features/mec/settings.php:506
2546
  #: app/features/mec/settings.php:530 app/features/mec/settings.php:539
@@ -2559,7 +2574,7 @@ msgstr ""
2559
  #: app/features/mec/meta_boxes/display_options.php:477
2560
  #: app/features/mec/meta_boxes/display_options.php:529
2561
  #: app/features/mec/meta_boxes/display_options.php:691
2562
- #: app/features/mec/meta_boxes/display_options.php:800
2563
  #: app/features/mec/settings.php:434 app/features/mec/settings.php:447
2564
  #: app/features/mec/settings.php:458 app/features/mec/settings.php:468
2565
  #: app/features/mec/settings.php:508 app/features/mec/settings.php:521
@@ -2582,9 +2597,9 @@ msgstr ""
2582
  #: app/features/mec/meta_boxes/display_options.php:309
2583
  #: app/features/mec/meta_boxes/display_options.php:584
2584
  #: app/features/mec/meta_boxes/display_options.php:617
2585
- #: app/features/mec/meta_boxes/display_options.php:741
2586
- #: app/features/mec/meta_boxes/display_options.php:956
2587
- #: app/features/mec/meta_boxes/display_options.php:1043
2588
  msgid "Today"
2589
  msgstr ""
2590
 
@@ -2593,9 +2608,9 @@ msgstr ""
2593
  #: app/features/mec/meta_boxes/display_options.php:310
2594
  #: app/features/mec/meta_boxes/display_options.php:585
2595
  #: app/features/mec/meta_boxes/display_options.php:618
2596
- #: app/features/mec/meta_boxes/display_options.php:742
2597
- #: app/features/mec/meta_boxes/display_options.php:957
2598
- #: app/features/mec/meta_boxes/display_options.php:1044
2599
  msgid "Tomorrow"
2600
  msgstr ""
2601
 
@@ -2608,9 +2623,9 @@ msgstr ""
2608
  #: app/features/mec/meta_boxes/display_options.php:619
2609
  #: app/features/mec/meta_boxes/display_options.php:654
2610
  #: app/features/mec/meta_boxes/display_options.php:700
2611
- #: app/features/mec/meta_boxes/display_options.php:743
2612
- #: app/features/mec/meta_boxes/display_options.php:958
2613
- #: app/features/mec/meta_boxes/display_options.php:1045
2614
  msgid "Start of Current Month"
2615
  msgstr ""
2616
 
@@ -2623,9 +2638,9 @@ msgstr ""
2623
  #: app/features/mec/meta_boxes/display_options.php:620
2624
  #: app/features/mec/meta_boxes/display_options.php:655
2625
  #: app/features/mec/meta_boxes/display_options.php:701
2626
- #: app/features/mec/meta_boxes/display_options.php:744
2627
- #: app/features/mec/meta_boxes/display_options.php:959
2628
- #: app/features/mec/meta_boxes/display_options.php:1046
2629
  msgid "Start of Next Month"
2630
  msgstr ""
2631
 
@@ -2639,9 +2654,9 @@ msgstr ""
2639
  #: app/features/mec/meta_boxes/display_options.php:621
2640
  #: app/features/mec/meta_boxes/display_options.php:656
2641
  #: app/features/mec/meta_boxes/display_options.php:702
2642
- #: app/features/mec/meta_boxes/display_options.php:745
2643
- #: app/features/mec/meta_boxes/display_options.php:960
2644
- #: app/features/mec/meta_boxes/display_options.php:1047
2645
  msgid "On a certain date"
2646
  msgstr ""
2647
 
@@ -2655,9 +2670,9 @@ msgstr ""
2655
  #: app/features/mec/meta_boxes/display_options.php:625
2656
  #: app/features/mec/meta_boxes/display_options.php:659
2657
  #: app/features/mec/meta_boxes/display_options.php:705
2658
- #: app/features/mec/meta_boxes/display_options.php:748
2659
- #: app/features/mec/meta_boxes/display_options.php:963
2660
- #: app/features/mec/meta_boxes/display_options.php:1050
2661
  #, php-format
2662
  msgid "eg. %s"
2663
  msgstr ""
@@ -2690,38 +2705,38 @@ msgstr ""
2690
  #: app/features/mec/meta_boxes/display_options.php:325
2691
  #: app/features/mec/meta_boxes/display_options.php:492
2692
  #: app/features/mec/meta_boxes/display_options.php:497
2693
- #: app/features/mec/meta_boxes/display_options.php:752
2694
- #: app/features/mec/meta_boxes/display_options.php:757
2695
- #: app/features/mec/meta_boxes/display_options.php:804
2696
- #: app/features/mec/meta_boxes/display_options.php:810
2697
- #: app/features/mec/meta_boxes/display_options.php:817
2698
- #: app/features/mec/meta_boxes/display_options.php:822
2699
- #: app/features/mec/meta_boxes/display_options.php:829
2700
  #: app/features/mec/meta_boxes/display_options.php:833
2701
- #: app/features/mec/meta_boxes/display_options.php:861
2702
- #: app/features/mec/meta_boxes/display_options.php:865
2703
- #: app/features/mec/meta_boxes/display_options.php:872
2704
- #: app/features/mec/meta_boxes/display_options.php:876
2705
- #: app/features/mec/meta_boxes/display_options.php:883
2706
- #: app/features/mec/meta_boxes/display_options.php:889
2707
- #: app/features/mec/meta_boxes/display_options.php:919
2708
- #: app/features/mec/meta_boxes/display_options.php:924
2709
- #: app/features/mec/meta_boxes/display_options.php:967
2710
- #: app/features/mec/meta_boxes/display_options.php:973
2711
- #: app/features/mec/meta_boxes/display_options.php:980
2712
- #: app/features/mec/meta_boxes/display_options.php:984
2713
- #: app/features/mec/meta_boxes/display_options.php:991
2714
- #: app/features/mec/meta_boxes/display_options.php:995
2715
- #: app/features/mec/meta_boxes/display_options.php:1054
2716
- #: app/features/mec/meta_boxes/display_options.php:1060
2717
- #: app/features/mec/meta_boxes/display_options.php:1067
2718
- #: app/features/mec/meta_boxes/display_options.php:1073
2719
- #: app/features/mec/meta_boxes/display_options.php:1080
2720
- #: app/features/mec/meta_boxes/display_options.php:1086
2721
- #: app/features/mec/meta_boxes/display_options.php:1093
2722
- #: app/features/mec/meta_boxes/display_options.php:1099
2723
- #: app/features/mec/meta_boxes/display_options.php:1106
2724
- #: app/features/mec/meta_boxes/display_options.php:1112
 
 
 
 
2725
  msgid "Date Formats"
2726
  msgstr ""
2727
 
@@ -2737,11 +2752,11 @@ msgstr ""
2737
  #: app/features/mec/meta_boxes/display_options.php:86
2738
  #: app/features/mec/meta_boxes/display_options.php:224
2739
  #: app/features/mec/meta_boxes/display_options.php:248
2740
- #: app/features/mec/meta_boxes/display_options.php:1061
2741
- #: app/features/mec/meta_boxes/display_options.php:1074
2742
- #: app/features/mec/meta_boxes/display_options.php:1087
2743
- #: app/features/mec/meta_boxes/display_options.php:1100
2744
- #: app/features/mec/meta_boxes/display_options.php:1113
2745
  msgid "Default values are d, F and l"
2746
  msgstr ""
2747
 
@@ -2756,9 +2771,9 @@ msgstr ""
2756
  #: app/features/mec/meta_boxes/display_options.php:115
2757
  #: app/features/mec/meta_boxes/display_options.php:276
2758
  #: app/features/mec/meta_boxes/display_options.php:332
2759
- #: app/features/mec/meta_boxes/display_options.php:764
2760
- #: app/features/mec/meta_boxes/display_options.php:1011
2761
- #: app/features/mec/meta_boxes/display_options.php:1119
2762
  msgid "Limit"
2763
  msgstr ""
2764
 
@@ -2770,8 +2785,8 @@ msgstr ""
2770
  #: app/features/mec/meta_boxes/display_options.php:630
2771
  #: app/features/mec/meta_boxes/display_options.php:664
2772
  #: app/features/mec/meta_boxes/display_options.php:710
2773
- #: app/features/mec/meta_boxes/display_options.php:1012
2774
- #: app/features/mec/meta_boxes/display_options.php:1120
2775
  msgid "eg. 6"
2776
  msgstr ""
2777
 
@@ -2795,7 +2810,7 @@ msgstr ""
2795
  #: app/features/mec/meta_boxes/display_options.php:385
2796
  #: app/features/mec/meta_boxes/display_options.php:528
2797
  #: app/features/mec/meta_boxes/display_options.php:692
2798
- #: app/features/mec/meta_boxes/display_options.php:799
2799
  #: app/features/mec/settings.php:433 app/features/mec/settings.php:448
2800
  #: app/features/mec/settings.php:466 app/features/mec/settings.php:507
2801
  #: app/features/mec/settings.php:522 app/features/mec/settings.php:540
@@ -2839,7 +2854,7 @@ msgid "Default value is \"d F Y\""
2839
  msgstr ""
2840
 
2841
  #: app/features/mec/meta_boxes/display_options.php:265
2842
- #: app/features/mec/meta_boxes/display_options.php:1002
2843
  msgid "Count in row"
2844
  msgstr ""
2845
 
@@ -2847,7 +2862,7 @@ msgstr ""
2847
  #: app/features/mec/meta_boxes/display_options.php:470
2848
  #: app/features/mec/meta_boxes/display_options.php:577
2849
  #: app/features/mec/meta_boxes/display_options.php:684
2850
- #: app/features/mec/meta_boxes/display_options.php:914
2851
  #, php-format
2852
  msgid "%s is required to use this skin."
2853
  msgstr ""
@@ -2863,15 +2878,15 @@ msgstr ""
2863
 
2864
  #: app/features/mec/meta_boxes/display_options.php:375
2865
  #: app/features/mec/meta_boxes/display_options.php:392
2866
- #: app/libraries/main.php:329 app/libraries/main.php:1201
2867
- #: app/libraries/main.php:1226
2868
  msgid "List View"
2869
  msgstr ""
2870
 
2871
  #: app/features/mec/meta_boxes/display_options.php:376
2872
  #: app/features/mec/meta_boxes/display_options.php:402
2873
- #: app/libraries/main.php:333 app/libraries/main.php:1195
2874
- #: app/libraries/main.php:1220
2875
  msgid "Yearly View"
2876
  msgstr ""
2877
 
@@ -2882,15 +2897,15 @@ msgstr ""
2882
 
2883
  #: app/features/mec/meta_boxes/display_options.php:378
2884
  #: app/features/mec/meta_boxes/display_options.php:434
2885
- #: app/libraries/main.php:336 app/libraries/main.php:1197
2886
- #: app/libraries/main.php:1222
2887
  msgid "Weekly View"
2888
  msgstr ""
2889
 
2890
  #: app/features/mec/meta_boxes/display_options.php:379
2891
  #: app/features/mec/meta_boxes/display_options.php:444
2892
- #: app/libraries/main.php:335 app/libraries/main.php:1198
2893
- #: app/libraries/main.php:1223
2894
  msgid "Daily View"
2895
  msgstr ""
2896
 
@@ -2931,7 +2946,7 @@ msgstr ""
2931
  #: app/features/mec/meta_boxes/display_options.php:551
2932
  #: app/features/mec/meta_boxes/display_options.php:634
2933
  #: app/features/mec/meta_boxes/display_options.php:668
2934
- #: app/features/mec/meta_boxes/display_options.php:715
2935
  msgid "Next/Previous Buttons"
2936
  msgstr ""
2937
 
@@ -2946,7 +2961,7 @@ msgstr ""
2946
  #: app/features/mec/meta_boxes/display_options.php:569
2947
  #: app/features/mec/meta_boxes/display_options.php:642
2948
  #: app/features/mec/meta_boxes/display_options.php:676
2949
- #: app/features/mec/meta_boxes/display_options.php:723
2950
  msgid "For showing next/previous month navigation."
2951
  msgstr ""
2952
 
@@ -2976,117 +2991,133 @@ msgstr ""
2976
  msgid "Next Week"
2977
  msgstr ""
2978
 
2979
- #: app/features/mec/meta_boxes/display_options.php:758
2980
- #: app/features/mec/meta_boxes/display_options.php:925
 
 
 
 
 
 
 
 
 
 
 
 
2981
  msgid "Default values are j and F"
2982
  msgstr ""
2983
 
2984
- #: app/features/mec/meta_boxes/display_options.php:765
2985
  msgid "eg. 24"
2986
  msgstr ""
2987
 
2988
- #: app/features/mec/meta_boxes/display_options.php:768
2989
  msgid "Filter By"
2990
  msgstr ""
2991
 
2992
- #: app/features/mec/meta_boxes/display_options.php:779
 
 
 
 
2993
  msgid "Convert Masonry to Grid"
2994
  msgstr ""
2995
 
2996
- #: app/features/mec/meta_boxes/display_options.php:780
2997
  msgid "For using this option, your events should come with image"
2998
  msgstr ""
2999
 
3000
- #: app/features/mec/meta_boxes/display_options.php:811
3001
  msgid "Default values are d, M and Y"
3002
  msgstr ""
3003
 
3004
- #: app/features/mec/meta_boxes/display_options.php:823
3005
  msgid "Default values are \"F d\" and l"
3006
  msgstr ""
3007
 
3008
- #: app/features/mec/meta_boxes/display_options.php:834
3009
  msgid "Default value is \"l, F d Y\""
3010
  msgstr ""
3011
 
3012
- #: app/features/mec/meta_boxes/display_options.php:855
3013
  msgid "Style 1"
3014
  msgstr ""
3015
 
3016
- #: app/features/mec/meta_boxes/display_options.php:856
3017
  msgid "Style 2"
3018
  msgstr ""
3019
 
3020
- #: app/features/mec/meta_boxes/display_options.php:857
3021
  msgid "Style 3"
3022
  msgstr ""
3023
 
3024
- #: app/features/mec/meta_boxes/display_options.php:866
3025
- #: app/features/mec/meta_boxes/display_options.php:877
3026
  msgid "Default value is \"j F Y\""
3027
  msgstr ""
3028
 
3029
- #: app/features/mec/meta_boxes/display_options.php:890
3030
  msgid "Default values are j, F and Y"
3031
  msgstr ""
3032
 
3033
- #: app/features/mec/meta_boxes/display_options.php:898
3034
- #: app/features/mec/meta_boxes/display_options.php:933
3035
  msgid " -- Next Upcoming Event -- "
3036
  msgstr ""
3037
 
3038
- #: app/features/mec/meta_boxes/display_options.php:905
3039
  msgid "Background Color"
3040
  msgstr ""
3041
 
3042
- #: app/features/mec/meta_boxes/display_options.php:947
3043
- #: app/features/mec/meta_boxes/display_options.php:1033
3044
  msgid "Type 1"
3045
  msgstr ""
3046
 
3047
- #: app/features/mec/meta_boxes/display_options.php:948
3048
- #: app/features/mec/meta_boxes/display_options.php:1034
3049
  msgid "Type 2"
3050
  msgstr ""
3051
 
3052
- #: app/features/mec/meta_boxes/display_options.php:949
3053
- #: app/features/mec/meta_boxes/display_options.php:1035
3054
  msgid "Type 3"
3055
  msgstr ""
3056
 
3057
- #: app/features/mec/meta_boxes/display_options.php:950
3058
- #: app/features/mec/meta_boxes/display_options.php:1036
3059
  msgid "Type 4"
3060
  msgstr ""
3061
 
3062
- #: app/features/mec/meta_boxes/display_options.php:974
3063
  msgid "Default values are d, F and Y"
3064
  msgstr ""
3065
 
3066
- #: app/features/mec/meta_boxes/display_options.php:985
3067
- #: app/features/mec/meta_boxes/display_options.php:996
3068
  msgid "Default value is \"M d, Y\""
3069
  msgstr ""
3070
 
3071
- #: app/features/mec/meta_boxes/display_options.php:1015
3072
- #: app/features/mec/meta_boxes/display_options.php:1123
3073
  msgid "Auto Play Time"
3074
  msgstr ""
3075
 
3076
- #: app/features/mec/meta_boxes/display_options.php:1016
3077
- #: app/features/mec/meta_boxes/display_options.php:1124
3078
  msgid "eg. 3000 default is 3 second"
3079
  msgstr ""
3080
 
3081
- #: app/features/mec/meta_boxes/display_options.php:1020
3082
  msgid "Archive Link"
3083
  msgstr ""
3084
 
3085
- #: app/features/mec/meta_boxes/display_options.php:1024
3086
  msgid "Head Text"
3087
  msgstr ""
3088
 
3089
- #: app/features/mec/meta_boxes/display_options.php:1037
3090
  msgid "Type 5"
3091
  msgstr ""
3092
 
@@ -3183,53 +3214,58 @@ msgstr ""
3183
  #: app/features/mec/meta_boxes/search_form.php:216
3184
  #: app/features/mec/meta_boxes/search_form.php:223
3185
  #: app/features/mec/meta_boxes/search_form.php:230
3186
- #: app/features/mec/meta_boxes/search_form.php:242
3187
- #: app/features/mec/meta_boxes/search_form.php:249
3188
- #: app/features/mec/meta_boxes/search_form.php:256
3189
- #: app/features/mec/meta_boxes/search_form.php:263
3190
- #: app/features/mec/meta_boxes/search_form.php:270
3191
  #: app/features/mec/meta_boxes/search_form.php:277
3192
  #: app/features/mec/meta_boxes/search_form.php:284
3193
  #: app/features/mec/meta_boxes/search_form.php:291
3194
- #: app/features/mec/meta_boxes/search_form.php:303
3195
- #: app/features/mec/meta_boxes/search_form.php:310
3196
- #: app/features/mec/meta_boxes/search_form.php:317
3197
- #: app/features/mec/meta_boxes/search_form.php:324
3198
- #: app/features/mec/meta_boxes/search_form.php:331
3199
  #: app/features/mec/meta_boxes/search_form.php:338
3200
  #: app/features/mec/meta_boxes/search_form.php:345
3201
  #: app/features/mec/meta_boxes/search_form.php:352
3202
- #: app/features/mec/meta_boxes/search_form.php:364
3203
- #: app/features/mec/meta_boxes/search_form.php:371
3204
- #: app/features/mec/meta_boxes/search_form.php:378
3205
- #: app/features/mec/meta_boxes/search_form.php:385
3206
- #: app/features/mec/meta_boxes/search_form.php:392
3207
  #: app/features/mec/meta_boxes/search_form.php:399
3208
  #: app/features/mec/meta_boxes/search_form.php:406
3209
- #: app/features/mec/meta_boxes/search_form.php:418
3210
- #: app/features/mec/meta_boxes/search_form.php:425
3211
- #: app/features/mec/meta_boxes/search_form.php:432
3212
- #: app/features/mec/meta_boxes/search_form.php:439
3213
- #: app/features/mec/meta_boxes/search_form.php:446
3214
  #: app/features/mec/meta_boxes/search_form.php:453
3215
  #: app/features/mec/meta_boxes/search_form.php:460
3216
  #: app/features/mec/meta_boxes/search_form.php:467
3217
- #: app/features/mec/meta_boxes/search_form.php:479
3218
- #: app/features/mec/meta_boxes/search_form.php:486
3219
- #: app/features/mec/meta_boxes/search_form.php:493
3220
- #: app/features/mec/meta_boxes/search_form.php:500
3221
- #: app/features/mec/meta_boxes/search_form.php:507
3222
  #: app/features/mec/meta_boxes/search_form.php:514
3223
  #: app/features/mec/meta_boxes/search_form.php:521
3224
  #: app/features/mec/meta_boxes/search_form.php:528
3225
- #: app/features/mec/meta_boxes/search_form.php:540
3226
- #: app/features/mec/meta_boxes/search_form.php:547
3227
- #: app/features/mec/meta_boxes/search_form.php:554
3228
- #: app/features/mec/meta_boxes/search_form.php:561
3229
- #: app/features/mec/meta_boxes/search_form.php:568
3230
  #: app/features/mec/meta_boxes/search_form.php:575
3231
  #: app/features/mec/meta_boxes/search_form.php:582
3232
  #: app/features/mec/meta_boxes/search_form.php:589
 
 
 
 
 
3233
  #: app/features/mec/settings.php:330 app/features/mec/settings.php:586
3234
  #: app/features/mec/settings.php:866
3235
  msgid "Disabled"
@@ -3238,168 +3274,160 @@ msgstr ""
3238
  #: app/features/mec/meta_boxes/search_form.php:52
3239
  #: app/features/mec/meta_boxes/search_form.php:113
3240
  #: app/features/mec/meta_boxes/search_form.php:174
3241
- #: app/features/mec/meta_boxes/search_form.php:261
3242
- #: app/features/mec/meta_boxes/search_form.php:322
3243
- #: app/features/mec/meta_boxes/search_form.php:383
3244
- #: app/features/mec/meta_boxes/search_form.php:437
3245
- #: app/features/mec/meta_boxes/search_form.php:498
3246
- #: app/features/mec/meta_boxes/search_form.php:559 app/features/speakers.php:56
3247
- #: app/features/speakers.php:242 app/libraries/main.php:4384
3248
- #: app/libraries/skins.php:853
 
3249
  msgid "Speaker"
3250
  msgstr ""
3251
 
3252
  #: app/features/mec/meta_boxes/search_form.php:59
3253
  #: app/features/mec/meta_boxes/search_form.php:120
3254
  #: app/features/mec/meta_boxes/search_form.php:181
3255
- #: app/features/mec/meta_boxes/search_form.php:268
3256
- #: app/features/mec/meta_boxes/search_form.php:329
3257
- #: app/features/mec/meta_boxes/search_form.php:390
3258
- #: app/features/mec/meta_boxes/search_form.php:444
3259
- #: app/features/mec/meta_boxes/search_form.php:505
3260
- #: app/features/mec/meta_boxes/search_form.php:566 app/libraries/skins.php:879
 
3261
  msgid "Tag"
3262
  msgstr ""
3263
 
3264
  #: app/features/mec/meta_boxes/search_form.php:73
3265
  #: app/features/mec/meta_boxes/search_form.php:134
3266
  #: app/features/mec/meta_boxes/search_form.php:195
3267
- #: app/features/mec/meta_boxes/search_form.php:221
3268
- #: app/features/mec/meta_boxes/search_form.php:282
3269
- #: app/features/mec/meta_boxes/search_form.php:343
3270
- #: app/features/mec/meta_boxes/search_form.php:458
3271
- #: app/features/mec/meta_boxes/search_form.php:519
3272
- #: app/features/mec/meta_boxes/search_form.php:580
3273
  msgid "Month Filter"
3274
  msgstr ""
3275
 
3276
  #: app/features/mec/meta_boxes/search_form.php:80
3277
  #: app/features/mec/meta_boxes/search_form.php:141
3278
  #: app/features/mec/meta_boxes/search_form.php:202
3279
- #: app/features/mec/meta_boxes/search_form.php:228
3280
- #: app/features/mec/meta_boxes/search_form.php:289
3281
- #: app/features/mec/meta_boxes/search_form.php:350
3282
- #: app/features/mec/meta_boxes/search_form.php:404
3283
- #: app/features/mec/meta_boxes/search_form.php:465
3284
- #: app/features/mec/meta_boxes/search_form.php:526
3285
- #: app/features/mec/meta_boxes/search_form.php:587
3286
  msgid "Text Search"
3287
  msgstr ""
3288
 
3289
  #: app/features/mec/meta_boxes/search_form.php:83
3290
  #: app/features/mec/meta_boxes/search_form.php:144
3291
  #: app/features/mec/meta_boxes/search_form.php:205
3292
- #: app/features/mec/meta_boxes/search_form.php:231
3293
- #: app/features/mec/meta_boxes/search_form.php:292
3294
- #: app/features/mec/meta_boxes/search_form.php:353
3295
- #: app/features/mec/meta_boxes/search_form.php:407
3296
- #: app/features/mec/meta_boxes/search_form.php:468
3297
- #: app/features/mec/meta_boxes/search_form.php:529
3298
- #: app/features/mec/meta_boxes/search_form.php:590
3299
  msgid "Text Input"
3300
  msgstr ""
3301
 
3302
- #: app/features/mec/meta_boxes/search_form.php:598
3303
- #: app/features/mec/meta_boxes/search_form.php:604
3304
- #: app/features/mec/meta_boxes/search_form.php:610
3305
- #: app/features/mec/meta_boxes/search_form.php:616
3306
- #: app/features/mec/meta_boxes/search_form.php:622
3307
- #: app/features/mec/meta_boxes/search_form.php:628
3308
  msgid "No Search Options"
3309
  msgstr ""
3310
 
3311
- #: app/features/mec/notifications.php:55 app/features/mec/notifications.php:151
3312
  msgid "Booking Notification"
3313
  msgstr ""
3314
 
3315
- #: app/features/mec/notifications.php:61 app/features/mec/notifications.php:216
3316
  msgid "Booking Verification"
3317
  msgstr ""
3318
 
3319
- #: app/features/mec/notifications.php:67 app/features/mec/notifications.php:268
3320
  #: app/features/mec/settings.php:1409
3321
  msgid "Booking Confirmation"
3322
  msgstr ""
3323
 
3324
- #: app/features/mec/notifications.php:73 app/features/mec/notifications.php:320
3325
  msgid "Booking Cancellation"
3326
  msgstr ""
3327
 
3328
- #: app/features/mec/notifications.php:79 app/features/mec/notifications.php:387
3329
  msgid "Admin Notification"
3330
  msgstr ""
3331
 
3332
- #: app/features/mec/notifications.php:85 app/features/mec/notifications.php:447
3333
  #: app/libraries/notifications.php:354
3334
  msgid "Booking Reminder"
3335
  msgstr ""
3336
 
3337
- #: app/features/mec/notifications.php:91 app/features/mec/notifications.php:522
3338
  #: app/features/mec/support-page.php:80
3339
  msgid "New Event"
3340
  msgstr ""
3341
 
3342
- #: app/features/mec/notifications.php:155
3343
  msgid "Enable booking notification"
3344
  msgstr ""
3345
 
3346
- #: app/features/mec/notifications.php:159
3347
  msgid "It sends to attendee after booking for notifying him/her."
3348
  msgstr ""
3349
 
3350
- #: app/features/mec/notifications.php:161
3351
- #: app/features/mec/notifications.php:219
3352
- #: app/features/mec/notifications.php:271
3353
- #: app/features/mec/notifications.php:330
3354
- #: app/features/mec/notifications.php:397
3355
- #: app/features/mec/notifications.php:460
3356
- #: app/features/mec/notifications.php:532
3357
  msgid "Email Subject"
3358
  msgstr ""
3359
 
3360
- #: app/features/mec/notifications.php:165
3361
- #: app/features/mec/notifications.php:169
3362
- #: app/features/mec/notifications.php:223
3363
- #: app/features/mec/notifications.php:227
3364
- #: app/features/mec/notifications.php:275
3365
- #: app/features/mec/notifications.php:279
3366
- #: app/features/mec/notifications.php:334
3367
- #: app/features/mec/notifications.php:338
3368
- #: app/features/mec/notifications.php:401
3369
- #: app/features/mec/notifications.php:405
3370
- #: app/features/mec/notifications.php:464
3371
- #: app/features/mec/notifications.php:468
3372
- #: app/features/mec/notifications.php:479
3373
- #: app/features/mec/notifications.php:536
3374
- #: app/features/mec/notifications.php:540
3375
  msgid "Custom Recipients"
3376
  msgstr ""
3377
 
3378
- #: app/features/mec/notifications.php:170
3379
- #: app/features/mec/notifications.php:228
3380
- #: app/features/mec/notifications.php:280
3381
- #: app/features/mec/notifications.php:339
3382
- #: app/features/mec/notifications.php:406
3383
- #: app/features/mec/notifications.php:469
3384
- #: app/features/mec/notifications.php:480
3385
- #: app/features/mec/notifications.php:541
3386
  msgid "Insert comma separated emails for multiple recipients."
3387
  msgstr ""
3388
 
3389
- #: app/features/mec/notifications.php:177
3390
- #: app/features/mec/notifications.php:350
3391
- #: app/features/mec/notifications.php:413
3392
- msgid "Send the email to event organizer"
3393
- msgstr ""
3394
-
3395
  #: app/features/mec/notifications.php:180
3396
- #: app/features/mec/notifications.php:234
3397
- #: app/features/mec/notifications.php:286
3398
- #: app/features/mec/notifications.php:357
3399
  #: app/features/mec/notifications.php:416
3400
- #: app/features/mec/notifications.php:486
3401
- #: app/features/mec/notifications.php:547
3402
- msgid "Email Content"
3403
  msgstr ""
3404
 
3405
  #: app/features/mec/notifications.php:183
@@ -3409,16 +3437,7 @@ msgstr ""
3409
  #: app/features/mec/notifications.php:419
3410
  #: app/features/mec/notifications.php:489
3411
  #: app/features/mec/notifications.php:550
3412
- msgid "You can use following placeholders"
3413
- msgstr ""
3414
-
3415
- #: app/features/mec/notifications.php:185
3416
- #: app/features/mec/notifications.php:239
3417
- #: app/features/mec/notifications.php:291
3418
- #: app/features/mec/notifications.php:362
3419
- #: app/features/mec/notifications.php:421
3420
- #: app/features/mec/notifications.php:491
3421
- msgid "First name of attendee"
3422
  msgstr ""
3423
 
3424
  #: app/features/mec/notifications.php:186
@@ -3427,16 +3446,8 @@ msgstr ""
3427
  #: app/features/mec/notifications.php:363
3428
  #: app/features/mec/notifications.php:422
3429
  #: app/features/mec/notifications.php:492
3430
- msgid "Last name of attendee"
3431
- msgstr ""
3432
-
3433
- #: app/features/mec/notifications.php:187
3434
- #: app/features/mec/notifications.php:241
3435
- #: app/features/mec/notifications.php:293
3436
- #: app/features/mec/notifications.php:364
3437
- #: app/features/mec/notifications.php:423
3438
- #: app/features/mec/notifications.php:493
3439
- msgid "Email of attendee"
3440
  msgstr ""
3441
 
3442
  #: app/features/mec/notifications.php:188
@@ -3445,7 +3456,7 @@ msgstr ""
3445
  #: app/features/mec/notifications.php:365
3446
  #: app/features/mec/notifications.php:424
3447
  #: app/features/mec/notifications.php:494
3448
- msgid "Booked date of event"
3449
  msgstr ""
3450
 
3451
  #: app/features/mec/notifications.php:189
@@ -3454,7 +3465,7 @@ msgstr ""
3454
  #: app/features/mec/notifications.php:366
3455
  #: app/features/mec/notifications.php:425
3456
  #: app/features/mec/notifications.php:495
3457
- msgid "Booked time of event"
3458
  msgstr ""
3459
 
3460
  #: app/features/mec/notifications.php:190
@@ -3463,7 +3474,7 @@ msgstr ""
3463
  #: app/features/mec/notifications.php:367
3464
  #: app/features/mec/notifications.php:426
3465
  #: app/features/mec/notifications.php:496
3466
- msgid "Booking Price"
3467
  msgstr ""
3468
 
3469
  #: app/features/mec/notifications.php:191
@@ -3472,8 +3483,7 @@ msgstr ""
3472
  #: app/features/mec/notifications.php:368
3473
  #: app/features/mec/notifications.php:427
3474
  #: app/features/mec/notifications.php:497
3475
- #: app/features/mec/notifications.php:556
3476
- msgid "Your website title"
3477
  msgstr ""
3478
 
3479
  #: app/features/mec/notifications.php:192
@@ -3482,8 +3492,7 @@ msgstr ""
3482
  #: app/features/mec/notifications.php:369
3483
  #: app/features/mec/notifications.php:428
3484
  #: app/features/mec/notifications.php:498
3485
- #: app/features/mec/notifications.php:557
3486
- msgid "Your website URL"
3487
  msgstr ""
3488
 
3489
  #: app/features/mec/notifications.php:193
@@ -3492,8 +3501,7 @@ msgstr ""
3492
  #: app/features/mec/notifications.php:370
3493
  #: app/features/mec/notifications.php:429
3494
  #: app/features/mec/notifications.php:499
3495
- #: app/features/mec/notifications.php:558
3496
- msgid "Your website description"
3497
  msgstr ""
3498
 
3499
  #: app/features/mec/notifications.php:194
@@ -3502,7 +3510,8 @@ msgstr ""
3502
  #: app/features/mec/notifications.php:371
3503
  #: app/features/mec/notifications.php:430
3504
  #: app/features/mec/notifications.php:500
3505
- msgid "Event title"
 
3506
  msgstr ""
3507
 
3508
  #: app/features/mec/notifications.php:195
@@ -3511,7 +3520,8 @@ msgstr ""
3511
  #: app/features/mec/notifications.php:372
3512
  #: app/features/mec/notifications.php:431
3513
  #: app/features/mec/notifications.php:501
3514
- msgid "Event link"
 
3515
  msgstr ""
3516
 
3517
  #: app/features/mec/notifications.php:196
@@ -3520,7 +3530,8 @@ msgstr ""
3520
  #: app/features/mec/notifications.php:373
3521
  #: app/features/mec/notifications.php:432
3522
  #: app/features/mec/notifications.php:502
3523
- msgid "Organizer name of booked event"
 
3524
  msgstr ""
3525
 
3526
  #: app/features/mec/notifications.php:197
@@ -3529,7 +3540,7 @@ msgstr ""
3529
  #: app/features/mec/notifications.php:374
3530
  #: app/features/mec/notifications.php:433
3531
  #: app/features/mec/notifications.php:503
3532
- msgid "Organizer tel of booked event"
3533
  msgstr ""
3534
 
3535
  #: app/features/mec/notifications.php:198
@@ -3538,7 +3549,7 @@ msgstr ""
3538
  #: app/features/mec/notifications.php:375
3539
  #: app/features/mec/notifications.php:434
3540
  #: app/features/mec/notifications.php:504
3541
- msgid "Organizer email of booked event"
3542
  msgstr ""
3543
 
3544
  #: app/features/mec/notifications.php:199
@@ -3547,7 +3558,7 @@ msgstr ""
3547
  #: app/features/mec/notifications.php:376
3548
  #: app/features/mec/notifications.php:435
3549
  #: app/features/mec/notifications.php:505
3550
- msgid "Location name of booked event"
3551
  msgstr ""
3552
 
3553
  #: app/features/mec/notifications.php:200
@@ -3556,104 +3567,131 @@ msgstr ""
3556
  #: app/features/mec/notifications.php:377
3557
  #: app/features/mec/notifications.php:436
3558
  #: app/features/mec/notifications.php:506
3559
- msgid "Location address of booked event"
3560
  msgstr ""
3561
 
3562
  #: app/features/mec/notifications.php:201
3563
- #: app/features/mec/notifications.php:379
3564
- #: app/features/mec/notifications.php:438
3565
- msgid "Full Attendee info such as booking form data, name, email etc."
 
 
 
3566
  msgstr ""
3567
 
3568
  #: app/features/mec/notifications.php:202
 
3569
  #: app/features/mec/notifications.php:308
 
 
3570
  #: app/features/mec/notifications.php:508
3571
- msgid "Invoice Link"
3572
  msgstr ""
3573
 
3574
  #: app/features/mec/notifications.php:203
3575
- #: app/features/mec/notifications.php:256
3576
  #: app/features/mec/notifications.php:309
3577
  #: app/features/mec/notifications.php:380
3578
  #: app/features/mec/notifications.php:439
3579
  #: app/features/mec/notifications.php:509
3580
- msgid "Total Attendees"
3581
  msgstr ""
3582
 
3583
  #: app/features/mec/notifications.php:204
3584
- #: app/features/mec/notifications.php:257
3585
- #: app/features/mec/notifications.php:310
3586
- #: app/features/mec/notifications.php:510
3587
- msgid "Ticket name"
3588
  msgstr ""
3589
 
3590
  #: app/features/mec/notifications.php:205
3591
- #: app/features/mec/notifications.php:258
3592
  #: app/features/mec/notifications.php:311
3593
  #: app/features/mec/notifications.php:511
3594
- msgid "Ticket time"
3595
  msgstr ""
3596
 
3597
  #: app/features/mec/notifications.php:206
3598
  #: app/features/mec/notifications.php:259
3599
  #: app/features/mec/notifications.php:312
 
 
3600
  #: app/features/mec/notifications.php:512
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3601
  msgid "Download ICS file"
3602
  msgstr ""
3603
 
3604
- #: app/features/mec/notifications.php:217
3605
  msgid "It sends to attendee email for verifying their booking/email."
3606
  msgstr ""
3607
 
3608
- #: app/features/mec/notifications.php:255
3609
  msgid "Email/Booking verification link."
3610
  msgstr ""
3611
 
3612
- #: app/features/mec/notifications.php:269
3613
  msgid "It sends to attendee after confirming the booking by admin."
3614
  msgstr ""
3615
 
3616
- #: app/features/mec/notifications.php:307
3617
- #: app/features/mec/notifications.php:507
3618
  msgid "Booking cancellation link."
3619
  msgstr ""
3620
 
3621
- #: app/features/mec/notifications.php:324
3622
  msgid "Enable cancellation notification"
3623
  msgstr ""
3624
 
3625
- #: app/features/mec/notifications.php:328
3626
  msgid ""
3627
  "It sends to selected recipients after booking cancellation for notifying "
3628
  "them."
3629
  msgstr ""
3630
 
3631
- #: app/features/mec/notifications.php:346
3632
  msgid "Send the email to admin"
3633
  msgstr ""
3634
 
3635
- #: app/features/mec/notifications.php:354
3636
  msgid "Send the email to booking user"
3637
  msgstr ""
3638
 
3639
- #: app/features/mec/notifications.php:378
3640
- #: app/features/mec/notifications.php:437
3641
  msgid "Admin booking management link."
3642
  msgstr ""
3643
 
3644
- #: app/features/mec/notifications.php:391
3645
  msgid "Enable admin notification"
3646
  msgstr ""
3647
 
3648
- #: app/features/mec/notifications.php:395
3649
  msgid "It sends to admin to notify him/her that a new booking received."
3650
  msgstr ""
3651
 
3652
- #: app/features/mec/notifications.php:451
3653
  msgid "Enable booking reminder notification"
3654
  msgstr ""
3655
 
3656
- #: app/features/mec/notifications.php:457
3657
  #, php-format
3658
  msgid ""
3659
  "Set a cronjob to call %s file once per day otherwise it won't send the "
@@ -3661,52 +3699,52 @@ msgid ""
3661
  "send the reminders multiple times."
3662
  msgstr ""
3663
 
3664
- #: app/features/mec/notifications.php:457
3665
  msgid "only once per day"
3666
  msgstr ""
3667
 
3668
- #: app/features/mec/notifications.php:475
3669
  msgid "Days"
3670
  msgstr ""
3671
 
3672
- #: app/features/mec/notifications.php:526
3673
  msgid "Enable new event notification"
3674
  msgstr ""
3675
 
3676
- #: app/features/mec/notifications.php:530
3677
  msgid ""
3678
  "It sends after adding a new event from frontend event submission or from "
3679
  "website backend."
3680
  msgstr ""
3681
 
3682
- #: app/features/mec/notifications.php:552
3683
  msgid "Title of event"
3684
  msgstr ""
3685
 
3686
- #: app/features/mec/notifications.php:553
3687
  msgid "Link of event"
3688
  msgstr ""
3689
 
3690
- #: app/features/mec/notifications.php:554
3691
  msgid "Status of event"
3692
  msgstr ""
3693
 
3694
- #: app/features/mec/notifications.php:555 app/features/mec/settings.php:1249
3695
  #: app/features/mec/settings.php:1253
3696
  msgid "Event Note"
3697
  msgstr ""
3698
 
3699
- #: app/features/mec/notifications.php:559
3700
  msgid "Admin events management link."
3701
  msgstr ""
3702
 
3703
- #: app/features/mec/notifications.php:661
3704
- #: app/features/mec/notifications.php:683 app/features/mec/settings.php:1786
3705
- #: app/features/mec/settings.php:1808 app/libraries/main.php:4570
3706
  msgid "Verified"
3707
  msgstr ""
3708
 
3709
- #: app/features/mec/notifications.php:685 app/features/mec/settings.php:1810
3710
  msgid "Please Refresh Page"
3711
  msgstr ""
3712
 
@@ -3829,7 +3867,7 @@ msgid ""
3829
  msgstr ""
3830
 
3831
  #: app/features/mec/settings.php:354 app/features/mec/settings.php:364
3832
- #: app/libraries/main.php:4388
3833
  msgid "Weekdays"
3834
  msgstr ""
3835
 
@@ -4019,21 +4057,21 @@ msgid ""
4019
  msgstr ""
4020
 
4021
  #: app/features/mec/settings.php:702
4022
- msgid "Disable Gutenberg"
4023
  msgstr ""
4024
 
4025
  #: app/features/mec/settings.php:705
4026
- msgid "Disable Gutenberg Page Builder."
4027
  msgstr ""
4028
 
4029
  #: app/features/mec/settings.php:709
4030
- msgid "Gutenberg"
4031
  msgstr ""
4032
 
4033
  #: app/features/mec/settings.php:710
4034
  msgid ""
4035
- "If Check it, can disable the Gutenberg page builder, So if you want to use "
4036
- "the Gutenberg keep unchecking the checkbox."
4037
  msgstr ""
4038
 
4039
  #: app/features/mec/settings.php:716 app/features/mec/settings.php:723
@@ -4541,8 +4579,8 @@ msgid ""
4541
  "styles."
4542
  msgstr ""
4543
 
4544
- #: app/features/mec/styling.php:10 app/features/mec/styling.php:237
4545
- #: app/features/mec/styling.php:263
4546
  msgid "Default Font"
4547
  msgstr ""
4548
 
@@ -4562,47 +4600,53 @@ msgstr ""
4562
  msgid "Custom Color Skin"
4563
  msgstr ""
4564
 
4565
- #: app/features/mec/styling.php:191
 
 
 
 
 
 
4566
  msgid "Advanced Color Options (shortcodes)"
4567
  msgstr ""
4568
 
4569
- #: app/features/mec/styling.php:203
4570
  msgid "Title Hover"
4571
  msgstr ""
4572
 
4573
- #: app/features/mec/styling.php:220
4574
  msgid "Typography"
4575
  msgstr ""
4576
 
4577
- #: app/features/mec/styling.php:222
4578
  msgid "Heading (Events Title) Font Family"
4579
  msgstr ""
4580
 
4581
- #: app/features/mec/styling.php:248
4582
  msgid "Paragraph Font Family"
4583
  msgstr ""
4584
 
4585
- #: app/features/mec/styling.php:275 app/features/mec/styling.php:281
4586
  msgid "Disable Google Fonts"
4587
  msgstr ""
4588
 
4589
- #: app/features/mec/styling.php:282
4590
  msgid "To be GDPR compliant you may need to disable Google fonts!"
4591
  msgstr ""
4592
 
4593
- #: app/features/mec/styling.php:291
4594
  msgid "Container Width"
4595
  msgstr ""
4596
 
4597
- #: app/features/mec/styling.php:293 app/features/mec/styling.php:298
4598
  msgid "Desktop Normal Screens"
4599
  msgstr ""
4600
 
4601
- #: app/features/mec/styling.php:299 app/features/mec/styling.php:312
4602
  msgid "You can enter your theme container size in this field"
4603
  msgstr ""
4604
 
4605
- #: app/features/mec/styling.php:306 app/features/mec/styling.php:311
4606
  msgid "Desktop Large Screens"
4607
  msgstr ""
4608
 
@@ -4948,12 +4992,12 @@ msgid "How to add/manage shortcodes?"
4948
  msgstr ""
4949
 
4950
  #: app/features/organizers.php:105 app/features/organizers.php:147
4951
- #: app/features/speakers.php:176
4952
  msgid "Insert organizer phone number."
4953
  msgstr ""
4954
 
4955
  #: app/features/organizers.php:113 app/features/organizers.php:151
4956
- #: app/features/speakers.php:180
4957
  msgid "Insert organizer email address."
4958
  msgstr ""
4959
 
@@ -5007,7 +5051,7 @@ msgstr ""
5007
  msgid "eg. https://webnus.net"
5008
  msgstr ""
5009
 
5010
- #: app/features/organizers.php:306 app/libraries/main.php:4412
5011
  #: app/skins/single.php:295
5012
  msgid "Other Organizers"
5013
  msgstr ""
@@ -5026,11 +5070,11 @@ msgstr ""
5026
  msgid "#"
5027
  msgstr ""
5028
 
5029
- #: app/features/profile/profile.php:34 app/libraries/main.php:2525
5030
  msgid "Status"
5031
  msgstr ""
5032
 
5033
- #: app/features/profile/profile.php:37 app/libraries/main.php:1669
5034
  msgid "Attendees"
5035
  msgstr ""
5036
 
@@ -5043,8 +5087,8 @@ msgstr ""
5043
  msgid "<i class=\"mec-sl-eye\"></i> %s"
5044
  msgstr ""
5045
 
5046
- #: app/features/profile/profile.php:96 app/libraries/main.php:1683
5047
- #: app/libraries/main.php:4410
5048
  msgid "Ticket"
5049
  msgstr ""
5050
 
@@ -5056,45 +5100,44 @@ msgstr ""
5056
  msgid "No bookings found!"
5057
  msgstr ""
5058
 
5059
- #: app/features/speakers.php:103 app/features/speakers.php:171
5060
- #: app/features/speakers.php:243
5061
  msgid "Job Title"
5062
  msgstr ""
5063
 
5064
- #: app/features/speakers.php:106 app/features/speakers.php:172
5065
  msgid "Insert speaker job title."
5066
  msgstr ""
5067
 
5068
- #: app/features/speakers.php:114
5069
  msgid "Insert speaker phone number."
5070
  msgstr ""
5071
 
5072
- #: app/features/speakers.php:122
5073
  msgid "Insert speaker email address."
5074
  msgstr ""
5075
 
5076
- #: app/features/speakers.php:127 app/features/speakers.php:183
5077
  msgid "Facebook Page"
5078
  msgstr ""
5079
 
5080
- #: app/features/speakers.php:130 app/features/speakers.php:184
5081
  msgid "Insert URL of Facebook Page"
5082
  msgstr ""
5083
 
5084
- #: app/features/speakers.php:135 app/features/speakers.php:187
5085
- #: app/libraries/main.php:1083
5086
- msgid "Google+"
5087
  msgstr ""
5088
 
5089
- #: app/features/speakers.php:138 app/features/speakers.php:188
5090
- msgid "Insert URL of Google+"
5091
  msgstr ""
5092
 
5093
- #: app/features/speakers.php:143 app/features/speakers.php:191
5094
  msgid "Twitter Page"
5095
  msgstr ""
5096
 
5097
- #: app/features/speakers.php:146 app/features/speakers.php:192
5098
  msgid "Insert URL of Twitter Page"
5099
  msgstr ""
5100
 
@@ -5112,70 +5155,70 @@ msgstr ""
5112
  msgid "Download Invoice"
5113
  msgstr ""
5114
 
5115
- #: app/libraries/factory.php:151
5116
  msgid "M.E. Calendar"
5117
  msgstr ""
5118
 
5119
- #: app/libraries/factory.php:190
5120
  msgctxt "plugin link"
5121
  msgid "Upgrade to Pro Version"
5122
  msgstr ""
5123
 
5124
- #: app/libraries/factory.php:208
5125
  msgctxt "plugin link"
5126
  msgid "Settings"
5127
  msgstr ""
5128
 
5129
- #: app/libraries/factory.php:213
5130
  msgctxt "plugin link"
5131
  msgid "Upgrade"
5132
  msgstr ""
5133
 
5134
- #: app/libraries/factory.php:307
5135
  msgid "day"
5136
  msgstr ""
5137
 
5138
- #: app/libraries/factory.php:308 app/modules/countdown/details.php:121
5139
  #: app/skins/available_spot/tpl.php:146 app/skins/countdown/tpl.php:131
5140
  #: app/skins/countdown/tpl.php:175 app/skins/countdown/tpl.php:224
5141
  msgid "days"
5142
  msgstr ""
5143
 
5144
- #: app/libraries/factory.php:309
5145
  msgid "hour"
5146
  msgstr ""
5147
 
5148
- #: app/libraries/factory.php:310 app/modules/countdown/details.php:128
5149
  #: app/skins/available_spot/tpl.php:150 app/skins/countdown/tpl.php:137
5150
  #: app/skins/countdown/tpl.php:181 app/skins/countdown/tpl.php:230
5151
  msgid "hours"
5152
  msgstr ""
5153
 
5154
- #: app/libraries/factory.php:311
5155
  msgid "minute"
5156
  msgstr ""
5157
 
5158
- #: app/libraries/factory.php:312 app/modules/countdown/details.php:135
5159
  #: app/skins/available_spot/tpl.php:154 app/skins/countdown/tpl.php:143
5160
  #: app/skins/countdown/tpl.php:187 app/skins/countdown/tpl.php:236
5161
  msgid "minutes"
5162
  msgstr ""
5163
 
5164
- #: app/libraries/factory.php:313
5165
  msgid "second"
5166
  msgstr ""
5167
 
5168
- #: app/libraries/factory.php:314 app/modules/countdown/details.php:142
5169
  #: app/skins/available_spot/tpl.php:158 app/skins/countdown/tpl.php:149
5170
  #: app/skins/countdown/tpl.php:193 app/skins/countdown/tpl.php:242
5171
  msgid "seconds"
5172
  msgstr ""
5173
 
5174
- #: app/libraries/factory.php:357
5175
  msgid "MEC Single Sidebar"
5176
  msgstr ""
5177
 
5178
- #: app/libraries/factory.php:358
5179
  msgid "Custom sidebar for single and modal page of MEC."
5180
  msgstr ""
5181
 
@@ -5183,38 +5226,38 @@ msgstr ""
5183
  msgid "There is no excerpt because this is a protected post."
5184
  msgstr ""
5185
 
5186
- #: app/libraries/main.php:330 app/libraries/main.php:1202
5187
- #: app/libraries/main.php:1227
5188
  msgid "Grid View"
5189
  msgstr ""
5190
 
5191
- #: app/libraries/main.php:331 app/libraries/main.php:1203
5192
- #: app/libraries/main.php:1228
5193
  msgid "Agenda View"
5194
  msgstr ""
5195
 
5196
- #: app/libraries/main.php:332 app/libraries/main.php:1194
5197
- #: app/libraries/main.php:1219
5198
  msgid "Full Calendar"
5199
  msgstr ""
5200
 
5201
- #: app/libraries/main.php:334 app/libraries/main.php:1196
5202
- #: app/libraries/main.php:1221
5203
  msgid "Calendar/Monthly View"
5204
  msgstr ""
5205
 
5206
- #: app/libraries/main.php:337 app/libraries/main.php:1199
5207
- #: app/libraries/main.php:1224
5208
  msgid "Timetable View"
5209
  msgstr ""
5210
 
5211
- #: app/libraries/main.php:338 app/libraries/main.php:1200
5212
- #: app/libraries/main.php:1225
5213
  msgid "Masonry View"
5214
  msgstr ""
5215
 
5216
- #: app/libraries/main.php:339 app/libraries/main.php:1204
5217
- #: app/libraries/main.php:1229
5218
  msgid "Map View"
5219
  msgstr ""
5220
 
@@ -5238,43 +5281,43 @@ msgstr ""
5238
  msgid "Slider View"
5239
  msgstr ""
5240
 
5241
- #: app/libraries/main.php:381 app/libraries/main.php:4390
5242
  msgid "SU"
5243
  msgstr ""
5244
 
5245
- #: app/libraries/main.php:382 app/libraries/main.php:4391
5246
  msgid "MO"
5247
  msgstr ""
5248
 
5249
- #: app/libraries/main.php:383 app/libraries/main.php:4392
5250
  msgid "TU"
5251
  msgstr ""
5252
 
5253
- #: app/libraries/main.php:384 app/libraries/main.php:4393
5254
  msgid "WE"
5255
  msgstr ""
5256
 
5257
- #: app/libraries/main.php:385 app/libraries/main.php:4394
5258
  msgid "TH"
5259
  msgstr ""
5260
 
5261
- #: app/libraries/main.php:386 app/libraries/main.php:4395
5262
  msgid "FR"
5263
  msgstr ""
5264
 
5265
- #: app/libraries/main.php:387 app/libraries/main.php:4396
5266
  msgid "SA"
5267
  msgstr ""
5268
 
5269
- #: app/libraries/main.php:1041
5270
  msgid "Events at this location"
5271
  msgstr ""
5272
 
5273
- #: app/libraries/main.php:1041
5274
  msgid "Event at this location"
5275
  msgstr ""
5276
 
5277
- #: app/libraries/main.php:1082
5278
  msgid "Facebook"
5279
  msgstr ""
5280
 
@@ -5282,11 +5325,11 @@ msgstr ""
5282
  msgid "Twitter"
5283
  msgstr ""
5284
 
5285
- #: app/libraries/main.php:1085 app/libraries/main.php:1150
5286
  msgid "Linkedin"
5287
  msgstr ""
5288
 
5289
- #: app/libraries/main.php:1086 app/libraries/main.php:1183
5290
  msgid "VK"
5291
  msgstr ""
5292
 
@@ -5295,254 +5338,254 @@ msgid "Share on Facebook"
5295
  msgstr ""
5296
 
5297
  #: app/libraries/main.php:1120
5298
- msgid "Google Plus"
5299
- msgstr ""
5300
-
5301
- #: app/libraries/main.php:1135
5302
  msgid "Tweet"
5303
  msgstr ""
5304
 
5305
- #: app/libraries/main.php:1205
5306
  msgid "Custom Shortcode"
5307
  msgstr ""
5308
 
5309
- #: app/libraries/main.php:1564
5310
  msgid "Your booking successfully verified."
5311
  msgstr ""
5312
 
5313
- #: app/libraries/main.php:1565
5314
  msgid "Your booking cannot verify!"
5315
  msgstr ""
5316
 
5317
- #: app/libraries/main.php:1577
5318
  msgid "Your booking successfully canceled."
5319
  msgstr ""
5320
 
5321
- #: app/libraries/main.php:1578
5322
  msgid "Your booking cannot be canceled."
5323
  msgstr ""
5324
 
5325
- #: app/libraries/main.php:1582
5326
  msgid "You canceled the payment successfully."
5327
  msgstr ""
5328
 
5329
- #: app/libraries/main.php:1586
5330
  msgid "You returned from payment gateway successfully."
5331
  msgstr ""
5332
 
5333
- #: app/libraries/main.php:1610
5334
  msgid "Cannot find the booking!"
5335
  msgstr ""
5336
 
5337
- #: app/libraries/main.php:1610
5338
  msgid "Booking is invalid."
5339
  msgstr ""
5340
 
5341
- #: app/libraries/main.php:1639
5342
  #, php-format
5343
  msgid "%s Invoice"
5344
  msgstr ""
5345
 
5346
- #: app/libraries/main.php:1660
5347
  msgid "Transaction ID"
5348
  msgstr ""
5349
 
5350
- #: app/libraries/main.php:1713
5351
  msgid "Billing"
5352
  msgstr ""
5353
 
5354
- #: app/libraries/main.php:1724
5355
  msgid "Total"
5356
  msgstr ""
5357
 
5358
- #: app/libraries/main.php:1757
5359
  msgid "Security nonce is not valid."
5360
  msgstr ""
5361
 
5362
- #: app/libraries/main.php:1757 app/libraries/main.php:1789
5363
  msgid "iCal export stopped!"
5364
  msgstr ""
5365
 
5366
- #: app/libraries/main.php:1789
5367
  msgid "Request is not valid."
5368
  msgstr ""
5369
 
5370
- #: app/libraries/main.php:2109 app/libraries/main.php:2139
5371
- #: app/libraries/main.php:2168 app/libraries/main.php:2198
5372
- #: app/libraries/main.php:2227 app/libraries/main.php:2256
5373
- #: app/libraries/main.php:2285 app/libraries/main.php:2314
5374
- #: app/libraries/main.php:2343 app/libraries/main.php:2367
5375
- #: app/libraries/main.php:2411 app/libraries/main.php:2455
5376
- #: app/libraries/main.php:2502 app/libraries/main.php:2548
5377
  msgid "Sort"
5378
  msgstr ""
5379
 
5380
- #: app/libraries/main.php:2115 app/libraries/main.php:2145
5381
- #: app/libraries/main.php:2174 app/libraries/main.php:2204
5382
- #: app/libraries/main.php:2233 app/libraries/main.php:2262
5383
- #: app/libraries/main.php:2291 app/libraries/main.php:2320
5384
- #: app/libraries/main.php:2373 app/libraries/main.php:2417
5385
- #: app/libraries/main.php:2461 app/libraries/main.php:2508
5386
  msgid "Required Field"
5387
  msgstr ""
5388
 
5389
- #: app/libraries/main.php:2121 app/libraries/main.php:2151
5390
- #: app/libraries/main.php:2180 app/libraries/main.php:2210
5391
- #: app/libraries/main.php:2239 app/libraries/main.php:2268
5392
- #: app/libraries/main.php:2297 app/libraries/main.php:2326
5393
- #: app/libraries/main.php:2379 app/libraries/main.php:2423
5394
- #: app/libraries/main.php:2467 app/libraries/main.php:2514
5395
  msgid "Insert a label for this field"
5396
  msgstr ""
5397
 
5398
- #: app/libraries/main.php:2349
5399
  msgid "HTML and shortcode are allowed."
5400
  msgstr ""
5401
 
5402
- #: app/libraries/main.php:2392 app/libraries/main.php:2436
5403
- #: app/libraries/main.php:2480
5404
  msgid "Option"
5405
  msgstr ""
5406
 
5407
- #: app/libraries/main.php:2514
5408
  #, php-format
5409
  msgid "Instead of %s, the page title with a link will be show."
5410
  msgstr ""
5411
 
5412
- #: app/libraries/main.php:2516
5413
  msgid "Agreement Page"
5414
  msgstr ""
5415
 
5416
- #: app/libraries/main.php:2527
5417
  msgid "Checked by default"
5418
  msgstr ""
5419
 
5420
- #: app/libraries/main.php:2528
5421
  msgid "Unchecked by default"
5422
  msgstr ""
5423
 
5424
- #: app/libraries/main.php:2550
5425
  msgid "Insert a label for this option"
5426
  msgstr ""
5427
 
5428
- #: app/libraries/main.php:2565
5429
  msgid "Free"
5430
  msgstr ""
5431
 
5432
- #: app/libraries/main.php:3217
 
 
 
 
5433
  #, php-format
5434
  msgid "Copy of %s"
5435
  msgstr ""
5436
 
5437
- #: app/libraries/main.php:3880
5438
  msgid "Booked an event."
5439
  msgstr ""
5440
 
5441
- #: app/libraries/main.php:3921
5442
  #, php-format
5443
  msgid "%s booked %s event."
5444
  msgstr ""
5445
 
5446
- #: app/libraries/main.php:4373
5447
  msgid "Taxonomies"
5448
  msgstr ""
5449
 
5450
- #: app/libraries/main.php:4375
5451
  msgid "Category Plural Label"
5452
  msgstr ""
5453
 
5454
- #: app/libraries/main.php:4376
5455
  msgid "Category Singular Label"
5456
  msgstr ""
5457
 
5458
- #: app/libraries/main.php:4377
5459
  msgid "Label Plural Label"
5460
  msgstr ""
5461
 
5462
- #: app/libraries/main.php:4378
5463
  msgid "Label Singular Label"
5464
  msgstr ""
5465
 
5466
- #: app/libraries/main.php:4378
5467
  msgid "label"
5468
  msgstr ""
5469
 
5470
- #: app/libraries/main.php:4379
5471
  msgid "Location Plural Label"
5472
  msgstr ""
5473
 
5474
- #: app/libraries/main.php:4380
5475
  msgid "Location Singular Label"
5476
  msgstr ""
5477
 
5478
- #: app/libraries/main.php:4381
5479
  msgid "Organizer Plural Label"
5480
  msgstr ""
5481
 
5482
- #: app/libraries/main.php:4382
5483
  msgid "Organizer Singular Label"
5484
  msgstr ""
5485
 
5486
- #: app/libraries/main.php:4383
5487
  msgid "Speaker Plural Label"
5488
  msgstr ""
5489
 
5490
- #: app/libraries/main.php:4384
5491
  msgid "Speaker Singular Label"
5492
  msgstr ""
5493
 
5494
- #: app/libraries/main.php:4390
5495
  msgid "Sunday abbreviation"
5496
  msgstr ""
5497
 
5498
- #: app/libraries/main.php:4391
5499
  msgid "Monday abbreviation"
5500
  msgstr ""
5501
 
5502
- #: app/libraries/main.php:4392
5503
  msgid "Tuesday abbreviation"
5504
  msgstr ""
5505
 
5506
- #: app/libraries/main.php:4393
5507
  msgid "Wednesday abbreviation"
5508
  msgstr ""
5509
 
5510
- #: app/libraries/main.php:4394
5511
  msgid "Thursday abbreviation"
5512
  msgstr ""
5513
 
5514
- #: app/libraries/main.php:4395
5515
  msgid "Friday abbreviation"
5516
  msgstr ""
5517
 
5518
- #: app/libraries/main.php:4396
5519
  msgid "Saturday abbreviation"
5520
  msgstr ""
5521
 
5522
- #: app/libraries/main.php:4400
5523
  msgid "Others"
5524
  msgstr ""
5525
 
5526
- #: app/libraries/main.php:4402
5527
  msgid "Booking Success Message"
5528
  msgstr ""
5529
 
5530
- #: app/libraries/main.php:4402
5531
  msgid ""
5532
  "Thanks for your booking. Your tickets booked, booking verification might be "
5533
  "needed, please check your email."
5534
  msgstr ""
5535
 
5536
- #: app/libraries/main.php:4403 app/widgets/single.php:131
5537
  msgid "Register Button"
5538
  msgstr ""
5539
 
5540
- #: app/libraries/main.php:4403 app/skins/available_spot/tpl.php:204
5541
  #: app/skins/carousel/render.php:148 app/skins/carousel/render.php:175
5542
  #: app/skins/grid/render.php:116 app/skins/grid/render.php:151
5543
  #: app/skins/grid/render.php:188 app/skins/grid/render.php:216
5544
  #: app/skins/list/render.php:102 app/skins/list/render.php:185
5545
- #: app/skins/masonry/render.php:143 app/skins/single/default.php:229
5546
  #: app/skins/single/default.php:231 app/skins/single/default.php:440
5547
  #: app/skins/single/default.php:442 app/skins/single/m1.php:126
5548
  #: app/skins/single/m1.php:128 app/skins/single/m2.php:58
@@ -5553,70 +5596,70 @@ msgstr ""
5553
  msgid "REGISTER"
5554
  msgstr ""
5555
 
5556
- #: app/libraries/main.php:4404
5557
  msgid "View Detail Button"
5558
  msgstr ""
5559
 
5560
- #: app/libraries/main.php:4404 app/skins/carousel/render.php:148
5561
  #: app/skins/carousel/render.php:175 app/skins/grid/render.php:116
5562
  #: app/skins/grid/render.php:151 app/skins/grid/render.php:188
5563
  #: app/skins/grid/render.php:216 app/skins/list/render.php:102
5564
- #: app/skins/list/render.php:185 app/skins/masonry/render.php:143
5565
  #: app/skins/slider/render.php:109 app/skins/slider/render.php:154
5566
  #: app/skins/slider/render.php:198 app/skins/slider/render.php:243
5567
  #: app/skins/slider/render.php:299
5568
  msgid "View Detail"
5569
  msgstr ""
5570
 
5571
- #: app/libraries/main.php:4405
5572
  msgid "Event Detail Button"
5573
  msgstr ""
5574
 
5575
- #: app/libraries/main.php:4405 app/skins/countdown/tpl.php:217
5576
  msgid "Event Detail"
5577
  msgstr ""
5578
 
5579
- #: app/libraries/main.php:4407
5580
  msgid "More Info Link"
5581
  msgstr ""
5582
 
5583
- #: app/libraries/main.php:4410
5584
  msgid "Ticket (Singular)"
5585
  msgstr ""
5586
 
5587
- #: app/libraries/main.php:4411
5588
  msgid "Tickets (Plural)"
5589
  msgstr ""
5590
 
5591
- #: app/libraries/main.php:4478
5592
  msgid "EventON"
5593
  msgstr ""
5594
 
5595
- #: app/libraries/main.php:4479
5596
  msgid "The Events Calendar"
5597
  msgstr ""
5598
 
5599
- #: app/libraries/main.php:4480
5600
  msgid "Events Schedule WP Plugin"
5601
  msgstr ""
5602
 
5603
- #: app/libraries/main.php:4481
5604
  msgid "Calendarize It"
5605
  msgstr ""
5606
 
5607
- #: app/libraries/main.php:4555
5608
  msgid "Confirmed"
5609
  msgstr ""
5610
 
5611
- #: app/libraries/main.php:4556
5612
  msgid "Rejected"
5613
  msgstr ""
5614
 
5615
- #: app/libraries/main.php:4557
5616
  msgid "Pending"
5617
  msgstr ""
5618
 
5619
- #: app/libraries/main.php:4572
5620
  msgid "Waiting"
5621
  msgstr ""
5622
 
@@ -5645,9 +5688,9 @@ msgid "A new event is added."
5645
  msgstr ""
5646
 
5647
  #: app/libraries/notifications.php:535 app/libraries/render.php:436
5648
- #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:97
5649
  #: app/skins/single/default.php:83 app/skins/single/default.php:294
5650
- #: app/skins/single/m1.php:34 app/skins/single/modern.php:183
5651
  msgid "All of the day"
5652
  msgstr ""
5653
 
@@ -5675,7 +5718,7 @@ msgstr ""
5675
  msgid "Skin controller does not exist."
5676
  msgstr ""
5677
 
5678
- #: app/libraries/skins.php:926
5679
  msgid "Ignore month and years"
5680
  msgstr ""
5681
 
@@ -5744,11 +5787,11 @@ msgstr ""
5744
  msgid "The event is ongoing."
5745
  msgstr ""
5746
 
5747
- #: app/modules/googlemap/details.php:95
5748
  msgid "Address from ..."
5749
  msgstr ""
5750
 
5751
- #: app/modules/googlemap/details.php:99
5752
  msgid "Get Directions"
5753
  msgstr ""
5754
 
@@ -5775,21 +5818,21 @@ msgstr ""
5775
  msgid "Time: %s"
5776
  msgstr ""
5777
 
5778
- #: app/modules/next-event/details.php:78
5779
  msgid "Next Occurrence"
5780
  msgstr ""
5781
 
5782
- #: app/modules/next-event/details.php:78
5783
  msgid "Next Event"
5784
  msgstr ""
5785
 
5786
- #: app/modules/next-event/details.php:82
5787
  msgid "Go to occurrence page"
5788
  msgstr ""
5789
 
5790
- #: app/modules/next-event/details.php:91 app/skins/single/default.php:77
5791
  #: app/skins/single/default.php:288 app/skins/single/m1.php:28
5792
- #: app/skins/single/modern.php:177
5793
  msgid "Time"
5794
  msgstr ""
5795
 
@@ -5870,7 +5913,7 @@ msgstr ""
5870
  msgid "No event"
5871
  msgstr ""
5872
 
5873
- #: app/skins/full_calendar/tpl.php:74
5874
  msgid "List"
5875
  msgstr ""
5876
 
@@ -5913,12 +5956,12 @@ msgid "Speakers:"
5913
  msgstr ""
5914
 
5915
  #: app/skins/single/default.php:40 app/skins/single/m1.php:236
5916
- #: app/skins/single/m2.php:174 app/skins/single/modern.php:255
5917
  msgid "Sold out!"
5918
  msgstr ""
5919
 
5920
  #: app/skins/single/default.php:50 app/skins/single/m1.php:245
5921
- #: app/skins/single/m2.php:183 app/skins/single/modern.php:265
5922
  msgid "Tags: "
5923
  msgstr ""
5924
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: modern-events-calendar\n"
4
+ "POT-Creation-Date: 2019-06-17 11:07+0430\n"
5
+ "PO-Revision-Date: 2019-06-17 11:07+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:215
25
  msgid "Content"
26
  msgstr ""
27
 
28
+ #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:349
29
+ #: app/features/mec.php:380 app/features/mec.php:406
30
  msgid "Shortcode"
31
  msgstr ""
32
 
46
  msgid "Select Type"
47
  msgstr ""
48
 
49
+ #: app/features/colors.php:50 app/features/fes/form.php:571
50
  #: app/features/mec/settings.php:1195
51
  msgid "Event Color"
52
  msgstr ""
61
  msgid "Settings"
62
  msgstr ""
63
 
64
+ #: app/features/contextual.php:62 app/features/events.php:1701
65
  #: app/features/mec/gateways.php:33 app/features/mec/ie.php:29
66
  #: app/features/mec/messages.php:33 app/features/mec/notifications.php:32
67
  #: app/features/mec/regform.php:68 app/features/mec/regform.php:131
97
 
98
  #: app/features/contextual.php:77 app/features/mec/gateways.php:49
99
  #: app/features/mec/ie.php:45 app/features/mec/messages.php:49
100
+ #: app/features/mec/notifications.php:51 app/features/mec/regform.php:83
101
  #: app/features/mec/settings.php:233 app/features/mec/styles.php:49
102
  #: app/features/mec/styling.php:71 app/features/mec/support.php:45
103
  msgid "Notifications"
212
  msgid "Frontend Event Submission"
213
  msgstr ""
214
 
215
+ #: app/features/contextual.php:298 app/features/events.php:792
216
  #: app/features/mec/settings.php:150
217
  msgid "Exceptional Days"
218
  msgstr ""
219
 
220
+ #: app/features/contextual.php:308 app/features/events.php:273
221
  #: app/features/mec/settings.php:168 app/features/mec/settings.php:1324
222
  msgid "Booking"
223
  msgstr ""
248
  msgstr ""
249
 
250
  #: app/features/events.php:135
251
+ #: app/features/mec/meta_boxes/display_options.php:863
252
+ #: app/features/mec/meta_boxes/display_options.php:919
253
+ #: app/features/mec/meta_boxes/display_options.php:954
254
  #: app/features/profile/profile.php:28 app/skins/daily_view/tpl.php:80
255
  #: app/skins/monthly_view/tpl.php:71 app/skins/yearly_view/tpl.php:69
256
  msgid "Event"
286
  msgstr ""
287
 
288
  #: app/features/events.php:159
289
+ #: app/features/mec/meta_boxes/display_options.php:794
290
  #: app/features/mec/meta_boxes/search_form.php:31
291
  #: app/features/mec/meta_boxes/search_form.php:92
292
  #: app/features/mec/meta_boxes/search_form.php:153
293
  #: app/features/mec/meta_boxes/search_form.php:214
294
+ #: app/features/mec/meta_boxes/search_form.php:275
295
+ #: app/features/mec/meta_boxes/search_form.php:336
296
+ #: app/features/mec/meta_boxes/search_form.php:397
297
+ #: app/features/mec/meta_boxes/search_form.php:451
298
+ #: app/features/mec/meta_boxes/search_form.php:512
299
+ #: app/features/mec/meta_boxes/search_form.php:573 app/libraries/main.php:4416
300
+ #: app/libraries/skins.php:781 app/skins/single/default.php:167
301
  #: app/skins/single/default.php:378 app/skins/single/m1.php:170
302
+ #: app/skins/single/m2.php:102 app/skins/single/modern.php:110
303
  msgid "Category"
304
  msgstr ""
305
 
306
+ #: app/features/events.php:160 app/features/fes/form.php:523
307
  #: app/features/mec.php:317 app/features/mec/meta_boxes/filter.php:70
308
+ #: app/libraries/main.php:4415
309
  msgid "Categories"
310
  msgstr ""
311
 
365
  msgid "Search %s"
366
  msgstr ""
367
 
368
+ #: app/features/events.php:201 app/features/events.php:220
369
  msgid "Category Icon"
370
  msgstr ""
371
 
372
+ #: app/features/events.php:203 app/features/events.php:224
373
  msgid "Select icon"
374
  msgstr ""
375
 
376
+ #: app/features/events.php:269
377
  msgid "Event Details"
378
  msgstr ""
379
 
380
+ #: app/features/events.php:307 app/features/events.php:2558
381
+ #: app/features/events.php:2600 app/features/fes/form.php:484
382
  #: app/features/ix.php:2740 app/features/ix.php:2781
383
+ #: app/features/mec/settings.php:1171 app/libraries/main.php:4448
384
  #: app/widgets/single.php:103
385
  msgid "Event Cost"
386
  msgstr ""
387
 
388
+ #: app/features/events.php:310 app/features/fes/form.php:487
389
+ #: app/libraries/main.php:4449 app/skins/single/default.php:101
390
  #: app/skins/single/default.php:312 app/skins/single/m1.php:49
391
+ #: app/skins/single/modern.php:199
392
  msgid "Cost"
393
  msgstr ""
394
 
395
+ #: app/features/events.php:403
396
  msgid "Note for reviewer"
397
  msgstr ""
398
 
399
+ #: app/features/events.php:410
400
  msgid "Guest Data"
401
  msgstr ""
402
 
403
+ #: app/features/events.php:411 app/features/events.php:1683
404
+ #: app/features/fes/form.php:446 app/features/labels.php:177
405
  #: app/features/mec/regform.php:27 app/features/organizers.php:274
406
  #: app/features/profile/profile.php:90 app/libraries/notifications.php:667
407
  #: app/modules/booking/steps/form.php:35
408
  msgid "Name"
409
  msgstr ""
410
 
411
+ #: app/features/events.php:412 app/features/events.php:1694
412
+ #: app/features/events.php:1767 app/features/fes/form.php:442
413
  #: app/features/mec/regform.php:38 app/features/mec/regform.php:183
414
  #: app/features/organizers.php:110 app/features/organizers.php:150
415
+ #: app/features/profile/profile.php:93 app/features/speakers.php:120
416
+ #: app/features/speakers.php:180 app/libraries/main.php:1087
417
+ #: app/libraries/main.php:1153 app/libraries/main.php:2184
418
  #: app/libraries/notifications.php:668 app/modules/booking/steps/form.php:43
419
  #: app/modules/booking/steps/form.php:80 app/skins/single.php:317
420
  #: app/skins/single/default.php:209 app/skins/single/default.php:420
423
  msgid "Email"
424
  msgstr ""
425
 
426
+ #: app/features/events.php:416 app/features/fes/form.php:227
427
  msgid "Date and Time"
428
  msgstr ""
429
 
430
+ #: app/features/events.php:420 app/features/events.php:424
431
+ #: app/features/events.php:2380 app/features/events.php:2558
432
+ #: app/features/events.php:2600 app/features/fes/form.php:231
433
+ #: app/features/fes/form.php:235 app/features/ix.php:2740
434
  #: app/features/ix.php:2781 app/features/ix/import_g_calendar.php:38
435
  #: app/features/mec/dashboard.php:331
436
  #: app/features/mec/meta_boxes/display_options.php:42
443
  #: app/features/mec/meta_boxes/display_options.php:615
444
  #: app/features/mec/meta_boxes/display_options.php:650
445
  #: app/features/mec/meta_boxes/display_options.php:696
446
+ #: app/features/mec/meta_boxes/display_options.php:762
447
+ #: app/features/mec/meta_boxes/display_options.php:977
448
+ #: app/features/mec/meta_boxes/display_options.php:1064
449
  msgid "Start Date"
450
  msgstr ""
451
 
452
+ #: app/features/events.php:488 app/features/events.php:569
453
+ #: app/features/events.php:1157 app/features/events.php:1195
454
+ #: app/features/events.php:1314 app/features/events.php:1337
455
+ #: app/features/fes/form.php:263 app/features/fes/form.php:303
456
  msgid "AM"
457
  msgstr ""
458
 
459
+ #: app/features/events.php:494 app/features/events.php:575
460
+ #: app/features/events.php:1163 app/features/events.php:1201
461
+ #: app/features/events.php:1315 app/features/events.php:1338
462
+ #: app/features/fes/form.php:264 app/features/fes/form.php:304
463
  msgid "PM"
464
  msgstr ""
465
 
466
+ #: app/features/events.php:501 app/features/events.php:505
467
+ #: app/features/events.php:2381 app/features/events.php:2558
468
+ #: app/features/events.php:2600 app/features/fes/form.php:271
469
+ #: app/features/fes/form.php:275 app/features/ix.php:2740
470
  #: app/features/ix.php:2781 app/features/ix/import_g_calendar.php:44
471
  #: app/features/mec/dashboard.php:332
472
  msgid "End Date"
473
  msgstr ""
474
 
475
+ #: app/features/events.php:586 app/features/fes/form.php:310
476
  msgid "All Day Event"
477
  msgstr ""
478
 
479
+ #: app/features/events.php:594 app/features/fes/form.php:313
480
  msgid "Hide Event Time"
481
  msgstr ""
482
 
483
+ #: app/features/events.php:602 app/features/fes/form.php:316
484
  msgid "Hide Event End Time"
485
  msgstr ""
486
 
487
+ #: app/features/events.php:606 app/features/events.php:609
488
+ #: app/features/fes/form.php:320
489
  msgid "Time Comment"
490
  msgstr ""
491
 
492
+ #: app/features/events.php:610 app/features/fes/form.php:321
493
  msgid ""
494
  "It shows next to event time on single event page. You can insert Timezone "
495
  "etc. in this field."
496
  msgstr ""
497
 
498
+ #: app/features/events.php:610 app/features/events.php:703
499
+ #: app/features/events.php:769 app/features/events.php:807
500
+ #: app/features/events.php:1025 app/features/events.php:1083
501
+ #: app/features/events.php:1214 app/features/events.php:1224
502
+ #: app/features/events.php:1351 app/features/events.php:1361
503
+ #: app/features/events.php:1466 app/features/events.php:1497
504
+ #: app/features/events.php:1581 app/features/events.php:1591
505
+ #: app/features/events.php:1615 app/features/events.php:1625
506
+ #: app/features/fes/form.php:408 app/features/locations.php:298
507
  #: app/features/mec/dashboard.php:71
508
  #: app/features/mec/meta_boxes/display_options.php:60
509
  #: app/features/mec/meta_boxes/display_options.php:73
519
  #: app/features/mec/meta_boxes/display_options.php:259
520
  #: app/features/mec/meta_boxes/display_options.php:326
521
  #: app/features/mec/meta_boxes/display_options.php:498
522
+ #: app/features/mec/meta_boxes/display_options.php:781
 
 
523
  #: app/features/mec/meta_boxes/display_options.php:834
524
+ #: app/features/mec/meta_boxes/display_options.php:846
525
+ #: app/features/mec/meta_boxes/display_options.php:857
526
+ #: app/features/mec/meta_boxes/display_options.php:889
527
+ #: app/features/mec/meta_boxes/display_options.php:900
528
+ #: app/features/mec/meta_boxes/display_options.php:913
529
+ #: app/features/mec/meta_boxes/display_options.php:948
530
+ #: app/features/mec/meta_boxes/display_options.php:997
531
+ #: app/features/mec/meta_boxes/display_options.php:1008
532
+ #: app/features/mec/meta_boxes/display_options.php:1019
533
+ #: app/features/mec/meta_boxes/display_options.php:1084
534
+ #: app/features/mec/meta_boxes/display_options.php:1097
535
+ #: app/features/mec/meta_boxes/display_options.php:1110
536
+ #: app/features/mec/meta_boxes/display_options.php:1123
537
+ #: app/features/mec/meta_boxes/display_options.php:1136
538
+ #: app/features/mec/notifications.php:173
539
+ #: app/features/mec/notifications.php:231
540
+ #: app/features/mec/notifications.php:283
541
+ #: app/features/mec/notifications.php:342
542
+ #: app/features/mec/notifications.php:409
543
+ #: app/features/mec/notifications.php:472
544
+ #: app/features/mec/notifications.php:483
545
+ #: app/features/mec/notifications.php:544 app/features/mec/settings.php:299
546
  #: app/features/mec/settings.php:318 app/features/mec/settings.php:345
547
  #: app/features/mec/settings.php:365 app/features/mec/settings.php:386
548
  #: app/features/mec/settings.php:406 app/features/mec/settings.php:483
562
  #: app/features/mec/settings.php:1555 app/features/mec/settings.php:1565
563
  #: app/features/mec/settings.php:1587 app/features/mec/settings.php:1597
564
  #: app/features/mec/settings.php:1656 app/features/mec/settings.php:1669
565
+ #: app/features/mec/settings.php:1685 app/features/mec/styling.php:285
566
+ #: app/features/mec/styling.php:302 app/features/mec/styling.php:315
567
  #: app/features/organizers.php:267 app/skins/single/default.php:116
568
  #: app/skins/single/default.php:327 app/skins/single/m1.php:192
569
+ #: app/skins/single/m2.php:125 app/skins/single/modern.php:133
570
  msgid "Read More"
571
  msgstr ""
572
 
573
+ #: app/features/events.php:624 app/features/fes/form.php:327
574
  msgid "Event Repeating"
575
  msgstr ""
576
 
577
+ #: app/features/events.php:628 app/features/fes/form.php:331
578
  msgid "Repeats"
579
  msgstr ""
580
 
581
+ #: app/features/events.php:635 app/features/fes/form.php:333
582
+ #: app/features/mec/dashboard.php:334 app/skins/full_calendar/tpl.php:111
583
  msgid "Daily"
584
  msgstr ""
585
 
586
+ #: app/features/events.php:641 app/features/fes/form.php:334
587
  msgid "Every Weekday"
588
  msgstr ""
589
 
590
+ #: app/features/events.php:647 app/features/fes/form.php:335
591
  msgid "Every Weekend"
592
  msgstr ""
593
 
594
+ #: app/features/events.php:653 app/features/fes/form.php:336
595
  msgid "Certain Weekdays"
596
  msgstr ""
597
 
598
+ #: app/features/events.php:659 app/features/fes/form.php:337
599
+ #: app/skins/full_calendar/tpl.php:110
600
  msgid "Weekly"
601
  msgstr ""
602
 
603
+ #: app/features/events.php:665 app/features/fes/form.php:338
604
+ #: app/features/mec/dashboard.php:335 app/skins/full_calendar/tpl.php:109
605
  msgid "Monthly"
606
  msgstr ""
607
 
608
+ #: app/features/events.php:671 app/features/fes/form.php:339
609
+ #: app/features/mec/dashboard.php:336 app/skins/full_calendar/tpl.php:108
610
  msgid "Yearly"
611
  msgstr ""
612
 
613
+ #: app/features/events.php:677 app/features/fes/form.php:340
614
  msgid "Custom Days"
615
  msgstr ""
616
 
617
+ #: app/features/events.php:681 app/features/fes/form.php:344
618
  msgid "Repeat Interval"
619
  msgstr ""
620
 
621
+ #: app/features/events.php:682 app/features/fes/form.php:345
622
  msgid "Repeat interval"
623
  msgstr ""
624
 
625
+ #: app/features/events.php:685 app/features/fes/form.php:348
626
  msgid "Week Days"
627
  msgstr ""
628
 
629
+ #: app/features/events.php:686 app/features/fes/form.php:349
630
+ #: app/features/mec/meta_boxes/display_options.php:726
631
+ #: app/libraries/main.php:407
632
  msgid "Monday"
633
  msgstr ""
634
 
635
+ #: app/features/events.php:687 app/features/fes/form.php:350
636
+ #: app/features/mec/meta_boxes/display_options.php:727
637
+ #: app/libraries/main.php:407
638
  msgid "Tuesday"
639
  msgstr ""
640
 
641
+ #: app/features/events.php:688 app/features/fes/form.php:351
642
+ #: app/features/mec/meta_boxes/display_options.php:728
643
+ #: app/libraries/main.php:407
644
  msgid "Wednesday"
645
  msgstr ""
646
 
647
+ #: app/features/events.php:689 app/features/fes/form.php:352
648
+ #: app/features/mec/meta_boxes/display_options.php:729
649
+ #: app/libraries/main.php:407
650
  msgid "Thursday"
651
  msgstr ""
652
 
653
+ #: app/features/events.php:690 app/features/fes/form.php:353
654
+ #: app/features/mec/meta_boxes/display_options.php:730
655
+ #: app/libraries/main.php:407
656
  msgid "Friday"
657
  msgstr ""
658
 
659
+ #: app/features/events.php:691 app/features/fes/form.php:354
660
+ #: app/features/mec/meta_boxes/display_options.php:731
661
+ #: app/libraries/main.php:407
662
  msgid "Saturday"
663
  msgstr ""
664
 
665
+ #: app/features/events.php:692 app/features/fes/form.php:355
666
+ #: app/features/mec/meta_boxes/display_options.php:725
667
+ #: app/libraries/main.php:407
668
  msgid "Sunday"
669
  msgstr ""
670
 
671
+ #: app/features/events.php:697 app/features/events.php:1261
672
+ #: app/features/events.php:1275 app/features/events.php:1387
673
+ #: app/features/fes/form.php:360 app/features/ix/import_f_calendar.php:42
674
  #: app/features/ix/import_g_calendar.php:51
675
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
676
  msgid "Start"
677
  msgstr ""
678
 
679
+ #: app/features/events.php:698 app/features/events.php:1262
680
+ #: app/features/events.php:1276 app/features/events.php:1388
681
+ #: app/features/fes/form.php:361
682
  msgid "End"
683
  msgstr ""
684
 
685
+ #: app/features/events.php:699 app/features/events.php:803
686
+ #: app/features/events.php:895 app/features/events.php:959
687
+ #: app/features/events.php:1113 app/features/events.php:1248
688
+ #: app/features/events.php:1379 app/features/events.php:1446
689
+ #: app/features/events.php:1561 app/features/fes/form.php:362
690
  msgid "Add"
691
  msgstr ""
692
 
693
+ #: app/features/events.php:702
694
  msgid "Custom Days Repeating"
695
  msgstr ""
696
 
697
+ #: app/features/events.php:703
698
  msgid ""
699
  "Add certain days to event occurrence dates. If you have single day event, "
700
  "start and end date should be the same, If you have multiple day event the "
701
  "start and end dates must be commensurate with the initial date."
702
  msgstr ""
703
 
704
+ #: app/features/events.php:732 app/features/fes/form.php:386
705
  msgid "Ends Repeat"
706
  msgstr ""
707
 
708
+ #: app/features/events.php:741 app/features/fes/form.php:390
709
  msgid "Never"
710
  msgstr ""
711
 
712
+ #: app/features/events.php:751 app/features/fes/form.php:395
713
  msgid "On"
714
  msgstr ""
715
 
716
+ #: app/features/events.php:763 app/features/fes/form.php:402
717
  msgid "After"
718
  msgstr ""
719
 
720
+ #: app/features/events.php:765 app/features/events.php:768
721
+ #: app/features/fes/form.php:404 app/features/fes/form.php:407
722
  msgid "Occurrences times"
723
  msgstr ""
724
 
725
+ #: app/features/events.php:769 app/features/fes/form.php:408
726
  msgid ""
727
  "The event will finish after certain repeats. For example if you set it to "
728
  "10, the event will finish after 10 repeats."
729
  msgstr ""
730
 
731
+ #: app/features/events.php:798 app/features/events.php:806
732
  msgid "Exclude certain days"
733
  msgstr ""
734
 
735
+ #: app/features/events.php:802 app/features/events.php:1768
736
  #: app/features/mec/regform.php:184 app/features/profile/profile.php:31
737
+ #: app/libraries/main.php:1639 app/libraries/main.php:2242
738
  #: app/modules/booking/steps/tickets.php:22
739
+ #: app/modules/next-event/details.php:90 app/skins/single/default.php:65
740
  #: app/skins/single/default.php:276 app/skins/single/m1.php:16
741
+ #: app/skins/single/modern.php:166
742
  msgid "Date"
743
  msgstr ""
744
 
745
+ #: app/features/events.php:807
746
  msgid ""
747
  "Exclude certain days from event occurrence dates. Please note that you can "
748
  "exclude only single day occurrences and you cannot exclude one day from "
749
  "multiple day occurrences."
750
  msgstr ""
751
 
752
+ #: app/features/events.php:855 app/libraries/render.php:454
753
  msgid "Day 1"
754
  msgstr ""
755
 
756
+ #: app/features/events.php:877 app/features/mec/settings.php:1225
757
  #: app/skins/single.php:379
758
  msgid "Hourly Schedule"
759
  msgstr ""
760
 
761
+ #: app/features/events.php:880
762
  msgid "Add Day"
763
  msgstr ""
764
 
765
+ #: app/features/events.php:881
766
  msgid ""
767
  "Add new days for schedule. For example if your event is multiple days, you "
768
  "can add a different schedule for each day!"
769
  msgstr ""
770
 
771
+ #: app/features/events.php:887
772
  #, php-format
773
  msgid "Day %s"
774
  msgstr ""
775
 
776
+ #: app/features/events.php:890 app/features/events.php:909
777
+ #: app/features/events.php:929 app/features/events.php:954
778
+ #: app/features/events.php:970 app/features/events.php:1573
779
+ #: app/features/events.php:1607 app/features/events.php:2377
780
+ #: app/features/events.php:2558 app/features/events.php:2600
781
+ #: app/features/fes/form.php:220 app/features/ix.php:2740
782
  #: app/features/ix.php:2781 app/features/mec/settings.php:1547
783
+ #: app/features/mec/settings.php:1579 app/features/mec/styling.php:197
784
  msgid "Title"
785
  msgstr ""
786
 
787
+ #: app/features/events.php:892 app/features/events.php:911
788
+ #: app/features/events.php:931 app/features/events.php:956
789
+ #: app/features/events.php:972 app/features/events.php:1242
790
+ #: app/features/events.php:1265 app/features/events.php:1279
791
+ #: app/features/events.php:1374 app/features/events.php:1391
792
+ #: app/features/events.php:1478 app/features/events.php:1509
793
+ #: app/features/events.php:1596 app/features/events.php:1630
794
+ #: app/features/fes/list.php:78 app/features/mec/settings.php:1490
795
  #: app/features/mec/settings.php:1519 app/features/mec/settings.php:1570
796
+ #: app/features/mec/settings.php:1602 app/libraries/main.php:2103
797
+ #: app/libraries/main.php:2133 app/libraries/main.php:2162
798
+ #: app/libraries/main.php:2192 app/libraries/main.php:2221
799
+ #: app/libraries/main.php:2250 app/libraries/main.php:2279
800
+ #: app/libraries/main.php:2308 app/libraries/main.php:2330
801
+ #: app/libraries/main.php:2361 app/libraries/main.php:2405
802
+ #: app/libraries/main.php:2449 app/libraries/main.php:2496
803
+ #: app/libraries/main.php:2534
804
  msgid "Remove"
805
  msgstr ""
806
 
807
+ #: app/features/events.php:896 app/features/events.php:960
808
  msgid "Add new hourly schedule row"
809
  msgstr ""
810
 
811
+ #: app/features/events.php:907 app/features/events.php:927
812
+ #: app/features/events.php:968
813
  msgid "From e.g. 8:15"
814
  msgstr ""
815
 
816
+ #: app/features/events.php:908 app/features/events.php:928
817
+ #: app/features/events.php:969
818
  msgid "To e.g. 8:45"
819
  msgstr ""
820
 
821
+ #: app/features/events.php:910 app/features/events.php:930
822
+ #: app/features/events.php:971 app/features/events.php:1206
823
+ #: app/features/events.php:1343
824
  msgid "Description"
825
  msgstr ""
826
 
827
+ #: app/features/events.php:914 app/features/events.php:934
828
+ #: app/features/events.php:975 app/features/fes/form.php:616
829
  #: app/features/mec.php:325 app/features/mec/settings.php:78
830
  #: app/features/mec/settings.php:1219 app/features/speakers.php:57
831
+ #: app/libraries/main.php:4423 app/modules/speakers/details.php:18
832
  msgid "Speakers"
833
  msgstr ""
834
 
835
+ #: app/features/events.php:951 app/features/events.php:955
836
  msgid "New Day"
837
  msgstr ""
838
 
839
+ #: app/features/events.php:1002 app/features/fes/form.php:461
840
  #: app/features/mec/settings.php:1165
841
  msgid "Event Links"
842
  msgstr ""
843
 
844
+ #: app/features/events.php:1004 app/features/events.php:1008
845
+ #: app/features/fes/form.php:463 app/libraries/main.php:4446
846
  msgid "Event Link"
847
  msgstr ""
848
 
849
+ #: app/features/events.php:1005 app/features/events.php:1016
850
+ #: app/features/fes/form.php:464 app/features/fes/form.php:469
851
  msgid "eg. http://yoursite.com/your-event"
852
  msgstr ""
853
 
854
+ #: app/features/events.php:1009
855
  msgid ""
856
  "If you fill it, it will be replaced instead of default event page link. "
857
  "Insert full link including http(s):// - Also, if you use advertising URL, "
858
  "can use URL Shortener"
859
  msgstr ""
860
 
861
+ #: app/features/events.php:1009
862
  msgid "URL Shortener"
863
  msgstr ""
864
 
865
+ #: app/features/events.php:1015 app/features/events.php:1024
866
+ #: app/features/fes/form.php:468 app/libraries/main.php:4447
867
  #: app/skins/single/default.php:115 app/skins/single/default.php:326
868
  #: app/skins/single/m1.php:191 app/skins/single/m2.php:124
869
+ #: app/skins/single/modern.php:132 app/widgets/single.php:107
870
  msgid "More Info"
871
  msgstr ""
872
 
873
+ #: app/features/events.php:1017 app/features/fes/form.php:470
874
  msgid "More Information"
875
  msgstr ""
876
 
877
+ #: app/features/events.php:1019 app/features/fes/form.php:472
878
  msgid "Current Window"
879
  msgstr ""
880
 
881
+ #: app/features/events.php:1020 app/features/fes/form.php:473
882
  msgid "New Window"
883
  msgstr ""
884
 
885
+ #: app/features/events.php:1025 app/features/fes/form.php:475
886
  msgid ""
887
  "If you fill it, it will be shown in event details page as an optional link. "
888
  "Insert full link including http(s)://"
889
  msgstr ""
890
 
891
+ #: app/features/events.php:1061 app/features/events.php:1082
892
  msgid "Total booking limits"
893
  msgstr ""
894
 
895
+ #: app/features/events.php:1071 app/features/events.php:1240
896
+ #: app/features/events.php:1372 app/modules/booking/default.php:81
897
  #: app/modules/booking/steps/tickets.php:40
898
  #: app/skins/available_spot/tpl.php:139
899
  msgid "Unlimited"
900
  msgstr ""
901
 
902
+ #: app/features/events.php:1073
903
  msgid "100"
904
  msgstr ""
905
 
906
+ #: app/features/events.php:1083
907
  msgid ""
908
  "If you want to set a limit to all tickets, uncheck this checkbox and put a "
909
  "limitation number."
910
  msgstr ""
911
 
912
+ #: app/features/events.php:1083
913
  msgid "Read About A Booking System"
914
  msgstr ""
915
 
916
+ #: app/features/events.php:1105 app/libraries/book.php:60
917
+ #: app/libraries/main.php:4451 app/modules/booking/steps/tickets.php:40
918
  msgid "Tickets"
919
  msgstr ""
920
 
921
+ #: app/features/events.php:1108
922
  msgid ""
923
  "You're translating an event so MEC will use the original event for tickets "
924
  "and booking. You can only translate the ticket name and description. Please "
925
  "define exact tickets that you defined in the original event here."
926
  msgstr ""
927
 
928
+ #: app/features/events.php:1125 app/features/events.php:1292
929
  msgid "Ticket Name"
930
  msgstr ""
931
 
932
+ #: app/features/events.php:1129 app/features/events.php:1296
933
+ #: app/features/events.php:2558 app/features/events.php:2600
934
  #: app/features/ix.php:2740 app/features/ix.php:2781
935
  msgid "Start Time"
936
  msgstr ""
937
 
938
+ #: app/features/events.php:1167 app/features/events.php:1319
939
+ #: app/features/events.php:2558 app/features/events.php:2600
940
  #: app/features/ix.php:2740 app/features/ix.php:2781
941
  msgid "End Time"
942
  msgstr ""
943
 
944
+ #: app/features/events.php:1210 app/features/events.php:1213
945
+ #: app/features/events.php:1263 app/features/events.php:1277
946
+ #: app/features/events.php:1347 app/features/events.php:1350
947
+ #: app/features/events.php:1389 app/features/events.php:1577
948
+ #: app/features/events.php:1580 app/features/events.php:1611
949
+ #: app/features/events.php:1614 app/features/mec/settings.php:1551
950
  #: app/features/mec/settings.php:1554 app/features/mec/settings.php:1583
951
  #: app/features/mec/settings.php:1586
952
  msgid "Price"
953
  msgstr ""
954
 
955
+ #: app/features/events.php:1214 app/features/events.php:1351
956
  msgid "Insert 0 for free ticket. Only numbers please."
957
  msgstr ""
958
 
959
+ #: app/features/events.php:1220 app/features/events.php:1223
960
+ #: app/features/events.php:1357 app/features/events.php:1360
961
  msgid "Price Label"
962
  msgstr ""
963
 
964
+ #: app/features/events.php:1224 app/features/events.php:1361
965
  msgid "For showing on website. e.g. $15"
966
  msgstr ""
967
 
968
+ #: app/features/events.php:1231 app/features/events.php:1368
969
  msgid "Available Tickets"
970
  msgstr ""
971
 
972
+ #: app/features/events.php:1247 app/features/events.php:1378
973
  msgid "Price per Date"
974
  msgstr ""
975
 
976
+ #: app/features/events.php:1264 app/features/events.php:1278
977
+ #: app/features/events.php:1390 app/features/labels.php:60
978
+ #: app/features/mec/meta_boxes/display_options.php:795
979
  #: app/features/mec/meta_boxes/search_form.php:66
980
  #: app/features/mec/meta_boxes/search_form.php:127
981
  #: app/features/mec/meta_boxes/search_form.php:188
982
+ #: app/features/mec/meta_boxes/search_form.php:249
983
+ #: app/features/mec/meta_boxes/search_form.php:310
984
+ #: app/features/mec/meta_boxes/search_form.php:371
985
+ #: app/features/mec/meta_boxes/search_form.php:432
986
+ #: app/features/mec/meta_boxes/search_form.php:486
987
+ #: app/features/mec/meta_boxes/search_form.php:547
988
+ #: app/features/mec/meta_boxes/search_form.php:608 app/libraries/skins.php:911
989
  msgid "Label"
990
  msgstr ""
991
 
992
+ #: app/features/events.php:1426
993
  msgid "Fees"
994
  msgstr ""
995
 
996
+ #: app/features/events.php:1436 app/features/events.php:1551
997
+ #: app/features/events.php:1711
998
  msgid "Inherit from global options"
999
  msgstr ""
1000
 
1001
+ #: app/features/events.php:1458 app/features/events.php:1489
1002
  #: app/features/mec/settings.php:1470 app/features/mec/settings.php:1499
1003
  msgid "Fee Title"
1004
  msgstr ""
1005
 
1006
+ #: app/features/events.php:1462 app/features/events.php:1465
1007
+ #: app/features/events.php:1493 app/features/events.php:1496
1008
  #: app/features/mec/settings.php:1474 app/features/mec/settings.php:1477
1009
  #: app/features/mec/settings.php:1503 app/features/mec/settings.php:1506
1010
  msgid "Amount"
1011
  msgstr ""
1012
 
1013
+ #: app/features/events.php:1466 app/features/events.php:1497
1014
  #: app/features/mec/settings.php:1478 app/features/mec/settings.php:1507
1015
  msgid ""
1016
  "Fee amount, considered as fixed amount if you set the type to amount "
1017
  "otherwise considered as percentage"
1018
  msgstr ""
1019
 
1020
+ #: app/features/events.php:1473 app/features/events.php:1504
1021
  #: app/features/mec/settings.php:1485 app/features/mec/settings.php:1514
1022
  msgid "Percent"
1023
  msgstr ""
1024
 
1025
+ #: app/features/events.php:1474 app/features/events.php:1505
1026
  #: app/features/mec/settings.php:1486 app/features/mec/settings.php:1515
1027
  msgid "Amount (Per Ticket)"
1028
  msgstr ""
1029
 
1030
+ #: app/features/events.php:1475 app/features/events.php:1506
1031
  #: app/features/mec/settings.php:1487 app/features/mec/settings.php:1516
1032
  msgid "Amount (Per Booking)"
1033
  msgstr ""
1034
 
1035
+ #: app/features/events.php:1541 app/features/mec/settings.php:1243
1036
  msgid "Ticket Variations / Options"
1037
  msgstr ""
1038
 
1039
+ #: app/features/events.php:1581 app/features/events.php:1615
1040
  #: app/features/mec/settings.php:1555 app/features/mec/settings.php:1587
1041
  msgid "Option Price"
1042
  msgstr ""
1043
 
1044
+ #: app/features/events.php:1587 app/features/events.php:1590
1045
+ #: app/features/events.php:1621 app/features/events.php:1624
1046
  #: app/features/mec/settings.php:1561 app/features/mec/settings.php:1564
1047
  #: app/features/mec/settings.php:1593 app/features/mec/settings.php:1596
1048
  msgid "Maximum Per Ticket"
1049
  msgstr ""
1050
 
1051
+ #: app/features/events.php:1591 app/features/events.php:1625
1052
  #: app/features/mec/settings.php:1565 app/features/mec/settings.php:1597
1053
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1054
  msgstr ""
1055
 
1056
+ #: app/features/events.php:1764 app/features/mec/regform.php:180
1057
+ #: app/libraries/main.php:2125
1058
  msgid "MEC Name"
1059
  msgstr ""
1060
 
1061
+ #: app/features/events.php:1765 app/features/mec/regform.php:181
1062
+ #: app/libraries/main.php:2154
1063
  msgid "MEC Email"
1064
  msgstr ""
1065
 
1066
+ #: app/features/events.php:1766 app/features/mec/regform.php:182
1067
+ #: app/libraries/main.php:2095
1068
  msgid "Text"
1069
  msgstr ""
1070
 
1071
+ #: app/features/events.php:1769 app/features/mec/regform.php:185
1072
  #: app/features/organizers.php:102 app/features/organizers.php:146
1073
+ #: app/features/speakers.php:112 app/features/speakers.php:176
1074
+ #: app/features/speakers.php:245 app/libraries/main.php:2271
1075
  msgid "Tel"
1076
  msgstr ""
1077
 
1078
+ #: app/features/events.php:1770 app/features/mec/regform.php:186
1079
+ #: app/libraries/main.php:2213
1080
  msgid "File"
1081
  msgstr ""
1082
 
1083
+ #: app/features/events.php:1771 app/features/mec/regform.php:187
1084
+ #: app/libraries/main.php:2300
1085
  msgid "Textarea"
1086
  msgstr ""
1087
 
1088
+ #: app/features/events.php:1772 app/features/mec/regform.php:188
1089
+ #: app/libraries/main.php:2353
1090
  msgid "Checkboxes"
1091
  msgstr ""
1092
 
1093
+ #: app/features/events.php:1773 app/features/mec/regform.php:189
1094
+ #: app/libraries/main.php:2397
1095
  msgid "Radio Buttons"
1096
  msgstr ""
1097
 
1098
+ #: app/features/events.php:1774 app/features/mec/meta_boxes/search_form.php:34
1099
  #: app/features/mec/meta_boxes/search_form.php:41
1100
  #: app/features/mec/meta_boxes/search_form.php:48
1101
  #: app/features/mec/meta_boxes/search_form.php:55
1118
  #: app/features/mec/meta_boxes/search_form.php:198
1119
  #: app/features/mec/meta_boxes/search_form.php:217
1120
  #: app/features/mec/meta_boxes/search_form.php:224
1121
+ #: app/features/mec/meta_boxes/search_form.php:231
1122
+ #: app/features/mec/meta_boxes/search_form.php:238
1123
+ #: app/features/mec/meta_boxes/search_form.php:245
1124
+ #: app/features/mec/meta_boxes/search_form.php:252
1125
+ #: app/features/mec/meta_boxes/search_form.php:259
1126
  #: app/features/mec/meta_boxes/search_form.php:278
1127
  #: app/features/mec/meta_boxes/search_form.php:285
1128
+ #: app/features/mec/meta_boxes/search_form.php:292
1129
+ #: app/features/mec/meta_boxes/search_form.php:299
1130
+ #: app/features/mec/meta_boxes/search_form.php:306
1131
+ #: app/features/mec/meta_boxes/search_form.php:313
1132
+ #: app/features/mec/meta_boxes/search_form.php:320
1133
  #: app/features/mec/meta_boxes/search_form.php:339
1134
  #: app/features/mec/meta_boxes/search_form.php:346
1135
+ #: app/features/mec/meta_boxes/search_form.php:353
1136
+ #: app/features/mec/meta_boxes/search_form.php:360
1137
+ #: app/features/mec/meta_boxes/search_form.php:367
1138
+ #: app/features/mec/meta_boxes/search_form.php:374
1139
+ #: app/features/mec/meta_boxes/search_form.php:381
1140
  #: app/features/mec/meta_boxes/search_form.php:400
1141
+ #: app/features/mec/meta_boxes/search_form.php:407
1142
+ #: app/features/mec/meta_boxes/search_form.php:414
1143
+ #: app/features/mec/meta_boxes/search_form.php:421
1144
+ #: app/features/mec/meta_boxes/search_form.php:428
1145
+ #: app/features/mec/meta_boxes/search_form.php:435
1146
  #: app/features/mec/meta_boxes/search_form.php:454
1147
  #: app/features/mec/meta_boxes/search_form.php:461
1148
+ #: app/features/mec/meta_boxes/search_form.php:468
1149
+ #: app/features/mec/meta_boxes/search_form.php:475
1150
+ #: app/features/mec/meta_boxes/search_form.php:482
1151
+ #: app/features/mec/meta_boxes/search_form.php:489
1152
+ #: app/features/mec/meta_boxes/search_form.php:496
1153
  #: app/features/mec/meta_boxes/search_form.php:515
1154
  #: app/features/mec/meta_boxes/search_form.php:522
1155
+ #: app/features/mec/meta_boxes/search_form.php:529
1156
+ #: app/features/mec/meta_boxes/search_form.php:536
1157
+ #: app/features/mec/meta_boxes/search_form.php:543
1158
+ #: app/features/mec/meta_boxes/search_form.php:550
1159
+ #: app/features/mec/meta_boxes/search_form.php:557
1160
  #: app/features/mec/meta_boxes/search_form.php:576
1161
  #: app/features/mec/meta_boxes/search_form.php:583
1162
+ #: app/features/mec/meta_boxes/search_form.php:590
1163
+ #: app/features/mec/meta_boxes/search_form.php:597
1164
+ #: app/features/mec/meta_boxes/search_form.php:604
1165
+ #: app/features/mec/meta_boxes/search_form.php:611
1166
+ #: app/features/mec/meta_boxes/search_form.php:618
1167
+ #: app/features/mec/regform.php:190 app/libraries/main.php:2441
1168
  msgid "Dropdown"
1169
  msgstr ""
1170
 
1171
+ #: app/features/events.php:1775 app/features/mec/regform.php:191
1172
+ #: app/libraries/main.php:2488
1173
  msgid "Agreement"
1174
  msgstr ""
1175
 
1176
+ #: app/features/events.php:1776 app/features/mec/regform.php:192
1177
+ #: app/libraries/main.php:2329
1178
  msgid "Paragraph"
1179
  msgstr ""
1180
 
1181
+ #: app/features/events.php:2316 app/features/events.php:2333
1182
+ #: app/features/events.php:2350
1183
  #, php-format
1184
  msgid "Show all %s"
1185
  msgstr ""
1186
 
1187
+ #: app/features/events.php:2316
1188
  msgid "labels"
1189
  msgstr ""
1190
 
1191
+ #: app/features/events.php:2333
1192
  msgid "locations"
1193
  msgstr ""
1194
 
1195
+ #: app/features/events.php:2350
1196
  msgid "organizers"
1197
  msgstr ""
1198
 
1199
+ #: app/features/events.php:2378 app/features/events.php:2558
1200
+ #: app/features/events.php:2600 app/features/ix.php:2740
1201
  #: app/features/ix.php:2781 app/features/locations.php:58
1202
  #: app/features/locations.php:229 app/features/locations.php:286
1203
  #: app/features/locations.php:288 app/features/locations.php:297
1204
+ #: app/features/mec/meta_boxes/display_options.php:796
1205
  #: app/features/mec/meta_boxes/search_form.php:38
1206
  #: app/features/mec/meta_boxes/search_form.php:99
1207
  #: app/features/mec/meta_boxes/search_form.php:160
1208
+ #: app/features/mec/meta_boxes/search_form.php:221
1209
+ #: app/features/mec/meta_boxes/search_form.php:282
1210
+ #: app/features/mec/meta_boxes/search_form.php:343
1211
+ #: app/features/mec/meta_boxes/search_form.php:404
1212
+ #: app/features/mec/meta_boxes/search_form.php:458
1213
+ #: app/features/mec/meta_boxes/search_form.php:519
1214
+ #: app/features/mec/meta_boxes/search_form.php:580 app/libraries/main.php:1633
1215
+ #: app/libraries/main.php:4420 app/libraries/skins.php:807
1216
  #: app/skins/single.php:356 app/skins/single/default.php:151
1217
  #: app/skins/single/default.php:362 app/skins/single/m1.php:155
1218
  #: app/skins/single/m2.php:87 app/skins/single/modern.php:94
1219
  msgid "Location"
1220
  msgstr ""
1221
 
1222
+ #: app/features/events.php:2379 app/features/events.php:2558
1223
+ #: app/features/events.php:2600 app/features/ix.php:2740
1224
+ #: app/features/ix.php:2781 app/features/mec/meta_boxes/display_options.php:797
1225
  #: app/features/mec/meta_boxes/search_form.php:45
1226
  #: app/features/mec/meta_boxes/search_form.php:106
1227
  #: app/features/mec/meta_boxes/search_form.php:167
1228
+ #: app/features/mec/meta_boxes/search_form.php:228
1229
+ #: app/features/mec/meta_boxes/search_form.php:289
1230
+ #: app/features/mec/meta_boxes/search_form.php:350
1231
+ #: app/features/mec/meta_boxes/search_form.php:411
1232
+ #: app/features/mec/meta_boxes/search_form.php:465
1233
+ #: app/features/mec/meta_boxes/search_form.php:526
1234
+ #: app/features/mec/meta_boxes/search_form.php:587
1235
  #: app/features/organizers.php:58 app/features/organizers.php:199
1236
  #: app/features/organizers.php:255 app/features/organizers.php:257
1237
+ #: app/features/organizers.php:266 app/libraries/main.php:4422
1238
+ #: app/libraries/skins.php:833 app/skins/single/default.php:192
1239
  #: app/skins/single/default.php:403 app/skins/single/m1.php:90
1240
  #: app/skins/single/m2.php:22 app/skins/single/modern.php:31
1241
  msgid "Organizer"
1242
  msgstr ""
1243
 
1244
+ #: app/features/events.php:2383
1245
  msgid "Repeat"
1246
  msgstr ""
1247
 
1248
+ #: app/features/events.php:2384
1249
  msgid "Author"
1250
  msgstr ""
1251
 
1252
+ #: app/features/events.php:2494 app/features/events.php:2495
1253
  msgid "iCal Export"
1254
  msgstr ""
1255
 
1256
+ #: app/features/events.php:2497 app/features/events.php:2498
1257
  msgid "CSV Export"
1258
  msgstr ""
1259
 
1260
+ #: app/features/events.php:2500 app/features/events.php:2501
1261
  msgid "MS Excel Export"
1262
  msgstr ""
1263
 
1264
+ #: app/features/events.php:2503 app/features/events.php:2504
1265
  msgid "XML Export"
1266
  msgstr ""
1267
 
1268
+ #: app/features/events.php:2506 app/features/events.php:2507
1269
  msgid "JSON Export"
1270
  msgstr ""
1271
 
1272
+ #: app/features/events.php:2509 app/features/events.php:2510
1273
  msgid "Duplicate"
1274
  msgstr ""
1275
 
1276
+ #: app/features/events.php:2558 app/features/events.php:2600
1277
  #: app/features/ix.php:2740 app/features/ix.php:2781
1278
  #: app/features/labels.php:176 app/features/locations.php:228
1279
+ #: app/features/organizers.php:198 app/features/speakers.php:242
1280
  msgid "ID"
1281
  msgstr ""
1282
 
1283
+ #: app/features/events.php:2558 app/features/events.php:2600
1284
  #: app/features/ix.php:2740 app/features/ix.php:2781
1285
  msgid "Link"
1286
  msgstr ""
1287
 
1288
+ #: app/features/events.php:2558 app/features/events.php:2600
1289
  #, php-format
1290
  msgid "%s Tel"
1291
  msgstr ""
1292
 
1293
+ #: app/features/events.php:2558 app/features/events.php:2600
1294
  #, php-format
1295
  msgid "%s Email"
1296
  msgstr ""
1349
  msgid "Go back to events list."
1350
  msgstr ""
1351
 
1352
+ #: app/features/fes/form.php:363
1353
  msgid "Add certain days to event occurrence dates."
1354
  msgstr ""
1355
 
1356
+ #: app/features/fes/form.php:422
1357
  msgid "Note to reviewer"
1358
  msgstr ""
1359
 
1360
+ #: app/features/fes/form.php:440
1361
  msgid "User Data"
1362
  msgstr ""
1363
 
1364
+ #: app/features/fes/form.php:443
1365
  msgid "eg. yourname@gmail.com"
1366
  msgstr ""
1367
 
1368
+ #: app/features/fes/form.php:447 app/features/organizers.php:275
1369
  msgid "eg. John Smith"
1370
  msgstr ""
1371
 
1372
+ #: app/features/fes/form.php:465
1373
  msgid ""
1374
  "If you fill it, it will be replaced instead of default event page link. "
1375
  "Insert full link including http(s)://"
1376
  msgstr ""
1377
 
1378
+ #: app/features/fes/form.php:501 app/features/mec/settings.php:1177
1379
  msgid "Featured Image"
1380
  msgstr ""
1381
 
1382
+ #: app/features/fes/form.php:506
1383
  msgid "Remove Image"
1384
  msgstr ""
1385
 
1386
+ #: app/features/fes/form.php:548 app/features/labels.php:61
1387
  #: app/features/labels.php:220 app/features/mec.php:318
1388
+ #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4417
1389
  #: app/skins/single/default.php:130 app/skins/single/default.php:341
1390
+ #: app/skins/single/m1.php:64 app/skins/single/modern.php:214
1391
  msgid "Labels"
1392
  msgstr ""
1393
 
1394
+ #: app/features/fes/form.php:593 app/features/mec.php:316
1395
  #: app/features/mec/meta_boxes/filter.php:138
1396
  msgid "Tags"
1397
  msgstr ""
1398
 
1399
+ #: app/features/fes/form.php:595
1400
  msgid "Insert your desired tags, comma separated."
1401
  msgstr ""
1402
 
1403
+ #: app/features/fes/form.php:631
1404
  msgid "Submit"
1405
  msgstr ""
1406
 
1408
  msgid "Click again to remove!"
1409
  msgstr ""
1410
 
1411
+ #: app/features/fes/list.php:64 app/features/fes/list.php:85
1412
  msgid "Add new"
1413
  msgstr ""
1414
 
1415
+ #: app/features/fes/list.php:76
1416
  msgid "View"
1417
  msgstr ""
1418
 
1419
+ #: app/features/fes/list.php:85
1420
  #, php-format
1421
  msgid "No events found! %s"
1422
  msgstr ""
1427
 
1428
  #: app/features/ix.php:107 app/features/mec/gateways.php:77
1429
  #: app/features/mec/ie.php:73 app/features/mec/messages.php:77
1430
+ #: app/features/mec/notifications.php:126 app/features/mec/regform.php:111
1431
  #: app/features/mec/settings.php:261 app/features/mec/styles.php:77
1432
  #: app/features/mec/styling.php:99 app/features/mec/support.php:73
1433
  msgid "Import / Export"
1686
  #: app/features/ix/export_g_calendar.php:72
1687
  #: app/features/ix/export_g_calendar.php:147
1688
  #: app/features/ix/export_g_calendar.php:164
1689
+ #: app/features/mec/notifications.php:210
1690
+ #: app/features/mec/notifications.php:263
1691
+ #: app/features/mec/notifications.php:316
1692
+ #: app/features/mec/notifications.php:516
1693
  msgid "Add to Google Calendar"
1694
  msgstr ""
1695
 
1696
  #: app/features/ix/export_g_calendar.php:90
1697
+ #: app/features/mec/notifications.php:666 app/features/mec/settings.php:1788
1698
  msgid "Checking ..."
1699
  msgstr ""
1700
 
1750
  #: app/features/mec/meta_boxes/display_options.php:470
1751
  #: app/features/mec/meta_boxes/display_options.php:577
1752
  #: app/features/mec/meta_boxes/display_options.php:684
1753
+ #: app/features/mec/meta_boxes/display_options.php:757
1754
+ #: app/features/mec/meta_boxes/display_options.php:937
1755
  #: app/features/mec/settings.php:811 app/features/mec/settings.php:985
1756
  #: app/features/mec/settings.php:1003 app/features/mec/settings.php:1327
1757
  #: app/features/mec/settings.php:1436 app/features/mec/settings.php:1454
1907
  msgstr ""
1908
 
1909
  #: app/features/ix/sync.php:22
1910
+ #: app/features/mec/meta_boxes/display_options.php:757
1911
  #, php-format
1912
  msgid "%s is required to use synchronization feature."
1913
  msgstr ""
1918
 
1919
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
1920
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
1921
+ #: app/features/mec/notifications.php:460
1922
  msgid "Important Note"
1923
  msgstr ""
1924
 
2028
  #: app/features/mec/meta_boxes/display_options.php:475
2029
  #: app/features/mec/meta_boxes/display_options.php:525
2030
  #: app/features/mec/meta_boxes/display_options.php:689
2031
+ #: app/features/mec/meta_boxes/display_options.php:819
2032
+ #: app/features/mec/meta_boxes/display_options.php:876
2033
+ #: app/features/mec/meta_boxes/display_options.php:968
2034
+ #: app/features/mec/meta_boxes/display_options.php:1054
2035
  msgid "Style"
2036
  msgstr ""
2037
 
2047
  #: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:82
2048
  #: app/skins/monthly_view/calendar_clean.php:81
2049
  #: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
2050
+ #: app/skins/timetable/render.php:33 app/skins/timetable/render.php:136
2051
  #: app/skins/weekly_view/render.php:31 app/skins/yearly_view/render.php:48
2052
  msgid "Featured"
2053
  msgstr ""
2054
 
2055
  #: app/features/labels.php:117 app/features/labels.php:142
2056
+ #: app/libraries/main.php:4644 app/skins/agenda/render.php:41
2057
  #: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:59
2058
  #: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
2059
  #: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
2061
  #: app/skins/monthly_view/calendar.php:86
2062
  #: app/skins/monthly_view/calendar_clean.php:85
2063
  #: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
2064
+ #: app/skins/timetable/render.php:37 app/skins/timetable/render.php:137
2065
  #: app/skins/weekly_view/render.php:35 app/skins/yearly_view/render.php:52
2066
  msgid "Canceled"
2067
  msgstr ""
2071
  msgstr ""
2072
 
2073
  #: app/features/labels.php:179 app/features/locations.php:231
2074
+ #: app/features/organizers.php:201 app/features/speakers.php:246
2075
  #: app/modules/booking/steps/tickets.php:38
2076
  msgid "Count"
2077
  msgstr ""
2088
 
2089
  #: app/features/locations.php:59 app/features/mec.php:319
2090
  #: app/features/mec/dashboard.php:201 app/features/mec/meta_boxes/filter.php:87
2091
+ #: app/libraries/main.php:4419
2092
  msgid "Locations"
2093
  msgstr ""
2094
 
2121
 
2122
  #: app/features/locations.php:137 app/features/locations.php:179
2123
  #: app/features/organizers.php:126 app/features/organizers.php:158
2124
+ #: app/features/speakers.php:152 app/features/speakers.php:196
2125
  msgid "Thumbnail"
2126
  msgstr ""
2127
 
2128
  #: app/features/locations.php:142 app/features/locations.php:182
2129
  #: app/features/organizers.php:131 app/features/organizers.php:161
2130
+ #: app/features/speakers.php:157 app/features/speakers.php:199
2131
  msgid "Upload/Add image"
2132
  msgstr ""
2133
 
2135
  #: app/features/locations.php:339 app/features/locations.php:346
2136
  #: app/features/organizers.php:132 app/features/organizers.php:162
2137
  #: app/features/organizers.php:294 app/features/organizers.php:301
2138
+ #: app/features/speakers.php:158 app/features/speakers.php:200
2139
  msgid "Remove image"
2140
  msgstr ""
2141
 
2193
  msgid "Don't show map in single event page"
2194
  msgstr ""
2195
 
2196
+ #: app/features/locations.php:355 app/libraries/main.php:4453
2197
  msgid "Other Locations"
2198
  msgstr ""
2199
 
2232
 
2233
  #: app/features/mec.php:299 app/features/mec/gateways.php:84
2234
  #: app/features/mec/ie.php:80 app/features/mec/messages.php:84
2235
+ #: app/features/mec/notifications.php:133 app/features/mec/regform.php:118
2236
  #: app/features/mec/settings.php:268 app/features/mec/styles.php:84
2237
  #: app/features/mec/styling.php:106 app/features/mec/support-page.php:9
2238
  #: app/features/mec/support.php:80 app/features/mec/support.php:93
2241
 
2242
  #: app/features/mec.php:320 app/features/mec/dashboard.php:208
2243
  #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2244
+ #: app/libraries/main.php:4421
2245
  msgid "Organizers"
2246
  msgstr ""
2247
 
2248
+ #: app/features/mec.php:328 app/features/mec.php:348
2249
  #: app/features/mec/dashboard.php:194
2250
  msgid "Shortcodes"
2251
  msgstr ""
2262
  msgid "Addons"
2263
  msgstr ""
2264
 
2265
+ #: app/features/mec.php:350
2266
  msgid "Add Shortcode"
2267
  msgstr ""
2268
 
2269
+ #: app/features/mec.php:351
2270
  msgid "Add New Shortcode"
2271
  msgstr ""
2272
 
2273
+ #: app/features/mec.php:352
2274
  msgid "No shortcodes found!"
2275
  msgstr ""
2276
 
2277
+ #: app/features/mec.php:353
2278
  msgid "All Shortcodes"
2279
  msgstr ""
2280
 
2281
+ #: app/features/mec.php:354
2282
  msgid "Edit shortcodes"
2283
  msgstr ""
2284
 
2285
+ #: app/features/mec.php:355
2286
  msgid "No shortcodes found in Trash!"
2287
  msgstr ""
2288
 
2289
+ #: app/features/mec.php:404
2290
  msgid "Display Options"
2291
  msgstr ""
2292
 
2293
+ #: app/features/mec.php:405
2294
  msgid "Filter Options"
2295
  msgstr ""
2296
 
2297
+ #: app/features/mec.php:407
2298
  msgid "Search Form"
2299
  msgstr ""
2300
 
2301
+ #: app/features/mec.php:757
2302
  msgid "Display content's images as Popup"
2303
  msgstr ""
2304
 
2305
+ #: app/features/mec.php:770
2306
  msgid "Single Event Display Method"
2307
  msgstr ""
2308
 
2309
+ #: app/features/mec.php:775
2310
  msgid "Separate Window"
2311
  msgstr ""
2312
 
2313
+ #: app/features/mec.php:776
2314
  msgid "Modal 1"
2315
  msgstr ""
2316
 
2358
  msgid "Modern Events Calendar (Lite)"
2359
  msgstr ""
2360
 
2361
+ #: app/features/mec/dashboard.php:65 app/libraries/factory.php:197
2362
  msgctxt "plugin rate"
2363
  msgid "Rate the plugin ★★★★★"
2364
  msgstr ""
2461
  #: app/features/mec/gateways.php:171 app/features/mec/messages.php:11
2462
  #: app/features/mec/messages.php:118 app/features/mec/messages.php:127
2463
  #: app/features/mec/messages.php:161 app/features/mec/messages.php:170
2464
+ #: app/features/mec/notifications.php:10 app/features/mec/notifications.php:572
2465
+ #: app/features/mec/notifications.php:584
2466
+ #: app/features/mec/notifications.php:683
2467
+ #: app/features/mec/notifications.php:697 app/features/mec/regform.php:47
2468
  #: app/features/mec/regform.php:198 app/features/mec/regform.php:253
2469
  #: app/features/mec/regform.php:289 app/features/mec/regform.php:298
2470
  #: app/features/mec/settings.php:28 app/features/mec/settings.php:1714
2472
  #: app/features/mec/settings.php:1819 app/features/mec/styles.php:11
2473
  #: app/features/mec/styles.php:103 app/features/mec/styles.php:112
2474
  #: app/features/mec/styles.php:149 app/features/mec/styles.php:158
2475
+ #: app/features/mec/styling.php:33 app/features/mec/styling.php:324
2476
+ #: app/features/mec/styling.php:333 app/features/mec/styling.php:396
2477
+ #: app/features/mec/styling.php:405
2478
  msgid "Save Changes"
2479
  msgstr ""
2480
 
2481
  #: app/features/mec/gateways.php:56 app/features/mec/ie.php:52
2482
+ #: app/features/mec/messages.php:56 app/features/mec/notifications.php:105
2483
  #: app/features/mec/regform.php:90 app/features/mec/settings.php:240
2484
  #: app/features/mec/styles.php:56 app/features/mec/styling.php:78
2485
  #: app/features/mec/support.php:52
2487
  msgstr ""
2488
 
2489
  #: app/features/mec/gateways.php:63 app/features/mec/ie.php:59
2490
+ #: app/features/mec/messages.php:63 app/features/mec/notifications.php:112
2491
  #: app/features/mec/regform.php:97 app/features/mec/settings.php:247
2492
  #: app/features/mec/styles.php:63 app/features/mec/styling.php:85
2493
  #: app/features/mec/support.php:59
2496
 
2497
  #: app/features/mec/gateways.php:70 app/features/mec/ie.php:66
2498
  #: app/features/mec/messages.php:70 app/features/mec/messages.php:97
2499
+ #: app/features/mec/notifications.php:119 app/features/mec/regform.php:104
2500
  #: app/features/mec/settings.php:254 app/features/mec/styles.php:70
2501
  #: app/features/mec/styling.php:92 app/features/mec/support.php:66
2502
  msgid "Messages"
2503
  msgstr ""
2504
 
2505
  #: app/features/mec/gateways.php:140 app/features/mec/messages.php:145
2506
+ #: app/features/mec/notifications.php:661 app/features/mec/regform.php:273
2507
  #: app/features/mec/settings.php:1783 app/features/mec/styles.php:132
2508
+ #: app/features/mec/styling.php:378
2509
  msgid "Saved"
2510
  msgstr ""
2511
 
2512
  #: app/features/mec/gateways.php:141 app/features/mec/messages.php:146
2513
+ #: app/features/mec/notifications.php:662 app/features/mec/regform.php:274
2514
  #: app/features/mec/settings.php:1784 app/features/mec/styles.php:133
2515
+ #: app/features/mec/styling.php:379
2516
  msgid "Settings Saved!"
2517
  msgstr ""
2518
 
2555
  #: app/features/mec/meta_boxes/display_options.php:34
2556
  #: app/features/mec/meta_boxes/display_options.php:159
2557
  #: app/features/mec/meta_boxes/display_options.php:527
2558
+ #: app/features/mec/meta_boxes/display_options.php:821
2559
  #: app/features/mec/settings.php:432 app/features/mec/settings.php:456
2560
  #: app/features/mec/settings.php:465 app/features/mec/settings.php:506
2561
  #: app/features/mec/settings.php:530 app/features/mec/settings.php:539
2574
  #: app/features/mec/meta_boxes/display_options.php:477
2575
  #: app/features/mec/meta_boxes/display_options.php:529
2576
  #: app/features/mec/meta_boxes/display_options.php:691
2577
+ #: app/features/mec/meta_boxes/display_options.php:823
2578
  #: app/features/mec/settings.php:434 app/features/mec/settings.php:447
2579
  #: app/features/mec/settings.php:458 app/features/mec/settings.php:468
2580
  #: app/features/mec/settings.php:508 app/features/mec/settings.php:521
2597
  #: app/features/mec/meta_boxes/display_options.php:309
2598
  #: app/features/mec/meta_boxes/display_options.php:584
2599
  #: app/features/mec/meta_boxes/display_options.php:617
2600
+ #: app/features/mec/meta_boxes/display_options.php:764
2601
+ #: app/features/mec/meta_boxes/display_options.php:979
2602
+ #: app/features/mec/meta_boxes/display_options.php:1066
2603
  msgid "Today"
2604
  msgstr ""
2605
 
2608
  #: app/features/mec/meta_boxes/display_options.php:310
2609
  #: app/features/mec/meta_boxes/display_options.php:585
2610
  #: app/features/mec/meta_boxes/display_options.php:618
2611
+ #: app/features/mec/meta_boxes/display_options.php:765
2612
+ #: app/features/mec/meta_boxes/display_options.php:980
2613
+ #: app/features/mec/meta_boxes/display_options.php:1067
2614
  msgid "Tomorrow"
2615
  msgstr ""
2616
 
2623
  #: app/features/mec/meta_boxes/display_options.php:619
2624
  #: app/features/mec/meta_boxes/display_options.php:654
2625
  #: app/features/mec/meta_boxes/display_options.php:700
2626
+ #: app/features/mec/meta_boxes/display_options.php:766
2627
+ #: app/features/mec/meta_boxes/display_options.php:981
2628
+ #: app/features/mec/meta_boxes/display_options.php:1068
2629
  msgid "Start of Current Month"
2630
  msgstr ""
2631
 
2638
  #: app/features/mec/meta_boxes/display_options.php:620
2639
  #: app/features/mec/meta_boxes/display_options.php:655
2640
  #: app/features/mec/meta_boxes/display_options.php:701
2641
+ #: app/features/mec/meta_boxes/display_options.php:767
2642
+ #: app/features/mec/meta_boxes/display_options.php:982
2643
+ #: app/features/mec/meta_boxes/display_options.php:1069
2644
  msgid "Start of Next Month"
2645
  msgstr ""
2646
 
2654
  #: app/features/mec/meta_boxes/display_options.php:621
2655
  #: app/features/mec/meta_boxes/display_options.php:656
2656
  #: app/features/mec/meta_boxes/display_options.php:702
2657
+ #: app/features/mec/meta_boxes/display_options.php:768
2658
+ #: app/features/mec/meta_boxes/display_options.php:983
2659
+ #: app/features/mec/meta_boxes/display_options.php:1070
2660
  msgid "On a certain date"
2661
  msgstr ""
2662
 
2670
  #: app/features/mec/meta_boxes/display_options.php:625
2671
  #: app/features/mec/meta_boxes/display_options.php:659
2672
  #: app/features/mec/meta_boxes/display_options.php:705
2673
+ #: app/features/mec/meta_boxes/display_options.php:771
2674
+ #: app/features/mec/meta_boxes/display_options.php:986
2675
+ #: app/features/mec/meta_boxes/display_options.php:1073
2676
  #, php-format
2677
  msgid "eg. %s"
2678
  msgstr ""
2705
  #: app/features/mec/meta_boxes/display_options.php:325
2706
  #: app/features/mec/meta_boxes/display_options.php:492
2707
  #: app/features/mec/meta_boxes/display_options.php:497
2708
+ #: app/features/mec/meta_boxes/display_options.php:775
2709
+ #: app/features/mec/meta_boxes/display_options.php:780
2710
+ #: app/features/mec/meta_boxes/display_options.php:827
 
 
 
 
2711
  #: app/features/mec/meta_boxes/display_options.php:833
2712
+ #: app/features/mec/meta_boxes/display_options.php:840
2713
+ #: app/features/mec/meta_boxes/display_options.php:845
2714
+ #: app/features/mec/meta_boxes/display_options.php:852
2715
+ #: app/features/mec/meta_boxes/display_options.php:856
2716
+ #: app/features/mec/meta_boxes/display_options.php:884
2717
+ #: app/features/mec/meta_boxes/display_options.php:888
2718
+ #: app/features/mec/meta_boxes/display_options.php:895
2719
+ #: app/features/mec/meta_boxes/display_options.php:899
2720
+ #: app/features/mec/meta_boxes/display_options.php:906
2721
+ #: app/features/mec/meta_boxes/display_options.php:912
2722
+ #: app/features/mec/meta_boxes/display_options.php:942
2723
+ #: app/features/mec/meta_boxes/display_options.php:947
2724
+ #: app/features/mec/meta_boxes/display_options.php:990
2725
+ #: app/features/mec/meta_boxes/display_options.php:996
2726
+ #: app/features/mec/meta_boxes/display_options.php:1003
2727
+ #: app/features/mec/meta_boxes/display_options.php:1007
2728
+ #: app/features/mec/meta_boxes/display_options.php:1014
2729
+ #: app/features/mec/meta_boxes/display_options.php:1018
2730
+ #: app/features/mec/meta_boxes/display_options.php:1077
2731
+ #: app/features/mec/meta_boxes/display_options.php:1083
2732
+ #: app/features/mec/meta_boxes/display_options.php:1090
2733
+ #: app/features/mec/meta_boxes/display_options.php:1096
2734
+ #: app/features/mec/meta_boxes/display_options.php:1103
2735
+ #: app/features/mec/meta_boxes/display_options.php:1109
2736
+ #: app/features/mec/meta_boxes/display_options.php:1116
2737
+ #: app/features/mec/meta_boxes/display_options.php:1122
2738
+ #: app/features/mec/meta_boxes/display_options.php:1129
2739
+ #: app/features/mec/meta_boxes/display_options.php:1135
2740
  msgid "Date Formats"
2741
  msgstr ""
2742
 
2752
  #: app/features/mec/meta_boxes/display_options.php:86
2753
  #: app/features/mec/meta_boxes/display_options.php:224
2754
  #: app/features/mec/meta_boxes/display_options.php:248
2755
+ #: app/features/mec/meta_boxes/display_options.php:1084
2756
+ #: app/features/mec/meta_boxes/display_options.php:1097
2757
+ #: app/features/mec/meta_boxes/display_options.php:1110
2758
+ #: app/features/mec/meta_boxes/display_options.php:1123
2759
+ #: app/features/mec/meta_boxes/display_options.php:1136
2760
  msgid "Default values are d, F and l"
2761
  msgstr ""
2762
 
2771
  #: app/features/mec/meta_boxes/display_options.php:115
2772
  #: app/features/mec/meta_boxes/display_options.php:276
2773
  #: app/features/mec/meta_boxes/display_options.php:332
2774
+ #: app/features/mec/meta_boxes/display_options.php:787
2775
+ #: app/features/mec/meta_boxes/display_options.php:1034
2776
+ #: app/features/mec/meta_boxes/display_options.php:1142
2777
  msgid "Limit"
2778
  msgstr ""
2779
 
2785
  #: app/features/mec/meta_boxes/display_options.php:630
2786
  #: app/features/mec/meta_boxes/display_options.php:664
2787
  #: app/features/mec/meta_boxes/display_options.php:710
2788
+ #: app/features/mec/meta_boxes/display_options.php:1035
2789
+ #: app/features/mec/meta_boxes/display_options.php:1143
2790
  msgid "eg. 6"
2791
  msgstr ""
2792
 
2810
  #: app/features/mec/meta_boxes/display_options.php:385
2811
  #: app/features/mec/meta_boxes/display_options.php:528
2812
  #: app/features/mec/meta_boxes/display_options.php:692
2813
+ #: app/features/mec/meta_boxes/display_options.php:822
2814
  #: app/features/mec/settings.php:433 app/features/mec/settings.php:448
2815
  #: app/features/mec/settings.php:466 app/features/mec/settings.php:507
2816
  #: app/features/mec/settings.php:522 app/features/mec/settings.php:540
2854
  msgstr ""
2855
 
2856
  #: app/features/mec/meta_boxes/display_options.php:265
2857
+ #: app/features/mec/meta_boxes/display_options.php:1025
2858
  msgid "Count in row"
2859
  msgstr ""
2860
 
2862
  #: app/features/mec/meta_boxes/display_options.php:470
2863
  #: app/features/mec/meta_boxes/display_options.php:577
2864
  #: app/features/mec/meta_boxes/display_options.php:684
2865
+ #: app/features/mec/meta_boxes/display_options.php:937
2866
  #, php-format
2867
  msgid "%s is required to use this skin."
2868
  msgstr ""
2878
 
2879
  #: app/features/mec/meta_boxes/display_options.php:375
2880
  #: app/features/mec/meta_boxes/display_options.php:392
2881
+ #: app/libraries/main.php:329 app/libraries/main.php:1186
2882
+ #: app/libraries/main.php:1211
2883
  msgid "List View"
2884
  msgstr ""
2885
 
2886
  #: app/features/mec/meta_boxes/display_options.php:376
2887
  #: app/features/mec/meta_boxes/display_options.php:402
2888
+ #: app/libraries/main.php:333 app/libraries/main.php:1180
2889
+ #: app/libraries/main.php:1205
2890
  msgid "Yearly View"
2891
  msgstr ""
2892
 
2897
 
2898
  #: app/features/mec/meta_boxes/display_options.php:378
2899
  #: app/features/mec/meta_boxes/display_options.php:434
2900
+ #: app/libraries/main.php:336 app/libraries/main.php:1182
2901
+ #: app/libraries/main.php:1207
2902
  msgid "Weekly View"
2903
  msgstr ""
2904
 
2905
  #: app/features/mec/meta_boxes/display_options.php:379
2906
  #: app/features/mec/meta_boxes/display_options.php:444
2907
+ #: app/libraries/main.php:335 app/libraries/main.php:1183
2908
+ #: app/libraries/main.php:1208
2909
  msgid "Daily View"
2910
  msgstr ""
2911
 
2946
  #: app/features/mec/meta_boxes/display_options.php:551
2947
  #: app/features/mec/meta_boxes/display_options.php:634
2948
  #: app/features/mec/meta_boxes/display_options.php:668
2949
+ #: app/features/mec/meta_boxes/display_options.php:738
2950
  msgid "Next/Previous Buttons"
2951
  msgstr ""
2952
 
2961
  #: app/features/mec/meta_boxes/display_options.php:569
2962
  #: app/features/mec/meta_boxes/display_options.php:642
2963
  #: app/features/mec/meta_boxes/display_options.php:676
2964
+ #: app/features/mec/meta_boxes/display_options.php:746
2965
  msgid "For showing next/previous month navigation."
2966
  msgstr ""
2967
 
2991
  msgid "Next Week"
2992
  msgstr ""
2993
 
2994
+ #: app/features/mec/meta_boxes/display_options.php:714
2995
+ msgid "Number of Days"
2996
+ msgstr ""
2997
+
2998
+ #: app/features/mec/meta_boxes/display_options.php:722
2999
+ msgid "Week Start"
3000
+ msgstr ""
3001
+
3002
+ #: app/features/mec/meta_boxes/display_options.php:724
3003
+ msgid "Inherite from WordPress options"
3004
+ msgstr ""
3005
+
3006
+ #: app/features/mec/meta_boxes/display_options.php:781
3007
+ #: app/features/mec/meta_boxes/display_options.php:948
3008
  msgid "Default values are j and F"
3009
  msgstr ""
3010
 
3011
+ #: app/features/mec/meta_boxes/display_options.php:788
3012
  msgid "eg. 24"
3013
  msgstr ""
3014
 
3015
+ #: app/features/mec/meta_boxes/display_options.php:791
3016
  msgid "Filter By"
3017
  msgstr ""
3018
 
3019
+ #: app/features/mec/meta_boxes/display_options.php:793
3020
+ msgid "None"
3021
+ msgstr ""
3022
+
3023
+ #: app/features/mec/meta_boxes/display_options.php:802
3024
  msgid "Convert Masonry to Grid"
3025
  msgstr ""
3026
 
3027
+ #: app/features/mec/meta_boxes/display_options.php:803
3028
  msgid "For using this option, your events should come with image"
3029
  msgstr ""
3030
 
3031
+ #: app/features/mec/meta_boxes/display_options.php:834
3032
  msgid "Default values are d, M and Y"
3033
  msgstr ""
3034
 
3035
+ #: app/features/mec/meta_boxes/display_options.php:846
3036
  msgid "Default values are \"F d\" and l"
3037
  msgstr ""
3038
 
3039
+ #: app/features/mec/meta_boxes/display_options.php:857
3040
  msgid "Default value is \"l, F d Y\""
3041
  msgstr ""
3042
 
3043
+ #: app/features/mec/meta_boxes/display_options.php:878
3044
  msgid "Style 1"
3045
  msgstr ""
3046
 
3047
+ #: app/features/mec/meta_boxes/display_options.php:879
3048
  msgid "Style 2"
3049
  msgstr ""
3050
 
3051
+ #: app/features/mec/meta_boxes/display_options.php:880
3052
  msgid "Style 3"
3053
  msgstr ""
3054
 
3055
+ #: app/features/mec/meta_boxes/display_options.php:889
3056
+ #: app/features/mec/meta_boxes/display_options.php:900
3057
  msgid "Default value is \"j F Y\""
3058
  msgstr ""
3059
 
3060
+ #: app/features/mec/meta_boxes/display_options.php:913
3061
  msgid "Default values are j, F and Y"
3062
  msgstr ""
3063
 
3064
+ #: app/features/mec/meta_boxes/display_options.php:921
3065
+ #: app/features/mec/meta_boxes/display_options.php:956
3066
  msgid " -- Next Upcoming Event -- "
3067
  msgstr ""
3068
 
3069
+ #: app/features/mec/meta_boxes/display_options.php:928
3070
  msgid "Background Color"
3071
  msgstr ""
3072
 
3073
+ #: app/features/mec/meta_boxes/display_options.php:970
3074
+ #: app/features/mec/meta_boxes/display_options.php:1056
3075
  msgid "Type 1"
3076
  msgstr ""
3077
 
3078
+ #: app/features/mec/meta_boxes/display_options.php:971
3079
+ #: app/features/mec/meta_boxes/display_options.php:1057
3080
  msgid "Type 2"
3081
  msgstr ""
3082
 
3083
+ #: app/features/mec/meta_boxes/display_options.php:972
3084
+ #: app/features/mec/meta_boxes/display_options.php:1058
3085
  msgid "Type 3"
3086
  msgstr ""
3087
 
3088
+ #: app/features/mec/meta_boxes/display_options.php:973
3089
+ #: app/features/mec/meta_boxes/display_options.php:1059
3090
  msgid "Type 4"
3091
  msgstr ""
3092
 
3093
+ #: app/features/mec/meta_boxes/display_options.php:997
3094
  msgid "Default values are d, F and Y"
3095
  msgstr ""
3096
 
3097
+ #: app/features/mec/meta_boxes/display_options.php:1008
3098
+ #: app/features/mec/meta_boxes/display_options.php:1019
3099
  msgid "Default value is \"M d, Y\""
3100
  msgstr ""
3101
 
3102
+ #: app/features/mec/meta_boxes/display_options.php:1038
3103
+ #: app/features/mec/meta_boxes/display_options.php:1146
3104
  msgid "Auto Play Time"
3105
  msgstr ""
3106
 
3107
+ #: app/features/mec/meta_boxes/display_options.php:1039
3108
+ #: app/features/mec/meta_boxes/display_options.php:1147
3109
  msgid "eg. 3000 default is 3 second"
3110
  msgstr ""
3111
 
3112
+ #: app/features/mec/meta_boxes/display_options.php:1043
3113
  msgid "Archive Link"
3114
  msgstr ""
3115
 
3116
+ #: app/features/mec/meta_boxes/display_options.php:1047
3117
  msgid "Head Text"
3118
  msgstr ""
3119
 
3120
+ #: app/features/mec/meta_boxes/display_options.php:1060
3121
  msgid "Type 5"
3122
  msgstr ""
3123
 
3214
  #: app/features/mec/meta_boxes/search_form.php:216
3215
  #: app/features/mec/meta_boxes/search_form.php:223
3216
  #: app/features/mec/meta_boxes/search_form.php:230
3217
+ #: app/features/mec/meta_boxes/search_form.php:237
3218
+ #: app/features/mec/meta_boxes/search_form.php:244
3219
+ #: app/features/mec/meta_boxes/search_form.php:251
3220
+ #: app/features/mec/meta_boxes/search_form.php:258
3221
+ #: app/features/mec/meta_boxes/search_form.php:265
3222
  #: app/features/mec/meta_boxes/search_form.php:277
3223
  #: app/features/mec/meta_boxes/search_form.php:284
3224
  #: app/features/mec/meta_boxes/search_form.php:291
3225
+ #: app/features/mec/meta_boxes/search_form.php:298
3226
+ #: app/features/mec/meta_boxes/search_form.php:305
3227
+ #: app/features/mec/meta_boxes/search_form.php:312
3228
+ #: app/features/mec/meta_boxes/search_form.php:319
3229
+ #: app/features/mec/meta_boxes/search_form.php:326
3230
  #: app/features/mec/meta_boxes/search_form.php:338
3231
  #: app/features/mec/meta_boxes/search_form.php:345
3232
  #: app/features/mec/meta_boxes/search_form.php:352
3233
+ #: app/features/mec/meta_boxes/search_form.php:359
3234
+ #: app/features/mec/meta_boxes/search_form.php:366
3235
+ #: app/features/mec/meta_boxes/search_form.php:373
3236
+ #: app/features/mec/meta_boxes/search_form.php:380
3237
+ #: app/features/mec/meta_boxes/search_form.php:387
3238
  #: app/features/mec/meta_boxes/search_form.php:399
3239
  #: app/features/mec/meta_boxes/search_form.php:406
3240
+ #: app/features/mec/meta_boxes/search_form.php:413
3241
+ #: app/features/mec/meta_boxes/search_form.php:420
3242
+ #: app/features/mec/meta_boxes/search_form.php:427
3243
+ #: app/features/mec/meta_boxes/search_form.php:434
3244
+ #: app/features/mec/meta_boxes/search_form.php:441
3245
  #: app/features/mec/meta_boxes/search_form.php:453
3246
  #: app/features/mec/meta_boxes/search_form.php:460
3247
  #: app/features/mec/meta_boxes/search_form.php:467
3248
+ #: app/features/mec/meta_boxes/search_form.php:474
3249
+ #: app/features/mec/meta_boxes/search_form.php:481
3250
+ #: app/features/mec/meta_boxes/search_form.php:488
3251
+ #: app/features/mec/meta_boxes/search_form.php:495
3252
+ #: app/features/mec/meta_boxes/search_form.php:502
3253
  #: app/features/mec/meta_boxes/search_form.php:514
3254
  #: app/features/mec/meta_boxes/search_form.php:521
3255
  #: app/features/mec/meta_boxes/search_form.php:528
3256
+ #: app/features/mec/meta_boxes/search_form.php:535
3257
+ #: app/features/mec/meta_boxes/search_form.php:542
3258
+ #: app/features/mec/meta_boxes/search_form.php:549
3259
+ #: app/features/mec/meta_boxes/search_form.php:556
3260
+ #: app/features/mec/meta_boxes/search_form.php:563
3261
  #: app/features/mec/meta_boxes/search_form.php:575
3262
  #: app/features/mec/meta_boxes/search_form.php:582
3263
  #: app/features/mec/meta_boxes/search_form.php:589
3264
+ #: app/features/mec/meta_boxes/search_form.php:596
3265
+ #: app/features/mec/meta_boxes/search_form.php:603
3266
+ #: app/features/mec/meta_boxes/search_form.php:610
3267
+ #: app/features/mec/meta_boxes/search_form.php:617
3268
+ #: app/features/mec/meta_boxes/search_form.php:624
3269
  #: app/features/mec/settings.php:330 app/features/mec/settings.php:586
3270
  #: app/features/mec/settings.php:866
3271
  msgid "Disabled"
3274
  #: app/features/mec/meta_boxes/search_form.php:52
3275
  #: app/features/mec/meta_boxes/search_form.php:113
3276
  #: app/features/mec/meta_boxes/search_form.php:174
3277
+ #: app/features/mec/meta_boxes/search_form.php:235
3278
+ #: app/features/mec/meta_boxes/search_form.php:296
3279
+ #: app/features/mec/meta_boxes/search_form.php:357
3280
+ #: app/features/mec/meta_boxes/search_form.php:418
3281
+ #: app/features/mec/meta_boxes/search_form.php:472
3282
+ #: app/features/mec/meta_boxes/search_form.php:533
3283
+ #: app/features/mec/meta_boxes/search_form.php:594 app/features/speakers.php:56
3284
+ #: app/features/speakers.php:243 app/libraries/main.php:4424
3285
+ #: app/libraries/skins.php:859
3286
  msgid "Speaker"
3287
  msgstr ""
3288
 
3289
  #: app/features/mec/meta_boxes/search_form.php:59
3290
  #: app/features/mec/meta_boxes/search_form.php:120
3291
  #: app/features/mec/meta_boxes/search_form.php:181
3292
+ #: app/features/mec/meta_boxes/search_form.php:242
3293
+ #: app/features/mec/meta_boxes/search_form.php:303
3294
+ #: app/features/mec/meta_boxes/search_form.php:364
3295
+ #: app/features/mec/meta_boxes/search_form.php:425
3296
+ #: app/features/mec/meta_boxes/search_form.php:479
3297
+ #: app/features/mec/meta_boxes/search_form.php:540
3298
+ #: app/features/mec/meta_boxes/search_form.php:601 app/libraries/skins.php:885
3299
  msgid "Tag"
3300
  msgstr ""
3301
 
3302
  #: app/features/mec/meta_boxes/search_form.php:73
3303
  #: app/features/mec/meta_boxes/search_form.php:134
3304
  #: app/features/mec/meta_boxes/search_form.php:195
3305
+ #: app/features/mec/meta_boxes/search_form.php:256
3306
+ #: app/features/mec/meta_boxes/search_form.php:317
3307
+ #: app/features/mec/meta_boxes/search_form.php:378
3308
+ #: app/features/mec/meta_boxes/search_form.php:493
3309
+ #: app/features/mec/meta_boxes/search_form.php:554
3310
+ #: app/features/mec/meta_boxes/search_form.php:615
3311
  msgid "Month Filter"
3312
  msgstr ""
3313
 
3314
  #: app/features/mec/meta_boxes/search_form.php:80
3315
  #: app/features/mec/meta_boxes/search_form.php:141
3316
  #: app/features/mec/meta_boxes/search_form.php:202
3317
+ #: app/features/mec/meta_boxes/search_form.php:263
3318
+ #: app/features/mec/meta_boxes/search_form.php:324
3319
+ #: app/features/mec/meta_boxes/search_form.php:385
3320
+ #: app/features/mec/meta_boxes/search_form.php:439
3321
+ #: app/features/mec/meta_boxes/search_form.php:500
3322
+ #: app/features/mec/meta_boxes/search_form.php:561
3323
+ #: app/features/mec/meta_boxes/search_form.php:622
3324
  msgid "Text Search"
3325
  msgstr ""
3326
 
3327
  #: app/features/mec/meta_boxes/search_form.php:83
3328
  #: app/features/mec/meta_boxes/search_form.php:144
3329
  #: app/features/mec/meta_boxes/search_form.php:205
3330
+ #: app/features/mec/meta_boxes/search_form.php:266
3331
+ #: app/features/mec/meta_boxes/search_form.php:327
3332
+ #: app/features/mec/meta_boxes/search_form.php:388
3333
+ #: app/features/mec/meta_boxes/search_form.php:442
3334
+ #: app/features/mec/meta_boxes/search_form.php:503
3335
+ #: app/features/mec/meta_boxes/search_form.php:564
3336
+ #: app/features/mec/meta_boxes/search_form.php:625
3337
  msgid "Text Input"
3338
  msgstr ""
3339
 
3340
+ #: app/features/mec/meta_boxes/search_form.php:633
3341
+ #: app/features/mec/meta_boxes/search_form.php:639
3342
+ #: app/features/mec/meta_boxes/search_form.php:645
3343
+ #: app/features/mec/meta_boxes/search_form.php:651
3344
+ #: app/features/mec/meta_boxes/search_form.php:657
3345
+ #: app/features/mec/meta_boxes/search_form.php:663
3346
  msgid "No Search Options"
3347
  msgstr ""
3348
 
3349
+ #: app/features/mec/notifications.php:58 app/features/mec/notifications.php:154
3350
  msgid "Booking Notification"
3351
  msgstr ""
3352
 
3353
+ #: app/features/mec/notifications.php:64 app/features/mec/notifications.php:219
3354
  msgid "Booking Verification"
3355
  msgstr ""
3356
 
3357
+ #: app/features/mec/notifications.php:70 app/features/mec/notifications.php:271
3358
  #: app/features/mec/settings.php:1409
3359
  msgid "Booking Confirmation"
3360
  msgstr ""
3361
 
3362
+ #: app/features/mec/notifications.php:76 app/features/mec/notifications.php:323
3363
  msgid "Booking Cancellation"
3364
  msgstr ""
3365
 
3366
+ #: app/features/mec/notifications.php:82 app/features/mec/notifications.php:390
3367
  msgid "Admin Notification"
3368
  msgstr ""
3369
 
3370
+ #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:450
3371
  #: app/libraries/notifications.php:354
3372
  msgid "Booking Reminder"
3373
  msgstr ""
3374
 
3375
+ #: app/features/mec/notifications.php:94 app/features/mec/notifications.php:525
3376
  #: app/features/mec/support-page.php:80
3377
  msgid "New Event"
3378
  msgstr ""
3379
 
3380
+ #: app/features/mec/notifications.php:158
3381
  msgid "Enable booking notification"
3382
  msgstr ""
3383
 
3384
+ #: app/features/mec/notifications.php:162
3385
  msgid "It sends to attendee after booking for notifying him/her."
3386
  msgstr ""
3387
 
3388
+ #: app/features/mec/notifications.php:164
3389
+ #: app/features/mec/notifications.php:222
3390
+ #: app/features/mec/notifications.php:274
3391
+ #: app/features/mec/notifications.php:333
3392
+ #: app/features/mec/notifications.php:400
3393
+ #: app/features/mec/notifications.php:463
3394
+ #: app/features/mec/notifications.php:535
3395
  msgid "Email Subject"
3396
  msgstr ""
3397
 
3398
+ #: app/features/mec/notifications.php:168
3399
+ #: app/features/mec/notifications.php:172
3400
+ #: app/features/mec/notifications.php:226
3401
+ #: app/features/mec/notifications.php:230
3402
+ #: app/features/mec/notifications.php:278
3403
+ #: app/features/mec/notifications.php:282
3404
+ #: app/features/mec/notifications.php:337
3405
+ #: app/features/mec/notifications.php:341
3406
+ #: app/features/mec/notifications.php:404
3407
+ #: app/features/mec/notifications.php:408
3408
+ #: app/features/mec/notifications.php:467
3409
+ #: app/features/mec/notifications.php:471
3410
+ #: app/features/mec/notifications.php:482
3411
+ #: app/features/mec/notifications.php:539
3412
+ #: app/features/mec/notifications.php:543
3413
  msgid "Custom Recipients"
3414
  msgstr ""
3415
 
3416
+ #: app/features/mec/notifications.php:173
3417
+ #: app/features/mec/notifications.php:231
3418
+ #: app/features/mec/notifications.php:283
3419
+ #: app/features/mec/notifications.php:342
3420
+ #: app/features/mec/notifications.php:409
3421
+ #: app/features/mec/notifications.php:472
3422
+ #: app/features/mec/notifications.php:483
3423
+ #: app/features/mec/notifications.php:544
3424
  msgid "Insert comma separated emails for multiple recipients."
3425
  msgstr ""
3426
 
 
 
 
 
 
 
3427
  #: app/features/mec/notifications.php:180
3428
+ #: app/features/mec/notifications.php:353
 
 
3429
  #: app/features/mec/notifications.php:416
3430
+ msgid "Send the email to event organizer"
 
 
3431
  msgstr ""
3432
 
3433
  #: app/features/mec/notifications.php:183
3437
  #: app/features/mec/notifications.php:419
3438
  #: app/features/mec/notifications.php:489
3439
  #: app/features/mec/notifications.php:550
3440
+ msgid "Email Content"
 
 
 
 
 
 
 
 
 
3441
  msgstr ""
3442
 
3443
  #: app/features/mec/notifications.php:186
3446
  #: app/features/mec/notifications.php:363
3447
  #: app/features/mec/notifications.php:422
3448
  #: app/features/mec/notifications.php:492
3449
+ #: app/features/mec/notifications.php:553
3450
+ msgid "You can use following placeholders"
 
 
 
 
 
 
 
 
3451
  msgstr ""
3452
 
3453
  #: app/features/mec/notifications.php:188
3456
  #: app/features/mec/notifications.php:365
3457
  #: app/features/mec/notifications.php:424
3458
  #: app/features/mec/notifications.php:494
3459
+ msgid "First name of attendee"
3460
  msgstr ""
3461
 
3462
  #: app/features/mec/notifications.php:189
3465
  #: app/features/mec/notifications.php:366
3466
  #: app/features/mec/notifications.php:425
3467
  #: app/features/mec/notifications.php:495
3468
+ msgid "Last name of attendee"
3469
  msgstr ""
3470
 
3471
  #: app/features/mec/notifications.php:190
3474
  #: app/features/mec/notifications.php:367
3475
  #: app/features/mec/notifications.php:426
3476
  #: app/features/mec/notifications.php:496
3477
+ msgid "Email of attendee"
3478
  msgstr ""
3479
 
3480
  #: app/features/mec/notifications.php:191
3483
  #: app/features/mec/notifications.php:368
3484
  #: app/features/mec/notifications.php:427
3485
  #: app/features/mec/notifications.php:497
3486
+ msgid "Booked date of event"
 
3487
  msgstr ""
3488
 
3489
  #: app/features/mec/notifications.php:192
3492
  #: app/features/mec/notifications.php:369
3493
  #: app/features/mec/notifications.php:428
3494
  #: app/features/mec/notifications.php:498
3495
+ msgid "Booked time of event"
 
3496
  msgstr ""
3497
 
3498
  #: app/features/mec/notifications.php:193
3501
  #: app/features/mec/notifications.php:370
3502
  #: app/features/mec/notifications.php:429
3503
  #: app/features/mec/notifications.php:499
3504
+ msgid "Booking Price"
 
3505
  msgstr ""
3506
 
3507
  #: app/features/mec/notifications.php:194
3510
  #: app/features/mec/notifications.php:371
3511
  #: app/features/mec/notifications.php:430
3512
  #: app/features/mec/notifications.php:500
3513
+ #: app/features/mec/notifications.php:559
3514
+ msgid "Your website title"
3515
  msgstr ""
3516
 
3517
  #: app/features/mec/notifications.php:195
3520
  #: app/features/mec/notifications.php:372
3521
  #: app/features/mec/notifications.php:431
3522
  #: app/features/mec/notifications.php:501
3523
+ #: app/features/mec/notifications.php:560
3524
+ msgid "Your website URL"
3525
  msgstr ""
3526
 
3527
  #: app/features/mec/notifications.php:196
3530
  #: app/features/mec/notifications.php:373
3531
  #: app/features/mec/notifications.php:432
3532
  #: app/features/mec/notifications.php:502
3533
+ #: app/features/mec/notifications.php:561
3534
+ msgid "Your website description"
3535
  msgstr ""
3536
 
3537
  #: app/features/mec/notifications.php:197
3540
  #: app/features/mec/notifications.php:374
3541
  #: app/features/mec/notifications.php:433
3542
  #: app/features/mec/notifications.php:503
3543
+ msgid "Event title"
3544
  msgstr ""
3545
 
3546
  #: app/features/mec/notifications.php:198
3549
  #: app/features/mec/notifications.php:375
3550
  #: app/features/mec/notifications.php:434
3551
  #: app/features/mec/notifications.php:504
3552
+ msgid "Event link"
3553
  msgstr ""
3554
 
3555
  #: app/features/mec/notifications.php:199
3558
  #: app/features/mec/notifications.php:376
3559
  #: app/features/mec/notifications.php:435
3560
  #: app/features/mec/notifications.php:505
3561
+ msgid "Organizer name of booked event"
3562
  msgstr ""
3563
 
3564
  #: app/features/mec/notifications.php:200
3567
  #: app/features/mec/notifications.php:377
3568
  #: app/features/mec/notifications.php:436
3569
  #: app/features/mec/notifications.php:506
3570
+ msgid "Organizer tel of booked event"
3571
  msgstr ""
3572
 
3573
  #: app/features/mec/notifications.php:201
3574
+ #: app/features/mec/notifications.php:255
3575
+ #: app/features/mec/notifications.php:307
3576
+ #: app/features/mec/notifications.php:378
3577
+ #: app/features/mec/notifications.php:437
3578
+ #: app/features/mec/notifications.php:507
3579
+ msgid "Organizer email of booked event"
3580
  msgstr ""
3581
 
3582
  #: app/features/mec/notifications.php:202
3583
+ #: app/features/mec/notifications.php:256
3584
  #: app/features/mec/notifications.php:308
3585
+ #: app/features/mec/notifications.php:379
3586
+ #: app/features/mec/notifications.php:438
3587
  #: app/features/mec/notifications.php:508
3588
+ msgid "Location name of booked event"
3589
  msgstr ""
3590
 
3591
  #: app/features/mec/notifications.php:203
3592
+ #: app/features/mec/notifications.php:257
3593
  #: app/features/mec/notifications.php:309
3594
  #: app/features/mec/notifications.php:380
3595
  #: app/features/mec/notifications.php:439
3596
  #: app/features/mec/notifications.php:509
3597
+ msgid "Location address of booked event"
3598
  msgstr ""
3599
 
3600
  #: app/features/mec/notifications.php:204
3601
+ #: app/features/mec/notifications.php:382
3602
+ #: app/features/mec/notifications.php:441
3603
+ msgid "Full Attendee info such as booking form data, name, email etc."
 
3604
  msgstr ""
3605
 
3606
  #: app/features/mec/notifications.php:205
 
3607
  #: app/features/mec/notifications.php:311
3608
  #: app/features/mec/notifications.php:511
3609
+ msgid "Invoice Link"
3610
  msgstr ""
3611
 
3612
  #: app/features/mec/notifications.php:206
3613
  #: app/features/mec/notifications.php:259
3614
  #: app/features/mec/notifications.php:312
3615
+ #: app/features/mec/notifications.php:383
3616
+ #: app/features/mec/notifications.php:442
3617
  #: app/features/mec/notifications.php:512
3618
+ msgid "Total Attendees"
3619
+ msgstr ""
3620
+
3621
+ #: app/features/mec/notifications.php:207
3622
+ #: app/features/mec/notifications.php:260
3623
+ #: app/features/mec/notifications.php:313
3624
+ #: app/features/mec/notifications.php:513
3625
+ msgid "Ticket name"
3626
+ msgstr ""
3627
+
3628
+ #: app/features/mec/notifications.php:208
3629
+ #: app/features/mec/notifications.php:261
3630
+ #: app/features/mec/notifications.php:314
3631
+ #: app/features/mec/notifications.php:514
3632
+ msgid "Ticket time"
3633
+ msgstr ""
3634
+
3635
+ #: app/features/mec/notifications.php:209
3636
+ #: app/features/mec/notifications.php:262
3637
+ #: app/features/mec/notifications.php:315
3638
+ #: app/features/mec/notifications.php:515
3639
  msgid "Download ICS file"
3640
  msgstr ""
3641
 
3642
+ #: app/features/mec/notifications.php:220
3643
  msgid "It sends to attendee email for verifying their booking/email."
3644
  msgstr ""
3645
 
3646
+ #: app/features/mec/notifications.php:258
3647
  msgid "Email/Booking verification link."
3648
  msgstr ""
3649
 
3650
+ #: app/features/mec/notifications.php:272
3651
  msgid "It sends to attendee after confirming the booking by admin."
3652
  msgstr ""
3653
 
3654
+ #: app/features/mec/notifications.php:310
3655
+ #: app/features/mec/notifications.php:510
3656
  msgid "Booking cancellation link."
3657
  msgstr ""
3658
 
3659
+ #: app/features/mec/notifications.php:327
3660
  msgid "Enable cancellation notification"
3661
  msgstr ""
3662
 
3663
+ #: app/features/mec/notifications.php:331
3664
  msgid ""
3665
  "It sends to selected recipients after booking cancellation for notifying "
3666
  "them."
3667
  msgstr ""
3668
 
3669
+ #: app/features/mec/notifications.php:349
3670
  msgid "Send the email to admin"
3671
  msgstr ""
3672
 
3673
+ #: app/features/mec/notifications.php:357
3674
  msgid "Send the email to booking user"
3675
  msgstr ""
3676
 
3677
+ #: app/features/mec/notifications.php:381
3678
+ #: app/features/mec/notifications.php:440
3679
  msgid "Admin booking management link."
3680
  msgstr ""
3681
 
3682
+ #: app/features/mec/notifications.php:394
3683
  msgid "Enable admin notification"
3684
  msgstr ""
3685
 
3686
+ #: app/features/mec/notifications.php:398
3687
  msgid "It sends to admin to notify him/her that a new booking received."
3688
  msgstr ""
3689
 
3690
+ #: app/features/mec/notifications.php:454
3691
  msgid "Enable booking reminder notification"
3692
  msgstr ""
3693
 
3694
+ #: app/features/mec/notifications.php:460
3695
  #, php-format
3696
  msgid ""
3697
  "Set a cronjob to call %s file once per day otherwise it won't send the "
3699
  "send the reminders multiple times."
3700
  msgstr ""
3701
 
3702
+ #: app/features/mec/notifications.php:460
3703
  msgid "only once per day"
3704
  msgstr ""
3705
 
3706
+ #: app/features/mec/notifications.php:478
3707
  msgid "Days"
3708
  msgstr ""
3709
 
3710
+ #: app/features/mec/notifications.php:529
3711
  msgid "Enable new event notification"
3712
  msgstr ""
3713
 
3714
+ #: app/features/mec/notifications.php:533
3715
  msgid ""
3716
  "It sends after adding a new event from frontend event submission or from "
3717
  "website backend."
3718
  msgstr ""
3719
 
3720
+ #: app/features/mec/notifications.php:555
3721
  msgid "Title of event"
3722
  msgstr ""
3723
 
3724
+ #: app/features/mec/notifications.php:556
3725
  msgid "Link of event"
3726
  msgstr ""
3727
 
3728
+ #: app/features/mec/notifications.php:557
3729
  msgid "Status of event"
3730
  msgstr ""
3731
 
3732
+ #: app/features/mec/notifications.php:558 app/features/mec/settings.php:1249
3733
  #: app/features/mec/settings.php:1253
3734
  msgid "Event Note"
3735
  msgstr ""
3736
 
3737
+ #: app/features/mec/notifications.php:562
3738
  msgid "Admin events management link."
3739
  msgstr ""
3740
 
3741
+ #: app/features/mec/notifications.php:664
3742
+ #: app/features/mec/notifications.php:686 app/features/mec/settings.php:1786
3743
+ #: app/features/mec/settings.php:1808 app/libraries/main.php:4643
3744
  msgid "Verified"
3745
  msgstr ""
3746
 
3747
+ #: app/features/mec/notifications.php:688 app/features/mec/settings.php:1810
3748
  msgid "Please Refresh Page"
3749
  msgstr ""
3750
 
3867
  msgstr ""
3868
 
3869
  #: app/features/mec/settings.php:354 app/features/mec/settings.php:364
3870
+ #: app/libraries/main.php:4428
3871
  msgid "Weekdays"
3872
  msgstr ""
3873
 
4057
  msgstr ""
4058
 
4059
  #: app/features/mec/settings.php:702
4060
+ msgid "Disable Block Editor (Gutenberg)"
4061
  msgstr ""
4062
 
4063
  #: app/features/mec/settings.php:705
4064
+ msgid "Disable Block Editor"
4065
  msgstr ""
4066
 
4067
  #: app/features/mec/settings.php:709
4068
+ msgid "Block Editor"
4069
  msgstr ""
4070
 
4071
  #: app/features/mec/settings.php:710
4072
  msgid ""
4073
+ "If you want to use the new WordPress block editor you should keep this "
4074
+ "checkbox unchecked."
4075
  msgstr ""
4076
 
4077
  #: app/features/mec/settings.php:716 app/features/mec/settings.php:723
4579
  "styles."
4580
  msgstr ""
4581
 
4582
+ #: app/features/mec/styling.php:10 app/features/mec/styling.php:240
4583
+ #: app/features/mec/styling.php:266
4584
  msgid "Default Font"
4585
  msgstr ""
4586
 
4600
  msgid "Custom Color Skin"
4601
  msgstr ""
4602
 
4603
+ #: app/features/mec/styling.php:189
4604
+ msgid ""
4605
+ "If you want to select a predefined color skin, you must clear the color of "
4606
+ "this item"
4607
+ msgstr ""
4608
+
4609
+ #: app/features/mec/styling.php:194
4610
  msgid "Advanced Color Options (shortcodes)"
4611
  msgstr ""
4612
 
4613
+ #: app/features/mec/styling.php:206
4614
  msgid "Title Hover"
4615
  msgstr ""
4616
 
4617
+ #: app/features/mec/styling.php:223
4618
  msgid "Typography"
4619
  msgstr ""
4620
 
4621
+ #: app/features/mec/styling.php:225
4622
  msgid "Heading (Events Title) Font Family"
4623
  msgstr ""
4624
 
4625
+ #: app/features/mec/styling.php:251
4626
  msgid "Paragraph Font Family"
4627
  msgstr ""
4628
 
4629
+ #: app/features/mec/styling.php:278 app/features/mec/styling.php:284
4630
  msgid "Disable Google Fonts"
4631
  msgstr ""
4632
 
4633
+ #: app/features/mec/styling.php:285
4634
  msgid "To be GDPR compliant you may need to disable Google fonts!"
4635
  msgstr ""
4636
 
4637
+ #: app/features/mec/styling.php:294
4638
  msgid "Container Width"
4639
  msgstr ""
4640
 
4641
+ #: app/features/mec/styling.php:296 app/features/mec/styling.php:301
4642
  msgid "Desktop Normal Screens"
4643
  msgstr ""
4644
 
4645
+ #: app/features/mec/styling.php:302 app/features/mec/styling.php:315
4646
  msgid "You can enter your theme container size in this field"
4647
  msgstr ""
4648
 
4649
+ #: app/features/mec/styling.php:309 app/features/mec/styling.php:314
4650
  msgid "Desktop Large Screens"
4651
  msgstr ""
4652
 
4992
  msgstr ""
4993
 
4994
  #: app/features/organizers.php:105 app/features/organizers.php:147
4995
+ #: app/features/speakers.php:177
4996
  msgid "Insert organizer phone number."
4997
  msgstr ""
4998
 
4999
  #: app/features/organizers.php:113 app/features/organizers.php:151
5000
+ #: app/features/speakers.php:181
5001
  msgid "Insert organizer email address."
5002
  msgstr ""
5003
 
5051
  msgid "eg. https://webnus.net"
5052
  msgstr ""
5053
 
5054
+ #: app/features/organizers.php:306 app/libraries/main.php:4452
5055
  #: app/skins/single.php:295
5056
  msgid "Other Organizers"
5057
  msgstr ""
5070
  msgid "#"
5071
  msgstr ""
5072
 
5073
+ #: app/features/profile/profile.php:34 app/libraries/main.php:2510
5074
  msgid "Status"
5075
  msgstr ""
5076
 
5077
+ #: app/features/profile/profile.php:37 app/libraries/main.php:1654
5078
  msgid "Attendees"
5079
  msgstr ""
5080
 
5087
  msgid "<i class=\"mec-sl-eye\"></i> %s"
5088
  msgstr ""
5089
 
5090
+ #: app/features/profile/profile.php:96 app/libraries/main.php:1668
5091
+ #: app/libraries/main.php:4450
5092
  msgid "Ticket"
5093
  msgstr ""
5094
 
5100
  msgid "No bookings found!"
5101
  msgstr ""
5102
 
5103
+ #: app/features/speakers.php:104 app/features/speakers.php:172
5104
+ #: app/features/speakers.php:244
5105
  msgid "Job Title"
5106
  msgstr ""
5107
 
5108
+ #: app/features/speakers.php:107 app/features/speakers.php:173
5109
  msgid "Insert speaker job title."
5110
  msgstr ""
5111
 
5112
+ #: app/features/speakers.php:115
5113
  msgid "Insert speaker phone number."
5114
  msgstr ""
5115
 
5116
+ #: app/features/speakers.php:123
5117
  msgid "Insert speaker email address."
5118
  msgstr ""
5119
 
5120
+ #: app/features/speakers.php:128 app/features/speakers.php:184
5121
  msgid "Facebook Page"
5122
  msgstr ""
5123
 
5124
+ #: app/features/speakers.php:131 app/features/speakers.php:185
5125
  msgid "Insert URL of Facebook Page"
5126
  msgstr ""
5127
 
5128
+ #: app/features/speakers.php:136 app/features/speakers.php:188
5129
+ msgid "Instagram"
 
5130
  msgstr ""
5131
 
5132
+ #: app/features/speakers.php:139 app/features/speakers.php:189
5133
+ msgid "Insert URL of Instagram"
5134
  msgstr ""
5135
 
5136
+ #: app/features/speakers.php:144 app/features/speakers.php:192
5137
  msgid "Twitter Page"
5138
  msgstr ""
5139
 
5140
+ #: app/features/speakers.php:147 app/features/speakers.php:193
5141
  msgid "Insert URL of Twitter Page"
5142
  msgstr ""
5143
 
5155
  msgid "Download Invoice"
5156
  msgstr ""
5157
 
5158
+ #: app/libraries/factory.php:157
5159
  msgid "M.E. Calendar"
5160
  msgstr ""
5161
 
5162
+ #: app/libraries/factory.php:196
5163
  msgctxt "plugin link"
5164
  msgid "Upgrade to Pro Version"
5165
  msgstr ""
5166
 
5167
+ #: app/libraries/factory.php:214
5168
  msgctxt "plugin link"
5169
  msgid "Settings"
5170
  msgstr ""
5171
 
5172
+ #: app/libraries/factory.php:219
5173
  msgctxt "plugin link"
5174
  msgid "Upgrade"
5175
  msgstr ""
5176
 
5177
+ #: app/libraries/factory.php:316
5178
  msgid "day"
5179
  msgstr ""
5180
 
5181
+ #: app/libraries/factory.php:317 app/modules/countdown/details.php:123
5182
  #: app/skins/available_spot/tpl.php:146 app/skins/countdown/tpl.php:131
5183
  #: app/skins/countdown/tpl.php:175 app/skins/countdown/tpl.php:224
5184
  msgid "days"
5185
  msgstr ""
5186
 
5187
+ #: app/libraries/factory.php:318
5188
  msgid "hour"
5189
  msgstr ""
5190
 
5191
+ #: app/libraries/factory.php:319 app/modules/countdown/details.php:130
5192
  #: app/skins/available_spot/tpl.php:150 app/skins/countdown/tpl.php:137
5193
  #: app/skins/countdown/tpl.php:181 app/skins/countdown/tpl.php:230
5194
  msgid "hours"
5195
  msgstr ""
5196
 
5197
+ #: app/libraries/factory.php:320
5198
  msgid "minute"
5199
  msgstr ""
5200
 
5201
+ #: app/libraries/factory.php:321 app/modules/countdown/details.php:137
5202
  #: app/skins/available_spot/tpl.php:154 app/skins/countdown/tpl.php:143
5203
  #: app/skins/countdown/tpl.php:187 app/skins/countdown/tpl.php:236
5204
  msgid "minutes"
5205
  msgstr ""
5206
 
5207
+ #: app/libraries/factory.php:322
5208
  msgid "second"
5209
  msgstr ""
5210
 
5211
+ #: app/libraries/factory.php:323 app/modules/countdown/details.php:144
5212
  #: app/skins/available_spot/tpl.php:158 app/skins/countdown/tpl.php:149
5213
  #: app/skins/countdown/tpl.php:193 app/skins/countdown/tpl.php:242
5214
  msgid "seconds"
5215
  msgstr ""
5216
 
5217
+ #: app/libraries/factory.php:366
5218
  msgid "MEC Single Sidebar"
5219
  msgstr ""
5220
 
5221
+ #: app/libraries/factory.php:367
5222
  msgid "Custom sidebar for single and modal page of MEC."
5223
  msgstr ""
5224
 
5226
  msgid "There is no excerpt because this is a protected post."
5227
  msgstr ""
5228
 
5229
+ #: app/libraries/main.php:330 app/libraries/main.php:1187
5230
+ #: app/libraries/main.php:1212
5231
  msgid "Grid View"
5232
  msgstr ""
5233
 
5234
+ #: app/libraries/main.php:331 app/libraries/main.php:1188
5235
+ #: app/libraries/main.php:1213
5236
  msgid "Agenda View"
5237
  msgstr ""
5238
 
5239
+ #: app/libraries/main.php:332 app/libraries/main.php:1179
5240
+ #: app/libraries/main.php:1204
5241
  msgid "Full Calendar"
5242
  msgstr ""
5243
 
5244
+ #: app/libraries/main.php:334 app/libraries/main.php:1181
5245
+ #: app/libraries/main.php:1206
5246
  msgid "Calendar/Monthly View"
5247
  msgstr ""
5248
 
5249
+ #: app/libraries/main.php:337 app/libraries/main.php:1184
5250
+ #: app/libraries/main.php:1209
5251
  msgid "Timetable View"
5252
  msgstr ""
5253
 
5254
+ #: app/libraries/main.php:338 app/libraries/main.php:1185
5255
+ #: app/libraries/main.php:1210
5256
  msgid "Masonry View"
5257
  msgstr ""
5258
 
5259
+ #: app/libraries/main.php:339 app/libraries/main.php:1189
5260
+ #: app/libraries/main.php:1214
5261
  msgid "Map View"
5262
  msgstr ""
5263
 
5281
  msgid "Slider View"
5282
  msgstr ""
5283
 
5284
+ #: app/libraries/main.php:382 app/libraries/main.php:4430
5285
  msgid "SU"
5286
  msgstr ""
5287
 
5288
+ #: app/libraries/main.php:383 app/libraries/main.php:4431
5289
  msgid "MO"
5290
  msgstr ""
5291
 
5292
+ #: app/libraries/main.php:384 app/libraries/main.php:4432
5293
  msgid "TU"
5294
  msgstr ""
5295
 
5296
+ #: app/libraries/main.php:385 app/libraries/main.php:4433
5297
  msgid "WE"
5298
  msgstr ""
5299
 
5300
+ #: app/libraries/main.php:386 app/libraries/main.php:4434
5301
  msgid "TH"
5302
  msgstr ""
5303
 
5304
+ #: app/libraries/main.php:387 app/libraries/main.php:4435
5305
  msgid "FR"
5306
  msgstr ""
5307
 
5308
+ #: app/libraries/main.php:388 app/libraries/main.php:4436
5309
  msgid "SA"
5310
  msgstr ""
5311
 
5312
+ #: app/libraries/main.php:1042
5313
  msgid "Events at this location"
5314
  msgstr ""
5315
 
5316
+ #: app/libraries/main.php:1042
5317
  msgid "Event at this location"
5318
  msgstr ""
5319
 
5320
+ #: app/libraries/main.php:1083
5321
  msgid "Facebook"
5322
  msgstr ""
5323
 
5325
  msgid "Twitter"
5326
  msgstr ""
5327
 
5328
+ #: app/libraries/main.php:1085 app/libraries/main.php:1135
5329
  msgid "Linkedin"
5330
  msgstr ""
5331
 
5332
+ #: app/libraries/main.php:1086 app/libraries/main.php:1168
5333
  msgid "VK"
5334
  msgstr ""
5335
 
5338
  msgstr ""
5339
 
5340
  #: app/libraries/main.php:1120
 
 
 
 
5341
  msgid "Tweet"
5342
  msgstr ""
5343
 
5344
+ #: app/libraries/main.php:1190
5345
  msgid "Custom Shortcode"
5346
  msgstr ""
5347
 
5348
+ #: app/libraries/main.php:1549
5349
  msgid "Your booking successfully verified."
5350
  msgstr ""
5351
 
5352
+ #: app/libraries/main.php:1550
5353
  msgid "Your booking cannot verify!"
5354
  msgstr ""
5355
 
5356
+ #: app/libraries/main.php:1562
5357
  msgid "Your booking successfully canceled."
5358
  msgstr ""
5359
 
5360
+ #: app/libraries/main.php:1563
5361
  msgid "Your booking cannot be canceled."
5362
  msgstr ""
5363
 
5364
+ #: app/libraries/main.php:1567
5365
  msgid "You canceled the payment successfully."
5366
  msgstr ""
5367
 
5368
+ #: app/libraries/main.php:1571
5369
  msgid "You returned from payment gateway successfully."
5370
  msgstr ""
5371
 
5372
+ #: app/libraries/main.php:1595
5373
  msgid "Cannot find the booking!"
5374
  msgstr ""
5375
 
5376
+ #: app/libraries/main.php:1595
5377
  msgid "Booking is invalid."
5378
  msgstr ""
5379
 
5380
+ #: app/libraries/main.php:1624
5381
  #, php-format
5382
  msgid "%s Invoice"
5383
  msgstr ""
5384
 
5385
+ #: app/libraries/main.php:1645
5386
  msgid "Transaction ID"
5387
  msgstr ""
5388
 
5389
+ #: app/libraries/main.php:1698
5390
  msgid "Billing"
5391
  msgstr ""
5392
 
5393
+ #: app/libraries/main.php:1709
5394
  msgid "Total"
5395
  msgstr ""
5396
 
5397
+ #: app/libraries/main.php:1742
5398
  msgid "Security nonce is not valid."
5399
  msgstr ""
5400
 
5401
+ #: app/libraries/main.php:1742 app/libraries/main.php:1774
5402
  msgid "iCal export stopped!"
5403
  msgstr ""
5404
 
5405
+ #: app/libraries/main.php:1774
5406
  msgid "Request is not valid."
5407
  msgstr ""
5408
 
5409
+ #: app/libraries/main.php:2094 app/libraries/main.php:2124
5410
+ #: app/libraries/main.php:2153 app/libraries/main.php:2183
5411
+ #: app/libraries/main.php:2212 app/libraries/main.php:2241
5412
+ #: app/libraries/main.php:2270 app/libraries/main.php:2299
5413
+ #: app/libraries/main.php:2328 app/libraries/main.php:2352
5414
+ #: app/libraries/main.php:2396 app/libraries/main.php:2440
5415
+ #: app/libraries/main.php:2487 app/libraries/main.php:2533
5416
  msgid "Sort"
5417
  msgstr ""
5418
 
5419
+ #: app/libraries/main.php:2100 app/libraries/main.php:2130
5420
+ #: app/libraries/main.php:2159 app/libraries/main.php:2189
5421
+ #: app/libraries/main.php:2218 app/libraries/main.php:2247
5422
+ #: app/libraries/main.php:2276 app/libraries/main.php:2305
5423
+ #: app/libraries/main.php:2358 app/libraries/main.php:2402
5424
+ #: app/libraries/main.php:2446 app/libraries/main.php:2493
5425
  msgid "Required Field"
5426
  msgstr ""
5427
 
5428
+ #: app/libraries/main.php:2106 app/libraries/main.php:2136
5429
+ #: app/libraries/main.php:2165 app/libraries/main.php:2195
5430
+ #: app/libraries/main.php:2224 app/libraries/main.php:2253
5431
+ #: app/libraries/main.php:2282 app/libraries/main.php:2311
5432
+ #: app/libraries/main.php:2364 app/libraries/main.php:2408
5433
+ #: app/libraries/main.php:2452 app/libraries/main.php:2499
5434
  msgid "Insert a label for this field"
5435
  msgstr ""
5436
 
5437
+ #: app/libraries/main.php:2334
5438
  msgid "HTML and shortcode are allowed."
5439
  msgstr ""
5440
 
5441
+ #: app/libraries/main.php:2377 app/libraries/main.php:2421
5442
+ #: app/libraries/main.php:2465
5443
  msgid "Option"
5444
  msgstr ""
5445
 
5446
+ #: app/libraries/main.php:2499
5447
  #, php-format
5448
  msgid "Instead of %s, the page title with a link will be show."
5449
  msgstr ""
5450
 
5451
+ #: app/libraries/main.php:2501
5452
  msgid "Agreement Page"
5453
  msgstr ""
5454
 
5455
+ #: app/libraries/main.php:2512
5456
  msgid "Checked by default"
5457
  msgstr ""
5458
 
5459
+ #: app/libraries/main.php:2513
5460
  msgid "Unchecked by default"
5461
  msgstr ""
5462
 
5463
+ #: app/libraries/main.php:2535
5464
  msgid "Insert a label for this option"
5465
  msgstr ""
5466
 
5467
+ #: app/libraries/main.php:2550
5468
  msgid "Free"
5469
  msgstr ""
5470
 
5471
+ #: app/libraries/main.php:3102 app/libraries/main.php:4658
5472
+ msgid "M.E. Calender"
5473
+ msgstr ""
5474
+
5475
+ #: app/libraries/main.php:3257
5476
  #, php-format
5477
  msgid "Copy of %s"
5478
  msgstr ""
5479
 
5480
+ #: app/libraries/main.php:3920
5481
  msgid "Booked an event."
5482
  msgstr ""
5483
 
5484
+ #: app/libraries/main.php:3961
5485
  #, php-format
5486
  msgid "%s booked %s event."
5487
  msgstr ""
5488
 
5489
+ #: app/libraries/main.php:4413
5490
  msgid "Taxonomies"
5491
  msgstr ""
5492
 
5493
+ #: app/libraries/main.php:4415
5494
  msgid "Category Plural Label"
5495
  msgstr ""
5496
 
5497
+ #: app/libraries/main.php:4416
5498
  msgid "Category Singular Label"
5499
  msgstr ""
5500
 
5501
+ #: app/libraries/main.php:4417
5502
  msgid "Label Plural Label"
5503
  msgstr ""
5504
 
5505
+ #: app/libraries/main.php:4418
5506
  msgid "Label Singular Label"
5507
  msgstr ""
5508
 
5509
+ #: app/libraries/main.php:4418
5510
  msgid "label"
5511
  msgstr ""
5512
 
5513
+ #: app/libraries/main.php:4419
5514
  msgid "Location Plural Label"
5515
  msgstr ""
5516
 
5517
+ #: app/libraries/main.php:4420
5518
  msgid "Location Singular Label"
5519
  msgstr ""
5520
 
5521
+ #: app/libraries/main.php:4421
5522
  msgid "Organizer Plural Label"
5523
  msgstr ""
5524
 
5525
+ #: app/libraries/main.php:4422
5526
  msgid "Organizer Singular Label"
5527
  msgstr ""
5528
 
5529
+ #: app/libraries/main.php:4423
5530
  msgid "Speaker Plural Label"
5531
  msgstr ""
5532
 
5533
+ #: app/libraries/main.php:4424
5534
  msgid "Speaker Singular Label"
5535
  msgstr ""
5536
 
5537
+ #: app/libraries/main.php:4430
5538
  msgid "Sunday abbreviation"
5539
  msgstr ""
5540
 
5541
+ #: app/libraries/main.php:4431
5542
  msgid "Monday abbreviation"
5543
  msgstr ""
5544
 
5545
+ #: app/libraries/main.php:4432
5546
  msgid "Tuesday abbreviation"
5547
  msgstr ""
5548
 
5549
+ #: app/libraries/main.php:4433
5550
  msgid "Wednesday abbreviation"
5551
  msgstr ""
5552
 
5553
+ #: app/libraries/main.php:4434
5554
  msgid "Thursday abbreviation"
5555
  msgstr ""
5556
 
5557
+ #: app/libraries/main.php:4435
5558
  msgid "Friday abbreviation"
5559
  msgstr ""
5560
 
5561
+ #: app/libraries/main.php:4436
5562
  msgid "Saturday abbreviation"
5563
  msgstr ""
5564
 
5565
+ #: app/libraries/main.php:4440
5566
  msgid "Others"
5567
  msgstr ""
5568
 
5569
+ #: app/libraries/main.php:4442
5570
  msgid "Booking Success Message"
5571
  msgstr ""
5572
 
5573
+ #: app/libraries/main.php:4442
5574
  msgid ""
5575
  "Thanks for your booking. Your tickets booked, booking verification might be "
5576
  "needed, please check your email."
5577
  msgstr ""
5578
 
5579
+ #: app/libraries/main.php:4443 app/widgets/single.php:131
5580
  msgid "Register Button"
5581
  msgstr ""
5582
 
5583
+ #: app/libraries/main.php:4443 app/skins/available_spot/tpl.php:204
5584
  #: app/skins/carousel/render.php:148 app/skins/carousel/render.php:175
5585
  #: app/skins/grid/render.php:116 app/skins/grid/render.php:151
5586
  #: app/skins/grid/render.php:188 app/skins/grid/render.php:216
5587
  #: app/skins/list/render.php:102 app/skins/list/render.php:185
5588
+ #: app/skins/masonry/render.php:175 app/skins/single/default.php:229
5589
  #: app/skins/single/default.php:231 app/skins/single/default.php:440
5590
  #: app/skins/single/default.php:442 app/skins/single/m1.php:126
5591
  #: app/skins/single/m1.php:128 app/skins/single/m2.php:58
5596
  msgid "REGISTER"
5597
  msgstr ""
5598
 
5599
+ #: app/libraries/main.php:4444
5600
  msgid "View Detail Button"
5601
  msgstr ""
5602
 
5603
+ #: app/libraries/main.php:4444 app/skins/carousel/render.php:148
5604
  #: app/skins/carousel/render.php:175 app/skins/grid/render.php:116
5605
  #: app/skins/grid/render.php:151 app/skins/grid/render.php:188
5606
  #: app/skins/grid/render.php:216 app/skins/list/render.php:102
5607
+ #: app/skins/list/render.php:185 app/skins/masonry/render.php:175
5608
  #: app/skins/slider/render.php:109 app/skins/slider/render.php:154
5609
  #: app/skins/slider/render.php:198 app/skins/slider/render.php:243
5610
  #: app/skins/slider/render.php:299
5611
  msgid "View Detail"
5612
  msgstr ""
5613
 
5614
+ #: app/libraries/main.php:4445
5615
  msgid "Event Detail Button"
5616
  msgstr ""
5617
 
5618
+ #: app/libraries/main.php:4445 app/skins/countdown/tpl.php:217
5619
  msgid "Event Detail"
5620
  msgstr ""
5621
 
5622
+ #: app/libraries/main.php:4447
5623
  msgid "More Info Link"
5624
  msgstr ""
5625
 
5626
+ #: app/libraries/main.php:4450
5627
  msgid "Ticket (Singular)"
5628
  msgstr ""
5629
 
5630
+ #: app/libraries/main.php:4451
5631
  msgid "Tickets (Plural)"
5632
  msgstr ""
5633
 
5634
+ #: app/libraries/main.php:4518
5635
  msgid "EventON"
5636
  msgstr ""
5637
 
5638
+ #: app/libraries/main.php:4519
5639
  msgid "The Events Calendar"
5640
  msgstr ""
5641
 
5642
+ #: app/libraries/main.php:4520
5643
  msgid "Events Schedule WP Plugin"
5644
  msgstr ""
5645
 
5646
+ #: app/libraries/main.php:4521
5647
  msgid "Calendarize It"
5648
  msgstr ""
5649
 
5650
+ #: app/libraries/main.php:4595 app/libraries/main.php:4615
5651
  msgid "Confirmed"
5652
  msgstr ""
5653
 
5654
+ #: app/libraries/main.php:4596 app/libraries/main.php:4623
5655
  msgid "Rejected"
5656
  msgstr ""
5657
 
5658
+ #: app/libraries/main.php:4597 app/libraries/main.php:4619
5659
  msgid "Pending"
5660
  msgstr ""
5661
 
5662
+ #: app/libraries/main.php:4645
5663
  msgid "Waiting"
5664
  msgstr ""
5665
 
5688
  msgstr ""
5689
 
5690
  #: app/libraries/notifications.php:535 app/libraries/render.php:436
5691
+ #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
5692
  #: app/skins/single/default.php:83 app/skins/single/default.php:294
5693
+ #: app/skins/single/m1.php:34 app/skins/single/modern.php:184
5694
  msgid "All of the day"
5695
  msgstr ""
5696
 
5718
  msgid "Skin controller does not exist."
5719
  msgstr ""
5720
 
5721
+ #: app/libraries/skins.php:932
5722
  msgid "Ignore month and years"
5723
  msgstr ""
5724
 
5787
  msgid "The event is ongoing."
5788
  msgstr ""
5789
 
5790
+ #: app/modules/googlemap/details.php:96
5791
  msgid "Address from ..."
5792
  msgstr ""
5793
 
5794
+ #: app/modules/googlemap/details.php:100
5795
  msgid "Get Directions"
5796
  msgstr ""
5797
 
5818
  msgid "Time: %s"
5819
  msgstr ""
5820
 
5821
+ #: app/modules/next-event/details.php:82
5822
  msgid "Next Occurrence"
5823
  msgstr ""
5824
 
5825
+ #: app/modules/next-event/details.php:82
5826
  msgid "Next Event"
5827
  msgstr ""
5828
 
5829
+ #: app/modules/next-event/details.php:86
5830
  msgid "Go to occurrence page"
5831
  msgstr ""
5832
 
5833
+ #: app/modules/next-event/details.php:95 app/skins/single/default.php:77
5834
  #: app/skins/single/default.php:288 app/skins/single/m1.php:28
5835
+ #: app/skins/single/modern.php:178
5836
  msgid "Time"
5837
  msgstr ""
5838
 
5913
  msgid "No event"
5914
  msgstr ""
5915
 
5916
+ #: app/skins/full_calendar/tpl.php:112
5917
  msgid "List"
5918
  msgstr ""
5919
 
5956
  msgstr ""
5957
 
5958
  #: app/skins/single/default.php:40 app/skins/single/m1.php:236
5959
+ #: app/skins/single/m2.php:174 app/skins/single/modern.php:256
5960
  msgid "Sold out!"
5961
  msgstr ""
5962
 
5963
  #: app/skins/single/default.php:50 app/skins/single/m1.php:245
5964
+ #: app/skins/single/m2.php:183 app/skins/single/modern.php:266
5965
  msgid "Tags: "
5966
  msgstr ""
5967
 
languages/modern-events-calendar-lite-es_ES.mo CHANGED
Binary file
languages/modern-events-calendar-lite-es_ES.po CHANGED
@@ -4,8 +4,8 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Plugins - Modern Events Calendar Lite - Stable (latest "
6
  "release)\n"
7
- "POT-Creation-Date: 2019-06-10 15:04+0430\n"
8
- "PO-Revision-Date: 2019-06-10 15:04+0430\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: es\n"
@@ -21,12 +21,12 @@ msgstr ""
21
  msgid "Modern Events Calendar"
22
  msgstr "Modern Events Calendar"
23
 
24
- #: app/addons/KC.php:70 app/addons/VC.php:64 app/features/mec/styling.php:212
25
  msgid "Content"
26
  msgstr "Contenido"
27
 
28
- #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:348
29
- #: app/features/mec.php:378 app/features/mec.php:404
30
  msgid "Shortcode"
31
  msgstr "Shortcode"
32
 
@@ -46,7 +46,7 @@ msgstr "General"
46
  msgid "Select Type"
47
  msgstr "Seleccionar tipo"
48
 
49
- #: app/features/colors.php:50 app/features/fes/form.php:567
50
  #: app/features/mec/settings.php:1195
51
  msgid "Event Color"
52
  msgstr "Color del evento"
@@ -61,7 +61,7 @@ msgstr "Color del evento"
61
  msgid "Settings"
62
  msgstr "Ajustes"
63
 
64
- #: app/features/contextual.php:62 app/features/events.php:1700
65
  #: app/features/mec/gateways.php:33 app/features/mec/ie.php:29
66
  #: app/features/mec/messages.php:33 app/features/mec/notifications.php:32
67
  #: app/features/mec/regform.php:68 app/features/mec/regform.php:131
@@ -106,7 +106,7 @@ msgstr ""
106
 
107
  #: app/features/contextual.php:77 app/features/mec/gateways.php:49
108
  #: app/features/mec/ie.php:45 app/features/mec/messages.php:49
109
- #: app/features/mec/notifications.php:48 app/features/mec/regform.php:83
110
  #: app/features/mec/settings.php:233 app/features/mec/styles.php:49
111
  #: app/features/mec/styling.php:71 app/features/mec/support.php:45
112
  msgid "Notifications"
@@ -237,12 +237,12 @@ msgstr "Módulo de Siguiente Evento"
237
  msgid "Frontend Event Submission"
238
  msgstr "Presentación del evento Frontend"
239
 
240
- #: app/features/contextual.php:298 app/features/events.php:791
241
  #: app/features/mec/settings.php:150
242
  msgid "Exceptional Days"
243
  msgstr "Días excepcionales"
244
 
245
- #: app/features/contextual.php:308 app/features/events.php:272
246
  #: app/features/mec/settings.php:168 app/features/mec/settings.php:1324
247
  msgid "Booking"
248
  msgstr "Reserva"
@@ -273,9 +273,9 @@ msgid "Events"
273
  msgstr "Eventos"
274
 
275
  #: app/features/events.php:135
276
- #: app/features/mec/meta_boxes/display_options.php:840
277
- #: app/features/mec/meta_boxes/display_options.php:896
278
- #: app/features/mec/meta_boxes/display_options.php:931
279
  #: app/features/profile/profile.php:28 app/skins/daily_view/tpl.php:80
280
  #: app/skins/monthly_view/tpl.php:71 app/skins/yearly_view/tpl.php:69
281
  msgid "Event"
@@ -311,26 +311,26 @@ msgid "No events found in Trash!"
311
  msgstr "No hay eventos en la papelera"
312
 
313
  #: app/features/events.php:159
314
- #: app/features/mec/meta_boxes/display_options.php:771
315
  #: app/features/mec/meta_boxes/search_form.php:31
316
  #: app/features/mec/meta_boxes/search_form.php:92
317
  #: app/features/mec/meta_boxes/search_form.php:153
318
  #: app/features/mec/meta_boxes/search_form.php:214
319
- #: app/features/mec/meta_boxes/search_form.php:240
320
- #: app/features/mec/meta_boxes/search_form.php:301
321
- #: app/features/mec/meta_boxes/search_form.php:362
322
- #: app/features/mec/meta_boxes/search_form.php:416
323
- #: app/features/mec/meta_boxes/search_form.php:477
324
- #: app/features/mec/meta_boxes/search_form.php:538 app/libraries/main.php:4376
325
- #: app/libraries/skins.php:775 app/skins/single/default.php:167
326
  #: app/skins/single/default.php:378 app/skins/single/m1.php:170
327
- #: app/skins/single/m2.php:102 app/skins/single/modern.php:109
328
  msgid "Category"
329
  msgstr "Categoría"
330
 
331
- #: app/features/events.php:160 app/features/fes/form.php:519
332
  #: app/features/mec.php:317 app/features/mec/meta_boxes/filter.php:70
333
- #: app/libraries/main.php:4375
334
  msgid "Categories"
335
  msgstr "Categorías"
336
 
@@ -390,56 +390,56 @@ msgstr "Popular %s"
390
  msgid "Search %s"
391
  msgstr "Buscar %s"
392
 
393
- #: app/features/events.php:200 app/features/events.php:219
394
  msgid "Category Icon"
395
  msgstr "Icono de categoría"
396
 
397
- #: app/features/events.php:202 app/features/events.php:223
398
  msgid "Select icon"
399
  msgstr "Seleccionar icono"
400
 
401
- #: app/features/events.php:268
402
  msgid "Event Details"
403
  msgstr "Detalle de evento"
404
 
405
- #: app/features/events.php:306 app/features/events.php:2557
406
- #: app/features/events.php:2599 app/features/fes/form.php:480
407
  #: app/features/ix.php:2740 app/features/ix.php:2781
408
- #: app/features/mec/settings.php:1171 app/libraries/main.php:4408
409
  #: app/widgets/single.php:103
410
  msgid "Event Cost"
411
  msgstr "Coste del evento"
412
 
413
- #: app/features/events.php:309 app/features/fes/form.php:483
414
- #: app/libraries/main.php:4409 app/skins/single/default.php:101
415
  #: app/skins/single/default.php:312 app/skins/single/m1.php:49
416
- #: app/skins/single/modern.php:198
417
  msgid "Cost"
418
  msgstr "Coste"
419
 
420
- #: app/features/events.php:402
421
  msgid "Note for reviewer"
422
  msgstr "Nota para el encargado"
423
 
424
- #: app/features/events.php:409
425
  msgid "Guest Data"
426
  msgstr "Datos del invitado"
427
 
428
- #: app/features/events.php:410 app/features/events.php:1682
429
- #: app/features/fes/form.php:442 app/features/labels.php:177
430
  #: app/features/mec/regform.php:27 app/features/organizers.php:274
431
  #: app/features/profile/profile.php:90 app/libraries/notifications.php:667
432
  #: app/modules/booking/steps/form.php:35
433
  msgid "Name"
434
  msgstr "Nombre"
435
 
436
- #: app/features/events.php:411 app/features/events.php:1693
437
- #: app/features/events.php:1766 app/features/fes/form.php:438
438
  #: app/features/mec/regform.php:38 app/features/mec/regform.php:183
439
  #: app/features/organizers.php:110 app/features/organizers.php:150
440
- #: app/features/profile/profile.php:93 app/features/speakers.php:119
441
- #: app/features/speakers.php:179 app/libraries/main.php:1087
442
- #: app/libraries/main.php:1168 app/libraries/main.php:2199
443
  #: app/libraries/notifications.php:668 app/modules/booking/steps/form.php:43
444
  #: app/modules/booking/steps/form.php:80 app/skins/single.php:317
445
  #: app/skins/single/default.php:209 app/skins/single/default.php:420
@@ -448,14 +448,14 @@ msgstr "Nombre"
448
  msgid "Email"
449
  msgstr "Correo electrónico"
450
 
451
- #: app/features/events.php:415 app/features/fes/form.php:223
452
  msgid "Date and Time"
453
  msgstr "Día y hora"
454
 
455
- #: app/features/events.php:419 app/features/events.php:423
456
- #: app/features/events.php:2379 app/features/events.php:2557
457
- #: app/features/events.php:2599 app/features/fes/form.php:227
458
- #: app/features/fes/form.php:231 app/features/ix.php:2740
459
  #: app/features/ix.php:2781 app/features/ix/import_g_calendar.php:38
460
  #: app/features/mec/dashboard.php:331
461
  #: app/features/mec/meta_boxes/display_options.php:42
@@ -468,53 +468,53 @@ msgstr "Día y hora"
468
  #: app/features/mec/meta_boxes/display_options.php:615
469
  #: app/features/mec/meta_boxes/display_options.php:650
470
  #: app/features/mec/meta_boxes/display_options.php:696
471
- #: app/features/mec/meta_boxes/display_options.php:739
472
- #: app/features/mec/meta_boxes/display_options.php:954
473
- #: app/features/mec/meta_boxes/display_options.php:1041
474
  msgid "Start Date"
475
  msgstr "Día de inicio"
476
 
477
- #: app/features/events.php:487 app/features/events.php:568
478
- #: app/features/events.php:1156 app/features/events.php:1194
479
- #: app/features/events.php:1313 app/features/events.php:1336
480
- #: app/features/fes/form.php:259 app/features/fes/form.php:299
481
  msgid "AM"
482
  msgstr "AM"
483
 
484
- #: app/features/events.php:493 app/features/events.php:574
485
- #: app/features/events.php:1162 app/features/events.php:1200
486
- #: app/features/events.php:1314 app/features/events.php:1337
487
- #: app/features/fes/form.php:260 app/features/fes/form.php:300
488
  msgid "PM"
489
  msgstr "PM"
490
 
491
- #: app/features/events.php:500 app/features/events.php:504
492
- #: app/features/events.php:2380 app/features/events.php:2557
493
- #: app/features/events.php:2599 app/features/fes/form.php:267
494
- #: app/features/fes/form.php:271 app/features/ix.php:2740
495
  #: app/features/ix.php:2781 app/features/ix/import_g_calendar.php:44
496
  #: app/features/mec/dashboard.php:332
497
  msgid "End Date"
498
  msgstr "Día final"
499
 
500
- #: app/features/events.php:585 app/features/fes/form.php:306
501
  msgid "All Day Event"
502
  msgstr "Evento de todo el día"
503
 
504
- #: app/features/events.php:593 app/features/fes/form.php:309
505
  msgid "Hide Event Time"
506
  msgstr "Ocultar hora del evento"
507
 
508
- #: app/features/events.php:601 app/features/fes/form.php:312
509
  msgid "Hide Event End Time"
510
  msgstr "Oculta la hora de finalización del evento"
511
 
512
- #: app/features/events.php:605 app/features/events.php:608
513
- #: app/features/fes/form.php:316
514
  msgid "Time Comment"
515
  msgstr "Tiempo para comentar"
516
 
517
- #: app/features/events.php:609 app/features/fes/form.php:317
518
  #, fuzzy
519
  #| msgid ""
520
  #| "It shows next to event time on calendar. You can insert Timezone etc. in "
@@ -526,15 +526,15 @@ msgstr ""
526
  "Muestra la hora del siguiente evento en el calendario. Puedes insertar Zona "
527
  "horaria, etc en este campo."
528
 
529
- #: app/features/events.php:609 app/features/events.php:702
530
- #: app/features/events.php:768 app/features/events.php:806
531
- #: app/features/events.php:1024 app/features/events.php:1082
532
- #: app/features/events.php:1213 app/features/events.php:1223
533
- #: app/features/events.php:1350 app/features/events.php:1360
534
- #: app/features/events.php:1465 app/features/events.php:1496
535
- #: app/features/events.php:1580 app/features/events.php:1590
536
- #: app/features/events.php:1614 app/features/events.php:1624
537
- #: app/features/fes/form.php:404 app/features/locations.php:298
538
  #: app/features/mec/dashboard.php:71
539
  #: app/features/mec/meta_boxes/display_options.php:60
540
  #: app/features/mec/meta_boxes/display_options.php:73
@@ -550,30 +550,30 @@ msgstr ""
550
  #: app/features/mec/meta_boxes/display_options.php:259
551
  #: app/features/mec/meta_boxes/display_options.php:326
552
  #: app/features/mec/meta_boxes/display_options.php:498
553
- #: app/features/mec/meta_boxes/display_options.php:758
554
- #: app/features/mec/meta_boxes/display_options.php:811
555
- #: app/features/mec/meta_boxes/display_options.php:823
556
  #: app/features/mec/meta_boxes/display_options.php:834
557
- #: app/features/mec/meta_boxes/display_options.php:866
558
- #: app/features/mec/meta_boxes/display_options.php:877
559
- #: app/features/mec/meta_boxes/display_options.php:890
560
- #: app/features/mec/meta_boxes/display_options.php:925
561
- #: app/features/mec/meta_boxes/display_options.php:974
562
- #: app/features/mec/meta_boxes/display_options.php:985
563
- #: app/features/mec/meta_boxes/display_options.php:996
564
- #: app/features/mec/meta_boxes/display_options.php:1061
565
- #: app/features/mec/meta_boxes/display_options.php:1074
566
- #: app/features/mec/meta_boxes/display_options.php:1087
567
- #: app/features/mec/meta_boxes/display_options.php:1100
568
- #: app/features/mec/meta_boxes/display_options.php:1113
569
- #: app/features/mec/notifications.php:170
570
- #: app/features/mec/notifications.php:228
571
- #: app/features/mec/notifications.php:280
572
- #: app/features/mec/notifications.php:339
573
- #: app/features/mec/notifications.php:406
574
- #: app/features/mec/notifications.php:469
575
- #: app/features/mec/notifications.php:480
576
- #: app/features/mec/notifications.php:541 app/features/mec/settings.php:299
 
 
577
  #: app/features/mec/settings.php:318 app/features/mec/settings.php:345
578
  #: app/features/mec/settings.php:365 app/features/mec/settings.php:386
579
  #: app/features/mec/settings.php:406 app/features/mec/settings.php:483
@@ -593,162 +593,169 @@ msgstr ""
593
  #: app/features/mec/settings.php:1555 app/features/mec/settings.php:1565
594
  #: app/features/mec/settings.php:1587 app/features/mec/settings.php:1597
595
  #: app/features/mec/settings.php:1656 app/features/mec/settings.php:1669
596
- #: app/features/mec/settings.php:1685 app/features/mec/styling.php:282
597
- #: app/features/mec/styling.php:299 app/features/mec/styling.php:312
598
  #: app/features/organizers.php:267 app/skins/single/default.php:116
599
  #: app/skins/single/default.php:327 app/skins/single/m1.php:192
600
- #: app/skins/single/m2.php:125 app/skins/single/modern.php:132
601
  msgid "Read More"
602
  msgstr "Leer más"
603
 
604
- #: app/features/events.php:623 app/features/fes/form.php:323
605
  msgid "Event Repeating"
606
  msgstr "Repetir el evento"
607
 
608
- #: app/features/events.php:627 app/features/fes/form.php:327
609
  msgid "Repeats"
610
  msgstr "Repeticiones"
611
 
612
- #: app/features/events.php:634 app/features/fes/form.php:329
613
- #: app/features/mec/dashboard.php:334 app/skins/full_calendar/tpl.php:73
614
  msgid "Daily"
615
  msgstr "Diariamente"
616
 
617
- #: app/features/events.php:640 app/features/fes/form.php:330
618
  msgid "Every Weekday"
619
  msgstr "Cada día de la semana"
620
 
621
- #: app/features/events.php:646 app/features/fes/form.php:331
622
  msgid "Every Weekend"
623
  msgstr "Cada fin de semana"
624
 
625
- #: app/features/events.php:652 app/features/fes/form.php:332
626
  msgid "Certain Weekdays"
627
  msgstr "Ciertos días de la semana"
628
 
629
- #: app/features/events.php:658 app/features/fes/form.php:333
630
- #: app/skins/full_calendar/tpl.php:72
631
  msgid "Weekly"
632
  msgstr "Semanal"
633
 
634
- #: app/features/events.php:664 app/features/fes/form.php:334
635
- #: app/features/mec/dashboard.php:335 app/skins/full_calendar/tpl.php:71
636
  msgid "Monthly"
637
  msgstr "Mensual"
638
 
639
- #: app/features/events.php:670 app/features/fes/form.php:335
640
- #: app/features/mec/dashboard.php:336 app/skins/full_calendar/tpl.php:70
641
  msgid "Yearly"
642
  msgstr "Anual"
643
 
644
- #: app/features/events.php:676 app/features/fes/form.php:336
645
  msgid "Custom Days"
646
  msgstr "Días personalizados"
647
 
648
- #: app/features/events.php:680 app/features/fes/form.php:340
649
  msgid "Repeat Interval"
650
  msgstr "Intervalo de repetición"
651
 
652
- #: app/features/events.php:681 app/features/fes/form.php:341
653
  msgid "Repeat interval"
654
  msgstr "Intervalo de repetición"
655
 
656
- #: app/features/events.php:684 app/features/fes/form.php:344
657
  msgid "Week Days"
658
  msgstr "Días de semana"
659
 
660
- #: app/features/events.php:685 app/features/fes/form.php:345
661
- #: app/libraries/main.php:406
 
662
  msgid "Monday"
663
  msgstr "Lunes"
664
 
665
- #: app/features/events.php:686 app/features/fes/form.php:346
666
- #: app/libraries/main.php:406
 
667
  msgid "Tuesday"
668
  msgstr "Martes"
669
 
670
- #: app/features/events.php:687 app/features/fes/form.php:347
671
- #: app/libraries/main.php:406
 
672
  msgid "Wednesday"
673
  msgstr "Miércoles"
674
 
675
- #: app/features/events.php:688 app/features/fes/form.php:348
676
- #: app/libraries/main.php:406
 
677
  msgid "Thursday"
678
  msgstr "Jueves"
679
 
680
- #: app/features/events.php:689 app/features/fes/form.php:349
681
- #: app/libraries/main.php:406
 
682
  msgid "Friday"
683
  msgstr "Viernes"
684
 
685
- #: app/features/events.php:690 app/features/fes/form.php:350
686
- #: app/libraries/main.php:406
 
687
  msgid "Saturday"
688
  msgstr "Sábado"
689
 
690
- #: app/features/events.php:691 app/features/fes/form.php:351
691
- #: app/libraries/main.php:406
 
692
  msgid "Sunday"
693
  msgstr "Domingo"
694
 
695
- #: app/features/events.php:696 app/features/events.php:1260
696
- #: app/features/events.php:1274 app/features/events.php:1386
697
- #: app/features/fes/form.php:356 app/features/ix/import_f_calendar.php:42
698
  #: app/features/ix/import_g_calendar.php:51
699
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
700
  msgid "Start"
701
  msgstr "Inicio"
702
 
703
- #: app/features/events.php:697 app/features/events.php:1261
704
- #: app/features/events.php:1275 app/features/events.php:1387
705
- #: app/features/fes/form.php:357
706
  msgid "End"
707
  msgstr ""
708
 
709
- #: app/features/events.php:698 app/features/events.php:802
710
- #: app/features/events.php:894 app/features/events.php:958
711
- #: app/features/events.php:1112 app/features/events.php:1247
712
- #: app/features/events.php:1378 app/features/events.php:1445
713
- #: app/features/events.php:1560 app/features/fes/form.php:358
714
  msgid "Add"
715
  msgstr "Añadir"
716
 
717
- #: app/features/events.php:701
718
  #, fuzzy
719
  #| msgid "Custom Days"
720
  msgid "Custom Days Repeating"
721
  msgstr "Días personalizados"
722
 
723
- #: app/features/events.php:702
724
  msgid ""
725
  "Add certain days to event occurrence dates. If you have single day event, "
726
  "start and end date should be the same, If you have multiple day event the "
727
  "start and end dates must be commensurate with the initial date."
728
  msgstr ""
729
 
730
- #: app/features/events.php:731 app/features/fes/form.php:382
731
  msgid "Ends Repeat"
732
  msgstr "Finaliza la repetición"
733
 
734
- #: app/features/events.php:740 app/features/fes/form.php:386
735
  msgid "Never"
736
  msgstr "Nunca"
737
 
738
- #: app/features/events.php:750 app/features/fes/form.php:391
739
  msgid "On"
740
  msgstr "On"
741
 
742
- #: app/features/events.php:762 app/features/fes/form.php:398
743
  msgid "After"
744
  msgstr "Después"
745
 
746
- #: app/features/events.php:764 app/features/events.php:767
747
- #: app/features/fes/form.php:400 app/features/fes/form.php:403
748
  msgid "Occurrences times"
749
  msgstr "Ocurrencias del evento"
750
 
751
- #: app/features/events.php:768 app/features/fes/form.php:404
752
  msgid ""
753
  "The event will finish after certain repeats. For example if you set it to "
754
  "10, the event will finish after 10 repeats."
@@ -756,132 +763,132 @@ msgstr ""
756
  "El evento finalizará después de ciertas repeticiones. Por ejemplo, si "
757
  "estableces en 10, el evento terminará después de 10 repeticiones."
758
 
759
- #: app/features/events.php:797 app/features/events.php:805
760
  msgid "Exclude certain days"
761
  msgstr "Excluir ciertos días"
762
 
763
- #: app/features/events.php:801 app/features/events.php:1767
764
  #: app/features/mec/regform.php:184 app/features/profile/profile.php:31
765
- #: app/libraries/main.php:1654 app/libraries/main.php:2257
766
  #: app/modules/booking/steps/tickets.php:22
767
- #: app/modules/next-event/details.php:86 app/skins/single/default.php:65
768
  #: app/skins/single/default.php:276 app/skins/single/m1.php:16
769
- #: app/skins/single/modern.php:165
770
  msgid "Date"
771
  msgstr "Fecha"
772
 
773
- #: app/features/events.php:806
774
  msgid ""
775
  "Exclude certain days from event occurrence dates. Please note that you can "
776
  "exclude only single day occurrences and you cannot exclude one day from "
777
  "multiple day occurrences."
778
  msgstr ""
779
 
780
- #: app/features/events.php:854 app/libraries/render.php:454
781
  msgid "Day 1"
782
  msgstr ""
783
 
784
- #: app/features/events.php:876 app/features/mec/settings.php:1225
785
  #: app/skins/single.php:379
786
  msgid "Hourly Schedule"
787
  msgstr "Programación horaria"
788
 
789
- #: app/features/events.php:879
790
  msgid "Add Day"
791
  msgstr ""
792
 
793
- #: app/features/events.php:880
794
  msgid ""
795
  "Add new days for schedule. For example if your event is multiple days, you "
796
  "can add a different schedule for each day!"
797
  msgstr ""
798
 
799
- #: app/features/events.php:886
800
  #, php-format
801
  msgid "Day %s"
802
  msgstr ""
803
 
804
- #: app/features/events.php:889 app/features/events.php:908
805
- #: app/features/events.php:928 app/features/events.php:953
806
- #: app/features/events.php:969 app/features/events.php:1572
807
- #: app/features/events.php:1606 app/features/events.php:2376
808
- #: app/features/events.php:2557 app/features/events.php:2599
809
- #: app/features/fes/form.php:216 app/features/ix.php:2740
810
  #: app/features/ix.php:2781 app/features/mec/settings.php:1547
811
- #: app/features/mec/settings.php:1579 app/features/mec/styling.php:194
812
  msgid "Title"
813
  msgstr "Titulo"
814
 
815
- #: app/features/events.php:891 app/features/events.php:910
816
- #: app/features/events.php:930 app/features/events.php:955
817
- #: app/features/events.php:971 app/features/events.php:1241
818
- #: app/features/events.php:1264 app/features/events.php:1278
819
- #: app/features/events.php:1373 app/features/events.php:1390
820
- #: app/features/events.php:1477 app/features/events.php:1508
821
- #: app/features/events.php:1595 app/features/events.php:1629
822
- #: app/features/fes/list.php:72 app/features/mec/settings.php:1490
823
  #: app/features/mec/settings.php:1519 app/features/mec/settings.php:1570
824
- #: app/features/mec/settings.php:1602 app/libraries/main.php:2118
825
- #: app/libraries/main.php:2148 app/libraries/main.php:2177
826
- #: app/libraries/main.php:2207 app/libraries/main.php:2236
827
- #: app/libraries/main.php:2265 app/libraries/main.php:2294
828
- #: app/libraries/main.php:2323 app/libraries/main.php:2345
829
- #: app/libraries/main.php:2376 app/libraries/main.php:2420
830
- #: app/libraries/main.php:2464 app/libraries/main.php:2511
831
- #: app/libraries/main.php:2549
832
  msgid "Remove"
833
  msgstr "Eliminar"
834
 
835
- #: app/features/events.php:895 app/features/events.php:959
836
  msgid "Add new hourly schedule row"
837
  msgstr "Añadir nueva línea programa horario"
838
 
839
- #: app/features/events.php:906 app/features/events.php:926
840
- #: app/features/events.php:967
841
  msgid "From e.g. 8:15"
842
  msgstr "Desde 8:15"
843
 
844
- #: app/features/events.php:907 app/features/events.php:927
845
- #: app/features/events.php:968
846
  msgid "To e.g. 8:45"
847
  msgstr "a 8:45"
848
 
849
- #: app/features/events.php:909 app/features/events.php:929
850
- #: app/features/events.php:970 app/features/events.php:1205
851
- #: app/features/events.php:1342
852
  msgid "Description"
853
  msgstr "Descripción"
854
 
855
- #: app/features/events.php:913 app/features/events.php:933
856
- #: app/features/events.php:974 app/features/fes/form.php:612
857
  #: app/features/mec.php:325 app/features/mec/settings.php:78
858
  #: app/features/mec/settings.php:1219 app/features/speakers.php:57
859
- #: app/libraries/main.php:4383 app/modules/speakers/details.php:18
860
  msgid "Speakers"
861
  msgstr ""
862
 
863
- #: app/features/events.php:950 app/features/events.php:954
864
  #, fuzzy
865
  #| msgid "Week Days"
866
  msgid "New Day"
867
  msgstr "Días de semana"
868
 
869
- #: app/features/events.php:1001 app/features/fes/form.php:457
870
  #: app/features/mec/settings.php:1165
871
  msgid "Event Links"
872
  msgstr "Enlaces de eventos"
873
 
874
- #: app/features/events.php:1003 app/features/events.php:1007
875
- #: app/features/fes/form.php:459 app/libraries/main.php:4406
876
  msgid "Event Link"
877
  msgstr "Enlace del evento"
878
 
879
- #: app/features/events.php:1004 app/features/events.php:1015
880
- #: app/features/fes/form.php:460 app/features/fes/form.php:465
881
  msgid "eg. http://yoursite.com/your-event"
882
  msgstr "ej. http://yoursite.com/your-event"
883
 
884
- #: app/features/events.php:1008
885
  #, fuzzy
886
  #| msgid ""
887
  #| "If you fill it, it will be replaced instead of default event page link. "
@@ -894,31 +901,31 @@ msgstr ""
894
  "Si lo rellenas, se reemplazará en vez del enlace de la página del evento por "
895
  "defecto. Inserta todo el enlace incluyendo http(s)://"
896
 
897
- #: app/features/events.php:1008
898
  msgid "URL Shortener"
899
  msgstr ""
900
 
901
- #: app/features/events.php:1014 app/features/events.php:1023
902
- #: app/features/fes/form.php:464 app/libraries/main.php:4407
903
  #: app/skins/single/default.php:115 app/skins/single/default.php:326
904
  #: app/skins/single/m1.php:191 app/skins/single/m2.php:124
905
- #: app/skins/single/modern.php:131 app/widgets/single.php:107
906
  msgid "More Info"
907
  msgstr "Más Información"
908
 
909
- #: app/features/events.php:1016 app/features/fes/form.php:466
910
  msgid "More Information"
911
  msgstr "Más Información"
912
 
913
- #: app/features/events.php:1018 app/features/fes/form.php:468
914
  msgid "Current Window"
915
  msgstr "Ventana actual"
916
 
917
- #: app/features/events.php:1019 app/features/fes/form.php:469
918
  msgid "New Window"
919
  msgstr "Nueva ventana"
920
 
921
- #: app/features/events.php:1024 app/features/fes/form.php:471
922
  msgid ""
923
  "If you fill it, it will be shown in event details page as an optional link. "
924
  "Insert full link including http(s)://"
@@ -926,37 +933,37 @@ msgstr ""
926
  "Si lo rellenas, se mostrará en la página de detalles del evento como enlace "
927
  "opcional. Inserta todo el enlace incluyendo http(s)://"
928
 
929
- #: app/features/events.php:1060 app/features/events.php:1081
930
  msgid "Total booking limits"
931
  msgstr "Límite total de reservas"
932
 
933
- #: app/features/events.php:1070 app/features/events.php:1239
934
- #: app/features/events.php:1371 app/modules/booking/default.php:81
935
  #: app/modules/booking/steps/tickets.php:40
936
  #: app/skins/available_spot/tpl.php:139
937
  msgid "Unlimited"
938
  msgstr "Ilimitado"
939
 
940
- #: app/features/events.php:1072
941
  msgid "100"
942
  msgstr "100"
943
 
944
- #: app/features/events.php:1082
945
  msgid ""
946
  "If you want to set a limit to all tickets, uncheck this checkbox and put a "
947
  "limitation number."
948
  msgstr ""
949
 
950
- #: app/features/events.php:1082
951
  msgid "Read About A Booking System"
952
  msgstr ""
953
 
954
- #: app/features/events.php:1104 app/libraries/book.php:60
955
- #: app/libraries/main.php:4411 app/modules/booking/steps/tickets.php:40
956
  msgid "Tickets"
957
  msgstr "Tickets"
958
 
959
- #: app/features/events.php:1107
960
  msgid ""
961
  "You're translating an event so MEC will use the original event for tickets "
962
  "and booking. You can only translate the ticket name and description. Please "
@@ -967,91 +974,92 @@ msgstr ""
967
  "entrada. Por favor define las entradas exactas que podrías definir en un "
968
  "evento original aquí."
969
 
970
- #: app/features/events.php:1124 app/features/events.php:1291
971
  msgid "Ticket Name"
972
  msgstr "Nombre del ticket"
973
 
974
- #: app/features/events.php:1128 app/features/events.php:1295
975
- #: app/features/events.php:2557 app/features/events.php:2599
976
  #: app/features/ix.php:2740 app/features/ix.php:2781
977
  msgid "Start Time"
978
  msgstr "Hora de Inicio"
979
 
980
- #: app/features/events.php:1166 app/features/events.php:1318
981
- #: app/features/events.php:2557 app/features/events.php:2599
982
  #: app/features/ix.php:2740 app/features/ix.php:2781
983
  msgid "End Time"
984
  msgstr "Hora de finalización"
985
 
986
- #: app/features/events.php:1209 app/features/events.php:1212
987
- #: app/features/events.php:1262 app/features/events.php:1276
988
- #: app/features/events.php:1346 app/features/events.php:1349
989
- #: app/features/events.php:1388 app/features/events.php:1576
990
- #: app/features/events.php:1579 app/features/events.php:1610
991
- #: app/features/events.php:1613 app/features/mec/settings.php:1551
992
  #: app/features/mec/settings.php:1554 app/features/mec/settings.php:1583
993
  #: app/features/mec/settings.php:1586
994
  msgid "Price"
995
  msgstr "Precio"
996
 
997
- #: app/features/events.php:1213 app/features/events.php:1350
998
  msgid "Insert 0 for free ticket. Only numbers please."
999
  msgstr "Introduce un 0 para una entrada gratuita. Utiliza únicamente números."
1000
 
1001
- #: app/features/events.php:1219 app/features/events.php:1222
1002
- #: app/features/events.php:1356 app/features/events.php:1359
1003
  msgid "Price Label"
1004
  msgstr "Etiqueta de precio"
1005
 
1006
- #: app/features/events.php:1223 app/features/events.php:1360
1007
  msgid "For showing on website. e.g. $15"
1008
  msgstr "Para mostrar en la web. Ej. 15€"
1009
 
1010
- #: app/features/events.php:1230 app/features/events.php:1367
1011
  msgid "Available Tickets"
1012
  msgstr "Tickets disponibles"
1013
 
1014
- #: app/features/events.php:1246 app/features/events.php:1377
1015
  msgid "Price per Date"
1016
  msgstr ""
1017
 
1018
- #: app/features/events.php:1263 app/features/events.php:1277
1019
- #: app/features/events.php:1389 app/features/labels.php:60
1020
- #: app/features/mec/meta_boxes/display_options.php:772
1021
  #: app/features/mec/meta_boxes/search_form.php:66
1022
  #: app/features/mec/meta_boxes/search_form.php:127
1023
  #: app/features/mec/meta_boxes/search_form.php:188
1024
- #: app/features/mec/meta_boxes/search_form.php:275
1025
- #: app/features/mec/meta_boxes/search_form.php:336
1026
- #: app/features/mec/meta_boxes/search_form.php:397
1027
- #: app/features/mec/meta_boxes/search_form.php:451
1028
- #: app/features/mec/meta_boxes/search_form.php:512
1029
- #: app/features/mec/meta_boxes/search_form.php:573 app/libraries/skins.php:905
 
1030
  msgid "Label"
1031
  msgstr "Etiqueta"
1032
 
1033
- #: app/features/events.php:1425
1034
  msgid "Fees"
1035
  msgstr "Tasas"
1036
 
1037
- #: app/features/events.php:1435 app/features/events.php:1550
1038
- #: app/features/events.php:1710
1039
  msgid "Inherit from global options"
1040
  msgstr "Heredar opciones globales"
1041
 
1042
- #: app/features/events.php:1457 app/features/events.php:1488
1043
  #: app/features/mec/settings.php:1470 app/features/mec/settings.php:1499
1044
  msgid "Fee Title"
1045
  msgstr "Título de la cuota"
1046
 
1047
- #: app/features/events.php:1461 app/features/events.php:1464
1048
- #: app/features/events.php:1492 app/features/events.php:1495
1049
  #: app/features/mec/settings.php:1474 app/features/mec/settings.php:1477
1050
  #: app/features/mec/settings.php:1503 app/features/mec/settings.php:1506
1051
  msgid "Amount"
1052
  msgstr "Cantidad"
1053
 
1054
- #: app/features/events.php:1465 app/features/events.php:1496
1055
  #: app/features/mec/settings.php:1478 app/features/mec/settings.php:1507
1056
  msgid ""
1057
  "Fee amount, considered as fixed amount if you set the type to amount "
@@ -1060,89 +1068,89 @@ msgstr ""
1060
  "Cantidad de cuota, considerada como cantidad fija si estableces el tipo de "
1061
  "cantidad, si no será considerada como porcentaje"
1062
 
1063
- #: app/features/events.php:1472 app/features/events.php:1503
1064
  #: app/features/mec/settings.php:1485 app/features/mec/settings.php:1514
1065
  msgid "Percent"
1066
  msgstr "Porcentaje"
1067
 
1068
- #: app/features/events.php:1473 app/features/events.php:1504
1069
  #: app/features/mec/settings.php:1486 app/features/mec/settings.php:1515
1070
  msgid "Amount (Per Ticket)"
1071
  msgstr "Cantidad (Por ticket)"
1072
 
1073
- #: app/features/events.php:1474 app/features/events.php:1505
1074
  #: app/features/mec/settings.php:1487 app/features/mec/settings.php:1516
1075
  msgid "Amount (Per Booking)"
1076
  msgstr "Cantidad (por reservas)"
1077
 
1078
- #: app/features/events.php:1540 app/features/mec/settings.php:1243
1079
  msgid "Ticket Variations / Options"
1080
  msgstr ""
1081
 
1082
- #: app/features/events.php:1580 app/features/events.php:1614
1083
  #: app/features/mec/settings.php:1555 app/features/mec/settings.php:1587
1084
  msgid "Option Price"
1085
  msgstr ""
1086
 
1087
- #: app/features/events.php:1586 app/features/events.php:1589
1088
- #: app/features/events.php:1620 app/features/events.php:1623
1089
  #: app/features/mec/settings.php:1561 app/features/mec/settings.php:1564
1090
  #: app/features/mec/settings.php:1593 app/features/mec/settings.php:1596
1091
  msgid "Maximum Per Ticket"
1092
  msgstr ""
1093
 
1094
- #: app/features/events.php:1590 app/features/events.php:1624
1095
  #: app/features/mec/settings.php:1565 app/features/mec/settings.php:1597
1096
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1097
  msgstr ""
1098
 
1099
- #: app/features/events.php:1763 app/features/mec/regform.php:180
1100
- #: app/libraries/main.php:2140
1101
  #, fuzzy
1102
  #| msgid "Name"
1103
  msgid "MEC Name"
1104
  msgstr "Nombre"
1105
 
1106
- #: app/features/events.php:1764 app/features/mec/regform.php:181
1107
- #: app/libraries/main.php:2169
1108
  #, fuzzy
1109
  #| msgid "Email"
1110
  msgid "MEC Email"
1111
  msgstr "Correo electrónico"
1112
 
1113
- #: app/features/events.php:1765 app/features/mec/regform.php:182
1114
- #: app/libraries/main.php:2110
1115
  msgid "Text"
1116
  msgstr "Texto"
1117
 
1118
- #: app/features/events.php:1768 app/features/mec/regform.php:185
1119
  #: app/features/organizers.php:102 app/features/organizers.php:146
1120
- #: app/features/speakers.php:111 app/features/speakers.php:175
1121
- #: app/features/speakers.php:244 app/libraries/main.php:2286
1122
  msgid "Tel"
1123
  msgstr "Tel"
1124
 
1125
- #: app/features/events.php:1769 app/features/mec/regform.php:186
1126
- #: app/libraries/main.php:2228
1127
  msgid "File"
1128
  msgstr ""
1129
 
1130
- #: app/features/events.php:1770 app/features/mec/regform.php:187
1131
- #: app/libraries/main.php:2315
1132
  msgid "Textarea"
1133
  msgstr "Área de texto"
1134
 
1135
- #: app/features/events.php:1771 app/features/mec/regform.php:188
1136
- #: app/libraries/main.php:2368
1137
  msgid "Checkboxes"
1138
  msgstr "Checkboxes"
1139
 
1140
- #: app/features/events.php:1772 app/features/mec/regform.php:189
1141
- #: app/libraries/main.php:2412
1142
  msgid "Radio Buttons"
1143
  msgstr "Botón tipo radio"
1144
 
1145
- #: app/features/events.php:1773 app/features/mec/meta_boxes/search_form.php:34
1146
  #: app/features/mec/meta_boxes/search_form.php:41
1147
  #: app/features/mec/meta_boxes/search_form.php:48
1148
  #: app/features/mec/meta_boxes/search_form.php:55
@@ -1165,172 +1173,179 @@ msgstr "Botón tipo radio"
1165
  #: app/features/mec/meta_boxes/search_form.php:198
1166
  #: app/features/mec/meta_boxes/search_form.php:217
1167
  #: app/features/mec/meta_boxes/search_form.php:224
1168
- #: app/features/mec/meta_boxes/search_form.php:243
1169
- #: app/features/mec/meta_boxes/search_form.php:250
1170
- #: app/features/mec/meta_boxes/search_form.php:257
1171
- #: app/features/mec/meta_boxes/search_form.php:264
1172
- #: app/features/mec/meta_boxes/search_form.php:271
1173
  #: app/features/mec/meta_boxes/search_form.php:278
1174
  #: app/features/mec/meta_boxes/search_form.php:285
1175
- #: app/features/mec/meta_boxes/search_form.php:304
1176
- #: app/features/mec/meta_boxes/search_form.php:311
1177
- #: app/features/mec/meta_boxes/search_form.php:318
1178
- #: app/features/mec/meta_boxes/search_form.php:325
1179
- #: app/features/mec/meta_boxes/search_form.php:332
1180
  #: app/features/mec/meta_boxes/search_form.php:339
1181
  #: app/features/mec/meta_boxes/search_form.php:346
1182
- #: app/features/mec/meta_boxes/search_form.php:365
1183
- #: app/features/mec/meta_boxes/search_form.php:372
1184
- #: app/features/mec/meta_boxes/search_form.php:379
1185
- #: app/features/mec/meta_boxes/search_form.php:386
1186
- #: app/features/mec/meta_boxes/search_form.php:393
1187
  #: app/features/mec/meta_boxes/search_form.php:400
1188
- #: app/features/mec/meta_boxes/search_form.php:419
1189
- #: app/features/mec/meta_boxes/search_form.php:426
1190
- #: app/features/mec/meta_boxes/search_form.php:433
1191
- #: app/features/mec/meta_boxes/search_form.php:440
1192
- #: app/features/mec/meta_boxes/search_form.php:447
1193
  #: app/features/mec/meta_boxes/search_form.php:454
1194
  #: app/features/mec/meta_boxes/search_form.php:461
1195
- #: app/features/mec/meta_boxes/search_form.php:480
1196
- #: app/features/mec/meta_boxes/search_form.php:487
1197
- #: app/features/mec/meta_boxes/search_form.php:494
1198
- #: app/features/mec/meta_boxes/search_form.php:501
1199
- #: app/features/mec/meta_boxes/search_form.php:508
1200
  #: app/features/mec/meta_boxes/search_form.php:515
1201
  #: app/features/mec/meta_boxes/search_form.php:522
1202
- #: app/features/mec/meta_boxes/search_form.php:541
1203
- #: app/features/mec/meta_boxes/search_form.php:548
1204
- #: app/features/mec/meta_boxes/search_form.php:555
1205
- #: app/features/mec/meta_boxes/search_form.php:562
1206
- #: app/features/mec/meta_boxes/search_form.php:569
1207
  #: app/features/mec/meta_boxes/search_form.php:576
1208
  #: app/features/mec/meta_boxes/search_form.php:583
1209
- #: app/features/mec/regform.php:190 app/libraries/main.php:2456
 
 
 
 
 
1210
  msgid "Dropdown"
1211
  msgstr "Desplegable"
1212
 
1213
- #: app/features/events.php:1774 app/features/mec/regform.php:191
1214
- #: app/libraries/main.php:2503
1215
  msgid "Agreement"
1216
  msgstr "Acuerdo"
1217
 
1218
- #: app/features/events.php:1775 app/features/mec/regform.php:192
1219
- #: app/libraries/main.php:2344
1220
  msgid "Paragraph"
1221
  msgstr "Párrafo"
1222
 
1223
- #: app/features/events.php:2315 app/features/events.php:2332
1224
- #: app/features/events.php:2349
1225
  #, php-format
1226
  msgid "Show all %s"
1227
  msgstr "Mostrar todos %s"
1228
 
1229
- #: app/features/events.php:2315
1230
  msgid "labels"
1231
  msgstr "etiquetas"
1232
 
1233
- #: app/features/events.php:2332
1234
  msgid "locations"
1235
  msgstr "ubicaciones"
1236
 
1237
- #: app/features/events.php:2349
1238
  msgid "organizers"
1239
  msgstr "organizadores"
1240
 
1241
- #: app/features/events.php:2377 app/features/events.php:2557
1242
- #: app/features/events.php:2599 app/features/ix.php:2740
1243
  #: app/features/ix.php:2781 app/features/locations.php:58
1244
  #: app/features/locations.php:229 app/features/locations.php:286
1245
  #: app/features/locations.php:288 app/features/locations.php:297
1246
- #: app/features/mec/meta_boxes/display_options.php:773
1247
  #: app/features/mec/meta_boxes/search_form.php:38
1248
  #: app/features/mec/meta_boxes/search_form.php:99
1249
  #: app/features/mec/meta_boxes/search_form.php:160
1250
- #: app/features/mec/meta_boxes/search_form.php:247
1251
- #: app/features/mec/meta_boxes/search_form.php:308
1252
- #: app/features/mec/meta_boxes/search_form.php:369
1253
- #: app/features/mec/meta_boxes/search_form.php:423
1254
- #: app/features/mec/meta_boxes/search_form.php:484
1255
- #: app/features/mec/meta_boxes/search_form.php:545 app/libraries/main.php:1648
1256
- #: app/libraries/main.php:4380 app/libraries/skins.php:801
 
1257
  #: app/skins/single.php:356 app/skins/single/default.php:151
1258
  #: app/skins/single/default.php:362 app/skins/single/m1.php:155
1259
  #: app/skins/single/m2.php:87 app/skins/single/modern.php:94
1260
  msgid "Location"
1261
  msgstr "Localización"
1262
 
1263
- #: app/features/events.php:2378 app/features/events.php:2557
1264
- #: app/features/events.php:2599 app/features/ix.php:2740
1265
- #: app/features/ix.php:2781 app/features/mec/meta_boxes/display_options.php:774
1266
  #: app/features/mec/meta_boxes/search_form.php:45
1267
  #: app/features/mec/meta_boxes/search_form.php:106
1268
  #: app/features/mec/meta_boxes/search_form.php:167
1269
- #: app/features/mec/meta_boxes/search_form.php:254
1270
- #: app/features/mec/meta_boxes/search_form.php:315
1271
- #: app/features/mec/meta_boxes/search_form.php:376
1272
- #: app/features/mec/meta_boxes/search_form.php:430
1273
- #: app/features/mec/meta_boxes/search_form.php:491
1274
- #: app/features/mec/meta_boxes/search_form.php:552
 
1275
  #: app/features/organizers.php:58 app/features/organizers.php:199
1276
  #: app/features/organizers.php:255 app/features/organizers.php:257
1277
- #: app/features/organizers.php:266 app/libraries/main.php:4382
1278
- #: app/libraries/skins.php:827 app/skins/single/default.php:192
1279
  #: app/skins/single/default.php:403 app/skins/single/m1.php:90
1280
  #: app/skins/single/m2.php:22 app/skins/single/modern.php:31
1281
  msgid "Organizer"
1282
  msgstr "Organizador"
1283
 
1284
- #: app/features/events.php:2382
1285
  msgid "Repeat"
1286
  msgstr "Repetir"
1287
 
1288
- #: app/features/events.php:2383
1289
  msgid "Author"
1290
  msgstr "Autor"
1291
 
1292
- #: app/features/events.php:2493 app/features/events.php:2494
1293
  msgid "iCal Export"
1294
  msgstr "Exportar iCal"
1295
 
1296
- #: app/features/events.php:2496 app/features/events.php:2497
1297
  msgid "CSV Export"
1298
  msgstr "Exportar CSV"
1299
 
1300
- #: app/features/events.php:2499 app/features/events.php:2500
1301
  msgid "MS Excel Export"
1302
  msgstr "Exportar Excel"
1303
 
1304
- #: app/features/events.php:2502 app/features/events.php:2503
1305
  msgid "XML Export"
1306
  msgstr "Exportación XML"
1307
 
1308
- #: app/features/events.php:2505 app/features/events.php:2506
1309
  msgid "JSON Export"
1310
  msgstr "Exportación JSON"
1311
 
1312
- #: app/features/events.php:2508 app/features/events.php:2509
1313
  msgid "Duplicate"
1314
  msgstr "Duplicar"
1315
 
1316
- #: app/features/events.php:2557 app/features/events.php:2599
1317
  #: app/features/ix.php:2740 app/features/ix.php:2781
1318
  #: app/features/labels.php:176 app/features/locations.php:228
1319
- #: app/features/organizers.php:198 app/features/speakers.php:241
1320
  msgid "ID"
1321
  msgstr "ID"
1322
 
1323
- #: app/features/events.php:2557 app/features/events.php:2599
1324
  #: app/features/ix.php:2740 app/features/ix.php:2781
1325
  msgid "Link"
1326
  msgstr "Enlace"
1327
 
1328
- #: app/features/events.php:2557 app/features/events.php:2599
1329
  #, php-format
1330
  msgid "%s Tel"
1331
  msgstr "%s Teléfono "
1332
 
1333
- #: app/features/events.php:2557 app/features/events.php:2599
1334
  #, php-format
1335
  msgid "%s Email"
1336
  msgstr "%s Correo electrónico"
@@ -1389,27 +1404,27 @@ msgstr "El evento a sido publicado."
1389
  msgid "Go back to events list."
1390
  msgstr "Regrese a la lista de eventos."
1391
 
1392
- #: app/features/fes/form.php:359
1393
  msgid "Add certain days to event occurrence dates."
1394
  msgstr "Añade ciertos días a las fechas de ocurrencia del evento."
1395
 
1396
- #: app/features/fes/form.php:418
1397
  msgid "Note to reviewer"
1398
  msgstr "Nota al revisor"
1399
 
1400
- #: app/features/fes/form.php:436
1401
  msgid "User Data"
1402
  msgstr "Datos del usuario"
1403
 
1404
- #: app/features/fes/form.php:439
1405
  msgid "eg. yourname@gmail.com"
1406
  msgstr "Ejemplo. sunombre@gmail.com"
1407
 
1408
- #: app/features/fes/form.php:443 app/features/organizers.php:275
1409
  msgid "eg. John Smith"
1410
  msgstr "ej. John Smith"
1411
 
1412
- #: app/features/fes/form.php:461
1413
  msgid ""
1414
  "If you fill it, it will be replaced instead of default event page link. "
1415
  "Insert full link including http(s)://"
@@ -1417,32 +1432,32 @@ msgstr ""
1417
  "Si lo rellenas, se reemplazará en vez del enlace de la página del evento por "
1418
  "defecto. Inserta todo el enlace incluyendo http(s)://"
1419
 
1420
- #: app/features/fes/form.php:497 app/features/mec/settings.php:1177
1421
  msgid "Featured Image"
1422
  msgstr "Imagen destacada"
1423
 
1424
- #: app/features/fes/form.php:502
1425
  msgid "Remove Image"
1426
  msgstr "Eliminar imagen"
1427
 
1428
- #: app/features/fes/form.php:544 app/features/labels.php:61
1429
  #: app/features/labels.php:220 app/features/mec.php:318
1430
- #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4377
1431
  #: app/skins/single/default.php:130 app/skins/single/default.php:341
1432
- #: app/skins/single/m1.php:64 app/skins/single/modern.php:213
1433
  msgid "Labels"
1434
  msgstr "Etiquetas"
1435
 
1436
- #: app/features/fes/form.php:589 app/features/mec.php:316
1437
  #: app/features/mec/meta_boxes/filter.php:138
1438
  msgid "Tags"
1439
  msgstr "Tags"
1440
 
1441
- #: app/features/fes/form.php:591
1442
  msgid "Insert your desired tags, comma separated."
1443
  msgstr "Inserta las etiquetas que quieras, separadas por comas."
1444
 
1445
- #: app/features/fes/form.php:627
1446
  msgid "Submit"
1447
  msgstr "Enviar"
1448
 
@@ -1450,15 +1465,15 @@ msgstr "Enviar"
1450
  msgid "Click again to remove!"
1451
  msgstr "¡Haz clic de nuevo para eliminar!"
1452
 
1453
- #: app/features/fes/list.php:64 app/features/fes/list.php:78
1454
  msgid "Add new"
1455
  msgstr "Añadir nuevo"
1456
 
1457
- #: app/features/fes/list.php:70
1458
  msgid "View"
1459
  msgstr "Ver"
1460
 
1461
- #: app/features/fes/list.php:78
1462
  #, php-format
1463
  msgid "No events found! %s"
1464
  msgstr "No se encontraron eventos! %s"
@@ -1469,7 +1484,7 @@ msgstr "MEC - Importar / Exportar"
1469
 
1470
  #: app/features/ix.php:107 app/features/mec/gateways.php:77
1471
  #: app/features/mec/ie.php:73 app/features/mec/messages.php:77
1472
- #: app/features/mec/notifications.php:123 app/features/mec/regform.php:111
1473
  #: app/features/mec/settings.php:261 app/features/mec/styles.php:77
1474
  #: app/features/mec/styling.php:99 app/features/mec/support.php:73
1475
  msgid "Import / Export"
@@ -1741,15 +1756,15 @@ msgstr "Toggle"
1741
  #: app/features/ix/export_g_calendar.php:72
1742
  #: app/features/ix/export_g_calendar.php:147
1743
  #: app/features/ix/export_g_calendar.php:164
1744
- #: app/features/mec/notifications.php:207
1745
- #: app/features/mec/notifications.php:260
1746
- #: app/features/mec/notifications.php:313
1747
- #: app/features/mec/notifications.php:513
1748
  msgid "Add to Google Calendar"
1749
  msgstr "Añadir a Google Calendar"
1750
 
1751
  #: app/features/ix/export_g_calendar.php:90
1752
- #: app/features/mec/notifications.php:663 app/features/mec/settings.php:1788
1753
  msgid "Checking ..."
1754
  msgstr "Verificando…"
1755
 
@@ -1810,8 +1825,8 @@ msgstr "Se requiere %s para usar esta funcionalidad."
1810
  #: app/features/mec/meta_boxes/display_options.php:470
1811
  #: app/features/mec/meta_boxes/display_options.php:577
1812
  #: app/features/mec/meta_boxes/display_options.php:684
1813
- #: app/features/mec/meta_boxes/display_options.php:734
1814
- #: app/features/mec/meta_boxes/display_options.php:914
1815
  #: app/features/mec/settings.php:811 app/features/mec/settings.php:985
1816
  #: app/features/mec/settings.php:1003 app/features/mec/settings.php:1327
1817
  #: app/features/mec/settings.php:1436 app/features/mec/settings.php:1454
@@ -1979,7 +1994,7 @@ msgid "Auto Synchronization"
1979
  msgstr "Autosincronización"
1980
 
1981
  #: app/features/ix/sync.php:22
1982
- #: app/features/mec/meta_boxes/display_options.php:734
1983
  #, php-format
1984
  msgid "%s is required to use synchronization feature."
1985
  msgstr "Se requiere %s para usar la funcionalidad de sincronización."
@@ -1990,7 +2005,7 @@ msgstr "Importación automática a Google"
1990
 
1991
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
1992
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
1993
- #: app/features/mec/notifications.php:457
1994
  msgid "Important Note"
1995
  msgstr "Nota importante"
1996
 
@@ -2106,10 +2121,10 @@ msgstr "Elige un color de etiqueta"
2106
  #: app/features/mec/meta_boxes/display_options.php:475
2107
  #: app/features/mec/meta_boxes/display_options.php:525
2108
  #: app/features/mec/meta_boxes/display_options.php:689
2109
- #: app/features/mec/meta_boxes/display_options.php:796
2110
- #: app/features/mec/meta_boxes/display_options.php:853
2111
- #: app/features/mec/meta_boxes/display_options.php:945
2112
- #: app/features/mec/meta_boxes/display_options.php:1031
2113
  msgid "Style"
2114
  msgstr "Estilo"
2115
 
@@ -2125,13 +2140,13 @@ msgstr ""
2125
  #: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:82
2126
  #: app/skins/monthly_view/calendar_clean.php:81
2127
  #: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
2128
- #: app/skins/timetable/render.php:33 app/skins/timetable/render.php:135
2129
  #: app/skins/weekly_view/render.php:31 app/skins/yearly_view/render.php:48
2130
  msgid "Featured"
2131
  msgstr ""
2132
 
2133
  #: app/features/labels.php:117 app/features/labels.php:142
2134
- #: app/libraries/main.php:4571 app/skins/agenda/render.php:41
2135
  #: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:59
2136
  #: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
2137
  #: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
@@ -2139,7 +2154,7 @@ msgstr ""
2139
  #: app/skins/monthly_view/calendar.php:86
2140
  #: app/skins/monthly_view/calendar_clean.php:85
2141
  #: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
2142
- #: app/skins/timetable/render.php:37 app/skins/timetable/render.php:139
2143
  #: app/skins/weekly_view/render.php:35 app/skins/yearly_view/render.php:52
2144
  msgid "Canceled"
2145
  msgstr ""
@@ -2149,7 +2164,7 @@ msgid "You can show featured and canceled events by a different style!"
2149
  msgstr ""
2150
 
2151
  #: app/features/labels.php:179 app/features/locations.php:231
2152
- #: app/features/organizers.php:201 app/features/speakers.php:245
2153
  #: app/modules/booking/steps/tickets.php:38
2154
  msgid "Count"
2155
  msgstr "Contador"
@@ -2166,7 +2181,7 @@ msgstr "Evento %s"
2166
 
2167
  #: app/features/locations.php:59 app/features/mec.php:319
2168
  #: app/features/mec/dashboard.php:201 app/features/mec/meta_boxes/filter.php:87
2169
- #: app/libraries/main.php:4379
2170
  msgid "Locations"
2171
  msgstr "Lugar"
2172
 
@@ -2199,13 +2214,13 @@ msgstr "Geolongitud (opcional)"
2199
 
2200
  #: app/features/locations.php:137 app/features/locations.php:179
2201
  #: app/features/organizers.php:126 app/features/organizers.php:158
2202
- #: app/features/speakers.php:151 app/features/speakers.php:195
2203
  msgid "Thumbnail"
2204
  msgstr "Miniatura"
2205
 
2206
  #: app/features/locations.php:142 app/features/locations.php:182
2207
  #: app/features/organizers.php:131 app/features/organizers.php:161
2208
- #: app/features/speakers.php:156 app/features/speakers.php:198
2209
  msgid "Upload/Add image"
2210
  msgstr "Subir/Añadir imagen"
2211
 
@@ -2213,7 +2228,7 @@ msgstr "Subir/Añadir imagen"
2213
  #: app/features/locations.php:339 app/features/locations.php:346
2214
  #: app/features/organizers.php:132 app/features/organizers.php:162
2215
  #: app/features/organizers.php:294 app/features/organizers.php:301
2216
- #: app/features/speakers.php:157 app/features/speakers.php:199
2217
  msgid "Remove image"
2218
  msgstr "Eliminar imagen"
2219
 
@@ -2273,7 +2288,7 @@ msgstr "Elegir imagen"
2273
  msgid "Don't show map in single event page"
2274
  msgstr "No mostrar el mapa en la página del detalle del evento"
2275
 
2276
- #: app/features/locations.php:355 app/libraries/main.php:4413
2277
  #, fuzzy
2278
  #| msgid "Locations"
2279
  msgid "Other Locations"
@@ -2321,7 +2336,7 @@ msgstr "Soporte"
2321
 
2322
  #: app/features/mec.php:299 app/features/mec/gateways.php:84
2323
  #: app/features/mec/ie.php:80 app/features/mec/messages.php:84
2324
- #: app/features/mec/notifications.php:130 app/features/mec/regform.php:118
2325
  #: app/features/mec/settings.php:268 app/features/mec/styles.php:84
2326
  #: app/features/mec/styling.php:106 app/features/mec/support-page.php:9
2327
  #: app/features/mec/support.php:80 app/features/mec/support.php:93
@@ -2330,11 +2345,11 @@ msgstr "Soporte"
2330
 
2331
  #: app/features/mec.php:320 app/features/mec/dashboard.php:208
2332
  #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2333
- #: app/libraries/main.php:4381
2334
  msgid "Organizers"
2335
  msgstr "Organizadores"
2336
 
2337
- #: app/features/mec.php:328 app/features/mec.php:347
2338
  #: app/features/mec/dashboard.php:194
2339
  msgid "Shortcodes"
2340
  msgstr "Shortcodes"
@@ -2353,55 +2368,55 @@ msgstr "Ajustes MEC"
2353
  msgid "Addons"
2354
  msgstr ""
2355
 
2356
- #: app/features/mec.php:349
2357
  msgid "Add Shortcode"
2358
  msgstr "Nuevo Shortcode"
2359
 
2360
- #: app/features/mec.php:350
2361
  msgid "Add New Shortcode"
2362
  msgstr "Añadir nuevo Shortcode"
2363
 
2364
- #: app/features/mec.php:351
2365
  msgid "No shortcodes found!"
2366
  msgstr "No hay shortcodes"
2367
 
2368
- #: app/features/mec.php:352
2369
  msgid "All Shortcodes"
2370
  msgstr "Todos los Shortcodes"
2371
 
2372
- #: app/features/mec.php:353
2373
  msgid "Edit shortcodes"
2374
  msgstr "Editar Shortcodes"
2375
 
2376
- #: app/features/mec.php:354
2377
  msgid "No shortcodes found in Trash!"
2378
  msgstr "No hay shortcodes en la papelera"
2379
 
2380
- #: app/features/mec.php:402
2381
  msgid "Display Options"
2382
  msgstr "Opciones de pantalla"
2383
 
2384
- #: app/features/mec.php:403
2385
  msgid "Filter Options"
2386
  msgstr "Opciones de filtros"
2387
 
2388
- #: app/features/mec.php:405
2389
  msgid "Search Form"
2390
  msgstr "Formulario de Búsqueda"
2391
 
2392
- #: app/features/mec.php:755
2393
  msgid "Display content's images as Popup"
2394
  msgstr ""
2395
 
2396
- #: app/features/mec.php:768
2397
  msgid "Single Event Display Method"
2398
  msgstr "Método de vista para página del evento"
2399
 
2400
- #: app/features/mec.php:773
2401
  msgid "Separate Window"
2402
  msgstr "Ventana aparte"
2403
 
2404
- #: app/features/mec.php:774
2405
  msgid "Modal 1"
2406
  msgstr "Modal 1"
2407
 
@@ -2449,7 +2464,7 @@ msgstr "%s - El sistema gestor de eventos más potente y fácil de usar"
2449
  msgid "Modern Events Calendar (Lite)"
2450
  msgstr "Modern Events Calendar (Lite)"
2451
 
2452
- #: app/features/mec/dashboard.php:65 app/libraries/factory.php:191
2453
  msgctxt "plugin rate"
2454
  msgid "Rate the plugin ★★★★★"
2455
  msgstr ""
@@ -2563,10 +2578,10 @@ msgstr "Historial de cambios"
2563
  #: app/features/mec/gateways.php:171 app/features/mec/messages.php:11
2564
  #: app/features/mec/messages.php:118 app/features/mec/messages.php:127
2565
  #: app/features/mec/messages.php:161 app/features/mec/messages.php:170
2566
- #: app/features/mec/notifications.php:10 app/features/mec/notifications.php:569
2567
- #: app/features/mec/notifications.php:581
2568
- #: app/features/mec/notifications.php:680
2569
- #: app/features/mec/notifications.php:694 app/features/mec/regform.php:47
2570
  #: app/features/mec/regform.php:198 app/features/mec/regform.php:253
2571
  #: app/features/mec/regform.php:289 app/features/mec/regform.php:298
2572
  #: app/features/mec/settings.php:28 app/features/mec/settings.php:1714
@@ -2574,14 +2589,14 @@ msgstr "Historial de cambios"
2574
  #: app/features/mec/settings.php:1819 app/features/mec/styles.php:11
2575
  #: app/features/mec/styles.php:103 app/features/mec/styles.php:112
2576
  #: app/features/mec/styles.php:149 app/features/mec/styles.php:158
2577
- #: app/features/mec/styling.php:33 app/features/mec/styling.php:321
2578
- #: app/features/mec/styling.php:330 app/features/mec/styling.php:393
2579
- #: app/features/mec/styling.php:402
2580
  msgid "Save Changes"
2581
  msgstr "Guardar Cambios"
2582
 
2583
  #: app/features/mec/gateways.php:56 app/features/mec/ie.php:52
2584
- #: app/features/mec/messages.php:56 app/features/mec/notifications.php:102
2585
  #: app/features/mec/regform.php:90 app/features/mec/settings.php:240
2586
  #: app/features/mec/styles.php:56 app/features/mec/styling.php:78
2587
  #: app/features/mec/support.php:52
@@ -2589,7 +2604,7 @@ msgid "Styling Options"
2589
  msgstr "Opciones visuales"
2590
 
2591
  #: app/features/mec/gateways.php:63 app/features/mec/ie.php:59
2592
- #: app/features/mec/messages.php:63 app/features/mec/notifications.php:109
2593
  #: app/features/mec/regform.php:97 app/features/mec/settings.php:247
2594
  #: app/features/mec/styles.php:63 app/features/mec/styling.php:85
2595
  #: app/features/mec/support.php:59
@@ -2598,23 +2613,23 @@ msgstr "CSS personalizado"
2598
 
2599
  #: app/features/mec/gateways.php:70 app/features/mec/ie.php:66
2600
  #: app/features/mec/messages.php:70 app/features/mec/messages.php:97
2601
- #: app/features/mec/notifications.php:116 app/features/mec/regform.php:104
2602
  #: app/features/mec/settings.php:254 app/features/mec/styles.php:70
2603
  #: app/features/mec/styling.php:92 app/features/mec/support.php:66
2604
  msgid "Messages"
2605
  msgstr "Mensajes"
2606
 
2607
  #: app/features/mec/gateways.php:140 app/features/mec/messages.php:145
2608
- #: app/features/mec/notifications.php:658 app/features/mec/regform.php:273
2609
  #: app/features/mec/settings.php:1783 app/features/mec/styles.php:132
2610
- #: app/features/mec/styling.php:375
2611
  msgid "Saved"
2612
  msgstr "Guardado"
2613
 
2614
  #: app/features/mec/gateways.php:141 app/features/mec/messages.php:146
2615
- #: app/features/mec/notifications.php:659 app/features/mec/regform.php:274
2616
  #: app/features/mec/settings.php:1784 app/features/mec/styles.php:133
2617
- #: app/features/mec/styling.php:376
2618
  msgid "Settings Saved!"
2619
  msgstr "¡Ajustes guardados!"
2620
 
@@ -2661,7 +2676,7 @@ msgstr "Tema"
2661
  #: app/features/mec/meta_boxes/display_options.php:34
2662
  #: app/features/mec/meta_boxes/display_options.php:159
2663
  #: app/features/mec/meta_boxes/display_options.php:527
2664
- #: app/features/mec/meta_boxes/display_options.php:798
2665
  #: app/features/mec/settings.php:432 app/features/mec/settings.php:456
2666
  #: app/features/mec/settings.php:465 app/features/mec/settings.php:506
2667
  #: app/features/mec/settings.php:530 app/features/mec/settings.php:539
@@ -2680,7 +2695,7 @@ msgstr "Mínimo"
2680
  #: app/features/mec/meta_boxes/display_options.php:477
2681
  #: app/features/mec/meta_boxes/display_options.php:529
2682
  #: app/features/mec/meta_boxes/display_options.php:691
2683
- #: app/features/mec/meta_boxes/display_options.php:800
2684
  #: app/features/mec/settings.php:434 app/features/mec/settings.php:447
2685
  #: app/features/mec/settings.php:458 app/features/mec/settings.php:468
2686
  #: app/features/mec/settings.php:508 app/features/mec/settings.php:521
@@ -2703,9 +2718,9 @@ msgstr "Acordeón"
2703
  #: app/features/mec/meta_boxes/display_options.php:309
2704
  #: app/features/mec/meta_boxes/display_options.php:584
2705
  #: app/features/mec/meta_boxes/display_options.php:617
2706
- #: app/features/mec/meta_boxes/display_options.php:741
2707
- #: app/features/mec/meta_boxes/display_options.php:956
2708
- #: app/features/mec/meta_boxes/display_options.php:1043
2709
  msgid "Today"
2710
  msgstr "Hoy"
2711
 
@@ -2714,9 +2729,9 @@ msgstr "Hoy"
2714
  #: app/features/mec/meta_boxes/display_options.php:310
2715
  #: app/features/mec/meta_boxes/display_options.php:585
2716
  #: app/features/mec/meta_boxes/display_options.php:618
2717
- #: app/features/mec/meta_boxes/display_options.php:742
2718
- #: app/features/mec/meta_boxes/display_options.php:957
2719
- #: app/features/mec/meta_boxes/display_options.php:1044
2720
  msgid "Tomorrow"
2721
  msgstr "Mañana"
2722
 
@@ -2729,9 +2744,9 @@ msgstr "Mañana"
2729
  #: app/features/mec/meta_boxes/display_options.php:619
2730
  #: app/features/mec/meta_boxes/display_options.php:654
2731
  #: app/features/mec/meta_boxes/display_options.php:700
2732
- #: app/features/mec/meta_boxes/display_options.php:743
2733
- #: app/features/mec/meta_boxes/display_options.php:958
2734
- #: app/features/mec/meta_boxes/display_options.php:1045
2735
  msgid "Start of Current Month"
2736
  msgstr "Inicio del mes actual"
2737
 
@@ -2744,9 +2759,9 @@ msgstr "Inicio del mes actual"
2744
  #: app/features/mec/meta_boxes/display_options.php:620
2745
  #: app/features/mec/meta_boxes/display_options.php:655
2746
  #: app/features/mec/meta_boxes/display_options.php:701
2747
- #: app/features/mec/meta_boxes/display_options.php:744
2748
- #: app/features/mec/meta_boxes/display_options.php:959
2749
- #: app/features/mec/meta_boxes/display_options.php:1046
2750
  msgid "Start of Next Month"
2751
  msgstr "Inicio del siguiente mes"
2752
 
@@ -2760,9 +2775,9 @@ msgstr "Inicio del siguiente mes"
2760
  #: app/features/mec/meta_boxes/display_options.php:621
2761
  #: app/features/mec/meta_boxes/display_options.php:656
2762
  #: app/features/mec/meta_boxes/display_options.php:702
2763
- #: app/features/mec/meta_boxes/display_options.php:745
2764
- #: app/features/mec/meta_boxes/display_options.php:960
2765
- #: app/features/mec/meta_boxes/display_options.php:1047
2766
  msgid "On a certain date"
2767
  msgstr "Una fecha concreta"
2768
 
@@ -2776,9 +2791,9 @@ msgstr "Una fecha concreta"
2776
  #: app/features/mec/meta_boxes/display_options.php:625
2777
  #: app/features/mec/meta_boxes/display_options.php:659
2778
  #: app/features/mec/meta_boxes/display_options.php:705
2779
- #: app/features/mec/meta_boxes/display_options.php:748
2780
- #: app/features/mec/meta_boxes/display_options.php:963
2781
- #: app/features/mec/meta_boxes/display_options.php:1050
2782
  #, php-format
2783
  msgid "eg. %s"
2784
  msgstr "ej. %s"
@@ -2811,38 +2826,38 @@ msgstr "ej. %s"
2811
  #: app/features/mec/meta_boxes/display_options.php:325
2812
  #: app/features/mec/meta_boxes/display_options.php:492
2813
  #: app/features/mec/meta_boxes/display_options.php:497
2814
- #: app/features/mec/meta_boxes/display_options.php:752
2815
- #: app/features/mec/meta_boxes/display_options.php:757
2816
- #: app/features/mec/meta_boxes/display_options.php:804
2817
- #: app/features/mec/meta_boxes/display_options.php:810
2818
- #: app/features/mec/meta_boxes/display_options.php:817
2819
- #: app/features/mec/meta_boxes/display_options.php:822
2820
- #: app/features/mec/meta_boxes/display_options.php:829
2821
  #: app/features/mec/meta_boxes/display_options.php:833
2822
- #: app/features/mec/meta_boxes/display_options.php:861
2823
- #: app/features/mec/meta_boxes/display_options.php:865
2824
- #: app/features/mec/meta_boxes/display_options.php:872
2825
- #: app/features/mec/meta_boxes/display_options.php:876
2826
- #: app/features/mec/meta_boxes/display_options.php:883
2827
- #: app/features/mec/meta_boxes/display_options.php:889
2828
- #: app/features/mec/meta_boxes/display_options.php:919
2829
- #: app/features/mec/meta_boxes/display_options.php:924
2830
- #: app/features/mec/meta_boxes/display_options.php:967
2831
- #: app/features/mec/meta_boxes/display_options.php:973
2832
- #: app/features/mec/meta_boxes/display_options.php:980
2833
- #: app/features/mec/meta_boxes/display_options.php:984
2834
- #: app/features/mec/meta_boxes/display_options.php:991
2835
- #: app/features/mec/meta_boxes/display_options.php:995
2836
- #: app/features/mec/meta_boxes/display_options.php:1054
2837
- #: app/features/mec/meta_boxes/display_options.php:1060
2838
- #: app/features/mec/meta_boxes/display_options.php:1067
2839
- #: app/features/mec/meta_boxes/display_options.php:1073
2840
- #: app/features/mec/meta_boxes/display_options.php:1080
2841
- #: app/features/mec/meta_boxes/display_options.php:1086
2842
- #: app/features/mec/meta_boxes/display_options.php:1093
2843
- #: app/features/mec/meta_boxes/display_options.php:1099
2844
- #: app/features/mec/meta_boxes/display_options.php:1106
2845
- #: app/features/mec/meta_boxes/display_options.php:1112
 
 
 
 
2846
  msgid "Date Formats"
2847
  msgstr "Formato de fecha"
2848
 
@@ -2858,11 +2873,11 @@ msgstr "Los valores predeterminados son d, M y l"
2858
  #: app/features/mec/meta_boxes/display_options.php:86
2859
  #: app/features/mec/meta_boxes/display_options.php:224
2860
  #: app/features/mec/meta_boxes/display_options.php:248
2861
- #: app/features/mec/meta_boxes/display_options.php:1061
2862
- #: app/features/mec/meta_boxes/display_options.php:1074
2863
- #: app/features/mec/meta_boxes/display_options.php:1087
2864
- #: app/features/mec/meta_boxes/display_options.php:1100
2865
- #: app/features/mec/meta_boxes/display_options.php:1113
2866
  msgid "Default values are d, F and l"
2867
  msgstr "Los valores predeterminados son d, F y l"
2868
 
@@ -2879,9 +2894,9 @@ msgstr "Los valores predeterminados son d y F"
2879
  #: app/features/mec/meta_boxes/display_options.php:115
2880
  #: app/features/mec/meta_boxes/display_options.php:276
2881
  #: app/features/mec/meta_boxes/display_options.php:332
2882
- #: app/features/mec/meta_boxes/display_options.php:764
2883
- #: app/features/mec/meta_boxes/display_options.php:1011
2884
- #: app/features/mec/meta_boxes/display_options.php:1119
2885
  msgid "Limit"
2886
  msgstr "Límite"
2887
 
@@ -2893,8 +2908,8 @@ msgstr "Límite"
2893
  #: app/features/mec/meta_boxes/display_options.php:630
2894
  #: app/features/mec/meta_boxes/display_options.php:664
2895
  #: app/features/mec/meta_boxes/display_options.php:710
2896
- #: app/features/mec/meta_boxes/display_options.php:1012
2897
- #: app/features/mec/meta_boxes/display_options.php:1120
2898
  msgid "eg. 6"
2899
  msgstr "ej. 6"
2900
 
@@ -2918,7 +2933,7 @@ msgstr ""
2918
  #: app/features/mec/meta_boxes/display_options.php:385
2919
  #: app/features/mec/meta_boxes/display_options.php:528
2920
  #: app/features/mec/meta_boxes/display_options.php:692
2921
- #: app/features/mec/meta_boxes/display_options.php:799
2922
  #: app/features/mec/settings.php:433 app/features/mec/settings.php:448
2923
  #: app/features/mec/settings.php:466 app/features/mec/settings.php:507
2924
  #: app/features/mec/settings.php:522 app/features/mec/settings.php:540
@@ -2964,7 +2979,7 @@ msgid "Default value is \"d F Y\""
2964
  msgstr "Valor por defecto is \"d F Y\""
2965
 
2966
  #: app/features/mec/meta_boxes/display_options.php:265
2967
- #: app/features/mec/meta_boxes/display_options.php:1002
2968
  msgid "Count in row"
2969
  msgstr "Contador en fila"
2970
 
@@ -2972,7 +2987,7 @@ msgstr "Contador en fila"
2972
  #: app/features/mec/meta_boxes/display_options.php:470
2973
  #: app/features/mec/meta_boxes/display_options.php:577
2974
  #: app/features/mec/meta_boxes/display_options.php:684
2975
- #: app/features/mec/meta_boxes/display_options.php:914
2976
  #, php-format
2977
  msgid "%s is required to use this skin."
2978
  msgstr "Se requiere %s para utilizar este tema."
@@ -2988,15 +3003,15 @@ msgstr "Vista por defecto"
2988
 
2989
  #: app/features/mec/meta_boxes/display_options.php:375
2990
  #: app/features/mec/meta_boxes/display_options.php:392
2991
- #: app/libraries/main.php:329 app/libraries/main.php:1201
2992
- #: app/libraries/main.php:1226
2993
  msgid "List View"
2994
  msgstr "Vista de lista"
2995
 
2996
  #: app/features/mec/meta_boxes/display_options.php:376
2997
  #: app/features/mec/meta_boxes/display_options.php:402
2998
- #: app/libraries/main.php:333 app/libraries/main.php:1195
2999
- #: app/libraries/main.php:1220
3000
  msgid "Yearly View"
3001
  msgstr "Vista anual"
3002
 
@@ -3007,15 +3022,15 @@ msgstr "Vista Mensual/Calendario"
3007
 
3008
  #: app/features/mec/meta_boxes/display_options.php:378
3009
  #: app/features/mec/meta_boxes/display_options.php:434
3010
- #: app/libraries/main.php:336 app/libraries/main.php:1197
3011
- #: app/libraries/main.php:1222
3012
  msgid "Weekly View"
3013
  msgstr "Vista de semana"
3014
 
3015
  #: app/features/mec/meta_boxes/display_options.php:379
3016
  #: app/features/mec/meta_boxes/display_options.php:444
3017
- #: app/libraries/main.php:335 app/libraries/main.php:1198
3018
- #: app/libraries/main.php:1223
3019
  msgid "Daily View"
3020
  msgstr "Vista de día"
3021
 
@@ -3057,7 +3072,7 @@ msgstr "Eventos por día"
3057
  #: app/features/mec/meta_boxes/display_options.php:551
3058
  #: app/features/mec/meta_boxes/display_options.php:634
3059
  #: app/features/mec/meta_boxes/display_options.php:668
3060
- #: app/features/mec/meta_boxes/display_options.php:715
3061
  msgid "Next/Previous Buttons"
3062
  msgstr "Botones Siguiente/Anterior"
3063
 
@@ -3074,7 +3089,7 @@ msgstr "Texto"
3074
  #: app/features/mec/meta_boxes/display_options.php:569
3075
  #: app/features/mec/meta_boxes/display_options.php:642
3076
  #: app/features/mec/meta_boxes/display_options.php:676
3077
- #: app/features/mec/meta_boxes/display_options.php:723
3078
  msgid "For showing next/previous month navigation."
3079
  msgstr "Para mostrar navegación siguiente/anterior"
3080
 
@@ -3106,121 +3121,141 @@ msgstr "Semana actual"
3106
  msgid "Next Week"
3107
  msgstr "Siguiente semana"
3108
 
3109
- #: app/features/mec/meta_boxes/display_options.php:758
3110
- #: app/features/mec/meta_boxes/display_options.php:925
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3111
  msgid "Default values are j and F"
3112
  msgstr "Los valores predeterminados son j y F"
3113
 
3114
- #: app/features/mec/meta_boxes/display_options.php:765
3115
  msgid "eg. 24"
3116
  msgstr "ej. 24"
3117
 
3118
- #: app/features/mec/meta_boxes/display_options.php:768
3119
  msgid "Filter By"
3120
  msgstr "Filtrar por"
3121
 
3122
- #: app/features/mec/meta_boxes/display_options.php:779
 
 
 
 
3123
  msgid "Convert Masonry to Grid"
3124
  msgstr ""
3125
 
3126
- #: app/features/mec/meta_boxes/display_options.php:780
3127
  msgid "For using this option, your events should come with image"
3128
  msgstr ""
3129
 
3130
- #: app/features/mec/meta_boxes/display_options.php:811
3131
  msgid "Default values are d, M and Y"
3132
  msgstr "Los valores predeterminados son d, M e Y"
3133
 
3134
- #: app/features/mec/meta_boxes/display_options.php:823
3135
  msgid "Default values are \"F d\" and l"
3136
  msgstr "Los valores predeterminados son \"F d\" y l"
3137
 
3138
- #: app/features/mec/meta_boxes/display_options.php:834
3139
  msgid "Default value is \"l, F d Y\""
3140
  msgstr "Valor por defecto es \"l, F d Y\""
3141
 
3142
- #: app/features/mec/meta_boxes/display_options.php:855
3143
  msgid "Style 1"
3144
  msgstr "Estilo 1"
3145
 
3146
- #: app/features/mec/meta_boxes/display_options.php:856
3147
  msgid "Style 2"
3148
  msgstr "Estilo 2"
3149
 
3150
- #: app/features/mec/meta_boxes/display_options.php:857
3151
  msgid "Style 3"
3152
  msgstr "Estilo 3"
3153
 
3154
- #: app/features/mec/meta_boxes/display_options.php:866
3155
- #: app/features/mec/meta_boxes/display_options.php:877
3156
  msgid "Default value is \"j F Y\""
3157
  msgstr "El valor predeterminado es \"j F Y\""
3158
 
3159
- #: app/features/mec/meta_boxes/display_options.php:890
3160
  msgid "Default values are j, F and Y"
3161
  msgstr "Los valores predeterminados son j, F e Y"
3162
 
3163
- #: app/features/mec/meta_boxes/display_options.php:898
3164
- #: app/features/mec/meta_boxes/display_options.php:933
3165
  msgid " -- Next Upcoming Event -- "
3166
  msgstr " -- Próximo Evento -- "
3167
 
3168
- #: app/features/mec/meta_boxes/display_options.php:905
3169
  msgid "Background Color"
3170
  msgstr "Color de fondo"
3171
 
3172
- #: app/features/mec/meta_boxes/display_options.php:947
3173
- #: app/features/mec/meta_boxes/display_options.php:1033
3174
  msgid "Type 1"
3175
  msgstr "Tipo 1"
3176
 
3177
- #: app/features/mec/meta_boxes/display_options.php:948
3178
- #: app/features/mec/meta_boxes/display_options.php:1034
3179
  msgid "Type 2"
3180
  msgstr "Tipo 2"
3181
 
3182
- #: app/features/mec/meta_boxes/display_options.php:949
3183
- #: app/features/mec/meta_boxes/display_options.php:1035
3184
  msgid "Type 3"
3185
  msgstr "Tipo 3"
3186
 
3187
- #: app/features/mec/meta_boxes/display_options.php:950
3188
- #: app/features/mec/meta_boxes/display_options.php:1036
3189
  msgid "Type 4"
3190
  msgstr "Tipo 4"
3191
 
3192
- #: app/features/mec/meta_boxes/display_options.php:974
3193
  msgid "Default values are d, F and Y"
3194
  msgstr "Los valores predeterminados son d, F e Y"
3195
 
3196
- #: app/features/mec/meta_boxes/display_options.php:985
3197
- #: app/features/mec/meta_boxes/display_options.php:996
3198
  msgid "Default value is \"M d, Y\""
3199
  msgstr "El valor predeterminado es \"M d, Y\""
3200
 
3201
- #: app/features/mec/meta_boxes/display_options.php:1015
3202
- #: app/features/mec/meta_boxes/display_options.php:1123
3203
  msgid "Auto Play Time"
3204
  msgstr "Tiempo de reproducción automática"
3205
 
3206
- #: app/features/mec/meta_boxes/display_options.php:1016
3207
- #: app/features/mec/meta_boxes/display_options.php:1124
3208
  msgid "eg. 3000 default is 3 second"
3209
  msgstr "Ejemplo. 3000 son 3 segundos."
3210
 
3211
- #: app/features/mec/meta_boxes/display_options.php:1020
3212
  #, fuzzy
3213
  #| msgid "Archive Page Skin"
3214
  msgid "Archive Link"
3215
  msgstr "Tema de la página de archivo"
3216
 
3217
- #: app/features/mec/meta_boxes/display_options.php:1024
3218
  #, fuzzy
3219
  #| msgid "Text"
3220
  msgid "Head Text"
3221
  msgstr "Texto"
3222
 
3223
- #: app/features/mec/meta_boxes/display_options.php:1037
3224
  msgid "Type 5"
3225
  msgstr "Tipo 5"
3226
 
@@ -3321,53 +3356,58 @@ msgstr "Mostrar formulario búsqueda"
3321
  #: app/features/mec/meta_boxes/search_form.php:216
3322
  #: app/features/mec/meta_boxes/search_form.php:223
3323
  #: app/features/mec/meta_boxes/search_form.php:230
3324
- #: app/features/mec/meta_boxes/search_form.php:242
3325
- #: app/features/mec/meta_boxes/search_form.php:249
3326
- #: app/features/mec/meta_boxes/search_form.php:256
3327
- #: app/features/mec/meta_boxes/search_form.php:263
3328
- #: app/features/mec/meta_boxes/search_form.php:270
3329
  #: app/features/mec/meta_boxes/search_form.php:277
3330
  #: app/features/mec/meta_boxes/search_form.php:284
3331
  #: app/features/mec/meta_boxes/search_form.php:291
3332
- #: app/features/mec/meta_boxes/search_form.php:303
3333
- #: app/features/mec/meta_boxes/search_form.php:310
3334
- #: app/features/mec/meta_boxes/search_form.php:317
3335
- #: app/features/mec/meta_boxes/search_form.php:324
3336
- #: app/features/mec/meta_boxes/search_form.php:331
3337
  #: app/features/mec/meta_boxes/search_form.php:338
3338
  #: app/features/mec/meta_boxes/search_form.php:345
3339
  #: app/features/mec/meta_boxes/search_form.php:352
3340
- #: app/features/mec/meta_boxes/search_form.php:364
3341
- #: app/features/mec/meta_boxes/search_form.php:371
3342
- #: app/features/mec/meta_boxes/search_form.php:378
3343
- #: app/features/mec/meta_boxes/search_form.php:385
3344
- #: app/features/mec/meta_boxes/search_form.php:392
3345
  #: app/features/mec/meta_boxes/search_form.php:399
3346
  #: app/features/mec/meta_boxes/search_form.php:406
3347
- #: app/features/mec/meta_boxes/search_form.php:418
3348
- #: app/features/mec/meta_boxes/search_form.php:425
3349
- #: app/features/mec/meta_boxes/search_form.php:432
3350
- #: app/features/mec/meta_boxes/search_form.php:439
3351
- #: app/features/mec/meta_boxes/search_form.php:446
3352
  #: app/features/mec/meta_boxes/search_form.php:453
3353
  #: app/features/mec/meta_boxes/search_form.php:460
3354
  #: app/features/mec/meta_boxes/search_form.php:467
3355
- #: app/features/mec/meta_boxes/search_form.php:479
3356
- #: app/features/mec/meta_boxes/search_form.php:486
3357
- #: app/features/mec/meta_boxes/search_form.php:493
3358
- #: app/features/mec/meta_boxes/search_form.php:500
3359
- #: app/features/mec/meta_boxes/search_form.php:507
3360
  #: app/features/mec/meta_boxes/search_form.php:514
3361
  #: app/features/mec/meta_boxes/search_form.php:521
3362
  #: app/features/mec/meta_boxes/search_form.php:528
3363
- #: app/features/mec/meta_boxes/search_form.php:540
3364
- #: app/features/mec/meta_boxes/search_form.php:547
3365
- #: app/features/mec/meta_boxes/search_form.php:554
3366
- #: app/features/mec/meta_boxes/search_form.php:561
3367
- #: app/features/mec/meta_boxes/search_form.php:568
3368
  #: app/features/mec/meta_boxes/search_form.php:575
3369
  #: app/features/mec/meta_boxes/search_form.php:582
3370
  #: app/features/mec/meta_boxes/search_form.php:589
 
 
 
 
 
3371
  #: app/features/mec/settings.php:330 app/features/mec/settings.php:586
3372
  #: app/features/mec/settings.php:866
3373
  msgid "Disabled"
@@ -3376,26 +3416,28 @@ msgstr "Desactivado"
3376
  #: app/features/mec/meta_boxes/search_form.php:52
3377
  #: app/features/mec/meta_boxes/search_form.php:113
3378
  #: app/features/mec/meta_boxes/search_form.php:174
3379
- #: app/features/mec/meta_boxes/search_form.php:261
3380
- #: app/features/mec/meta_boxes/search_form.php:322
3381
- #: app/features/mec/meta_boxes/search_form.php:383
3382
- #: app/features/mec/meta_boxes/search_form.php:437
3383
- #: app/features/mec/meta_boxes/search_form.php:498
3384
- #: app/features/mec/meta_boxes/search_form.php:559 app/features/speakers.php:56
3385
- #: app/features/speakers.php:242 app/libraries/main.php:4384
3386
- #: app/libraries/skins.php:853
 
3387
  msgid "Speaker"
3388
  msgstr ""
3389
 
3390
  #: app/features/mec/meta_boxes/search_form.php:59
3391
  #: app/features/mec/meta_boxes/search_form.php:120
3392
  #: app/features/mec/meta_boxes/search_form.php:181
3393
- #: app/features/mec/meta_boxes/search_form.php:268
3394
- #: app/features/mec/meta_boxes/search_form.php:329
3395
- #: app/features/mec/meta_boxes/search_form.php:390
3396
- #: app/features/mec/meta_boxes/search_form.php:444
3397
- #: app/features/mec/meta_boxes/search_form.php:505
3398
- #: app/features/mec/meta_boxes/search_form.php:566 app/libraries/skins.php:879
 
3399
  #, fuzzy
3400
  #| msgid "Tags"
3401
  msgid "Tag"
@@ -3404,145 +3446,135 @@ msgstr "Tags"
3404
  #: app/features/mec/meta_boxes/search_form.php:73
3405
  #: app/features/mec/meta_boxes/search_form.php:134
3406
  #: app/features/mec/meta_boxes/search_form.php:195
3407
- #: app/features/mec/meta_boxes/search_form.php:221
3408
- #: app/features/mec/meta_boxes/search_form.php:282
3409
- #: app/features/mec/meta_boxes/search_form.php:343
3410
- #: app/features/mec/meta_boxes/search_form.php:458
3411
- #: app/features/mec/meta_boxes/search_form.php:519
3412
- #: app/features/mec/meta_boxes/search_form.php:580
3413
  msgid "Month Filter"
3414
  msgstr "Filtrar por mes"
3415
 
3416
  #: app/features/mec/meta_boxes/search_form.php:80
3417
  #: app/features/mec/meta_boxes/search_form.php:141
3418
  #: app/features/mec/meta_boxes/search_form.php:202
3419
- #: app/features/mec/meta_boxes/search_form.php:228
3420
- #: app/features/mec/meta_boxes/search_form.php:289
3421
- #: app/features/mec/meta_boxes/search_form.php:350
3422
- #: app/features/mec/meta_boxes/search_form.php:404
3423
- #: app/features/mec/meta_boxes/search_form.php:465
3424
- #: app/features/mec/meta_boxes/search_form.php:526
3425
- #: app/features/mec/meta_boxes/search_form.php:587
3426
  msgid "Text Search"
3427
  msgstr "Búsqueda de texto"
3428
 
3429
  #: app/features/mec/meta_boxes/search_form.php:83
3430
  #: app/features/mec/meta_boxes/search_form.php:144
3431
  #: app/features/mec/meta_boxes/search_form.php:205
3432
- #: app/features/mec/meta_boxes/search_form.php:231
3433
- #: app/features/mec/meta_boxes/search_form.php:292
3434
- #: app/features/mec/meta_boxes/search_form.php:353
3435
- #: app/features/mec/meta_boxes/search_form.php:407
3436
- #: app/features/mec/meta_boxes/search_form.php:468
3437
- #: app/features/mec/meta_boxes/search_form.php:529
3438
- #: app/features/mec/meta_boxes/search_form.php:590
3439
  msgid "Text Input"
3440
  msgstr "Campo de texto"
3441
 
3442
- #: app/features/mec/meta_boxes/search_form.php:598
3443
- #: app/features/mec/meta_boxes/search_form.php:604
3444
- #: app/features/mec/meta_boxes/search_form.php:610
3445
- #: app/features/mec/meta_boxes/search_form.php:616
3446
- #: app/features/mec/meta_boxes/search_form.php:622
3447
- #: app/features/mec/meta_boxes/search_form.php:628
3448
  msgid "No Search Options"
3449
  msgstr "No hay opciones de búsqueda"
3450
 
3451
- #: app/features/mec/notifications.php:55 app/features/mec/notifications.php:151
3452
  msgid "Booking Notification"
3453
  msgstr "Avisos de reservas"
3454
 
3455
- #: app/features/mec/notifications.php:61 app/features/mec/notifications.php:216
3456
  msgid "Booking Verification"
3457
  msgstr "Verificación de la reserva"
3458
 
3459
- #: app/features/mec/notifications.php:67 app/features/mec/notifications.php:268
3460
  #: app/features/mec/settings.php:1409
3461
  msgid "Booking Confirmation"
3462
  msgstr "Confirmación de reserva"
3463
 
3464
- #: app/features/mec/notifications.php:73 app/features/mec/notifications.php:320
3465
  #, fuzzy
3466
  #| msgid "Booking cancellation link."
3467
  msgid "Booking Cancellation"
3468
  msgstr "Enlace de cancelación de la reserva."
3469
 
3470
- #: app/features/mec/notifications.php:79 app/features/mec/notifications.php:387
3471
  msgid "Admin Notification"
3472
  msgstr "Notificación de administrador"
3473
 
3474
- #: app/features/mec/notifications.php:85 app/features/mec/notifications.php:447
3475
  #: app/libraries/notifications.php:354
3476
  msgid "Booking Reminder"
3477
  msgstr "Recordatorio de reserva"
3478
 
3479
- #: app/features/mec/notifications.php:91 app/features/mec/notifications.php:522
3480
  #: app/features/mec/support-page.php:80
3481
  msgid "New Event"
3482
  msgstr "Nuevo evento"
3483
 
3484
- #: app/features/mec/notifications.php:155
3485
  msgid "Enable booking notification"
3486
  msgstr "Activar notificación de reservas"
3487
 
3488
- #: app/features/mec/notifications.php:159
3489
  msgid "It sends to attendee after booking for notifying him/her."
3490
  msgstr "Se envía a los asistentes después de la reserva."
3491
 
3492
- #: app/features/mec/notifications.php:161
3493
- #: app/features/mec/notifications.php:219
3494
- #: app/features/mec/notifications.php:271
3495
- #: app/features/mec/notifications.php:330
3496
- #: app/features/mec/notifications.php:397
3497
- #: app/features/mec/notifications.php:460
3498
- #: app/features/mec/notifications.php:532
3499
  msgid "Email Subject"
3500
  msgstr "Asunto del correo electrónico"
3501
 
3502
- #: app/features/mec/notifications.php:165
3503
- #: app/features/mec/notifications.php:169
3504
- #: app/features/mec/notifications.php:223
3505
- #: app/features/mec/notifications.php:227
3506
- #: app/features/mec/notifications.php:275
3507
- #: app/features/mec/notifications.php:279
3508
- #: app/features/mec/notifications.php:334
3509
- #: app/features/mec/notifications.php:338
3510
- #: app/features/mec/notifications.php:401
3511
- #: app/features/mec/notifications.php:405
3512
- #: app/features/mec/notifications.php:464
3513
- #: app/features/mec/notifications.php:468
3514
- #: app/features/mec/notifications.php:479
3515
- #: app/features/mec/notifications.php:536
3516
- #: app/features/mec/notifications.php:540
3517
  msgid "Custom Recipients"
3518
  msgstr "Destinatarios personalizados"
3519
 
3520
- #: app/features/mec/notifications.php:170
3521
- #: app/features/mec/notifications.php:228
3522
- #: app/features/mec/notifications.php:280
3523
- #: app/features/mec/notifications.php:339
3524
- #: app/features/mec/notifications.php:406
3525
- #: app/features/mec/notifications.php:469
3526
- #: app/features/mec/notifications.php:480
3527
- #: app/features/mec/notifications.php:541
3528
  msgid "Insert comma separated emails for multiple recipients."
3529
  msgstr "Inserta los correos separados por coma para múltiples destinatarios."
3530
 
3531
- #: app/features/mec/notifications.php:177
3532
- #: app/features/mec/notifications.php:350
3533
- #: app/features/mec/notifications.php:413
3534
- msgid "Send the email to event organizer"
3535
- msgstr "Enviar correo al organizador del evento"
3536
-
3537
  #: app/features/mec/notifications.php:180
3538
- #: app/features/mec/notifications.php:234
3539
- #: app/features/mec/notifications.php:286
3540
- #: app/features/mec/notifications.php:357
3541
  #: app/features/mec/notifications.php:416
3542
- #: app/features/mec/notifications.php:486
3543
- #: app/features/mec/notifications.php:547
3544
- msgid "Email Content"
3545
- msgstr "Contenido del correo"
3546
 
3547
  #: app/features/mec/notifications.php:183
3548
  #: app/features/mec/notifications.php:237
@@ -3551,17 +3583,8 @@ msgstr "Contenido del correo"
3551
  #: app/features/mec/notifications.php:419
3552
  #: app/features/mec/notifications.php:489
3553
  #: app/features/mec/notifications.php:550
3554
- msgid "You can use following placeholders"
3555
- msgstr "Puedes utilizar los siguientes marcadores de posición"
3556
-
3557
- #: app/features/mec/notifications.php:185
3558
- #: app/features/mec/notifications.php:239
3559
- #: app/features/mec/notifications.php:291
3560
- #: app/features/mec/notifications.php:362
3561
- #: app/features/mec/notifications.php:421
3562
- #: app/features/mec/notifications.php:491
3563
- msgid "First name of attendee"
3564
- msgstr "Nombre del asistente"
3565
 
3566
  #: app/features/mec/notifications.php:186
3567
  #: app/features/mec/notifications.php:240
@@ -3569,17 +3592,9 @@ msgstr "Nombre del asistente"
3569
  #: app/features/mec/notifications.php:363
3570
  #: app/features/mec/notifications.php:422
3571
  #: app/features/mec/notifications.php:492
3572
- msgid "Last name of attendee"
3573
- msgstr "Apellidos del asistente"
3574
-
3575
- #: app/features/mec/notifications.php:187
3576
- #: app/features/mec/notifications.php:241
3577
- #: app/features/mec/notifications.php:293
3578
- #: app/features/mec/notifications.php:364
3579
- #: app/features/mec/notifications.php:423
3580
- #: app/features/mec/notifications.php:493
3581
- msgid "Email of attendee"
3582
- msgstr "Correo electrónico del asistente"
3583
 
3584
  #: app/features/mec/notifications.php:188
3585
  #: app/features/mec/notifications.php:242
@@ -3587,8 +3602,8 @@ msgstr "Correo electrónico del asistente"
3587
  #: app/features/mec/notifications.php:365
3588
  #: app/features/mec/notifications.php:424
3589
  #: app/features/mec/notifications.php:494
3590
- msgid "Booked date of event"
3591
- msgstr "Fecha de reserva del evento"
3592
 
3593
  #: app/features/mec/notifications.php:189
3594
  #: app/features/mec/notifications.php:243
@@ -3596,10 +3611,8 @@ msgstr "Fecha de reserva del evento"
3596
  #: app/features/mec/notifications.php:366
3597
  #: app/features/mec/notifications.php:425
3598
  #: app/features/mec/notifications.php:495
3599
- #, fuzzy
3600
- #| msgid "Booked date of event"
3601
- msgid "Booked time of event"
3602
- msgstr "Fecha de reserva del evento"
3603
 
3604
  #: app/features/mec/notifications.php:190
3605
  #: app/features/mec/notifications.php:244
@@ -3607,8 +3620,8 @@ msgstr "Fecha de reserva del evento"
3607
  #: app/features/mec/notifications.php:367
3608
  #: app/features/mec/notifications.php:426
3609
  #: app/features/mec/notifications.php:496
3610
- msgid "Booking Price"
3611
- msgstr "Precio de la reserva"
3612
 
3613
  #: app/features/mec/notifications.php:191
3614
  #: app/features/mec/notifications.php:245
@@ -3616,9 +3629,8 @@ msgstr "Precio de la reserva"
3616
  #: app/features/mec/notifications.php:368
3617
  #: app/features/mec/notifications.php:427
3618
  #: app/features/mec/notifications.php:497
3619
- #: app/features/mec/notifications.php:556
3620
- msgid "Your website title"
3621
- msgstr "Título de tu web"
3622
 
3623
  #: app/features/mec/notifications.php:192
3624
  #: app/features/mec/notifications.php:246
@@ -3626,9 +3638,10 @@ msgstr "Título de tu web"
3626
  #: app/features/mec/notifications.php:369
3627
  #: app/features/mec/notifications.php:428
3628
  #: app/features/mec/notifications.php:498
3629
- #: app/features/mec/notifications.php:557
3630
- msgid "Your website URL"
3631
- msgstr "URL de tu sitio web"
 
3632
 
3633
  #: app/features/mec/notifications.php:193
3634
  #: app/features/mec/notifications.php:247
@@ -3636,9 +3649,8 @@ msgstr "URL de tu sitio web"
3636
  #: app/features/mec/notifications.php:370
3637
  #: app/features/mec/notifications.php:429
3638
  #: app/features/mec/notifications.php:499
3639
- #: app/features/mec/notifications.php:558
3640
- msgid "Your website description"
3641
- msgstr "Descripción de tu web"
3642
 
3643
  #: app/features/mec/notifications.php:194
3644
  #: app/features/mec/notifications.php:248
@@ -3646,8 +3658,9 @@ msgstr "Descripción de tu web"
3646
  #: app/features/mec/notifications.php:371
3647
  #: app/features/mec/notifications.php:430
3648
  #: app/features/mec/notifications.php:500
3649
- msgid "Event title"
3650
- msgstr "Título del evento"
 
3651
 
3652
  #: app/features/mec/notifications.php:195
3653
  #: app/features/mec/notifications.php:249
@@ -3655,10 +3668,9 @@ msgstr "Título del evento"
3655
  #: app/features/mec/notifications.php:372
3656
  #: app/features/mec/notifications.php:431
3657
  #: app/features/mec/notifications.php:501
3658
- #, fuzzy
3659
- #| msgid "Event Link"
3660
- msgid "Event link"
3661
- msgstr "Enlace del evento"
3662
 
3663
  #: app/features/mec/notifications.php:196
3664
  #: app/features/mec/notifications.php:250
@@ -3666,8 +3678,9 @@ msgstr "Enlace del evento"
3666
  #: app/features/mec/notifications.php:373
3667
  #: app/features/mec/notifications.php:432
3668
  #: app/features/mec/notifications.php:502
3669
- msgid "Organizer name of booked event"
3670
- msgstr "Nombre del organizador del evento reservado"
 
3671
 
3672
  #: app/features/mec/notifications.php:197
3673
  #: app/features/mec/notifications.php:251
@@ -3675,8 +3688,8 @@ msgstr "Nombre del organizador del evento reservado"
3675
  #: app/features/mec/notifications.php:374
3676
  #: app/features/mec/notifications.php:433
3677
  #: app/features/mec/notifications.php:503
3678
- msgid "Organizer tel of booked event"
3679
- msgstr "Teléfono del organizador del evento reservado"
3680
 
3681
  #: app/features/mec/notifications.php:198
3682
  #: app/features/mec/notifications.php:252
@@ -3684,8 +3697,10 @@ msgstr "Teléfono del organizador del evento reservado"
3684
  #: app/features/mec/notifications.php:375
3685
  #: app/features/mec/notifications.php:434
3686
  #: app/features/mec/notifications.php:504
3687
- msgid "Organizer email of booked event"
3688
- msgstr "Correo electrónico del organizar de un evento reservado"
 
 
3689
 
3690
  #: app/features/mec/notifications.php:199
3691
  #: app/features/mec/notifications.php:253
@@ -3693,8 +3708,8 @@ msgstr "Correo electrónico del organizar de un evento reservado"
3693
  #: app/features/mec/notifications.php:376
3694
  #: app/features/mec/notifications.php:435
3695
  #: app/features/mec/notifications.php:505
3696
- msgid "Location name of booked event"
3697
- msgstr "Nombre del lugar del organizador del evento reservado"
3698
 
3699
  #: app/features/mec/notifications.php:200
3700
  #: app/features/mec/notifications.php:254
@@ -3702,80 +3717,107 @@ msgstr "Nombre del lugar del organizador del evento reservado"
3702
  #: app/features/mec/notifications.php:377
3703
  #: app/features/mec/notifications.php:436
3704
  #: app/features/mec/notifications.php:506
3705
- msgid "Location address of booked event"
3706
- msgstr "Dirección del organizador del evento reservado"
3707
 
3708
  #: app/features/mec/notifications.php:201
3709
- #: app/features/mec/notifications.php:379
3710
- #: app/features/mec/notifications.php:438
3711
- msgid "Full Attendee info such as booking form data, name, email etc."
3712
- msgstr ""
3713
- "Información completa del asistente, como datos de formulario de reserva, "
3714
- "nombre, correo electrónico, etc."
 
3715
 
3716
  #: app/features/mec/notifications.php:202
 
3717
  #: app/features/mec/notifications.php:308
 
 
3718
  #: app/features/mec/notifications.php:508
3719
- msgid "Invoice Link"
3720
- msgstr "Enlace de factura"
3721
 
3722
  #: app/features/mec/notifications.php:203
3723
- #: app/features/mec/notifications.php:256
3724
  #: app/features/mec/notifications.php:309
3725
  #: app/features/mec/notifications.php:380
3726
  #: app/features/mec/notifications.php:439
3727
  #: app/features/mec/notifications.php:509
3728
- msgid "Total Attendees"
3729
- msgstr "Total asistentes"
3730
 
3731
  #: app/features/mec/notifications.php:204
3732
- #: app/features/mec/notifications.php:257
3733
- #: app/features/mec/notifications.php:310
3734
- #: app/features/mec/notifications.php:510
3735
- msgid "Ticket name"
3736
- msgstr "Nombre de la entrada"
 
3737
 
3738
  #: app/features/mec/notifications.php:205
3739
- #: app/features/mec/notifications.php:258
3740
  #: app/features/mec/notifications.php:311
3741
  #: app/features/mec/notifications.php:511
3742
- msgid "Ticket time"
3743
- msgstr "Hora de la entrada"
3744
 
3745
  #: app/features/mec/notifications.php:206
3746
  #: app/features/mec/notifications.php:259
3747
  #: app/features/mec/notifications.php:312
 
 
3748
  #: app/features/mec/notifications.php:512
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3749
  msgid "Download ICS file"
3750
  msgstr "Descarga el archivo ICS"
3751
 
3752
- #: app/features/mec/notifications.php:217
3753
  msgid "It sends to attendee email for verifying their booking/email."
3754
  msgstr ""
3755
  "Se envía a los asistentes un correo electrónico para verificar su reserva."
3756
 
3757
- #: app/features/mec/notifications.php:255
3758
  msgid "Email/Booking verification link."
3759
  msgstr "Enlace de verificación de correo electrónico/reserva."
3760
 
3761
- #: app/features/mec/notifications.php:269
3762
  msgid "It sends to attendee after confirming the booking by admin."
3763
  msgstr ""
3764
  "Se envía a los asistentes después de confirmar la reserva por el "
3765
  "administrador."
3766
 
3767
- #: app/features/mec/notifications.php:307
3768
- #: app/features/mec/notifications.php:507
3769
  msgid "Booking cancellation link."
3770
  msgstr "Enlace de cancelación de la reserva."
3771
 
3772
- #: app/features/mec/notifications.php:324
3773
  #, fuzzy
3774
  #| msgid "Enable new event notification"
3775
  msgid "Enable cancellation notification"
3776
  msgstr "Activa los avisos de nuevos eventos"
3777
 
3778
- #: app/features/mec/notifications.php:328
3779
  #, fuzzy
3780
  #| msgid "It sends to attendee after booking for notifying him/her."
3781
  msgid ""
@@ -3783,38 +3825,38 @@ msgid ""
3783
  "them."
3784
  msgstr "Se envía a los asistentes después de la reserva."
3785
 
3786
- #: app/features/mec/notifications.php:346
3787
  #, fuzzy
3788
  #| msgid "Send the email to event organizer"
3789
  msgid "Send the email to admin"
3790
  msgstr "Enviar correo al organizador del evento"
3791
 
3792
- #: app/features/mec/notifications.php:354
3793
  #, fuzzy
3794
  #| msgid "Send the email to event organizer"
3795
  msgid "Send the email to booking user"
3796
  msgstr "Enviar correo al organizador del evento"
3797
 
3798
- #: app/features/mec/notifications.php:378
3799
- #: app/features/mec/notifications.php:437
3800
  msgid "Admin booking management link."
3801
  msgstr "Enlace del administrador de reservas."
3802
 
3803
- #: app/features/mec/notifications.php:391
3804
  #, fuzzy
3805
  #| msgid "Enable booking notification"
3806
  msgid "Enable admin notification"
3807
  msgstr "Activar notificación de reservas"
3808
 
3809
- #: app/features/mec/notifications.php:395
3810
  msgid "It sends to admin to notify him/her that a new booking received."
3811
  msgstr "Se envía al administrador para notificarle una nueva reserva recibida."
3812
 
3813
- #: app/features/mec/notifications.php:451
3814
  msgid "Enable booking reminder notification"
3815
  msgstr "Activar recordatorio de reservas del evento."
3816
 
3817
- #: app/features/mec/notifications.php:457
3818
  #, php-format
3819
  msgid ""
3820
  "Set a cronjob to call %s file once per day otherwise it won't send the "
@@ -3826,19 +3868,19 @@ msgstr ""
3826
  "este archivo %s, de lo contrario, puede enviar los recordatorios varias "
3827
  "veces."
3828
 
3829
- #: app/features/mec/notifications.php:457
3830
  msgid "only once per day"
3831
  msgstr "una vez al día"
3832
 
3833
- #: app/features/mec/notifications.php:475
3834
  msgid "Days"
3835
  msgstr "Días"
3836
 
3837
- #: app/features/mec/notifications.php:526
3838
  msgid "Enable new event notification"
3839
  msgstr "Activa los avisos de nuevos eventos"
3840
 
3841
- #: app/features/mec/notifications.php:530
3842
  msgid ""
3843
  "It sends after adding a new event from frontend event submission or from "
3844
  "website backend."
@@ -3846,36 +3888,36 @@ msgstr ""
3846
  "Se envía después de agregar un nuevo evento de presentación de evento de "
3847
  "frontend o desde el sitio web backend."
3848
 
3849
- #: app/features/mec/notifications.php:552
3850
  msgid "Title of event"
3851
  msgstr "Título del evento"
3852
 
3853
- #: app/features/mec/notifications.php:553
3854
  #, fuzzy
3855
  #| msgid "Title of event"
3856
  msgid "Link of event"
3857
  msgstr "Título del evento"
3858
 
3859
- #: app/features/mec/notifications.php:554
3860
  msgid "Status of event"
3861
  msgstr "Estado del evento"
3862
 
3863
- #: app/features
4
  msgstr ""
5
  "Project-Id-Version: Plugins - Modern Events Calendar Lite - Stable (latest "
6
  "release)\n"
7
+ "POT-Creation-Date: 2019-06-17 11:08+0430\n"
8
+ "PO-Revision-Date: 2019-06-17 11:08+0430\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: es\n"
21
  msgid "Modern Events Calendar"
22
  msgstr "Modern Events Calendar"
23
 
24
+ #: app/addons/KC.php:70 app/addons/VC.php:64 app/features/mec/styling.php:215
25
  msgid "Content"
26
  msgstr "Contenido"
27
 
28
+ #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:349
29
+ #: app/features/mec.php:380 app/features/mec.php:406
30
  msgid "Shortcode"
31
  msgstr "Shortcode"
32
 
46
  msgid "Select Type"
47
  msgstr "Seleccionar tipo"
48
 
49
+ #: app/features/colors.php:50 app/features/fes/form.php:571
50
  #: app/features/mec/settings.php:1195
51
  msgid "Event Color"
52
  msgstr "Color del evento"
61
  msgid "Settings"
62
  msgstr "Ajustes"
63
 
64
+ #: app/features/contextual.php:62 app/features/events.php:1701
65
  #: app/features/mec/gateways.php:33 app/features/mec/ie.php:29
66
  #: app/features/mec/messages.php:33 app/features/mec/notifications.php:32
67
  #: app/features/mec/regform.php:68 app/features/mec/regform.php:131
106
 
107
  #: app/features/contextual.php:77 app/features/mec/gateways.php:49
108
  #: app/features/mec/ie.php:45 app/features/mec/messages.php:49
109
+ #: app/features/mec/notifications.php:51 app/features/mec/regform.php:83
110
  #: app/features/mec/settings.php:233 app/features/mec/styles.php:49
111
  #: app/features/mec/styling.php:71 app/features/mec/support.php:45
112
  msgid "Notifications"
237
  msgid "Frontend Event Submission"
238
  msgstr "Presentación del evento Frontend"
239
 
240
+ #: app/features/contextual.php:298 app/features/events.php:792
241
  #: app/features/mec/settings.php:150
242
  msgid "Exceptional Days"
243
  msgstr "Días excepcionales"
244
 
245
+ #: app/features/contextual.php:308 app/features/events.php:273
246
  #: app/features/mec/settings.php:168 app/features/mec/settings.php:1324
247
  msgid "Booking"
248
  msgstr "Reserva"
273
  msgstr "Eventos"
274
 
275
  #: app/features/events.php:135
276
+ #: app/features/mec/meta_boxes/display_options.php:863
277
+ #: app/features/mec/meta_boxes/display_options.php:919
278
+ #: app/features/mec/meta_boxes/display_options.php:954
279
  #: app/features/profile/profile.php:28 app/skins/daily_view/tpl.php:80
280
  #: app/skins/monthly_view/tpl.php:71 app/skins/yearly_view/tpl.php:69
281
  msgid "Event"
311
  msgstr "No hay eventos en la papelera"
312
 
313
  #: app/features/events.php:159
314
+ #: app/features/mec/meta_boxes/display_options.php:794
315
  #: app/features/mec/meta_boxes/search_form.php:31
316
  #: app/features/mec/meta_boxes/search_form.php:92
317
  #: app/features/mec/meta_boxes/search_form.php:153
318
  #: app/features/mec/meta_boxes/search_form.php:214
319
+ #: app/features/mec/meta_boxes/search_form.php:275
320
+ #: app/features/mec/meta_boxes/search_form.php:336
321
+ #: app/features/mec/meta_boxes/search_form.php:397
322
+ #: app/features/mec/meta_boxes/search_form.php:451
323
+ #: app/features/mec/meta_boxes/search_form.php:512
324
+ #: app/features/mec/meta_boxes/search_form.php:573 app/libraries/main.php:4416
325
+ #: app/libraries/skins.php:781 app/skins/single/default.php:167
326
  #: app/skins/single/default.php:378 app/skins/single/m1.php:170
327
+ #: app/skins/single/m2.php:102 app/skins/single/modern.php:110
328
  msgid "Category"
329
  msgstr "Categoría"
330
 
331
+ #: app/features/events.php:160 app/features/fes/form.php:523
332
  #: app/features/mec.php:317 app/features/mec/meta_boxes/filter.php:70
333
+ #: app/libraries/main.php:4415
334
  msgid "Categories"
335
  msgstr "Categorías"
336
 
390
  msgid "Search %s"
391
  msgstr "Buscar %s"
392
 
393
+ #: app/features/events.php:201 app/features/events.php:220
394
  msgid "Category Icon"
395
  msgstr "Icono de categoría"
396
 
397
+ #: app/features/events.php:203 app/features/events.php:224
398
  msgid "Select icon"
399
  msgstr "Seleccionar icono"
400
 
401
+ #: app/features/events.php:269
402
  msgid "Event Details"
403
  msgstr "Detalle de evento"
404
 
405
+ #: app/features/events.php:307 app/features/events.php:2558
406
+ #: app/features/events.php:2600 app/features/fes/form.php:484
407
  #: app/features/ix.php:2740 app/features/ix.php:2781
408
+ #: app/features/mec/settings.php:1171 app/libraries/main.php:4448
409
  #: app/widgets/single.php:103
410
  msgid "Event Cost"
411
  msgstr "Coste del evento"
412
 
413
+ #: app/features/events.php:310 app/features/fes/form.php:487
414
+ #: app/libraries/main.php:4449 app/skins/single/default.php:101
415
  #: app/skins/single/default.php:312 app/skins/single/m1.php:49
416
+ #: app/skins/single/modern.php:199
417
  msgid "Cost"
418
  msgstr "Coste"
419
 
420
+ #: app/features/events.php:403
421
  msgid "Note for reviewer"
422
  msgstr "Nota para el encargado"
423
 
424
+ #: app/features/events.php:410
425
  msgid "Guest Data"
426
  msgstr "Datos del invitado"
427
 
428
+ #: app/features/events.php:411 app/features/events.php:1683
429
+ #: app/features/fes/form.php:446 app/features/labels.php:177
430
  #: app/features/mec/regform.php:27 app/features/organizers.php:274
431
  #: app/features/profile/profile.php:90 app/libraries/notifications.php:667
432
  #: app/modules/booking/steps/form.php:35
433
  msgid "Name"
434
  msgstr "Nombre"
435
 
436
+ #: app/features/events.php:412 app/features/events.php:1694
437
+ #: app/features/events.php:1767 app/features/fes/form.php:442
438
  #: app/features/mec/regform.php:38 app/features/mec/regform.php:183
439
  #: app/features/organizers.php:110 app/features/organizers.php:150
440
+ #: app/features/profile/profile.php:93 app/features/speakers.php:120
441
+ #: app/features/speakers.php:180 app/libraries/main.php:1087
442
+ #: app/libraries/main.php:1153 app/libraries/main.php:2184
443
  #: app/libraries/notifications.php:668 app/modules/booking/steps/form.php:43
444
  #: app/modules/booking/steps/form.php:80 app/skins/single.php:317
445
  #: app/skins/single/default.php:209 app/skins/single/default.php:420
448
  msgid "Email"
449
  msgstr "Correo electrónico"
450
 
451
+ #: app/features/events.php:416 app/features/fes/form.php:227
452
  msgid "Date and Time"
453
  msgstr "Día y hora"
454
 
455
+ #: app/features/events.php:420 app/features/events.php:424
456
+ #: app/features/events.php:2380 app/features/events.php:2558
457
+ #: app/features/events.php:2600 app/features/fes/form.php:231
458
+ #: app/features/fes/form.php:235 app/features/ix.php:2740
459
  #: app/features/ix.php:2781 app/features/ix/import_g_calendar.php:38
460
  #: app/features/mec/dashboard.php:331
461
  #: app/features/mec/meta_boxes/display_options.php:42
468
  #: app/features/mec/meta_boxes/display_options.php:615
469
  #: app/features/mec/meta_boxes/display_options.php:650
470
  #: app/features/mec/meta_boxes/display_options.php:696
471
+ #: app/features/mec/meta_boxes/display_options.php:762
472
+ #: app/features/mec/meta_boxes/display_options.php:977
473
+ #: app/features/mec/meta_boxes/display_options.php:1064
474
  msgid "Start Date"
475
  msgstr "Día de inicio"
476
 
477
+ #: app/features/events.php:488 app/features/events.php:569
478
+ #: app/features/events.php:1157 app/features/events.php:1195
479
+ #: app/features/events.php:1314 app/features/events.php:1337
480
+ #: app/features/fes/form.php:263 app/features/fes/form.php:303
481
  msgid "AM"
482
  msgstr "AM"
483
 
484
+ #: app/features/events.php:494 app/features/events.php:575
485
+ #: app/features/events.php:1163 app/features/events.php:1201
486
+ #: app/features/events.php:1315 app/features/events.php:1338
487
+ #: app/features/fes/form.php:264 app/features/fes/form.php:304
488
  msgid "PM"
489
  msgstr "PM"
490
 
491
+ #: app/features/events.php:501 app/features/events.php:505
492
+ #: app/features/events.php:2381 app/features/events.php:2558
493
+ #: app/features/events.php:2600 app/features/fes/form.php:271
494
+ #: app/features/fes/form.php:275 app/features/ix.php:2740
495
  #: app/features/ix.php:2781 app/features/ix/import_g_calendar.php:44
496
  #: app/features/mec/dashboard.php:332
497
  msgid "End Date"
498
  msgstr "Día final"
499
 
500
+ #: app/features/events.php:586 app/features/fes/form.php:310
501
  msgid "All Day Event"
502
  msgstr "Evento de todo el día"
503
 
504
+ #: app/features/events.php:594 app/features/fes/form.php:313
505
  msgid "Hide Event Time"
506
  msgstr "Ocultar hora del evento"
507
 
508
+ #: app/features/events.php:602 app/features/fes/form.php:316
509
  msgid "Hide Event End Time"
510
  msgstr "Oculta la hora de finalización del evento"
511
 
512
+ #: app/features/events.php:606 app/features/events.php:609
513
+ #: app/features/fes/form.php:320
514
  msgid "Time Comment"
515
  msgstr "Tiempo para comentar"
516
 
517
+ #: app/features/events.php:610 app/features/fes/form.php:321
518
  #, fuzzy
519
  #| msgid ""
520
  #| "It shows next to event time on calendar. You can insert Timezone etc. in "
526
  "Muestra la hora del siguiente evento en el calendario. Puedes insertar Zona "
527
  "horaria, etc en este campo."
528
 
529
+ #: app/features/events.php:610 app/features/events.php:703
530
+ #: app/features/events.php:769 app/features/events.php:807
531
+ #: app/features/events.php:1025 app/features/events.php:1083
532
+ #: app/features/events.php:1214 app/features/events.php:1224
533
+ #: app/features/events.php:1351 app/features/events.php:1361
534
+ #: app/features/events.php:1466 app/features/events.php:1497
535
+ #: app/features/events.php:1581 app/features/events.php:1591
536
+ #: app/features/events.php:1615 app/features/events.php:1625
537
+ #: app/features/fes/form.php:408 app/features/locations.php:298
538
  #: app/features/mec/dashboard.php:71
539
  #: app/features/mec/meta_boxes/display_options.php:60
540
  #: app/features/mec/meta_boxes/display_options.php:73
550
  #: app/features/mec/meta_boxes/display_options.php:259
551
  #: app/features/mec/meta_boxes/display_options.php:326
552
  #: app/features/mec/meta_boxes/display_options.php:498
553
+ #: app/features/mec/meta_boxes/display_options.php:781
 
 
554
  #: app/features/mec/meta_boxes/display_options.php:834
555
+ #: app/features/mec/meta_boxes/display_options.php:846
556
+ #: app/features/mec/meta_boxes/display_options.php:857
557
+ #: app/features/mec/meta_boxes/display_options.php:889
558
+ #: app/features/mec/meta_boxes/display_options.php:900
559
+ #: app/features/mec/meta_boxes/display_options.php:913
560
+ #: app/features/mec/meta_boxes/display_options.php:948
561
+ #: app/features/mec/meta_boxes/display_options.php:997
562
+ #: app/features/mec/meta_boxes/display_options.php:1008
563
+ #: app/features/mec/meta_boxes/display_options.php:1019
564
+ #: app/features/mec/meta_boxes/display_options.php:1084
565
+ #: app/features/mec/meta_boxes/display_options.php:1097
566
+ #: app/features/mec/meta_boxes/display_options.php:1110
567
+ #: app/features/mec/meta_boxes/display_options.php:1123
568
+ #: app/features/mec/meta_boxes/display_options.php:1136
569
+ #: app/features/mec/notifications.php:173
570
+ #: app/features/mec/notifications.php:231
571
+ #: app/features/mec/notifications.php:283
572
+ #: app/features/mec/notifications.php:342
573
+ #: app/features/mec/notifications.php:409
574
+ #: app/features/mec/notifications.php:472
575
+ #: app/features/mec/notifications.php:483
576
+ #: app/features/mec/notifications.php:544 app/features/mec/settings.php:299
577
  #: app/features/mec/settings.php:318 app/features/mec/settings.php:345
578
  #: app/features/mec/settings.php:365 app/features/mec/settings.php:386
579
  #: app/features/mec/settings.php:406 app/features/mec/settings.php:483
593
  #: app/features/mec/settings.php:1555 app/features/mec/settings.php:1565
594
  #: app/features/mec/settings.php:1587 app/features/mec/settings.php:1597
595
  #: app/features/mec/settings.php:1656 app/features/mec/settings.php:1669
596
+ #: app/features/mec/settings.php:1685 app/features/mec/styling.php:285
597
+ #: app/features/mec/styling.php:302 app/features/mec/styling.php:315
598
  #: app/features/organizers.php:267 app/skins/single/default.php:116
599
  #: app/skins/single/default.php:327 app/skins/single/m1.php:192
600
+ #: app/skins/single/m2.php:125 app/skins/single/modern.php:133
601
  msgid "Read More"
602
  msgstr "Leer más"
603
 
604
+ #: app/features/events.php:624 app/features/fes/form.php:327
605
  msgid "Event Repeating"
606
  msgstr "Repetir el evento"
607
 
608
+ #: app/features/events.php:628 app/features/fes/form.php:331
609
  msgid "Repeats"
610
  msgstr "Repeticiones"
611
 
612
+ #: app/features/events.php:635 app/features/fes/form.php:333
613
+ #: app/features/mec/dashboard.php:334 app/skins/full_calendar/tpl.php:111
614
  msgid "Daily"
615
  msgstr "Diariamente"
616
 
617
+ #: app/features/events.php:641 app/features/fes/form.php:334
618
  msgid "Every Weekday"
619
  msgstr "Cada día de la semana"
620
 
621
+ #: app/features/events.php:647 app/features/fes/form.php:335
622
  msgid "Every Weekend"
623
  msgstr "Cada fin de semana"
624
 
625
+ #: app/features/events.php:653 app/features/fes/form.php:336
626
  msgid "Certain Weekdays"
627
  msgstr "Ciertos días de la semana"
628
 
629
+ #: app/features/events.php:659 app/features/fes/form.php:337
630
+ #: app/skins/full_calendar/tpl.php:110
631
  msgid "Weekly"
632
  msgstr "Semanal"
633
 
634
+ #: app/features/events.php:665 app/features/fes/form.php:338
635
+ #: app/features/mec/dashboard.php:335 app/skins/full_calendar/tpl.php:109
636
  msgid "Monthly"
637
  msgstr "Mensual"
638
 
639
+ #: app/features/events.php:671 app/features/fes/form.php:339
640
+ #: app/features/mec/dashboard.php:336 app/skins/full_calendar/tpl.php:108
641
  msgid "Yearly"
642
  msgstr "Anual"
643
 
644
+ #: app/features/events.php:677 app/features/fes/form.php:340
645
  msgid "Custom Days"
646
  msgstr "Días personalizados"
647
 
648
+ #: app/features/events.php:681 app/features/fes/form.php:344
649
  msgid "Repeat Interval"
650
  msgstr "Intervalo de repetición"
651
 
652
+ #: app/features/events.php:682 app/features/fes/form.php:345
653
  msgid "Repeat interval"
654
  msgstr "Intervalo de repetición"
655
 
656
+ #: app/features/events.php:685 app/features/fes/form.php:348
657
  msgid "Week Days"
658
  msgstr "Días de semana"
659
 
660
+ #: app/features/events.php:686 app/features/fes/form.php:349
661
+ #: app/features/mec/meta_boxes/display_options.php:726
662
+ #: app/libraries/main.php:407
663
  msgid "Monday"
664
  msgstr "Lunes"
665
 
666
+ #: app/features/events.php:687 app/features/fes/form.php:350
667
+ #: app/features/mec/meta_boxes/display_options.php:727
668
+ #: app/libraries/main.php:407
669
  msgid "Tuesday"
670
  msgstr "Martes"
671
 
672
+ #: app/features/events.php:688 app/features/fes/form.php:351
673
+ #: app/features/mec/meta_boxes/display_options.php:728
674
+ #: app/libraries/main.php:407
675
  msgid "Wednesday"
676
  msgstr "Miércoles"
677
 
678
+ #: app/features/events.php:689 app/features/fes/form.php:352
679
+ #: app/features/mec/meta_boxes/display_options.php:729
680
+ #: app/libraries/main.php:407
681
  msgid "Thursday"
682
  msgstr "Jueves"
683
 
684
+ #: app/features/events.php:690 app/features/fes/form.php:353
685
+ #: app/features/mec/meta_boxes/display_options.php:730
686
+ #: app/libraries/main.php:407
687
  msgid "Friday"
688
  msgstr "Viernes"
689
 
690
+ #: app/features/events.php:691 app/features/fes/form.php:354
691
+ #: app/features/mec/meta_boxes/display_options.php:731
692
+ #: app/libraries/main.php:407
693
  msgid "Saturday"
694
  msgstr "Sábado"
695
 
696
+ #: app/features/events.php:692 app/features/fes/form.php:355
697
+ #: app/features/mec/meta_boxes/display_options.php:725
698
+ #: app/libraries/main.php:407
699
  msgid "Sunday"
700
  msgstr "Domingo"
701
 
702
+ #: app/features/events.php:697 app/features/events.php:1261
703
+ #: app/features/events.php:1275 app/features/events.php:1387
704
+ #: app/features/fes/form.php:360 app/features/ix/import_f_calendar.php:42
705
  #: app/features/ix/import_g_calendar.php:51
706
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:33
707
  msgid "Start"
708
  msgstr "Inicio"
709
 
710
+ #: app/features/events.php:698 app/features/events.php:1262
711
+ #: app/features/events.php:1276 app/features/events.php:1388
712
+ #: app/features/fes/form.php:361
713
  msgid "End"
714
  msgstr ""
715
 
716
+ #: app/features/events.php:699 app/features/events.php:803
717
+ #: app/features/events.php:895 app/features/events.php:959
718
+ #: app/features/events.php:1113 app/features/events.php:1248
719
+ #: app/features/events.php:1379 app/features/events.php:1446
720
+ #: app/features/events.php:1561 app/features/fes/form.php:362
721
  msgid "Add"
722
  msgstr "Añadir"
723
 
724
+ #: app/features/events.php:702
725
  #, fuzzy
726
  #| msgid "Custom Days"
727
  msgid "Custom Days Repeating"
728
  msgstr "Días personalizados"
729
 
730
+ #: app/features/events.php:703
731
  msgid ""
732
  "Add certain days to event occurrence dates. If you have single day event, "
733
  "start and end date should be the same, If you have multiple day event the "
734
  "start and end dates must be commensurate with the initial date."
735
  msgstr ""
736
 
737
+ #: app/features/events.php:732 app/features/fes/form.php:386
738
  msgid "Ends Repeat"
739
  msgstr "Finaliza la repetición"
740
 
741
+ #: app/features/events.php:741 app/features/fes/form.php:390
742
  msgid "Never"
743
  msgstr "Nunca"
744
 
745
+ #: app/features/events.php:751 app/features/fes/form.php:395
746
  msgid "On"
747
  msgstr "On"
748
 
749
+ #: app/features/events.php:763 app/features/fes/form.php:402
750
  msgid "After"
751
  msgstr "Después"
752
 
753
+ #: app/features/events.php:765 app/features/events.php:768
754
+ #: app/features/fes/form.php:404 app/features/fes/form.php:407
755
  msgid "Occurrences times"
756
  msgstr "Ocurrencias del evento"
757
 
758
+ #: app/features/events.php:769 app/features/fes/form.php:408
759
  msgid ""
760
  "The event will finish after certain repeats. For example if you set it to "
761
  "10, the event will finish after 10 repeats."
763
  "El evento finalizará después de ciertas repeticiones. Por ejemplo, si "
764
  "estableces en 10, el evento terminará después de 10 repeticiones."
765
 
766
+ #: app/features/events.php:798 app/features/events.php:806
767
  msgid "Exclude certain days"
768
  msgstr "Excluir ciertos días"
769
 
770
+ #: app/features/events.php:802 app/features/events.php:1768
771
  #: app/features/mec/regform.php:184 app/features/profile/profile.php:31
772
+ #: app/libraries/main.php:1639 app/libraries/main.php:2242
773
  #: app/modules/booking/steps/tickets.php:22
774
+ #: app/modules/next-event/details.php:90 app/skins/single/default.php:65
775
  #: app/skins/single/default.php:276 app/skins/single/m1.php:16
776
+ #: app/skins/single/modern.php:166
777
  msgid "Date"
778
  msgstr "Fecha"
779
 
780
+ #: app/features/events.php:807
781
  msgid ""
782
  "Exclude certain days from event occurrence dates. Please note that you can "
783
  "exclude only single day occurrences and you cannot exclude one day from "
784
  "multiple day occurrences."
785
  msgstr ""
786
 
787
+ #: app/features/events.php:855 app/libraries/render.php:454
788
  msgid "Day 1"
789
  msgstr ""
790
 
791
+ #: app/features/events.php:877 app/features/mec/settings.php:1225
792
  #: app/skins/single.php:379
793
  msgid "Hourly Schedule"
794
  msgstr "Programación horaria"
795
 
796
+ #: app/features/events.php:880
797
  msgid "Add Day"
798
  msgstr ""
799
 
800
+ #: app/features/events.php:881
801
  msgid ""
802
  "Add new days for schedule. For example if your event is multiple days, you "
803
  "can add a different schedule for each day!"
804
  msgstr ""
805
 
806
+ #: app/features/events.php:887
807
  #, php-format
808
  msgid "Day %s"
809
  msgstr ""
810
 
811
+ #: app/features/events.php:890 app/features/events.php:909
812
+ #: app/features/events.php:929 app/features/events.php:954
813
+ #: app/features/events.php:970 app/features/events.php:1573
814
+ #: app/features/events.php:1607 app/features/events.php:2377
815
+ #: app/features/events.php:2558 app/features/events.php:2600
816
+ #: app/features/fes/form.php:220 app/features/ix.php:2740
817
  #: app/features/ix.php:2781 app/features/mec/settings.php:1547
818
+ #: app/features/mec/settings.php:1579 app/features/mec/styling.php:197
819
  msgid "Title"
820
  msgstr "Titulo"
821
 
822
+ #: app/features/events.php:892 app/features/events.php:911
823
+ #: app/features/events.php:931 app/features/events.php:956
824
+ #: app/features/events.php:972 app/features/events.php:1242
825
+ #: app/features/events.php:1265 app/features/events.php:1279
826
+ #: app/features/events.php:1374 app/features/events.php:1391
827
+ #: app/features/events.php:1478 app/features/events.php:1509
828
+ #: app/features/events.php:1596 app/features/events.php:1630
829
+ #: app/features/fes/list.php:78 app/features/mec/settings.php:1490
830
  #: app/features/mec/settings.php:1519 app/features/mec/settings.php:1570
831
+ #: app/features/mec/settings.php:1602 app/libraries/main.php:2103
832
+ #: app/libraries/main.php:2133 app/libraries/main.php:2162
833
+ #: app/libraries/main.php:2192 app/libraries/main.php:2221
834
+ #: app/libraries/main.php:2250 app/libraries/main.php:2279
835
+ #: app/libraries/main.php:2308 app/libraries/main.php:2330
836
+ #: app/libraries/main.php:2361 app/libraries/main.php:2405
837
+ #: app/libraries/main.php:2449 app/libraries/main.php:2496
838
+ #: app/libraries/main.php:2534
839
  msgid "Remove"
840
  msgstr "Eliminar"
841
 
842
+ #: app/features/events.php:896 app/features/events.php:960
843
  msgid "Add new hourly schedule row"
844
  msgstr "Añadir nueva línea programa horario"
845
 
846
+ #: app/features/events.php:907 app/features/events.php:927
847
+ #: app/features/events.php:968
848
  msgid "From e.g. 8:15"
849
  msgstr "Desde 8:15"
850
 
851
+ #: app/features/events.php:908 app/features/events.php:928
852
+ #: app/features/events.php:969
853
  msgid "To e.g. 8:45"
854
  msgstr "a 8:45"
855
 
856
+ #: app/features/events.php:910 app/features/events.php:930
857
+ #: app/features/events.php:971 app/features/events.php:1206
858
+ #: app/features/events.php:1343
859
  msgid "Description"
860
  msgstr "Descripción"
861
 
862
+ #: app/features/events.php:914 app/features/events.php:934
863
+ #: app/features/events.php:975 app/features/fes/form.php:616
864
  #: app/features/mec.php:325 app/features/mec/settings.php:78
865
  #: app/features/mec/settings.php:1219 app/features/speakers.php:57
866
+ #: app/libraries/main.php:4423 app/modules/speakers/details.php:18
867
  msgid "Speakers"
868
  msgstr ""
869
 
870
+ #: app/features/events.php:951 app/features/events.php:955
871
  #, fuzzy
872
  #| msgid "Week Days"
873
  msgid "New Day"
874
  msgstr "Días de semana"
875
 
876
+ #: app/features/events.php:1002 app/features/fes/form.php:461
877
  #: app/features/mec/settings.php:1165
878
  msgid "Event Links"
879
  msgstr "Enlaces de eventos"
880
 
881
+ #: app/features/events.php:1004 app/features/events.php:1008
882
+ #: app/features/fes/form.php:463 app/libraries/main.php:4446
883
  msgid "Event Link"
884
  msgstr "Enlace del evento"
885
 
886
+ #: app/features/events.php:1005 app/features/events.php:1016
887
+ #: app/features/fes/form.php:464 app/features/fes/form.php:469
888
  msgid "eg. http://yoursite.com/your-event"
889
  msgstr "ej. http://yoursite.com/your-event"
890
 
891
+ #: app/features/events.php:1009
892
  #, fuzzy
893
  #| msgid ""
894
  #| "If you fill it, it will be replaced instead of default event page link. "
901
  "Si lo rellenas, se reemplazará en vez del enlace de la página del evento por "
902
  "defecto. Inserta todo el enlace incluyendo http(s)://"
903
 
904
+ #: app/features/events.php:1009
905
  msgid "URL Shortener"
906
  msgstr ""
907
 
908
+ #: app/features/events.php:1015 app/features/events.php:1024
909
+ #: app/features/fes/form.php:468 app/libraries/main.php:4447
910
  #: app/skins/single/default.php:115 app/skins/single/default.php:326
911
  #: app/skins/single/m1.php:191 app/skins/single/m2.php:124
912
+ #: app/skins/single/modern.php:132 app/widgets/single.php:107
913
  msgid "More Info"
914
  msgstr "Más Información"
915
 
916
+ #: app/features/events.php:1017 app/features/fes/form.php:470
917
  msgid "More Information"
918
  msgstr "Más Información"
919
 
920
+ #: app/features/events.php:1019 app/features/fes/form.php:472
921
  msgid "Current Window"
922
  msgstr "Ventana actual"
923
 
924
+ #: app/features/events.php:1020 app/features/fes/form.php:473
925
  msgid "New Window"
926
  msgstr "Nueva ventana"
927
 
928
+ #: app/features/events.php:1025 app/features/fes/form.php:475
929
  msgid ""
930
  "If you fill it, it will be shown in event details page as an optional link. "
931
  "Insert full link including http(s)://"
933
  "Si lo rellenas, se mostrará en la página de detalles del evento como enlace "
934
  "opcional. Inserta todo el enlace incluyendo http(s)://"
935
 
936
+ #: app/features/events.php:1061 app/features/events.php:1082
937
  msgid "Total booking limits"
938
  msgstr "Límite total de reservas"
939
 
940
+ #: app/features/events.php:1071 app/features/events.php:1240
941
+ #: app/features/events.php:1372 app/modules/booking/default.php:81
942
  #: app/modules/booking/steps/tickets.php:40
943
  #: app/skins/available_spot/tpl.php:139
944
  msgid "Unlimited"
945
  msgstr "Ilimitado"
946
 
947
+ #: app/features/events.php:1073
948
  msgid "100"
949
  msgstr "100"
950
 
951
+ #: app/features/events.php:1083
952
  msgid ""
953
  "If you want to set a limit to all tickets, uncheck this checkbox and put a "
954
  "limitation number."
955
  msgstr ""
956
 
957
+ #: app/features/events.php:1083
958
  msgid "Read About A Booking System"
959
  msgstr ""
960
 
961
+ #: app/features/events.php:1105 app/libraries/book.php:60
962
+ #: app/libraries/main.php:4451 app/modules/booking/steps/tickets.php:40
963
  msgid "Tickets"
964
  msgstr "Tickets"
965
 
966
+ #: app/features/events.php:1108
967
  msgid ""
968
  "You're translating an event so MEC will use the original event for tickets "
969
  "and booking. You can only translate the ticket name and description. Please "
974
  "entrada. Por favor define las entradas exactas que podrías definir en un "
975
  "evento original aquí."
976
 
977
+ #: app/features/events.php:1125 app/features/events.php:1292
978
  msgid "Ticket Name"
979
  msgstr "Nombre del ticket"
980
 
981
+ #: app/features/events.php:1129 app/features/events.php:1296
982
+ #: app/features/events.php:2558 app/features/events.php:2600
983
  #: app/features/ix.php:2740 app/features/ix.php:2781
984
  msgid "Start Time"
985
  msgstr "Hora de Inicio"
986
 
987
+ #: app/features/events.php:1167 app/features/events.php:1319
988
+ #: app/features/events.php:2558 app/features/events.php:2600
989
  #: app/features/ix.php:2740 app/features/ix.php:2781
990
  msgid "End Time"
991
  msgstr "Hora de finalización"
992
 
993
+ #: app/features/events.php:1210 app/features/events.php:1213
994
+ #: app/features/events.php:1263 app/features/events.php:1277
995
+ #: app/features/events.php:1347 app/features/events.php:1350
996
+ #: app/features/events.php:1389 app/features/events.php:1577
997
+ #: app/features/events.php:1580 app/features/events.php:1611
998
+ #: app/features/events.php:1614 app/features/mec/settings.php:1551
999
  #: app/features/mec/settings.php:1554 app/features/mec/settings.php:1583
1000
  #: app/features/mec/settings.php:1586
1001
  msgid "Price"
1002
  msgstr "Precio"
1003
 
1004
+ #: app/features/events.php:1214 app/features/events.php:1351
1005
  msgid "Insert 0 for free ticket. Only numbers please."
1006
  msgstr "Introduce un 0 para una entrada gratuita. Utiliza únicamente números."
1007
 
1008
+ #: app/features/events.php:1220 app/features/events.php:1223
1009
+ #: app/features/events.php:1357 app/features/events.php:1360
1010
  msgid "Price Label"
1011
  msgstr "Etiqueta de precio"
1012
 
1013
+ #: app/features/events.php:1224 app/features/events.php:1361
1014
  msgid "For showing on website. e.g. $15"
1015
  msgstr "Para mostrar en la web. Ej. 15€"
1016
 
1017
+ #: app/features/events.php:1231 app/features/events.php:1368
1018
  msgid "Available Tickets"
1019
  msgstr "Tickets disponibles"
1020
 
1021
+ #: app/features/events.php:1247 app/features/events.php:1378
1022
  msgid "Price per Date"
1023
  msgstr ""
1024
 
1025
+ #: app/features/events.php:1264 app/features/events.php:1278
1026
+ #: app/features/events.php:1390 app/features/labels.php:60
1027
+ #: app/features/mec/meta_boxes/display_options.php:795
1028
  #: app/features/mec/meta_boxes/search_form.php:66
1029
  #: app/features/mec/meta_boxes/search_form.php:127
1030
  #: app/features/mec/meta_boxes/search_form.php:188
1031
+ #: app/features/mec/meta_boxes/search_form.php:249
1032
+ #: app/features/mec/meta_boxes/search_form.php:310
1033
+ #: app/features/mec/meta_boxes/search_form.php:371
1034
+ #: app/features/mec/meta_boxes/search_form.php:432
1035
+ #: app/features/mec/meta_boxes/search_form.php:486
1036
+ #: app/features/mec/meta_boxes/search_form.php:547
1037
+ #: app/features/mec/meta_boxes/search_form.php:608 app/libraries/skins.php:911
1038
  msgid "Label"
1039
  msgstr "Etiqueta"
1040
 
1041
+ #: app/features/events.php:1426
1042
  msgid "Fees"
1043
  msgstr "Tasas"
1044
 
1045
+ #: app/features/events.php:1436 app/features/events.php:1551
1046
+ #: app/features/events.php:1711
1047
  msgid "Inherit from global options"
1048
  msgstr "Heredar opciones globales"
1049
 
1050
+ #: app/features/events.php:1458 app/features/events.php:1489
1051
  #: app/features/mec/settings.php:1470 app/features/mec/settings.php:1499
1052
  msgid "Fee Title"
1053
  msgstr "Título de la cuota"
1054
 
1055
+ #: app/features/events.php:1462 app/features/events.php:1465
1056
+ #: app/features/events.php:1493 app/features/events.php:1496
1057
  #: app/features/mec/settings.php:1474 app/features/mec/settings.php:1477
1058
  #: app/features/mec/settings.php:1503 app/features/mec/settings.php:1506
1059
  msgid "Amount"
1060
  msgstr "Cantidad"
1061
 
1062
+ #: app/features/events.php:1466 app/features/events.php:1497
1063
  #: app/features/mec/settings.php:1478 app/features/mec/settings.php:1507
1064
  msgid ""
1065
  "Fee amount, considered as fixed amount if you set the type to amount "
1068
  "Cantidad de cuota, considerada como cantidad fija si estableces el tipo de "
1069
  "cantidad, si no será considerada como porcentaje"
1070
 
1071
+ #: app/features/events.php:1473 app/features/events.php:1504
1072
  #: app/features/mec/settings.php:1485 app/features/mec/settings.php:1514
1073
  msgid "Percent"
1074
  msgstr "Porcentaje"
1075
 
1076
+ #: app/features/events.php:1474 app/features/events.php:1505
1077
  #: app/features/mec/settings.php:1486 app/features/mec/settings.php:1515
1078
  msgid "Amount (Per Ticket)"
1079
  msgstr "Cantidad (Por ticket)"
1080
 
1081
+ #: app/features/events.php:1475 app/features/events.php:1506
1082
  #: app/features/mec/settings.php:1487 app/features/mec/settings.php:1516
1083
  msgid "Amount (Per Booking)"
1084
  msgstr "Cantidad (por reservas)"
1085
 
1086
+ #: app/features/events.php:1541 app/features/mec/settings.php:1243
1087
  msgid "Ticket Variations / Options"
1088
  msgstr ""
1089
 
1090
+ #: app/features/events.php:1581 app/features/events.php:1615
1091
  #: app/features/mec/settings.php:1555 app/features/mec/settings.php:1587
1092
  msgid "Option Price"
1093
  msgstr ""
1094
 
1095
+ #: app/features/events.php:1587 app/features/events.php:1590
1096
+ #: app/features/events.php:1621 app/features/events.php:1624
1097
  #: app/features/mec/settings.php:1561 app/features/mec/settings.php:1564
1098
  #: app/features/mec/settings.php:1593 app/features/mec/settings.php:1596
1099
  msgid "Maximum Per Ticket"
1100
  msgstr ""
1101
 
1102
+ #: app/features/events.php:1591 app/features/events.php:1625
1103
  #: app/features/mec/settings.php:1565 app/features/mec/settings.php:1597
1104
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1105
  msgstr ""
1106
 
1107
+ #: app/features/events.php:1764 app/features/mec/regform.php:180
1108
+ #: app/libraries/main.php:2125
1109
  #, fuzzy
1110
  #| msgid "Name"
1111
  msgid "MEC Name"
1112
  msgstr "Nombre"
1113
 
1114
+ #: app/features/events.php:1765 app/features/mec/regform.php:181
1115
+ #: app/libraries/main.php:2154
1116
  #, fuzzy
1117
  #| msgid "Email"
1118
  msgid "MEC Email"
1119
  msgstr "Correo electrónico"
1120
 
1121
+ #: app/features/events.php:1766 app/features/mec/regform.php:182
1122
+ #: app/libraries/main.php:2095
1123
  msgid "Text"
1124
  msgstr "Texto"
1125
 
1126
+ #: app/features/events.php:1769 app/features/mec/regform.php:185
1127
  #: app/features/organizers.php:102 app/features/organizers.php:146
1128
+ #: app/features/speakers.php:112 app/features/speakers.php:176
1129
+ #: app/features/speakers.php:245 app/libraries/main.php:2271
1130
  msgid "Tel"
1131
  msgstr "Tel"
1132
 
1133
+ #: app/features/events.php:1770 app/features/mec/regform.php:186
1134
+ #: app/libraries/main.php:2213
1135
  msgid "File"
1136
  msgstr ""
1137
 
1138
+ #: app/features/events.php:1771 app/features/mec/regform.php:187
1139
+ #: app/libraries/main.php:2300
1140
  msgid "Textarea"
1141
  msgstr "Área de texto"
1142
 
1143
+ #: app/features/events.php:1772 app/features/mec/regform.php:188
1144
+ #: app/libraries/main.php:2353
1145
  msgid "Checkboxes"
1146
  msgstr "Checkboxes"
1147
 
1148
+ #: app/features/events.php:1773 app/features/mec/regform.php:189
1149
+ #: app/libraries/main.php:2397
1150
  msgid "Radio Buttons"
1151
  msgstr "Botón tipo radio"
1152
 
1153
+ #: app/features/events.php:1774 app/features/mec/meta_boxes/search_form.php:34
1154
  #: app/features/mec/meta_boxes/search_form.php:41
1155
  #: app/features/mec/meta_boxes/search_form.php:48
1156
  #: app/features/mec/meta_boxes/search_form.php:55
1173
  #: app/features/mec/meta_boxes/search_form.php:198
1174
  #: app/features/mec/meta_boxes/search_form.php:217
1175
  #: app/features/mec/meta_boxes/search_form.php:224
1176
+ #: app/features/mec/meta_boxes/search_form.php:231
1177
+ #: app/features/mec/meta_boxes/search_form.php:238
1178
+ #: app/features/mec/meta_boxes/search_form.php:245
1179
+ #: app/features/mec/meta_boxes/search_form.php:252
1180
+ #: app/features/mec/meta_boxes/search_form.php:259
1181
  #: app/features/mec/meta_boxes/search_form.php:278
1182
  #: app/features/mec/meta_boxes/search_form.php:285
1183
+ #: app/features/mec/meta_boxes/search_form.php:292
1184
+ #: app/features/mec/meta_boxes/search_form.php:299
1185
+ #: app/features/mec/meta_boxes/search_form.php:306
1186
+ #: app/features/mec/meta_boxes/search_form.php:313
1187
+ #: app/features/mec/meta_boxes/search_form.php:320
1188
  #: app/features/mec/meta_boxes/search_form.php:339
1189
  #: app/features/mec/meta_boxes/search_form.php:346
1190
+ #: app/features/mec/meta_boxes/search_form.php:353
1191
+ #: app/features/mec/meta_boxes/search_form.php:360
1192
+ #: app/features/mec/meta_boxes/search_form.php:367
1193
+ #: app/features/mec/meta_boxes/search_form.php:374
1194
+ #: app/features/mec/meta_boxes/search_form.php:381
1195
  #: app/features/mec/meta_boxes/search_form.php:400
1196
+ #: app/features/mec/meta_boxes/search_form.php:407
1197
+ #: app/features/mec/meta_boxes/search_form.php:414
1198
+ #: app/features/mec/meta_boxes/search_form.php:421
1199
+ #: app/features/mec/meta_boxes/search_form.php:428
1200
+ #: app/features/mec/meta_boxes/search_form.php:435
1201
  #: app/features/mec/meta_boxes/search_form.php:454
1202
  #: app/features/mec/meta_boxes/search_form.php:461
1203
+ #: app/features/mec/meta_boxes/search_form.php:468
1204
+ #: app/features/mec/meta_boxes/search_form.php:475
1205
+ #: app/features/mec/meta_boxes/search_form.php:482
1206
+ #: app/features/mec/meta_boxes/search_form.php:489
1207
+ #: app/features/mec/meta_boxes/search_form.php:496
1208
  #: app/features/mec/meta_boxes/search_form.php:515
1209
  #: app/features/mec/meta_boxes/search_form.php:522
1210
+ #: app/features/mec/meta_boxes/search_form.php:529
1211
+ #: app/features/mec/meta_boxes/search_form.php:536
1212
+ #: app/features/mec/meta_boxes/search_form.php:543
1213
+ #: app/features/mec/meta_boxes/search_form.php:550
1214
+ #: app/features/mec/meta_boxes/search_form.php:557
1215
  #: app/features/mec/meta_boxes/search_form.php:576
1216
  #: app/features/mec/meta_boxes/search_form.php:583
1217
+ #: app/features/mec/meta_boxes/search_form.php:590
1218
+ #: app/features/mec/meta_boxes/search_form.php:597
1219
+ #: app/features/mec/meta_boxes/search_form.php:604
1220
+ #: app/features/mec/meta_boxes/search_form.php:611
1221
+ #: app/features/mec/meta_boxes/search_form.php:618
1222
+ #: app/features/mec/regform.php:190 app/libraries/main.php:2441
1223
  msgid "Dropdown"
1224
  msgstr "Desplegable"
1225
 
1226
+ #: app/features/events.php:1775 app/features/mec/regform.php:191
1227
+ #: app/libraries/main.php:2488
1228
  msgid "Agreement"
1229
  msgstr "Acuerdo"
1230
 
1231
+ #: app/features/events.php:1776 app/features/mec/regform.php:192
1232
+ #: app/libraries/main.php:2329
1233
  msgid "Paragraph"
1234
  msgstr "Párrafo"
1235
 
1236
+ #: app/features/events.php:2316 app/features/events.php:2333
1237
+ #: app/features/events.php:2350
1238
  #, php-format
1239
  msgid "Show all %s"
1240
  msgstr "Mostrar todos %s"
1241
 
1242
+ #: app/features/events.php:2316
1243
  msgid "labels"
1244
  msgstr "etiquetas"
1245
 
1246
+ #: app/features/events.php:2333
1247
  msgid "locations"
1248
  msgstr "ubicaciones"
1249
 
1250
+ #: app/features/events.php:2350
1251
  msgid "organizers"
1252
  msgstr "organizadores"
1253
 
1254
+ #: app/features/events.php:2378 app/features/events.php:2558
1255
+ #: app/features/events.php:2600 app/features/ix.php:2740
1256
  #: app/features/ix.php:2781 app/features/locations.php:58
1257
  #: app/features/locations.php:229 app/features/locations.php:286
1258
  #: app/features/locations.php:288 app/features/locations.php:297
1259
+ #: app/features/mec/meta_boxes/display_options.php:796
1260
  #: app/features/mec/meta_boxes/search_form.php:38
1261
  #: app/features/mec/meta_boxes/search_form.php:99
1262
  #: app/features/mec/meta_boxes/search_form.php:160
1263
+ #: app/features/mec/meta_boxes/search_form.php:221
1264
+ #: app/features/mec/meta_boxes/search_form.php:282
1265
+ #: app/features/mec/meta_boxes/search_form.php:343
1266
+ #: app/features/mec/meta_boxes/search_form.php:404
1267
+ #: app/features/mec/meta_boxes/search_form.php:458
1268
+ #: app/features/mec/meta_boxes/search_form.php:519
1269
+ #: app/features/mec/meta_boxes/search_form.php:580 app/libraries/main.php:1633
1270
+ #: app/libraries/main.php:4420 app/libraries/skins.php:807
1271
  #: app/skins/single.php:356 app/skins/single/default.php:151
1272
  #: app/skins/single/default.php:362 app/skins/single/m1.php:155
1273
  #: app/skins/single/m2.php:87 app/skins/single/modern.php:94
1274
  msgid "Location"
1275
  msgstr "Localización"
1276
 
1277
+ #: app/features/events.php:2379 app/features/events.php:2558
1278
+ #: app/features/events.php:2600 app/features/ix.php:2740
1279
+ #: app/features/ix.php:2781 app/features/mec/meta_boxes/display_options.php:797
1280
  #: app/features/mec/meta_boxes/search_form.php:45
1281
  #: app/features/mec/meta_boxes/search_form.php:106
1282
  #: app/features/mec/meta_boxes/search_form.php:167
1283
+ #: app/features/mec/meta_boxes/search_form.php:228
1284
+ #: app/features/mec/meta_boxes/search_form.php:289
1285
+ #: app/features/mec/meta_boxes/search_form.php:350
1286
+ #: app/features/mec/meta_boxes/search_form.php:411
1287
+ #: app/features/mec/meta_boxes/search_form.php:465
1288
+ #: app/features/mec/meta_boxes/search_form.php:526
1289
+ #: app/features/mec/meta_boxes/search_form.php:587
1290
  #: app/features/organizers.php:58 app/features/organizers.php:199
1291
  #: app/features/organizers.php:255 app/features/organizers.php:257
1292
+ #: app/features/organizers.php:266 app/libraries/main.php:4422
1293
+ #: app/libraries/skins.php:833 app/skins/single/default.php:192
1294
  #: app/skins/single/default.php:403 app/skins/single/m1.php:90
1295
  #: app/skins/single/m2.php:22 app/skins/single/modern.php:31
1296
  msgid "Organizer"
1297
  msgstr "Organizador"
1298
 
1299
+ #: app/features/events.php:2383
1300
  msgid "Repeat"
1301
  msgstr "Repetir"
1302
 
1303
+ #: app/features/events.php:2384
1304
  msgid "Author"
1305
  msgstr "Autor"
1306
 
1307
+ #: app/features/events.php:2494 app/features/events.php:2495
1308
  msgid "iCal Export"
1309
  msgstr "Exportar iCal"
1310
 
1311
+ #: app/features/events.php:2497 app/features/events.php:2498
1312
  msgid "CSV Export"
1313
  msgstr "Exportar CSV"
1314
 
1315
+ #: app/features/events.php:2500 app/features/events.php:2501
1316
  msgid "MS Excel Export"
1317
  msgstr "Exportar Excel"
1318
 
1319
+ #: app/features/events.php:2503 app/features/events.php:2504
1320
  msgid "XML Export"
1321
  msgstr "Exportación XML"
1322
 
1323
+ #: app/features/events.php:2506 app/features/events.php:2507
1324
  msgid "JSON Export"
1325
  msgstr "Exportación JSON"
1326
 
1327
+ #: app/features/events.php:2509 app/features/events.php:2510
1328
  msgid "Duplicate"
1329
  msgstr "Duplicar"
1330
 
1331
+ #: app/features/events.php:2558 app/features/events.php:2600
1332
  #: app/features/ix.php:2740 app/features/ix.php:2781
1333
  #: app/features/labels.php:176 app/features/locations.php:228
1334
+ #: app/features/organizers.php:198 app/features/speakers.php:242
1335
  msgid "ID"
1336
  msgstr "ID"
1337
 
1338
+ #: app/features/events.php:2558 app/features/events.php:2600
1339
  #: app/features/ix.php:2740 app/features/ix.php:2781
1340
  msgid "Link"
1341
  msgstr "Enlace"
1342
 
1343
+ #: app/features/events.php:2558 app/features/events.php:2600
1344
  #, php-format
1345
  msgid "%s Tel"
1346
  msgstr "%s Teléfono "
1347
 
1348
+ #: app/features/events.php:2558 app/features/events.php:2600
1349
  #, php-format
1350
  msgid "%s Email"
1351
  msgstr "%s Correo electrónico"
1404
  msgid "Go back to events list."
1405
  msgstr "Regrese a la lista de eventos."
1406
 
1407
+ #: app/features/fes/form.php:363
1408
  msgid "Add certain days to event occurrence dates."
1409
  msgstr "Añade ciertos días a las fechas de ocurrencia del evento."
1410
 
1411
+ #: app/features/fes/form.php:422
1412
  msgid "Note to reviewer"
1413
  msgstr "Nota al revisor"
1414
 
1415
+ #: app/features/fes/form.php:440
1416
  msgid "User Data"
1417
  msgstr "Datos del usuario"
1418
 
1419
+ #: app/features/fes/form.php:443
1420
  msgid "eg. yourname@gmail.com"
1421
  msgstr "Ejemplo. sunombre@gmail.com"
1422
 
1423
+ #: app/features/fes/form.php:447 app/features/organizers.php:275
1424
  msgid "eg. John Smith"
1425
  msgstr "ej. John Smith"
1426
 
1427
+ #: app/features/fes/form.php:465
1428
  msgid ""
1429
  "If you fill it, it will be replaced instead of default event page link. "
1430
  "Insert full link including http(s)://"
1432
  "Si lo rellenas, se reemplazará en vez del enlace de la página del evento por "
1433
  "defecto. Inserta todo el enlace incluyendo http(s)://"
1434
 
1435
+ #: app/features/fes/form.php:501 app/features/mec/settings.php:1177
1436
  msgid "Featured Image"
1437
  msgstr "Imagen destacada"
1438
 
1439
+ #: app/features/fes/form.php:506
1440
  msgid "Remove Image"
1441
  msgstr "Eliminar imagen"
1442
 
1443
+ #: app/features/fes/form.php:548 app/features/labels.php:61
1444
  #: app/features/labels.php:220 app/features/mec.php:318
1445
+ #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:4417
1446
  #: app/skins/single/default.php:130 app/skins/single/default.php:341
1447
+ #: app/skins/single/m1.php:64 app/skins/single/modern.php:214
1448
  msgid "Labels"
1449
  msgstr "Etiquetas"
1450
 
1451
+ #: app/features/fes/form.php:593 app/features/mec.php:316
1452
  #: app/features/mec/meta_boxes/filter.php:138
1453
  msgid "Tags"
1454
  msgstr "Tags"
1455
 
1456
+ #: app/features/fes/form.php:595
1457
  msgid "Insert your desired tags, comma separated."
1458
  msgstr "Inserta las etiquetas que quieras, separadas por comas."
1459
 
1460
+ #: app/features/fes/form.php:631
1461
  msgid "Submit"
1462
  msgstr "Enviar"
1463
 
1465
  msgid "Click again to remove!"
1466
  msgstr "¡Haz clic de nuevo para eliminar!"
1467
 
1468
+ #: app/features/fes/list.php:64 app/features/fes/list.php:85
1469
  msgid "Add new"
1470
  msgstr "Añadir nuevo"
1471
 
1472
+ #: app/features/fes/list.php:76
1473
  msgid "View"
1474
  msgstr "Ver"
1475
 
1476
+ #: app/features/fes/list.php:85
1477
  #, php-format
1478
  msgid "No events found! %s"
1479
  msgstr "No se encontraron eventos! %s"
1484
 
1485
  #: app/features/ix.php:107 app/features/mec/gateways.php:77
1486
  #: app/features/mec/ie.php:73 app/features/mec/messages.php:77
1487
+ #: app/features/mec/notifications.php:126 app/features/mec/regform.php:111
1488
  #: app/features/mec/settings.php:261 app/features/mec/styles.php:77
1489
  #: app/features/mec/styling.php:99 app/features/mec/support.php:73
1490
  msgid "Import / Export"
1756
  #: app/features/ix/export_g_calendar.php:72
1757
  #: app/features/ix/export_g_calendar.php:147
1758
  #: app/features/ix/export_g_calendar.php:164
1759
+ #: app/features/mec/notifications.php:210
1760
+ #: app/features/mec/notifications.php:263
1761
+ #: app/features/mec/notifications.php:316
1762
+ #: app/features/mec/notifications.php:516
1763
  msgid "Add to Google Calendar"
1764
  msgstr "Añadir a Google Calendar"
1765
 
1766
  #: app/features/ix/export_g_calendar.php:90
1767
+ #: app/features/mec/notifications.php:666 app/features/mec/settings.php:1788
1768
  msgid "Checking ..."
1769
  msgstr "Verificando…"
1770
 
1825
  #: app/features/mec/meta_boxes/display_options.php:470
1826
  #: app/features/mec/meta_boxes/display_options.php:577
1827
  #: app/features/mec/meta_boxes/display_options.php:684
1828
+ #: app/features/mec/meta_boxes/display_options.php:757
1829
+ #: app/features/mec/meta_boxes/display_options.php:937
1830
  #: app/features/mec/settings.php:811 app/features/mec/settings.php:985
1831
  #: app/features/mec/settings.php:1003 app/features/mec/settings.php:1327
1832
  #: app/features/mec/settings.php:1436 app/features/mec/settings.php:1454
1994
  msgstr "Autosincronización"
1995
 
1996
  #: app/features/ix/sync.php:22
1997
+ #: app/features/mec/meta_boxes/display_options.php:757
1998
  #, php-format
1999
  msgid "%s is required to use synchronization feature."
2000
  msgstr "Se requiere %s para usar la funcionalidad de sincronización."
2005
 
2006
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2007
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2008
+ #: app/features/mec/notifications.php:460
2009
  msgid "Important Note"
2010
  msgstr "Nota importante"
2011
 
2121
  #: app/features/mec/meta_boxes/display_options.php:475
2122
  #: app/features/mec/meta_boxes/display_options.php:525
2123
  #: app/features/mec/meta_boxes/display_options.php:689
2124
+ #: app/features/mec/meta_boxes/display_options.php:819
2125
+ #: app/features/mec/meta_boxes/display_options.php:876
2126
+ #: app/features/mec/meta_boxes/display_options.php:968
2127
+ #: app/features/mec/meta_boxes/display_options.php:1054
2128
  msgid "Style"
2129
  msgstr "Estilo"
2130
 
2140
  #: app/skins/masonry/render.php:28 app/skins/monthly_view/calendar.php:82
2141
  #: app/skins/monthly_view/calendar_clean.php:81
2142
  #: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:45
2143
+ #: app/skins/timetable/render.php:33 app/skins/timetable/render.php:136
2144
  #: app/skins/weekly_view/render.php:31 app/skins/yearly_view/render.php:48
2145
  msgid "Featured"
2146
  msgstr ""
2147
 
2148
  #: app/features/labels.php:117 app/features/labels.php:142
2149
+ #: app/libraries/main.php:4644 app/skins/agenda/render.php:41
2150
  #: app/skins/available_spot/tpl.php:35 app/skins/carousel/render.php:59
2151
  #: app/skins/countdown/tpl.php:28 app/skins/cover/tpl.php:32
2152
  #: app/skins/daily_view/render.php:27 app/skins/grid/render.php:53
2154
  #: app/skins/monthly_view/calendar.php:86
2155
  #: app/skins/monthly_view/calendar_clean.php:85
2156
  #: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:46
2157
+ #: app/skins/timetable/render.php:37 app/skins/timetable/render.php:137
2158
  #: app/skins/weekly_view/render.php:35 app/skins/yearly_view/render.php:52
2159
  msgid "Canceled"
2160
  msgstr ""
2164
  msgstr ""
2165
 
2166
  #: app/features/labels.php:179 app/features/locations.php:231
2167
+ #: app/features/organizers.php:201 app/features/speakers.php:246
2168
  #: app/modules/booking/steps/tickets.php:38
2169
  msgid "Count"
2170
  msgstr "Contador"
2181
 
2182
  #: app/features/locations.php:59 app/features/mec.php:319
2183
  #: app/features/mec/dashboard.php:201 app/features/mec/meta_boxes/filter.php:87
2184
+ #: app/libraries/main.php:4419
2185
  msgid "Locations"
2186
  msgstr "Lugar"
2187
 
2214
 
2215
  #: app/features/locations.php:137 app/features/locations.php:179
2216
  #: app/features/organizers.php:126 app/features/organizers.php:158
2217
+ #: app/features/speakers.php:152 app/features/speakers.php:196
2218
  msgid "Thumbnail"
2219
  msgstr "Miniatura"
2220
 
2221
  #: app/features/locations.php:142 app/features/locations.php:182
2222
  #: app/features/organizers.php:131 app/features/organizers.php:161
2223
+ #: app/features/speakers.php:157 app/features/speakers.php:199
2224
  msgid "Upload/Add image"
2225
  msgstr "Subir/Añadir imagen"
2226
 
2228
  #: app/features/locations.php:339 app/features/locations.php:346
2229
  #: app/features/organizers.php:132 app/features/organizers.php:162
2230
  #: app/features/organizers.php:294 app/features/organizers.php:301
2231
+ #: app/features/speakers.php:158 app/features/speakers.php:200
2232
  msgid "Remove image"
2233
  msgstr "Eliminar imagen"
2234
 
2288
  msgid "Don't show map in single event page"
2289
  msgstr "No mostrar el mapa en la página del detalle del evento"
2290
 
2291
+ #: app/features/locations.php:355 app/libraries/main.php:4453
2292
  #, fuzzy
2293
  #| msgid "Locations"
2294
  msgid "Other Locations"
2336
 
2337
  #: app/features/mec.php:299 app/features/mec/gateways.php:84
2338
  #: app/features/mec/ie.php:80 app/features/mec/messages.php:84
2339
+ #: app/features/mec/notifications.php:133 app/features/mec/regform.php:118
2340
  #: app/features/mec/settings.php:268 app/features/mec/styles.php:84
2341
  #: app/features/mec/styling.php:106 app/features/mec/support-page.php:9
2342
  #: app/features/mec/support.php:80 app/features/mec/support.php:93
2345
 
2346
  #: app/features/mec.php:320 app/features/mec/dashboard.php:208
2347
  #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2348
+ #: app/libraries/main.php:4421
2349
  msgid "Organizers"
2350
  msgstr "Organizadores"
2351
 
2352
+ #: app/features/mec.php:328 app/features/mec.php:348
2353
  #: app/features/mec/dashboard.php:194
2354
  msgid "Shortcodes"
2355
  msgstr "Shortcodes"
2368
  msgid "Addons"
2369
  msgstr ""
2370
 
2371
+ #: app/features/mec.php:350
2372
  msgid "Add Shortcode"
2373
  msgstr "Nuevo Shortcode"
2374
 
2375
+ #: app/features/mec.php:351
2376
  msgid "Add New Shortcode"
2377
  msgstr "Añadir nuevo Shortcode"
2378
 
2379
+ #: app/features/mec.php:352
2380
  msgid "No shortcodes found!"
2381
  msgstr "No hay shortcodes"
2382
 
2383
+ #: app/features/mec.php:353
2384
  msgid "All Shortcodes"
2385
  msgstr "Todos los Shortcodes"
2386
 
2387
+ #: app/features/mec.php:354
2388
  msgid "Edit shortcodes"
2389
  msgstr "Editar Shortcodes"
2390
 
2391
+ #: app/features/mec.php:355
2392
  msgid "No shortcodes found in Trash!"
2393
  msgstr "No hay shortcodes en la papelera"
2394
 
2395
+ #: app/features/mec.php:404
2396
  msgid "Display Options"
2397
  msgstr "Opciones de pantalla"
2398
 
2399
+ #: app/features/mec.php:405
2400
  msgid "Filter Options"
2401
  msgstr "Opciones de filtros"
2402
 
2403
+ #: app/features/mec.php:407
2404
  msgid "Search Form"
2405
  msgstr "Formulario de Búsqueda"
2406
 
2407
+ #: app/features/mec.php:757
2408
  msgid "Display content's images as Popup"
2409
  msgstr ""
2410
 
2411
+ #: app/features/mec.php:770
2412
  msgid "Single Event Display Method"
2413
  msgstr "Método de vista para página del evento"
2414
 
2415
+ #: app/features/mec.php:775
2416
  msgid "Separate Window"
2417
  msgstr "Ventana aparte"
2418
 
2419
+ #: app/features/mec.php:776
2420
  msgid "Modal 1"
2421
  msgstr "Modal 1"
2422
 
2464
  msgid "Modern Events Calendar (Lite)"
2465
  msgstr "Modern Events Calendar (Lite)"
2466
 
2467
+ #: app/features/mec/dashboard.php:65 app/libraries/factory.php:197
2468
  msgctxt "plugin rate"
2469
  msgid "Rate the plugin ★★★★★"
2470
  msgstr ""
2578
  #: app/features/mec/gateways.php:171 app/features/mec/messages.php:11
2579
  #: app/features/mec/messages.php:118 app/features/mec/messages.php:127
2580
  #: app/features/mec/messages.php:161 app/features/mec/messages.php:170
2581
+ #: app/features/mec/notifications.php:10 app/features/mec/notifications.php:572
2582
+ #: app/features/mec/notifications.php:584
2583
+ #: app/features/mec/notifications.php:683
2584
+ #: app/features/mec/notifications.php:697 app/features/mec/regform.php:47
2585
  #: app/features/mec/regform.php:198 app/features/mec/regform.php:253
2586
  #: app/features/mec/regform.php:289 app/features/mec/regform.php:298
2587
  #: app/features/mec/settings.php:28 app/features/mec/settings.php:1714
2589
  #: app/features/mec/settings.php:1819 app/features/mec/styles.php:11
2590
  #: app/features/mec/styles.php:103 app/features/mec/styles.php:112
2591
  #: app/features/mec/styles.php:149 app/features/mec/styles.php:158
2592
+ #: app/features/mec/styling.php:33 app/features/mec/styling.php:324
2593
+ #: app/features/mec/styling.php:333 app/features/mec/styling.php:396
2594
+ #: app/features/mec/styling.php:405
2595
  msgid "Save Changes"
2596
  msgstr "Guardar Cambios"
2597
 
2598
  #: app/features/mec/gateways.php:56 app/features/mec/ie.php:52
2599
+ #: app/features/mec/messages.php:56 app/features/mec/notifications.php:105
2600
  #: app/features/mec/regform.php:90 app/features/mec/settings.php:240
2601
  #: app/features/mec/styles.php:56 app/features/mec/styling.php:78
2602
  #: app/features/mec/support.php:52
2604
  msgstr "Opciones visuales"
2605
 
2606
  #: app/features/mec/gateways.php:63 app/features/mec/ie.php:59
2607
+ #: app/features/mec/messages.php:63 app/features/mec/notifications.php:112
2608
  #: app/features/mec/regform.php:97 app/features/mec/settings.php:247
2609
  #: app/features/mec/styles.php:63 app/features/mec/styling.php:85
2610
  #: app/features/mec/support.php:59
2613
 
2614
  #: app/features/mec/gateways.php:70 app/features/mec/ie.php:66
2615
  #: app/features/mec/messages.php:70 app/features/mec/messages.php:97
2616
+ #: app/features/mec/notifications.php:119 app/features/mec/regform.php:104
2617
  #: app/features/mec/settings.php:254 app/features/mec/styles.php:70
2618
  #: app/features/mec/styling.php:92 app/features/mec/support.php:66
2619
  msgid "Messages"
2620
  msgstr "Mensajes"
2621
 
2622
  #: app/features/mec/gateways.php:140 app/features/mec/messages.php:145
2623
+ #: app/features/mec/notifications.php:661 app/features/mec/regform.php:273
2624
  #: app/features/mec/settings.php:1783 app/features/mec/styles.php:132
2625
+ #: app/features/mec/styling.php:378
2626
  msgid "Saved"
2627
  msgstr "Guardado"
2628
 
2629
  #: app/features/mec/gateways.php:141 app/features/mec/messages.php:146
2630
+ #: app/features/mec/notifications.php:662 app/features/mec/regform.php:274
2631
  #: app/features/mec/settings.php:1784 app/features/mec/styles.php:133
2632
+ #: app/features/mec/styling.php:379
2633
  msgid "Settings Saved!"
2634
  msgstr "¡Ajustes guardados!"
2635
 
2676
  #: app/features/mec/meta_boxes/display_options.php:34
2677
  #: app/features/mec/meta_boxes/display_options.php:159
2678
  #: app/features/mec/meta_boxes/display_options.php:527
2679
+ #: app/features/mec/meta_boxes/display_options.php:821
2680
  #: app/features/mec/settings.php:432 app/features/mec/settings.php:456
2681
  #: app/features/mec/settings.php:465 app/features/mec/settings.php:506
2682
  #: app/features/mec/settings.php:530 app/features/mec/settings.php:539
2695
  #: app/features/mec/meta_boxes/display_options.php:477
2696
  #: app/features/mec/meta_boxes/display_options.php:529
2697
  #: app/features/mec/meta_boxes/display_options.php:691
2698
+ #: app/features/mec/meta_boxes/display_options.php:823
2699
  #: app/features/mec/settings.php:434 app/features/mec/settings.php:447
2700
  #: app/features/mec/settings.php:458 app/features/mec/settings.php:468
2701
  #: app/features/mec/settings.php:508 app/features/mec/settings.php:521
2718
  #: app/features/mec/meta_boxes/display_options.php:309
2719
  #: app/features/mec/meta_boxes/display_options.php:584
2720
  #: app/features/mec/meta_boxes/display_options.php:617
2721
+ #: app/features/mec/meta_boxes/display_options.php:764
2722
+ #: app/features/mec/meta_boxes/display_options.php:979
2723
+ #: app/features/mec/meta_boxes/display_options.php:1066
2724
  msgid "Today"
2725
  msgstr "Hoy"
2726
 
2729
  #: app/features/mec/meta_boxes/display_options.php:310
2730
  #: app/features/mec/meta_boxes/display_options.php:585
2731
  #: app/features/mec/meta_boxes/display_options.php:618
2732
+ #: app/features/mec/meta_boxes/display_options.php:765
2733
+ #: app/features/mec/meta_boxes/display_options.php:980
2734
+ #: app/features/mec/meta_boxes/display_options.php:1067
2735
  msgid "Tomorrow"
2736
  msgstr "Mañana"
2737
 
2744
  #: app/features/mec/meta_boxes/display_options.php:619
2745
  #: app/features/mec/meta_boxes/display_options.php:654
2746
  #: app/features/mec/meta_boxes/display_options.php:700
2747
+ #: app/features/mec/meta_boxes/display_options.php:766
2748
+ #: app/features/mec/meta_boxes/display_options.php:981
2749
+ #: app/features/mec/meta_boxes/display_options.php:1068
2750
  msgid "Start of Current Month"
2751
  msgstr "Inicio del mes actual"
2752
 
2759
  #: app/features/mec/meta_boxes/display_options.php:620
2760
  #: app/features/mec/meta_boxes/display_options.php:655
2761
  #: app/features/mec/meta_boxes/display_options.php:701
2762
+ #: app/features/mec/meta_boxes/display_options.php:767
2763
+ #: app/features/mec/meta_boxes/display_options.php:982
2764
+ #: app/features/mec/meta_boxes/display_options.php:1069
2765
  msgid "Start of Next Month"
2766
  msgstr "Inicio del siguiente mes"
2767
 
2775
  #: app/features/mec/meta_boxes/display_options.php:621
2776
  #: app/features/mec/meta_boxes/display_options.php:656
2777
  #: app/features/mec/meta_boxes/display_options.php:702
2778
+ #: app/features/mec/meta_boxes/display_options.php:768
2779
+ #: app/features/mec/meta_boxes/display_options.php:983
2780
+ #: app/features/mec/meta_boxes/display_options.php:1070
2781
  msgid "On a certain date"
2782
  msgstr "Una fecha concreta"
2783
 
2791
  #: app/features/mec/meta_boxes/display_options.php:625
2792
  #: app/features/mec/meta_boxes/display_options.php:659
2793
  #: app/features/mec/meta_boxes/display_options.php:705
2794
+ #: app/features/mec/meta_boxes/display_options.php:771
2795
+ #: app/features/mec/meta_boxes/display_options.php:986
2796
+ #: app/features/mec/meta_boxes/display_options.php:1073
2797
  #, php-format
2798
  msgid "eg. %s"
2799
  msgstr "ej. %s"
2826
  #: app/features/mec/meta_boxes/display_options.php:325
2827
  #: app/features/mec/meta_boxes/display_options.php:492
2828
  #: app/features/mec/meta_boxes/display_options.php:497
2829
+ #: app/features/mec/meta_boxes/display_options.php:775
2830
+ #: app/features/mec/meta_boxes/display_options.php:780
2831
+ #: app/features/mec/meta_boxes/display_options.php:827
 
 
 
 
2832
  #: app/features/mec/meta_boxes/display_options.php:833
2833
+ #: app/features/mec/meta_boxes/display_options.php:840
2834
+ #: app/features/mec/meta_boxes/display_options.php:845
2835
+ #: app/features/mec/meta_boxes/display_options.php:852
2836
+ #: app/features/mec/meta_boxes/display_options.php:856
2837
+ #: app/features/mec/meta_boxes/display_options.php:884
2838
+ #: app/features/mec/meta_boxes/display_options.php:888
2839
+ #: app/features/mec/meta_boxes/display_options.php:895
2840
+ #: app/features/mec/meta_boxes/display_options.php:899
2841
+ #: app/features/mec/meta_boxes/display_options.php:906
2842
+ #: app/features/mec/meta_boxes/display_options.php:912
2843
+ #: app/features/mec/meta_boxes/display_options.php:942
2844
+ #: app/features/mec/meta_boxes/display_options.php:947
2845
+ #: app/features/mec/meta_boxes/display_options.php:990
2846
+ #: app/features/mec/meta_boxes/display_options.php:996
2847
+ #: app/features/mec/meta_boxes/display_options.php:1003
2848
+ #: app/features/mec/meta_boxes/display_options.php:1007
2849
+ #: app/features/mec/meta_boxes/display_options.php:1014
2850
+ #: app/features/mec/meta_boxes/display_options.php:1018
2851
+ #: app/features/mec/meta_boxes/display_options.php:1077
2852
+ #: app/features/mec/meta_boxes/display_options.php:1083
2853
+ #: app/features/mec/meta_boxes/display_options.php:1090
2854
+ #: app/features/mec/meta_boxes/display_options.php:1096
2855
+ #: app/features/mec/meta_boxes/display_options.php:1103
2856
+ #: app/features/mec/meta_boxes/display_options.php:1109
2857
+ #: app/features/mec/meta_boxes/display_options.php:1116
2858
+ #: app/features/mec/meta_boxes/display_options.php:1122
2859
+ #: app/features/mec/meta_boxes/display_options.php:1129
2860
+ #: app/features/mec/meta_boxes/display_options.php:1135
2861
  msgid "Date Formats"
2862
  msgstr "Formato de fecha"
2863
 
2873
  #: app/features/mec/meta_boxes/display_options.php:86
2874
  #: app/features/mec/meta_boxes/display_options.php:224
2875
  #: app/features/mec/meta_boxes/display_options.php:248
2876
+ #: app/features/mec/meta_boxes/display_options.php:1084
2877
+ #: app/features/mec/meta_boxes/display_options.php:1097
2878
+ #: app/features/mec/meta_boxes/display_options.php:1110
2879
+ #: app/features/mec/meta_boxes/display_options.php:1123
2880
+ #: app/features/mec/meta_boxes/display_options.php:1136
2881
  msgid "Default values are d, F and l"
2882
  msgstr "Los valores predeterminados son d, F y l"
2883
 
2894
  #: app/features/mec/meta_boxes/display_options.php:115
2895
  #: app/features/mec/meta_boxes/display_options.php:276
2896
  #: app/features/mec/meta_boxes/display_options.php:332
2897
+ #: app/features/mec/meta_boxes/display_options.php:787
2898
+ #: app/features/mec/meta_boxes/display_options.php:1034
2899
+ #: app/features/mec/meta_boxes/display_options.php:1142
2900
  msgid "Limit"
2901
  msgstr "Límite"
2902
 
2908
  #: app/features/mec/meta_boxes/display_options.php:630
2909
  #: app/features/mec/meta_boxes/display_options.php:664
2910
  #: app/features/mec/meta_boxes/display_options.php:710
2911
+ #: app/features/mec/meta_boxes/display_options.php:1035
2912
+ #: app/features/mec/meta_boxes/display_options.php:1143
2913
  msgid "eg. 6"
2914
  msgstr "ej. 6"
2915
 
2933
  #: app/features/mec/meta_boxes/display_options.php:385
2934
  #: app/features/mec/meta_boxes/display_options.php:528
2935
  #: app/features/mec/meta_boxes/display_options.php:692
2936
+ #: app/features/mec/meta_boxes/display_options.php:822
2937
  #: app/features/mec/settings.php:433 app/features/mec/settings.php:448
2938
  #: app/features/mec/settings.php:466 app/features/mec/settings.php:507
2939
  #: app/features/mec/settings.php:522 app/features/mec/settings.php:540
2979
  msgstr "Valor por defecto is \"d F Y\""
2980
 
2981
  #: app/features/mec/meta_boxes/display_options.php:265
2982
+ #: app/features/mec/meta_boxes/display_options.php:1025
2983
  msgid "Count in row"
2984
  msgstr "Contador en fila"
2985
 
2987
  #: app/features/mec/meta_boxes/display_options.php:470
2988
  #: app/features/mec/meta_boxes/display_options.php:577
2989
  #: app/features/mec/meta_boxes/display_options.php:684
2990
+ #: app/features/mec/meta_boxes/display_options.php:937
2991
  #, php-format
2992
  msgid "%s is required to use this skin."
2993
  msgstr "Se requiere %s para utilizar este tema."
3003
 
3004
  #: app/features/mec/meta_boxes/display_options.php:375
3005
  #: app/features/mec/meta_boxes/display_options.php:392
3006
+ #: app/libraries/main.php:329 app/libraries/main.php:1186
3007
+ #: app/libraries/main.php:1211
3008
  msgid "List View"
3009
  msgstr "Vista de lista"
3010
 
3011
  #: app/features/mec/meta_boxes/display_options.php:376
3012
  #: app/features/mec/meta_boxes/display_options.php:402
3013
+ #: app/libraries/main.php:333 app/libraries/main.php:1180
3014
+ #: app/libraries/main.php:1205
3015
  msgid "Yearly View"
3016
  msgstr "Vista anual"
3017
 
3022
 
3023
  #: app/features/mec/meta_boxes/display_options.php:378
3024
  #: app/features/mec/meta_boxes/display_options.php:434
3025
+ #: app/libraries/main.php:336 app/libraries/main.php:1182
3026
+ #: app/libraries/main.php:1207
3027
  msgid "Weekly View"
3028
  msgstr "Vista de semana"
3029
 
3030
  #: app/features/mec/meta_boxes/display_options.php:379
3031
  #: app/features/mec/meta_boxes/display_options.php:444
3032
+ #: app/libraries/main.php:335 app/libraries/main.php:1183
3033
+ #: app/libraries/main.php:1208
3034
  msgid "Daily View"
3035
  msgstr "Vista de día"
3036
 
3072
  #: app/features/mec/meta_boxes/display_options.php:551
3073
  #: app/features/mec/meta_boxes/display_options.php:634
3074
  #: app/features/mec/meta_boxes/display_options.php:668
3075
+ #: app/features/mec/meta_boxes/display_options.php:738
3076
  msgid "Next/Previous Buttons"
3077
  msgstr "Botones Siguiente/Anterior"
3078
 
3089
  #: app/features/mec/meta_boxes/display_options.php:569
3090
  #: app/features/mec/meta_boxes/display_options.php:642
3091
  #: app/features/mec/meta_boxes/display_options.php:676
3092
+ #: app/features/mec/meta_boxes/display_options.php:746
3093
  msgid "For showing next/previous month navigation."
3094
  msgstr "Para mostrar navegación siguiente/anterior"
3095
 
3121
  msgid "Next Week"
3122
  msgstr "Siguiente semana"
3123
 
3124
+ #: app/features/mec/meta_boxes/display_options.php:714
3125
+ msgid "Number of Days"
3126
+ msgstr ""
3127
+
3128
+ #: app/features/mec/meta_boxes/display_options.php:722
3129
+ #, fuzzy
3130
+ #| msgid "Start"
3131
+ msgid "Week Start"
3132
+ msgstr "Inicio"
3133
+
3134
+ #: app/features/mec/meta_boxes/display_options.php:724
3135
+ #, fuzzy
3136
+ #| msgid "Inherit from global options"
3137
+ msgid "Inherite from WordPress options"
3138
+ msgstr "Heredar opciones globales"
3139
+
3140
+ #: app/features/mec/meta_boxes/display_options.php:781
3141
+ #: app/features/mec/meta_boxes/display_options.php:948
3142
  msgid "Default values are j and F"
3143
  msgstr "Los valores predeterminados son j y F"
3144
 
3145
+ #: app/features/mec/meta_boxes/display_options.php:788
3146
  msgid "eg. 24"
3147
  msgstr "ej. 24"
3148
 
3149
+ #: app/features/mec/meta_boxes/display_options.php:791
3150
  msgid "Filter By"
3151
  msgstr "Filtrar por"
3152
 
3153
+ #: app/features/mec/meta_boxes/display_options.php:793
3154
+ msgid "None"
3155
+ msgstr ""
3156
+
3157
+ #: app/features/mec/meta_boxes/display_options.php:802
3158
  msgid "Convert Masonry to Grid"
3159
  msgstr ""
3160
 
3161
+ #: app/features/mec/meta_boxes/display_options.php:803
3162
  msgid "For using this option, your events should come with image"
3163
  msgstr ""
3164
 
3165
+ #: app/features/mec/meta_boxes/display_options.php:834
3166
  msgid "Default values are d, M and Y"
3167
  msgstr "Los valores predeterminados son d, M e Y"
3168
 
3169
+ #: app/features/mec/meta_boxes/display_options.php:846
3170
  msgid "Default values are \"F d\" and l"
3171
  msgstr "Los valores predeterminados son \"F d\" y l"
3172
 
3173
+ #: app/features/mec/meta_boxes/display_options.php:857
3174
  msgid "Default value is \"l, F d Y\""
3175
  msgstr "Valor por defecto es \"l, F d Y\""
3176
 
3177
+ #: app/features/mec/meta_boxes/display_options.php:878
3178
  msgid "Style 1"
3179
  msgstr "Estilo 1"
3180
 
3181
+ #: app/features/mec/meta_boxes/display_options.php:879
3182
  msgid "Style 2"
3183
  msgstr "Estilo 2"
3184
 
3185
+ #: app/features/mec/meta_boxes/display_options.php:880
3186
  msgid "Style 3"
3187
  msgstr "Estilo 3"
3188
 
3189
+ #: app/features/mec/meta_boxes/display_options.php:889
3190
+ #: app/features/mec/meta_boxes/display_options.php:900
3191
  msgid "Default value is \"j F Y\""
3192
  msgstr "El valor predeterminado es \"j F Y\""
3193
 
3194
+ #: app/features/mec/meta_boxes/display_options.php:913
3195
  msgid "Default values are j, F and Y"
3196
  msgstr "Los valores predeterminados son j, F e Y"
3197
 
3198
+ #: app/features/mec/meta_boxes/display_options.php:921
3199
+ #: app/features/mec/meta_boxes/display_options.php:956
3200
  msgid " -- Next Upcoming Event -- "
3201
  msgstr " -- Próximo Evento -- "
3202
 
3203
+ #: app/features/mec/meta_boxes/display_options.php:928
3204
  msgid "Background Color"
3205
  msgstr "Color de fondo"
3206
 
3207
+ #: app/features/mec/meta_boxes/display_options.php:970
3208
+ #: app/features/mec/meta_boxes/display_options.php:1056
3209
  msgid "Type 1"
3210
  msgstr "Tipo 1"
3211
 
3212
+ #: app/features/mec/meta_boxes/display_options.php:971
3213
+ #: app/features/mec/meta_boxes/display_options.php:1057
3214
  msgid "Type 2"
3215
  msgstr "Tipo 2"
3216
 
3217
+ #: app/features/mec/meta_boxes/display_options.php:972
3218
+ #: app/features/mec/meta_boxes/display_options.php:1058
3219
  msgid "Type 3"
3220
  msgstr "Tipo 3"
3221
 
3222
+ #: app/features/mec/meta_boxes/display_options.php:973
3223
+ #: app/features/mec/meta_boxes/display_options.php:1059
3224
  msgid "Type 4"
3225
  msgstr "Tipo 4"
3226
 
3227
+ #: app/features/mec/meta_boxes/display_options.php:997
3228
  msgid "Default values are d, F and Y"
3229
  msgstr "Los valores predeterminados son d, F e Y"
3230
 
3231
+ #: app/features/mec/meta_boxes/display_options.php:1008
3232
+ #: app/features/mec/meta_boxes/display_options.php:1019
3233
  msgid "Default value is \"M d, Y\""
3234
  msgstr "El valor predeterminado es \"M d, Y\""
3235
 
3236
+ #: app/features/mec/meta_boxes/display_options.php:1038
3237
+ #: app/features/mec/meta_boxes/display_options.php:1146
3238
  msgid "Auto Play Time"
3239
  msgstr "Tiempo de reproducción automática"
3240
 
3241
+ #: app/features/mec/meta_boxes/display_options.php:1039
3242
+ #: app/features/mec/meta_boxes/display_options.php:1147
3243
  msgid "eg. 3000 default is 3 second"
3244
  msgstr "Ejemplo. 3000 son 3 segundos."
3245
 
3246
+ #: app/features/mec/meta_boxes/display_options.php:1043
3247
  #, fuzzy
3248
  #| msgid "Archive Page Skin"
3249
  msgid "Archive Link"
3250
  msgstr "Tema de la página de archivo"
3251
 
3252
+ #: app/features/mec/meta_boxes/display_options.php:1047
3253
  #, fuzzy
3254
  #| msgid "Text"
3255
  msgid "Head Text"
3256
  msgstr "Texto"
3257
 
3258
+ #: app/features/mec/meta_boxes/display_options.php:1060
3259
  msgid "Type 5"
3260
  msgstr "Tipo 5"
3261
 
3356
  #: app/features/mec/meta_boxes/search_form.php:216
3357
  #: app/features/mec/meta_boxes/search_form.php:223
3358
  #: app/features/mec/meta_boxes/search_form.php:230
3359
+ #: app/features/mec/meta_boxes/search_form.php:237
3360
+ #: app/features/mec/meta_boxes/search_form.php:244
3361
+ #: app/features/mec/meta_boxes/search_form.php:251
3362
+ #: app/features/mec/meta_boxes/search_form.php:258
3363
+ #: app/features/mec/meta_boxes/search_form.php:265
3364
  #: app/features/mec/meta_boxes/search_form.php:277
3365
  #: app/features/mec/meta_boxes/search_form.php:284
3366
  #: app/features/mec/meta_boxes/search_form.php:291
3367
+ #: app/features/mec/meta_boxes/search_form.php:298
3368
+ #: app/features/mec/meta_boxes/search_form.php:305
3369
+ #: app/features/mec/meta_boxes/search_form.php:312
3370
+ #: app/features/mec/meta_boxes/search_form.php:319
3371
+ #: app/features/mec/meta_boxes/search_form.php:326
3372
  #: app/features/mec/meta_boxes/search_form.php:338
3373
  #: app/features/mec/meta_boxes/search_form.php:345
3374
  #: app/features/mec/meta_boxes/search_form.php:352
3375
+ #: app/features/mec/meta_boxes/search_form.php:359
3376
+ #: app/features/mec/meta_boxes/search_form.php:366
3377
+ #: app/features/mec/meta_boxes/search_form.php:373
3378
+ #: app/features/mec/meta_boxes/search_form.php:380
3379
+ #: app/features/mec/meta_boxes/search_form.php:387
3380
  #: app/features/mec/meta_boxes/search_form.php:399
3381
  #: app/features/mec/meta_boxes/search_form.php:406
3382
+ #: app/features/mec/meta_boxes/search_form.php:413
3383
+ #: app/features/mec/meta_boxes/search_form.php:420
3384
+ #: app/features/mec/meta_boxes/search_form.php:427
3385
+ #: app/features/mec/meta_boxes/search_form.php:434
3386
+ #: app/features/mec/meta_boxes/search_form.php:441
3387
  #: app/features/mec/meta_boxes/search_form.php:453
3388
  #: app/features/mec/meta_boxes/search_form.php:460
3389
  #: app/features/mec/meta_boxes/search_form.php:467
3390
+ #: app/features/mec/meta_boxes/search_form.php:474
3391
+ #: app/features/mec/meta_boxes/search_form.php:481
3392
+ #: app/features/mec/meta_boxes/search_form.php:488
3393
+ #: app/features/mec/meta_boxes/search_form.php:495
3394
+ #: app/features/mec/meta_boxes/search_form.php:502
3395
  #: app/features/mec/meta_boxes/search_form.php:514
3396
  #: app/features/mec/meta_boxes/search_form.php:521
3397
  #: app/features/mec/meta_boxes/search_form.php:528
3398
+ #: app/features/mec/meta_boxes/search_form.php:535
3399
+ #: app/features/mec/meta_boxes/search_form.php:542
3400
+ #: app/features/mec/meta_boxes/search_form.php:549
3401
+ #: app/features/mec/meta_boxes/search_form.php:556
3402
+ #: app/features/mec/meta_boxes/search_form.php:563
3403
  #: app/features/mec/meta_boxes/search_form.php:575
3404
  #: app/features/mec/meta_boxes/search_form.php:582
3405
  #: app/features/mec/meta_boxes/search_form.php:589
3406
+ #: app/features/mec/meta_boxes/search_form.php:596
3407
+ #: app/features/mec/meta_boxes/search_form.php:603
3408
+ #: app/features/mec/meta_boxes/search_form.php:610
3409
+ #: app/features/mec/meta_boxes/search_form.php:617
3410
+ #: app/features/mec/meta_boxes/search_form.php:624
3411
  #: app/features/mec/settings.php:330 app/features/mec/settings.php:586
3412
  #: app/features/mec/settings.php:866
3413
  msgid "Disabled"
3416
  #: app/features/mec/meta_boxes/search_form.php:52
3417
  #: app/features/mec/meta_boxes/search_form.php:113
3418
  #: app/features/mec/meta_boxes/search_form.php:174
3419
+ #: app/features/mec/meta_boxes/search_form.php:235
3420
+ #: app/features/mec/meta_boxes/search_form.php:296
3421
+ #: app/features/mec/meta_boxes/search_form.php:357
3422
+ #: app/features/mec/meta_boxes/search_form.php:418
3423
+ #: app/features/mec/meta_boxes/search_form.php:472
3424
+ #: app/features/mec/meta_boxes/search_form.php:533
3425
+ #: app/features/mec/meta_boxes/search_form.php:594 app/features/speakers.php:56
3426
+ #: app/features/speakers.php:243 app/libraries/main.php:4424
3427
+ #: app/libraries/skins.php:859
3428
  msgid "Speaker"
3429
  msgstr ""
3430
 
3431
  #: app/features/mec/meta_boxes/search_form.php:59
3432
  #: app/features/mec/meta_boxes/search_form.php:120
3433
  #: app/features/mec/meta_boxes/search_form.php:181
3434
+ #: app/features/mec/meta_boxes/search_form.php:242
3435
+ #: app/features/mec/meta_boxes/search_form.php:303
3436
+ #: app/features/mec/meta_boxes/search_form.php:364
3437
+ #: app/features/mec/meta_boxes/search_form.php:425
3438
+ #: app/features/mec/meta_boxes/search_form.php:479
3439
+ #: app/features/mec/meta_boxes/search_form.php:540
3440
+ #: app/features/mec/meta_boxes/search_form.php:601 app/libraries/skins.php:885
3441
  #, fuzzy
3442
  #| msgid "Tags"
3443
  msgid "Tag"
3446
  #: app/features/mec/meta_boxes/search_form.php:73
3447
  #: app/features/mec/meta_boxes/search_form.php:134
3448
  #: app/features/mec/meta_boxes/search_form.php:195
3449
+ #: app/features/mec/meta_boxes/search_form.php:256
3450
+ #: app/features/mec/meta_boxes/search_form.php:317
3451
+ #: app/features/mec/meta_boxes/search_form.php:378
3452
+ #: app/features/mec/meta_boxes/search_form.php:493
3453
+ #: app/features/mec/meta_boxes/search_form.php:554
3454
+ #: app/features/mec/meta_boxes/search_form.php:615
3455
  msgid "Month Filter"
3456
  msgstr "Filtrar por mes"
3457
 
3458
  #: app/features/mec/meta_boxes/search_form.php:80
3459
  #: app/features/mec/meta_boxes/search_form.php:141
3460
  #: app/features/mec/meta_boxes/search_form.php:202
3461
+ #: app/features/mec/meta_boxes/search_form.php:263
3462
+ #: app/features/mec/meta_boxes/search_form.php:324
3463
+ #: app/features/mec/meta_boxes/search_form.php:385
3464
+ #: app/features/mec/meta_boxes/search_form.php:439
3465
+ #: app/features/mec/meta_boxes/search_form.php:500
3466
+ #: app/features/mec/meta_boxes/search_form.php:561
3467
+ #: app/features/mec/meta_boxes/search_form.php:622
3468
  msgid "Text Search"
3469
  msgstr "Búsqueda de texto"
3470
 
3471
  #: app/features/mec/meta_boxes/search_form.php:83
3472
  #: app/features/mec/meta_boxes/search_form.php:144
3473
  #: app/features/mec/meta_boxes/search_form.php:205
3474
+ #: app/features/mec/meta_boxes/search_form.php:266
3475
+ #: app/features/mec/meta_boxes/search_form.php:327
3476
+ #: app/features/mec/meta_boxes/search_form.php:388
3477
+ #: app/features/mec/meta_boxes/search_form.php:442
3478
+ #: app/features/mec/meta_boxes/search_form.php:503
3479
+ #: app/features/mec/meta_boxes/search_form.php:564
3480
+ #: app/features/mec/meta_boxes/search_form.php:625
3481
  msgid "Text Input"
3482
  msgstr "Campo de texto"
3483
 
3484
+ #: app/features/mec/meta_boxes/search_form.php:633
3485
+ #: app/features/mec/meta_boxes/search_form.php:639
3486
+ #: app/features/mec/meta_boxes/search_form.php:645
3487
+ #: app/features/mec/meta_boxes/search_form.php:651
3488
+ #: app/features/mec/meta_boxes/search_form.php:657
3489
+ #: app/features/mec/meta_boxes/search_form.php:663
3490
  msgid "No Search Options"
3491
  msgstr "No hay opciones de búsqueda"
3492
 
3493
+ #: app/features/mec/notifications.php:58 app/features/mec/notifications.php:154
3494
  msgid "Booking Notification"
3495
  msgstr "Avisos de reservas"
3496
 
3497
+ #: app/features/mec/notifications.php:64 app/features/mec/notifications.php:219
3498
  msgid "Booking Verification"
3499
  msgstr "Verificación de la reserva"
3500
 
3501
+ #: app/features/mec/notifications.php:70 app/features/mec/notifications.php:271
3502
  #: app/features/mec/settings.php:1409
3503
  msgid "Booking Confirmation"
3504
  msgstr "Confirmación de reserva"
3505
 
3506
+ #: app/features/mec/notifications.php:76 app/features/mec/notifications.php:323
3507
  #, fuzzy
3508
  #| msgid "Booking cancellation link."
3509
  msgid "Booking Cancellation"
3510
  msgstr "Enlace de cancelación de la reserva."
3511
 
3512
+ #: app/features/mec/notifications.php:82 app/features/mec/notifications.php:390
3513
  msgid "Admin Notification"
3514
  msgstr "Notificación de administrador"
3515
 
3516
+ #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:450
3517
  #: app/libraries/notifications.php:354
3518
  msgid "Booking Reminder"
3519
  msgstr "Recordatorio de reserva"
3520
 
3521
+ #: app/features/mec/notifications.php:94 app/features/mec/notifications.php:525
3522
  #: app/features/mec/support-page.php:80
3523
  msgid "New Event"
3524
  msgstr "Nuevo evento"
3525
 
3526
+ #: app/features/mec/notifications.php:158
3527
  msgid "Enable booking notification"
3528
  msgstr "Activar notificación de reservas"
3529
 
3530
+ #: app/features/mec/notifications.php:162
3531
  msgid "It sends to attendee after booking for notifying him/her."
3532
  msgstr "Se envía a los asistentes después de la reserva."
3533
 
3534
+ #: app/features/mec/notifications.php:164
3535
+ #: app/features/mec/notifications.php:222
3536
+ #: app/features/mec/notifications.php:274
3537
+ #: app/features/mec/notifications.php:333
3538
+ #: app/features/mec/notifications.php:400
3539
+ #: app/features/mec/notifications.php:463
3540
+ #: app/features/mec/notifications.php:535
3541
  msgid "Email Subject"
3542
  msgstr "Asunto del correo electrónico"
3543
 
3544
+ #: app/features/mec/notifications.php:168
3545
+ #: app/features/mec/notifications.php:172
3546
+ #: app/features/mec/notifications.php:226
3547
+ #: app/features/mec/notifications.php:230
3548
+ #: app/features/mec/notifications.php:278
3549
+ #: app/features/mec/notifications.php:282
3550
+ #: app/features/mec/notifications.php:337
3551
+ #: app/features/mec/notifications.php:341
3552
+ #: app/features/mec/notifications.php:404
3553
+ #: app/features/mec/notifications.php:408
3554
+ #: app/features/mec/notifications.php:467
3555
+ #: app/features/mec/notifications.php:471
3556
+ #: app/features/mec/notifications.php:482
3557
+ #: app/features/mec/notifications.php:539
3558
+ #: app/features/mec/notifications.php:543
3559
  msgid "Custom Recipients"
3560
  msgstr "Destinatarios personalizados"
3561
 
3562
+ #: app/features/mec/notifications.php:173
3563
+ #: app/features/mec/notifications.php:231
3564
+ #: app/features/mec/notifications.php:283
3565
+ #: app/features/mec/notifications.php:342
3566
+ #: app/features/mec/notifications.php:409
3567
+ #: app/features/mec/notifications.php:472
3568
+ #: app/features/mec/notifications.php:483
3569
+ #: app/features/mec/notifications.php:544
3570
  msgid "Insert comma separated emails for multiple recipients."
3571
  msgstr "Inserta los correos separados por coma para múltiples destinatarios."
3572
 
 
 
 
 
 
 
3573
  #: app/features/mec/notifications.php:180
3574
+ #: app/features/mec/notifications.php:353
 
 
3575
  #: app/features/mec/notifications.php:416
3576
+ msgid "Send the email to event organizer"
3577
+ msgstr "Enviar correo al organizador del evento"
 
 
3578
 
3579
  #: app/features/mec/notifications.php:183
3580
  #: app/features/mec/notifications.php:237
3583
  #: app/features/mec/notifications.php:419
3584
  #: app/features/mec/notifications.php:489
3585
  #: app/features/mec/notifications.php:550
3586
+ msgid "Email Content"
3587
+ msgstr "Contenido del correo"
 
 
 
 
 
 
 
 
 
3588
 
3589
  #: app/features/mec/notifications.php:186
3590
  #: app/features/mec/notifications.php:240
3592
  #: app/features/mec/notifications.php:363
3593
  #: app/features/mec/notifications.php:422
3594
  #: app/features/mec/notifications.php:492
3595
+ #: app/features/mec/notifications.php:553
3596
+ msgid "You can use following placeholders"
3597
+ msgstr "Puedes utilizar los siguientes marcadores de posición"
 
 
 
 
 
 
 
 
3598
 
3599
  #: app/features/mec/notifications.php:188
3600
  #: app/features/mec/notifications.php:242
3602
  #: app/features/mec/notifications.php:365
3603
  #: app/features/mec/notifications.php:424
3604
  #: app/features/mec/notifications.php:494
3605
+ msgid "First name of attendee"
3606
+ msgstr "Nombre del asistente"
3607
 
3608
  #: app/features/mec/notifications.php:189
3609
  #: app/features/mec/notifications.php:243
3611
  #: app/features/mec/notifications.php:366
3612
  #: app/features/mec/notifications.php:425
3613
  #: app/features/mec/notifications.php:495
3614
+ msgid "Last name of attendee"
3615
+ msgstr "Apellidos del asistente"
 
 
3616
 
3617
  #: app/features/mec/notifications.php:190
3618
  #: app/features/mec/notifications.php:244
3620
  #: app/features/mec/notifications.php:367
3621
  #: app/features/mec/notifications.php:426
3622
  #: app/features/mec/notifications.php:496
3623
+ msgid "Email of attendee"
3624
+ msgstr "Correo electrónico del asistente"
3625
 
3626
  #: app/features/mec/notifications.php:191
3627
  #: app/features/mec/notifications.php:245
3629
  #: app/features/mec/notifications.php:368
3630
  #: app/features/mec/notifications.php:427
3631
  #: app/features/mec/notifications.php:497
3632
+ msgid "Booked date of event"
3633
+ msgstr "Fecha de reserva del evento"
 
3634
 
3635
  #: app/features/mec/notifications.php:192
3636
  #: app/features/mec/notifications.php:246
3638
  #: app/features/mec/notifications.php:369
3639
  #: app/features/mec/notifications.php:428
3640
  #: app/features/mec/notifications.php:498
3641
+ #, fuzzy
3642
+ #| msgid "Booked date of event"
3643
+ msgid "Booked time of event"
3644
+ msgstr "Fecha de reserva del evento"
3645
 
3646
  #: app/features/mec/notifications.php:193
3647
  #: app/features/mec/notifications.php:247
3649
  #: app/features/mec/notifications.php:370
3650
  #: app/features/mec/notifications.php:429
3651
  #: app/features/mec/notifications.php:499
3652
+ msgid "Booking Price"
3653
+ msgstr "Precio de la reserva"
 
3654
 
3655
  #: app/features/mec/notifications.php:194
3656
  #: app/features/mec/notifications.php:248
3658
  #: app/features/mec/notifications.php:371
3659
  #: app/features/mec/notifications.php:430
3660
  #: app/features/mec/notifications.php:500
3661
+ #: app/features/mec/notifications.php:559
3662
+ msgid "Your website title"
3663
+ msgstr "Título de tu web"
3664
 
3665
  #: app/features/mec/notifications.php:195
3666
  #: app/features/mec/notifications.php:249
3668
  #: app/features/mec/notifications.php:372
3669
  #: app/features/mec/notifications.php:431
3670
  #: app/features/mec/notifications.php:501
3671
+ #: app/features/mec/notifications.php:560
3672
+ msgid "Your website URL"
3673
+ msgstr "URL de tu sitio web"
 
3674
 
3675
  #: app/features/mec/notifications.php:196
3676
  #: app/features/mec/notifications.php:250
3678
  #: app/features/mec/notifications.php:373
3679
  #: app/features/mec/notifications.php:432
3680
  #: app/features/mec/notifications.php:502
3681
+ #: app/features/mec/notifications.php:561
3682
+ msgid "Your website description"
3683
+ msgstr "Descripción de tu web"
3684
 
3685
  #: app/features/mec/notifications.php:197
3686
  #: app/features/mec/notifications.php:251
3688
  #: app/features/mec/notifications.php:374
3689
  #: app/features/mec/notifications.php:433
3690
  #: app/features/mec/notifications.php:503
3691
+ msgid "Event title"
3692
+ msgstr "Título del evento"
3693
 
3694
  #: app/features/mec/notifications.php:198
3695
  #: app/features/mec/notifications.php:252
3697
  #: app/features/mec/notifications.php:375
3698
  #: app/features/mec/notifications.php:434
3699
  #: app/features/mec/notifications.php:504
3700
+ #, fuzzy
3701
+ #| msgid "Event Link"
3702
+ msgid "Event link"
3703
+ msgstr "Enlace del evento"
3704
 
3705
  #: app/features/mec/notifications.php:199
3706
  #: app/features/mec/notifications.php:253
3708
  #: app/features/mec/notifications.php:376
3709
  #: app/features/mec/notifications.php:435
3710
  #: app/features/mec/notifications.php:505
3711
+ msgid "Organizer name of booked event"
3712
+ msgstr "Nombre del organizador del evento reservado"
3713
 
3714
  #: app/features/mec/notifications.php:200
3715
  #: app/features/mec/notifications.php:254
3717
  #: app/features/mec/notifications.php:377
3718
  #: app/features/mec/notifications.php:436
3719
  #: app/features/mec/notifications.php:506
3720
+ msgid "Organizer tel of booked event"
3721
+ msgstr "Teléfono del organizador del evento reservado"
3722
 
3723
  #: app/features/mec/notifications.php:201
3724
+ #: app/features/mec/notifications.php:255
3725
+ #: app/features/mec/notifications.php:307
3726
+ #: app/features/mec/notifications.php:378
3727
+ #: app/features/mec/notifications.php:437
3728
+ #: app/features/mec/notifications.php:507
3729
+ msgid "Organizer email of booked event"
3730
+ msgstr "Correo electrónico del organizar de un evento reservado"
3731
 
3732
  #: app/features/mec/notifications.php:202
3733
+ #: app/features/mec/notifications.php:256
3734
  #: app/features/mec/notifications.php:308
3735
+ #: app/features/mec/notifications.php:379
3736
+ #: app/features/mec/notifications.php:438
3737
  #: app/features/mec/notifications.php:508
3738
+ msgid "Location name of booked event"
3739
+ msgstr "Nombre del lugar del organizador del evento reservado"
3740
 
3741
  #: app/features/mec/notifications.php:203
3742
+ #: app/features/mec/notifications.php:257
3743
  #: app/features/mec/notifications.php:309
3744
  #: app/features/mec/notifications.php:380
3745
  #: app/features/mec/notifications.php:439
3746
  #: app/features/mec/notifications.php:509
3747
+ msgid "Location address of booked event"
3748
+ msgstr "Dirección del organizador del evento reservado"
3749
 
3750
  #: app/features/mec/notifications.php:204
3751
+ #: app/features/mec/notifications.php:382
3752
+ #: app/features/mec/notifications.php:441
3753
+ msgid "Full Attendee info such as booking form data, name, email etc."
3754
+ msgstr ""
3755
+ "Información completa del asistente, como datos de formulario de reserva, "
3756
+ "nombre, correo electrónico, etc."
3757
 
3758
  #: app/features/mec/notifications.php:205
 
3759
  #: app/features/mec/notifications.php:311
3760
  #: app/features/mec/notifications.php:511
3761
+ msgid "Invoice Link"
3762
+ msgstr "Enlace de factura"
3763
 
3764
  #: app/features/mec/notifications.php:206
3765
  #: app/features/mec/notifications.php:259
3766
  #: app/features/mec/notifications.php:312
3767
+ #: app/features/mec/notifications.php:383
3768
+ #: app/features/mec/notifications.php:442
3769
  #: app/features/mec/notifications.php:512
3770
+ msgid "Total Attendees"
3771
+ msgstr "Total asistentes"
3772
+
3773
+ #: app/features/mec/notifications.php:207
3774
+ #: app/features/mec/notifications.php:260
3775
+ #: app/features/mec/notifications.php:313
3776
+ #: app/features/mec/notifications.php:513
3777
+ msgid "Ticket name"
3778
+ msgstr "Nombre de la entrada"
3779
+
3780
+ #: app/features/mec/notifications.php:208
3781
+ #: app/features/mec/notifications.php:261
3782
+ #: app/features/mec/notifications.php:314
3783
+ #: app/features/mec/notifications.php:514
3784
+ msgid "Ticket time"
3785
+ msgstr "Hora de la entrada"
3786
+
3787
+ #: app/features/mec/notifications.php:209
3788
+ #: app/features/mec/notifications.php:262
3789
+ #: app/features/mec/notifications.php:315
3790
+ #: app/features/mec/notifications.php:515
3791
  msgid "Download ICS file"
3792
  msgstr "Descarga el archivo ICS"
3793
 
3794
+ #: app/features/mec/notifications.php:220
3795
  msgid "It sends to attendee email for verifying their booking/email."
3796
  msgstr ""
3797
  "Se envía a los asistentes un correo electrónico para verificar su reserva."
3798
 
3799
+ #: app/features/mec/notifications.php:258
3800
  msgid "Email/Booking verification link."
3801
  msgstr "Enlace de verificación de correo electrónico/reserva."
3802
 
3803
+ #: app/features/mec/notifications.php:272
3804
  msgid "It sends to attendee after confirming the booking by admin."
3805
  msgstr ""
3806
  "Se envía a los asistentes después de confirmar la reserva por el "
3807
  "administrador."
3808
 
3809
+ #: app/features/mec/notifications.php:310
3810
+ #: app/features/mec/notifications.php:510
3811
  msgid "Booking cancellation link."
3812
  msgstr "Enlace de cancelación de la reserva."
3813
 
3814
+ #: app/features/mec/notifications.php:327
3815
  #, fuzzy
3816
  #| msgid "Enable new event notification"
3817
  msgid "Enable cancellation notification"
3818
  msgstr "Activa los avisos de nuevos eventos"
3819
 
3820
+ #: app/features/mec/notifications.php:331
3821
  #, fuzzy
3822
  #| msgid "It sends to attendee after booking for notifying him/her."
3823
  msgid ""
3825
  "them."
3826
  msgstr "Se envía a los asistentes después de la reserva."
3827
 
3828
+ #: app/features/mec/notifications.php:349
3829
  #, fuzzy
3830
  #| msgid "Send the email to event organizer"
3831
  msgid "Send the email to admin"
3832
  msgstr "Enviar correo al organizador del evento"
3833
 
3834
+ #: app/features/mec/notifications.php:357
3835
  #, fuzzy
3836
  #| msgid "Send the email to event organizer"
3837
  msgid "Send the email to booking user"
3838
  msgstr "Enviar correo al organizador del evento"
3839
 
3840
+ #: app/features/mec/notifications.php:381
3841
+ #: app/features/mec/notifications.php:440
3842
  msgid "Admin booking management link."
3843
  msgstr "Enlace del administrador de reservas."
3844
 
3845
+ #: app/features/mec/notifications.php:394
3846
  #, fuzzy
3847
  #| msgid "Enable booking notification"
3848
  msgid "Enable admin notification"
3849
  msgstr "Activar notificación de reservas"
3850
 
3851
+ #: app/features/mec/notifications.php:398
3852
  msgid "It sends to admin to notify him/her that a new booking received."
3853
  msgstr "Se envía al administrador para notificarle una nueva reserva recibida."
3854
 
3855
+ #: app/features/mec/notifications.php:454
3856
  msgid "Enable booking reminder notification"
3857
  msgstr "Activar recordatorio de reservas del evento."
3858
 
3859
+ #: app/features/mec/notifications.php:460
3860
  #, php-format
3861
  msgid ""
3862
  "Set a cronjob to call %s file once per day otherwise it won't send the "
3868
  "este archivo %s, de lo contrario, puede enviar los recordatorios varias "
3869
  "veces."
3870
 
3871
+ #: app/features/mec/notifications.php:460
3872
  msgid "only once per day"
3873
  msgstr "una vez al día"
3874
 
3875
+ #: app/features/mec/notifications.php:478
3876
  msgid "Days"
3877
  msgstr "Días"
3878
 
3879
+ #: app/features/mec/notifications.php:529
3880
  msgid "Enable new event notification"
3881
  msgstr "Activa los avisos de nuevos eventos"
3882
 
3883
+ #: app/features/mec/notifications.php:533
3884
  msgid ""
3885
  "It sends after adding a new event from frontend event submission or from "
3886
  "website backend."
3888
  "Se envía después de agregar un nuevo evento de presentación de evento de "
3889
  "frontend o desde el sitio web backend."
3890
 
3891
+ #: app/features/mec/notifications.php:555
3892
  msgid "Title of event"
3893
  msgstr "Título del evento"
3894
 
3895
+ #: app/features/mec/notifications.php:556
3896
  #, fuzzy
3897
  #| msgid "Title of event"
3898
  msgid "Link of event"
3899
  msgstr "Título del evento"
3900
 
3901
+ #: app/features/mec/notifications.php:557
3902
  msgid "Status of event"
3903
  msgstr "Estado del evento"
3904